@dynamic-labs/sdk-api-core 0.0.511 → 0.0.512

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-core",
3
- "version": "0.0.511",
3
+ "version": "0.0.512",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -25,6 +25,7 @@ function ProjectSettingsKycFromJSONTyped(json, ignoreDiscriminator) {
25
25
  'validationRules': !runtime.exists(json, 'validationRules') ? undefined : CustomFieldValidationRules.CustomFieldValidationRulesFromJSON(json['validationRules']),
26
26
  'validationType': !runtime.exists(json, 'validationType') ? undefined : CustomFieldType.CustomFieldTypeFromJSON(json['validationType']),
27
27
  'label': !runtime.exists(json, 'label') ? undefined : json['label'],
28
+ 'position': !runtime.exists(json, 'position') ? undefined : json['position'],
28
29
  };
29
30
  }
30
31
  function ProjectSettingsKycToJSON(value) {
@@ -44,6 +45,7 @@ function ProjectSettingsKycToJSON(value) {
44
45
  'validationRules': CustomFieldValidationRules.CustomFieldValidationRulesToJSON(value.validationRules),
45
46
  'validationType': CustomFieldType.CustomFieldTypeToJSON(value.validationType),
46
47
  'label': value.label,
48
+ 'position': value.position,
47
49
  };
48
50
  }
49
51
 
@@ -72,6 +72,12 @@ export interface ProjectSettingsKyc {
72
72
  * @memberof ProjectSettingsKyc
73
73
  */
74
74
  label?: string;
75
+ /**
76
+ *
77
+ * @type {number}
78
+ * @memberof ProjectSettingsKyc
79
+ */
80
+ position?: number;
75
81
  }
76
82
  export declare function ProjectSettingsKycFromJSON(json: any): ProjectSettingsKyc;
77
83
  export declare function ProjectSettingsKycFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsKyc;
@@ -21,6 +21,7 @@ function ProjectSettingsKycFromJSONTyped(json, ignoreDiscriminator) {
21
21
  'validationRules': !exists(json, 'validationRules') ? undefined : CustomFieldValidationRulesFromJSON(json['validationRules']),
22
22
  'validationType': !exists(json, 'validationType') ? undefined : CustomFieldTypeFromJSON(json['validationType']),
23
23
  'label': !exists(json, 'label') ? undefined : json['label'],
24
+ 'position': !exists(json, 'position') ? undefined : json['position'],
24
25
  };
25
26
  }
26
27
  function ProjectSettingsKycToJSON(value) {
@@ -40,6 +41,7 @@ function ProjectSettingsKycToJSON(value) {
40
41
  'validationRules': CustomFieldValidationRulesToJSON(value.validationRules),
41
42
  'validationType': CustomFieldTypeToJSON(value.validationType),
42
43
  'label': value.label,
44
+ 'position': value.position,
43
45
  };
44
46
  }
45
47
 
@@ -34,6 +34,7 @@ exports.UnprocessableEntityErrorCode = void 0;
34
34
  UnprocessableEntityErrorCode["InvalidEmailVerification"] = "invalid_email_verification";
35
35
  UnprocessableEntityErrorCode["InvalidSmsVerification"] = "invalid_sms_verification";
36
36
  UnprocessableEntityErrorCode["InvalidVerification"] = "invalid_verification";
37
+ UnprocessableEntityErrorCode["InvalidPosition"] = "invalid_position";
37
38
  UnprocessableEntityErrorCode["TooManySmsVerificationAttempts"] = "too_many_sms_verification_attempts";
38
39
  UnprocessableEntityErrorCode["TooManyEmailVerificationAttempts"] = "too_many_email_verification_attempts";
39
40
  UnprocessableEntityErrorCode["TooManyVerificationAttempts"] = "too_many_verification_attempts";
@@ -27,6 +27,7 @@ export declare enum UnprocessableEntityErrorCode {
27
27
  InvalidEmailVerification = "invalid_email_verification",
28
28
  InvalidSmsVerification = "invalid_sms_verification",
29
29
  InvalidVerification = "invalid_verification",
30
+ InvalidPosition = "invalid_position",
30
31
  TooManySmsVerificationAttempts = "too_many_sms_verification_attempts",
31
32
  TooManyEmailVerificationAttempts = "too_many_email_verification_attempts",
32
33
  TooManyVerificationAttempts = "too_many_verification_attempts",
@@ -30,6 +30,7 @@ var UnprocessableEntityErrorCode;
30
30
  UnprocessableEntityErrorCode["InvalidEmailVerification"] = "invalid_email_verification";
31
31
  UnprocessableEntityErrorCode["InvalidSmsVerification"] = "invalid_sms_verification";
32
32
  UnprocessableEntityErrorCode["InvalidVerification"] = "invalid_verification";
33
+ UnprocessableEntityErrorCode["InvalidPosition"] = "invalid_position";
33
34
  UnprocessableEntityErrorCode["TooManySmsVerificationAttempts"] = "too_many_sms_verification_attempts";
34
35
  UnprocessableEntityErrorCode["TooManyEmailVerificationAttempts"] = "too_many_email_verification_attempts";
35
36
  UnprocessableEntityErrorCode["TooManyVerificationAttempts"] = "too_many_verification_attempts";