@equisoft/equisoft-connect-sdk-typescript 13.6.0 → 13.6.1-snapshot.20240602060753

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.
@@ -101,7 +101,6 @@ src/models/GatewaysAccessesValidationGatewayAdminDto.ts
101
101
  src/models/GatewaysCredentials.ts
102
102
  src/models/GatewaysCredentialsWithSsn.ts
103
103
  src/models/GatewaysFullfinanceScrapeJob.ts
104
- src/models/GatewaysFullfinanceScrapeJobStatus.ts
105
104
  src/models/GatewaysGatewayDto.ts
106
105
  src/models/GatewaysGatewaysResponse.ts
107
106
  src/models/GatewaysListCredentialsResponse.ts
package/.tool-versions CHANGED
@@ -1,3 +1,3 @@
1
1
  java temurin-17.0.11+9
2
- nodejs 20.13.1
2
+ nodejs 20.14.0
3
3
  yarn 1.22.4
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { GatewaysFullfinanceScrapeJobStatus } from './GatewaysFullfinanceScrapeJobStatus';
13
12
  /**
14
13
  *
15
14
  * @export
@@ -36,10 +35,10 @@ export interface GatewaysFullfinanceScrapeJob {
36
35
  creationDate: Date;
37
36
  /**
38
37
  *
39
- * @type {GatewaysFullfinanceScrapeJobStatus}
38
+ * @type {any}
40
39
  * @memberof GatewaysFullfinanceScrapeJob
41
40
  */
42
- status: GatewaysFullfinanceScrapeJobStatus;
41
+ status: any | null;
43
42
  }
44
43
  /**
45
44
  * Check if a given object implements the GatewaysFullfinanceScrapeJob interface.
@@ -12,7 +12,6 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  import { exists } from '../runtime';
15
- import { GatewaysFullfinanceScrapeJobStatusFromJSON, GatewaysFullfinanceScrapeJobStatusToJSON, } from './GatewaysFullfinanceScrapeJobStatus';
16
15
  /**
17
16
  * Check if a given object implements the GatewaysFullfinanceScrapeJob interface.
18
17
  */
@@ -34,7 +33,7 @@ export function GatewaysFullfinanceScrapeJobFromJSONTyped(json, ignoreDiscrimina
34
33
  'id': json['id'],
35
34
  'completionDate': !exists(json, 'completionDate') ? undefined : (json['completionDate'] === null ? null : new Date(json['completionDate'])),
36
35
  'creationDate': (new Date(json['creationDate'])),
37
- 'status': GatewaysFullfinanceScrapeJobStatusFromJSON(json['status']),
36
+ 'status': json['status'],
38
37
  };
39
38
  }
40
39
  export function GatewaysFullfinanceScrapeJobToJSON(value) {
@@ -48,6 +47,6 @@ export function GatewaysFullfinanceScrapeJobToJSON(value) {
48
47
  'id': value.id,
49
48
  'completionDate': value.completionDate === undefined ? undefined : (value.completionDate === null ? null : value.completionDate.toISOString().substring(0, 10)),
50
49
  'creationDate': (value.creationDate.toISOString().substring(0, 10)),
51
- 'status': GatewaysFullfinanceScrapeJobStatusToJSON(value.status),
50
+ 'status': value.status,
52
51
  };
53
52
  }
@@ -80,7 +80,6 @@ export * from './GatewaysAccessesValidationGatewayAdminDto';
80
80
  export * from './GatewaysCredentials';
81
81
  export * from './GatewaysCredentialsWithSsn';
82
82
  export * from './GatewaysFullfinanceScrapeJob';
83
- export * from './GatewaysFullfinanceScrapeJobStatus';
84
83
  export * from './GatewaysGatewayDto';
85
84
  export * from './GatewaysGatewaysResponse';
86
85
  export * from './GatewaysListCredentialsResponse';
@@ -82,7 +82,6 @@ export * from './GatewaysAccessesValidationGatewayAdminDto';
82
82
  export * from './GatewaysCredentials';
83
83
  export * from './GatewaysCredentialsWithSsn';
84
84
  export * from './GatewaysFullfinanceScrapeJob';
85
- export * from './GatewaysFullfinanceScrapeJobStatus';
86
85
  export * from './GatewaysGatewayDto';
87
86
  export * from './GatewaysGatewaysResponse';
