@dynamic-labs/sdk-api 0.0.235 → 0.0.237
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
|
@@ -46,6 +46,7 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
46
46
|
UnprocessableEntityErrorCode["EmptyChainName"] = "empty_chain_name";
|
|
47
47
|
UnprocessableEntityErrorCode["NoEnabledEmailProvider"] = "no_enabled_email_provider";
|
|
48
48
|
UnprocessableEntityErrorCode["InvalidKeyExportUrl"] = "invalid_key_export_url";
|
|
49
|
+
UnprocessableEntityErrorCode["InvalidDynamicProps"] = "invalid_dynamic_props";
|
|
49
50
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
50
51
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
51
52
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -38,7 +38,8 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
38
38
|
NftTokenGatingNotSupportedForChain = "nft_token_gating_not_supported_for_chain",
|
|
39
39
|
EmptyChainName = "empty_chain_name",
|
|
40
40
|
NoEnabledEmailProvider = "no_enabled_email_provider",
|
|
41
|
-
InvalidKeyExportUrl = "invalid_key_export_url"
|
|
41
|
+
InvalidKeyExportUrl = "invalid_key_export_url",
|
|
42
|
+
InvalidDynamicProps = "invalid_dynamic_props"
|
|
42
43
|
}
|
|
43
44
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
44
45
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -42,6 +42,7 @@ var UnprocessableEntityErrorCode;
|
|
|
42
42
|
UnprocessableEntityErrorCode["EmptyChainName"] = "empty_chain_name";
|
|
43
43
|
UnprocessableEntityErrorCode["NoEnabledEmailProvider"] = "no_enabled_email_provider";
|
|
44
44
|
UnprocessableEntityErrorCode["InvalidKeyExportUrl"] = "invalid_key_export_url";
|
|
45
|
+
UnprocessableEntityErrorCode["InvalidDynamicProps"] = "invalid_dynamic_props";
|
|
45
46
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
46
47
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
47
48
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
package/src/runtime.cjs
CHANGED
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var _tslib = require('../_virtual/_tslib.cjs');
|
|
6
6
|
|
|
7
7
|
/* tslint:disable */
|
|
8
|
-
const BASE_PATH = "https://app.
|
|
8
|
+
const BASE_PATH = "https://app.dynamicauth.com/api/v0".replace(/\/+$/, "");
|
|
9
9
|
const isBlob = (value) => typeof Blob !== 'undefined' && value instanceof Blob;
|
|
10
10
|
/**
|
|
11
11
|
* This is the base class for all generated API classes.
|
package/src/runtime.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __awaiter } from '../_virtual/_tslib.js';
|
|
2
2
|
|
|
3
3
|
/* tslint:disable */
|
|
4
|
-
const BASE_PATH = "https://app.
|
|
4
|
+
const BASE_PATH = "https://app.dynamicauth.com/api/v0".replace(/\/+$/, "");
|
|
5
5
|
const isBlob = (value) => typeof Blob !== 'undefined' && value instanceof Blob;
|
|
6
6
|
/**
|
|
7
7
|
* This is the base class for all generated API classes.
|