@dynamic-labs/sdk-api-core 0.0.424 → 0.0.425
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
|
@@ -2,19 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var KycFieldType = require('./KycFieldType.cjs');
|
|
6
|
+
|
|
5
7
|
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
/**
|
|
8
|
-
* Dashboard API
|
|
9
|
-
* Dashboard API documentation
|
|
10
|
-
*
|
|
11
|
-
* The version of the OpenAPI document: 1.0.0
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
-
* https://openapi-generator.tech
|
|
16
|
-
* Do not edit the class manually.
|
|
17
|
-
*/
|
|
18
8
|
function MergeUserConflictResolutionFromJSON(json) {
|
|
19
9
|
return MergeUserConflictResolutionFromJSONTyped(json);
|
|
20
10
|
}
|
|
@@ -25,6 +15,7 @@ function MergeUserConflictResolutionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
15
|
return {
|
|
26
16
|
'userId': json['userId'],
|
|
27
17
|
'fieldKey': json['fieldKey'],
|
|
18
|
+
'type': KycFieldType.KycFieldTypeFromJSON(json['type']),
|
|
28
19
|
};
|
|
29
20
|
}
|
|
30
21
|
function MergeUserConflictResolutionToJSON(value) {
|
|
@@ -37,6 +28,7 @@ function MergeUserConflictResolutionToJSON(value) {
|
|
|
37
28
|
return {
|
|
38
29
|
'userId': value.userId,
|
|
39
30
|
'fieldKey': value.fieldKey,
|
|
31
|
+
'type': KycFieldType.KycFieldTypeToJSON(value.type),
|
|
40
32
|
};
|
|
41
33
|
}
|
|
42
34
|
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { KycFieldType } from './KycFieldType';
|
|
12
13
|
/**
|
|
13
14
|
* Contains the field key and the userId for whose information we need to keep
|
|
14
15
|
* @export
|
|
@@ -27,6 +28,12 @@ export interface MergeUserConflictResolution {
|
|
|
27
28
|
* @memberof MergeUserConflictResolution
|
|
28
29
|
*/
|
|
29
30
|
fieldKey: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {KycFieldType}
|
|
34
|
+
* @memberof MergeUserConflictResolution
|
|
35
|
+
*/
|
|
36
|
+
type: KycFieldType;
|
|
30
37
|
}
|
|
31
38
|
export declare function MergeUserConflictResolutionFromJSON(json: any): MergeUserConflictResolution;
|
|
32
39
|
export declare function MergeUserConflictResolutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): MergeUserConflictResolution;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
+
import { KycFieldTypeFromJSON, KycFieldTypeToJSON } from './KycFieldType.js';
|
|
2
|
+
|
|
1
3
|
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Dashboard API
|
|
5
|
-
* Dashboard API documentation
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
4
|
function MergeUserConflictResolutionFromJSON(json) {
|
|
15
5
|
return MergeUserConflictResolutionFromJSONTyped(json);
|
|
16
6
|
}
|
|
@@ -21,6 +11,7 @@ function MergeUserConflictResolutionFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
11
|
return {
|
|
22
12
|
'userId': json['userId'],
|
|
23
13
|
'fieldKey': json['fieldKey'],
|
|
14
|
+
'type': KycFieldTypeFromJSON(json['type']),
|
|
24
15
|
};
|
|
25
16
|
}
|
|
26
17
|
function MergeUserConflictResolutionToJSON(value) {
|
|
@@ -33,6 +24,7 @@ function MergeUserConflictResolutionToJSON(value) {
|
|
|
33
24
|
return {
|
|
34
25
|
'userId': value.userId,
|
|
35
26
|
'fieldKey': value.fieldKey,
|
|
27
|
+
'type': KycFieldTypeToJSON(value.type),
|
|
36
28
|
};
|
|
37
29
|
}
|
|
38
30
|
|