@dynamic-labs/sdk-api 0.22.0 → 0.24.0

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.22.0",
3
+ "version": "0.24.0",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -357,7 +357,7 @@ class EnvironmentsApi extends runtime.BaseAPI {
357
357
  return await response.value();
358
358
  }
359
359
  /**
360
- * Updates the settings for the specified environment.
360
+ * Updates the settings for the specified environment. When the organization has admin action approvals enabled and the update would weaken a step-up authentication protection, the change is not applied. It is filed as a `settings_change` admin action request and the endpoint returns `202` — the settings only take effect once another admin approves the request.
361
361
  * Update the environment settings
362
362
  */
363
363
  async updateProjectSettingsRaw(requestParameters, initOverrides) {
@@ -384,7 +384,7 @@ class EnvironmentsApi extends runtime.BaseAPI {
384
384
  return new runtime.JSONApiResponse(response, (jsonValue) => ProjectSettings.ProjectSettingsFromJSON(jsonValue));
385
385
  }
386
386
  /**
387
- * Updates the settings for the specified environment.
387
+ * Updates the settings for the specified environment. When the organization has admin action approvals enabled and the update would weaken a step-up authentication protection, the change is not applied. It is filed as a `settings_change` admin action request and the endpoint returns `202` — the settings only take effect once another admin approves the request.
388
388
  * Update the environment settings
389
389
  */
390
390
  async updateProjectSettings(requestParameters, initOverrides) {
@@ -90,12 +90,12 @@ export declare class EnvironmentsApi extends runtime.BaseAPI {
90
90
  */
91
91
  getVisitorsCountByEnvironmentId(requestParameters: GetVisitorsCountByEnvironmentIdRequest, initOverrides?: RequestInit): Promise<EnvironmentVisitorsResponse>;
92
92
  /**
93
- * Updates the settings for the specified environment.
93
+ * Updates the settings for the specified environment. When the organization has admin action approvals enabled and the update would weaken a step-up authentication protection, the change is not applied. It is filed as a `settings_change` admin action request and the endpoint returns `202` — the settings only take effect once another admin approves the request.
94
94
  * Update the environment settings
95
95
  */
96
96
  updateProjectSettingsRaw(requestParameters: UpdateProjectSettingsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<ProjectSettings>>;
97
97
  /**
98
- * Updates the settings for the specified environment.
98
+ * Updates the settings for the specified environment. When the organization has admin action approvals enabled and the update would weaken a step-up authentication protection, the change is not applied. It is filed as a `settings_change` admin action request and the endpoint returns `202` — the settings only take effect once another admin approves the request.
99
99
  * Update the environment settings
100
100
  */
101
101
  updateProjectSettings(requestParameters: UpdateProjectSettingsRequest, initOverrides?: RequestInit): Promise<ProjectSettings>;
@@ -353,7 +353,7 @@ class EnvironmentsApi extends BaseAPI {
353
353
  return await response.value();
354
354
  }
355
355
  /**
356
- * Updates the settings for the specified environment.
356
+ * Updates the settings for the specified environment. When the organization has admin action approvals enabled and the update would weaken a step-up authentication protection, the change is not applied. It is filed as a `settings_change` admin action request and the endpoint returns `202` — the settings only take effect once another admin approves the request.
357
357
  * Update the environment settings
358
358
  */
359
359
  async updateProjectSettingsRaw(requestParameters, initOverrides) {
@@ -380,7 +380,7 @@ class EnvironmentsApi extends BaseAPI {
380
380
  return new JSONApiResponse(response, (jsonValue) => ProjectSettingsFromJSON(jsonValue));
381
381
  }
382
382
  /**
383
- * Updates the settings for the specified environment.
383
+ * Updates the settings for the specified environment. When the organization has admin action approvals enabled and the update would weaken a step-up authentication protection, the change is not applied. It is filed as a `settings_change` admin action request and the endpoint returns `202` — the settings only take effect once another admin approves the request.
384
384
  * Update the environment settings
385
385
  */
386
386
  async updateProjectSettings(requestParameters, initOverrides) {
@@ -24,6 +24,7 @@ exports.ExchangeKeyEnum = void 0;
24
24
  (function (ExchangeKeyEnum) {
25
25
  ExchangeKeyEnum["Coinbase"] = "coinbase";
26
26
  ExchangeKeyEnum["Kraken"] = "kraken";
27
+ ExchangeKeyEnum["Gemini"] = "gemini";
27
28
  })(exports.ExchangeKeyEnum || (exports.ExchangeKeyEnum = {}));
28
29
  function ExchangeKeyEnumFromJSON(json) {
29
30
  return ExchangeKeyEnumFromJSONTyped(json);
@@ -16,7 +16,8 @@
16
16
  */
17
17
  export declare enum ExchangeKeyEnum {
18
18
  Coinbase = "coinbase",
19
- Kraken = "kraken"
19
+ Kraken = "kraken",
20
+ Gemini = "gemini"
20
21
  }
21
22
  export declare function ExchangeKeyEnumFromJSON(json: any): ExchangeKeyEnum;
22
23
  export declare function ExchangeKeyEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeKeyEnum;
@@ -20,6 +20,7 @@ var ExchangeKeyEnum;
20
20
  (function (ExchangeKeyEnum) {
21
21
  ExchangeKeyEnum["Coinbase"] = "coinbase";
22
22
  ExchangeKeyEnum["Kraken"] = "kraken";
23
+ ExchangeKeyEnum["Gemini"] = "gemini";
23
24
  })(ExchangeKeyEnum || (ExchangeKeyEnum = {}));
24
25
  function ExchangeKeyEnumFromJSON(json) {
25
26
  return ExchangeKeyEnumFromJSONTyped(json);
@@ -65,6 +65,7 @@ exports.ProviderEnum = void 0;
65
65
  ProviderEnum["Resend"] = "resend";
66
66
  ProviderEnum["TrmWalletScreening"] = "trmWalletScreening";
67
67
  ProviderEnum["ChainalysisAddressScreening"] = "chainalysisAddressScreening";
68
+ ProviderEnum["Gemini"] = "gemini";
68
69
  })(exports.ProviderEnum || (exports.ProviderEnum = {}));
69
70
  function ProviderEnumFromJSON(json) {
70
71
  return ProviderEnumFromJSONTyped(json);
@@ -57,7 +57,8 @@ export declare enum ProviderEnum {
57
57
  Sendgrid = "sendgrid",
58
58
  Resend = "resend",
59
59
  TrmWalletScreening = "trmWalletScreening",
60
- ChainalysisAddressScreening = "chainalysisAddressScreening"
60
+ ChainalysisAddressScreening = "chainalysisAddressScreening",
61
+ Gemini = "gemini"
61
62
  }
62
63
  export declare function ProviderEnumFromJSON(json: any): ProviderEnum;
63
64
  export declare function ProviderEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProviderEnum;
@@ -61,6 +61,7 @@ var ProviderEnum;
61
61
  ProviderEnum["Resend"] = "resend";
62
62
  ProviderEnum["TrmWalletScreening"] = "trmWalletScreening";
63
63
  ProviderEnum["ChainalysisAddressScreening"] = "chainalysisAddressScreening";
64
+ ProviderEnum["Gemini"] = "gemini";
64
65
  })(ProviderEnum || (ProviderEnum = {}));
65
66
  function ProviderEnumFromJSON(json) {
66
67
  return ProviderEnumFromJSONTyped(json);
@@ -45,6 +45,7 @@ exports.SocialSignInProviderEnum = void 0;
45
45
  SocialSignInProviderEnum["Shopify"] = "shopify";
46
46
  SocialSignInProviderEnum["Kraken"] = "kraken";
47
47
  SocialSignInProviderEnum["Okta"] = "okta";
48
+ SocialSignInProviderEnum["Gemini"] = "gemini";
48
49
  })(exports.SocialSignInProviderEnum || (exports.SocialSignInProviderEnum = {}));
49
50
  function SocialSignInProviderEnumFromJSON(json) {
50
51
  return SocialSignInProviderEnumFromJSONTyped(json);
@@ -37,7 +37,8 @@ export declare enum SocialSignInProviderEnum {
37
37
  Steam = "steam",
38
38
  Shopify = "shopify",
39
39
  Kraken = "kraken",
40
- Okta = "okta"
40
+ Okta = "okta",
41
+ Gemini = "gemini"
41
42
  }
42
43
  export declare function SocialSignInProviderEnumFromJSON(json: any): SocialSignInProviderEnum;
43
44
  export declare function SocialSignInProviderEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): SocialSignInProviderEnum;
@@ -41,6 +41,7 @@ var SocialSignInProviderEnum;
41
41
  SocialSignInProviderEnum["Shopify"] = "shopify";
42
42
  SocialSignInProviderEnum["Kraken"] = "kraken";
43
43
  SocialSignInProviderEnum["Okta"] = "okta";
44
+ SocialSignInProviderEnum["Gemini"] = "gemini";
44
45
  })(SocialSignInProviderEnum || (SocialSignInProviderEnum = {}));
45
46
  function SocialSignInProviderEnumFromJSON(json) {
46
47
  return SocialSignInProviderEnumFromJSONTyped(json);