repzo 1.0.187 → 1.0.188
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 +3 -0
- package/package.json +1 -1
- package/src/types/index.ts +3 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -5754,6 +5754,7 @@ export declare namespace Service {
|
|
|
5754
5754
|
identifier?: number;
|
|
5755
5755
|
device_id?: string;
|
|
5756
5756
|
device_unique_id?: string;
|
|
5757
|
+
treat_invoice_as_proforma_for_etax?: boolean;
|
|
5757
5758
|
}
|
|
5758
5759
|
export type Data = InvoiceSchema;
|
|
5759
5760
|
export interface CreateBody {
|
|
@@ -6385,6 +6386,7 @@ export declare namespace Service {
|
|
|
6385
6386
|
field: "_id";
|
|
6386
6387
|
type: "asc" | "desc";
|
|
6387
6388
|
}[];
|
|
6389
|
+
treat_invoice_as_proforma_for_etax?: boolean;
|
|
6388
6390
|
};
|
|
6389
6391
|
interface Result extends DefaultPaginationResult {
|
|
6390
6392
|
data: InvoiceSchemaWithPopulatedKeys[];
|
|
@@ -6937,6 +6939,7 @@ export declare namespace Service {
|
|
|
6937
6939
|
}[];
|
|
6938
6940
|
nodeCycles?: string[] | string;
|
|
6939
6941
|
withCycle?: boolean;
|
|
6942
|
+
conversion_status?: "converted" | "not_converted" | "all";
|
|
6940
6943
|
};
|
|
6941
6944
|
interface Result extends DefaultPaginationResult {
|
|
6942
6945
|
data: ProformaSchemaWithPopulatedKeys[];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -6321,6 +6321,7 @@ export namespace Service {
|
|
|
6321
6321
|
identifier?: number;
|
|
6322
6322
|
device_id?: string;
|
|
6323
6323
|
device_unique_id?: string;
|
|
6324
|
+
treat_invoice_as_proforma_for_etax?: boolean;
|
|
6324
6325
|
}
|
|
6325
6326
|
export type Data = InvoiceSchema;
|
|
6326
6327
|
export interface CreateBody {
|
|
@@ -6927,6 +6928,7 @@ export namespace Service {
|
|
|
6927
6928
|
field: "_id";
|
|
6928
6929
|
type: "asc" | "desc";
|
|
6929
6930
|
}[];
|
|
6931
|
+
treat_invoice_as_proforma_for_etax?: boolean;
|
|
6930
6932
|
};
|
|
6931
6933
|
export interface Result extends DefaultPaginationResult {
|
|
6932
6934
|
data: InvoiceSchemaWithPopulatedKeys[];
|
|
@@ -7449,6 +7451,7 @@ export namespace Service {
|
|
|
7449
7451
|
}[];
|
|
7450
7452
|
nodeCycles?: string[] | string;
|
|
7451
7453
|
withCycle?: boolean;
|
|
7454
|
+
conversion_status?: "converted" | "not_converted" | "all";
|
|
7452
7455
|
};
|
|
7453
7456
|
export interface Result extends DefaultPaginationResult {
|
|
7454
7457
|
data: ProformaSchemaWithPopulatedKeys[];
|