@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.
Files changed (69) hide show
  1. package/.openapi-generator/FILES +6 -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/AuctionsApi.d.ts +4 -4
  8. package/dist/apis/AuctionsApi.js +40 -24
  9. package/dist/apis/BankAccountsApi.d.ts +10 -10
  10. package/dist/apis/BankAccountsApi.js +100 -60
  11. package/dist/apis/ChallengesApi.d.ts +6 -6
  12. package/dist/apis/ChallengesApi.js +60 -36
  13. package/dist/apis/DomainTransfersApi.d.ts +2 -2
  14. package/dist/apis/DomainTransfersApi.js +20 -12
  15. package/dist/apis/DomainsApi.d.ts +44 -44
  16. package/dist/apis/DomainsApi.js +440 -264
  17. package/dist/apis/EppApi.d.ts +2 -2
  18. package/dist/apis/EppApi.js +20 -12
  19. package/dist/apis/InvoicesApi.d.ts +6 -6
  20. package/dist/apis/InvoicesApi.js +60 -36
  21. package/dist/apis/LeadsApi.d.ts +38 -38
  22. package/dist/apis/LeadsApi.js +380 -228
  23. package/dist/apis/NotificationsApi.d.ts +8 -8
  24. package/dist/apis/NotificationsApi.js +80 -48
  25. package/dist/apis/StatsApi.d.ts +14 -14
  26. package/dist/apis/StatsApi.js +140 -84
  27. package/dist/apis/SubscriptionsApi.d.ts +2 -2
  28. package/dist/apis/SubscriptionsApi.js +20 -12
  29. package/dist/apis/TasksApi.d.ts +6 -6
  30. package/dist/apis/TasksApi.js +60 -36
  31. package/dist/apis/UsersApi.d.ts +10 -10
  32. package/dist/apis/UsersApi.js +100 -60
  33. package/dist/apis/index.d.ts +1 -0
  34. package/dist/apis/index.js +1 -0
  35. package/dist/models/ApiKeyDto.d.ts +107 -0
  36. package/dist/models/ApiKeyDto.js +114 -0
  37. package/dist/models/ApiKeyScopeDto.d.ts +83 -0
  38. package/dist/models/ApiKeyScopeDto.js +98 -0
  39. package/dist/models/CreateApiKeyInput.d.ts +83 -0
  40. package/dist/models/CreateApiKeyInput.js +96 -0
  41. package/dist/models/CreatedApiKeyDto.d.ts +113 -0
  42. package/dist/models/CreatedApiKeyDto.js +118 -0
  43. package/dist/models/UpdateApiKeyInput.d.ts +77 -0
  44. package/dist/models/UpdateApiKeyInput.js +90 -0
  45. package/dist/models/index.d.ts +5 -0
  46. package/dist/models/index.js +5 -0
  47. package/package.json +1 -1
  48. package/src/apis/APIKeysApi.ts +271 -0
  49. package/src/apis/AccountsApi.ts +108 -36
  50. package/src/apis/AuctionsApi.ts +12 -4
  51. package/src/apis/BankAccountsApi.ts +30 -10
  52. package/src/apis/ChallengesApi.ts +18 -6
  53. package/src/apis/DomainTransfersApi.ts +6 -2
  54. package/src/apis/DomainsApi.ts +132 -44
  55. package/src/apis/EppApi.ts +6 -2
  56. package/src/apis/InvoicesApi.ts +18 -6
  57. package/src/apis/LeadsApi.ts +114 -38
  58. package/src/apis/NotificationsApi.ts +24 -8
  59. package/src/apis/StatsApi.ts +42 -14
  60. package/src/apis/SubscriptionsApi.ts +6 -2
  61. package/src/apis/TasksApi.ts +18 -6
  62. package/src/apis/UsersApi.ts +30 -10
  63. package/src/apis/index.ts +1 -0
  64. package/src/models/ApiKeyDto.ts +162 -0
  65. package/src/models/ApiKeyScopeDto.ts +126 -0
  66. package/src/models/CreateApiKeyInput.ts +125 -0
  67. package/src/models/CreatedApiKeyDto.ts +171 -0
  68. package/src/models/UpdateApiKeyInput.ts +115 -0
  69. package/src/models/index.ts +5 -0
