repzo 1.0.161 → 1.0.162
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 +2 -2
- package/package.json +1 -1
- package/src/types/index.ts +11 -2
package/lib/types/index.d.ts
CHANGED
|
@@ -15473,10 +15473,10 @@ export declare namespace Service {
|
|
|
15473
15473
|
} & Pick<Proforma.Data, "total" | "serial_number" | "currency" | "time" | "issue_date" | "external_serial_number">;
|
|
15474
15474
|
export type WorkorderDetails = {
|
|
15475
15475
|
activity_type: "workorder";
|
|
15476
|
-
} & Pick<Workorder.Data, "name" | "serial_number" | "due_date">;
|
|
15476
|
+
} & Pick<Workorder.Data, "name" | "serial_number" | "due_date" | "status" | "description" | "priority" | "media">;
|
|
15477
15477
|
export type WorkorderRequestDetails = {
|
|
15478
15478
|
activity_type: "workorder-request";
|
|
15479
|
-
} & Pick<WorkorderRequest.Data, "name">;
|
|
15479
|
+
} & Pick<WorkorderRequest.Data, "name" | "media" | "description" | "priority" | "status">;
|
|
15480
15480
|
export type ReturnWholeInvoiceDetails = {
|
|
15481
15481
|
activity_type: "return-whole-invoice";
|
|
15482
15482
|
returned_from_serial_number: FullInvoice.Data["returned_from_serial_number"];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -17428,13 +17428,22 @@ export namespace Service {
|
|
|
17428
17428
|
// Workorder ********************************************************************
|
|
17429
17429
|
export type WorkorderDetails = { activity_type: "workorder" } & Pick<
|
|
17430
17430
|
Workorder.Data,
|
|
17431
|
-
|
|
17431
|
+
| "name"
|
|
17432
|
+
| "serial_number"
|
|
17433
|
+
| "due_date"
|
|
17434
|
+
| "status"
|
|
17435
|
+
| "description"
|
|
17436
|
+
| "priority"
|
|
17437
|
+
| "media"
|
|
17432
17438
|
>;
|
|
17433
17439
|
|
|
17434
17440
|
// WorkorderRequest ********************************************************************
|
|
17435
17441
|
export type WorkorderRequestDetails = {
|
|
17436
17442
|
activity_type: "workorder-request";
|
|
17437
|
-
} & Pick<
|
|
17443
|
+
} & Pick<
|
|
17444
|
+
WorkorderRequest.Data,
|
|
17445
|
+
"name" | "media" | "description" | "priority" | "status"
|
|
17446
|
+
>;
|
|
17438
17447
|
|
|
17439
17448
|
// ReturnWholeInvoice ********************************************************************
|
|
17440
17449
|
export type ReturnWholeInvoiceDetails = {
|