@randock/nameshift-api-client 0.0.448 → 0.0.450

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 (162) hide show
  1. package/.openapi-generator/FILES +12 -0
  2. package/README.md +3 -3
  3. package/dist/apis/APIKeysApi.d.ts +78 -0
  4. package/dist/apis/APIKeysApi.js +354 -0
  5. package/dist/apis/AccountsApi.d.ts +36 -36
  6. package/dist/apis/AccountsApi.js +360 -216
  7. package/dist/apis/AdminApi.d.ts +37 -1
  8. package/dist/apis/AdminApi.js +122 -1
  9. package/dist/apis/AuctionsApi.d.ts +4 -4
  10. package/dist/apis/AuctionsApi.js +40 -24
  11. package/dist/apis/BankAccountsApi.d.ts +10 -10
  12. package/dist/apis/BankAccountsApi.js +100 -60
  13. package/dist/apis/ChallengesApi.d.ts +6 -6
  14. package/dist/apis/ChallengesApi.js +60 -36
  15. package/dist/apis/DomainTransfersApi.d.ts +2 -2
  16. package/dist/apis/DomainTransfersApi.js +20 -12
  17. package/dist/apis/DomainsApi.d.ts +44 -44
  18. package/dist/apis/DomainsApi.js +440 -264
  19. package/dist/apis/EppApi.d.ts +2 -2
  20. package/dist/apis/EppApi.js +20 -12
  21. package/dist/apis/InvoicesApi.d.ts +6 -6
  22. package/dist/apis/InvoicesApi.js +60 -36
  23. package/dist/apis/LeadsApi.d.ts +38 -38
  24. package/dist/apis/LeadsApi.js +380 -228
  25. package/dist/apis/MarketplacesApi.d.ts +89 -0
  26. package/dist/apis/MarketplacesApi.js +332 -0
  27. package/dist/apis/NotificationsApi.d.ts +8 -8
  28. package/dist/apis/NotificationsApi.js +80 -48
  29. package/dist/apis/StatsApi.d.ts +14 -14
  30. package/dist/apis/StatsApi.js +140 -84
  31. package/dist/apis/SubscriptionsApi.d.ts +2 -2
  32. package/dist/apis/SubscriptionsApi.js +20 -12
  33. package/dist/apis/TasksApi.d.ts +6 -6
  34. package/dist/apis/TasksApi.js +60 -36
  35. package/dist/apis/UsersApi.d.ts +10 -10
  36. package/dist/apis/UsersApi.js +100 -60
  37. package/dist/apis/index.d.ts +2 -0
  38. package/dist/apis/index.js +2 -0
  39. package/dist/models/AccountMarketplaceDto.d.ts +56 -0
  40. package/dist/models/AccountMarketplaceDto.js +71 -0
  41. package/dist/models/AccountNameshiftCommissionBySubtypeDto.d.ts +1 -0
  42. package/dist/models/AccountNameshiftCommissionBySubtypeDto.js +1 -0
  43. package/dist/models/AccountNameshiftCommissionItemDto.d.ts +1 -0
  44. package/dist/models/AccountNameshiftCommissionItemDto.js +1 -0
  45. package/dist/models/AccountNameshiftCommissionReasonDto.d.ts +1 -0
  46. package/dist/models/AccountNameshiftCommissionReasonDto.js +1 -0
  47. package/dist/models/AccountSettingsDto.d.ts +18 -0
  48. package/dist/models/AccountSettingsDto.js +16 -0
  49. package/dist/models/AccountSettingsInput.d.ts +18 -0
  50. package/dist/models/AccountSettingsInput.js +14 -0
  51. package/dist/models/AdminDomainListItemDto.d.ts +19 -0
  52. package/dist/models/AdminDomainListItemDto.js +17 -1
  53. package/dist/models/AdminMarketplaceDto.d.ts +86 -0
  54. package/dist/models/AdminMarketplaceDto.js +91 -0
  55. package/dist/models/ApiKeyDto.d.ts +107 -0
  56. package/dist/models/ApiKeyDto.js +114 -0
  57. package/dist/models/ApiKeyScopeDto.d.ts +83 -0
  58. package/dist/models/ApiKeyScopeDto.js +98 -0
  59. package/dist/models/CommissionDto.d.ts +1 -0
  60. package/dist/models/CommissionDto.js +1 -0
  61. package/dist/models/CommissionPayloadInput.d.ts +1 -0
  62. package/dist/models/CommissionPayloadInput.js +1 -0
  63. package/dist/models/CommissionReasonDto.d.ts +1 -0
  64. package/dist/models/CommissionReasonDto.js +1 -0
  65. package/dist/models/CommissionSimulationItemInput.d.ts +1 -0
  66. package/dist/models/CommissionSimulationItemInput.js +1 -0
  67. package/dist/models/CreateApiKeyInput.d.ts +83 -0
  68. package/dist/models/CreateApiKeyInput.js +96 -0
  69. package/dist/models/CreateOrderInput.d.ts +6 -0
  70. package/dist/models/CreateOrderInput.js +2 -0
  71. package/dist/models/CreateSubscriptionInput.d.ts +6 -0
  72. package/dist/models/CreateSubscriptionInput.js +2 -0
  73. package/dist/models/CreatedApiKeyDto.d.ts +113 -0
  74. package/dist/models/CreatedApiKeyDto.js +118 -0
  75. package/dist/models/FeatureFlagListItemDto.d.ts +1 -0
  76. package/dist/models/FeatureFlagListItemDto.js +2 -1
  77. package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.d.ts +1 -0
  78. package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js +2 -1
  79. package/dist/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.d.ts +18 -0
  80. package/dist/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.js +16 -0
  81. package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +18 -0
  82. package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +16 -0
  83. package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.d.ts +18 -0
  84. package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.js +16 -0
  85. package/dist/models/MarketplaceDto.d.ts +74 -0
  86. package/dist/models/MarketplaceDto.js +83 -0
  87. package/dist/models/OrderDto.d.ts +7 -1
  88. package/dist/models/OrderDto.js +4 -0
  89. package/dist/models/PrivateAccountGetMeResponse.d.ts +1 -0
  90. package/dist/models/PrivateAccountGetMeResponse.js +2 -1
  91. package/dist/models/SetAccountMarketplaceInput.d.ts +32 -0
  92. package/dist/models/SetAccountMarketplaceInput.js +51 -0
  93. package/dist/models/SimulateCommissionInput.d.ts +1 -0
  94. package/dist/models/SimulateCommissionInput.js +1 -0
  95. package/dist/models/SubscriptionDto.d.ts +7 -1
  96. package/dist/models/SubscriptionDto.js +4 -0
  97. package/dist/models/UpdateApiKeyInput.d.ts +77 -0
  98. package/dist/models/UpdateApiKeyInput.js +90 -0
  99. package/dist/models/UpdateDomainInput.d.ts +18 -0
  100. package/dist/models/UpdateDomainInput.js +14 -0
  101. package/dist/models/UpdateMarketplaceInput.d.ts +44 -0
  102. package/dist/models/UpdateMarketplaceInput.js +53 -0
  103. package/dist/models/UpdateOrderInput.d.ts +6 -0
  104. package/dist/models/UpdateOrderInput.js +2 -0
  105. package/dist/models/UpdateSubscriptionInput.d.ts +6 -0
  106. package/dist/models/UpdateSubscriptionInput.js +2 -0
  107. package/dist/models/index.d.ts +10 -0
  108. package/dist/models/index.js +10 -0
  109. package/package.json +1 -1
  110. package/src/apis/APIKeysApi.ts +271 -0
  111. package/src/apis/AccountsApi.ts +108 -36
  112. package/src/apis/AdminApi.ts +112 -0
  113. package/src/apis/AuctionsApi.ts +12 -4
  114. package/src/apis/BankAccountsApi.ts +30 -10
  115. package/src/apis/ChallengesApi.ts +18 -6
  116. package/src/apis/DomainTransfersApi.ts +6 -2
  117. package/src/apis/DomainsApi.ts +132 -44
  118. package/src/apis/EppApi.ts +6 -2
  119. package/src/apis/InvoicesApi.ts +18 -6
  120. package/src/apis/LeadsApi.ts +114 -38
  121. package/src/apis/MarketplacesApi.ts +240 -0
  122. package/src/apis/NotificationsApi.ts +24 -8
  123. package/src/apis/StatsApi.ts +42 -14
  124. package/src/apis/SubscriptionsApi.ts +6 -2
  125. package/src/apis/TasksApi.ts +18 -6
  126. package/src/apis/UsersApi.ts +30 -10
  127. package/src/apis/index.ts +2 -0
  128. package/src/models/AccountMarketplaceDto.ts +99 -0
  129. package/src/models/AccountNameshiftCommissionBySubtypeDto.ts +1 -0
  130. package/src/models/AccountNameshiftCommissionItemDto.ts +1 -0
  131. package/src/models/AccountNameshiftCommissionReasonDto.ts +1 -0
  132. package/src/models/AccountSettingsDto.ts +24 -0
  133. package/src/models/AccountSettingsInput.ts +23 -0
  134. package/src/models/AdminDomainListItemDto.ts +23 -0
  135. package/src/models/AdminMarketplaceDto.ts +144 -0
  136. package/src/models/ApiKeyDto.ts +162 -0
  137. package/src/models/ApiKeyScopeDto.ts +126 -0
  138. package/src/models/CommissionDto.ts +1 -0
  139. package/src/models/CommissionPayloadInput.ts +1 -0
  140. package/src/models/CommissionReasonDto.ts +1 -0
  141. package/src/models/CommissionSimulationItemInput.ts +1 -0
  142. package/src/models/CreateApiKeyInput.ts +125 -0
  143. package/src/models/CreateOrderInput.ts +8 -0
  144. package/src/models/CreateSubscriptionInput.ts +8 -0
  145. package/src/models/CreatedApiKeyDto.ts +171 -0
  146. package/src/models/FeatureFlagListItemDto.ts +2 -1
  147. package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts +2 -1
  148. package/src/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.ts +24 -0
  149. package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +24 -0
  150. package/src/models/IntersectionDomainDtoWithSeoMetricsDto.ts +24 -0
  151. package/src/models/MarketplaceDto.ts +126 -0
  152. package/src/models/OrderDto.ts +10 -1
  153. package/src/models/PrivateAccountGetMeResponse.ts +2 -1
  154. package/src/models/SetAccountMarketplaceInput.ts +66 -0
  155. package/src/models/SimulateCommissionInput.ts +1 -0
  156. package/src/models/SubscriptionDto.ts +10 -1
  157. package/src/models/UpdateApiKeyInput.ts +115 -0
  158. package/src/models/UpdateDomainInput.ts +23 -0
  159. package/src/models/UpdateMarketplaceInput.ts +81 -0
  160. package/src/models/UpdateOrderInput.ts +8 -0
  161. package/src/models/UpdateSubscriptionInput.ts +8 -0
  162. package/src/models/index.ts +10 -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>;