repzo 1.0.182 → 1.0.184
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 +11 -0
- package/package.json +1 -1
- package/src/types/index.ts +11 -0
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[];
|
|
@@ -2726,6 +2728,9 @@ export declare namespace Service {
|
|
|
2726
2728
|
name: string;
|
|
2727
2729
|
username: string;
|
|
2728
2730
|
password: string;
|
|
2731
|
+
[key: `integration_meta.${string}`]: any;
|
|
2732
|
+
[key: `customFields.${string}`]: any;
|
|
2733
|
+
[key: `settings.${string}`]: any;
|
|
2729
2734
|
}
|
|
2730
2735
|
type Result = RepSchema;
|
|
2731
2736
|
}
|
|
@@ -2736,6 +2741,9 @@ export declare namespace Service {
|
|
|
2736
2741
|
createdAt?: string;
|
|
2737
2742
|
updatedAt?: string;
|
|
2738
2743
|
__v?: number;
|
|
2744
|
+
[key: `integration_meta.${string}`]: any;
|
|
2745
|
+
[key: `customFields.${string}`]: any;
|
|
2746
|
+
[key: `settings.${string}`]: any;
|
|
2739
2747
|
}
|
|
2740
2748
|
type Result = RepSchema;
|
|
2741
2749
|
}
|
|
@@ -15005,6 +15013,7 @@ export declare namespace Service {
|
|
|
15005
15013
|
max_billing_reps: number;
|
|
15006
15014
|
max_billing_admins: number;
|
|
15007
15015
|
max_billing_users: number;
|
|
15016
|
+
allow_treating_invoice_as_proforma_for_etax?: boolean;
|
|
15008
15017
|
createdAt: Date;
|
|
15009
15018
|
updatedAt: Date;
|
|
15010
15019
|
}
|
|
@@ -15043,6 +15052,7 @@ export declare namespace Service {
|
|
|
15043
15052
|
nameSpace: string[];
|
|
15044
15053
|
assessment_enforcement_state: "suggest" | "enforce" | "ignore";
|
|
15045
15054
|
repzo_internal_user: boolean;
|
|
15055
|
+
allow_treating_invoice_as_proforma_for_etax: boolean;
|
|
15046
15056
|
}
|
|
15047
15057
|
export {};
|
|
15048
15058
|
}
|
|
@@ -15064,6 +15074,7 @@ export declare namespace Service {
|
|
|
15064
15074
|
is_test: boolean;
|
|
15065
15075
|
suspended: boolean;
|
|
15066
15076
|
nameSpace: string[];
|
|
15077
|
+
allow_treating_invoice_as_proforma_for_etax: boolean;
|
|
15067
15078
|
}
|
|
15068
15079
|
}
|
|
15069
15080
|
namespace Authenticate {
|
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[];
|
|
@@ -3146,6 +3148,9 @@ export namespace Service {
|
|
|
3146
3148
|
name: string;
|
|
3147
3149
|
username: string;
|
|
3148
3150
|
password: string;
|
|
3151
|
+
[key: `integration_meta.${string}`]: any;
|
|
3152
|
+
[key: `customFields.${string}`]: any;
|
|
3153
|
+
[key: `settings.${string}`]: any;
|
|
3149
3154
|
}
|
|
3150
3155
|
export type Result = RepSchema;
|
|
3151
3156
|
}
|
|
@@ -3157,6 +3162,9 @@ export namespace Service {
|
|
|
3157
3162
|
createdAt?: string;
|
|
3158
3163
|
updatedAt?: string;
|
|
3159
3164
|
__v?: number;
|
|
3165
|
+
[key: `integration_meta.${string}`]: any;
|
|
3166
|
+
[key: `customFields.${string}`]: any;
|
|
3167
|
+
[key: `settings.${string}`]: any;
|
|
3160
3168
|
}
|
|
3161
3169
|
export type Result = RepSchema;
|
|
3162
3170
|
}
|
|
@@ -16363,6 +16371,7 @@ export namespace Service {
|
|
|
16363
16371
|
max_billing_reps: number;
|
|
16364
16372
|
max_billing_admins: number;
|
|
16365
16373
|
max_billing_users: number;
|
|
16374
|
+
allow_treating_invoice_as_proforma_for_etax?: boolean;
|
|
16366
16375
|
createdAt: Date;
|
|
16367
16376
|
updatedAt: Date;
|
|
16368
16377
|
}
|
|
@@ -16400,6 +16409,7 @@ export namespace Service {
|
|
|
16400
16409
|
nameSpace: string[];
|
|
16401
16410
|
assessment_enforcement_state: "suggest" | "enforce" | "ignore";
|
|
16402
16411
|
repzo_internal_user: boolean;
|
|
16412
|
+
allow_treating_invoice_as_proforma_for_etax: boolean;
|
|
16403
16413
|
}
|
|
16404
16414
|
}
|
|
16405
16415
|
|
|
@@ -16421,6 +16431,7 @@ export namespace Service {
|
|
|
16421
16431
|
is_test: boolean;
|
|
16422
16432
|
suspended: boolean;
|
|
16423
16433
|
nameSpace: string[];
|
|
16434
|
+
allow_treating_invoice_as_proforma_for_etax: boolean;
|
|
16424
16435
|
}
|
|
16425
16436
|
}
|
|
16426
16437
|
|