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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.161",
3
+ "version": "1.0.162",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -17428,13 +17428,22 @@ export namespace Service {
17428
17428
  // Workorder ********************************************************************
17429
17429
  export type WorkorderDetails = { activity_type: "workorder" } & Pick<
17430
17430
  Workorder.Data,
17431
- "name" | "serial_number" | "due_date"
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<WorkorderRequest.Data, "name">;
17443
+ } & Pick<
17444
+ WorkorderRequest.Data,
17445
+ "name" | "media" | "description" | "priority" | "status"
17446
+ >;
17438
17447
 
17439
17448
  // ReturnWholeInvoice ********************************************************************
17440
17449
  export type ReturnWholeInvoiceDetails = {