@randock/nameshift-api-client 0.0.447 → 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/AdminApi.d.ts +26 -0
- package/dist/apis/AdminApi.js +106 -0
- 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/MarketApi.d.ts +2 -2
- package/dist/apis/MarketApi.js +2 -2
- 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/AdminDomainListItemDto.d.ts +6 -0
- package/dist/models/AdminDomainListItemDto.js +4 -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/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.js +4 -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/AdminApi.ts +92 -0
- 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/MarketApi.ts +2 -2
- 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/AdminDomainListItemDto.ts +9 -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/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.ts +9 -0
- package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +9 -0
- package/src/models/IntersectionDomainDtoWithSeoMetricsDto.ts +9 -0
- package/src/models/UpdateApiKeyInput.ts +115 -0
- package/src/models/index.ts +5 -0
|
@@ -84,182 +84,182 @@ export interface AccountsApiUpdateSettingsRequest {
|
|
|
84
84
|
*/
|
|
85
85
|
export declare class AccountsApi extends runtime.BaseAPI {
|
|
86
86
|
/**
|
|
87
|
-
* Creates a new account payment for a feature or service purchase.
|
|
87
|
+
* Creates a new account payment for a feature or service purchase. **API key scope required:** `PAYMENTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
88
88
|
* Create account payment
|
|
89
89
|
*/
|
|
90
90
|
createAccountPaymentRaw(requestParameters: AccountsApiCreateAccountPaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ObjectId>>;
|
|
91
91
|
/**
|
|
92
|
-
* Creates a new account payment for a feature or service purchase.
|
|
92
|
+
* Creates a new account payment for a feature or service purchase. **API key scope required:** `PAYMENTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
93
93
|
* Create account payment
|
|
94
94
|
*/
|
|
95
95
|
createAccountPayment(requestParameters: AccountsApiCreateAccountPaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ObjectId>;
|
|
96
96
|
/**
|
|
97
|
-
* Creates a new manual transaction for account payment with specified open invoice
|
|
97
|
+
* Creates a new manual transaction for account payment with specified open invoice **API key scope required:** `PAYMENTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
98
98
|
* Create a new manual transaction for account payment invoice
|
|
99
99
|
*/
|
|
100
100
|
createAccountPaymentManualTransactionRaw(requestParameters: AccountsApiCreateAccountPaymentManualTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
101
101
|
/**
|
|
102
|
-
* Creates a new manual transaction for account payment with specified open invoice
|
|
102
|
+
* Creates a new manual transaction for account payment with specified open invoice **API key scope required:** `PAYMENTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
103
103
|
* Create a new manual transaction for account payment invoice
|
|
104
104
|
*/
|
|
105
105
|
createAccountPaymentManualTransaction(requestParameters: AccountsApiCreateAccountPaymentManualTransactionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
106
106
|
/**
|
|
107
|
-
* Permanently deletes the current seller account.
|
|
107
|
+
* Permanently deletes the current seller account. **API key scope required:** `ACCOUNT_DELETE`. Requests authenticated with a seller session do not need any scope.
|
|
108
108
|
* Delete current account
|
|
109
109
|
*/
|
|
110
110
|
deleteMeRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
111
111
|
/**
|
|
112
|
-
* Permanently deletes the current seller account.
|
|
112
|
+
* Permanently deletes the current seller account. **API key scope required:** `ACCOUNT_DELETE`. Requests authenticated with a seller session do not need any scope.
|
|
113
113
|
* Delete current account
|
|
114
114
|
*/
|
|
115
115
|
deleteMe(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
116
116
|
/**
|
|
117
|
-
* Returns details of a specific account payment.
|
|
117
|
+
* Returns details of a specific account payment. **API key scope required:** `PAYMENTS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
118
118
|
* Get account payment
|
|
119
119
|
*/
|
|
120
120
|
getAccountPaymentRaw(requestParameters: AccountsApiGetAccountPaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AccountPaymentDto>>;
|
|
121
121
|
/**
|
|
122
|
-
* Returns details of a specific account payment.
|
|
122
|
+
* Returns details of a specific account payment. **API key scope required:** `PAYMENTS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
123
123
|
* Get account payment
|
|
124
124
|
*/
|
|
125
125
|
getAccountPayment(requestParameters: AccountsApiGetAccountPaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AccountPaymentDto>;
|
|
126
126
|
/**
|
|
127
|
-
* Returns saved payment methods for the account filtered by payment gateway.
|
|
127
|
+
* Returns saved payment methods for the account filtered by payment gateway. **API key scope required:** `PAYMENTS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
128
128
|
* Get account payment methods
|
|
129
129
|
*/
|
|
130
130
|
getAccountPaymentMethodsRaw(requestParameters: AccountsApiGetAccountPaymentMethodsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<AccountPaymentMethodDto>>>;
|
|
131
131
|
/**
|
|
132
|
-
* Returns saved payment methods for the account filtered by payment gateway.
|
|
132
|
+
* Returns saved payment methods for the account filtered by payment gateway. **API key scope required:** `PAYMENTS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
133
133
|
* Get account payment methods
|
|
134
134
|
*/
|
|
135
135
|
getAccountPaymentMethods(requestParameters: AccountsApiGetAccountPaymentMethodsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<AccountPaymentMethodDto>>;
|
|
136
136
|
/**
|
|
137
|
-
* Returns an onboarding session for the account payment provider setup.
|
|
137
|
+
* Returns an onboarding session for the account payment provider setup. **API key scope required:** `PAYOUTS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
138
138
|
* Get payment provider onboarding session
|
|
139
139
|
*/
|
|
140
140
|
getAccountPaymentProviderSessionRaw(requestParameters: AccountsApiGetAccountPaymentProviderSessionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AccountOnboardingSessionDto>>;
|
|
141
141
|
/**
|
|
142
|
-
* Returns an onboarding session for the account payment provider setup.
|
|
142
|
+
* Returns an onboarding session for the account payment provider setup. **API key scope required:** `PAYOUTS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
143
143
|
* Get payment provider onboarding session
|
|
144
144
|
*/
|
|
145
145
|
getAccountPaymentProviderSession(requestParameters: AccountsApiGetAccountPaymentProviderSessionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AccountOnboardingSessionDto>;
|
|
146
146
|
/**
|
|
147
|
-
* Returns a summary of pending affiliate commission amounts grouped by currency.
|
|
147
|
+
* Returns a summary of pending affiliate commission amounts grouped by currency. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
148
148
|
* Get pending affiliate commissions summary
|
|
149
149
|
*/
|
|
150
150
|
getAccountPendingAffiliateCommissionsSummaryRaw(requestParameters: AccountsApiGetAccountPendingAffiliateCommissionsSummaryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<MoneyDto>>>;
|
|
151
151
|
/**
|
|
152
|
-
* Returns a summary of pending affiliate commission amounts grouped by currency.
|
|
152
|
+
* Returns a summary of pending affiliate commission amounts grouped by currency. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
153
153
|
* Get pending affiliate commissions summary
|
|
154
154
|
*/
|
|
155
155
|
getAccountPendingAffiliateCommissionsSummary(requestParameters: AccountsApiGetAccountPendingAffiliateCommissionsSummaryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<MoneyDto>>;
|
|
156
156
|
/**
|
|
157
|
-
* Returns the settings for the current seller account.
|
|
157
|
+
* Returns the settings for the current seller account. **API key scope required:** `ACCOUNT_READ`. Requests authenticated with a seller session do not need any scope.
|
|
158
158
|
* Get account settings
|
|
159
159
|
*/
|
|
160
160
|
getAccountSettingsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AccountSettingsDto>>;
|
|
161
161
|
/**
|
|
162
|
-
* Returns the settings for the current seller account.
|
|
162
|
+
* Returns the settings for the current seller account. **API key scope required:** `ACCOUNT_READ`. Requests authenticated with a seller session do not need any scope.
|
|
163
163
|
* Get account settings
|
|
164
164
|
*/
|
|
165
165
|
getAccountSettings(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AccountSettingsDto>;
|
|
166
166
|
/**
|
|
167
|
-
* Lists affiliate commissions for the seller account.
|
|
167
|
+
* Lists affiliate commissions for the seller account. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
168
168
|
* List affiliate commissions
|
|
169
169
|
*/
|
|
170
170
|
getAllAffiliateCommissionsRaw(requestParameters: AccountsApiGetAllAffiliateCommissionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetAllAffiliateCommissions200Response>>;
|
|
171
171
|
/**
|
|
172
|
-
* Lists affiliate commissions for the seller account.
|
|
172
|
+
* Lists affiliate commissions for the seller account. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
173
173
|
* List affiliate commissions
|
|
174
174
|
*/
|
|
175
175
|
getAllAffiliateCommissions(requestParameters: AccountsApiGetAllAffiliateCommissionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAllAffiliateCommissions200Response>;
|
|
176
176
|
/**
|
|
177
|
-
* Lists accounts referred by the seller.
|
|
177
|
+
* Lists accounts referred by the seller. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
178
178
|
* List account referrals
|
|
179
179
|
*/
|
|
180
180
|
getAllReferralsRaw(requestParameters: AccountsApiGetAllReferralsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetAllReferrals200Response>>;
|
|
181
181
|
/**
|
|
182
|
-
* Lists accounts referred by the seller.
|
|
182
|
+
* Lists accounts referred by the seller. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
183
183
|
* List account referrals
|
|
184
184
|
*/
|
|
185
185
|
getAllReferrals(requestParameters: AccountsApiGetAllReferralsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAllReferrals200Response>;
|
|
186
186
|
/**
|
|
187
|
-
* Returns Nameshift commission percentages and schedules for the current account.
|
|
187
|
+
* Returns Nameshift commission percentages and schedules for the current account. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
188
188
|
* Get Nameshift commissions
|
|
189
189
|
*/
|
|
190
190
|
getNameshiftCommissionsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetAccountNameshiftCommissionsResponseDto>>;
|
|
191
191
|
/**
|
|
192
|
-
* Returns Nameshift commission percentages and schedules for the current account.
|
|
192
|
+
* Returns Nameshift commission percentages and schedules for the current account. **API key scope required:** `COMMISSIONS_READ`. Requests authenticated with a seller session do not need any scope.
|
|
193
193
|
* Get Nameshift commissions
|
|
194
194
|
*/
|
|
195
195
|
getNameshiftCommissions(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAccountNameshiftCommissionsResponseDto>;
|
|
196
196
|
/**
|
|
197
|
-
* Returns the current seller account information.
|
|
197
|
+
* Returns the current seller account information. **API key scope required:** `ACCOUNT_READ`. Requests authenticated with a seller session do not need any scope.
|
|
198
198
|
* Get current account
|
|
199
199
|
*/
|
|
200
200
|
meRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PrivateAccountGetMeResponse>>;
|
|
201
201
|
/**
|
|
202
|
-
* Returns the current seller account information.
|
|
202
|
+
* Returns the current seller account information. **API key scope required:** `ACCOUNT_READ`. Requests authenticated with a seller session do not need any scope.
|
|
203
203
|
* Get current account
|
|
204
204
|
*/
|
|
205
205
|
me(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PrivateAccountGetMeResponse>;
|
|
206
206
|
/**
|
|
207
|
-
* Pays an account payment by confirming the payment intent using the specified payment method
|
|
207
|
+
* Pays an account payment by confirming the payment intent using the specified payment method **API key scope required:** `PAYMENTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
208
208
|
* Pay an account payment
|
|
209
209
|
*/
|
|
210
210
|
payAccountPaymentRaw(requestParameters: AccountsApiPayAccountPaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
211
211
|
/**
|
|
212
|
-
* Pays an account payment by confirming the payment intent using the specified payment method
|
|
212
|
+
* Pays an account payment by confirming the payment intent using the specified payment method **API key scope required:** `PAYMENTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
213
213
|
* Pay an account payment
|
|
214
214
|
*/
|
|
215
215
|
payAccountPayment(requestParameters: AccountsApiPayAccountPaymentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
216
216
|
/**
|
|
217
|
-
* Creates or updates billing information for the current seller account.
|
|
217
|
+
* Creates or updates billing information for the current seller account. **API key scope required:** `ACCOUNT_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
218
218
|
* Update billing information
|
|
219
219
|
*/
|
|
220
220
|
postBillingInformationRaw(requestParameters: AccountsApiPostBillingInformationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
221
221
|
/**
|
|
222
|
-
* Creates or updates billing information for the current seller account.
|
|
222
|
+
* Creates or updates billing information for the current seller account. **API key scope required:** `ACCOUNT_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
223
223
|
* Update billing information
|
|
224
224
|
*/
|
|
225
225
|
postBillingInformation(requestParameters: AccountsApiPostBillingInformationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
226
226
|
/**
|
|
227
|
-
* Marks an account notification as read.
|
|
227
|
+
* Marks an account notification as read. **API key scope required:** `NOTIFICATIONS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
228
228
|
* Mark notification as read
|
|
229
229
|
*/
|
|
230
230
|
postReadAccountNotificationRaw(requestParameters: AccountsApiPostReadAccountNotificationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
231
231
|
/**
|
|
232
|
-
* Marks an account notification as read.
|
|
232
|
+
* Marks an account notification as read. **API key scope required:** `NOTIFICATIONS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
233
233
|
* Mark notification as read
|
|
234
234
|
*/
|
|
235
235
|
postReadAccountNotification(requestParameters: AccountsApiPostReadAccountNotificationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
236
236
|
/**
|
|
237
|
-
* Uploads or replaces the avatar image displayed on the account landing page.
|
|
237
|
+
* Uploads or replaces the avatar image displayed on the account landing page. **API key scope required:** `ACCOUNT_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
238
238
|
* Upload landing page avatar
|
|
239
239
|
*/
|
|
240
240
|
putAvatarRaw(requestParameters: AccountsApiPutAvatarRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
241
241
|
/**
|
|
242
|
-
* Uploads or replaces the avatar image displayed on the account landing page.
|
|
242
|
+
* Uploads or replaces the avatar image displayed on the account landing page. **API key scope required:** `ACCOUNT_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
243
243
|
* Upload landing page avatar
|
|
244
244
|
*/
|
|
245
245
|
putAvatar(requestParameters: AccountsApiPutAvatarRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
246
246
|
/**
|
|
247
|
-
* Sets the payout provider for the current seller account.
|
|
247
|
+
* Sets the payout provider for the current seller account. **API key scope required:** `PAYOUTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
248
248
|
* Set payout provider
|
|
249
249
|
*/
|
|
250
250
|
setPayoutProviderRaw(requestParameters: AccountsApiSetPayoutProviderRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
251
251
|
/**
|
|
252
|
-
* Sets the payout provider for the current seller account.
|
|
252
|
+
* Sets the payout provider for the current seller account. **API key scope required:** `PAYOUTS_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
253
253
|
* Set payout provider
|
|
254
254
|
*/
|
|
255
255
|
setPayoutProvider(requestParameters: AccountsApiSetPayoutProviderRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
256
256
|
/**
|
|
257
|
-
* Updates seller account settings.
|
|
257
|
+
* Updates seller account settings. **API key scope required:** `ACCOUNT_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
258
258
|
* Update account settings
|
|
259
259
|
*/
|
|
260
260
|
updateSettingsRaw(requestParameters: AccountsApiUpdateSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
261
261
|
/**
|
|
262
|
-
* Updates seller account settings.
|
|
262
|
+
* Updates seller account settings. **API key scope required:** `ACCOUNT_WRITE`. Requests authenticated with a seller session do not need any scope.
|
|
263
263
|
* Update account settings
|
|
264
264
|
*/
|
|
265
265
|
updateSettings(requestParameters: AccountsApiUpdateSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|