@uug-ai/models 1.2.27 → 1.2.29
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 +50 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -7725,6 +7725,45 @@ export interface paths {
|
|
|
7725
7725
|
patch?: never;
|
|
7726
7726
|
trace?: never;
|
|
7727
7727
|
};
|
|
7728
|
+
"/internal/siteflags": {
|
|
7729
|
+
parameters: {
|
|
7730
|
+
query?: never;
|
|
7731
|
+
header?: never;
|
|
7732
|
+
path?: never;
|
|
7733
|
+
cookie?: never;
|
|
7734
|
+
};
|
|
7735
|
+
/**
|
|
7736
|
+
* Get SiteFlags (schema generation only)
|
|
7737
|
+
* @description Internal endpoint used only to ensure SiteFlags schema is generated in OpenAPI spec
|
|
7738
|
+
*/
|
|
7739
|
+
get: {
|
|
7740
|
+
parameters: {
|
|
7741
|
+
query?: never;
|
|
7742
|
+
header?: never;
|
|
7743
|
+
path?: never;
|
|
7744
|
+
cookie?: never;
|
|
7745
|
+
};
|
|
7746
|
+
requestBody?: never;
|
|
7747
|
+
responses: {
|
|
7748
|
+
/** @description OK */
|
|
7749
|
+
200: {
|
|
7750
|
+
headers: {
|
|
7751
|
+
[name: string]: unknown;
|
|
7752
|
+
};
|
|
7753
|
+
content: {
|
|
7754
|
+
"application/json": components["schemas"]["api.SiteFlags"];
|
|
7755
|
+
};
|
|
7756
|
+
};
|
|
7757
|
+
};
|
|
7758
|
+
};
|
|
7759
|
+
put?: never;
|
|
7760
|
+
post?: never;
|
|
7761
|
+
delete?: never;
|
|
7762
|
+
options?: never;
|
|
7763
|
+
head?: never;
|
|
7764
|
+
patch?: never;
|
|
7765
|
+
trace?: never;
|
|
7766
|
+
};
|
|
7728
7767
|
"/internal/sitemetadata": {
|
|
7729
7768
|
parameters: {
|
|
7730
7769
|
query?: never;
|
|
@@ -10022,6 +10061,7 @@ export interface components {
|
|
|
10022
10061
|
};
|
|
10023
10062
|
"api.GetSiteOptionsRequest": {
|
|
10024
10063
|
filter?: components["schemas"]["api.SiteFilter"];
|
|
10064
|
+
flags?: components["schemas"]["api.SiteFlags"];
|
|
10025
10065
|
pagination?: components["schemas"]["api.CursorPagination"];
|
|
10026
10066
|
};
|
|
10027
10067
|
"api.GetSiteOptionsResponse": {
|
|
@@ -10267,6 +10307,10 @@ export interface components {
|
|
|
10267
10307
|
metadata?: components["schemas"]["api.mediaMetadataPatch"];
|
|
10268
10308
|
};
|
|
10269
10309
|
"api.Metadata": {
|
|
10310
|
+
/** @description Name of the application */
|
|
10311
|
+
applicationName?: string;
|
|
10312
|
+
/** @description Version of the application */
|
|
10313
|
+
applicationVersion?: string;
|
|
10270
10314
|
data?: {
|
|
10271
10315
|
[key: string]: unknown;
|
|
10272
10316
|
};
|
|
@@ -10353,9 +10397,13 @@ export interface components {
|
|
|
10353
10397
|
force_sso_domains?: string[];
|
|
10354
10398
|
};
|
|
10355
10399
|
"api.SiteFilter": {
|
|
10400
|
+
deviceKeys?: string[];
|
|
10356
10401
|
name?: string;
|
|
10357
10402
|
siteIds?: string[];
|
|
10358
10403
|
};
|
|
10404
|
+
"api.SiteFlags": {
|
|
10405
|
+
includeMetadata?: boolean;
|
|
10406
|
+
};
|
|
10359
10407
|
"api.SubmitFaceRedactionErrorResponse": {
|
|
10360
10408
|
/** @description Application-specific error code */
|
|
10361
10409
|
applicationStatusCode?: string;
|
|
@@ -11664,6 +11712,7 @@ export interface components {
|
|
|
11664
11712
|
"models.SiteOption": {
|
|
11665
11713
|
devices?: string[];
|
|
11666
11714
|
groups?: string[];
|
|
11715
|
+
metadata?: components["schemas"]["models.SiteMetadata"];
|
|
11667
11716
|
text?: string;
|
|
11668
11717
|
value?: string;
|
|
11669
11718
|
};
|
|
@@ -12145,6 +12194,7 @@ export declare namespace api {
|
|
|
12145
12194
|
type SaveFaceRedactionSuccessResponse = components['schemas']['api.SaveFaceRedactionSuccessResponse'];
|
|
12146
12195
|
type SingleSignOnDomainsResponse = components['schemas']['api.SingleSignOnDomainsResponse'];
|
|
12147
12196
|
type SiteFilter = components['schemas']['api.SiteFilter'];
|
|
12197
|
+
type SiteFlags = components['schemas']['api.SiteFlags'];
|
|
12148
12198
|
type SubmitFaceRedactionErrorResponse = components['schemas']['api.SubmitFaceRedactionErrorResponse'];
|
|
12149
12199
|
type SubmitFaceRedactionRequest = components['schemas']['api.SubmitFaceRedactionRequest'];
|
|
12150
12200
|
type SubmitFaceRedactionResponse = components['schemas']['api.SubmitFaceRedactionResponse'];
|