@randock/nameshift-api-client 0.0.441 → 0.0.442
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 +8 -0
- package/README.md +3 -3
- package/dist/apis/AdminApi.d.ts +49 -1
- package/dist/apis/AdminApi.js +187 -0
- package/dist/models/AdminBankDepositAccountBankAccountDto.d.ts +39 -0
- package/dist/models/AdminBankDepositAccountBankAccountDto.js +56 -0
- package/dist/models/AdminBankDepositAccountDto.d.ts +38 -0
- package/dist/models/AdminBankDepositAccountDto.js +55 -0
- package/dist/models/AdminBankDepositDto.d.ts +76 -0
- package/dist/models/AdminBankDepositDto.js +81 -0
- package/dist/models/AdminBankDepositInvoiceDto.d.ts +54 -0
- package/dist/models/AdminBankDepositInvoiceDto.js +69 -0
- package/dist/models/AdminBankDepositInvoiceTransactionDto.d.ts +39 -0
- package/dist/models/AdminBankDepositInvoiceTransactionDto.js +56 -0
- package/dist/models/AirwallexBankAccountDetailsDto.d.ts +1 -1
- package/dist/models/LinkBankDepositToBankAccountInput.d.ts +32 -0
- package/dist/models/LinkBankDepositToBankAccountInput.js +51 -0
- package/dist/models/LinkBankDepositToInvoiceInput.d.ts +32 -0
- package/dist/models/LinkBankDepositToInvoiceInput.js +51 -0
- package/dist/models/ListBankDeposits200Response.d.ts +47 -0
- package/dist/models/ListBankDeposits200Response.js +62 -0
- package/dist/models/OrderListItemDto.d.ts +1 -1
- package/dist/models/OrderListItemDtoTransaction.d.ts +95 -6
- package/dist/models/OrderListItemDtoTransaction.js +93 -8
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +192 -0
- package/src/models/AdminBankDepositAccountBankAccountDto.ts +83 -0
- package/src/models/AdminBankDepositAccountDto.ts +75 -0
- package/src/models/AdminBankDepositDto.ts +144 -0
- package/src/models/AdminBankDepositInvoiceDto.ts +97 -0
- package/src/models/AdminBankDepositInvoiceTransactionDto.ts +83 -0
- package/src/models/AirwallexBankAccountDetailsDto.ts +1 -1
- package/src/models/LinkBankDepositToBankAccountInput.ts +66 -0
- package/src/models/LinkBankDepositToInvoiceInput.ts +66 -0
- package/src/models/ListBankDeposits200Response.ts +106 -0
- package/src/models/OrderListItemDto.ts +1 -1
- package/src/models/OrderListItemDtoTransaction.ts +106 -19
- package/src/models/index.ts +8 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfAdminBankDepositDto = instanceOfAdminBankDepositDto;
|
|
17
|
+
exports.AdminBankDepositDtoFromJSON = AdminBankDepositDtoFromJSON;
|
|
18
|
+
exports.AdminBankDepositDtoFromJSONTyped = AdminBankDepositDtoFromJSONTyped;
|
|
19
|
+
exports.AdminBankDepositDtoToJSON = AdminBankDepositDtoToJSON;
|
|
20
|
+
exports.AdminBankDepositDtoToJSONTyped = AdminBankDepositDtoToJSONTyped;
|
|
21
|
+
var AdminBankDepositInvoiceTransactionDto_1 = require("./AdminBankDepositInvoiceTransactionDto");
|
|
22
|
+
var AdminBankDepositAccountBankAccountDto_1 = require("./AdminBankDepositAccountBankAccountDto");
|
|
23
|
+
/**
|
|
24
|
+
* Check if a given object implements the AdminBankDepositDto interface.
|
|
25
|
+
*/
|
|
26
|
+
function instanceOfAdminBankDepositDto(value) {
|
|
27
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('externalTransactionId' in value) || value['externalTransactionId'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('processed' in value) || value['processed'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('accountBankAccount' in value) || value['accountBankAccount'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('invoiceTransactionId' in value) || value['invoiceTransactionId'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('invoiceTransaction' in value) || value['invoiceTransaction'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('raw' in value) || value['raw'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
return true;
|
|
44
|
+
}
|
|
45
|
+
function AdminBankDepositDtoFromJSON(json) {
|
|
46
|
+
return AdminBankDepositDtoFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function AdminBankDepositDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
49
|
+
if (json == null) {
|
|
50
|
+
return json;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'id': json['id'],
|
|
54
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
55
|
+
'externalTransactionId': json['externalTransactionId'],
|
|
56
|
+
'processed': json['processed'],
|
|
57
|
+
'accountBankAccount': (0, AdminBankDepositAccountBankAccountDto_1.AdminBankDepositAccountBankAccountDtoFromJSON)(json['accountBankAccount']),
|
|
58
|
+
'invoiceTransactionId': json['invoiceTransactionId'],
|
|
59
|
+
'invoiceTransaction': (0, AdminBankDepositInvoiceTransactionDto_1.AdminBankDepositInvoiceTransactionDtoFromJSON)(json['invoiceTransaction']),
|
|
60
|
+
'raw': json['raw'],
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
function AdminBankDepositDtoToJSON(json) {
|
|
64
|
+
return AdminBankDepositDtoToJSONTyped(json, false);
|
|
65
|
+
}
|
|
66
|
+
function AdminBankDepositDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
67
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
68
|
+
if (value == null) {
|
|
69
|
+
return value;
|
|
70
|
+
}
|
|
71
|
+
return {
|
|
72
|
+
'id': value['id'],
|
|
73
|
+
'createdAt': ((value['createdAt']).toISOString()),
|
|
74
|
+
'externalTransactionId': value['externalTransactionId'],
|
|
75
|
+
'processed': value['processed'],
|
|
76
|
+
'accountBankAccount': (0, AdminBankDepositAccountBankAccountDto_1.AdminBankDepositAccountBankAccountDtoToJSON)(value['accountBankAccount']),
|
|
77
|
+
'invoiceTransactionId': value['invoiceTransactionId'],
|
|
78
|
+
'invoiceTransaction': (0, AdminBankDepositInvoiceTransactionDto_1.AdminBankDepositInvoiceTransactionDtoToJSON)(value['invoiceTransaction']),
|
|
79
|
+
'raw': value['raw'],
|
|
80
|
+
};
|
|
81
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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 AdminBankDepositInvoiceDto
|
|
16
|
+
*/
|
|
17
|
+
export interface AdminBankDepositInvoiceDto {
|
|
18
|
+
/**
|
|
19
|
+
* Invoice ID.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AdminBankDepositInvoiceDto
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Invoice status.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AdminBankDepositInvoiceDto
|
|
28
|
+
*/
|
|
29
|
+
status: AdminBankDepositInvoiceDtoStatusEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Invoice number.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof AdminBankDepositInvoiceDto
|
|
34
|
+
*/
|
|
35
|
+
invoiceNumber: string | null;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @export
|
|
39
|
+
*/
|
|
40
|
+
export declare const AdminBankDepositInvoiceDtoStatusEnum: {
|
|
41
|
+
readonly DRAFT: "draft";
|
|
42
|
+
readonly PENDING_PAYMENT: "pending_payment";
|
|
43
|
+
readonly PAID: "paid";
|
|
44
|
+
readonly CANCELLED: "cancelled";
|
|
45
|
+
};
|
|
46
|
+
export type AdminBankDepositInvoiceDtoStatusEnum = typeof AdminBankDepositInvoiceDtoStatusEnum[keyof typeof AdminBankDepositInvoiceDtoStatusEnum];
|
|
47
|
+
/**
|
|
48
|
+
* Check if a given object implements the AdminBankDepositInvoiceDto interface.
|
|
49
|
+
*/
|
|
50
|
+
export declare function instanceOfAdminBankDepositInvoiceDto(value: object): value is AdminBankDepositInvoiceDto;
|
|
51
|
+
export declare function AdminBankDepositInvoiceDtoFromJSON(json: any): AdminBankDepositInvoiceDto;
|
|
52
|
+
export declare function AdminBankDepositInvoiceDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminBankDepositInvoiceDto;
|
|
53
|
+
export declare function AdminBankDepositInvoiceDtoToJSON(json: any): AdminBankDepositInvoiceDto;
|
|
54
|
+
export declare function AdminBankDepositInvoiceDtoToJSONTyped(value?: AdminBankDepositInvoiceDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.AdminBankDepositInvoiceDtoStatusEnum = void 0;
|
|
17
|
+
exports.instanceOfAdminBankDepositInvoiceDto = instanceOfAdminBankDepositInvoiceDto;
|
|
18
|
+
exports.AdminBankDepositInvoiceDtoFromJSON = AdminBankDepositInvoiceDtoFromJSON;
|
|
19
|
+
exports.AdminBankDepositInvoiceDtoFromJSONTyped = AdminBankDepositInvoiceDtoFromJSONTyped;
|
|
20
|
+
exports.AdminBankDepositInvoiceDtoToJSON = AdminBankDepositInvoiceDtoToJSON;
|
|
21
|
+
exports.AdminBankDepositInvoiceDtoToJSONTyped = AdminBankDepositInvoiceDtoToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
exports.AdminBankDepositInvoiceDtoStatusEnum = {
|
|
26
|
+
DRAFT: 'draft',
|
|
27
|
+
PENDING_PAYMENT: 'pending_payment',
|
|
28
|
+
PAID: 'paid',
|
|
29
|
+
CANCELLED: 'cancelled'
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the AdminBankDepositInvoiceDto interface.
|
|
33
|
+
*/
|
|
34
|
+
function instanceOfAdminBankDepositInvoiceDto(value) {
|
|
35
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('invoiceNumber' in value) || value['invoiceNumber'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
return true;
|
|
42
|
+
}
|
|
43
|
+
function AdminBankDepositInvoiceDtoFromJSON(json) {
|
|
44
|
+
return AdminBankDepositInvoiceDtoFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function AdminBankDepositInvoiceDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
47
|
+
if (json == null) {
|
|
48
|
+
return json;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'id': json['id'],
|
|
52
|
+
'status': json['status'],
|
|
53
|
+
'invoiceNumber': json['invoiceNumber'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
function AdminBankDepositInvoiceDtoToJSON(json) {
|
|
57
|
+
return AdminBankDepositInvoiceDtoToJSONTyped(json, false);
|
|
58
|
+
}
|
|
59
|
+
function AdminBankDepositInvoiceDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
60
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
61
|
+
if (value == null) {
|
|
62
|
+
return value;
|
|
63
|
+
}
|
|
64
|
+
return {
|
|
65
|
+
'id': value['id'],
|
|
66
|
+
'status': value['status'],
|
|
67
|
+
'invoiceNumber': value['invoiceNumber'],
|
|
68
|
+
};
|
|
69
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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
|
+
import type { AdminBankDepositInvoiceDto } from './AdminBankDepositInvoiceDto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AdminBankDepositInvoiceTransactionDto
|
|
17
|
+
*/
|
|
18
|
+
export interface AdminBankDepositInvoiceTransactionDto {
|
|
19
|
+
/**
|
|
20
|
+
* Invoice transaction ID.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof AdminBankDepositInvoiceTransactionDto
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
/**
|
|
26
|
+
* Linked invoice.
|
|
27
|
+
* @type {AdminBankDepositInvoiceDto}
|
|
28
|
+
* @memberof AdminBankDepositInvoiceTransactionDto
|
|
29
|
+
*/
|
|
30
|
+
invoice: AdminBankDepositInvoiceDto;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the AdminBankDepositInvoiceTransactionDto interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfAdminBankDepositInvoiceTransactionDto(value: object): value is AdminBankDepositInvoiceTransactionDto;
|
|
36
|
+
export declare function AdminBankDepositInvoiceTransactionDtoFromJSON(json: any): AdminBankDepositInvoiceTransactionDto;
|
|
37
|
+
export declare function AdminBankDepositInvoiceTransactionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminBankDepositInvoiceTransactionDto;
|
|
38
|
+
export declare function AdminBankDepositInvoiceTransactionDtoToJSON(json: any): AdminBankDepositInvoiceTransactionDto;
|
|
39
|
+
export declare function AdminBankDepositInvoiceTransactionDtoToJSONTyped(value?: AdminBankDepositInvoiceTransactionDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfAdminBankDepositInvoiceTransactionDto = instanceOfAdminBankDepositInvoiceTransactionDto;
|
|
17
|
+
exports.AdminBankDepositInvoiceTransactionDtoFromJSON = AdminBankDepositInvoiceTransactionDtoFromJSON;
|
|
18
|
+
exports.AdminBankDepositInvoiceTransactionDtoFromJSONTyped = AdminBankDepositInvoiceTransactionDtoFromJSONTyped;
|
|
19
|
+
exports.AdminBankDepositInvoiceTransactionDtoToJSON = AdminBankDepositInvoiceTransactionDtoToJSON;
|
|
20
|
+
exports.AdminBankDepositInvoiceTransactionDtoToJSONTyped = AdminBankDepositInvoiceTransactionDtoToJSONTyped;
|
|
21
|
+
var AdminBankDepositInvoiceDto_1 = require("./AdminBankDepositInvoiceDto");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the AdminBankDepositInvoiceTransactionDto interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfAdminBankDepositInvoiceTransactionDto(value) {
|
|
26
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('invoice' in value) || value['invoice'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function AdminBankDepositInvoiceTransactionDtoFromJSON(json) {
|
|
33
|
+
return AdminBankDepositInvoiceTransactionDtoFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function AdminBankDepositInvoiceTransactionDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'id': json['id'],
|
|
41
|
+
'invoice': (0, AdminBankDepositInvoiceDto_1.AdminBankDepositInvoiceDtoFromJSON)(json['invoice']),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function AdminBankDepositInvoiceTransactionDtoToJSON(json) {
|
|
45
|
+
return AdminBankDepositInvoiceTransactionDtoToJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
function AdminBankDepositInvoiceTransactionDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
48
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'id': value['id'],
|
|
54
|
+
'invoice': (0, AdminBankDepositInvoiceDto_1.AdminBankDepositInvoiceDtoToJSON)(value['invoice']),
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -54,7 +54,7 @@ export interface AirwallexBankAccountDetailsDto {
|
|
|
54
54
|
*/
|
|
55
55
|
localMethods: Array<AirwallexBankAccountDetailsDtoLocalMethod>;
|
|
56
56
|
/**
|
|
57
|
-
* Bank transfer payment reference the buyer should use (shortIdentifier
|
|
57
|
+
* Bank transfer payment reference the buyer should use (shortIdentifier).
|
|
58
58
|
* @type {string}
|
|
59
59
|
* @memberof AirwallexBankAccountDetailsDto
|
|
60
60
|
*/
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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 LinkBankDepositToBankAccountInput
|
|
16
|
+
*/
|
|
17
|
+
export interface LinkBankDepositToBankAccountInput {
|
|
18
|
+
/**
|
|
19
|
+
* Account bank account UUID to link to the deposit
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LinkBankDepositToBankAccountInput
|
|
22
|
+
*/
|
|
23
|
+
accountBankAccountId: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the LinkBankDepositToBankAccountInput interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfLinkBankDepositToBankAccountInput(value: object): value is LinkBankDepositToBankAccountInput;
|
|
29
|
+
export declare function LinkBankDepositToBankAccountInputFromJSON(json: any): LinkBankDepositToBankAccountInput;
|
|
30
|
+
export declare function LinkBankDepositToBankAccountInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkBankDepositToBankAccountInput;
|
|
31
|
+
export declare function LinkBankDepositToBankAccountInputToJSON(json: any): LinkBankDepositToBankAccountInput;
|
|
32
|
+
export declare function LinkBankDepositToBankAccountInputToJSONTyped(value?: LinkBankDepositToBankAccountInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfLinkBankDepositToBankAccountInput = instanceOfLinkBankDepositToBankAccountInput;
|
|
17
|
+
exports.LinkBankDepositToBankAccountInputFromJSON = LinkBankDepositToBankAccountInputFromJSON;
|
|
18
|
+
exports.LinkBankDepositToBankAccountInputFromJSONTyped = LinkBankDepositToBankAccountInputFromJSONTyped;
|
|
19
|
+
exports.LinkBankDepositToBankAccountInputToJSON = LinkBankDepositToBankAccountInputToJSON;
|
|
20
|
+
exports.LinkBankDepositToBankAccountInputToJSONTyped = LinkBankDepositToBankAccountInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LinkBankDepositToBankAccountInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLinkBankDepositToBankAccountInput(value) {
|
|
25
|
+
if (!('accountBankAccountId' in value) || value['accountBankAccountId'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function LinkBankDepositToBankAccountInputFromJSON(json) {
|
|
30
|
+
return LinkBankDepositToBankAccountInputFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function LinkBankDepositToBankAccountInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'accountBankAccountId': json['accountBankAccountId'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function LinkBankDepositToBankAccountInputToJSON(json) {
|
|
41
|
+
return LinkBankDepositToBankAccountInputToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function LinkBankDepositToBankAccountInputToJSONTyped(value, ignoreDiscriminator) {
|
|
44
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'accountBankAccountId': value['accountBankAccountId'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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 LinkBankDepositToInvoiceInput
|
|
16
|
+
*/
|
|
17
|
+
export interface LinkBankDepositToInvoiceInput {
|
|
18
|
+
/**
|
|
19
|
+
* Invoice UUID to link to the deposit
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LinkBankDepositToInvoiceInput
|
|
22
|
+
*/
|
|
23
|
+
invoiceId: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the LinkBankDepositToInvoiceInput interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfLinkBankDepositToInvoiceInput(value: object): value is LinkBankDepositToInvoiceInput;
|
|
29
|
+
export declare function LinkBankDepositToInvoiceInputFromJSON(json: any): LinkBankDepositToInvoiceInput;
|
|
30
|
+
export declare function LinkBankDepositToInvoiceInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkBankDepositToInvoiceInput;
|
|
31
|
+
export declare function LinkBankDepositToInvoiceInputToJSON(json: any): LinkBankDepositToInvoiceInput;
|
|
32
|
+
export declare function LinkBankDepositToInvoiceInputToJSONTyped(value?: LinkBankDepositToInvoiceInput | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfLinkBankDepositToInvoiceInput = instanceOfLinkBankDepositToInvoiceInput;
|
|
17
|
+
exports.LinkBankDepositToInvoiceInputFromJSON = LinkBankDepositToInvoiceInputFromJSON;
|
|
18
|
+
exports.LinkBankDepositToInvoiceInputFromJSONTyped = LinkBankDepositToInvoiceInputFromJSONTyped;
|
|
19
|
+
exports.LinkBankDepositToInvoiceInputToJSON = LinkBankDepositToInvoiceInputToJSON;
|
|
20
|
+
exports.LinkBankDepositToInvoiceInputToJSONTyped = LinkBankDepositToInvoiceInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LinkBankDepositToInvoiceInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLinkBankDepositToInvoiceInput(value) {
|
|
25
|
+
if (!('invoiceId' in value) || value['invoiceId'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function LinkBankDepositToInvoiceInputFromJSON(json) {
|
|
30
|
+
return LinkBankDepositToInvoiceInputFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function LinkBankDepositToInvoiceInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'invoiceId': json['invoiceId'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function LinkBankDepositToInvoiceInputToJSON(json) {
|
|
41
|
+
return LinkBankDepositToInvoiceInputToJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
function LinkBankDepositToInvoiceInputToJSONTyped(value, ignoreDiscriminator) {
|
|
44
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'invoiceId': value['invoiceId'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Nameshift
|
|
3
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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
|
+
import type { PaginateResponseLinks } from './PaginateResponseLinks';
|
|
13
|
+
import type { AdminBankDepositDto } from './AdminBankDepositDto';
|
|
14
|
+
import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ListBankDeposits200Response
|
|
19
|
+
*/
|
|
20
|
+
export interface ListBankDeposits200Response {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {Array<AdminBankDepositDto>}
|
|
24
|
+
* @memberof ListBankDeposits200Response
|
|
25
|
+
*/
|
|
26
|
+
data: Array<AdminBankDepositDto>;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {PaginateResponseMeta}
|
|
30
|
+
* @memberof ListBankDeposits200Response
|
|
31
|
+
*/
|
|
32
|
+
meta: PaginateResponseMeta;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {PaginateResponseLinks}
|
|
36
|
+
* @memberof ListBankDeposits200Response
|
|
37
|
+
*/
|
|
38
|
+
links: PaginateResponseLinks;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Check if a given object implements the ListBankDeposits200Response interface.
|
|
42
|
+
*/
|
|
43
|
+
export declare function instanceOfListBankDeposits200Response(value: object): value is ListBankDeposits200Response;
|
|
44
|
+
export declare function ListBankDeposits200ResponseFromJSON(json: any): ListBankDeposits200Response;
|
|
45
|
+
export declare function ListBankDeposits200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListBankDeposits200Response;
|
|
46
|
+
export declare function ListBankDeposits200ResponseToJSON(json: any): ListBankDeposits200Response;
|
|
47
|
+
export declare function ListBankDeposits200ResponseToJSONTyped(value?: ListBankDeposits200Response | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Nameshift
|
|
6
|
+
* Nameshift domain marketplace and management API. ## Authentication - **Bearer JWT** — Seller and buyer sessions obtained via login endpoints. - **API key** — Pass the `apikey` header for programmatic seller access. ## Audiences - **(public)** tags — Unauthenticated or buyer-facing endpoints. - **Accounts / Domains / Leads / Buyers** — Seller or buyer resources. - **Partner** — Partner integrations.
|
|
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.instanceOfListBankDeposits200Response = instanceOfListBankDeposits200Response;
|
|
17
|
+
exports.ListBankDeposits200ResponseFromJSON = ListBankDeposits200ResponseFromJSON;
|
|
18
|
+
exports.ListBankDeposits200ResponseFromJSONTyped = ListBankDeposits200ResponseFromJSONTyped;
|
|
19
|
+
exports.ListBankDeposits200ResponseToJSON = ListBankDeposits200ResponseToJSON;
|
|
20
|
+
exports.ListBankDeposits200ResponseToJSONTyped = ListBankDeposits200ResponseToJSONTyped;
|
|
21
|
+
var PaginateResponseLinks_1 = require("./PaginateResponseLinks");
|
|
22
|
+
var AdminBankDepositDto_1 = require("./AdminBankDepositDto");
|
|
23
|
+
var PaginateResponseMeta_1 = require("./PaginateResponseMeta");
|
|
24
|
+
/**
|
|
25
|
+
* Check if a given object implements the ListBankDeposits200Response interface.
|
|
26
|
+
*/
|
|
27
|
+
function instanceOfListBankDeposits200Response(value) {
|
|
28
|
+
if (!('data' in value) || value['data'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('meta' in value) || value['meta'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('links' in value) || value['links'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
function ListBankDeposits200ResponseFromJSON(json) {
|
|
37
|
+
return ListBankDeposits200ResponseFromJSONTyped(json, false);
|
|
38
|
+
}
|
|
39
|
+
function ListBankDeposits200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
40
|
+
if (json == null) {
|
|
41
|
+
return json;
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
'data': (json['data'].map(AdminBankDepositDto_1.AdminBankDepositDtoFromJSON)),
|
|
45
|
+
'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaFromJSON)(json['meta']),
|
|
46
|
+
'links': (0, PaginateResponseLinks_1.PaginateResponseLinksFromJSON)(json['links']),
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
function ListBankDeposits200ResponseToJSON(json) {
|
|
50
|
+
return ListBankDeposits200ResponseToJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
function ListBankDeposits200ResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
53
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
54
|
+
if (value == null) {
|
|
55
|
+
return value;
|
|
56
|
+
}
|
|
57
|
+
return {
|
|
58
|
+
'data': (value['data'].map(AdminBankDepositDto_1.AdminBankDepositDtoToJSON)),
|
|
59
|
+
'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaToJSON)(value['meta']),
|
|
60
|
+
'links': (0, PaginateResponseLinks_1.PaginateResponseLinksToJSON)(value['links']),
|
|
61
|
+
};
|
|
62
|
+
}
|
|
@@ -105,7 +105,7 @@ export interface OrderListItemDto {
|
|
|
105
105
|
*/
|
|
106
106
|
domainTransferId: string | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Paid invoice transaction when available, otherwise the latest transaction.
|
|
109
109
|
* @type {OrderListItemDtoTransaction}
|
|
110
110
|
* @memberof OrderListItemDto
|
|
111
111
|
*/
|