We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f2606 commit 68e3385Copy full SHA for 68e3385
test-client/src/bin.ts
@@ -20,7 +20,8 @@ program
20
.command('generate-token')
21
.description('Generate a JWT from for a given powersync.yaml config file')
22
.option('-c, --config [config]', 'path to powersync.yaml')
23
- .option('-u, --sub [sub]', 'sub field for auto-generated token')
+ .option('-u, --sub [sub]', 'payload sub')
24
+ .option('-e, --endpoint [endpoint]', 'additional payload aud')
25
.action(async (options) => {
26
const credentials = await getCredentials(options);
27
const decoded = await jose.decodeJwt(credentials.token);
0 commit comments