@randock/nameshift-api-client 0.0.441 → 0.0.443
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 +20 -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/DomainMinimalLandingPageDesignDto.d.ts +46 -0
- package/dist/models/DomainMinimalLandingPageDesignDto.js +63 -0
- package/dist/models/DomainModernLandingPageDesignDto.d.ts +46 -0
- package/dist/models/DomainModernLandingPageDesignDto.js +63 -0
- package/dist/models/DomainOriginalLandingPageDesignDto.d.ts +46 -0
- package/dist/models/DomainOriginalLandingPageDesignDto.js +63 -0
- package/dist/models/DomainSalesInformationDto.d.ts +7 -24
- package/dist/models/DomainSalesInformationDto.js +5 -16
- package/dist/models/DomainSalesInformationDtoLandingPageDesign.d.ts +30 -0
- package/dist/models/DomainSalesInformationDtoLandingPageDesign.js +59 -0
- package/dist/models/DomainSellerDto.d.ts +0 -6
- package/dist/models/DomainSellerDto.js +0 -4
- package/dist/models/LandingPageDesignSettingsDto.d.ts +47 -0
- package/dist/models/LandingPageDesignSettingsDto.js +62 -0
- package/dist/models/LandingPageDesignSettingsInput.d.ts +47 -0
- package/dist/models/LandingPageDesignSettingsInput.js +56 -0
- package/dist/models/LandingPageInput.d.ts +6 -47
- package/dist/models/LandingPageInput.js +3 -16
- package/dist/models/LandingPageMinimalDesignSettingsDto.d.ts +32 -0
- package/dist/models/LandingPageMinimalDesignSettingsDto.js +51 -0
- package/dist/models/LandingPageMinimalDesignSettingsInput.d.ts +32 -0
- package/dist/models/LandingPageMinimalDesignSettingsInput.js +49 -0
- package/dist/models/LandingPageModernDesignSettingsDto.d.ts +74 -0
- package/dist/models/LandingPageModernDesignSettingsDto.js +79 -0
- package/dist/models/LandingPageModernDesignSettingsInput.d.ts +74 -0
- package/dist/models/LandingPageModernDesignSettingsInput.js +63 -0
- package/dist/models/LandingPageOriginalDesignSettingsDto.d.ts +74 -0
- package/dist/models/LandingPageOriginalDesignSettingsDto.js +79 -0
- package/dist/models/LandingPageOriginalDesignSettingsInput.d.ts +74 -0
- package/dist/models/LandingPageOriginalDesignSettingsInput.js +63 -0
- package/dist/models/LandingPageSettingsDto.d.ts +6 -47
- package/dist/models/LandingPageSettingsDto.js +5 -32
- 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/WithSettingsInner.d.ts +0 -24
- package/dist/models/WithSettingsInner.js +0 -16
- package/dist/models/index.d.ts +20 -0
- package/dist/models/index.js +20 -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/DomainMinimalLandingPageDesignDto.ts +93 -0
- package/src/models/DomainModernLandingPageDesignDto.ts +93 -0
- package/src/models/DomainOriginalLandingPageDesignDto.ts +93 -0
- package/src/models/DomainSalesInformationDto.ts +16 -36
- package/src/models/DomainSalesInformationDtoLandingPageDesign.ts +84 -0
- package/src/models/DomainSellerDto.ts +0 -9
- package/src/models/LandingPageDesignSettingsDto.ts +106 -0
- package/src/models/LandingPageDesignSettingsInput.ts +103 -0
- package/src/models/LandingPageInput.ts +15 -63
- package/src/models/LandingPageMinimalDesignSettingsDto.ts +66 -0
- package/src/models/LandingPageMinimalDesignSettingsInput.ts +65 -0
- package/src/models/LandingPageModernDesignSettingsDto.ts +129 -0
- package/src/models/LandingPageModernDesignSettingsInput.ts +121 -0
- package/src/models/LandingPageOriginalDesignSettingsDto.ts +129 -0
- package/src/models/LandingPageOriginalDesignSettingsInput.ts +121 -0
- package/src/models/LandingPageSettingsDto.ts +16 -71
- 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/WithSettingsInner.ts +0 -36
- package/src/models/index.ts +20 -0
|
@@ -0,0 +1,63 @@
|
|
|
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.instanceOfLandingPageOriginalDesignSettingsInput = instanceOfLandingPageOriginalDesignSettingsInput;
|
|
17
|
+
exports.LandingPageOriginalDesignSettingsInputFromJSON = LandingPageOriginalDesignSettingsInputFromJSON;
|
|
18
|
+
exports.LandingPageOriginalDesignSettingsInputFromJSONTyped = LandingPageOriginalDesignSettingsInputFromJSONTyped;
|
|
19
|
+
exports.LandingPageOriginalDesignSettingsInputToJSON = LandingPageOriginalDesignSettingsInputToJSON;
|
|
20
|
+
exports.LandingPageOriginalDesignSettingsInputToJSONTyped = LandingPageOriginalDesignSettingsInputToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the LandingPageOriginalDesignSettingsInput interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfLandingPageOriginalDesignSettingsInput(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function LandingPageOriginalDesignSettingsInputFromJSON(json) {
|
|
28
|
+
return LandingPageOriginalDesignSettingsInputFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function LandingPageOriginalDesignSettingsInputFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'showRelatedDomains': json['showRelatedDomains'] == null ? undefined : json['showRelatedDomains'],
|
|
36
|
+
'showLastOnline': json['showLastOnline'] == null ? undefined : json['showLastOnline'],
|
|
37
|
+
'showDeliversIn': json['showDeliversIn'] == null ? undefined : json['showDeliversIn'],
|
|
38
|
+
'showTrustpilot': json['showTrustpilot'] == null ? undefined : json['showTrustpilot'],
|
|
39
|
+
'seoMetrics': json['seoMetrics'] == null ? undefined : json['seoMetrics'],
|
|
40
|
+
'visitorStats': json['visitorStats'] == null ? undefined : json['visitorStats'],
|
|
41
|
+
'minDomainAuthority': json['minDomainAuthority'] == null ? undefined : json['minDomainAuthority'],
|
|
42
|
+
'externalLink': json['externalLink'] == null ? undefined : json['externalLink'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function LandingPageOriginalDesignSettingsInputToJSON(json) {
|
|
46
|
+
return LandingPageOriginalDesignSettingsInputToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function LandingPageOriginalDesignSettingsInputToJSONTyped(value, ignoreDiscriminator) {
|
|
49
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'showRelatedDomains': value['showRelatedDomains'],
|
|
55
|
+
'showLastOnline': value['showLastOnline'],
|
|
56
|
+
'showDeliversIn': value['showDeliversIn'],
|
|
57
|
+
'showTrustpilot': value['showTrustpilot'],
|
|
58
|
+
'seoMetrics': value['seoMetrics'],
|
|
59
|
+
'visitorStats': value['visitorStats'],
|
|
60
|
+
'minDomainAuthority': value['minDomainAuthority'],
|
|
61
|
+
'externalLink': value['externalLink'],
|
|
62
|
+
};
|
|
63
|
+
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { LandingPageDesignSettingsDto } from './LandingPageDesignSettingsDto';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,48 +22,6 @@ export interface LandingPageSettingsDto {
|
|
|
21
22
|
* @memberof LandingPageSettingsDto
|
|
22
23
|
*/
|
|
23
24
|
anonymous: boolean | null;
|
|
24
|
-
/**
|
|
25
|
-
* Whether related domains are shown on the landing page.
|
|
26
|
-
* @type {boolean}
|
|
27
|
-
* @memberof LandingPageSettingsDto
|
|
28
|
-
*/
|
|
29
|
-
showRelatedDomains: boolean | null;
|
|
30
|
-
/**
|
|
31
|
-
* Whether SEO metrics are displayed on the landing page.
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof LandingPageSettingsDto
|
|
34
|
-
*/
|
|
35
|
-
seoMetrics: boolean | null;
|
|
36
|
-
/**
|
|
37
|
-
* Whether visitor statistics are displayed on the landing page.
|
|
38
|
-
* @type {boolean}
|
|
39
|
-
* @memberof LandingPageSettingsDto
|
|
40
|
-
*/
|
|
41
|
-
visitorStats: boolean | null;
|
|
42
|
-
/**
|
|
43
|
-
* Minimum Moz domain authority required to display SEO metrics.
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof LandingPageSettingsDto
|
|
46
|
-
*/
|
|
47
|
-
minDomainAuthority: number | null;
|
|
48
|
-
/**
|
|
49
|
-
* Whether the seller last-online indicator is shown.
|
|
50
|
-
* @type {boolean}
|
|
51
|
-
* @memberof LandingPageSettingsDto
|
|
52
|
-
*/
|
|
53
|
-
showLastOnline: boolean | null;
|
|
54
|
-
/**
|
|
55
|
-
* Whether the estimated delivery time is shown.
|
|
56
|
-
* @type {boolean}
|
|
57
|
-
* @memberof LandingPageSettingsDto
|
|
58
|
-
*/
|
|
59
|
-
showDeliversIn: boolean | null;
|
|
60
|
-
/**
|
|
61
|
-
* Whether the Trustpilot widget is shown.
|
|
62
|
-
* @type {boolean}
|
|
63
|
-
* @memberof LandingPageSettingsDto
|
|
64
|
-
*/
|
|
65
|
-
showTrustpilot: boolean | null;
|
|
66
25
|
/**
|
|
67
26
|
* Whether DNSSEC status is displayed on the landing page.
|
|
68
27
|
* @type {boolean}
|
|
@@ -82,17 +41,17 @@ export interface LandingPageSettingsDto {
|
|
|
82
41
|
*/
|
|
83
42
|
requestLeadBuyerPhoneNumber: LandingPageSettingsDtoRequestLeadBuyerPhoneNumberEnum | null;
|
|
84
43
|
/**
|
|
85
|
-
*
|
|
44
|
+
* Landing page UI design variant.
|
|
86
45
|
* @type {string}
|
|
87
46
|
* @memberof LandingPageSettingsDto
|
|
88
47
|
*/
|
|
89
|
-
|
|
48
|
+
design: LandingPageSettingsDtoDesignEnum | null;
|
|
90
49
|
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {
|
|
50
|
+
* Settings grouped by landing page design.
|
|
51
|
+
* @type {LandingPageDesignSettingsDto}
|
|
93
52
|
* @memberof LandingPageSettingsDto
|
|
94
53
|
*/
|
|
95
|
-
|
|
54
|
+
designSettings: LandingPageDesignSettingsDto;
|
|
96
55
|
}
|
|
97
56
|
/**
|
|
98
57
|
* @export
|
|
@@ -19,6 +19,7 @@ exports.LandingPageSettingsDtoFromJSON = LandingPageSettingsDtoFromJSON;
|
|
|
19
19
|
exports.LandingPageSettingsDtoFromJSONTyped = LandingPageSettingsDtoFromJSONTyped;
|
|
20
20
|
exports.LandingPageSettingsDtoToJSON = LandingPageSettingsDtoToJSON;
|
|
21
21
|
exports.LandingPageSettingsDtoToJSONTyped = LandingPageSettingsDtoToJSONTyped;
|
|
22
|
+
var LandingPageDesignSettingsDto_1 = require("./LandingPageDesignSettingsDto");
|
|
22
23
|
/**
|
|
23
24
|
* @export
|
|
24
25
|
*/
|
|
@@ -41,30 +42,16 @@ exports.LandingPageSettingsDtoDesignEnum = {
|
|
|
41
42
|
function instanceOfLandingPageSettingsDto(value) {
|
|
42
43
|
if (!('anonymous' in value) || value['anonymous'] === undefined)
|
|
43
44
|
return false;
|
|
44
|
-
if (!('showRelatedDomains' in value) || value['showRelatedDomains'] === undefined)
|
|
45
|
-
return false;
|
|
46
|
-
if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
|
|
47
|
-
return false;
|
|
48
|
-
if (!('visitorStats' in value) || value['visitorStats'] === undefined)
|
|
49
|
-
return false;
|
|
50
|
-
if (!('minDomainAuthority' in value) || value['minDomainAuthority'] === undefined)
|
|
51
|
-
return false;
|
|
52
|
-
if (!('showLastOnline' in value) || value['showLastOnline'] === undefined)
|
|
53
|
-
return false;
|
|
54
|
-
if (!('showDeliversIn' in value) || value['showDeliversIn'] === undefined)
|
|
55
|
-
return false;
|
|
56
|
-
if (!('showTrustpilot' in value) || value['showTrustpilot'] === undefined)
|
|
57
|
-
return false;
|
|
58
45
|
if (!('dnssec' in value) || value['dnssec'] === undefined)
|
|
59
46
|
return false;
|
|
60
47
|
if (!('requestLeadBuyerCompanyName' in value) || value['requestLeadBuyerCompanyName'] === undefined)
|
|
61
48
|
return false;
|
|
62
49
|
if (!('requestLeadBuyerPhoneNumber' in value) || value['requestLeadBuyerPhoneNumber'] === undefined)
|
|
63
50
|
return false;
|
|
64
|
-
if (!('externalLink' in value) || value['externalLink'] === undefined)
|
|
65
|
-
return false;
|
|
66
51
|
if (!('design' in value) || value['design'] === undefined)
|
|
67
52
|
return false;
|
|
53
|
+
if (!('designSettings' in value) || value['designSettings'] === undefined)
|
|
54
|
+
return false;
|
|
68
55
|
return true;
|
|
69
56
|
}
|
|
70
57
|
function LandingPageSettingsDtoFromJSON(json) {
|
|
@@ -76,18 +63,11 @@ function LandingPageSettingsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
76
63
|
}
|
|
77
64
|
return {
|
|
78
65
|
'anonymous': json['anonymous'],
|
|
79
|
-
'showRelatedDomains': json['showRelatedDomains'],
|
|
80
|
-
'seoMetrics': json['seoMetrics'],
|
|
81
|
-
'visitorStats': json['visitorStats'],
|
|
82
|
-
'minDomainAuthority': json['minDomainAuthority'],
|
|
83
|
-
'showLastOnline': json['showLastOnline'],
|
|
84
|
-
'showDeliversIn': json['showDeliversIn'],
|
|
85
|
-
'showTrustpilot': json['showTrustpilot'],
|
|
86
66
|
'dnssec': json['dnssec'],
|
|
87
67
|
'requestLeadBuyerCompanyName': json['requestLeadBuyerCompanyName'],
|
|
88
68
|
'requestLeadBuyerPhoneNumber': json['requestLeadBuyerPhoneNumber'],
|
|
89
|
-
'externalLink': json['externalLink'],
|
|
90
69
|
'design': json['design'],
|
|
70
|
+
'designSettings': (0, LandingPageDesignSettingsDto_1.LandingPageDesignSettingsDtoFromJSON)(json['designSettings']),
|
|
91
71
|
};
|
|
92
72
|
}
|
|
93
73
|
function LandingPageSettingsDtoToJSON(json) {
|
|
@@ -100,17 +80,10 @@ function LandingPageSettingsDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
100
80
|
}
|
|
101
81
|
return {
|
|
102
82
|
'anonymous': value['anonymous'],
|
|
103
|
-
'showRelatedDomains': value['showRelatedDomains'],
|
|
104
|
-
'seoMetrics': value['seoMetrics'],
|
|
105
|
-
'visitorStats': value['visitorStats'],
|
|
106
|
-
'minDomainAuthority': value['minDomainAuthority'],
|
|
107
|
-
'showLastOnline': value['showLastOnline'],
|
|
108
|
-
'showDeliversIn': value['showDeliversIn'],
|
|
109
|
-
'showTrustpilot': value['showTrustpilot'],
|
|
110
83
|
'dnssec': value['dnssec'],
|
|
111
84
|
'requestLeadBuyerCompanyName': value['requestLeadBuyerCompanyName'],
|
|
112
85
|
'requestLeadBuyerPhoneNumber': value['requestLeadBuyerPhoneNumber'],
|
|
113
|
-
'externalLink': value['externalLink'],
|
|
114
86
|
'design': value['design'],
|
|
87
|
+
'designSettings': (0, LandingPageDesignSettingsDto_1.LandingPageDesignSettingsDtoToJSON)(value['designSettings']),
|
|
115
88
|
};
|
|
116
89
|
}
|
|
@@ -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
|
*/
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { AdminVerificationDepositDto } from './AdminVerificationDepositDto';
|
|
13
12
|
/**
|
|
14
13
|
*
|
|
15
14
|
* @export
|
|
@@ -22,6 +21,12 @@ export interface OrderListItemDtoTransaction {
|
|
|
22
21
|
* @memberof OrderListItemDtoTransaction
|
|
23
22
|
*/
|
|
24
23
|
id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Invoice transaction status.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OrderListItemDtoTransaction
|
|
28
|
+
*/
|
|
29
|
+
status: OrderListItemDtoTransactionStatusEnum;
|
|
25
30
|
/**
|
|
26
31
|
* Payment gateway.
|
|
27
32
|
* @type {string}
|
|
@@ -29,18 +34,30 @@ export interface OrderListItemDtoTransaction {
|
|
|
29
34
|
*/
|
|
30
35
|
gateway: OrderListItemDtoTransactionGatewayEnum;
|
|
31
36
|
/**
|
|
32
|
-
*
|
|
37
|
+
* Selected payment method.
|
|
33
38
|
* @type {string}
|
|
34
39
|
* @memberof OrderListItemDtoTransaction
|
|
35
40
|
*/
|
|
36
|
-
|
|
41
|
+
paymentMethod: OrderListItemDtoTransactionPaymentMethodEnum;
|
|
37
42
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {
|
|
43
|
+
* Processed bank deposit ID linked to this transaction, if any.
|
|
44
|
+
* @type {string}
|
|
40
45
|
* @memberof OrderListItemDtoTransaction
|
|
41
46
|
*/
|
|
42
|
-
|
|
47
|
+
depositId: string | null;
|
|
43
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @export
|
|
51
|
+
*/
|
|
52
|
+
export declare const OrderListItemDtoTransactionStatusEnum: {
|
|
53
|
+
readonly OPEN: "open";
|
|
54
|
+
readonly PAID: "paid";
|
|
55
|
+
readonly PENDING: "pending";
|
|
56
|
+
readonly ERROR: "error";
|
|
57
|
+
readonly CANCELLED: "cancelled";
|
|
58
|
+
readonly REFUNDED: "refunded";
|
|
59
|
+
};
|
|
60
|
+
export type OrderListItemDtoTransactionStatusEnum = typeof OrderListItemDtoTransactionStatusEnum[keyof typeof OrderListItemDtoTransactionStatusEnum];
|
|
44
61
|
/**
|
|
45
62
|
* @export
|
|
46
63
|
*/
|
|
@@ -51,6 +68,78 @@ export declare const OrderListItemDtoTransactionGatewayEnum: {
|
|
|
51
68
|
readonly AIRWALLEX: "airwallex";
|
|
52
69
|
};
|
|
53
70
|
export type OrderListItemDtoTransactionGatewayEnum = typeof OrderListItemDtoTransactionGatewayEnum[keyof typeof OrderListItemDtoTransactionGatewayEnum];
|
|
71
|
+
/**
|
|
72
|
+
* @export
|
|
73
|
+
*/
|
|
74
|
+
export declare const OrderListItemDtoTransactionPaymentMethodEnum: {
|
|
75
|
+
readonly ACSS_DEBIT: "acss_debit";
|
|
76
|
+
readonly AFFIRM: "affirm";
|
|
77
|
+
readonly AFTERPAY_CLEARPAY: "afterpay_clearpay";
|
|
78
|
+
readonly ALIPAY: "alipay";
|
|
79
|
+
readonly ALMA: "alma";
|
|
80
|
+
readonly AMAZON_PAY: "amazon_pay";
|
|
81
|
+
readonly APPLE_PAY: "apple_pay";
|
|
82
|
+
readonly AU_BECS_DEBIT: "au_becs_debit";
|
|
83
|
+
readonly BACS_DEBIT: "bacs_debit";
|
|
84
|
+
readonly BANCOMAT_PAY: "bancomat_pay";
|
|
85
|
+
readonly BANCONTACT: "bancontact";
|
|
86
|
+
readonly BELFIUS: "belfius";
|
|
87
|
+
readonly BILLIE: "billie";
|
|
88
|
+
readonly BLIK: "blik";
|
|
89
|
+
readonly BOLETO: "boleto";
|
|
90
|
+
readonly BANK_TRANSFER: "bank_transfer";
|
|
91
|
+
readonly CARD: "card";
|
|
92
|
+
readonly CARD_PRESENT: "card_present";
|
|
93
|
+
readonly CASHAPP: "cashapp";
|
|
94
|
+
readonly CUSTOMER_BALANCE: "customer_balance";
|
|
95
|
+
readonly EPS: "eps";
|
|
96
|
+
readonly FPX: "fpx";
|
|
97
|
+
readonly GIFTCARD: "giftcard";
|
|
98
|
+
readonly GIROPAY: "giropay";
|
|
99
|
+
readonly GOOGLE_PAY: "google_pay";
|
|
100
|
+
readonly GOPAY: "gopay";
|
|
101
|
+
readonly GRABPAY: "grabpay";
|
|
102
|
+
readonly ID_BANK_TRANSFER: "id_bank_transfer";
|
|
103
|
+
readonly IDEAL: "ideal";
|
|
104
|
+
readonly IN3: "in3";
|
|
105
|
+
readonly INTERAC_PRESENT: "interac_present";
|
|
106
|
+
readonly KAKAO_PAY: "kakao_pay";
|
|
107
|
+
readonly KBC: "kbc";
|
|
108
|
+
readonly KLARNA: "klarna";
|
|
109
|
+
readonly KONBINI: "konbini";
|
|
110
|
+
readonly KR_CARD: "kr_card";
|
|
111
|
+
readonly LINK: "link";
|
|
112
|
+
readonly MB_WAY: "mb_way";
|
|
113
|
+
readonly MOBILEPAY: "mobilepay";
|
|
114
|
+
readonly MULTIBANCO: "multibanco";
|
|
115
|
+
readonly NAVER_PAY: "naver_pay";
|
|
116
|
+
readonly NZ_BANK_ACCOUNT: "nz_bank_account";
|
|
117
|
+
readonly OXXO: "oxxo";
|
|
118
|
+
readonly PAY_BY_BANK: "pay_by_bank";
|
|
119
|
+
readonly PAYCO: "payco";
|
|
120
|
+
readonly PAYNOW: "paynow";
|
|
121
|
+
readonly PAYPAL: "paypal";
|
|
122
|
+
readonly PAYTO: "payto";
|
|
123
|
+
readonly PIX: "pix";
|
|
124
|
+
readonly PROMPTPAY: "promptpay";
|
|
125
|
+
readonly PRZELEWY24: "przelewy24";
|
|
126
|
+
readonly QRIS: "qris";
|
|
127
|
+
readonly RECHNUNG: "rechnung";
|
|
128
|
+
readonly REVOLUT_PAY: "revolut_pay";
|
|
129
|
+
readonly SAMSUNG_PAY: "samsung_pay";
|
|
130
|
+
readonly SATISPAY: "satispay";
|
|
131
|
+
readonly SEPA_DEBIT: "sepa_debit";
|
|
132
|
+
readonly SHOPEEPAY: "shopeepay";
|
|
133
|
+
readonly SOFORT: "sofort";
|
|
134
|
+
readonly STRIPE_BALANCE: "stripe_balance";
|
|
135
|
+
readonly SWISH: "swish";
|
|
136
|
+
readonly TWINT: "twint";
|
|
137
|
+
readonly US_BANK_ACCOUNT: "us_bank_account";
|
|
138
|
+
readonly VOUCHER: "voucher";
|
|
139
|
+
readonly WECHAT_PAY: "wechat_pay";
|
|
140
|
+
readonly ZIP: "zip";
|
|
141
|
+
};
|
|
142
|
+
export type OrderListItemDtoTransactionPaymentMethodEnum = typeof OrderListItemDtoTransactionPaymentMethodEnum[keyof typeof OrderListItemDtoTransactionPaymentMethodEnum];
|
|
54
143
|
/**
|
|
55
144
|
* Check if a given object implements the OrderListItemDtoTransaction interface.
|
|
56
145
|
*/
|