@@ -76,14 +76,14 @@ var ChallengesApi = /** @class */ (function (_super) {
76
76
  return _super !== null && _super.apply(this, arguments) || this;
77
77
  }
78
78
  /**
79
- * Collects the reward points for a completed challenge progress entry.
79
+ * Collects the reward points for a completed challenge progress entry. **API key scope required:** `CHALLENGES_WRITE`. Requests authenticated with a seller session do not need any scope.
80
80
  * Collect challenge reward
81
81
  */
82
82
  ChallengesApi.prototype.collectChallengeRewardRaw = function (requestParameters, initOverrides) {
83
83
  return __awaiter(this, void 0, void 0, function () {
84
- var queryParameters, headerParameters, token, tokenString, response;
85
- return __generator(this, function (_a) {
86
- switch (_a.label) {
84
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response;
85
+ return __generator(this, function (_c) {
86
+ switch (_c.label) {
87
87
  case 0:
88
88
  if (requestParameters['challengeId'] == null) {
89
89
  throw new runtime.RequiredError('challengeId', 'Required parameter "challengeId" was null or undefined when calling collectChallengeReward().');
@@ -93,30 +93,38 @@ var ChallengesApi = /** @class */ (function (_super) {
93
93
  }
94
94
  queryParameters = {};
95
95
  headerParameters = {};
96
- if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
96
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
97
+ _a = headerParameters;
98
+ _b = "apikey";
99
+ return [4 /*yield*/, this.configuration.apiKey("apikey")];
100
+ case 1:
101
+ _a[_b] = _c.sent(); // api_key authentication
102
+ _c.label = 2;
103
+ case 2:
104
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
97
105
  token = this.configuration.accessToken;
98
106
  return [4 /*yield*/, token("bearer", [])];
99
- case 1:
100
- tokenString = _a.sent();
107
+ case 3:
108
+ tokenString = _c.sent();
101
109
  if (tokenString) {
102
110
  headerParameters["Authorization"] = "Bearer ".concat(tokenString);
103
111
  }
104
- _a.label = 2;
105
- case 2: return [4 /*yield*/, this.request({
112
+ _c.label = 4;
113
+ case 4: return [4 /*yield*/, this.request({
106
114
  path: "/private/challenges/{challengeId}/progress/{progressId}/collect".replace("{".concat("challengeId", "}"), encodeURIComponent(String(requestParameters['challengeId']))).replace("{".concat("progressId", "}"), encodeURIComponent(String(requestParameters['progressId']))),
107
115
  method: 'POST',
108
116
  headers: headerParameters,
109
117
  query: queryParameters,
110
118
  }, initOverrides)];
111
- case 3:
112
- response = _a.sent();
119
+ case 5:
120
+ response = _c.sent();
113
121
  return [2 /*return*/, new runtime.VoidApiResponse(response)];
114
122
  }
115
123
  });
116
124
  });
117
125
  };
118
126
  /**
119
- * Collects the reward points for a completed challenge progress entry.
127
+ * Collects the reward points for a completed challenge progress entry. **API key scope required:** `CHALLENGES_WRITE`. Requests authenticated with a seller session do not need any scope.
120
128
  * Collect challenge reward
121
129
  */
122
130
  ChallengesApi.prototype.collectChallengeReward = function (requestParameters, initOverrides) {
@@ -132,41 +140,49 @@ var ChallengesApi = /** @class */ (function (_super) {
132
140
  });
133
141
  };
134
142
  /**
135
- * Returns the list of challenge reward usages for the current seller account.
143
+ * Returns the list of challenge reward usages for the current seller account. **API key scope required:** `CHALLENGES_READ`. Requests authenticated with a seller session do not need any scope.
136
144
  * Get challenge reward usages
137
145
  */
138
146
  ChallengesApi.prototype.getAccountChallengeRewardUsagesRaw = function (initOverrides) {
139
147
  return __awaiter(this, void 0, void 0, function () {
140
- var queryParameters, headerParameters, token, tokenString, response;
141
- return __generator(this, function (_a) {
142
- switch (_a.label) {
148
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response;
149
+ return __generator(this, function (_c) {
150
+ switch (_c.label) {
143
151
  case 0:
144
152
  queryParameters = {};
145
153
  headerParameters = {};
146
- if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
154
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
155
+ _a = headerParameters;
156
+ _b = "apikey";
157
+ return [4 /*yield*/, this.configuration.apiKey("apikey")];
158
+ case 1:
159
+ _a[_b] = _c.sent(); // api_key authentication
160
+ _c.label = 2;
161
+ case 2:
162
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
147
163
  token = this.configuration.accessToken;
148
164
  return [4 /*yield*/, token("bearer", [])];
149
- case 1:
150
- tokenString = _a.sent();
165
+ case 3:
166
+ tokenString = _c.sent();
151
167
  if (tokenString) {
152
168
  headerParameters["Authorization"] = "Bearer ".concat(tokenString);
153
169
  }
154
- _a.label = 2;
155
- case 2: return [4 /*yield*/, this.request({
170
+ _c.label = 4;
171
+ case 4: return [4 /*yield*/, this.request({
156
172
  path: "/private/challenges/reward-usages",
157
173
  method: 'GET',
158
174
  headers: headerParameters,
159
175
  query: queryParameters,
160
176
  }, initOverrides)];
161
- case 3:
162
- response = _a.sent();
177
+ case 5:
178
+ response = _c.sent();
163
179
  return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.GetAccountChallengeRewardUsagesListDtoFromJSON)(jsonValue); })];
164
180
  }
165
181
  });
166
182
  });
167
183
  };
168
184
  /**
169
- * Returns the list of challenge reward usages for the current seller account.
185
+ * Returns the list of challenge reward usages for the current seller account. **API key scope required:** `CHALLENGES_READ`. Requests authenticated with a seller session do not need any scope.
170
186
  * Get challenge reward usages
171
187
  */
172
188
  ChallengesApi.prototype.getAccountChallengeRewardUsages = function (initOverrides) {
@@ -184,41 +200,49 @@ var ChallengesApi = /** @class */ (function (_super) {
184
200
  });
185
201
  };
186
202
  /**
187
- * Lists active challenges for the seller account.
203
+ * Lists active challenges for the seller account. **API key scope required:** `CHALLENGES_READ`. Requests authenticated with a seller session do not need any scope.
188
204
  * Get seller challenges
189
205
  */
190
206
  ChallengesApi.prototype.getChallengesRaw = function (initOverrides) {
191
207
  return __awaiter(this, void 0, void 0, function () {
192
- var queryParameters, headerParameters, token, tokenString, response;
193
- return __generator(this, function (_a) {
194
- switch (_a.label) {
208
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response;
209
+ return __generator(this, function (_c) {
210
+ switch (_c.label) {
195
211
  case 0:
196
212
  queryParameters = {};
197
213
  headerParameters = {};
198
- if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
214
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
215
+ _a = headerParameters;
216
+ _b = "apikey";
217
+ return [4 /*yield*/, this.configuration.apiKey("apikey")];
218
+ case 1:
219
+ _a[_b] = _c.sent(); // api_key authentication
220
+ _c.label = 2;
221
+ case 2:
222
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
199
223
  token = this.configuration.accessToken;
200
224
  return [4 /*yield*/, token("bearer", [])];
201
- case 1:
202
- tokenString = _a.sent();
225
+ case 3:
226
+ tokenString = _c.sent();
203
227
  if (tokenString) {
204
228
  headerParameters["Authorization"] = "Bearer ".concat(tokenString);
205
229
  }
206
- _a.label = 2;
207
- case 2: return [4 /*yield*/, this.request({
230
+ _c.label = 4;
231
+ case 4: return [4 /*yield*/, this.request({
208
232
  path: "/private/challenges",
209
233
  method: 'GET',
210
234
  headers: headerParameters,
211
235
  query: queryParameters,
212
236
  }, initOverrides)];
213
- case 3:
214
- response = _a.sent();
237
+ case 5:
238
+ response = _c.sent();
215
239
  return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.GetSellerChallengesListDtoFromJSON)(jsonValue); })];
216
240
  }
217
241
  });
218
242
  });
219
243
  };
220
244
  /**
221
- * Lists active challenges for the seller account.
245
+ * Lists active challenges for the seller account. **API key scope required:** `CHALLENGES_READ`. Requests authenticated with a seller session do not need any scope.
222
246
  * Get seller challenges
223
247
  */
224
248
  ChallengesApi.prototype.getChallenges = function (initOverrides) {
@@ -16,12 +16,12 @@ import type { DomainTransferTldInformationDto } from '../models/index';
16
16
  */
17
17
  export declare class DomainTransfersApi extends runtime.BaseAPI {
18
18
  /**
19
- * Returns TLD-specific transfer requirements and information for the current seller account.
19
+ * Returns TLD-specific transfer requirements and information for the current seller account. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
20
20
  * Get domain transfer TLD information
21
21
  */
22
22
  getDomainTransferTldsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DomainTransferTldInformationDto>>;
23
23
  /**
24
- * Returns TLD-specific transfer requirements and information for the current seller account.
24
+ * Returns TLD-specific transfer requirements and information for the current seller account. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
25
25
  * Get domain transfer TLD information
26
26
  */
27
27
  getDomainTransferTlds(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DomainTransferTldInformationDto>;
@@ -76,41 +76,49 @@ var DomainTransfersApi = /** @class */ (function (_super) {
76
76
  return _super !== null && _super.apply(this, arguments) || this;
77
77
  }
78
78
  /**
79
- * Returns TLD-specific transfer requirements and information for the current seller account.
79
+ * Returns TLD-specific transfer requirements and information for the current seller account. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
80
80
  * Get domain transfer TLD information
81
81
  */
82
82
  DomainTransfersApi.prototype.getDomainTransferTldsRaw = function (initOverrides) {
83
83
  return __awaiter(this, void 0, void 0, function () {
84
- var queryParameters, headerParameters, token, tokenString, response;
85
- return __generator(this, function (_a) {
86
- switch (_a.label) {
84
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response;
85
+ return __generator(this, function (_c) {
86
+ switch (_c.label) {
87
87
  case 0:
88
88
  queryParameters = {};
89
89
  headerParameters = {};
90
- if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
90
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
91
+ _a = headerParameters;
92
+ _b = "apikey";
93
+ return [4 /*yield*/, this.configuration.apiKey("apikey")];
94
+ case 1:
95
+ _a[_b] = _c.sent(); // api_key authentication
96
+ _c.label = 2;
97
+ case 2:
98
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
91
99
  token = this.configuration.accessToken;
92
100
  return [4 /*yield*/, token("bearer", [])];
93
- case 1:
94
- tokenString = _a.sent();
101
+ case 3:
102
+ tokenString = _c.sent();
95
103
  if (tokenString) {
96
104
  headerParameters["Authorization"] = "Bearer ".concat(tokenString);
97
105
  }
98
- _a.label = 2;
99
- case 2: return [4 /*yield*/, this.request({
106
+ _c.label = 4;
107
+ case 4: return [4 /*yield*/, this.request({
100
108
  path: "/private/domain-transfers/tlds",
101
109
  method: 'GET',
102
110
  headers: headerParameters,
103
111
  query: queryParameters,
104
112
  }, initOverrides)];
105
- case 3:
106
- response = _a.sent();
113
+ case 5:
114
+ response = _c.sent();
107
115
  return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.DomainTransferTldInformationDtoFromJSON)(jsonValue); })];
108
116
  }
109
117
  });
110
118
  });
111
119
  };
112
120
  /**
113
- * Returns TLD-specific transfer requirements and information for the current seller account.
121
+ * Returns TLD-specific transfer requirements and information for the current seller account. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
114
122
  * Get domain transfer TLD information
115
123
  */
116
124
  DomainTransfersApi.prototype.getDomainTransferTlds = function (initOverrides) {
@@ -100,222 +100,222 @@ export interface DomainsApiUpdateDomainTransferIpsTagRequest {
100
100
  */
101
101
  export declare class DomainsApi extends runtime.BaseAPI {
102
102
  /**
103
- * Imports domains from an uploaded file or a list of domain names and queues them for processing.
103
+ * Imports domains from an uploaded file or a list of domain names and queues them for processing. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
104
104
  * Import domains
105
105
  */
106
106
  batchImportRaw(requestParameters: DomainsApiBatchImportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
107
107
  /**
108
- * Imports domains from an uploaded file or a list of domain names and queues them for processing.
108
+ * Imports domains from an uploaded file or a list of domain names and queues them for processing. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
109
109
  * Import domains
110
110
  */
111
111
  batchImport(requestParameters?: DomainsApiBatchImportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
112
112
  /**
113
- * Uploads a domain import file and returns a preview of parsed domains before import.
113
+ * Uploads a domain import file and returns a preview of parsed domains before import. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
114
114
  * Preview domain import
115
115
  */
116
116
  batchImportPreviewRaw(requestParameters: DomainsApiBatchImportPreviewRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BatchImportPreviewDto>>;
117
117
  /**
118
- * Uploads a domain import file and returns a preview of parsed domains before import.
118
+ * Uploads a domain import file and returns a preview of parsed domains before import. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
119
119
  * Preview domain import
120
120
  */
121
121
  batchImportPreview(requestParameters?: DomainsApiBatchImportPreviewRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BatchImportPreviewDto>;
122
122
  /**
123
- * Applies the same settings update to multiple domains by ID.
123
+ * Applies the same settings update to multiple domains by ID. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
124
124
  * Batch update domains
125
125
  */
126
126
  batchUpdateRaw(requestParameters: DomainsApiBatchUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
127
127
  /**
128
- * Applies the same settings update to multiple domains by ID.
128
+ * Applies the same settings update to multiple domains by ID. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
129
129
  * Batch update domains
130
130
  */
131
131
  batchUpdate(requestParameters: DomainsApiBatchUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
132
132
  /**
133
- * Applies pricing and configuration updates to all domains matching the provided filter criteria.
133
+ * Applies pricing and configuration updates to all domains matching the provided filter criteria. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
134
134
  * Bulk update domains with filters
135
135
  */
136
136
  bulkUpdateDomainsWithFiltersRaw(requestParameters: DomainsApiBulkUpdateDomainsWithFiltersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
137
137
  /**
138
- * Applies pricing and configuration updates to all domains matching the provided filter criteria.
138
+ * Applies pricing and configuration updates to all domains matching the provided filter criteria. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
139
139
  * Bulk update domains with filters
140
140
  */
141
141
  bulkUpdateDomainsWithFilters(requestParameters: DomainsApiBulkUpdateDomainsWithFiltersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
142
142
  /**
143
- * Starts a nameserver verification check for a single domain.
143
+ * Starts a nameserver verification check for a single domain. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
144
144
  * Check domain nameservers
145
145
  */
146
146
  checkDnsRaw(requestParameters: DomainsApiCheckDnsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
147
147
  /**
148
- * Starts a nameserver verification check for a single domain.
148
+ * Starts a nameserver verification check for a single domain. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
149
149
  * Check domain nameservers
150
150
  */
151
151
  checkDns(requestParameters: DomainsApiCheckDnsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
152
152
  /**
153
- * Starts a nameserver verification check for the specified domain IDs.
153
+ * Starts a nameserver verification check for the specified domain IDs. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
154
154
  * Check nameservers for multiple domains
155
155
  */
156
156
  checkDnsBatchRaw(requestParameters: DomainsApiCheckDnsBatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
157
157
  /**
158
- * Starts a nameserver verification check for the specified domain IDs.
158
+ * Starts a nameserver verification check for the specified domain IDs. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
159
159
  * Check nameservers for multiple domains
160
160
  */
161
161
  checkDnsBatch(requestParameters: DomainsApiCheckDnsBatchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
162
162
  /**
163
- * Checks and updates the verification status of a domain owned by the seller.
163
+ * Checks and updates the verification status of a domain owned by the seller. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
164
164
  * Check domain verification
165
165
  */
166
166
  checkDomainVerificationRaw(requestParameters: DomainsApiCheckDomainVerificationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DomainVerificationStatusDto>>;
167
167
  /**
168
- * Checks and updates the verification status of a domain owned by the seller.
168
+ * Checks and updates the verification status of a domain owned by the seller. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
169
169
  * Check domain verification
170
170
  */
171
171
  checkDomainVerification(requestParameters: DomainsApiCheckDomainVerificationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DomainVerificationStatusDto>;
172
172
  /**
173
- * Deletes multiple domains by ID. Domains with open leads or active auctions cannot be deleted.
173
+ * Deletes multiple domains by ID. Domains with open leads or active auctions cannot be deleted. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
174
174
  * Delete domains
175
175
  */
176
176
  deleteDomainsRaw(requestParameters: DomainsApiDeleteDomainsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
177
177
  /**
178
- * Deletes multiple domains by ID. Domains with open leads or active auctions cannot be deleted.
178
+ * Deletes multiple domains by ID. Domains with open leads or active auctions cannot be deleted. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
179
179
  * Delete domains
180
180
  */
181
181
  deleteDomains(requestParameters: DomainsApiDeleteDomainsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
182
182
  /**
183
- * Queues an export of all domains for the current seller account.
183
+ * Queues an export of all domains for the current seller account. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
184
184
  * Export domains
185
185
  */
186
186
  exportDomainsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
187
187
  /**
188
- * Queues an export of all domains for the current seller account.
188
+ * Queues an export of all domains for the current seller account. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
189
189
  * Export domains
190
190
  */
191
191
  exportDomains(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
192
192
  /**
193
- * Returns the affiliate commission information for a domain owned by the seller.
193
+ * Returns the affiliate commission information for a domain owned by the seller. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
194
194
  * Get domain affiliate commission
195
195
  */
196
196
  getAffiliateCommissionRaw(requestParameters: DomainsApiGetAffiliateCommissionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SellerDomainAffiliateCommissionDto>>;
197
197
  /**
198
- * Returns the affiliate commission information for a domain owned by the seller.
198
+ * Returns the affiliate commission information for a domain owned by the seller. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
199
199
  * Get domain affiliate commission
200
200
  */
201
201
  getAffiliateCommission(requestParameters: DomainsApiGetAffiliateCommissionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SellerDomainAffiliateCommissionDto>;
202
202
  /**
203
- * Lists domain transfers for the seller account.
203
+ * Lists domain transfers for the seller account. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
204
204
  * List domain transfers
205
205
  */
206
206
  getAllDomainTransfersRaw(requestParameters: DomainsApiGetAllDomainTransfersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetAllDomainTransfers200Response>>;
207
207
  /**
208
- * Lists domain transfers for the seller account.
208
+ * Lists domain transfers for the seller account. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
209
209
  * List domain transfers
210
210
  */
211
211
  getAllDomainTransfers(requestParameters?: DomainsApiGetAllDomainTransfersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAllDomainTransfers200Response>;
212
212
  /**
213
- * Returns domain information.
213
+ * Returns domain information. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
214
214
  * Get domain
215
215
  */
216
216
  getDomainRaw(requestParameters: DomainsApiGetDomainRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IntersectionDomainDtoWithHijackerDtoWithAccountDto>>;
217
217
  /**
218
- * Returns domain information.
218
+ * Returns domain information. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
219
219
  * Get domain
220
220
  */
221
221
  getDomain(requestParameters: DomainsApiGetDomainRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IntersectionDomainDtoWithHijackerDtoWithAccountDto>;
222
222
  /**
223
- * Returns the currency exchange rate applicable to the specified domain.
223
+ * Returns the currency exchange rate applicable to the specified domain. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
224
224
  * Get domain exchange rate
225
225
  */
226
226
  getDomainExchangeRateRaw(requestParameters: DomainsApiGetDomainExchangeRateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DomainExchangeRateDto>>;
227
227
  /**
228
- * Returns the currency exchange rate applicable to the specified domain.
228
+ * Returns the currency exchange rate applicable to the specified domain. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
229
229
  * Get domain exchange rate
230
230
  */
231
231
  getDomainExchangeRate(requestParameters: DomainsApiGetDomainExchangeRateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DomainExchangeRateDto>;
232
232
  /**
233
- * Returns available filter options for the seller domain inventory.
233
+ * Returns available filter options for the seller domain inventory. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
234
234
  * Get domain filters
235
235
  */
236
236
  getDomainFiltersRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DomainFiltersDto>>;
237
237
  /**
238
- * Returns available filter options for the seller domain inventory.
238
+ * Returns available filter options for the seller domain inventory. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
239
239
  * Get domain filters
240
240
  */
241
241
  getDomainFilters(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DomainFiltersDto>;
242
242
  /**
243
- * Returns the list of currencies available for the current domain filter selection.
243
+ * Returns the list of currencies available for the current domain filter selection. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
244
244
  * Get domain filter currencies
245
245
  */
246
246
  getDomainFiltersCurrenciesRaw(requestParameters: DomainsApiGetDomainFiltersCurrenciesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<string>>>;
247
247
  /**
248
- * Returns the list of currencies available for the current domain filter selection.
248
+ * Returns the list of currencies available for the current domain filter selection. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
249
249
  * Get domain filter currencies
250
250
  */
251
251
  getDomainFiltersCurrencies(requestParameters?: DomainsApiGetDomainFiltersCurrenciesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<string>>;
252
252
  /**
253
- * Returns domain transfer information.
253
+ * Returns domain transfer information. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
254
254
  * Get domain transfer
255
255
  */
256
256
  getDomainTransferRaw(requestParameters: DomainsApiGetDomainTransferRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SellerDomainTransferDto>>;
257
257
  /**
258
- * Returns domain transfer information.
258
+ * Returns domain transfer information. **API key scope required:** `TRANSFERS_READ`. Requests authenticated with a seller session do not need any scope.
259
259
  * Get domain transfer
260
260
  */
261
261
  getDomainTransfer(requestParameters: DomainsApiGetDomainTransferRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SellerDomainTransferDto>;
262
262
  /**
263
- * Returns the public landing page URL for the specified domain.
263
+ * Returns the public landing page URL for the specified domain. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
264
264
  * Get domain URL
265
265
  */
266
266
  getDomainUrlRaw(requestParameters: DomainsApiGetDomainUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DomainUrlDto>>;
267
267
  /**
268
- * Returns the public landing page URL for the specified domain.
268
+ * Returns the public landing page URL for the specified domain. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
269
269
  * Get domain URL
270
270
  */
271
271
  getDomainUrl(requestParameters: DomainsApiGetDomainUrlRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DomainUrlDto>;
272
272
  /**
273
- * Lists domains for the seller account.
273
+ * Lists domains for the seller account. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
274
274
  * List domains
275
275
  */
276
276
  listRaw(requestParameters: DomainsApiListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<List200Response2>>;
277
277
  /**
278
- * Lists domains for the seller account.
278
+ * Lists domains for the seller account. **API key scope required:** `DOMAINS_READ`. Requests authenticated with a seller session do not need any scope.
279
279
  * List domains
280
280
  */
281
281
  list(requestParameters?: DomainsApiListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<List200Response2>;
282
282
  /**
283
- * Creates and starts an auction for the specified verified domain.
283
+ * Creates and starts an auction for the specified verified domain. **API key scope required:** `AUCTIONS_WRITE`. Requests authenticated with a seller session do not need any scope.
284
284
  * Start domain auction
285
285
  */
286
286
  startAuctionRaw(requestParameters: DomainsApiStartAuctionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
287
287
  /**
288
- * Creates and starts an auction for the specified verified domain.
288
+ * Creates and starts an auction for the specified verified domain. **API key scope required:** `AUCTIONS_WRITE`. Requests authenticated with a seller session do not need any scope.
289
289
  * Start domain auction
290
290
  */
291
291
  startAuction(requestParameters: DomainsApiStartAuctionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
292
292
  /**
293
- * Updates pricing, landing page, and other settings for a single domain.
293
+ * Updates pricing, landing page, and other settings for a single domain. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
294
294
  * Update domain
295
295
  */
296
296
  updateRaw(requestParameters: DomainsApiUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
297
297
  /**
298
- * Updates pricing, landing page, and other settings for a single domain.
298
+ * Updates pricing, landing page, and other settings for a single domain. **API key scope required:** `DOMAINS_WRITE`. Requests authenticated with a seller session do not need any scope.
299
299
  * Update domain
300
300
  */
301
301
  update(requestParameters: DomainsApiUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
302
302
  /**
303
- * Updates the authorization code for a domain transfer in progress.
303
+ * Updates the authorization code for a domain transfer in progress. **API key scope required:** `TRANSFERS_WRITE`. Requests authenticated with a seller session do not need any scope.
304
304
  * Update domain transfer auth code
305
305
  */
306
306
  updateDomainTransferAuthCodeRaw(requestParameters: DomainsApiUpdateDomainTransferAuthCodeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
307
307
  /**
308
- * Updates the authorization code for a domain transfer in progress.
308
+ * Updates the authorization code for a domain transfer in progress. **API key scope required:** `TRANSFERS_WRITE`. Requests authenticated with a seller session do not need any scope.
309
309
  * Update domain transfer auth code
310
310
  */
311
311
  updateDomainTransferAuthCode(requestParameters: DomainsApiUpdateDomainTransferAuthCodeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
312
312
  /**
313
- * Updates the IPS tag for a .uk domain transfer in progress.
313
+ * Updates the IPS tag for a .uk domain transfer in progress. **API key scope required:** `TRANSFERS_WRITE`. Requests authenticated with a seller session do not need any scope.
314
314
  * Update domain transfer IPS tag
315
315
  */
316
316
  updateDomainTransferIpsTagRaw(requestParameters: DomainsApiUpdateDomainTransferIpsTagRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
317
317
  /**
318
- * Updates the IPS tag for a .uk domain transfer in progress.
318
+ * Updates the IPS tag for a .uk domain transfer in progress. **API key scope required:** `TRANSFERS_WRITE`. Requests authenticated with a seller session do not need any scope.
319
319
  * Update domain transfer IPS tag
320
320
  */
321
321
  updateDomainTransferIpsTag(requestParameters: DomainsApiUpdateDomainTransferIpsTagRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;