88
87
  export * from './GatewaysListCredentialsResponse';
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { GatewaysFullfinanceScrapeJobStatus } from './GatewaysFullfinanceScrapeJobStatus';
13
12
  /**
14
13
  *
15
14
  * @export
@@ -36,10 +35,10 @@ export interface GatewaysFullfinanceScrapeJob {
36
35
  creationDate: Date;
37
36
  /**
38
37
  *
39
- * @type {GatewaysFullfinanceScrapeJobStatus}
38
+ * @type {any}
40
39
  * @memberof GatewaysFullfinanceScrapeJob
41
40
  */
42
- status: GatewaysFullfinanceScrapeJobStatus;
41
+ status: any | null;
43
42
  }
44
43
  /**
45
44
  * Check if a given object implements the GatewaysFullfinanceScrapeJob interface.
@@ -15,7 +15,6 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.GatewaysFullfinanceScrapeJobToJSON = exports.GatewaysFullfinanceScrapeJobFromJSONTyped = exports.GatewaysFullfinanceScrapeJobFromJSON = exports.instanceOfGatewaysFullfinanceScrapeJob = void 0;
17
17
  const runtime_1 = require("../runtime");
18
- const GatewaysFullfinanceScrapeJobStatus_1 = require("./GatewaysFullfinanceScrapeJobStatus");
19
18
  /**
20
19
  * Check if a given object implements the GatewaysFullfinanceScrapeJob interface.
21
20
  */
@@ -39,7 +38,7 @@ function GatewaysFullfinanceScrapeJobFromJSONTyped(json, ignoreDiscriminator) {
39
38
  'id': json['id'],
40
39
  'completionDate': !(0, runtime_1.exists)(json, 'completionDate') ? undefined : (json['completionDate'] === null ? null : new Date(json['completionDate'])),
41
40
  'creationDate': (new Date(json['creationDate'])),
42
- 'status': (0, GatewaysFullfinanceScrapeJobStatus_1.GatewaysFullfinanceScrapeJobStatusFromJSON)(json['status']),
41
+ 'status': json['status'],
43
42
  };
44
43
  }
45
44
  exports.GatewaysFullfinanceScrapeJobFromJSONTyped = GatewaysFullfinanceScrapeJobFromJSONTyped;
@@ -54,7 +53,7 @@ function GatewaysFullfinanceScrapeJobToJSON(value) {
54
53
  'id': value.id,
55
54
  'completionDate': value.completionDate === undefined ? undefined : (value.completionDate === null ? null : value.completionDate.toISOString().substring(0, 10)),
56
55
  'creationDate': (value.creationDate.toISOString().substring(0, 10)),
57
- 'status': (0, GatewaysFullfinanceScrapeJobStatus_1.GatewaysFullfinanceScrapeJobStatusToJSON)(value.status),
56
+ 'status': value.status,
58
57
  };
59
58
  }
60
59
  exports.GatewaysFullfinanceScrapeJobToJSON = GatewaysFullfinanceScrapeJobToJSON;
@@ -80,7 +80,6 @@ export * from './GatewaysAccessesValidationGatewayAdminDto';
80
80
  export * from './GatewaysCredentials';
81
81
  export * from './GatewaysCredentialsWithSsn';
82
82
  export * from './GatewaysFullfinanceScrapeJob';
83
- export * from './GatewaysFullfinanceScrapeJobStatus';
84
83
  export * from './GatewaysGatewayDto';
85
84
  export * from './GatewaysGatewaysResponse';
86
85
  export * from './GatewaysListCredentialsResponse';
@@ -98,7 +98,6 @@ __exportStar(require("./GatewaysAccessesValidationGatewayAdminDto"), exports);
98
98
  __exportStar(require("./GatewaysCredentials"), exports);
99
99
  __exportStar(require("./GatewaysCredentialsWithSsn"), exports);
100
100
  __exportStar(require("./GatewaysFullfinanceScrapeJob"), exports);
101
- __exportStar(require("./GatewaysFullfinanceScrapeJobStatus"), exports);
102
101
  __exportStar(require("./GatewaysGatewayDto"), exports);
103
102
  __exportStar(require("./GatewaysGatewaysResponse"), exports);
