repzo 1.0.181 → 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.
- package/lib/types/index.d.ts +7 -2
- package/package.json +1 -1
- package/src/types/index.ts +7 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -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 {
|
|
@@ -15658,7 +15663,7 @@ export declare namespace Service {
|
|
|
15658
15663
|
interface PlanedWorkorder extends Workorder {
|
|
15659
15664
|
_id: null;
|
|
15660
15665
|
status: null;
|
|
15661
|
-
|
|
15666
|
+
is_planned: true;
|
|
15662
15667
|
due_date: null;
|
|
15663
15668
|
start_date: null;
|
|
15664
15669
|
parent_workorder: string;
|
|
@@ -15666,7 +15671,7 @@ export declare namespace Service {
|
|
|
15666
15671
|
interface OriginWorkorder extends Workorder {
|
|
15667
15672
|
_id: string;
|
|
15668
15673
|
status: Workorder.Data["status"];
|
|
15669
|
-
|
|
15674
|
+
is_planned: false;
|
|
15670
15675
|
due_date: number;
|
|
15671
15676
|
start_date: number;
|
|
15672
15677
|
parent_workorder: null;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -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
|
|
|
@@ -17678,7 +17683,7 @@ export namespace Service {
|
|
|
17678
17683
|
export interface PlanedWorkorder extends Workorder {
|
|
17679
17684
|
_id: null;
|
|
17680
17685
|
status: null;
|
|
17681
|
-
|
|
17686
|
+
is_planned: true;
|
|
17682
17687
|
due_date: null;
|
|
17683
17688
|
start_date: null;
|
|
17684
17689
|
parent_workorder: string;
|
|
@@ -17687,7 +17692,7 @@ export namespace Service {
|
|
|
17687
17692
|
export interface OriginWorkorder extends Workorder {
|
|
17688
17693
|
_id: string;
|
|
17689
17694
|
status: Workorder.Data["status"];
|
|
17690
|
-
|
|
17695
|
+
is_planned: false;
|
|
17691
17696
|
due_date: number;
|
|
17692
17697
|
start_date: number;
|
|
17693
17698
|
parent_workorder: null;
|