@randock/nameshift-api-client 0.0.383 → 0.0.385
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 +16 -0
- package/README.md +3 -3
- package/dist/apis/AdminApi.d.ts +80 -1
- package/dist/apis/AdminApi.js +382 -0
- package/dist/apis/ChallengesApi.d.ts +46 -0
- package/dist/apis/ChallengesApi.js +234 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/AccountChallengeRewardUsageListItemDto.d.ts +63 -0
- package/dist/models/AccountChallengeRewardUsageListItemDto.js +72 -0
- package/dist/models/AccountChallengeRewardUsageListItemDtoMetadata.d.ts +32 -0
- package/dist/models/AccountChallengeRewardUsageListItemDtoMetadata.js +49 -0
- package/dist/models/AccountDto.d.ts +7 -0
- package/dist/models/AccountDto.js +5 -0
- package/dist/models/AccountMetricsDto.d.ts +6 -0
- package/dist/models/AccountMetricsDto.js +4 -0
- package/dist/models/AdminChallengeListDto.d.ts +33 -0
- package/dist/models/AdminChallengeListDto.js +52 -0
- package/dist/models/AdminChallengeListItemDto.d.ts +125 -0
- package/dist/models/AdminChallengeListItemDto.js +125 -0
- package/dist/models/AdminListAccountDto.d.ts +7 -0
- package/dist/models/AdminListAccountDto.js +5 -0
- package/dist/models/ChallengeRewardBalanceDto.d.ts +38 -0
- package/dist/models/ChallengeRewardBalanceDto.js +55 -0
- package/dist/models/CreateChallengeInput.d.ts +67 -0
- package/dist/models/CreateChallengeInput.js +80 -0
- package/dist/models/FeatureFlagListItemDto.d.ts +93 -0
- package/dist/models/FeatureFlagListItemDto.js +100 -0
- package/dist/models/GetAccountChallengeRewardUsagesListDto.d.ts +33 -0
- package/dist/models/GetAccountChallengeRewardUsagesListDto.js +52 -0
- package/dist/models/GetAllFeatureFlags200Response.d.ts +47 -0
- package/dist/models/GetAllFeatureFlags200Response.js +62 -0
- package/dist/models/GetSellerChallengesListDto.d.ts +33 -0
- package/dist/models/GetSellerChallengesListDto.js +52 -0
- package/dist/models/GetSellerChallengesListDtoChallengesInner.d.ts +27 -0
- package/dist/models/GetSellerChallengesListDtoChallengesInner.js +54 -0
- package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.d.ts +9 -0
- package/dist/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.js +8 -1
- package/dist/models/ListAccountMetricsDto.d.ts +6 -0
- package/dist/models/ListAccountMetricsDto.js +4 -0
- package/dist/models/PrivateAccountGetMeResponse.d.ts +9 -0
- package/dist/models/PrivateAccountGetMeResponse.js +8 -1
- package/dist/models/SellerScaleChallengeListItemDto.d.ts +148 -0
- package/dist/models/SellerScaleChallengeListItemDto.js +142 -0
- package/dist/models/SellerTargetChallengeListItemDto.d.ts +154 -0
- package/dist/models/SellerTargetChallengeListItemDto.js +146 -0
- package/dist/models/UpdateChallengeInput.d.ts +44 -0
- package/dist/models/UpdateChallengeInput.js +53 -0
- package/dist/models/UpdateFeatureFlagInput.d.ts +44 -0
- package/dist/models/UpdateFeatureFlagInput.js +53 -0
- package/dist/models/index.d.ts +15 -0
- package/dist/models/index.js +15 -0
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +358 -0
- package/src/apis/ChallengesApi.ts +156 -0
- package/src/apis/index.ts +1 -0
- package/src/models/AccountChallengeRewardUsageListItemDto.ts +119 -0
- package/src/models/AccountChallengeRewardUsageListItemDtoMetadata.ts +65 -0
- package/src/models/AccountDto.ts +16 -0
- package/src/models/AccountMetricsDto.ts +9 -0
- package/src/models/AdminChallengeListDto.ts +74 -0
- package/src/models/AdminChallengeListItemDto.ts +185 -0
- package/src/models/AdminListAccountDto.ts +16 -0
- package/src/models/ChallengeRewardBalanceDto.ts +75 -0
- package/src/models/CreateChallengeInput.ts +109 -0
- package/src/models/FeatureFlagListItemDto.ts +148 -0
- package/src/models/GetAccountChallengeRewardUsagesListDto.ts +74 -0
- package/src/models/GetAllFeatureFlags200Response.ts +106 -0
- package/src/models/GetSellerChallengesListDto.ts +74 -0
- package/src/models/GetSellerChallengesListDtoChallengesInner.ts +73 -0
- package/src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts +19 -1
- package/src/models/ListAccountMetricsDto.ts +9 -0
- package/src/models/PrivateAccountGetMeResponse.ts +19 -1
- package/src/models/SellerScaleChallengeListItemDto.ts +221 -0
- package/src/models/SellerTargetChallengeListItemDto.ts +230 -0
- package/src/models/UpdateChallengeInput.ts +81 -0
- package/src/models/UpdateFeatureFlagInput.ts +81 -0
- package/src/models/index.ts +15 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -11,6 +11,7 @@ src/apis/AuctionsPublicApi.ts
|
|
|
11
11
|
src/apis/BankAccountsApi.ts
|
|
12
12
|
src/apis/BuyersApi.ts
|
|
13
13
|
src/apis/BuyersPublicApi.ts
|
|
14
|
+
src/apis/ChallengesApi.ts
|
|
14
15
|
src/apis/DomainTransfersApi.ts
|
|
15
16
|
src/apis/DomainsApi.ts
|
|
16
17
|
src/apis/DomainsPublicApi.ts
|
|
@@ -37,6 +38,8 @@ src/models/AccountAliasDto.ts
|
|
|
37
38
|
src/models/AccountAliasInput.ts
|
|
38
39
|
src/models/AccountBankAccountDto.ts
|
|
39
40
|
src/models/AccountBankAccountDtoDetails.ts
|
|
41
|
+
src/models/AccountChallengeRewardUsageListItemDto.ts
|
|
42
|
+
src/models/AccountChallengeRewardUsageListItemDtoMetadata.ts
|
|
40
43
|
src/models/AccountCommissionByDateRangeDto.ts
|
|
41
44
|
src/models/AccountCountryStatsDto.ts
|
|
42
45
|
src/models/AccountDto.ts
|
|
@@ -77,6 +80,8 @@ src/models/AdminAuctionCommissionByDateRangeInput.ts
|
|
|
77
80
|
src/models/AdminAuctionConfigurationInput.ts
|
|
78
81
|
src/models/AdminBankAccountDto.ts
|
|
79
82
|
src/models/AdminBuyerLoginDto.ts
|
|
83
|
+
src/models/AdminChallengeListDto.ts
|
|
84
|
+
src/models/AdminChallengeListItemDto.ts
|
|
80
85
|
src/models/AdminCompanyStatsDto.ts
|
|
81
86
|
src/models/AdminCompanyStatsLedger.ts
|
|
82
87
|
src/models/AdminDashboardStatsDto.ts
|
|
@@ -147,6 +152,7 @@ src/models/BuyerSubscriptionListItemDto.ts
|
|
|
147
152
|
src/models/BuyerSubscriptionListItemDtoDomainInformation.ts
|
|
148
153
|
src/models/BuyerTaskDetailsDto.ts
|
|
149
154
|
src/models/CaBankAccountDetails.ts
|
|
155
|
+
src/models/ChallengeRewardBalanceDto.ts
|
|
150
156
|
src/models/ChangeOrderStatusInput.ts
|
|
151
157
|
src/models/ChangeSubscriptionStatusInput.ts
|
|
152
158
|
src/models/ChartDataPoint.ts
|
|
@@ -176,6 +182,7 @@ src/models/CreateAccountPaymentInput.ts
|
|
|
176
182
|
src/models/CreateAccountPaymentManualTransactionInput.ts
|
|
177
183
|
src/models/CreateBankAccountInput.ts
|
|
178
184
|
src/models/CreateBuyerLeadMessageInput.ts
|
|
185
|
+
src/models/CreateChallengeInput.ts
|
|
179
186
|
src/models/CreateLeadInput.ts
|
|
180
187
|
src/models/CreateLeadMessageInput.ts
|
|
181
188
|
src/models/CreateManualLeadInput.ts
|
|
@@ -226,15 +233,18 @@ src/models/DomainTransferWorkflowDto.ts
|
|
|
226
233
|
src/models/DomainUrlDto.ts
|
|
227
234
|
src/models/DomainVerificationStatusDto.ts
|
|
228
235
|
src/models/EppBatchUpdateInput.ts
|
|
236
|
+
src/models/FeatureFlagListItemDto.ts
|
|
229
237
|
src/models/FixedCommissionPayloadDto.ts
|
|
230
238
|
src/models/FixedCommissionPayloadInput.ts
|
|
231
239
|
src/models/FixedCommissionReasonPayloadDto.ts
|
|
232
240
|
src/models/ForgotPasswordRequestInput.ts
|
|
241
|
+
src/models/GetAccountChallengeRewardUsagesListDto.ts
|
|
233
242
|
src/models/GetAccountNameshiftCommissionsResponseDto.ts
|
|
234
243
|
src/models/GetAllAffiliateCommissions200Response.ts
|
|
235
244
|
src/models/GetAllAuctions200Response.ts
|
|
236
245
|
src/models/GetAllAuctions200Response1.ts
|
|
237
246
|
src/models/GetAllDomainTransfers200Response.ts
|
|
247
|
+
src/models/GetAllFeatureFlags200Response.ts
|
|
238
248
|
src/models/GetAllInvoices200Response.ts
|
|
239
249
|
src/models/GetAllOrders200Response.ts
|
|
240
250
|
src/models/GetAllOwnedDomains200Response.ts
|
|
@@ -247,6 +257,8 @@ src/models/GetBuyerLeads200Response.ts
|
|
|
247
257
|
src/models/GetBuyerSubscriptions200Response.ts
|
|
248
258
|
src/models/GetBuyerTransfers200Response.ts
|
|
249
259
|
src/models/GetInvoices200Response.ts
|
|
260
|
+
src/models/GetSellerChallengesListDto.ts
|
|
261
|
+
src/models/GetSellerChallengesListDtoChallengesInner.ts
|
|
250
262
|
src/models/HistoricalMetrics.ts
|
|
251
263
|
src/models/HttpException.ts
|
|
252
264
|
src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts
|
|
@@ -390,10 +402,12 @@ src/models/SellerLeadDetails.ts
|
|
|
390
402
|
src/models/SellerPendingPayoutsByCurrencyStatsItemDto.ts
|
|
391
403
|
src/models/SellerRemainingAndTotalLeaseToOwnByCurrencyStatsItemDto.ts
|
|
392
404
|
src/models/SellerSalesCountStatsItemDto.ts
|
|
405
|
+
src/models/SellerScaleChallengeListItemDto.ts
|
|
393
406
|
src/models/SellerSecurityUserAccountDto.ts
|
|
394
407
|
src/models/SellerSecurityUserDto.ts
|
|
395
408
|
src/models/SellerSubscriptionListItemDto.ts
|
|
396
409
|
src/models/SellerSubscriptionListItemDtoDomainInformation.ts
|
|
410
|
+
src/models/SellerTargetChallengeListItemDto.ts
|
|
397
411
|
src/models/SellerTotalEarningsByCurrencyOverTimeStatsItemDto.ts
|
|
398
412
|
src/models/SellerTotalEarningsByCurrencyStatsItemDto.ts
|
|
399
413
|
src/models/SellerTotalRentMonthlyIncomeByCurrencyStatsItemDto.ts
|
|
@@ -441,9 +455,11 @@ src/models/UpdateAccountBillingInformationInput.ts
|
|
|
441
455
|
src/models/UpdateAuctionMuteStatusInput.ts
|
|
442
456
|
src/models/UpdateBuyerDomainTransferIpsTagInputDto.ts
|
|
443
457
|
src/models/UpdateBuyerNotificationSettingsInput.ts
|
|
458
|
+
src/models/UpdateChallengeInput.ts
|
|
444
459
|
src/models/UpdateDomainInput.ts
|
|
445
460
|
src/models/UpdateDomainTransferAuthCodeInput.ts
|
|
446
461
|
src/models/UpdateDomainTransferIpsTagInput.ts
|
|
462
|
+
src/models/UpdateFeatureFlagInput.ts
|
|
447
463
|
src/models/UpdateLeadInput.ts
|
|
448
464
|
src/models/UpdateLeadMuteStatusForBuyerInput.ts
|
|
449
465
|
src/models/UpdateLeadMuteStatusInput.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.385
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @randock/nameshift-api-client@0.0.
|
|
39
|
+
npm install @randock/nameshift-api-client@0.0.385 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
|
|
|
44
44
|
```
|
|
45
45
|
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
a8b83b577ecbfe74123991b67e9a91ec3d56e613b072734726b4c01bdec6ab6e5766daf024cedc8470eceb6180c44475
|
package/dist/apis/AdminApi.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { AccountNameshiftCommissionByTypeDto, AccountPaymentMethodProfileDto, AccountSettingsDto, AdminAccountLoginDto, AdminAccountSettingsInput, AdminBuyerLoginDto, AdminCompanyStatsDto, AdminDashboardStatsDto, AdminGetAllDomainTransfers200Response, BulkCommissionActionsInput, ChangeOrderStatusInput, ChangeSubscriptionStatusInput, CommissionListDto, DomainLockDto, DomainTransferDetailsDto, GetAllAuctions200Response, GetAllInvoices200Response, GetAllOrders200Response, GetAllOwnedDomains200Response, GetAllSubscriptions200Response, IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto, LeadMessageDto, LedgerMutationsDto, ListAccounts200Response, ListBankAccounts200Response, ListDomains200Response, ObjectId, SellerSalesCountStatsItemDto, SendAdminLeadAiPriceNegotiatorAgentChatMessageInput, SubscriptionDetailsDto } from '../models/index';
|
|
13
|
+
import type { AccountNameshiftCommissionByTypeDto, AccountPaymentMethodProfileDto, AccountSettingsDto, AdminAccountLoginDto, AdminAccountSettingsInput, AdminBuyerLoginDto, AdminChallengeListDto, AdminCompanyStatsDto, AdminDashboardStatsDto, AdminGetAllDomainTransfers200Response, BulkCommissionActionsInput, ChangeOrderStatusInput, ChangeSubscriptionStatusInput, CommissionListDto, CreateChallengeInput, DomainLockDto, DomainTransferDetailsDto, GetAccountChallengeRewardUsagesListDto, GetAllAuctions200Response, GetAllFeatureFlags200Response, GetAllInvoices200Response, GetAllOrders200Response, GetAllOwnedDomains200Response, GetAllSubscriptions200Response, IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto, LeadMessageDto, LedgerMutationsDto, ListAccounts200Response, ListBankAccounts200Response, ListDomains200Response, ObjectId, SellerSalesCountStatsItemDto, SendAdminLeadAiPriceNegotiatorAgentChatMessageInput, SubscriptionDetailsDto, UpdateChallengeInput, UpdateFeatureFlagInput } from '../models/index';
|
|
14
14
|
export interface AdminApiAdminGetAllDomainTransfersRequest {
|
|
15
15
|
filter?: object;
|
|
16
16
|
page?: number;
|
|
@@ -28,12 +28,21 @@ export interface AdminApiChangeSubscriptionStatusRequest {
|
|
|
28
28
|
subscriptionId: string;
|
|
29
29
|
changeSubscriptionStatusInput: ChangeSubscriptionStatusInput;
|
|
30
30
|
}
|
|
31
|
+
export interface AdminApiCreateChallengeRequest {
|
|
32
|
+
createChallengeInput: CreateChallengeInput;
|
|
33
|
+
}
|
|
31
34
|
export interface AdminApiCreateNegativeInvoiceRequest {
|
|
32
35
|
invoiceId: string;
|
|
33
36
|
}
|
|
37
|
+
export interface AdminApiDeleteChallengeRequest {
|
|
38
|
+
id: string;
|
|
39
|
+
}
|
|
34
40
|
export interface AdminApiDownloadInvoiceRequest {
|
|
35
41
|
invoiceId: string;
|
|
36
42
|
}
|
|
43
|
+
export interface AdminApiGetAccountChallengeRewardUsagesByAccountIdRequest {
|
|
44
|
+
accountId: string;
|
|
45
|
+
}
|
|
37
46
|
export interface AdminApiGetAccountMeRequest {
|
|
38
47
|
accountId: string;
|
|
39
48
|
}
|
|
@@ -61,6 +70,12 @@ export interface AdminApiGetAllAuctionsRequest {
|
|
|
61
70
|
limit?: number;
|
|
62
71
|
sortBy?: Array<string>;
|
|
63
72
|
}
|
|
73
|
+
export interface AdminApiGetAllFeatureFlagsRequest {
|
|
74
|
+
filter?: object;
|
|
75
|
+
page?: number;
|
|
76
|
+
limit?: number;
|
|
77
|
+
sortBy?: Array<string>;
|
|
78
|
+
}
|
|
64
79
|
export interface AdminApiGetAllInvoicesRequest {
|
|
65
80
|
filter?: object;
|
|
66
81
|
page?: number;
|
|
@@ -159,6 +174,14 @@ export interface AdminApiUpdateAccountSettingsRequest {
|
|
|
159
174
|
accountId: string;
|
|
160
175
|
adminAccountSettingsInput: AdminAccountSettingsInput;
|
|
161
176
|
}
|
|
177
|
+
export interface AdminApiUpdateChallengeRequest {
|
|
178
|
+
id: string;
|
|
179
|
+
updateChallengeInput: UpdateChallengeInput;
|
|
180
|
+
}
|
|
181
|
+
export interface AdminApiUpdateFeatureFlagRequest {
|
|
182
|
+
featureFlagId: string;
|
|
183
|
+
updateFeatureFlagInput: UpdateFeatureFlagInput;
|
|
184
|
+
}
|
|
162
185
|
export interface AdminApiVerifyAccountAliasRequest {
|
|
163
186
|
accountId: string;
|
|
164
187
|
}
|
|
@@ -201,6 +224,14 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
201
224
|
*
|
|
202
225
|
*/
|
|
203
226
|
changeSubscriptionStatus(requestParameters: AdminApiChangeSubscriptionStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
*/
|
|
230
|
+
createChallengeRaw(requestParameters: AdminApiCreateChallengeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
231
|
+
/**
|
|
232
|
+
*
|
|
233
|
+
*/
|
|
234
|
+
createChallenge(requestParameters: AdminApiCreateChallengeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
204
235
|
/**
|
|
205
236
|
*
|
|
206
237
|
*/
|
|
@@ -209,6 +240,14 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
209
240
|
*
|
|
210
241
|
*/
|
|
211
242
|
createNegativeInvoice(requestParameters: AdminApiCreateNegativeInvoiceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ObjectId>;
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
*/
|
|
246
|
+
deleteChallengeRaw(requestParameters: AdminApiDeleteChallengeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
247
|
+
/**
|
|
248
|
+
*
|
|
249
|
+
*/
|
|
250
|
+
deleteChallenge(requestParameters: AdminApiDeleteChallengeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
212
251
|
/**
|
|
213
252
|
*
|
|
214
253
|
*/
|
|
@@ -217,6 +256,14 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
217
256
|
*
|
|
218
257
|
*/
|
|
219
258
|
downloadInvoice(requestParameters: AdminApiDownloadInvoiceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Blob>;
|
|
259
|
+
/**
|
|
260
|
+
*
|
|
261
|
+
*/
|
|
262
|
+
getAccountChallengeRewardUsagesByAccountIdRaw(requestParameters: AdminApiGetAccountChallengeRewardUsagesByAccountIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetAccountChallengeRewardUsagesListDto>>;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
*/
|
|
266
|
+
getAccountChallengeRewardUsagesByAccountId(requestParameters: AdminApiGetAccountChallengeRewardUsagesByAccountIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAccountChallengeRewardUsagesListDto>;
|
|
220
267
|
/**
|
|
221
268
|
*
|
|
222
269
|
*/
|
|
@@ -281,6 +328,14 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
281
328
|
*
|
|
282
329
|
*/
|
|
283
330
|
getAllAuctions(requestParameters?: AdminApiGetAllAuctionsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAllAuctions200Response>;
|
|
331
|
+
/**
|
|
332
|
+
*
|
|
333
|
+
*/
|
|
334
|
+
getAllFeatureFlagsRaw(requestParameters: AdminApiGetAllFeatureFlagsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetAllFeatureFlags200Response>>;
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
*/
|
|
338
|
+
getAllFeatureFlags(requestParameters?: AdminApiGetAllFeatureFlagsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetAllFeatureFlags200Response>;
|
|
284
339
|
/**
|
|
285
340
|
*
|
|
286
341
|
*/
|
|
@@ -345,6 +400,14 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
345
400
|
*
|
|
346
401
|
*/
|
|
347
402
|
listAccounts(requestParameters?: AdminApiListAccountsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListAccounts200Response>;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
*/
|
|
406
|
+
listAllChallengesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AdminChallengeListDto>>;
|
|
407
|
+
/**
|
|
408
|
+
*
|
|
409
|
+
*/
|
|
410
|
+
listAllChallenges(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AdminChallengeListDto>;
|
|
348
411
|
/**
|
|
349
412
|
*
|
|
350
413
|
*/
|
|
@@ -465,6 +528,22 @@ export declare class AdminApi extends runtime.BaseAPI {
|
|
|
465
528
|
*
|
|
466
529
|
*/
|
|
467
530
|
updateAccountSettings(requestParameters: AdminApiUpdateAccountSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
531
|
+
/**
|
|
532
|
+
*
|
|
533
|
+
*/
|
|
534
|
+
updateChallengeRaw(requestParameters: AdminApiUpdateChallengeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
535
|
+
/**
|
|
536
|
+
*
|
|
537
|
+
*/
|
|
538
|
+
updateChallenge(requestParameters: AdminApiUpdateChallengeRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
*/
|
|
542
|
+
updateFeatureFlagRaw(requestParameters: AdminApiUpdateFeatureFlagRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
543
|
+
/**
|
|
544
|
+
*
|
|
545
|
+
*/
|
|
546
|
+
updateFeatureFlag(requestParameters: AdminApiUpdateFeatureFlagRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
468
547
|
/**
|
|
469
548
|
*
|
|
470
549
|
*/
|