@uug-ai/models 1.7.12 → 1.7.13
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/dist/types.d.ts +9 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -32718,6 +32718,7 @@ export interface components {
|
|
|
32718
32718
|
object_id?: string;
|
|
32719
32719
|
object_name?: string;
|
|
32720
32720
|
organisationId?: string;
|
|
32721
|
+
projectId?: string;
|
|
32721
32722
|
segment_id?: string;
|
|
32722
32723
|
sequence_id?: string;
|
|
32723
32724
|
timestamp?: number;
|
|
@@ -34145,6 +34146,7 @@ export interface components {
|
|
|
34145
34146
|
id?: string;
|
|
34146
34147
|
key?: string;
|
|
34147
34148
|
organisationId?: string;
|
|
34149
|
+
projectId?: string;
|
|
34148
34150
|
timestamp?: number;
|
|
34149
34151
|
user_id?: string;
|
|
34150
34152
|
};
|
|
@@ -34854,14 +34856,18 @@ export interface components {
|
|
|
34854
34856
|
"models.MonitorStage": {
|
|
34855
34857
|
activity?: components["schemas"]["models.Activity"];
|
|
34856
34858
|
highUpload?: components["schemas"]["models.HighUpload"];
|
|
34857
|
-
/** @description Add fields relevant to monitor stage */
|
|
34858
34859
|
monitorData?: string;
|
|
34859
34860
|
name?: string;
|
|
34861
|
+
/**
|
|
34862
|
+
* @description OrganisationId and ProjectId snapshot the stored source device's ownership;
|
|
34863
|
+
* nested user and payload fields are mutable actor/request context instead.
|
|
34864
|
+
*/
|
|
34865
|
+
organisationId?: string;
|
|
34860
34866
|
plans?: {
|
|
34861
34867
|
[key: string]: components["schemas"]["models.Plan"];
|
|
34862
34868
|
};
|
|
34869
|
+
projectId?: string;
|
|
34863
34870
|
subscription?: components["schemas"]["models.Subscription"];
|
|
34864
|
-
/** @description Add more fields as needed */
|
|
34865
34871
|
user?: components["schemas"]["models.User"];
|
|
34866
34872
|
};
|
|
34867
34873
|
/** @enum {string} */
|
|
@@ -36641,6 +36647,7 @@ export interface components {
|
|
|
36641
36647
|
"models.WorkflowTriggerType": "automatic" | "manual";
|
|
36642
36648
|
"models.WorkflowUser": {
|
|
36643
36649
|
organisationId?: string;
|
|
36650
|
+
projectId?: string;
|
|
36644
36651
|
storage?: components["schemas"]["models.Storage"];
|
|
36645
36652
|
};
|
|
36646
36653
|
};
|