repzo 1.0.160 → 1.0.161
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
|
@@ -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;
|
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 ********************************************************************
|