repzo 1.0.182 → 1.0.183

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.
@@ -2453,6 +2453,7 @@ export declare namespace Service {
2453
2453
  watermark_date?: boolean;
2454
2454
  watermark_coordinates?: boolean;
2455
2455
  rep_must_end_day_after: `${number}:${number}`;
2456
+ treating_invoice_as_proforma_for_etax?: boolean;
2456
2457
  }
2457
2458
  type JobOption = 0 | 1 | 2;
2458
2459
  export interface RepSchema {
@@ -2687,6 +2688,7 @@ export declare namespace Service {
2687
2688
  "settings.disable_auto_time_date_enforcement"?: boolean;
2688
2689
  "settings.start_day_specific_time_frame_start"?: string;
2689
2690
  "settings.start_day_specific_time_frame_end"?: string;
2691
+ "settings.treating_invoice_as_proforma_for_etax"?: boolean;
2690
2692
  is_test?: boolean;
2691
2693
  form_v2_option?: "all" | "none" | "assigned" | "client_assigned";
2692
2694
  assigned_forms_v2?: string | string[];
@@ -15005,6 +15007,7 @@ export declare namespace Service {
15005
15007
  max_billing_reps: number;
15006
15008
  max_billing_admins: number;
15007
15009
  max_billing_users: number;
15010
+ allow_treating_invoice_as_proforma_for_etax?: boolean;
15008
15011
  createdAt: Date;
15009
15012
  updatedAt: Date;
15010
15013
  }
@@ -15043,6 +15046,7 @@ export declare namespace Service {
15043
15046
  nameSpace: string[];
15044
15047
  assessment_enforcement_state: "suggest" | "enforce" | "ignore";
15045
15048
  repzo_internal_user: boolean;
15049
+ allow_treating_invoice_as_proforma_for_etax: boolean;
15046
15050
  }
15047
15051
  export {};
15048
15052
  }
@@ -15064,6 +15068,7 @@ export declare namespace Service {
15064
15068
  is_test: boolean;
15065
15069
  suspended: boolean;
15066
15070
  nameSpace: string[];
15071
+ allow_treating_invoice_as_proforma_for_etax: boolean;
15067
15072
  }
15068
15073
  }
15069
15074
  namespace Authenticate {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.182",
3
+ "version": "1.0.183",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -2836,6 +2836,7 @@ export namespace Service {
2836
2836
  watermark_date?: boolean;
2837
2837
  watermark_coordinates?: boolean;
2838
2838
  rep_must_end_day_after: `${number}:${number}`;
2839
+ treating_invoice_as_proforma_for_etax?: boolean;
2839
2840
  }
2840
2841
  type JobOption = 0 | 1 | 2;
2841
2842
  export interface RepSchema {
@@ -3096,6 +3097,7 @@ export namespace Service {
3096
3097
  "settings.disable_auto_time_date_enforcement"?: boolean;
3097
3098
  "settings.start_day_specific_time_frame_start"?: string;
3098
3099
  "settings.start_day_specific_time_frame_end"?: string;
3100
+ "settings.treating_invoice_as_proforma_for_etax"?: boolean;
3099
3101
  is_test?: boolean;
3100
3102
  form_v2_option?: "all" | "none" | "assigned" | "client_assigned";
3101
3103
  assigned_forms_v2?: string | string[];
@@ -16363,6 +16365,7 @@ export namespace Service {
16363
16365
  max_billing_reps: number;
16364
16366
  max_billing_admins: number;
16365
16367
  max_billing_users: number;
16368
+ allow_treating_invoice_as_proforma_for_etax?: boolean;
16366
16369
  createdAt: Date;
16367
16370
  updatedAt: Date;
16368
16371
  }
@@ -16400,6 +16403,7 @@ export namespace Service {
16400
16403
  nameSpace: string[];
16401
16404
  assessment_enforcement_state: "suggest" | "enforce" | "ignore";
16402
16405
  repzo_internal_user: boolean;
16406
+ allow_treating_invoice_as_proforma_for_etax: boolean;
16403
16407
  }
16404
16408
  }
16405
16409
 
@@ -16421,6 +16425,7 @@ export namespace Service {
16421
16425
  is_test: boolean;
16422
16426
  suspended: boolean;
16423
16427
  nameSpace: string[];
16428
+ allow_treating_invoice_as_proforma_for_etax: boolean;
16424
16429
  }
16425
16430
  }
16426
16431