@etainabl/nodejs-sdk 1.3.155 → 1.3.156

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/index.d.cts CHANGED
@@ -385,6 +385,10 @@ interface AccountThirdParty {
385
385
  name: string;
386
386
  deviceId: string;
387
387
  }
388
+ interface InvoiceValidationOptions {
389
+ mode?: 'normal' | 'fail' | 'skip';
390
+ note?: string;
391
+ }
388
392
  interface Account<IDType = ObjectId | string> {
389
393
  _id: IDType;
390
394
  name: string;
@@ -442,6 +446,7 @@ interface Account<IDType = ObjectId | string> {
442
446
  halfHourly?: Date;
443
447
  };
444
448
  };
449
+ invoiceValidation: InvoiceValidationOptions;
445
450
  automationIds?: IDType[];
446
451
  customIntegrations?: object;
447
452
  tags?: string[];
package/dist/index.d.ts CHANGED
@@ -385,6 +385,10 @@ interface AccountThirdParty {
385
385
  name: string;
386
386
  deviceId: string;
387
387
  }
388
+ interface InvoiceValidationOptions {
389
+ mode?: 'normal' | 'fail' | 'skip';
390
+ note?: string;
391
+ }
388
392
  interface Account<IDType = ObjectId | string> {
389
393
  _id: IDType;
390
394
  name: string;
@@ -442,6 +446,7 @@ interface Account<IDType = ObjectId | string> {
442
446
  halfHourly?: Date;
443
447
  };
444
448
  };
449
+ invoiceValidation: InvoiceValidationOptions;
445
450
  automationIds?: IDType[];
446
451
  customIntegrations?: object;
447
452
  tags?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etainabl/nodejs-sdk",
3
- "version": "1.3.155",
3
+ "version": "1.3.156",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.mjs",