@equisoft/equisoft-connect-sdk-typescript 13.44.1-snapshot.20260225172153 → 13.45.0
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/dist/esm/models/ContactPatchDto.d.ts +0 -1
- package/dist/esm/models/ContactPatchDto.js +10 -2
- package/dist/esm/models/GatewaysAccessesEquisoftAnalyzeAccess.d.ts +2 -11
- package/dist/esm/models/GatewaysAccessesEquisoftAnalyzeAccess.js +0 -8
- package/dist/models/ContactPatchDto.d.ts +0 -1
- package/dist/models/ContactPatchDto.js +10 -2
- package/dist/models/GatewaysAccessesEquisoftAnalyzeAccess.d.ts +2 -11
- package/dist/models/GatewaysAccessesEquisoftAnalyzeAccess.js +0 -9
- package/package.json +1 -1
- package/src/models/ContactPatchDto.ts +0 -3
- package/src/models/GatewaysAccessesEquisoftAnalyzeAccess.ts +2 -14
|
@@ -28,7 +28,11 @@ export function ContactPatchDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
if (json == null) {
|
|
29
29
|
return json;
|
|
30
30
|
}
|
|
31
|
-
return
|
|
31
|
+
return {
|
|
32
|
+
'op': json['op'],
|
|
33
|
+
'path': json['path'],
|
|
34
|
+
'value': json['value'] == null ? undefined : json['value'],
|
|
35
|
+
};
|
|
32
36
|
}
|
|
33
37
|
export function ContactPatchDtoToJSON(json) {
|
|
34
38
|
return ContactPatchDtoToJSONTyped(json, false);
|
|
@@ -37,5 +41,9 @@ export function ContactPatchDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
37
41
|
if (value == null) {
|
|
38
42
|
return value;
|
|
39
43
|
}
|
|
40
|
-
return
|
|
44
|
+
return {
|
|
45
|
+
'op': value['op'],
|
|
46
|
+
'path': value['path'],
|
|
47
|
+
'value': value['value'],
|
|
48
|
+
};
|
|
41
49
|
}
|
|
@@ -36,20 +36,11 @@ export interface GatewaysAccessesEquisoftAnalyzeAccess {
|
|
|
36
36
|
clientKey: string;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {string}
|
|
40
40
|
* @memberof GatewaysAccessesEquisoftAnalyzeAccess
|
|
41
41
|
*/
|
|
42
|
-
version:
|
|
42
|
+
version: string;
|
|
43
43
|
}
|
|
44
|
-
/**
|
|
45
|
-
* @export
|
|
46
|
-
*/
|
|
47
|
-
export declare const GatewaysAccessesEquisoftAnalyzeAccessVersionEnum: {
|
|
48
|
-
readonly NATIVE: "NATIVE";
|
|
49
|
-
readonly LEGACY: "LEGACY";
|
|
50
|
-
readonly unknown_default_open_api: "11184809";
|
|
51
|
-
};
|
|
52
|
-
export type GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = typeof GatewaysAccessesEquisoftAnalyzeAccessVersionEnum[keyof typeof GatewaysAccessesEquisoftAnalyzeAccessVersionEnum];
|
|
53
44
|
/**
|
|
54
45
|
* Check if a given object implements the GatewaysAccessesEquisoftAnalyzeAccess interface.
|
|
55
46
|
*/
|
|
@@ -12,14 +12,6 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { GatewaysAccessesUserFromJSON, GatewaysAccessesUserToJSON, } from './GatewaysAccessesUser';
|
|
15
|
-
/**
|
|
16
|
-
* @export
|
|
17
|
-
*/
|
|
18
|
-
export const GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = {
|
|
19
|
-
NATIVE: 'NATIVE',
|
|
20
|
-
LEGACY: 'LEGACY',
|
|
21
|
-
unknown_default_open_api: '11184809'
|
|
22
|
-
};
|
|
23
15
|
/**
|
|
24
16
|
* Check if a given object implements the GatewaysAccessesEquisoftAnalyzeAccess interface.
|
|
25
17
|
*/
|
|
@@ -35,7 +35,11 @@ function ContactPatchDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
if (json == null) {
|
|
36
36
|
return json;
|
|
37
37
|
}
|
|
38
|
-
return
|
|
38
|
+
return {
|
|
39
|
+
'op': json['op'],
|
|
40
|
+
'path': json['path'],
|
|
41
|
+
'value': json['value'] == null ? undefined : json['value'],
|
|
42
|
+
};
|
|
39
43
|
}
|
|
40
44
|
function ContactPatchDtoToJSON(json) {
|
|
41
45
|
return ContactPatchDtoToJSONTyped(json, false);
|
|
@@ -44,5 +48,9 @@ function ContactPatchDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
44
48
|
if (value == null) {
|
|
45
49
|
return value;
|
|
46
50
|
}
|
|
47
|
-
return
|
|
51
|
+
return {
|
|
52
|
+
'op': value['op'],
|
|
53
|
+
'path': value['path'],
|
|
54
|
+
'value': value['value'],
|
|
55
|
+
};
|
|
48
56
|
}
|
|
@@ -36,20 +36,11 @@ export interface GatewaysAccessesEquisoftAnalyzeAccess {
|
|
|
36
36
|
clientKey: string;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {string}
|
|
40
40
|
* @memberof GatewaysAccessesEquisoftAnalyzeAccess
|
|
41
41
|
*/
|
|
42
|
-
version:
|
|
42
|
+
version: string;
|
|
43
43
|
}
|
|
44
|
-
/**
|
|
45
|
-
* @export
|
|
46
|
-
*/
|
|
47
|
-
export declare const GatewaysAccessesEquisoftAnalyzeAccessVersionEnum: {
|
|
48
|
-
readonly NATIVE: "NATIVE";
|
|
49
|
-
readonly LEGACY: "LEGACY";
|
|
50
|
-
readonly unknown_default_open_api: "11184809";
|
|
51
|
-
};
|
|
52
|
-
export type GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = typeof GatewaysAccessesEquisoftAnalyzeAccessVersionEnum[keyof typeof GatewaysAccessesEquisoftAnalyzeAccessVersionEnum];
|
|
53
44
|
/**
|
|
54
45
|
* Check if a given object implements the GatewaysAccessesEquisoftAnalyzeAccess interface.
|
|
55
46
|
*/
|
|
@@ -13,21 +13,12 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = void 0;
|
|
17
16
|
exports.instanceOfGatewaysAccessesEquisoftAnalyzeAccess = instanceOfGatewaysAccessesEquisoftAnalyzeAccess;
|
|
18
17
|
exports.GatewaysAccessesEquisoftAnalyzeAccessFromJSON = GatewaysAccessesEquisoftAnalyzeAccessFromJSON;
|
|
19
18
|
exports.GatewaysAccessesEquisoftAnalyzeAccessFromJSONTyped = GatewaysAccessesEquisoftAnalyzeAccessFromJSONTyped;
|
|
20
19
|
exports.GatewaysAccessesEquisoftAnalyzeAccessToJSON = GatewaysAccessesEquisoftAnalyzeAccessToJSON;
|
|
21
20
|
exports.GatewaysAccessesEquisoftAnalyzeAccessToJSONTyped = GatewaysAccessesEquisoftAnalyzeAccessToJSONTyped;
|
|
22
21
|
const GatewaysAccessesUser_1 = require("./GatewaysAccessesUser");
|
|
23
|
-
/**
|
|
24
|
-
* @export
|
|
25
|
-
*/
|
|
26
|
-
exports.GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = {
|
|
27
|
-
NATIVE: 'NATIVE',
|
|
28
|
-
LEGACY: 'LEGACY',
|
|
29
|
-
unknown_default_open_api: '11184809'
|
|
30
|
-
};
|
|
31
22
|
/**
|
|
32
23
|
* Check if a given object implements the GatewaysAccessesEquisoftAnalyzeAccess interface.
|
|
33
24
|
*/
|
package/package.json
CHANGED
|
@@ -19,7 +19,6 @@ import { mapValues } from '../runtime';
|
|
|
19
19
|
* @interface ContactPatchDto
|
|
20
20
|
*/
|
|
21
21
|
export interface ContactPatchDto {
|
|
22
|
-
[key: string]: any | any;
|
|
23
22
|
/**
|
|
24
23
|
* Patch operation
|
|
25
24
|
* @type {string}
|
|
@@ -59,7 +58,6 @@ export function ContactPatchDtoFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
59
58
|
}
|
|
60
59
|
return {
|
|
61
60
|
|
|
62
|
-
...json,
|
|
63
61
|
'op': json['op'],
|
|
64
62
|
'path': json['path'],
|
|
65
63
|
'value': json['value'] == null ? undefined : json['value'],
|
|
@@ -77,7 +75,6 @@ export function ContactPatchDtoToJSONTyped(value?: ContactPatchDto | null, ignor
|
|
|
77
75
|
|
|
78
76
|
return {
|
|
79
77
|
|
|
80
|
-
...value,
|
|
81
78
|
'op': value['op'],
|
|
82
79
|
'path': value['path'],
|
|
83
80
|
'value': value['value'],
|
|
@@ -47,24 +47,12 @@ export interface GatewaysAccessesEquisoftAnalyzeAccess {
|
|
|
47
47
|
clientKey: string;
|
|
48
48
|
/**
|
|
49
49
|
*
|
|
50
|
-
* @type {
|
|
50
|
+
* @type {string}
|
|
51
51
|
* @memberof GatewaysAccessesEquisoftAnalyzeAccess
|
|
52
52
|
*/
|
|
53
|
-
version:
|
|
53
|
+
version: string;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* @export
|
|
59
|
-
*/
|
|
60
|
-
export const GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = {
|
|
61
|
-
NATIVE: 'NATIVE',
|
|
62
|
-
LEGACY: 'LEGACY',
|
|
63
|
-
unknown_default_open_api: '11184809'
|
|
64
|
-
} as const;
|
|
65
|
-
export type GatewaysAccessesEquisoftAnalyzeAccessVersionEnum = typeof GatewaysAccessesEquisoftAnalyzeAccessVersionEnum[keyof typeof GatewaysAccessesEquisoftAnalyzeAccessVersionEnum];
|
|
66
|
-
|
|
67
|
-
|
|
68
56
|
/**
|
|
69
57
|
* Check if a given object implements the GatewaysAccessesEquisoftAnalyzeAccess interface.
|
|
70
58
|
*/
|