repzo 1.0.159 → 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 +3 -3
- package/package.json +1 -1
- package/src/types/index.ts +12 -3
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;
|
|
@@ -15667,7 +15667,7 @@ interface ValidityCheck {
|
|
|
15667
15667
|
code: string;
|
|
15668
15668
|
}[];
|
|
15669
15669
|
}
|
|
15670
|
-
type PopulatedMediaStorage = Pick<Service.MediaStorage.MediaStorageSchema, "_id" | "createdAt" | "ContentType" | "media_type" | "mime_type" | "publicUrl" | "type_name" | "file_name" | "media_id" | "thumbnails" | "createdAt"> & {
|
|
15670
|
+
export type PopulatedMediaStorage = Pick<Service.MediaStorage.MediaStorageSchema, "_id" | "createdAt" | "ContentType" | "media_type" | "mime_type" | "publicUrl" | "type_name" | "file_name" | "media_id" | "thumbnails" | "createdAt"> & {
|
|
15671
15671
|
thumbnails: Pick<Service.MediaStorage.Thumbnail, "_id" | "ContentType" | "mime_type" | "publicUrl" | "type_name" | "file_name" | "createdAt">[];
|
|
15672
15672
|
};
|
|
15673
15673
|
interface ActivityComment {
|
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 ********************************************************************
|
|
@@ -17655,7 +17664,7 @@ interface ValidityCheck {
|
|
|
17655
17664
|
valid: boolean;
|
|
17656
17665
|
reasons: { message: string; code: string }[];
|
|
17657
17666
|
}
|
|
17658
|
-
type PopulatedMediaStorage = Pick<
|
|
17667
|
+
export type PopulatedMediaStorage = Pick<
|
|
17659
17668
|
Service.MediaStorage.MediaStorageSchema,
|
|
17660
17669
|
| "_id"
|
|
17661
17670
|
| "createdAt"
|