bitbadgesjs-sdk 0.3.15 → 0.3.16
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/dist/address-converter/converter.d.ts +1 -1
- package/dist/api-indexer/BitBadgesAddressList.d.ts +18 -18
- package/dist/api-indexer/BitBadgesAddressList.d.ts.map +1 -1
- package/dist/api-indexer/BitBadgesAddressList.js +13 -13
- package/dist/api-indexer/BitBadgesAddressList.js.map +1 -1
- package/dist/api-indexer/BitBadgesApi.d.ts +61 -56
- package/dist/api-indexer/BitBadgesApi.d.ts.map +1 -1
- package/dist/api-indexer/BitBadgesApi.js +179 -133
- package/dist/api-indexer/BitBadgesApi.js.map +1 -1
- package/dist/api-indexer/BitBadgesCollection.d.ts +20 -20
- package/dist/api-indexer/BitBadgesCollection.d.ts.map +1 -1
- package/dist/api-indexer/BitBadgesCollection.js +21 -21
- package/dist/api-indexer/BitBadgesCollection.js.map +1 -1
- package/dist/api-indexer/BitBadgesUserInfo.d.ts +14 -14
- package/dist/api-indexer/BitBadgesUserInfo.d.ts.map +1 -1
- package/dist/api-indexer/BitBadgesUserInfo.js +12 -12
- package/dist/api-indexer/BitBadgesUserInfo.js.map +1 -1
- package/dist/api-indexer/docs/docs.d.ts +64 -8
- package/dist/api-indexer/docs/docs.d.ts.map +1 -1
- package/dist/api-indexer/docs/docs.js +76 -11
- package/dist/api-indexer/docs/docs.js.map +1 -1
- package/dist/api-indexer/docs/interfaces.d.ts +73 -31
- package/dist/api-indexer/docs/interfaces.d.ts.map +1 -1
- package/dist/api-indexer/docs/interfaces.js +9 -0
- package/dist/api-indexer/docs/interfaces.js.map +1 -1
- package/dist/api-indexer/requests/collections.d.ts +35 -35
- package/dist/api-indexer/requests/collections.d.ts.map +1 -1
- package/dist/api-indexer/requests/collections.js +20 -20
- package/dist/api-indexer/requests/collections.js.map +1 -1
- package/dist/api-indexer/requests/maps.d.ts +5 -5
- package/dist/api-indexer/requests/maps.d.ts.map +1 -1
- package/dist/api-indexer/requests/maps.js +3 -3
- package/dist/api-indexer/requests/maps.js.map +1 -1
- package/dist/api-indexer/requests/requests.d.ts +242 -151
- package/dist/api-indexer/requests/requests.d.ts.map +1 -1
- package/dist/api-indexer/requests/requests.js +112 -75
- package/dist/api-indexer/requests/requests.js.map +1 -1
- package/dist/api-indexer/requests/routes.d.ts +11 -3
- package/dist/api-indexer/requests/routes.d.ts.map +1 -1
- package/dist/api-indexer/requests/routes.js +10 -3
- package/dist/api-indexer/requests/routes.js.map +1 -1
- package/dist/core/approvals.d.ts +1 -0
- package/dist/core/approvals.d.ts.map +1 -1
- package/dist/core/approvals.js.map +1 -1
- package/dist/core/blockin.d.ts +7 -7
- package/dist/core/blockin.d.ts.map +1 -1
- package/dist/core/blockin.js +11 -11
- package/dist/core/blockin.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -7,16 +7,18 @@ import { BitBadgesUserInfo } from '../../api-indexer/BitBadgesUserInfo';
|
|
|
7
7
|
import type { PaginationInfo } from '../../api-indexer/base';
|
|
8
8
|
import { EmptyResponseClass } from '../../api-indexer/base';
|
|
9
9
|
import { ClaimAlertDoc, TransferActivityDoc } from '../../api-indexer/docs/activity';
|
|
10
|
-
import { AuthAppDoc, SecretDoc, StatusDoc } from '../../api-indexer/docs/docs';
|
|
11
|
-
import type { BlockinMessage, ClaimIntegrationPluginType, CosmosAddress, IntegrationPluginDetails, NativeAddress, UNIXMilliTimestamp, iAuthAppDoc, iClaimAlertDoc, iCustomLink, iCustomListPage, iCustomPage, iSecretDoc, iSocialConnections, iStatusDoc, iTransferActivityDoc } from '../../api-indexer/docs/interfaces';
|
|
10
|
+
import { AuthAppDoc, PluginDoc, SecretDoc, StatusDoc } from '../../api-indexer/docs/docs';
|
|
11
|
+
import type { BlockinMessage, ClaimIntegrationPluginCustomBodyType, ClaimIntegrationPluginType, CosmosAddress, IntegrationPluginDetails, JsonBodyInputSchema, JsonBodyInputWithValue, NativeAddress, PluginPresetType, UNIXMilliTimestamp, iAuthAppDoc, iClaimAlertDoc, iCustomLink, iCustomListPage, iCustomPage, iPluginDoc, iSecretDoc, iSocialConnections, iStatusDoc, iTransferActivityDoc } from '../../api-indexer/docs/interfaces';
|
|
12
12
|
import type { iBadgeMetadataDetails, iCollectionMetadataDetails } from '../../api-indexer/metadata/badgeMetadata';
|
|
13
13
|
import type { iMetadata } from '../../api-indexer/metadata/metadata';
|
|
14
14
|
import { Metadata } from '../../api-indexer/metadata/metadata';
|
|
15
15
|
import { BaseNumberTypeClass, CustomTypeClass } from '../../common/base';
|
|
16
16
|
import type { NumberType } from '../../common/string-numbers';
|
|
17
17
|
import type { SupportedChain } from '../../common/types';
|
|
18
|
-
import { PredeterminedBalances, iChallengeInfoDetails } from '../../core/approvals';
|
|
18
|
+
import { PredeterminedBalances, iChallengeDetails, iChallengeInfoDetails } from '../../core/approvals';
|
|
19
19
|
import type { iBatchBadgeDetails } from '../../core/batch-utils';
|
|
20
|
+
import { BlockinChallenge, iBlockinChallenge } from '../../core/blockin';
|
|
21
|
+
import { SecretsProof } from '../../core/secrets';
|
|
20
22
|
import type { iOffChainBalancesMap } from '../../core/transfers';
|
|
21
23
|
import { UintRangeArray } from '../../core/uintRanges';
|
|
22
24
|
import type { iPredeterminedBalances, iSecretsProof, iUintRange } from '../../interfaces';
|
|
@@ -24,26 +26,24 @@ import type { BroadcastPostBody } from '../../node-rest-api/broadcast';
|
|
|
24
26
|
import type { DeliverTxResponse, Event } from '@cosmjs/stargate';
|
|
25
27
|
import type { AssetConditionGroup, ChallengeParams, VerifyChallengeOptions } from 'blockin';
|
|
26
28
|
import { BlockinChallengeParams } from './blockin';
|
|
27
|
-
|
|
28
|
-
import { BlockinChallenge, iBlockinChallenge } from '../../core/blockin';
|
|
29
|
-
export interface GetStatusRouteRequestBody {
|
|
29
|
+
export interface GetStatusBody {
|
|
30
30
|
}
|
|
31
|
-
export interface
|
|
31
|
+
export interface iGetStatusSuccessResponse<T extends NumberType> {
|
|
32
32
|
status: iStatusDoc<T>;
|
|
33
33
|
}
|
|
34
|
-
export declare class
|
|
34
|
+
export declare class GetStatusSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetStatusSuccessResponse<T>> implements iGetStatusSuccessResponse<T> {
|
|
35
35
|
status: StatusDoc<T>;
|
|
36
|
-
constructor(data:
|
|
37
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
36
|
+
constructor(data: iGetStatusSuccessResponse<T>);
|
|
37
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetStatusSuccessResponse<U>;
|
|
38
38
|
}
|
|
39
|
-
export interface
|
|
39
|
+
export interface GetSearchBody {
|
|
40
40
|
noCollections?: boolean;
|
|
41
41
|
noAccounts?: boolean;
|
|
42
42
|
noAddressLists?: boolean;
|
|
43
43
|
noBadges?: boolean;
|
|
44
44
|
specificCollectionId?: NumberType;
|
|
45
45
|
}
|
|
46
|
-
export interface
|
|
46
|
+
export interface iGetSearchSuccessResponse<T extends NumberType> {
|
|
47
47
|
collections: iBitBadgesCollection<T>[];
|
|
48
48
|
accounts: iBitBadgesUserInfo<T>[];
|
|
49
49
|
addressLists: iBitBadgesAddressList<T>[];
|
|
@@ -52,7 +52,7 @@ export interface iGetSearchRouteSuccessResponse<T extends NumberType> {
|
|
|
52
52
|
badgeIds: iUintRange<T>[];
|
|
53
53
|
}[];
|
|
54
54
|
}
|
|
55
|
-
export declare class
|
|
55
|
+
export declare class GetSearchSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetSearchSuccessResponse<T>> implements iGetSearchSuccessResponse<T> {
|
|
56
56
|
collections: BitBadgesCollection<T>[];
|
|
57
57
|
accounts: BitBadgesUserInfo<T>[];
|
|
58
58
|
addressLists: BitBadgesAddressList<T>[];
|
|
@@ -60,10 +60,10 @@ export declare class GetSearchRouteSuccessResponse<T extends NumberType> extends
|
|
|
60
60
|
collection: BitBadgesCollection<T>;
|
|
61
61
|
badgeIds: UintRangeArray<T>;
|
|
62
62
|
}[];
|
|
63
|
-
constructor(data:
|
|
64
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
63
|
+
constructor(data: iGetSearchSuccessResponse<T>);
|
|
64
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetSearchSuccessResponse<U>;
|
|
65
65
|
}
|
|
66
|
-
export interface
|
|
66
|
+
export interface GetClaimsBody {
|
|
67
67
|
claimIds: string[];
|
|
68
68
|
listId?: string;
|
|
69
69
|
}
|
|
@@ -72,56 +72,61 @@ export interface iClaimDetails<T extends NumberType> {
|
|
|
72
72
|
balancesToSet?: iPredeterminedBalances<T>;
|
|
73
73
|
plugins: IntegrationPluginDetails<ClaimIntegrationPluginType>[];
|
|
74
74
|
manualDistribution?: boolean;
|
|
75
|
+
automatic?: boolean;
|
|
75
76
|
seedCode?: string;
|
|
77
|
+
metadata?: iMetadata<T>;
|
|
76
78
|
}
|
|
77
79
|
export declare class ClaimDetails<T extends NumberType> extends BaseNumberTypeClass<ClaimDetails<T>> implements iClaimDetails<T> {
|
|
78
80
|
claimId: string;
|
|
79
81
|
balancesToSet?: PredeterminedBalances<T>;
|
|
80
82
|
plugins: IntegrationPluginDetails<ClaimIntegrationPluginType>[];
|
|
81
83
|
manualDistribution?: boolean;
|
|
84
|
+
automatic?: boolean;
|
|
82
85
|
seedCode?: string | undefined;
|
|
86
|
+
metadata?: Metadata<T> | undefined;
|
|
83
87
|
constructor(data: iClaimDetails<T>);
|
|
84
88
|
convert<U extends NumberType>(convertFunction: (val: NumberType) => U): ClaimDetails<U>;
|
|
85
89
|
}
|
|
86
|
-
export interface
|
|
90
|
+
export interface iGetClaimsSuccessResponse<T extends NumberType> {
|
|
87
91
|
claims: iClaimDetails<T>[];
|
|
88
92
|
}
|
|
89
|
-
export declare class
|
|
93
|
+
export declare class GetClaimsSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetClaimsSuccessResponse<T>> implements iGetClaimsSuccessResponse<T> {
|
|
90
94
|
claims: ClaimDetails<T>[];
|
|
91
|
-
constructor(data:
|
|
92
|
-
convert<U extends NumberType>(convertFunction: (val: NumberType) => U):
|
|
95
|
+
constructor(data: iGetClaimsSuccessResponse<T>);
|
|
96
|
+
convert<U extends NumberType>(convertFunction: (val: NumberType) => U): GetClaimsSuccessResponse<U>;
|
|
93
97
|
}
|
|
94
|
-
export interface
|
|
95
|
-
[pluginId: string]: any;
|
|
98
|
+
export interface CompleteClaimBody {
|
|
96
99
|
prevCodesOnly?: boolean;
|
|
100
|
+
simulate?: boolean;
|
|
101
|
+
[customPluginId: string]: ClaimIntegrationPluginCustomBodyType<ClaimIntegrationPluginType> | any | undefined;
|
|
97
102
|
}
|
|
98
|
-
export interface
|
|
103
|
+
export interface iCompleteClaimSuccessResponse {
|
|
99
104
|
code?: string;
|
|
100
105
|
prevCodes?: string[];
|
|
101
106
|
}
|
|
102
|
-
export declare class
|
|
107
|
+
export declare class CompleteClaimSuccessResponse extends CustomTypeClass<CompleteClaimSuccessResponse> implements iCompleteClaimSuccessResponse {
|
|
103
108
|
code?: string;
|
|
104
109
|
prevCodes?: string[] | undefined;
|
|
105
|
-
constructor(data:
|
|
110
|
+
constructor(data: iCompleteClaimSuccessResponse);
|
|
106
111
|
}
|
|
107
|
-
export interface
|
|
112
|
+
export interface DeleteReviewBody {
|
|
108
113
|
reviewId: string;
|
|
109
114
|
}
|
|
110
|
-
export interface
|
|
115
|
+
export interface iDeleteReviewSuccessResponse {
|
|
111
116
|
}
|
|
112
|
-
export declare class
|
|
117
|
+
export declare class DeleteReviewSuccessResponse extends EmptyResponseClass {
|
|
113
118
|
}
|
|
114
|
-
export interface
|
|
119
|
+
export interface AddReviewBody {
|
|
115
120
|
review: string;
|
|
116
121
|
stars: NumberType;
|
|
117
122
|
cosmosAddress?: CosmosAddress;
|
|
118
123
|
collectionId?: NumberType;
|
|
119
124
|
}
|
|
120
|
-
export interface
|
|
125
|
+
export interface iAddReviewSuccessResponse {
|
|
121
126
|
}
|
|
122
|
-
export declare class
|
|
127
|
+
export declare class AddReviewSuccessResponse extends EmptyResponseClass {
|
|
123
128
|
}
|
|
124
|
-
export interface
|
|
129
|
+
export interface UpdateAccountInfoBody {
|
|
125
130
|
discord?: string;
|
|
126
131
|
twitter?: string;
|
|
127
132
|
github?: string;
|
|
@@ -178,11 +183,11 @@ export interface UpdateAccountInfoRouteRequestBody {
|
|
|
178
183
|
};
|
|
179
184
|
socialConnections?: iSocialConnections<NumberType>;
|
|
180
185
|
}
|
|
181
|
-
export interface
|
|
186
|
+
export interface iUpdateAccountInfoSuccessResponse {
|
|
182
187
|
}
|
|
183
|
-
export declare class
|
|
188
|
+
export declare class UpdateAccountInfoSuccessResponse extends EmptyResponseClass {
|
|
184
189
|
}
|
|
185
|
-
export interface
|
|
190
|
+
export interface AddBalancesToOffChainStorageBody {
|
|
186
191
|
balances?: iOffChainBalancesMap<NumberType>;
|
|
187
192
|
claims?: {
|
|
188
193
|
claimId: string;
|
|
@@ -191,36 +196,37 @@ export interface AddBalancesToOffChainStorageRouteRequestBody {
|
|
|
191
196
|
}[];
|
|
192
197
|
method: 'ipfs' | 'centralized';
|
|
193
198
|
collectionId: NumberType;
|
|
199
|
+
isNonIndexed?: boolean;
|
|
194
200
|
}
|
|
195
|
-
export interface
|
|
201
|
+
export interface iAddBalancesToOffChainStorageSuccessResponse {
|
|
196
202
|
uri?: string;
|
|
197
203
|
}
|
|
198
|
-
export declare class
|
|
204
|
+
export declare class AddBalancesToOffChainStorageSuccessResponse extends CustomTypeClass<AddBalancesToOffChainStorageSuccessResponse> implements iAddBalancesToOffChainStorageSuccessResponse {
|
|
199
205
|
uri?: string;
|
|
200
|
-
constructor(data:
|
|
206
|
+
constructor(data: iAddBalancesToOffChainStorageSuccessResponse);
|
|
201
207
|
}
|
|
202
|
-
export interface
|
|
203
|
-
|
|
208
|
+
export interface AddToIpfsBody {
|
|
209
|
+
contents?: (iBadgeMetadataDetails<NumberType> | iMetadata<NumberType> | iCollectionMetadataDetails<NumberType> | iChallengeDetails<NumberType>)[];
|
|
204
210
|
}
|
|
205
|
-
export interface
|
|
211
|
+
export interface iAddToIpfsSuccessResponse {
|
|
206
212
|
results: {
|
|
207
213
|
cid: string;
|
|
208
214
|
}[];
|
|
209
215
|
}
|
|
210
|
-
export declare class
|
|
216
|
+
export declare class AddToIpfsSuccessResponse extends CustomTypeClass<AddToIpfsSuccessResponse> implements iAddToIpfsSuccessResponse {
|
|
211
217
|
results: {
|
|
212
218
|
cid: string;
|
|
213
219
|
}[];
|
|
214
|
-
constructor(data:
|
|
220
|
+
constructor(data: iAddToIpfsSuccessResponse);
|
|
215
221
|
}
|
|
216
|
-
export interface
|
|
222
|
+
export interface AddApprovalDetailsToOffChainStorageBody {
|
|
217
223
|
approvalDetails: {
|
|
218
224
|
name: string;
|
|
219
225
|
description: string;
|
|
220
226
|
challengeInfoDetails?: iChallengeInfoDetails<NumberType>[];
|
|
221
227
|
}[];
|
|
222
228
|
}
|
|
223
|
-
export interface
|
|
229
|
+
export interface iAddApprovalDetailsToOffChainStorageSuccessResponse {
|
|
224
230
|
approvalResults: {
|
|
225
231
|
metadataResult: {
|
|
226
232
|
cid: string;
|
|
@@ -230,7 +236,7 @@ export interface iAddApprovalDetailsToOffChainStorageRouteSuccessResponse {
|
|
|
230
236
|
}[];
|
|
231
237
|
}[];
|
|
232
238
|
}
|
|
233
|
-
export declare class
|
|
239
|
+
export declare class AddApprovalDetailsToOffChainStorageSuccessResponse extends CustomTypeClass<AddApprovalDetailsToOffChainStorageSuccessResponse> implements iAddApprovalDetailsToOffChainStorageSuccessResponse {
|
|
234
240
|
approvalResults: {
|
|
235
241
|
metadataResult: {
|
|
236
242
|
cid: string;
|
|
@@ -239,37 +245,36 @@ export declare class AddApprovalDetailsToOffChainStorageRouteSuccessResponse ext
|
|
|
239
245
|
cid: string;
|
|
240
246
|
}[];
|
|
241
247
|
}[];
|
|
242
|
-
constructor(data:
|
|
248
|
+
constructor(data: iAddApprovalDetailsToOffChainStorageSuccessResponse);
|
|
243
249
|
}
|
|
244
|
-
export interface
|
|
250
|
+
export interface GetSignInChallengeBody {
|
|
245
251
|
chain: SupportedChain;
|
|
246
252
|
address: NativeAddress;
|
|
247
|
-
hours?: NumberType;
|
|
248
253
|
}
|
|
249
|
-
export interface
|
|
254
|
+
export interface iGetSignInChallengeSuccessResponse<T extends NumberType> {
|
|
250
255
|
nonce: string;
|
|
251
256
|
params: ChallengeParams<T>;
|
|
252
257
|
message: BlockinMessage;
|
|
253
258
|
}
|
|
254
|
-
export declare class
|
|
259
|
+
export declare class GetSignInChallengeSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetSignInChallengeSuccessResponse<T>> implements iGetSignInChallengeSuccessResponse<T> {
|
|
255
260
|
nonce: string;
|
|
256
261
|
params: BlockinChallengeParams<T>;
|
|
257
262
|
message: BlockinMessage;
|
|
258
|
-
constructor(data:
|
|
259
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
263
|
+
constructor(data: iGetSignInChallengeSuccessResponse<T>);
|
|
264
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetSignInChallengeSuccessResponse<U>;
|
|
260
265
|
}
|
|
261
|
-
export interface
|
|
266
|
+
export interface VerifySignInBody {
|
|
262
267
|
message: BlockinMessage;
|
|
263
268
|
signature: string;
|
|
264
269
|
publicKey?: string;
|
|
265
270
|
}
|
|
266
|
-
export interface
|
|
271
|
+
export interface iVerifySignInSuccessResponse {
|
|
267
272
|
}
|
|
268
|
-
export declare class
|
|
273
|
+
export declare class VerifySignInSuccessResponse extends EmptyResponseClass {
|
|
269
274
|
}
|
|
270
|
-
export interface
|
|
275
|
+
export interface CheckSignInStatusBody {
|
|
271
276
|
}
|
|
272
|
-
export interface
|
|
277
|
+
export interface iCheckSignInStatusSuccessResponse {
|
|
273
278
|
signedIn: boolean;
|
|
274
279
|
message: BlockinMessage;
|
|
275
280
|
discord?: {
|
|
@@ -290,7 +295,7 @@ export interface iCheckSignInStatusRequestSuccessResponse {
|
|
|
290
295
|
username: string;
|
|
291
296
|
};
|
|
292
297
|
}
|
|
293
|
-
export declare class
|
|
298
|
+
export declare class CheckSignInStatusSuccessResponse extends CustomTypeClass<CheckSignInStatusSuccessResponse> implements iCheckSignInStatusSuccessResponse {
|
|
294
299
|
signedIn: boolean;
|
|
295
300
|
message: BlockinMessage;
|
|
296
301
|
discord?: {
|
|
@@ -310,9 +315,9 @@ export declare class CheckSignInStatusRequestSuccessResponse extends CustomTypeC
|
|
|
310
315
|
id: string;
|
|
311
316
|
username: string;
|
|
312
317
|
};
|
|
313
|
-
constructor(data:
|
|
318
|
+
constructor(data: iCheckSignInStatusSuccessResponse);
|
|
314
319
|
}
|
|
315
|
-
export interface
|
|
320
|
+
export interface SignOutBody {
|
|
316
321
|
signOutBlockin: boolean;
|
|
317
322
|
signOutDiscord?: boolean;
|
|
318
323
|
signOutTwitter?: boolean;
|
|
@@ -323,9 +328,9 @@ export interface iSignOutSuccessResponse {
|
|
|
323
328
|
}
|
|
324
329
|
export declare class SignOutSuccessResponse extends EmptyResponseClass {
|
|
325
330
|
}
|
|
326
|
-
export interface
|
|
331
|
+
export interface GetBrowseCollectionsBody {
|
|
327
332
|
}
|
|
328
|
-
export interface
|
|
333
|
+
export interface iGetBrowseCollectionsSuccessResponse<T extends NumberType> {
|
|
329
334
|
collections: {
|
|
330
335
|
[category: string]: iBitBadgesCollection<T>[];
|
|
331
336
|
};
|
|
@@ -343,7 +348,7 @@ export interface iGetBrowseCollectionsRouteSuccessResponse<T extends NumberType>
|
|
|
343
348
|
}[];
|
|
344
349
|
};
|
|
345
350
|
}
|
|
346
|
-
export declare class
|
|
351
|
+
export declare class GetBrowseCollectionsSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetBrowseCollectionsSuccessResponse<T>> implements iGetBrowseCollectionsSuccessResponse<T> {
|
|
347
352
|
collections: {
|
|
348
353
|
[category: string]: BitBadgesCollection<T>[];
|
|
349
354
|
};
|
|
@@ -360,11 +365,11 @@ export declare class GetBrowseCollectionsRouteSuccessResponse<T extends NumberTy
|
|
|
360
365
|
badgeIds: UintRangeArray<T>;
|
|
361
366
|
}[];
|
|
362
367
|
};
|
|
363
|
-
constructor(data:
|
|
364
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
368
|
+
constructor(data: iGetBrowseCollectionsSuccessResponse<T>);
|
|
369
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetBrowseCollectionsSuccessResponse<U>;
|
|
365
370
|
}
|
|
366
|
-
export type
|
|
367
|
-
export interface
|
|
371
|
+
export type BroadcastTxBody = BroadcastPostBody;
|
|
372
|
+
export interface iBroadcastTxSuccessResponse {
|
|
368
373
|
tx_response: {
|
|
369
374
|
code: number;
|
|
370
375
|
codespace: string;
|
|
@@ -396,7 +401,7 @@ export interface iBroadcastTxRouteSuccessResponse {
|
|
|
396
401
|
txhash: string;
|
|
397
402
|
};
|
|
398
403
|
}
|
|
399
|
-
export declare class
|
|
404
|
+
export declare class BroadcastTxSuccessResponse extends CustomTypeClass<BroadcastTxSuccessResponse> implements iBroadcastTxSuccessResponse {
|
|
400
405
|
tx_response: {
|
|
401
406
|
code: number;
|
|
402
407
|
codespace: string;
|
|
@@ -427,10 +432,10 @@ export declare class BroadcastTxRouteSuccessResponse extends CustomTypeClass<Bro
|
|
|
427
432
|
tx: object | null;
|
|
428
433
|
txhash: string;
|
|
429
434
|
};
|
|
430
|
-
constructor(data:
|
|
435
|
+
constructor(data: iBroadcastTxSuccessResponse);
|
|
431
436
|
}
|
|
432
|
-
export type
|
|
433
|
-
export interface
|
|
437
|
+
export type SimulateTxBody = BroadcastPostBody;
|
|
438
|
+
export interface iSimulateTxSuccessResponse {
|
|
434
439
|
gas_info: {
|
|
435
440
|
gas_used: string;
|
|
436
441
|
gas_wanted: string;
|
|
@@ -448,7 +453,7 @@ export interface iSimulateTxRouteSuccessResponse {
|
|
|
448
453
|
}[];
|
|
449
454
|
};
|
|
450
455
|
}
|
|
451
|
-
export declare class
|
|
456
|
+
export declare class SimulateTxSuccessResponse extends CustomTypeClass<SimulateTxSuccessResponse> implements iSimulateTxSuccessResponse {
|
|
452
457
|
gas_info: {
|
|
453
458
|
gas_used: string;
|
|
454
459
|
gas_wanted: string;
|
|
@@ -465,23 +470,23 @@ export declare class SimulateTxRouteSuccessResponse extends CustomTypeClass<Simu
|
|
|
465
470
|
}[];
|
|
466
471
|
}[];
|
|
467
472
|
};
|
|
468
|
-
constructor(data:
|
|
473
|
+
constructor(data: iSimulateTxSuccessResponse);
|
|
469
474
|
}
|
|
470
|
-
export interface
|
|
475
|
+
export interface FetchMetadataDirectlyBody {
|
|
471
476
|
uris: string[];
|
|
472
477
|
}
|
|
473
|
-
export interface
|
|
478
|
+
export interface iFetchMetadataDirectlySuccessResponse<T extends NumberType> {
|
|
474
479
|
metadata: iMetadata<T>[];
|
|
475
480
|
}
|
|
476
|
-
export declare class
|
|
481
|
+
export declare class FetchMetadataDirectlySuccessResponse<T extends NumberType> extends BaseNumberTypeClass<FetchMetadataDirectlySuccessResponse<T>> implements iFetchMetadataDirectlySuccessResponse<T> {
|
|
477
482
|
metadata: Metadata<T>[];
|
|
478
|
-
constructor(data:
|
|
479
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
483
|
+
constructor(data: iFetchMetadataDirectlySuccessResponse<T>);
|
|
484
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): FetchMetadataDirectlySuccessResponse<U>;
|
|
480
485
|
}
|
|
481
|
-
export interface
|
|
486
|
+
export interface GetTokensFromFaucetBody {
|
|
482
487
|
}
|
|
483
|
-
export type
|
|
484
|
-
export declare class
|
|
488
|
+
export type iGetTokensFromFaucetSuccessResponse = DeliverTxResponse;
|
|
489
|
+
export declare class GetTokensFromFaucetSuccessResponse extends CustomTypeClass<GetTokensFromFaucetSuccessResponse> implements iGetTokensFromFaucetSuccessResponse {
|
|
485
490
|
readonly height: number;
|
|
486
491
|
readonly txIndex: number;
|
|
487
492
|
readonly code: number;
|
|
@@ -494,18 +499,18 @@ export declare class GetTokensFromFaucetRouteSuccessResponse extends CustomTypeC
|
|
|
494
499
|
}>;
|
|
495
500
|
readonly gasUsed: bigint;
|
|
496
501
|
readonly gasWanted: bigint;
|
|
497
|
-
constructor(data:
|
|
502
|
+
constructor(data: iGetTokensFromFaucetSuccessResponse);
|
|
498
503
|
}
|
|
499
|
-
export interface
|
|
504
|
+
export interface SendClaimAlertsBody {
|
|
500
505
|
claimAlerts: {
|
|
501
506
|
collectionId: NumberType;
|
|
502
507
|
message?: string;
|
|
503
508
|
cosmosAddresses: CosmosAddress[];
|
|
504
509
|
}[];
|
|
505
510
|
}
|
|
506
|
-
export interface
|
|
511
|
+
export interface iSendClaimAlertsSuccessResponse {
|
|
507
512
|
}
|
|
508
|
-
export declare class
|
|
513
|
+
export declare class SendClaimAlertsSuccessResponse extends EmptyResponseClass {
|
|
509
514
|
}
|
|
510
515
|
export interface CosmosAccountResponse {
|
|
511
516
|
account_number: number;
|
|
@@ -515,23 +520,23 @@ export interface CosmosAccountResponse {
|
|
|
515
520
|
};
|
|
516
521
|
address: CosmosAddress;
|
|
517
522
|
}
|
|
518
|
-
export interface
|
|
523
|
+
export interface GenericVerifyAssetsBody {
|
|
519
524
|
cosmosAddress: CosmosAddress;
|
|
520
525
|
assetOwnershipRequirements: AssetConditionGroup<NumberType>;
|
|
521
526
|
}
|
|
522
|
-
export interface
|
|
527
|
+
export interface iGenericVerifyAssetsSuccessResponse {
|
|
523
528
|
}
|
|
524
|
-
export declare class
|
|
529
|
+
export declare class GenericVerifyAssetsSuccessResponse extends EmptyResponseClass {
|
|
525
530
|
}
|
|
526
|
-
export interface
|
|
531
|
+
export interface GenericBlockinVerifyBody extends VerifySignInBody {
|
|
527
532
|
options?: VerifyChallengeOptions;
|
|
528
|
-
|
|
533
|
+
secretsPresentations?: SecretsProof<NumberType>[];
|
|
529
534
|
}
|
|
530
|
-
export interface
|
|
535
|
+
export interface iGenericBlockinVerifySuccessResponse extends iVerifySignInSuccessResponse {
|
|
531
536
|
}
|
|
532
|
-
export declare class
|
|
537
|
+
export declare class GenericBlockinVerifySuccessResponse extends VerifySignInSuccessResponse {
|
|
533
538
|
}
|
|
534
|
-
export interface
|
|
539
|
+
export interface CreateSecretBody {
|
|
535
540
|
proofOfIssuance: {
|
|
536
541
|
message: string;
|
|
537
542
|
signature: string;
|
|
@@ -551,28 +556,28 @@ export interface CreateSecretRouteRequestBody {
|
|
|
551
556
|
image: string;
|
|
552
557
|
description: string;
|
|
553
558
|
}
|
|
554
|
-
export interface
|
|
559
|
+
export interface iCreateSecretSuccessResponse {
|
|
555
560
|
secretId: string;
|
|
556
561
|
}
|
|
557
|
-
export declare class
|
|
562
|
+
export declare class CreateSecretSuccessResponse extends CustomTypeClass<CreateSecretSuccessResponse> implements iCreateSecretSuccessResponse {
|
|
558
563
|
secretId: string;
|
|
559
|
-
constructor(data:
|
|
564
|
+
constructor(data: iCreateSecretSuccessResponse);
|
|
560
565
|
}
|
|
561
|
-
export interface
|
|
566
|
+
export interface GetSecretBody {
|
|
562
567
|
secretId: string;
|
|
563
568
|
}
|
|
564
|
-
export interface
|
|
569
|
+
export interface iGetSecretSuccessResponse<T extends NumberType> extends iSecretDoc<T> {
|
|
565
570
|
}
|
|
566
|
-
export declare class
|
|
571
|
+
export declare class GetSecretSuccessResponse<T extends NumberType> extends SecretDoc<T> {
|
|
567
572
|
}
|
|
568
|
-
export interface
|
|
573
|
+
export interface DeleteSecretBody {
|
|
569
574
|
secretId: string;
|
|
570
575
|
}
|
|
571
|
-
export interface
|
|
576
|
+
export interface iDeleteSecretSuccessResponse {
|
|
572
577
|
}
|
|
573
|
-
export declare class
|
|
578
|
+
export declare class DeleteSecretSuccessResponse extends EmptyResponseClass {
|
|
574
579
|
}
|
|
575
|
-
export interface
|
|
580
|
+
export interface UpdateSecretBody {
|
|
576
581
|
secretId: string;
|
|
577
582
|
holdersToSet?: {
|
|
578
583
|
cosmosAddress: CosmosAddress;
|
|
@@ -601,133 +606,219 @@ export interface UpdateSecretRouteRequestBody {
|
|
|
601
606
|
image?: string;
|
|
602
607
|
description?: string;
|
|
603
608
|
}
|
|
604
|
-
export interface
|
|
609
|
+
export interface iUpdateSecretSuccessResponse {
|
|
605
610
|
}
|
|
606
|
-
export declare class
|
|
611
|
+
export declare class UpdateSecretSuccessResponse extends EmptyResponseClass {
|
|
607
612
|
}
|
|
608
|
-
export interface
|
|
613
|
+
export interface CreateBlockinAuthCodeBody {
|
|
609
614
|
name: string;
|
|
610
615
|
description: string;
|
|
611
616
|
image: string;
|
|
612
617
|
message: BlockinMessage;
|
|
613
618
|
signature: string;
|
|
614
619
|
publicKey?: string;
|
|
615
|
-
|
|
620
|
+
secretsPresentations?: iSecretsProof<NumberType>[];
|
|
616
621
|
clientId: string;
|
|
617
622
|
otherSignIns?: ('discord' | 'twitter' | 'google' | 'github')[];
|
|
618
623
|
redirectUri?: string;
|
|
619
624
|
state?: string;
|
|
620
|
-
options: VerifyChallengeOptions;
|
|
621
625
|
}
|
|
622
|
-
export interface
|
|
626
|
+
export interface iCreateBlockinAuthCodeSuccessResponse {
|
|
623
627
|
code: string;
|
|
624
628
|
}
|
|
625
|
-
export declare class
|
|
629
|
+
export declare class CreateBlockinAuthCodeSuccessResponse extends CustomTypeClass<CreateBlockinAuthCodeSuccessResponse> implements iCreateBlockinAuthCodeSuccessResponse {
|
|
626
630
|
code: string;
|
|
627
|
-
constructor(data:
|
|
631
|
+
constructor(data: iCreateBlockinAuthCodeSuccessResponse);
|
|
632
|
+
}
|
|
633
|
+
export interface GetBlockinAuthCodesForAuthAppBody {
|
|
634
|
+
bookmark?: string;
|
|
635
|
+
clientId: string;
|
|
636
|
+
}
|
|
637
|
+
export interface iGetBlockinAuthCodesForAuthAppSuccessResponse<T extends NumberType> {
|
|
638
|
+
blockinAuthCodes: iBlockinChallenge<T>[];
|
|
639
|
+
pagination: PaginationInfo;
|
|
640
|
+
}
|
|
641
|
+
export declare class GetBlockinAuthCodesForAuthAppSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetBlockinAuthCodesForAuthAppSuccessResponse<T>> implements iGetBlockinAuthCodesForAuthAppSuccessResponse<T> {
|
|
642
|
+
blockinAuthCodes: BlockinChallenge<T>[];
|
|
643
|
+
pagination: PaginationInfo;
|
|
644
|
+
constructor(data: iGetBlockinAuthCodesForAuthAppSuccessResponse<T>);
|
|
645
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetBlockinAuthCodesForAuthAppSuccessResponse<U>;
|
|
628
646
|
}
|
|
629
|
-
export interface
|
|
647
|
+
export interface GetBlockinAuthCodeBody {
|
|
630
648
|
code: string;
|
|
631
649
|
options?: VerifyChallengeOptions;
|
|
632
650
|
clientSecret?: string;
|
|
633
651
|
clientId?: string;
|
|
634
652
|
redirectUri?: string;
|
|
635
653
|
}
|
|
636
|
-
export declare class
|
|
654
|
+
export declare class GetBlockinAuthCodeSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetBlockinAuthCodeSuccessResponse<T>> {
|
|
637
655
|
blockin: BlockinChallenge<NumberType>;
|
|
638
|
-
constructor(data:
|
|
656
|
+
constructor(data: iGetBlockinAuthCodeSuccessResponse<T>);
|
|
639
657
|
getNumberFieldNames(): string[];
|
|
640
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
658
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetBlockinAuthCodeSuccessResponse<U>;
|
|
641
659
|
}
|
|
642
|
-
export interface
|
|
660
|
+
export interface iGetBlockinAuthCodeSuccessResponse<T extends NumberType> {
|
|
643
661
|
blockin: iBlockinChallenge<T>;
|
|
644
662
|
}
|
|
645
|
-
export interface
|
|
663
|
+
export interface DeleteBlockinAuthCodeBody {
|
|
646
664
|
code: string;
|
|
647
665
|
}
|
|
648
|
-
export interface
|
|
666
|
+
export interface iDeleteBlockinAuthCodeSuccessResponse {
|
|
649
667
|
}
|
|
650
|
-
export declare class
|
|
668
|
+
export declare class DeleteBlockinAuthCodeSuccessResponse extends EmptyResponseClass {
|
|
651
669
|
}
|
|
652
|
-
export interface
|
|
670
|
+
export interface GenerateAppleWalletPassBody {
|
|
653
671
|
code: string;
|
|
654
672
|
}
|
|
655
|
-
export interface
|
|
673
|
+
export interface iGenerateAppleWalletPassSuccessResponse {
|
|
656
674
|
type: string;
|
|
657
675
|
data: string;
|
|
658
676
|
}
|
|
659
|
-
export declare class
|
|
677
|
+
export declare class GenerateAppleWalletPassSuccessResponse extends CustomTypeClass<GenerateAppleWalletPassSuccessResponse> implements iGenerateAppleWalletPassSuccessResponse {
|
|
660
678
|
type: string;
|
|
661
679
|
data: string;
|
|
662
|
-
constructor(data:
|
|
680
|
+
constructor(data: iGenerateAppleWalletPassSuccessResponse);
|
|
663
681
|
}
|
|
664
|
-
export interface
|
|
682
|
+
export interface GetClaimAlertsForCollectionBody {
|
|
665
683
|
collectionId: NumberType;
|
|
666
684
|
bookmark: string;
|
|
667
685
|
}
|
|
668
|
-
export interface
|
|
686
|
+
export interface iGetClaimAlertsForCollectionSuccessResponse<T extends NumberType> {
|
|
669
687
|
claimAlerts: iClaimAlertDoc<T>[];
|
|
670
688
|
pagination: PaginationInfo;
|
|
671
689
|
}
|
|
672
|
-
export declare class
|
|
690
|
+
export declare class GetClaimAlertsForCollectionSuccessResponse<T extends NumberType> extends BaseNumberTypeClass<GetClaimAlertsForCollectionSuccessResponse<T>> implements iGetClaimAlertsForCollectionSuccessResponse<T> {
|
|
673
691
|
claimAlerts: ClaimAlertDoc<T>[];
|
|
674
692
|
pagination: PaginationInfo;
|
|
675
|
-
constructor(data:
|
|
676
|
-
convert<U extends NumberType>(convertFunction: (item: NumberType) => U):
|
|
693
|
+
constructor(data: iGetClaimAlertsForCollectionSuccessResponse<T>);
|
|
694
|
+
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): GetClaimAlertsForCollectionSuccessResponse<U>;
|
|
677
695
|
}
|
|
678
|
-
export interface
|
|
696
|
+
export interface GetExternalCallBody {
|
|
679
697
|
uri: string;
|
|
680
698
|
key: string;
|
|
681
699
|
}
|
|
682
|
-
export interface
|
|
700
|
+
export interface iGetExternalCallSuccessResponse {
|
|
683
701
|
key: string;
|
|
684
702
|
timestamp: number;
|
|
685
703
|
}
|
|
686
|
-
export declare class
|
|
704
|
+
export declare class GetExternalCallSuccessResponse extends CustomTypeClass<GetExternalCallSuccessResponse> implements iGetExternalCallSuccessResponse {
|
|
687
705
|
key: string;
|
|
688
706
|
timestamp: number;
|
|
689
|
-
constructor(data:
|
|
707
|
+
constructor(data: iGetExternalCallSuccessResponse);
|
|
690
708
|
}
|
|
691
|
-
export interface
|
|
709
|
+
export interface CreateAuthAppBody {
|
|
692
710
|
name: string;
|
|
693
|
-
image: string;
|
|
694
|
-
description: string;
|
|
695
711
|
redirectUris: string[];
|
|
696
712
|
}
|
|
697
|
-
export interface
|
|
713
|
+
export interface iCreateAuthAppSuccessResponse {
|
|
698
714
|
clientId: string;
|
|
699
715
|
clientSecret: string;
|
|
700
716
|
}
|
|
701
|
-
export declare class
|
|
717
|
+
export declare class CreateAuthAppSuccessResponse extends CustomTypeClass<CreateAuthAppSuccessResponse> implements iCreateAuthAppSuccessResponse {
|
|
702
718
|
clientId: string;
|
|
703
719
|
clientSecret: string;
|
|
704
|
-
constructor(data:
|
|
720
|
+
constructor(data: iCreateAuthAppSuccessResponse);
|
|
705
721
|
}
|
|
706
|
-
export interface
|
|
722
|
+
export interface GetAuthAppBody {
|
|
707
723
|
}
|
|
708
|
-
export interface
|
|
724
|
+
export interface iGetAuthAppSuccessResponse {
|
|
709
725
|
authApps: iAuthAppDoc[];
|
|
710
726
|
}
|
|
711
|
-
export declare class
|
|
727
|
+
export declare class GetAuthAppSuccessResponse extends CustomTypeClass<GetAuthAppSuccessResponse> implements iGetAuthAppSuccessResponse {
|
|
712
728
|
authApps: AuthAppDoc[];
|
|
713
|
-
constructor(data:
|
|
729
|
+
constructor(data: iGetAuthAppSuccessResponse);
|
|
714
730
|
}
|
|
715
|
-
export interface
|
|
731
|
+
export interface DeleteAuthAppBody {
|
|
716
732
|
clientId: string;
|
|
717
733
|
}
|
|
718
|
-
export interface
|
|
734
|
+
export interface iDeleteAuthAppSuccessResponse {
|
|
719
735
|
}
|
|
720
|
-
export declare class
|
|
736
|
+
export declare class DeleteAuthAppSuccessResponse extends EmptyResponseClass {
|
|
721
737
|
}
|
|
722
|
-
export interface
|
|
738
|
+
export interface UpdateAuthAppBody {
|
|
723
739
|
clientId: string;
|
|
724
740
|
name?: string;
|
|
725
|
-
image?: string;
|
|
726
|
-
description?: string;
|
|
727
741
|
redirectUris?: string[];
|
|
728
742
|
}
|
|
729
|
-
export interface
|
|
743
|
+
export interface iUpdateAuthAppSuccessResponse {
|
|
744
|
+
}
|
|
745
|
+
export declare class UpdateAuthAppSuccessResponse extends EmptyResponseClass {
|
|
746
|
+
}
|
|
747
|
+
export interface CreatePluginBody {
|
|
748
|
+
pluginId: string;
|
|
749
|
+
stateFunctionPreset: PluginPresetType;
|
|
750
|
+
duplicatesAllowed: boolean;
|
|
751
|
+
requiresSessions: boolean;
|
|
752
|
+
requiresUserInputs: boolean;
|
|
753
|
+
metadata: {
|
|
754
|
+
name: string;
|
|
755
|
+
description: string;
|
|
756
|
+
image: string;
|
|
757
|
+
documentation?: string;
|
|
758
|
+
sourceCode?: string;
|
|
759
|
+
supportLink?: string;
|
|
760
|
+
createdBy: CosmosAddress;
|
|
761
|
+
};
|
|
762
|
+
userInputsSchema: Array<JsonBodyInputSchema>;
|
|
763
|
+
publicParamsSchema: Array<JsonBodyInputSchema | {
|
|
764
|
+
key: string;
|
|
765
|
+
label: string;
|
|
766
|
+
type: 'ownershipRequirements';
|
|
767
|
+
}>;
|
|
768
|
+
privateParamsSchema: Array<JsonBodyInputSchema | {
|
|
769
|
+
key: string;
|
|
770
|
+
label: string;
|
|
771
|
+
type: 'ownershipRequirements';
|
|
772
|
+
}>;
|
|
773
|
+
verificationCall?: {
|
|
774
|
+
uri: string;
|
|
775
|
+
method: 'POST' | 'GET' | 'PUT' | 'DELETE';
|
|
776
|
+
hardcodedInputs: Array<JsonBodyInputWithValue>;
|
|
777
|
+
passAddress: boolean;
|
|
778
|
+
passDiscord: boolean;
|
|
779
|
+
passEmail: boolean;
|
|
780
|
+
passTwitter: boolean;
|
|
781
|
+
passGoogle: boolean;
|
|
782
|
+
passGithub: boolean;
|
|
783
|
+
};
|
|
784
|
+
}
|
|
785
|
+
export interface iCreatePluginSuccessResponse {
|
|
786
|
+
}
|
|
787
|
+
export declare class CreatePluginSuccessResponse extends EmptyResponseClass {
|
|
788
|
+
}
|
|
789
|
+
export interface GetPluginBody {
|
|
790
|
+
createdPluginsOnly?: boolean;
|
|
791
|
+
}
|
|
792
|
+
export interface iGetPluginSuccessResponse {
|
|
793
|
+
plugins: iPluginDoc[];
|
|
794
|
+
}
|
|
795
|
+
export declare class GetPluginSuccessResponse extends CustomTypeClass<GetPluginSuccessResponse> implements iGetPluginSuccessResponse {
|
|
796
|
+
plugins: PluginDoc[];
|
|
797
|
+
constructor(data: iGetPluginSuccessResponse);
|
|
798
|
+
}
|
|
799
|
+
export interface DeleteClaimBody {
|
|
800
|
+
claimIds: string[];
|
|
801
|
+
}
|
|
802
|
+
export interface iDeleteClaimSuccessResponse {
|
|
803
|
+
}
|
|
804
|
+
export declare class DeleteClaimSuccessResponse extends EmptyResponseClass {
|
|
805
|
+
}
|
|
806
|
+
export interface UpdateClaimBody<T extends NumberType> {
|
|
807
|
+
claims: Omit<iClaimDetails<T>, 'seedCode'>[];
|
|
808
|
+
}
|
|
809
|
+
export interface iUpdateClaimSuccessResponse {
|
|
810
|
+
}
|
|
811
|
+
export declare class UpdateClaimSuccessResponse extends EmptyResponseClass {
|
|
812
|
+
}
|
|
813
|
+
export interface CreateClaimBody<T extends NumberType> {
|
|
814
|
+
claims: (iClaimDetails<T> & {
|
|
815
|
+
listId?: string;
|
|
816
|
+
collectionId?: T;
|
|
817
|
+
cid?: string;
|
|
818
|
+
})[];
|
|
819
|
+
}
|
|
820
|
+
export interface iCreateClaimSuccessResponse {
|
|
730
821
|
}
|
|
731
|
-
export declare class
|
|
822
|
+
export declare class CreateClaimSuccessResponse extends EmptyResponseClass {
|
|
732
823
|
}
|
|
733
824
|
//# sourceMappingURL=requests.d.ts.map
|