@randock/nameshift-api-client 0.0.214 → 0.0.216

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.
Files changed (30) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/README.md +3 -3
  3. package/dist/models/AccountBankAccountDto.d.ts +5 -22
  4. package/dist/models/AccountBankAccountDto.js +5 -16
  5. package/dist/models/AccountBankAccountDtoDetails.d.ts +27 -0
  6. package/dist/models/AccountBankAccountDtoDetails.js +54 -0
  7. package/dist/models/CreateBankAccountInput.d.ts +2 -20
  8. package/dist/models/CreateBankAccountInput.js +3 -11
  9. package/dist/models/DomainTransferDetailsWorkflowDto.d.ts +6 -0
  10. package/dist/models/DomainTransferDetailsWorkflowDto.js +4 -0
  11. package/dist/models/SepaBankAccountDetails.d.ts +58 -0
  12. package/dist/models/SepaBankAccountDetails.js +71 -0
  13. package/dist/models/SubscriptionDetailsDto.d.ts +3 -2
  14. package/dist/models/SubscriptionDetailsDto.js +4 -3
  15. package/dist/models/UkBankAccountDetails.d.ts +58 -0
  16. package/dist/models/UkBankAccountDetails.js +71 -0
  17. package/dist/models/UpdateBankAccountInput.d.ts +2 -20
  18. package/dist/models/UpdateBankAccountInput.js +3 -11
  19. package/dist/models/index.d.ts +3 -0
  20. package/dist/models/index.js +3 -0
  21. package/package.json +1 -1
  22. package/src/models/AccountBankAccountDto.ts +15 -34
  23. package/src/models/AccountBankAccountDtoDetails.ts +73 -0
  24. package/src/models/CreateBankAccountInput.ts +5 -30
  25. package/src/models/DomainTransferDetailsWorkflowDto.ts +9 -0
  26. package/src/models/SepaBankAccountDetails.ts +104 -0
  27. package/src/models/SubscriptionDetailsDto.ts +12 -5
  28. package/src/models/UkBankAccountDetails.ts +104 -0
  29. package/src/models/UpdateBankAccountInput.ts +5 -30
  30. package/src/models/index.ts +3 -0
@@ -27,28 +27,10 @@ export interface UpdateBankAccountInput {
27
27
  currencyCode: string;
28
28
  /**
29
29
  *
30
- * @type {string}
31
- * @memberof UpdateBankAccountInput
32
- */
33
- countryCode: string;
34
- /**
35
- *
36
- * @type {string}
37
- * @memberof UpdateBankAccountInput
38
- */
39
- bic: string;
40
- /**
41
- *
42
- * @type {string}
43
- * @memberof UpdateBankAccountInput
44
- */
45
- iban?: string | null;
46
- /**
47
- *
48
- * @type {string}
30
+ * @type {object}
49
31
  * @memberof UpdateBankAccountInput
50
32
  */
51
- bban?: string | null;
33
+ details: object;
52
34
  }
53
35
 
54
36
  /**
@@ -56,8 +38,7 @@ export interface UpdateBankAccountInput {
56
38
  */
57
39
  export function instanceOfUpdateBankAccountInput(value: object): value is UpdateBankAccountInput {
58
40
  if (!('currencyCode' in value) || value['currencyCode'] === undefined) return false;
59
- if (!('countryCode' in value) || value['countryCode'] === undefined) return false;
60
- if (!('bic' in value) || value['bic'] === undefined) return false;
41
+ if (!('details' in value) || value['details'] === undefined) return false;
61
42
  return true;
62
43
  }
63
44
 
@@ -72,10 +53,7 @@ export function UpdateBankAccountInputFromJSONTyped(json: any, ignoreDiscriminat
72
53
  return {
73
54
 
74
55
  'currencyCode': json['currencyCode'],
75
- 'countryCode': json['countryCode'],
76
- 'bic': json['bic'],
77
- 'iban': json['iban'] == null ? undefined : json['iban'],
78
- 'bban': json['bban'] == null ? undefined : json['bban'],
56
+ 'details': json['details'],
79
57
  };
80
58
  }
81
59
 
@@ -91,10 +69,7 @@ export function UpdateBankAccountInputToJSONTyped(value?: UpdateBankAccountInput
91
69
  return {
92
70
 
93
71
  'currencyCode': value['currencyCode'],
94
- 'countryCode': value['countryCode'],
95
- 'bic': value['bic'],
96
- 'iban': value['iban'],
97
- 'bban': value['bban'],
72
+ 'details': value['details'],
98
73
  };
99
74
  }
100
75
 
@@ -1,6 +1,7 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  export * from './AccountBankAccountDto';
4
+ export * from './AccountBankAccountDtoDetails';
4
5
  export * from './AccountDto';
5
6
  export * from './AccountMetricsDto';
6
7
  export * from './AccountNotificationDto';
@@ -161,6 +162,7 @@ export * from './SellerSecurityUserDto';
161
162
  export * from './SellerSubscriptionListItemDto';
162
163
  export * from './SellerSubscriptionListItemDtoDomainInformation';
163
164
  export * from './SeoMetricsDto';
165
+ export * from './SepaBankAccountDetails';
164
166
  export * from './SetDomainTransferConfirmationInput';
165
167
  export * from './SetNewPasswordInput';
166
168
  export * from './SetPayoutProviderInput';
@@ -185,6 +187,7 @@ export * from './TaskListDomainDto';
185
187
  export * from './TaskListDomainTransferDto';
186
188
  export * from './TaskListLeadDto';
187
189
  export * from './ThrottlerException';
190
+ export * from './UkBankAccountDetails';
188
191
  export * from './UpdateAccountBillingInformationInput';
189
192
  export * from './UpdateBankAccountInput';
190
193
  export * from './UpdateDomainInput';