@equisoft/equisoft-connect-sdk-typescript 10.11.3 → 10.12.1-snapshot.20211210211844

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.
@@ -72,6 +72,8 @@ src/models/GatewaysAccessesUser.ts
72
72
  src/models/GatewaysCredentials.ts
73
73
  src/models/GatewaysCredentialsWithSsn.ts
74
74
  src/models/GatewaysCredentialsWithSsnAllOf.ts
75
+ src/models/GatewaysFullfinanceScrapeJob.ts
76
+ src/models/GatewaysFullfinanceScrapeJobStatus.ts
75
77
  src/models/GatewaysGatewayName.ts
76
78
  src/models/GatewaysGatewayType.ts
77
79
  src/models/GatewaysListCredentialsResponse.ts
@@ -0,0 +1,46 @@
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
+ import { GatewaysFullfinanceScrapeJobStatus } from './';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GatewaysFullfinanceScrapeJob
17
+ */
18
+ export interface GatewaysFullfinanceScrapeJob {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof GatewaysFullfinanceScrapeJob
23
+ */
24
+ id: string;
25
+ /**
26
+ *
27
+ * @type {Date}
28
+ * @memberof GatewaysFullfinanceScrapeJob
29
+ */
30
+ completionDate?: Date | null;
31
+ /**
32
+ *
33
+ * @type {Date}
34
+ * @memberof GatewaysFullfinanceScrapeJob
35
+ */
36
+ creationDate: Date;
37
+ /**
38
+ *
39
+ * @type {GatewaysFullfinanceScrapeJobStatus}
40
+ * @memberof GatewaysFullfinanceScrapeJob
41
+ */
42
+ status: GatewaysFullfinanceScrapeJobStatus;
43
+ }
44
+ export declare function GatewaysFullfinanceScrapeJobFromJSON(json: any): GatewaysFullfinanceScrapeJob;
45
+ export declare function GatewaysFullfinanceScrapeJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJob;
46
+ export declare function GatewaysFullfinanceScrapeJobToJSON(value?: GatewaysFullfinanceScrapeJob | null): any;
@@ -0,0 +1,49 @@
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.GatewaysFullfinanceScrapeJobToJSON = exports.GatewaysFullfinanceScrapeJobFromJSONTyped = exports.GatewaysFullfinanceScrapeJobFromJSON = void 0;
17
+ const runtime_1 = require("../runtime");
18
+ const _1 = require("./");
19
+ function GatewaysFullfinanceScrapeJobFromJSON(json) {
20
+ return GatewaysFullfinanceScrapeJobFromJSONTyped(json, false);
21
+ }
22
+ exports.GatewaysFullfinanceScrapeJobFromJSON = GatewaysFullfinanceScrapeJobFromJSON;
23
+ function GatewaysFullfinanceScrapeJobFromJSONTyped(json, ignoreDiscriminator) {
24
+ if ((json === undefined) || (json === null)) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'id': json['id'],
29
+ 'completionDate': !runtime_1.exists(json, 'completionDate') ? undefined : (json['completionDate'] === null ? null : new Date(json['completionDate'])),
30
+ 'creationDate': (new Date(json['creationDate'])),
31
+ 'status': _1.GatewaysFullfinanceScrapeJobStatusFromJSON(json['status']),
32
+ };
33
+ }
34
+ exports.GatewaysFullfinanceScrapeJobFromJSONTyped = GatewaysFullfinanceScrapeJobFromJSONTyped;
35
+ function GatewaysFullfinanceScrapeJobToJSON(value) {
36
+ if (value === undefined) {
37
+ return undefined;
38
+ }
39
+ if (value === null) {
40
+ return null;
41
+ }
42
+ return {
43
+ 'id': value.id,
44
+ 'completionDate': value.completionDate === undefined ? undefined : (value.completionDate === null ? null : value.completionDate.toISOString().substr(0, 10)),
45
+ 'creationDate': (value.creationDate.toISOString().substr(0, 10)),
46
+ 'status': _1.GatewaysFullfinanceScrapeJobStatusToJSON(value.status),
47
+ };
48
+ }
49
+ exports.GatewaysFullfinanceScrapeJobToJSON = GatewaysFullfinanceScrapeJobToJSON;
@@ -0,0 +1,28 @@
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
+ * @enum {string}
16
+ */
17
+ export declare enum GatewaysFullfinanceScrapeJobStatus {
18
+ UNKNOWN = "UNKNOWN",
19
+ NEW = "NEW",
20
+ QUEUED = "QUEUED",
21
+ LOGIN = "LOGIN",
22
+ MFA = "MFA",
23
+ RUNNING = "RUNNING",
24
+ COMPLETED = "COMPLETED"
25
+ }
26
+ export declare function GatewaysFullfinanceScrapeJobStatusFromJSON(json: any): GatewaysFullfinanceScrapeJobStatus;
27
+ export declare function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJobStatus;
28
+ export declare function GatewaysFullfinanceScrapeJobStatusToJSON(value?: GatewaysFullfinanceScrapeJobStatus | null): any;
@@ -0,0 +1,43 @@
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
+ * @enum {string}
21
+ */
22
+ var GatewaysFullfinanceScrapeJobStatus;
23
+ (function (GatewaysFullfinanceScrapeJobStatus) {
24
+ GatewaysFullfinanceScrapeJobStatus["UNKNOWN"] = "UNKNOWN";
25
+ GatewaysFullfinanceScrapeJobStatus["NEW"] = "NEW";
26
+ GatewaysFullfinanceScrapeJobStatus["QUEUED"] = "QUEUED";
27
+ GatewaysFullfinanceScrapeJobStatus["LOGIN"] = "LOGIN";
28
+ GatewaysFullfinanceScrapeJobStatus["MFA"] = "MFA";
29
+ GatewaysFullfinanceScrapeJobStatus["RUNNING"] = "RUNNING";
30
+ GatewaysFullfinanceScrapeJobStatus["COMPLETED"] = "COMPLETED";
31
+ })(GatewaysFullfinanceScrapeJobStatus = exports.GatewaysFullfinanceScrapeJobStatus || (exports.GatewaysFullfinanceScrapeJobStatus = {}));
32
+ function GatewaysFullfinanceScrapeJobStatusFromJSON(json) {
33
+ return GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, false);
34
+ }
35
+ exports.GatewaysFullfinanceScrapeJobStatusFromJSON = GatewaysFullfinanceScrapeJobStatusFromJSON;
36
+ function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, ignoreDiscriminator) {
37
+ return json;
38
+ }
39
+ exports.GatewaysFullfinanceScrapeJobStatusFromJSONTyped = GatewaysFullfinanceScrapeJobStatusFromJSONTyped;
40
+ function GatewaysFullfinanceScrapeJobStatusToJSON(value) {
41
+ return value;
42
+ }
43
+ exports.GatewaysFullfinanceScrapeJobStatusToJSON = GatewaysFullfinanceScrapeJobStatusToJSON;
@@ -54,6 +54,8 @@ export * from './GatewaysAccessesUser';
54
54
  export * from './GatewaysCredentials';
