@equisoft/equisoft-connect-sdk-typescript 10.12.8-snapshot.20211223120937 → 10.12.8
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/.openapi-generator/FILES +0 -2
- package/dist/models/GatewaysCredentials.d.ts +0 -6
- package/dist/models/GatewaysCredentials.js +0 -2
- package/dist/models/GatewaysCredentialsWithSsn.d.ts +0 -6
- package/dist/models/GatewaysCredentialsWithSsn.js +0 -2
- package/dist/models/index.d.ts +0 -2
- package/dist/models/index.js +0 -2
- package/package.json +1 -1
- package/src/models/GatewaysCredentials.ts +0 -8
- package/src/models/GatewaysCredentialsWithSsn.ts +0 -8
- package/src/models/index.ts +0 -2
- package/dist/models/GatewaysFullfinanceScrapeJob.d.ts +0 -46
- package/dist/models/GatewaysFullfinanceScrapeJob.js +0 -49
- package/dist/models/GatewaysFullfinanceScrapeJobStatus.d.ts +0 -28
- package/dist/models/GatewaysFullfinanceScrapeJobStatus.js +0 -43
- package/src/models/GatewaysFullfinanceScrapeJob.ts +0 -88
- package/src/models/GatewaysFullfinanceScrapeJobStatus.ts +0 -41
package/.openapi-generator/FILES
CHANGED
|
@@ -72,8 +72,6 @@ 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
|
|
77
75
|
src/models/GatewaysGatewayName.ts
|
|
78
76
|
src/models/GatewaysGatewayType.ts
|
|
79
77
|
src/models/GatewaysListCredentialsResponse.ts
|
|
@@ -39,12 +39,6 @@ export interface GatewaysCredentials {
|
|
|
39
39
|
* @memberof GatewaysCredentials
|
|
40
40
|
*/
|
|
41
41
|
isADealerCode?: boolean;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof GatewaysCredentials
|
|
46
|
-
*/
|
|
47
|
-
dealerSystemName?: string;
|
|
48
42
|
}
|
|
49
43
|
export declare function GatewaysCredentialsFromJSON(json: any): GatewaysCredentials;
|
|
50
44
|
export declare function GatewaysCredentialsFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewaysCredentials;
|
|
@@ -28,7 +28,6 @@ function GatewaysCredentialsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
'password': json['password'],
|
|
29
29
|
'repcode': !runtime_1.exists(json, 'repcode') ? undefined : json['repcode'],
|
|
30
30
|
'isADealerCode': !runtime_1.exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
|
|
31
|
-
'dealerSystemName': !runtime_1.exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
|
|
32
31
|
};
|
|
33
32
|
}
|
|
34
33
|
exports.GatewaysCredentialsFromJSONTyped = GatewaysCredentialsFromJSONTyped;
|
|
@@ -44,7 +43,6 @@ function GatewaysCredentialsToJSON(value) {
|
|
|
44
43
|
'password': value.password,
|
|
45
44
|
'repcode': value.repcode,
|
|
46
45
|
'isADealerCode': value.isADealerCode,
|
|
47
|
-
'dealerSystemName': value.dealerSystemName,
|
|
48
46
|
};
|
|
49
47
|
}
|
|
50
48
|
exports.GatewaysCredentialsToJSON = GatewaysCredentialsToJSON;
|
|
@@ -39,12 +39,6 @@ export interface GatewaysCredentialsWithSsn {
|
|
|
39
39
|
* @memberof GatewaysCredentialsWithSsn
|
|
40
40
|
*/
|
|
41
41
|
isADealerCode?: boolean;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof GatewaysCredentialsWithSsn
|
|
46
|
-
*/
|
|
47
|
-
dealerSystemName?: string;
|
|
48
42
|
/**
|
|
49
43
|
* The list will contain formatted SSNs, i.e. "123 456 789"
|
|
50
44
|
* @type {Array<string>}
|
|
@@ -28,7 +28,6 @@ function GatewaysCredentialsWithSsnFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
28
28
|
'password': json['password'],
|
|
29
29
|
'repcode': !runtime_1.exists(json, 'repcode') ? undefined : json['repcode'],
|
|
30
30
|
'isADealerCode': !runtime_1.exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
|
|
31
|
-
'dealerSystemName': !runtime_1.exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
|
|
32
31
|
'ssnList': !runtime_1.exists(json, 'ssnList') ? undefined : json['ssnList'],
|
|
33
32
|
};
|
|
34
33
|
}
|
|
@@ -45,7 +44,6 @@ function GatewaysCredentialsWithSsnToJSON(value) {
|
|
|
45
44
|
'password': value.password,
|
|
46
45
|
'repcode': value.repcode,
|
|
47
46
|
'isADealerCode': value.isADealerCode,
|
|
48
|
-
'dealerSystemName': value.dealerSystemName,
|
|
49
47
|
'ssnList': value.ssnList,
|
|
50
48
|
};
|
|
51
49
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -54,8 +54,6 @@ 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';
|
|
59
57
|
export * from './GatewaysGatewayName';
|
|
60
58
|
export * from './GatewaysGatewayType';
|
|
61
59
|
export * from './GatewaysListCredentialsResponse';
|
package/dist/models/index.js
CHANGED
|
@@ -68,8 +68,6 @@ __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);
|
|
73
71
|
__exportStar(require("./GatewaysGatewayName"), exports);
|
|
74
72
|
__exportStar(require("./GatewaysGatewayType"), exports);
|
|
75
73
|
__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.12.8
|
|
3
|
+
"version": "10.12.8",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -43,12 +43,6 @@ export interface GatewaysCredentials {
|
|
|
43
43
|
* @memberof GatewaysCredentials
|
|
44
44
|
*/
|
|
45
45
|
isADealerCode?: boolean;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof GatewaysCredentials
|
|
50
|
-
*/
|
|
51
|
-
dealerSystemName?: string;
|
|
52
46
|
}
|
|
53
47
|
|
|
54
48
|
export function GatewaysCredentialsFromJSON(json: any): GatewaysCredentials {
|
|
@@ -65,7 +59,6 @@ export function GatewaysCredentialsFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
65
59
|
'password': json['password'],
|
|
66
60
|
'repcode': !exists(json, 'repcode') ? undefined : json['repcode'],
|
|
67
61
|
'isADealerCode': !exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
|
|
68
|
-
'dealerSystemName': !exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
|
|
69
62
|
};
|
|
70
63
|
}
|
|
71
64
|
|
|
@@ -82,7 +75,6 @@ export function GatewaysCredentialsToJSON(value?: GatewaysCredentials | null): a
|
|
|
82
75
|
'password': value.password,
|
|
83
76
|
'repcode': value.repcode,
|
|
84
77
|
'isADealerCode': value.isADealerCode,
|
|
85
|
-
'dealerSystemName': value.dealerSystemName,
|
|
86
78
|
};
|
|
87
79
|
}
|
|
88
80
|
|
|
@@ -54,12 +54,6 @@ export interface GatewaysCredentialsWithSsn {
|
|
|
54
54
|
* @memberof GatewaysCredentialsWithSsn
|
|
55
55
|
*/
|
|
56
56
|
isADealerCode?: boolean;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof GatewaysCredentialsWithSsn
|
|
61
|
-
*/
|
|
62
|
-
dealerSystemName?: string;
|
|
63
57
|
/**
|
|
64
58
|
* The list will contain formatted SSNs, i.e. "123 456 789"
|
|
65
59
|
* @type {Array<string>}
|
|
@@ -82,7 +76,6 @@ export function GatewaysCredentialsWithSsnFromJSONTyped(json: any, ignoreDiscrim
|
|
|
82
76
|
'password': json['password'],
|
|
83
77
|
'repcode': !exists(json, 'repcode') ? undefined : json['repcode'],
|
|
84
78
|
'isADealerCode': !exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
|
|
85
|
-
'dealerSystemName': !exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
|
|
86
79
|
'ssnList': !exists(json, 'ssnList') ? undefined : json['ssnList'],
|
|
87
80
|
};
|
|
88
81
|
}
|
|
@@ -100,7 +93,6 @@ export function GatewaysCredentialsWithSsnToJSON(value?: GatewaysCredentialsWith
|
|
|
100
93
|
'password': value.password,
|
|
101
94
|
'repcode': value.repcode,
|
|
102
95
|
'isADealerCode': value.isADealerCode,
|
|
103
|
-
'dealerSystemName': value.dealerSystemName,
|
|
104
96
|
'ssnList': value.ssnList,
|
|
105
97
|
};
|
|
106
98
|
}
|
package/src/models/index.ts
CHANGED
|
@@ -56,8 +56,6 @@ 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';
|
|
61
59
|
export * from './GatewaysGatewayName';
|
|
62
60
|
export * from './GatewaysGatewayType';
|
|
63
61
|
export * from './GatewaysListCredentialsResponse';
|
|
@@ -1,46 +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
|
-
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;
|
|
@@ -1,49 +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.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;
|
|
@@ -1,28 +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
|
-
* @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;
|
|
@@ -1,43 +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
|
-
* @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;
|
|
@@ -1,88 +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
|
-
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
|
-
|
|
@@ -1,41 +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
|
-
* @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
|
-
|