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.
@@ -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
- axiosPayload?: any;
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.axiosPayload = data.axiosPayload;
267
+ this.actionConfig = data.actionConfig;
268
268
  }
269
269
  getNumberFieldNames() {
270
270
  return ['collectionId', 'loadBalanceId', 'refreshRequestTime', 'numRetries', 'lastFetchedAt', 'deletedAt', 'nextFetchTime'];
@@ -244,7 +244,7 @@ export interface iQueueDoc<T extends NumberType> extends Doc {
244
244
  recipientAddress?: string;
245
245
  activityDocId?: string;
246
246
  notificationType?: string;
247
- axiosPayload?: any;
247
+ actionConfig?: any;
248
248
  claimInfo?: {
249
249
  session: any;
250
250
  body: any;
@@ -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
- axiosPayload?: any;
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
- axiosPayload;
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.axiosPayload = data.axiosPayload;
355
+ this.actionConfig = data.actionConfig;
356
356
  }
357
357
  getNumberFieldNames() {
358
358
  return ['collectionId', 'loadBalanceId', 'refreshRequestTime', 'numRetries', 'lastFetchedAt', 'deletedAt', 'nextFetchTime'];
@@ -244,7 +244,7 @@ export interface iQueueDoc<T extends NumberType> extends Doc {
244
244
  recipientAddress?: string;
245
245
  activityDocId?: string;
246
246
  notificationType?: string;
247
- axiosPayload?: any;
247
+ actionConfig?: any;
248
248
  claimInfo?: {
249
249
  session: any;
250
250
  body: any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bitbadgesjs-sdk",
3
3
  "description": "SDK for BitBadges development",
4
- "version": "0.4.15",
4
+ "version": "0.4.16",
5
5
  "license": "MIT",
6
6
  "eslintIgnore": [
7
7
  "src/proto/**/*.ts"