@uug-ai/models 1.4.59 → 1.5.1

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +196 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -11391,6 +11391,123 @@ export interface paths {
11391
11391
  patch?: never;
11392
11392
  trace?: never;
11393
11393
  };
11394
+ "/internal/getruntimeconfigerrorresponse": {
11395
+ parameters: {
11396
+ query?: never;
11397
+ header?: never;
11398
+ path?: never;
11399
+ cookie?: never;
11400
+ };
11401
+ /**
11402
+ * Get GetRuntimeConfigErrorResponse (schema generation only)
11403
+ * @description Internal endpoint used only to ensure GetRuntimeConfigErrorResponse schema is generated in OpenAPI spec
11404
+ */
11405
+ get: {
11406
+ parameters: {
11407
+ query?: never;
11408
+ header?: never;
11409
+ path?: never;
11410
+ cookie?: never;
11411
+ };
11412
+ requestBody?: never;
11413
+ responses: {
11414
+ /** @description OK */
11415
+ 200: {
11416
+ headers: {
11417
+ [name: string]: unknown;
11418
+ };
11419
+ content: {
11420
+ "application/json": components["schemas"]["api.GetRuntimeConfigErrorResponse"];
11421
+ };
11422
+ };
11423
+ };
11424
+ };
11425
+ put?: never;
11426
+ post?: never;
11427
+ delete?: never;
11428
+ options?: never;
11429
+ head?: never;
11430
+ patch?: never;
11431
+ trace?: never;
11432
+ };
11433
+ "/internal/getruntimeconfigresponse": {
11434
+ parameters: {
11435
+ query?: never;
11436
+ header?: never;
11437
+ path?: never;
11438
+ cookie?: never;
11439
+ };
11440
+ /**
11441
+ * Get GetRuntimeConfigResponse (schema generation only)
11442
+ * @description Internal endpoint used only to ensure GetRuntimeConfigResponse schema is generated in OpenAPI spec
11443
+ */
11444
+ get: {
11445
+ parameters: {
11446
+ query?: never;
11447
+ header?: never;
11448
+ path?: never;
11449
+ cookie?: never;
11450
+ };
11451
+ requestBody?: never;
11452
+ responses: {
11453
+ /** @description OK */
11454
+ 200: {
11455
+ headers: {
11456
+ [name: string]: unknown;
11457
+ };
11458
+ content: {
11459
+ "application/json": components["schemas"]["api.GetRuntimeConfigResponse"];
11460
+ };
11461
+ };
11462
+ };
11463
+ };
11464
+ put?: never;
11465
+ post?: never;
11466
+ delete?: never;
11467
+ options?: never;
11468
+ head?: never;
11469
+ patch?: never;
11470
+ trace?: never;
11471
+ };
11472
+ "/internal/getruntimeconfigsuccessresponse": {
11473
+ parameters: {
11474
+ query?: never;
11475
+ header?: never;
11476
+ path?: never;
11477
+ cookie?: never;
11478
+ };
11479
+ /**
11480
+ * Get GetRuntimeConfigSuccessResponse (schema generation only)
11481
+ * @description Internal endpoint used only to ensure GetRuntimeConfigSuccessResponse schema is generated in OpenAPI spec
11482
+ */
11483
+ get: {
11484
+ parameters: {
11485
+ query?: never;
11486
+ header?: never;
11487
+ path?: never;
11488
+ cookie?: never;
11489
+ };
11490
+ requestBody?: never;
11491
+ responses: {
11492
+ /** @description OK */
11493
+ 200: {
11494
+ headers: {
11495
+ [name: string]: unknown;
11496
+ };
11497
+ content: {
11498
+ "application/json": components["schemas"]["api.GetRuntimeConfigSuccessResponse"];
11499
+ };
11500
+ };
11501
+ };
11502
+ };
11503
+ put?: never;
11504
+ post?: never;
11505
+ delete?: never;
11506
+ options?: never;
11507
+ head?: never;
11508
+ patch?: never;
11509
+ trace?: never;
11510
+ };
11394
11511
  "/internal/getsinglesignondomainserrorresponse": {
11395
11512
  parameters: {
11396
11513
  query?: never;
@@ -18489,6 +18606,45 @@ export interface paths {
18489
18606
  patch?: never;
18490
18607
  trace?: never;
18491
18608
  };
18609
+ "/internal/runtimeconfig": {
18610
+ parameters: {
18611
+ query?: never;
18612
+ header?: never;
18613
+ path?: never;
18614
+ cookie?: never;
18615
+ };
18616
+ /**
18617
+ * Get RuntimeConfig (schema generation only)
18618
+ * @description Internal endpoint used only to ensure RuntimeConfig schema is generated in OpenAPI spec
18619
+ */
18620
+ get: {
18621
+ parameters: {
18622
+ query?: never;
18623
+ header?: never;
18624
+ path?: never;
18625
+ cookie?: never;
18626
+ };
18627
+ requestBody?: never;
18628
+ responses: {
18629
+ /** @description OK */
18630
+ 200: {
18631
+ headers: {
18632
+ [name: string]: unknown;
18633
+ };
18634
+ content: {
18635
+ "application/json": components["schemas"]["models.RuntimeConfig"];
18636
+ };
18637
+ };
18638
+ };
18639
+ };
18640
+ put?: never;
18641
+ post?: never;
18642
+ delete?: never;
18643
+ options?: never;
18644
+ head?: never;
18645
+ patch?: never;
18646
+ trace?: never;
18647
+ };
18492
18648
  "/internal/savefaceredactionerrorresponse": {
18493
18649
  parameters: {
18494
18650
  query?: never;
@@ -25232,6 +25388,34 @@ export interface components {
25232
25388
  /** @description Additional metadata about the response, such as timestamps and request IDs */
25233
25389
  metadata?: components["schemas"]["api.Metadata"];
25234
25390
  };
25391
+ "api.GetRuntimeConfigErrorResponse": {
25392
+ /** @description Application-specific error code */
25393
+ applicationStatusCode?: string;
25394
+ /** @description Entity-specific error code */
25395
+ entityStatusCode?: string;
25396
+ /** @description HTTP status code for the error */
25397
+ httpStatusCode?: number;
25398
+ /** @description Error message describing the issue */
25399
+ message?: string;
25400
+ /** @description Additional metadata about the error, such as timestamps and request IDs */
25401
+ metadata?: components["schemas"]["api.Metadata"];
25402
+ };
25403
+ "api.GetRuntimeConfigResponse": {
25404
+ runtimeConfig?: components["schemas"]["models.RuntimeConfig"];
25405
+ };
25406
+ "api.GetRuntimeConfigSuccessResponse": {
25407
+ /** @description Application-specific status code */
25408
+ applicationStatusCode?: string;
25409
+ data?: components["schemas"]["api.GetRuntimeConfigResponse"];
25410
+ /** @description Entity-specific status code */
25411
+ entityStatusCode?: string;
25412
+ /** @description HTTP status code for the response */
25413
+ httpStatusCode?: number;
25414
+ /** @description Success message describing the operation */
25415
+ message?: string;
25416
+ /** @description Additional metadata about the response, such as timestamps and request IDs */
25417
+ metadata?: components["schemas"]["api.Metadata"];
25418
+ };
25235
25419
  "api.GetSingleSignOnDomainsErrorResponse": {
25236
25420
  /** @description Application-specific error code */
25237
25421
  applicationStatusCode?: string;
@@ -27806,6 +27990,8 @@ export interface components {
27806
27990
  /** @description 0=none, 1=read, 2=write, 3=admin */
27807
27991
  devices?: components["schemas"]["models.AccessLevel"];
27808
27992
  /** @description 0=none, 1=read, 2=write, 3=admin */
27993
+ download_recordings?: components["schemas"]["models.AccessLevel"];
27994
+ /** @description 0=none, 1=read, 2=write, 3=admin */
27809
27995
  export?: components["schemas"]["models.AccessLevel"];
27810
27996
  /** @description 0=none, 1=read, 2=write, 3=admin */
27811
27997
  floorPlans?: components["schemas"]["models.AccessLevel"];
@@ -28805,6 +28991,12 @@ export interface components {
28805
28991
  /** @description e.g., "global", "site", "group", "device" */
28806
28992
  type?: string;
28807
28993
  };
28994
+ "models.RuntimeConfig": {
28995
+ mqttPassword?: string;
28996
+ mqttUsername?: string;
28997
+ turnPassword?: string;
28998
+ turnUsername?: string;
28999
+ };
28808
29000
  "models.Sequence": {
28809
29001
  analysis?: {
28810
29002
  [key: string]: unknown;
@@ -29799,6 +29991,7 @@ export declare namespace models {
29799
29991
  type Role = components['schemas']['models.Role'];
29800
29992
  type RoleAssignment = components['schemas']['models.RoleAssignment'];
29801
29993
  type RoleScope = components['schemas']['models.RoleScope'];
29994
+ type RuntimeConfig = components['schemas']['models.RuntimeConfig'];
29802
29995
  type Sequence = components['schemas']['models.Sequence'];
29803
29996
  type SequenceStage = components['schemas']['models.SequenceStage'];
29804
29997
  type Settings = components['schemas']['models.Settings'];
@@ -30038,6 +30231,9 @@ export declare namespace api {
30038
30231
  type GetMediaRequest = components['schemas']['api.GetMediaRequest'];
30039
30232
  type GetMediaResponse = components['schemas']['api.GetMediaResponse'];
30040
30233
  type GetMediaSuccessResponse = components['schemas']['api.GetMediaSuccessResponse'];
30234
+ type GetRuntimeConfigErrorResponse = components['schemas']['api.GetRuntimeConfigErrorResponse'];
30235
+ type GetRuntimeConfigResponse = components['schemas']['api.GetRuntimeConfigResponse'];
30236
+ type GetRuntimeConfigSuccessResponse = components['schemas']['api.GetRuntimeConfigSuccessResponse'];
30041
30237
  type GetSingleSignOnDomainsErrorResponse = components['schemas']['api.GetSingleSignOnDomainsErrorResponse'];
30042
30238
  type GetSingleSignOnDomainsSuccessResponse = components['schemas']['api.GetSingleSignOnDomainsSuccessResponse'];
30043
30239
  type GetSiteOptionsErrorResponse = components['schemas']['api.GetSiteOptionsErrorResponse'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uug-ai/models",
3
- "version": "1.4.59",
3
+ "version": "1.5.1",
4
4
  "description": "TypeScript type definitions for Go models",
5
5
  "main": "dist/types.js",
6
6
  "types": "dist/types.d.ts",