@randock/nameshift-api-client 0.0.448 → 0.0.449
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 +6 -0
- package/README.md +3 -3
- package/dist/apis/APIKeysApi.d.ts +78 -0
- package/dist/apis/APIKeysApi.js +354 -0
- package/dist/apis/AccountsApi.d.ts +36 -36
- package/dist/apis/AccountsApi.js +360 -216
- package/dist/apis/AuctionsApi.d.ts +4 -4
- package/dist/apis/AuctionsApi.js +40 -24
- package/dist/apis/BankAccountsApi.d.ts +10 -10
- package/dist/apis/BankAccountsApi.js +100 -60
- package/dist/apis/ChallengesApi.d.ts +6 -6
- package/dist/apis/ChallengesApi.js +60 -36
- package/dist/apis/DomainTransfersApi.d.ts +2 -2
- package/dist/apis/DomainTransfersApi.js +20 -12
- package/dist/apis/DomainsApi.d.ts +44 -44
- package/dist/apis/DomainsApi.js +440 -264
- package/dist/apis/EppApi.d.ts +2 -2
- package/dist/apis/EppApi.js +20 -12
- package/dist/apis/InvoicesApi.d.ts +6 -6
- package/dist/apis/InvoicesApi.js +60 -36
- package/dist/apis/LeadsApi.d.ts +38 -38
- package/dist/apis/LeadsApi.js +380 -228
- package/dist/apis/NotificationsApi.d.ts +8 -8
- package/dist/apis/NotificationsApi.js +80 -48
- package/dist/apis/StatsApi.d.ts +14 -14
- package/dist/apis/StatsApi.js +140 -84
- package/dist/apis/SubscriptionsApi.d.ts +2 -2
- package/dist/apis/SubscriptionsApi.js +20 -12
- package/dist/apis/TasksApi.d.ts +6 -6
- package/dist/apis/TasksApi.js +60 -36
- package/dist/apis/UsersApi.d.ts +10 -10
- package/dist/apis/UsersApi.js +100 -60
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/ApiKeyDto.d.ts +107 -0
- package/dist/models/ApiKeyDto.js +114 -0
- package/dist/models/ApiKeyScopeDto.d.ts +83 -0
- package/dist/models/ApiKeyScopeDto.js +98 -0
- package/dist/models/CreateApiKeyInput.d.ts +83 -0
- package/dist/models/CreateApiKeyInput.js +96 -0
- package/dist/models/CreatedApiKeyDto.d.ts +113 -0
- package/dist/models/CreatedApiKeyDto.js +118 -0
- package/dist/models/UpdateApiKeyInput.d.ts +77 -0
- package/dist/models/UpdateApiKeyInput.js +90 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/package.json +1 -1
- package/src/apis/APIKeysApi.ts +271 -0
- package/src/apis/AccountsApi.ts +108 -36
- package/src/apis/AuctionsApi.ts +12 -4
- package/src/apis/BankAccountsApi.ts +30 -10
- package/src/apis/ChallengesApi.ts +18 -6
- package/src/apis/DomainTransfersApi.ts +6 -2
- package/src/apis/DomainsApi.ts +132 -44
- package/src/apis/EppApi.ts +6 -2
- package/src/apis/InvoicesApi.ts +18 -6
- package/src/apis/LeadsApi.ts +114 -38
- package/src/apis/NotificationsApi.ts +24 -8
- package/src/apis/StatsApi.ts +42 -14
- package/src/apis/SubscriptionsApi.ts +6 -2
- package/src/apis/TasksApi.ts +18 -6
- package/src/apis/UsersApi.ts +30 -10
- package/src/apis/index.ts +1 -0
- package/src/models/ApiKeyDto.ts +162 -0
- package/src/models/ApiKeyScopeDto.ts +126 -0
- package/src/models/CreateApiKeyInput.ts +125 -0
- package/src/models/CreatedApiKeyDto.ts +171 -0
- package/src/models/UpdateApiKeyInput.ts +115 -0
- package/src/models/index.ts +5 -0
package/src/models/index.ts
CHANGED
|
@@ -71,6 +71,8 @@ export * from './AirwallexBankAccountDetailsDtoLocalMethod';
|
|
|
71
71
|
export * from './AirwallexBankAccountDetailsDtoLocalMethodCode';
|
|
72
72
|
export * from './AirwallexDepositDto';
|
|
73
73
|
export * from './AirwallexDepositDtoFee';
|
|
74
|
+
export * from './ApiKeyDto';
|
|
75
|
+
export * from './ApiKeyScopeDto';
|
|
74
76
|
export * from './AuBankAccountDetails';
|
|
75
77
|
export * from './AuctionBidDto';
|
|
76
78
|
export * from './AuctionBidInput';
|
|
@@ -161,6 +163,7 @@ export * from './CompanyTaxIdDto';
|
|
|
161
163
|
export * from './ConflictException';
|
|
162
164
|
export * from './CreateAccountPaymentInput';
|
|
163
165
|
export * from './CreateAccountPaymentManualTransactionInput';
|
|
166
|
+
export * from './CreateApiKeyInput';
|
|
164
167
|
export * from './CreateBankAccountInput';
|
|
165
168
|
export * from './CreateBuyerLeadMessageInput';
|
|
166
169
|
export * from './CreateChallengeInput';
|
|
@@ -172,6 +175,7 @@ export * from './CreateOrderInput';
|
|
|
172
175
|
export * from './CreateSubscriptionBillingPeriodicityInput';
|
|
173
176
|
export * from './CreateSubscriptionInput';
|
|
174
177
|
export * from './CreateSubscriptionManualTransactionInput';
|
|
178
|
+
export * from './CreatedApiKeyDto';
|
|
175
179
|
export * from './CursorBasedPageInfo';
|
|
176
180
|
export * from './CursorBasedPaginationResponse';
|
|
177
181
|
export * from './DeleteDomainsInput';
|
|
@@ -471,6 +475,7 @@ export * from './TopSellerAccountDto';
|
|
|
471
475
|
export * from './UkBankAccountDetails';
|
|
472
476
|
export * from './UpdateAccountBillingInformationInput';
|
|
473
477
|
export * from './UpdateAccountChallengeRewardBalanceInput';
|
|
478
|
+
export * from './UpdateApiKeyInput';
|
|
474
479
|
export * from './UpdateAuctionMuteStatusInput';
|
|
475
480
|
export * from './UpdateBuyerDomainTransferBuyerInfoInput';
|
|
476
481
|
export * from './UpdateBuyerDomainTransferIpsTagInputDto';
|