You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The `client_secret` of your Zeplin app **Note**: `client_secret` is required for `code` values obtained without using a PKCE `code_challenge` value. **Warning**: `client_secret` property should only be used in a server-side application. If your Zeplin app is a public client, you should use PKCE authorization flow.
69
71
* @type {string}
70
72
* @memberof TokenCreateAuthorizationCodeBody
71
73
*/
72
-
clientSecret: string;
74
+
clientSecret?: string;
75
+
/**
76
+
* A cryptographically random string that is used to correlate the authorization request to the token request
* The `client_secret` of your Zeplin app **Note**: `client_secret` is required for `code` values obtained without using a PKCE `code_challenge` value. **Warning**: `client_secret` property should only be used in a server-side application. If your Zeplin app is a public client, you should use PKCE authorization flow.
61
63
* @type {string}
62
64
* @memberof TokenCreateRefreshTokenBody
63
65
*/
64
-
clientSecret: string;
66
+
clientSecret?: string;
67
+
/**
68
+
* A cryptographically random string that is used to correlate the authorization request to the token request
0 commit comments