repzo 1.0.249 → 1.0.250
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 +16 -0
- package/package.json +1 -1
- package/src/types/index.ts +16 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -5875,6 +5875,8 @@ export declare namespace Service {
|
|
|
5875
5875
|
device_id?: string;
|
|
5876
5876
|
device_unique_id?: string;
|
|
5877
5877
|
treat_invoice_as_proforma_for_etax?: boolean;
|
|
5878
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
5879
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
5878
5880
|
}
|
|
5879
5881
|
export type Data = InvoiceSchema;
|
|
5880
5882
|
export interface CreateBody {
|
|
@@ -6083,6 +6085,8 @@ export declare namespace Service {
|
|
|
6083
6085
|
device_unique_id?: string;
|
|
6084
6086
|
implemented_by?: AdminCreator | RepCreator | ClientCreator;
|
|
6085
6087
|
business_day?: string;
|
|
6088
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6089
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6086
6090
|
}
|
|
6087
6091
|
export interface UpdateBody {
|
|
6088
6092
|
integration_meta?: {
|
|
@@ -6476,6 +6480,8 @@ export declare namespace Service {
|
|
|
6476
6480
|
device_unique_id?: string;
|
|
6477
6481
|
implemented_by?: AdminCreator | RepCreator | ClientCreator;
|
|
6478
6482
|
business_day?: string;
|
|
6483
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6484
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6479
6485
|
};
|
|
6480
6486
|
type InvoiceStatus = "paid" | "unpaid" | "partially_paid";
|
|
6481
6487
|
type PopulatedKeys = "client" | "tax_number" | "custom_status" | "return_reason" | "teams" | "warehouse" | "route" | "workorder" | "returned_from" | "partially_returned_from" | "returned_to";
|
|
@@ -6645,6 +6651,8 @@ export declare namespace Service {
|
|
|
6645
6651
|
total_with_charges?: number;
|
|
6646
6652
|
media?: StringId[];
|
|
6647
6653
|
signature?: StringId;
|
|
6654
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6655
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6648
6656
|
createdAt: string;
|
|
6649
6657
|
updatedAt: string;
|
|
6650
6658
|
__v: number;
|
|
@@ -6754,6 +6762,8 @@ export declare namespace Service {
|
|
|
6754
6762
|
total_with_charges?: number;
|
|
6755
6763
|
media?: StringId[];
|
|
6756
6764
|
signature?: StringId;
|
|
6765
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6766
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6757
6767
|
}
|
|
6758
6768
|
export interface UpdateBody {
|
|
6759
6769
|
_id?: string;
|
|
@@ -6866,6 +6876,8 @@ export declare namespace Service {
|
|
|
6866
6876
|
total_with_charges?: number;
|
|
6867
6877
|
media?: StringId[];
|
|
6868
6878
|
signature?: StringId;
|
|
6879
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6880
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6869
6881
|
createdAt?: string;
|
|
6870
6882
|
updatedAt?: string;
|
|
6871
6883
|
__v?: number;
|
|
@@ -10736,6 +10748,8 @@ export declare namespace Service {
|
|
|
10736
10748
|
client_name: string;
|
|
10737
10749
|
comment?: string;
|
|
10738
10750
|
return_comment?: string;
|
|
10751
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
10752
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
10739
10753
|
creator: {
|
|
10740
10754
|
_id: string;
|
|
10741
10755
|
type: "rep" | "client" | "admin";
|
|
@@ -10984,6 +10998,8 @@ export declare namespace Service {
|
|
|
10984
10998
|
client?: string;
|
|
10985
10999
|
name?: string;
|
|
10986
11000
|
};
|
|
11001
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
11002
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
10987
11003
|
converted_proforma_serial_number?: SerialNumber;
|
|
10988
11004
|
converted_proforma_return_serial_number?: SerialNumber;
|
|
10989
11005
|
proforma_reference?: string;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -6491,6 +6491,8 @@ export namespace Service {
|
|
|
6491
6491
|
device_id?: string;
|
|
6492
6492
|
device_unique_id?: string;
|
|
6493
6493
|
treat_invoice_as_proforma_for_etax?: boolean;
|
|
6494
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6495
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6494
6496
|
}
|
|
6495
6497
|
export type Data = InvoiceSchema;
|
|
6496
6498
|
export interface CreateBody {
|
|
@@ -6682,6 +6684,8 @@ export namespace Service {
|
|
|
6682
6684
|
device_unique_id?: string;
|
|
6683
6685
|
implemented_by?: AdminCreator | RepCreator | ClientCreator;
|
|
6684
6686
|
business_day?: string;
|
|
6687
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
6688
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
6685
6689
|
}
|
|
6686
6690
|
export interface UpdateBody {
|
|
6687
6691
|
integration_meta?: { [key: string]: any };
|
|
@@ -7048,6 +7052,8 @@ export namespace Service {
|
|
|
7048
7052
|
device_unique_id?: string;
|
|
7049
7053
|
implemented_by?: AdminCreator | RepCreator | ClientCreator;
|
|
7050
7054
|
business_day?: string;
|
|
7055
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
7056
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
7051
7057
|
};
|
|
7052
7058
|
|
|
7053
7059
|
type InvoiceStatus = "paid" | "unpaid" | "partially_paid";
|
|
@@ -7231,6 +7237,8 @@ export namespace Service {
|
|
|
7231
7237
|
total_with_charges?: number;
|
|
7232
7238
|
media?: StringId[];
|
|
7233
7239
|
signature?: StringId;
|
|
7240
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
7241
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
7234
7242
|
createdAt: string;
|
|
7235
7243
|
updatedAt: string;
|
|
7236
7244
|
__v: number;
|
|
@@ -7332,6 +7340,8 @@ export namespace Service {
|
|
|
7332
7340
|
total_with_charges?: number;
|
|
7333
7341
|
media?: StringId[];
|
|
7334
7342
|
signature?: StringId;
|
|
7343
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
7344
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
7335
7345
|
}
|
|
7336
7346
|
export interface UpdateBody {
|
|
7337
7347
|
_id?: string;
|
|
@@ -7436,6 +7446,8 @@ export namespace Service {
|
|
|
7436
7446
|
total_with_charges?: number;
|
|
7437
7447
|
media?: StringId[];
|
|
7438
7448
|
signature?: StringId;
|
|
7449
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
7450
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
7439
7451
|
createdAt?: string;
|
|
7440
7452
|
updatedAt?: string;
|
|
7441
7453
|
__v?: number;
|
|
@@ -11398,6 +11410,8 @@ export namespace Service {
|
|
|
11398
11410
|
client_name: string;
|
|
11399
11411
|
comment?: string;
|
|
11400
11412
|
return_comment?: string;
|
|
11413
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
11414
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
11401
11415
|
creator: {
|
|
11402
11416
|
_id: string;
|
|
11403
11417
|
type: "rep" | "client" | "admin";
|
|
@@ -11615,6 +11629,8 @@ export namespace Service {
|
|
|
11615
11629
|
client?: string;
|
|
11616
11630
|
name?: string;
|
|
11617
11631
|
};
|
|
11632
|
+
bypass_freshness_window_code_entered?: boolean;
|
|
11633
|
+
promotion_freshness_window_exceeded?: boolean;
|
|
11618
11634
|
converted_proforma_serial_number?: SerialNumber;
|
|
11619
11635
|
converted_proforma_return_serial_number?: SerialNumber;
|
|
11620
11636
|
proforma_reference?: string;
|