@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.
@@ -15,7 +15,6 @@
15
15
  * @interface ContactPatchDto
16
16
  */
17
17
  export interface ContactPatchDto {
18
- [key: string]: any | any;
19
18
  /**
20
19
  * Patch operation
21
20
  * @type {string}
@@ -28,7 +28,11 @@ export function ContactPatchDtoFromJSONTyped(json, ignoreDiscriminator) {
28
28
  if (json == null) {
29
29
  return json;
30
30
  }
31
- return Object.assign(Object.assign({}, json), { 'op': json['op'], 'path': json['path'], 'value': json['value'] == null ? undefined : json['value'] });
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 Object.assign(Object.assign({}, value), { 'op': value['op'], 'path': value['path'], 'value': value['value'] });
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 {GatewaysAccessesEquisoftAnalyzeAccessVersionEnum}
39
+ * @type {string}
40
40
  * @memberof GatewaysAccessesEquisoftAnalyzeAccess
41
41
  */
42
- version: GatewaysAccessesEquisoftAnalyzeAccessVersionEnum;
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
  */
@@ -15,7 +15,6 @@
15
15
  * @interface ContactPatchDto
16
16
  */
17
17
  export interface ContactPatchDto {
18
- [key: string]: any | any;
19
18
  /**
20
19
  * Patch operation
21
20
  * @type {string}
@@ -35,7 +35,11 @@ function ContactPatchDtoFromJSONTyped(json, ignoreDiscriminator) {
35
35
  if (json == null) {
36
36
  return json;
37
37
  }
38
- return Object.assign(Object.assign({}, json), { 'op': json['op'], 'path': json['path'], 'value': json['value'] == null ? undefined : json['value'] });
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 Object.assign(Object.assign({}, value), { 'op': value['op'], 'path': value['path'], 'value': value['value'] });
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 {GatewaysAccessesEquisoftAnalyzeAccessVersionEnum}
39
+ * @type {string}
40
40
  * @memberof GatewaysAccessesEquisoftAnalyzeAccess
41
41
  */
42
- version: GatewaysAccessesEquisoftAnalyzeAccessVersionEnum;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "13.44.1-snapshot.20260225172153",
3
+ "version": "13.45.0",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -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 {GatewaysAccessesEquisoftAnalyzeAccessVersionEnum}
50
+ * @type {string}
51
51
  * @memberof GatewaysAccessesEquisoftAnalyzeAccess
52
52
  */
53
- version: GatewaysAccessesEquisoftAnalyzeAccessVersionEnum;
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
  */