@dynamic-labs/sdk-api-core 0.0.433 → 0.0.435
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
|
@@ -17,25 +17,25 @@ import { CustomFieldValidValue } from './CustomFieldValidValue';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface CustomFieldValidationRules {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* If this field must be unique for every user in the environment
|
|
21
21
|
* @type {boolean}
|
|
22
22
|
* @memberof CustomFieldValidationRules
|
|
23
23
|
*/
|
|
24
24
|
unique?: boolean;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* The regex pattern that the text field must match
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof CustomFieldValidationRules
|
|
29
29
|
*/
|
|
30
30
|
regex?: string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* The dropdown options for the select field
|
|
33
33
|
* @type {Array<CustomFieldValidValue>}
|
|
34
34
|
* @memberof CustomFieldValidationRules
|
|
35
35
|
*/
|
|
36
36
|
validOptions?: Array<CustomFieldValidValue>;
|
|
37
37
|
/**
|
|
38
|
-
* text that will be displayed
|
|
38
|
+
* The text that will be displayed for the checkbox field
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof CustomFieldValidationRules
|
|
41
41
|
*/
|
|
@@ -94,6 +94,8 @@ exports.UnprocessableEntityErrorCode = void 0;
|
|
|
94
94
|
UnprocessableEntityErrorCode["MergeAccountsInvalid"] = "merge_accounts_invalid";
|
|
95
95
|
UnprocessableEntityErrorCode["InvalidWalletId"] = "invalid_wallet_id";
|
|
96
96
|
UnprocessableEntityErrorCode["UnableToFetchBalances"] = "unable_to_fetch_balances";
|
|
97
|
+
UnprocessableEntityErrorCode["CannotSwitchToUnique"] = "cannot_switch_to_unique";
|
|
98
|
+
UnprocessableEntityErrorCode["CustomFieldDataNotUnique"] = "custom_field_data_not_unique";
|
|
97
99
|
})(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
|
|
98
100
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
99
101
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|
|
@@ -86,7 +86,9 @@ export declare enum UnprocessableEntityErrorCode {
|
|
|
86
86
|
MergeAccountsConfirmation = "merge_accounts_confirmation",
|
|
87
87
|
MergeAccountsInvalid = "merge_accounts_invalid",
|
|
88
88
|
InvalidWalletId = "invalid_wallet_id",
|
|
89
|
-
UnableToFetchBalances = "unable_to_fetch_balances"
|
|
89
|
+
UnableToFetchBalances = "unable_to_fetch_balances",
|
|
90
|
+
CannotSwitchToUnique = "cannot_switch_to_unique",
|
|
91
|
+
CustomFieldDataNotUnique = "custom_field_data_not_unique"
|
|
90
92
|
}
|
|
91
93
|
export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
|
|
92
94
|
export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
|
|
@@ -90,6 +90,8 @@ var UnprocessableEntityErrorCode;
|
|
|
90
90
|
UnprocessableEntityErrorCode["MergeAccountsInvalid"] = "merge_accounts_invalid";
|
|
91
91
|
UnprocessableEntityErrorCode["InvalidWalletId"] = "invalid_wallet_id";
|
|
92
92
|
UnprocessableEntityErrorCode["UnableToFetchBalances"] = "unable_to_fetch_balances";
|
|
93
|
+
UnprocessableEntityErrorCode["CannotSwitchToUnique"] = "cannot_switch_to_unique";
|
|
94
|
+
UnprocessableEntityErrorCode["CustomFieldDataNotUnique"] = "custom_field_data_not_unique";
|
|
93
95
|
})(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
|
|
94
96
|
function UnprocessableEntityErrorCodeFromJSON(json) {
|
|
95
97
|
return UnprocessableEntityErrorCodeFromJSONTyped(json);
|