shred-api-client 1.13.1 → 1.14.0
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.
|
@@ -91,12 +91,6 @@ interface Style {
|
|
|
91
91
|
label: string;
|
|
92
92
|
}
|
|
93
93
|
export declare const Styles: Style[];
|
|
94
|
-
type DenyFeedback = {
|
|
95
|
-
timestamp: number;
|
|
96
|
-
feedback: string;
|
|
97
|
-
resolved: boolean;
|
|
98
|
-
categories?: string[];
|
|
99
|
-
};
|
|
100
94
|
type TimelineItem = {
|
|
101
95
|
status: Status;
|
|
102
96
|
title: string;
|
|
@@ -118,20 +112,9 @@ type Project = {
|
|
|
118
112
|
userId: string;
|
|
119
113
|
assets?: Asset[];
|
|
120
114
|
expirationTimestamp: number;
|
|
121
|
-
timeline
|
|
122
|
-
approveTimestamp?: number;
|
|
123
|
-
sentToApproveTimestamp?: number;
|
|
115
|
+
timeline: TimelineItem[];
|
|
124
116
|
submitTimestamp: number;
|
|
125
|
-
editTimestamp?: number;
|
|
126
|
-
completeTimestamp?: number;
|
|
127
|
-
revisedAt?: number;
|
|
128
|
-
scheduledAt?: number;
|
|
129
|
-
scheduledTime?: number;
|
|
130
|
-
revision?: string;
|
|
131
|
-
canRevision: boolean;
|
|
132
|
-
denyFeedback?: DenyFeedback[];
|
|
133
|
-
approvedBy?: string;
|
|
134
|
-
status: Status;
|
|
135
117
|
tenantId?: string;
|
|
118
|
+
status: Status;
|
|
136
119
|
};
|
|
137
120
|
export { Project, ProjectAPISchema, ProjectEndpoints, TimelineItem };
|