@randock/nameshift-api-client 0.0.268 → 0.0.270
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 +1 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +3 -3
- package/dist/models/AggregatedPaginationResponse.d.ts +32 -0
- package/dist/models/AggregatedPaginationResponse.js +51 -0
- package/dist/models/BuyerLeadListItemDto.d.ts +1 -0
- package/dist/models/BuyerLeadListItemDto.js +1 -0
- package/dist/models/CreateLeadInput.d.ts +1 -0
- package/dist/models/CreateLeadInput.js +1 -0
- package/dist/models/IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto.d.ts +1 -0
- package/dist/models/IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto.js +1 -0
- package/dist/models/IntersectionLeadDtoWithListFieldsDto.d.ts +2 -0
- package/dist/models/IntersectionLeadDtoWithListFieldsDto.js +2 -0
- package/dist/models/LeadDto.d.ts +1 -0
- package/dist/models/LeadDto.js +1 -0
- package/dist/models/LeadMessageDto.d.ts +1 -0
- package/dist/models/LeadMessageDto.js +1 -0
- package/dist/models/List200Response3.d.ts +6 -0
- package/dist/models/List200Response3.js +4 -0
- package/dist/models/TaskListLeadDto.d.ts +1 -0
- package/dist/models/TaskListLeadDto.js +1 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/package.json +1 -1
- package/src/models/AggregatedPaginationResponse.ts +66 -0
- package/src/models/BuyerLeadListItemDto.ts +1 -0
- package/src/models/CreateLeadInput.ts +1 -0
- package/src/models/IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto.ts +1 -0
- package/src/models/IntersectionLeadDtoWithListFieldsDto.ts +2 -0
- package/src/models/LeadDto.ts +1 -0
- package/src/models/LeadMessageDto.ts +1 -0
- package/src/models/List200Response3.ts +9 -0
- package/src/models/TaskListLeadDto.ts +1 -0
- package/src/models/index.ts +1 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -48,6 +48,7 @@ src/models/AdminAccountSettingsInput.ts
|
|
|
48
48
|
src/models/AdminBankAccountDto.ts
|
|
49
49
|
src/models/AdminGetAllDomainTransfers200Response.ts
|
|
50
50
|
src/models/AdminVerificationDepositDto.ts
|
|
51
|
+
src/models/AggregatedPaginationResponse.ts
|
|
51
52
|
src/models/AirwallexBankAccountDetailsDto.ts
|
|
52
53
|
src/models/AirwallexBankAccountDetailsDtoInstitution.ts
|
|
53
54
|
src/models/AirwallexBankAccountDetailsDtoLocalMethod.ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.11.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.270
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @randock/nameshift-api-client@0.0.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.270 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
9a2c052e059f964f24a99da947e1c05fd94b8ca9b13de1c64577d22d816818028c89004f4b3d3f0fb9082eab2891ed38
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
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
|
+
* @interface AggregatedPaginationResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface AggregatedPaginationResponse {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof AggregatedPaginationResponse
|
|
22
|
+
*/
|
|
23
|
+
aggregations: object;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the AggregatedPaginationResponse interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfAggregatedPaginationResponse(value: object): value is AggregatedPaginationResponse;
|
|
29
|
+
export declare function AggregatedPaginationResponseFromJSON(json: any): AggregatedPaginationResponse;
|
|
30
|
+
export declare function AggregatedPaginationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregatedPaginationResponse;
|
|
31
|
+
export declare function AggregatedPaginationResponseToJSON(json: any): AggregatedPaginationResponse;
|
|
32
|
+
export declare function AggregatedPaginationResponseToJSONTyped(value?: AggregatedPaginationResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
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.instanceOfAggregatedPaginationResponse = instanceOfAggregatedPaginationResponse;
|
|
17
|
+
exports.AggregatedPaginationResponseFromJSON = AggregatedPaginationResponseFromJSON;
|
|
18
|
+
exports.AggregatedPaginationResponseFromJSONTyped = AggregatedPaginationResponseFromJSONTyped;
|
|
19
|
+
exports.AggregatedPaginationResponseToJSON = AggregatedPaginationResponseToJSON;
|
|
20
|
+
exports.AggregatedPaginationResponseToJSONTyped = AggregatedPaginationResponseToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the AggregatedPaginationResponse interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfAggregatedPaginationResponse(value) {
|
|
25
|
+
if (!('aggregations' in value) || value['aggregations'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function AggregatedPaginationResponseFromJSON(json) {
|
|
30
|
+
return AggregatedPaginationResponseFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function AggregatedPaginationResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'aggregations': json['aggregations'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function AggregatedPaginationResponseToJSON(json) {
|
|
41
|
+
return AggregatedPaginationResponseToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function AggregatedPaginationResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
44
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'aggregations': value['aggregations'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -83,6 +83,7 @@ export type BuyerLeadListItemDtoStatusEnum = typeof BuyerLeadListItemDtoStatusEn
|
|
|
83
83
|
export declare const BuyerLeadListItemDtoLastOfferByEnum: {
|
|
84
84
|
readonly BUYER: "buyer";
|
|
85
85
|
readonly SELLER: "seller";
|
|
86
|
+
readonly AI: "ai";
|
|
86
87
|
readonly ADMIN: "admin";
|
|
87
88
|
};
|
|
88
89
|
export type BuyerLeadListItemDtoLastOfferByEnum = typeof BuyerLeadListItemDtoLastOfferByEnum[keyof typeof BuyerLeadListItemDtoLastOfferByEnum];
|
|
@@ -65,6 +65,7 @@ export interface CreateLeadInput {
|
|
|
65
65
|
export declare const CreateLeadInputOfferedByEnum: {
|
|
66
66
|
readonly BUYER: "buyer";
|
|
67
67
|
readonly SELLER: "seller";
|
|
68
|
+
readonly AI: "ai";
|
|
68
69
|
readonly ADMIN: "admin";
|
|
69
70
|
};
|
|
70
71
|
export type CreateLeadInputOfferedByEnum = typeof CreateLeadInputOfferedByEnum[keyof typeof CreateLeadInputOfferedByEnum];
|
|
@@ -114,6 +114,7 @@ export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoStatusEnum =
|
|
|
114
114
|
export declare const IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum: {
|
|
115
115
|
readonly BUYER: "buyer";
|
|
116
116
|
readonly SELLER: "seller";
|
|
117
|
+
readonly AI: "ai";
|
|
117
118
|
readonly ADMIN: "admin";
|
|
118
119
|
};
|
|
119
120
|
export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum[keyof typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum];
|
|
@@ -150,6 +150,7 @@ export type IntersectionLeadDtoWithListFieldsDtoStatusEnum = typeof Intersection
|
|
|
150
150
|
export declare const IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum: {
|
|
151
151
|
readonly BUYER: "buyer";
|
|
152
152
|
readonly SELLER: "seller";
|
|
153
|
+
readonly AI: "ai";
|
|
153
154
|
readonly ADMIN: "admin";
|
|
154
155
|
};
|
|
155
156
|
export type IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = typeof IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum[keyof typeof IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum];
|
|
@@ -159,6 +160,7 @@ export type IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = typeof Interse
|
|
|
159
160
|
export declare const IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum: {
|
|
160
161
|
readonly BUYER: "buyer";
|
|
161
162
|
readonly SELLER: "seller";
|
|
163
|
+
readonly AI: "ai";
|
|
162
164
|
readonly ADMIN: "admin";
|
|
163
165
|
};
|
|
164
166
|
export type IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = typeof IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum[keyof typeof IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum];
|
|
@@ -38,6 +38,7 @@ exports.IntersectionLeadDtoWithListFieldsDtoStatusEnum = {
|
|
|
38
38
|
exports.IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = {
|
|
39
39
|
BUYER: 'buyer',
|
|
40
40
|
SELLER: 'seller',
|
|
41
|
+
AI: 'ai',
|
|
41
42
|
ADMIN: 'admin'
|
|
42
43
|
};
|
|
43
44
|
/**
|
|
@@ -46,6 +47,7 @@ exports.IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = {
|
|
|
46
47
|
exports.IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = {
|
|
47
48
|
BUYER: 'buyer',
|
|
48
49
|
SELLER: 'seller',
|
|
50
|
+
AI: 'ai',
|
|
49
51
|
ADMIN: 'admin'
|
|
50
52
|
};
|
|
51
53
|
/**
|
package/dist/models/LeadDto.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ export type LeadDtoStatusEnum = typeof LeadDtoStatusEnum[keyof typeof LeadDtoSta
|
|
|
107
107
|
export declare const LeadDtoLastOfferByEnum: {
|
|
108
108
|
readonly BUYER: "buyer";
|
|
109
109
|
readonly SELLER: "seller";
|
|
110
|
+
readonly AI: "ai";
|
|
110
111
|
readonly ADMIN: "admin";
|
|
111
112
|
};
|
|
112
113
|
export type LeadDtoLastOfferByEnum = typeof LeadDtoLastOfferByEnum[keyof typeof LeadDtoLastOfferByEnum];
|
package/dist/models/LeadDto.js
CHANGED
|
@@ -82,6 +82,7 @@ export type LeadMessageDtoTypeEnum = typeof LeadMessageDtoTypeEnum[keyof typeof
|
|
|
82
82
|
export declare const LeadMessageDtoOriginEnum: {
|
|
83
83
|
readonly BUYER: "buyer";
|
|
84
84
|
readonly SELLER: "seller";
|
|
85
|
+
readonly AI: "ai";
|
|
85
86
|
readonly ADMIN: "admin";
|
|
86
87
|
};
|
|
87
88
|
export type LeadMessageDtoOriginEnum = typeof LeadMessageDtoOriginEnum[keyof typeof LeadMessageDtoOriginEnum];
|
|
@@ -35,6 +35,12 @@ export interface List200Response3 {
|
|
|
35
35
|
* @memberof List200Response3
|
|
36
36
|
*/
|
|
37
37
|
pagination: CursorBasedPageInfo;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {object}
|
|
41
|
+
* @memberof List200Response3
|
|
42
|
+
*/
|
|
43
|
+
aggregations: object;
|
|
38
44
|
/**
|
|
39
45
|
*
|
|
40
46
|
* @type {Array<PublicDomainDto>}
|
|
@@ -37,6 +37,8 @@ function instanceOfList200Response3(value) {
|
|
|
37
37
|
return false;
|
|
38
38
|
if (!('pagination' in value) || value['pagination'] === undefined)
|
|
39
39
|
return false;
|
|
40
|
+
if (!('aggregations' in value) || value['aggregations'] === undefined)
|
|
41
|
+
return false;
|
|
40
42
|
return true;
|
|
41
43
|
}
|
|
42
44
|
function List200Response3FromJSON(json) {
|
|
@@ -50,6 +52,7 @@ function List200Response3FromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
52
|
'limit': json['limit'],
|
|
51
53
|
'type': json['type'],
|
|
52
54
|
'pagination': (0, CursorBasedPageInfo_1.CursorBasedPageInfoFromJSON)(json['pagination']),
|
|
55
|
+
'aggregations': json['aggregations'],
|
|
53
56
|
'data': json['data'] == null ? undefined : (json['data'].map(PublicDomainDto_1.PublicDomainDtoFromJSON)),
|
|
54
57
|
};
|
|
55
58
|
}
|
|
@@ -65,6 +68,7 @@ function List200Response3ToJSONTyped(value, ignoreDiscriminator) {
|
|
|
65
68
|
'limit': value['limit'],
|
|
66
69
|
'type': value['type'],
|
|
67
70
|
'pagination': (0, CursorBasedPageInfo_1.CursorBasedPageInfoToJSON)(value['pagination']),
|
|
71
|
+
'aggregations': value['aggregations'],
|
|
68
72
|
'data': value['data'] == null ? undefined : (value['data'].map(PublicDomainDto_1.PublicDomainDtoToJSON)),
|
|
69
73
|
};
|
|
70
74
|
}
|
|
@@ -47,6 +47,7 @@ export interface TaskListLeadDto {
|
|
|
47
47
|
export declare const TaskListLeadDtoLastOfferByEnum: {
|
|
48
48
|
readonly BUYER: "buyer";
|
|
49
49
|
readonly SELLER: "seller";
|
|
50
|
+
readonly AI: "ai";
|
|
50
51
|
readonly ADMIN: "admin";
|
|
51
52
|
};
|
|
52
53
|
export type TaskListLeadDtoLastOfferByEnum = typeof TaskListLeadDtoLastOfferByEnum[keyof typeof TaskListLeadDtoLastOfferByEnum];
|
package/dist/models/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export * from './AdminAccountSettingsInput';
|
|
|
21
21
|
export * from './AdminBankAccountDto';
|
|
22
22
|
export * from './AdminGetAllDomainTransfers200Response';
|
|
23
23
|
export * from './AdminVerificationDepositDto';
|
|
24
|
+
export * from './AggregatedPaginationResponse';
|
|
24
25
|
export * from './AirwallexBankAccountDetailsDto';
|
|
25
26
|
export * from './AirwallexBankAccountDetailsDtoInstitution';
|
|
26
27
|
export * from './AirwallexBankAccountDetailsDtoLocalMethod';
|
package/dist/models/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __exportStar(require("./AdminAccountSettingsInput"), exports);
|
|
|
39
39
|
__exportStar(require("./AdminBankAccountDto"), exports);
|
|
40
40
|
__exportStar(require("./AdminGetAllDomainTransfers200Response"), exports);
|
|
41
41
|
__exportStar(require("./AdminVerificationDepositDto"), exports);
|
|
42
|
+
__exportStar(require("./AggregatedPaginationResponse"), exports);
|
|
42
43
|
__exportStar(require("./AirwallexBankAccountDetailsDto"), exports);
|
|
43
44
|
__exportStar(require("./AirwallexBankAccountDetailsDtoInstitution"), exports);
|
|
44
45
|
__exportStar(require("./AirwallexBankAccountDetailsDtoLocalMethod"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Nameshift
|
|
5
|
+
* Nameshift API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
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 { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AggregatedPaginationResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface AggregatedPaginationResponse {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {object}
|
|
25
|
+
* @memberof AggregatedPaginationResponse
|
|
26
|
+
*/
|
|
27
|
+
aggregations: object;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the AggregatedPaginationResponse interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfAggregatedPaginationResponse(value: object): value is AggregatedPaginationResponse {
|
|
34
|
+
if (!('aggregations' in value) || value['aggregations'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function AggregatedPaginationResponseFromJSON(json: any): AggregatedPaginationResponse {
|
|
39
|
+
return AggregatedPaginationResponseFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function AggregatedPaginationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregatedPaginationResponse {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'aggregations': json['aggregations'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function AggregatedPaginationResponseToJSON(json: any): AggregatedPaginationResponse {
|
|
53
|
+
return AggregatedPaginationResponseToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function AggregatedPaginationResponseToJSONTyped(value?: AggregatedPaginationResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'aggregations': value['aggregations'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -103,6 +103,7 @@ export type BuyerLeadListItemDtoStatusEnum = typeof BuyerLeadListItemDtoStatusEn
|
|
|
103
103
|
export const BuyerLeadListItemDtoLastOfferByEnum = {
|
|
104
104
|
BUYER: 'buyer',
|
|
105
105
|
SELLER: 'seller',
|
|
106
|
+
AI: 'ai',
|
|
106
107
|
ADMIN: 'admin'
|
|
107
108
|
} as const;
|
|
108
109
|
export type BuyerLeadListItemDtoLastOfferByEnum = typeof BuyerLeadListItemDtoLastOfferByEnum[keyof typeof BuyerLeadListItemDtoLastOfferByEnum];
|
|
@@ -78,6 +78,7 @@ export interface CreateLeadInput {
|
|
|
78
78
|
export const CreateLeadInputOfferedByEnum = {
|
|
79
79
|
BUYER: 'buyer',
|
|
80
80
|
SELLER: 'seller',
|
|
81
|
+
AI: 'ai',
|
|
81
82
|
ADMIN: 'admin'
|
|
82
83
|
} as const;
|
|
83
84
|
export type CreateLeadInputOfferedByEnum = typeof CreateLeadInputOfferedByEnum[keyof typeof CreateLeadInputOfferedByEnum];
|
|
@@ -140,6 +140,7 @@ export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoStatusEnum =
|
|
|
140
140
|
export const IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = {
|
|
141
141
|
BUYER: 'buyer',
|
|
142
142
|
SELLER: 'seller',
|
|
143
|
+
AI: 'ai',
|
|
143
144
|
ADMIN: 'admin'
|
|
144
145
|
} as const;
|
|
145
146
|
export type IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum = typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum[keyof typeof IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDtoLastOfferByEnum];
|
|
@@ -176,6 +176,7 @@ export type IntersectionLeadDtoWithListFieldsDtoStatusEnum = typeof Intersection
|
|
|
176
176
|
export const IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = {
|
|
177
177
|
BUYER: 'buyer',
|
|
178
178
|
SELLER: 'seller',
|
|
179
|
+
AI: 'ai',
|
|
179
180
|
ADMIN: 'admin'
|
|
180
181
|
} as const;
|
|
181
182
|
export type IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = typeof IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum[keyof typeof IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum];
|
|
@@ -186,6 +187,7 @@ export type IntersectionLeadDtoWithListFieldsDtoLastOfferByEnum = typeof Interse
|
|
|
186
187
|
export const IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = {
|
|
187
188
|
BUYER: 'buyer',
|
|
188
189
|
SELLER: 'seller',
|
|
190
|
+
AI: 'ai',
|
|
189
191
|
ADMIN: 'admin'
|
|
190
192
|
} as const;
|
|
191
193
|
export type IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum = typeof IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum[keyof typeof IntersectionLeadDtoWithListFieldsDtoLastMessageFromEnum];
|
package/src/models/LeadDto.ts
CHANGED
|
@@ -127,6 +127,7 @@ export type LeadDtoStatusEnum = typeof LeadDtoStatusEnum[keyof typeof LeadDtoSta
|
|
|
127
127
|
export const LeadDtoLastOfferByEnum = {
|
|
128
128
|
BUYER: 'buyer',
|
|
129
129
|
SELLER: 'seller',
|
|
130
|
+
AI: 'ai',
|
|
130
131
|
ADMIN: 'admin'
|
|
131
132
|
} as const;
|
|
132
133
|
export type LeadDtoLastOfferByEnum = typeof LeadDtoLastOfferByEnum[keyof typeof LeadDtoLastOfferByEnum];
|
|
@@ -96,6 +96,7 @@ export type LeadMessageDtoTypeEnum = typeof LeadMessageDtoTypeEnum[keyof typeof
|
|
|
96
96
|
export const LeadMessageDtoOriginEnum = {
|
|
97
97
|
BUYER: 'buyer',
|
|
98
98
|
SELLER: 'seller',
|
|
99
|
+
AI: 'ai',
|
|
99
100
|
ADMIN: 'admin'
|
|
100
101
|
} as const;
|
|
101
102
|
export type LeadMessageDtoOriginEnum = typeof LeadMessageDtoOriginEnum[keyof typeof LeadMessageDtoOriginEnum];
|
|
@@ -52,6 +52,12 @@ export interface List200Response3 {
|
|
|
52
52
|
* @memberof List200Response3
|
|
53
53
|
*/
|
|
54
54
|
pagination: CursorBasedPageInfo;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {object}
|
|
58
|
+
* @memberof List200Response3
|
|
59
|
+
*/
|
|
60
|
+
aggregations: object;
|
|
55
61
|
/**
|
|
56
62
|
*
|
|
57
63
|
* @type {Array<PublicDomainDto>}
|
|
@@ -77,6 +83,7 @@ export function instanceOfList200Response3(value: object): value is List200Respo
|
|
|
77
83
|
if (!('limit' in value) || value['limit'] === undefined) return false;
|
|
78
84
|
if (!('type' in value) || value['type'] === undefined) return false;
|
|
79
85
|
if (!('pagination' in value) || value['pagination'] === undefined) return false;
|
|
86
|
+
if (!('aggregations' in value) || value['aggregations'] === undefined) return false;
|
|
80
87
|
return true;
|
|
81
88
|
}
|
|
82
89
|
|
|
@@ -93,6 +100,7 @@ export function List200Response3FromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
93
100
|
'limit': json['limit'],
|
|
94
101
|
'type': json['type'],
|
|
95
102
|
'pagination': CursorBasedPageInfoFromJSON(json['pagination']),
|
|
103
|
+
'aggregations': json['aggregations'],
|
|
96
104
|
'data': json['data'] == null ? undefined : ((json['data'] as Array<any>).map(PublicDomainDtoFromJSON)),
|
|
97
105
|
};
|
|
98
106
|
}
|
|
@@ -111,6 +119,7 @@ export function List200Response3ToJSONTyped(value?: List200Response3 | null, ign
|
|
|
111
119
|
'limit': value['limit'],
|
|
112
120
|
'type': value['type'],
|
|
113
121
|
'pagination': CursorBasedPageInfoToJSON(value['pagination']),
|
|
122
|
+
'aggregations': value['aggregations'],
|
|
114
123
|
'data': value['data'] == null ? undefined : ((value['data'] as Array<any>).map(PublicDomainDtoToJSON)),
|
|
115
124
|
};
|
|
116
125
|
}
|
|
@@ -60,6 +60,7 @@ export interface TaskListLeadDto {
|
|
|
60
60
|
export const TaskListLeadDtoLastOfferByEnum = {
|
|
61
61
|
BUYER: 'buyer',
|
|
62
62
|
SELLER: 'seller',
|
|
63
|
+
AI: 'ai',
|
|
63
64
|
ADMIN: 'admin'
|
|
64
65
|
} as const;
|
|
65
66
|
export type TaskListLeadDtoLastOfferByEnum = typeof TaskListLeadDtoLastOfferByEnum[keyof typeof TaskListLeadDtoLastOfferByEnum];
|
package/src/models/index.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from './AdminAccountSettingsInput';
|
|
|
23
23
|
export * from './AdminBankAccountDto';
|
|
24
24
|
export * from './AdminGetAllDomainTransfers200Response';
|
|
25
25
|
export * from './AdminVerificationDepositDto';
|
|
26
|
+
export * from './AggregatedPaginationResponse';
|
|
26
27
|
export * from './AirwallexBankAccountDetailsDto';
|
|
27
28
|
export * from './AirwallexBankAccountDetailsDtoInstitution';
|
|
28
29
|
export * from './AirwallexBankAccountDetailsDtoLocalMethod';
|