@dynamic-labs/sdk-api 0.0.1085 → 0.0.1087

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.1085",
3
+ "version": "0.0.1087",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -16,7 +16,7 @@
16
16
  */
17
17
  export interface OauthInitAuthRequest {
18
18
  /**
19
- * Temporary auth state for oauth2 access
19
+ * Temporary auth state generated by the SDK; native mobile apps may append _client-redirect:<deeplink>
20
20
  * @type {string}
21
21
  * @memberof OauthInitAuthRequest
22
22
  */
@@ -29,7 +29,7 @@ export interface OauthRequest {
29
29
  */
30
30
  codeVerifier?: string;
31
31
  /**
32
- * Temporary auth state for oauth2 access
32
+ * Temporary auth state generated by the SDK; native mobile apps may append _client-redirect:<deeplink>
33
33
  * @type {string}
34
34
  * @memberof OauthRequest
35
35
  */
@@ -16,7 +16,7 @@
16
16
  */
17
17
  export interface OauthResultRequest {
18
18
  /**
19
- * Temporary auth state for oauth2 access
19
+ * Temporary auth state generated by the SDK; native mobile apps may append _client-redirect:<deeplink>
20
20
  * @type {string}
21
21
  * @memberof OauthResultRequest
22
22
  */
@@ -29,7 +29,7 @@ export interface ProviderCreateRequest {
29
29
  */
30
30
  provider: ProviderEnum;
31
31
  /**
32
- * Standard OAuth client ID. For more information, see: https://www.oauth.com/oauth2-servers/client-registration/client-id-secret/. For Apple, this is also known as the Service ID.
32
+ * Standard OAuth client ID. For more information, see: https://www.oauth.com/oauth2-servers/client-registration/client-id-secret/. For Apple, this is also known as the Service ID. Permits alphanumeric characters, dots, underscores, and hyphens.
33
33
  * @type {string}
34
34
  * @memberof ProviderCreateRequest
35
35
  */
@@ -22,7 +22,7 @@ import { ZerodevBundlerProvider } from './ZerodevBundlerProvider';
22
22
  */
23
23
  export interface ProviderUpdateRequest {
24
24
  /**
25
- * Standard OAuth client ID. For more information, see: https://www.oauth.com/oauth2-servers/client-registration/client-id-secret/
25
+ * Standard OAuth client ID. For more information, see: https://www.oauth.com/oauth2-servers/client-registration/client-id-secret/. For Apple, this is also known as the Service ID. Permits alphanumeric characters, dots, underscores, and hyphens.
26
26
  * @type {string}
27
27
  * @memberof ProviderUpdateRequest
28
28
  */
@@ -17,7 +17,7 @@ import { TelegramUser } from './TelegramUser';
17
17
  */
18
18
  export interface TelegramPostRequest {
19
19
  /**
20
- *
20
+ * Temporary auth state generated by the SDK; native mobile apps may append _client-redirect:<deeplink>
21
21
  * @type {string}
22
22
  * @memberof TelegramPostRequest
23
23
  */
@@ -40,6 +40,7 @@ exports.TokenScopes = void 0;
40
40
  TokenScopes["GaslessRead"] = "gasless.read";
41
41
  TokenScopes["GaslessWrite"] = "gasless.write";
42
42
  TokenScopes["FlowWrite"] = "flow.write";
43
+ TokenScopes["WaasPoliciesWrite"] = "waas.policies.write";
43
44
  })(exports.TokenScopes || (exports.TokenScopes = {}));
44
45
  function TokenScopesFromJSON(json) {
45
46
  return TokenScopesFromJSONTyped(json);
@@ -32,7 +32,8 @@ export declare enum TokenScopes {
32
32
  EnvironmentBalancesRead = "environment.balances.read",
33
33
  GaslessRead = "gasless.read",
34
34
  GaslessWrite = "gasless.write",
35
- FlowWrite = "flow.write"
35
+ FlowWrite = "flow.write",
36
+ WaasPoliciesWrite = "waas.policies.write"
36
37
  }
37
38
  export declare function TokenScopesFromJSON(json: any): TokenScopes;
38
39
  export declare function TokenScopesFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenScopes;
@@ -36,6 +36,7 @@ var TokenScopes;
36
36
  TokenScopes["GaslessRead"] = "gasless.read";
37
37
  TokenScopes["GaslessWrite"] = "gasless.write";
38
38
  TokenScopes["FlowWrite"] = "flow.write";
39
+ TokenScopes["WaasPoliciesWrite"] = "waas.policies.write";
39
40
  })(TokenScopes || (TokenScopes = {}));
40
41
  function TokenScopesFromJSON(json) {
41
42
  return TokenScopesFromJSONTyped(json);