104
103
  __exportStar(require("./GatewaysListCredentialsResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "13.6.0",
3
+ "version": "13.6.1-snapshot.20240602060753",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -13,13 +13,6 @@
13
13
  */
14
14
 
15
15
  import { exists, mapValues } from '../runtime';
16
- import type { GatewaysFullfinanceScrapeJobStatus } from './GatewaysFullfinanceScrapeJobStatus';
17
- import {
18
- GatewaysFullfinanceScrapeJobStatusFromJSON,
19
- GatewaysFullfinanceScrapeJobStatusFromJSONTyped,
20
- GatewaysFullfinanceScrapeJobStatusToJSON,
21
- } from './GatewaysFullfinanceScrapeJobStatus';
22
-
23
16
  /**
24
17
  *
25
18
  * @export
@@ -46,10 +39,10 @@ export interface GatewaysFullfinanceScrapeJob {
46
39
  creationDate: Date;
47
40
  /**
48
41
  *
49
- * @type {GatewaysFullfinanceScrapeJobStatus}
42
+ * @type {any}
50
43
  * @memberof GatewaysFullfinanceScrapeJob
51
44
  */
52
- status: GatewaysFullfinanceScrapeJobStatus;
45
+ status: any | null;
53
46
  }
54
47
 
55
48
  /**
@@ -77,7 +70,7 @@ export function GatewaysFullfinanceScrapeJobFromJSONTyped(json: any, ignoreDiscr
77
70
  'id': json['id'],
78
71
  'completionDate': !exists(json, 'completionDate') ? undefined : (json['completionDate'] === null ? null : new Date(json['completionDate'])),
79
72
  'creationDate': (new Date(json['creationDate'])),
80
- 'status': GatewaysFullfinanceScrapeJobStatusFromJSON(json['status']),
73
+ 'status': json['status'],
81
74
  };
82
75
  }
83
76
 
@@ -93,7 +86,7 @@ export function GatewaysFullfinanceScrapeJobToJSON(value?: GatewaysFullfinanceSc
93
86
  'id': value.id,
94
87
  'completionDate': value.completionDate === undefined ? undefined : (value.completionDate === null ? null : value.completionDate.toISOString().substring(0,10)),
95
88
  'creationDate': (value.creationDate.toISOString().substring(0,10)),
96
- 'status': GatewaysFullfinanceScrapeJobStatusToJSON(value.status),
89
+ 'status': value.status,
97
90
  };
98
91
  }
99
92
 
@@ -82,7 +82,6 @@ export * from './GatewaysAccessesValidationGatewayAdminDto';
82
82
  export * from './GatewaysCredentials';
83
83
  export * from './GatewaysCredentialsWithSsn';
84
84
  export * from './GatewaysFullfinanceScrapeJob';
85
- export * from './GatewaysFullfinanceScrapeJobStatus';
86
85
  export * from './GatewaysGatewayDto';
87
86
  export * from './GatewaysGatewaysResponse';
88
87
  export * from './GatewaysListCredentialsResponse';
@@ -1,29 +0,0 @@
1
- /**
2
- * Equisoft /connect API
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: latest
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- */
16
- export declare const GatewaysFullfinanceScrapeJobStatus: {
17
- readonly UNKNOWN: "UNKNOWN";
18
- readonly NEW: "NEW";
19
- readonly QUEUED: "QUEUED";
20
- readonly LOGIN: "LOGIN";
21
- readonly MFA: "MFA";
22
- readonly RUNNING: "RUNNING";
23
- readonly COMPLETED: "COMPLETED";
24
- readonly unknown_default_open_api: "11184809";
25
- };
26
- export type GatewaysFullfinanceScrapeJobStatus = typeof GatewaysFullfinanceScrapeJobStatus[keyof typeof GatewaysFullfinanceScrapeJobStatus];
27
- export declare function GatewaysFullfinanceScrapeJobStatusFromJSON(json: any): GatewaysFullfinanceScrapeJobStatus;
28
- export declare function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJobStatus;
29
- export declare function GatewaysFullfinanceScrapeJobStatusToJSON(value?: GatewaysFullfinanceScrapeJobStatus | null): any;
@@ -1,36 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * Equisoft /connect API
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: latest
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
- /**
15
- *
16
- * @export
17
- */
18
- export const GatewaysFullfinanceScrapeJobStatus = {
19
- UNKNOWN: 'UNKNOWN',
20
- NEW: 'NEW',
21
- QUEUED: 'QUEUED',
22
- LOGIN: 'LOGIN',
23
- MFA: 'MFA',
24
- RUNNING: 'RUNNING',
25
- COMPLETED: 'COMPLETED',
26
- unknown_default_open_api: '11184809'
27
- };
28
- export function GatewaysFullfinanceScrapeJobStatusFromJSON(json) {
29
- return GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, false);
30
- }
31
- export function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, ignoreDiscriminator) {
32
- return json;
33
- }
34
- export function GatewaysFullfinanceScrapeJobStatusToJSON(value) {
35
- return value;
36
- }
@@ -1,29 +0,0 @@
1
- /**
2
- * Equisoft /connect API
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * The version of the OpenAPI document: latest
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- */
16
- export declare const GatewaysFullfinanceScrapeJobStatus: {
17
- readonly UNKNOWN: "UNKNOWN";
18
- readonly NEW: "NEW";
19
- readonly QUEUED: "QUEUED";
20
- readonly LOGIN: "LOGIN";
21
- readonly MFA: "MFA";
22
- readonly RUNNING: "RUNNING";
23
- readonly COMPLETED: "COMPLETED";
24
- readonly unknown_default_open_api: "11184809";
25
- };
26
- export type GatewaysFullfinanceScrapeJobStatus = typeof GatewaysFullfinanceScrapeJobStatus[keyof typeof GatewaysFullfinanceScrapeJobStatus];
27
- export declare function GatewaysFullfinanceScrapeJobStatusFromJSON(json: any): GatewaysFullfinanceScrapeJobStatus;
28
- export declare function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJobStatus;
29
- export declare function GatewaysFullfinanceScrapeJobStatusToJSON(value?: GatewaysFullfinanceScrapeJobStatus | null): any;
@@ -1,42 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Equisoft /connect API
6
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
- *
8
- * The version of the OpenAPI document: latest
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.GatewaysFullfinanceScrapeJobStatusToJSON = exports.GatewaysFullfinanceScrapeJobStatusFromJSONTyped = exports.GatewaysFullfinanceScrapeJobStatusFromJSON = exports.GatewaysFullfinanceScrapeJobStatus = void 0;
17
- /**
18
- *
19
- * @export
20
- */
21
- exports.GatewaysFullfinanceScrapeJobStatus = {
22
- UNKNOWN: 'UNKNOWN',
23
- NEW: 'NEW',
24
- QUEUED: 'QUEUED',
25
- LOGIN: 'LOGIN',
26
- MFA: 'MFA',
27
- RUNNING: 'RUNNING',
28
- COMPLETED: 'COMPLETED',
29
- unknown_default_open_api: '11184809'
30
- };
31
- function GatewaysFullfinanceScrapeJobStatusFromJSON(json) {
32
- return GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, false);
33
- }
34
- exports.GatewaysFullfinanceScrapeJobStatusFromJSON = GatewaysFullfinanceScrapeJobStatusFromJSON;
35
- function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, ignoreDiscriminator) {
36
- return json;
37
- }
38
- exports.GatewaysFullfinanceScrapeJobStatusFromJSONTyped = GatewaysFullfinanceScrapeJobStatusFromJSONTyped;
39
- function GatewaysFullfinanceScrapeJobStatusToJSON(value) {
40
- return value;
41
- }
42
- exports.GatewaysFullfinanceScrapeJobStatusToJSON = GatewaysFullfinanceScrapeJobStatusToJSON;
@@ -1,44 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * Equisoft /connect API
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: latest
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
-
15
-
16
- /**
17
- *
18
- * @export
19
- */
20
- export const GatewaysFullfinanceScrapeJobStatus = {
21
- UNKNOWN: 'UNKNOWN',
22
- NEW: 'NEW',
23
- QUEUED: 'QUEUED',
24
- LOGIN: 'LOGIN',
25
- MFA: 'MFA',
26
- RUNNING: 'RUNNING',
27
- COMPLETED: 'COMPLETED',
28
- unknown_default_open_api: '11184809'
29
- } as const;
30
- export type GatewaysFullfinanceScrapeJobStatus = typeof GatewaysFullfinanceScrapeJobStatus[keyof typeof GatewaysFullfinanceScrapeJobStatus];
31
-
32
-
33
- export function GatewaysFullfinanceScrapeJobStatusFromJSON(json: any): GatewaysFullfinanceScrapeJobStatus {
34
- return GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, false);
35
- }
36
-
37
- export function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJobStatus {
38
- return json as GatewaysFullfinanceScrapeJobStatus;
39
- }
40
-
41
- export function GatewaysFullfinanceScrapeJobStatusToJSON(value?: GatewaysFullfinanceScrapeJobStatus | null): any {
42
- return value as any;
43
- }
44
-