@uug-ai/models 1.2.28 → 1.3.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.
- package/dist/types.d.ts +46 -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": {
|
|
@@ -10357,9 +10397,13 @@ export interface components {
|
|
|
10357
10397
|
force_sso_domains?: string[];
|
|
10358
10398
|
};
|
|
10359
10399
|
"api.SiteFilter": {
|
|
10400
|
+
deviceKeys?: string[];
|
|
10360
10401
|
name?: string;
|
|
10361
10402
|
siteIds?: string[];
|
|
10362
10403
|
};
|
|
10404
|
+
"api.SiteFlags": {
|
|
10405
|
+
includeMetadata?: boolean;
|
|
10406
|
+
};
|
|
10363
10407
|
"api.SubmitFaceRedactionErrorResponse": {
|
|
10364
10408
|
/** @description Application-specific error code */
|
|
10365
10409
|
applicationStatusCode?: string;
|
|
@@ -11668,6 +11712,7 @@ export interface components {
|
|
|
11668
11712
|
"models.SiteOption": {
|
|
11669
11713
|
devices?: string[];
|
|
11670
11714
|
groups?: string[];
|
|
11715
|
+
metadata?: components["schemas"]["models.SiteMetadata"];
|
|
11671
11716
|
text?: string;
|
|
11672
11717
|
value?: string;
|
|
11673
11718
|
};
|
|
@@ -12149,6 +12194,7 @@ export declare namespace api {
|
|
|
12149
12194
|
type SaveFaceRedactionSuccessResponse = components['schemas']['api.SaveFaceRedactionSuccessResponse'];
|
|
12150
12195
|
type SingleSignOnDomainsResponse = components['schemas']['api.SingleSignOnDomainsResponse'];
|
|
12151
12196
|
type SiteFilter = components['schemas']['api.SiteFilter'];
|
|
12197
|
+
type SiteFlags = components['schemas']['api.SiteFlags'];
|
|
12152
12198
|
type SubmitFaceRedactionErrorResponse = components['schemas']['api.SubmitFaceRedactionErrorResponse'];
|
|
12153
12199
|
type SubmitFaceRedactionRequest = components['schemas']['api.SubmitFaceRedactionRequest'];
|
|
12154
12200
|
type SubmitFaceRedactionResponse = components['schemas']['api.SubmitFaceRedactionResponse'];
|