@uug-ai/models 1.7.42 → 1.7.43
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 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -30364,6 +30364,8 @@ export interface components {
|
|
|
30364
30364
|
[key: string]: unknown;
|
|
30365
30365
|
};
|
|
30366
30366
|
smoothed?: boolean;
|
|
30367
|
+
/** @description TimestampMs is the decoded image's presentation timestamp on the annotated
|
|
30368
|
+
* media asset's timeline. Zero is valid; nil means it was not supplied. */
|
|
30367
30369
|
timestampMs?: number;
|
|
30368
30370
|
w?: number;
|
|
30369
30371
|
x?: number;
|
|
@@ -35976,6 +35978,8 @@ export interface components {
|
|
|
35976
35978
|
"models.PatchVideowallOutput": {
|
|
35977
35979
|
videowall?: components["schemas"]["models.Videowall"];
|
|
35978
35980
|
};
|
|
35981
|
+
/** @enum {string} */
|
|
35982
|
+
"models.Permission": "cases.read" | "cases.create" | "cases.update" | "cases.share" | "cases.export" | "cases.runWorkflow" | "cases.delete" | "media.read" | "media.update" | "media.export" | "media.share" | "media.redact" | "media.delete";
|
|
35979
35983
|
/** @enum {integer} */
|
|
35980
35984
|
"models.PermissionLevel": 1 | 2 | 3 | 4 | 2 | 3 | 4 | 5 | 2 | 3 | 2 | 2 | 3 | 2 | 3 | 4;
|
|
35981
35985
|
"models.Permissions": {
|
|
@@ -36144,6 +36148,9 @@ export interface components {
|
|
|
36144
36148
|
* the consuming service resolves them together (page hidden => not shown;
|
|
36145
36149
|
* feature level => what may be done once on the page). */
|
|
36146
36150
|
pages?: string[];
|
|
36151
|
+
/** @description Permissions is the canonical set of domain.action grants carried by this
|
|
36152
|
+
* role. FeaturePermissions remains available during legacy migration. */
|
|
36153
|
+
permissions?: components["schemas"]["models.Permission"][];
|
|
36147
36154
|
/** @description ParentRole is the built-in BaseRole tier this custom role extends. It is a
|
|
36148
36155
|
* live tier identifier (NOT an ObjectID reference to another Role document):
|
|
36149
36156
|
* it sets the effective tier/RoleLevel for coarse gating and bounds which
|
|
@@ -36743,6 +36750,8 @@ export interface components {
|
|
|
36743
36750
|
edited?: boolean;
|
|
36744
36751
|
label?: string;
|
|
36745
36752
|
smoothed?: boolean;
|
|
36753
|
+
/** @description TimestampMs is the box's optional presentation time on the media timeline. */
|
|
36754
|
+
timestampMs?: number;
|
|
36746
36755
|
trackId?: string;
|
|
36747
36756
|
x1?: number;
|
|
36748
36757
|
x2?: number;
|