repzo 1.0.160 → 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 +4 -4
- package/package.json +1 -1
- package/src/types/index.ts +22 -4
package/lib/types/index.d.ts
CHANGED
|
@@ -15361,11 +15361,11 @@ export declare namespace Service {
|
|
|
15361
15361
|
} & Pick<ActivityFeedback.Data, "feed_back_option">;
|
|
15362
15362
|
export type ApprovalRequestDetails = {
|
|
15363
15363
|
activity_type: "approval-request";
|
|
15364
|
-
} & Pick<ApprovalRequest.Data, "serial_number" | "type" | "subtype">;
|
|
15364
|
+
} & Pick<ApprovalRequest.Data, "serial_number" | "type" | "subtype" | "creator" | "comment" | "status">;
|
|
15365
15365
|
export type ApprovalRequestVisitDetails = {
|
|
15366
15366
|
activity_type: "approval-request";
|
|
15367
15367
|
activity_id: StringId;
|
|
15368
|
-
} & Pick<ApprovalRequest.Data, "serial_number" | "type" | "subtype" | "time">;
|
|
15368
|
+
} & Pick<ApprovalRequest.Data, "serial_number" | "type" | "subtype" | "time" | "creator" | "comment" | "status">;
|
|
15369
15369
|
export type ReminderDetails = {
|
|
15370
15370
|
activity_type: "reminders";
|
|
15371
15371
|
cover_photo_populated?: StringId | PopulatedMediaStorage;
|
|
@@ -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
|
@@ -17159,13 +17159,22 @@ export namespace Service {
|
|
|
17159
17159
|
// ApprovalRequest ********************************************************************
|
|
17160
17160
|
export type ApprovalRequestDetails = {
|
|
17161
17161
|
activity_type: "approval-request";
|
|
17162
|
-
} & Pick<
|
|
17162
|
+
} & Pick<
|
|
17163
|
+
ApprovalRequest.Data,
|
|
17164
|
+
"serial_number" | "type" | "subtype" | "creator" | "comment" | "status"
|
|
17165
|
+
>;
|
|
17163
17166
|
export type ApprovalRequestVisitDetails = {
|
|
17164
17167
|
activity_type: "approval-request";
|
|
17165
17168
|
activity_id: StringId;
|
|
17166
17169
|
} & Pick<
|
|
17167
17170
|
ApprovalRequest.Data,
|
|
17168
|
-
|
|
17171
|
+
| "serial_number"
|
|
17172
|
+
| "type"
|
|
17173
|
+
| "subtype"
|
|
17174
|
+
| "time"
|
|
17175
|
+
| "creator"
|
|
17176
|
+
| "comment"
|
|
17177
|
+
| "status"
|
|
17169
17178
|
>;
|
|
17170
17179
|
|
|
17171
17180
|
// Reminder ********************************************************************
|
|
@@ -17419,13 +17428,22 @@ export namespace Service {
|
|
|
17419
17428
|
// Workorder ********************************************************************
|
|
17420
17429
|
export type WorkorderDetails = { activity_type: "workorder" } & Pick<
|
|
17421
17430
|
Workorder.Data,
|
|
17422
|
-
|
|
17431
|
+
| "name"
|
|
17432
|
+
| "serial_number"
|
|
17433
|
+
| "due_date"
|
|
17434
|
+
| "status"
|
|
17435
|
+
| "description"
|
|
17436
|
+
| "priority"
|
|
17437
|
+
| "media"
|
|
17423
17438
|
>;
|
|
17424
17439
|
|
|
17425
17440
|
// WorkorderRequest ********************************************************************
|
|
17426
17441
|
export type WorkorderRequestDetails = {
|
|
17427
17442
|
activity_type: "workorder-request";
|
|
17428
|
-
} & Pick<
|
|
17443
|
+
} & Pick<
|
|
17444
|
+
WorkorderRequest.Data,
|
|
17445
|
+
"name" | "media" | "description" | "priority" | "status"
|
|
17446
|
+
>;
|
|
17429
17447
|
|
|
17430
17448
|
// ReturnWholeInvoice ********************************************************************
|
|
17431
17449
|
export type ReturnWholeInvoiceDetails = {
|