@dynamic-labs/sdk-api-core 0.0.454 → 0.0.455
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
|
@@ -97,6 +97,7 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
97
97
|
UnprocessableEntityErrorCode["CannotSwitchToUnique"] = "cannot_switch_to_unique";
|
|
98
98
|
UnprocessableEntityErrorCode["CustomFieldDataNotUnique"] = "custom_field_data_not_unique";
|
|
99
99
|
UnprocessableEntityErrorCode["MetadataSizeExceeded"] = "metadata_size_exceeded";
|
|
100
|
+
UnprocessableEntityErrorCode["InvalidCustomHostname"] = "invalid_custom_hostname";
|
|
100
101
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
101
102
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
102
103
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -89,7 +89,8 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
89
89
|
UnableToFetchBalances = "unable_to_fetch_balances",
|
|
90
90
|
CannotSwitchToUnique = "cannot_switch_to_unique",
|
|
91
91
|
CustomFieldDataNotUnique = "custom_field_data_not_unique",
|
|
92
|
-
MetadataSizeExceeded = "metadata_size_exceeded"
|
|
92
|
+
MetadataSizeExceeded = "metadata_size_exceeded",
|
|
93
|
+
InvalidCustomHostname = "invalid_custom_hostname"
|
|
93
94
|
}
|
|
94
95
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
95
96
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -93,6 +93,7 @@ var UnprocessableEntityErrorCode;
|
|
|
93
93
|
UnprocessableEntityErrorCode["CannotSwitchToUnique"] = "cannot_switch_to_unique";
|
|
94
94
|
UnprocessableEntityErrorCode["CustomFieldDataNotUnique"] = "custom_field_data_not_unique";
|
|
95
95
|
UnprocessableEntityErrorCode["MetadataSizeExceeded"] = "metadata_size_exceeded";
|
|
96
|
+
UnprocessableEntityErrorCode["InvalidCustomHostname"] = "invalid_custom_hostname";
|
|
96
97
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
97
98
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
98
99
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|