55
55
  export * from './GatewaysCredentialsWithSsn';
56
56
  export * from './GatewaysCredentialsWithSsnAllOf';
57
+ export * from './GatewaysFullfinanceScrapeJob';
58
+ export * from './GatewaysFullfinanceScrapeJobStatus';
57
59
  export * from './GatewaysGatewayName';
58
60
  export * from './GatewaysGatewayType';
59
61
  export * from './GatewaysListCredentialsResponse';
@@ -68,6 +68,8 @@ __exportStar(require("./GatewaysAccessesUser"), exports);
68
68
  __exportStar(require("./GatewaysCredentials"), exports);
69
69
  __exportStar(require("./GatewaysCredentialsWithSsn"), exports);
70
70
  __exportStar(require("./GatewaysCredentialsWithSsnAllOf"), exports);
71
+ __exportStar(require("./GatewaysFullfinanceScrapeJob"), exports);
72
+ __exportStar(require("./GatewaysFullfinanceScrapeJobStatus"), exports);
71
73
  __exportStar(require("./GatewaysGatewayName"), exports);
72
74
  __exportStar(require("./GatewaysGatewayType"), exports);
73
75
  __exportStar(require("./GatewaysListCredentialsResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "10.11.3",
3
+ "version": "10.12.1-snapshot.20211210211844",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "main": "./dist/index.js",
@@ -0,0 +1,88 @@
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
+ import { exists, mapValues } from '../runtime';
16
+ import {
17
+ GatewaysFullfinanceScrapeJobStatus,
18
+ GatewaysFullfinanceScrapeJobStatusFromJSON,
19
+ GatewaysFullfinanceScrapeJobStatusFromJSONTyped,
20
+ GatewaysFullfinanceScrapeJobStatusToJSON,
21
+ } from './';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GatewaysFullfinanceScrapeJob
27
+ */
28
+ export interface GatewaysFullfinanceScrapeJob {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof GatewaysFullfinanceScrapeJob
33
+ */
34
+ id: string;
35
+ /**
36
+ *
37
+ * @type {Date}
38
+ * @memberof GatewaysFullfinanceScrapeJob
39
+ */
40
+ completionDate?: Date | null;
41
+ /**
42
+ *
43
+ * @type {Date}
44
+ * @memberof GatewaysFullfinanceScrapeJob
45
+ */
46
+ creationDate: Date;
47
+ /**
48
+ *
49
+ * @type {GatewaysFullfinanceScrapeJobStatus}
50
+ * @memberof GatewaysFullfinanceScrapeJob
51
+ */
52
+ status: GatewaysFullfinanceScrapeJobStatus;
53
+ }
54
+
55
+ export function GatewaysFullfinanceScrapeJobFromJSON(json: any): GatewaysFullfinanceScrapeJob {
56
+ return GatewaysFullfinanceScrapeJobFromJSONTyped(json, false);
57
+ }
58
+
59
+ export function GatewaysFullfinanceScrapeJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJob {
60
+ if ((json === undefined) || (json === null)) {
61
+ return json;
62
+ }
63
+ return {
64
+
65
+ 'id': json['id'],
66
+ 'completionDate': !exists(json, 'completionDate') ? undefined : (json['completionDate'] === null ? null : new Date(json['completionDate'])),
67
+ 'creationDate': (new Date(json['creationDate'])),
68
+ 'status': GatewaysFullfinanceScrapeJobStatusFromJSON(json['status']),
69
+ };
70
+ }
71
+
72
+ export function GatewaysFullfinanceScrapeJobToJSON(value?: GatewaysFullfinanceScrapeJob | null): any {
73
+ if (value === undefined) {
74
+ return undefined;
75
+ }
76
+ if (value === null) {
77
+ return null;
78
+ }
79
+ return {
80
+
81
+ 'id': value.id,
82
+ 'completionDate': value.completionDate === undefined ? undefined : (value.completionDate === null ? null : value.completionDate.toISOString().substr(0,10)),
83
+ 'creationDate': (value.creationDate.toISOString().substr(0,10)),
84
+ 'status': GatewaysFullfinanceScrapeJobStatusToJSON(value.status),
85
+ };
86
+ }
87
+
88
+
@@ -0,0 +1,41 @@
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
+ * @export
18
+ * @enum {string}
19
+ */
20
+ export enum GatewaysFullfinanceScrapeJobStatus {
21
+ UNKNOWN = 'UNKNOWN',
22
+ NEW = 'NEW',
23
+ QUEUED = 'QUEUED',
24
+ LOGIN = 'LOGIN',
25
+ MFA = 'MFA',
26
+ RUNNING = 'RUNNING',
27
+ COMPLETED = 'COMPLETED'
28
+ }
29
+
30
+ export function GatewaysFullfinanceScrapeJobStatusFromJSON(json: any): GatewaysFullfinanceScrapeJobStatus {
31
+ return GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json, false);
32
+ }
33
+
34
+ export function GatewaysFullfinanceScrapeJobStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysFullfinanceScrapeJobStatus {
35
+ return json as GatewaysFullfinanceScrapeJobStatus;
36
+ }
37
+
38
+ export function GatewaysFullfinanceScrapeJobStatusToJSON(value?: GatewaysFullfinanceScrapeJobStatus | null): any {
39
+ return value as any;
40
+ }
41
+
@@ -56,6 +56,8 @@ export * from './GatewaysAccessesUser';
56
56
  export * from './GatewaysCredentials';
57
57
  export * from './GatewaysCredentialsWithSsn';
58
58
  export * from './GatewaysCredentialsWithSsnAllOf';
59
+ export * from './GatewaysFullfinanceScrapeJob';
60
+ export * from './GatewaysFullfinanceScrapeJobStatus';
59
61
  export * from './GatewaysGatewayName';
60
62
  export * from './GatewaysGatewayType';
61
63
  export * from './GatewaysListCredentialsResponse';