bitbadgesjs-sdk 0.4.15 → 0.4.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/cjs/api-indexer/docs/docs.d.ts +1 -1
- package/dist/cjs/api-indexer/docs/docs.js +1 -1
- package/dist/cjs/api-indexer/docs/interfaces.d.ts +1 -1
- package/dist/esm/api-indexer/docs/docs.d.ts +1 -1
- package/dist/esm/api-indexer/docs/docs.js +2 -2
- package/dist/esm/api-indexer/docs/interfaces.d.ts +1 -1
- package/package.json +1 -1
|
@@ -227,7 +227,7 @@ export declare class QueueDoc<T extends NumberType> extends BaseNumberTypeClass<
|
|
|
227
227
|
recipient: string;
|
|
228
228
|
amount: NumberType;
|
|
229
229
|
} | undefined;
|
|
230
|
-
|
|
230
|
+
actionConfig?: any;
|
|
231
231
|
constructor(data: iQueueDoc<T>);
|
|
232
232
|
getNumberFieldNames(): string[];
|
|
233
233
|
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): QueueDoc<U>;
|
|
@@ -264,7 +264,7 @@ class QueueDoc extends base_js_1.BaseNumberTypeClass {
|
|
|
264
264
|
this.notificationType = data.notificationType;
|
|
265
265
|
this.claimInfo = data.claimInfo;
|
|
266
266
|
this.faucetInfo = data.faucetInfo;
|
|
267
|
-
this.
|
|
267
|
+
this.actionConfig = data.actionConfig;
|
|
268
268
|
}
|
|
269
269
|
getNumberFieldNames() {
|
|
270
270
|
return ['collectionId', 'loadBalanceId', 'refreshRequestTime', 'numRetries', 'lastFetchedAt', 'deletedAt', 'nextFetchTime'];
|
|
@@ -227,7 +227,7 @@ export declare class QueueDoc<T extends NumberType> extends BaseNumberTypeClass<
|
|
|
227
227
|
recipient: string;
|
|
228
228
|
amount: NumberType;
|
|
229
229
|
} | undefined;
|
|
230
|
-
|
|
230
|
+
actionConfig?: any;
|
|
231
231
|
constructor(data: iQueueDoc<T>);
|
|
232
232
|
getNumberFieldNames(): string[];
|
|
233
233
|
convert<U extends NumberType>(convertFunction: (item: NumberType) => U): QueueDoc<U>;
|
|
@@ -332,7 +332,7 @@ export class QueueDoc extends BaseNumberTypeClass {
|
|
|
332
332
|
notificationType;
|
|
333
333
|
claimInfo;
|
|
334
334
|
faucetInfo;
|
|
335
|
-
|
|
335
|
+
actionConfig;
|
|
336
336
|
constructor(data) {
|
|
337
337
|
super();
|
|
338
338
|
this._docId = data._docId;
|
|
@@ -352,7 +352,7 @@ export class QueueDoc extends BaseNumberTypeClass {
|
|
|
352
352
|
this.notificationType = data.notificationType;
|
|
353
353
|
this.claimInfo = data.claimInfo;
|
|
354
354
|
this.faucetInfo = data.faucetInfo;
|
|
355
|
-
this.
|
|
355
|
+
this.actionConfig = data.actionConfig;
|
|
356
356
|
}
|
|
357
357
|
getNumberFieldNames() {
|
|
358
358
|
return ['collectionId', 'loadBalanceId', 'refreshRequestTime', 'numRetries', 'lastFetchedAt', 'deletedAt', 'nextFetchTime'];
|