@uug-ai/models 1.2.14 → 1.2.16

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 +169 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -549,6 +549,45 @@ export interface paths {
549
549
  patch?: never;
550
550
  trace?: never;
551
551
  };
552
+ "/internal/alertfeatures": {
553
+ parameters: {
554
+ query?: never;
555
+ header?: never;
556
+ path?: never;
557
+ cookie?: never;
558
+ };
559
+ /**
560
+ * Get AlertFeatures (schema generation only)
561
+ * @description Internal endpoint used only to ensure AlertFeatures schema is generated in OpenAPI spec
562
+ */
563
+ get: {
564
+ parameters: {
565
+ query?: never;
566
+ header?: never;
567
+ path?: never;
568
+ cookie?: never;
569
+ };
570
+ requestBody?: never;
571
+ responses: {
572
+ /** @description OK */
573
+ 200: {
574
+ headers: {
575
+ [name: string]: unknown;
576
+ };
577
+ content: {
578
+ "application/json": components["schemas"]["models.AlertFeatures"];
579
+ };
580
+ };
581
+ };
582
+ };
583
+ put?: never;
584
+ post?: never;
585
+ delete?: never;
586
+ options?: never;
587
+ head?: never;
588
+ patch?: never;
589
+ trace?: never;
590
+ };
552
591
  "/internal/analysis": {
553
592
  parameters: {
554
593
  query?: never;
@@ -1212,6 +1251,45 @@ export interface paths {
1212
1251
  patch?: never;
1213
1252
  trace?: never;
1214
1253
  };
1254
+ "/internal/customalert": {
1255
+ parameters: {
1256
+ query?: never;
1257
+ header?: never;
1258
+ path?: never;
1259
+ cookie?: never;
1260
+ };
1261
+ /**
1262
+ * Get CustomAlert (schema generation only)
1263
+ * @description Internal endpoint used only to ensure CustomAlert schema is generated in OpenAPI spec
1264
+ */
1265
+ get: {
1266
+ parameters: {
1267
+ query?: never;
1268
+ header?: never;
1269
+ path?: never;
1270
+ cookie?: never;
1271
+ };
1272
+ requestBody?: never;
1273
+ responses: {
1274
+ /** @description OK */
1275
+ 200: {
1276
+ headers: {
1277
+ [name: string]: unknown;
1278
+ };
1279
+ content: {
1280
+ "application/json": components["schemas"]["models.CustomAlert"];
1281
+ };
1282
+ };
1283
+ };
1284
+ };
1285
+ put?: never;
1286
+ post?: never;
1287
+ delete?: never;
1288
+ options?: never;
1289
+ head?: never;
1290
+ patch?: never;
1291
+ trace?: never;
1292
+ };
1215
1293
  "/internal/debugresponse": {
1216
1294
  parameters: {
1217
1295
  query?: never;
@@ -1758,6 +1836,45 @@ export interface paths {
1758
1836
  patch?: never;
1759
1837
  trace?: never;
1760
1838
  };
1839
+ "/internal/devicekey": {
1840
+ parameters: {
1841
+ query?: never;
1842
+ header?: never;
1843
+ path?: never;
1844
+ cookie?: never;
1845
+ };
1846
+ /**
1847
+ * Get DeviceKey (schema generation only)
1848
+ * @description Internal endpoint used only to ensure DeviceKey schema is generated in OpenAPI spec
1849
+ */
1850
+ get: {
1851
+ parameters: {
1852
+ query?: never;
1853
+ header?: never;
1854
+ path?: never;
1855
+ cookie?: never;
1856
+ };
1857
+ requestBody?: never;
1858
+ responses: {
1859
+ /** @description OK */
1860
+ 200: {
1861
+ headers: {
1862
+ [name: string]: unknown;
1863
+ };
1864
+ content: {
1865
+ "application/json": components["schemas"]["models.DeviceKey"];
1866
+ };
1867
+ };
1868
+ };
1869
+ };
1870
+ put?: never;
1871
+ post?: never;
1872
+ delete?: never;
1873
+ options?: never;
1874
+ head?: never;
1875
+ patch?: never;
1876
+ trace?: never;
1877
+ };
1761
1878
  "/internal/devicelocationmetadata": {
1762
1879
  parameters: {
1763
1880
  query?: never;
@@ -9681,6 +9798,9 @@ export interface components {
9681
9798
  usage?: number;
9682
9799
  videos?: number;
9683
9800
  };
9801
+ "models.AlertFeatures": {
9802
+ createMarker?: boolean;
9803
+ };
9684
9804
  "models.Analysis": {
9685
9805
  classify?: components["schemas"]["models.Classify"];
9686
9806
  counting?: components["schemas"]["models.Counting"];
@@ -9821,6 +9941,48 @@ export interface components {
9821
9941
  type?: string;
9822
9942
  username?: string;
9823
9943
  };
9944
+ "models.CustomAlert": {
9945
+ alexa_token?: string;
9946
+ channelsAll?: boolean;
9947
+ channelsList?: string[];
9948
+ classificationAll?: boolean;
9949
+ classificationList?: string[];
9950
+ countingDevicesAll?: boolean;
9951
+ countingDevicesList?: components["schemas"]["models.DeviceKey"][];
9952
+ countingLines?: components["schemas"]["models.Region"][];
9953
+ description?: string;
9954
+ devicesAll?: boolean;
9955
+ devicesList?: components["schemas"]["models.DeviceKey"][];
9956
+ email_email?: string;
9957
+ enabled?: boolean;
9958
+ features?: components["schemas"]["models.AlertFeatures"];
9959
+ id?: string;
9960
+ ifttt_token?: string;
9961
+ inputList?: string[];
9962
+ inputsAND?: boolean;
9963
+ master_user_id?: string;
9964
+ motionRegions?: components["schemas"]["models.Region"][];
9965
+ outputList?: string[];
9966
+ pushbullet_apikey?: string;
9967
+ pushover_apikey?: string;
9968
+ pushover_sendto?: string;
9969
+ slack_botname?: string;
9970
+ slack_hook?: string;
9971
+ sms_accountsid?: string;
9972
+ sms_authtoken?: string;
9973
+ sms_telfrom?: string;
9974
+ sms_telto?: string;
9975
+ telegram_channel?: string;
9976
+ telegram_token?: string;
9977
+ timeAdvanced?: boolean;
9978
+ timeRange1Max?: number;
9979
+ timeRange1Min?: number;
9980
+ timeRange2Max?: number;
9981
+ timeRange2Min?: number;
9982
+ title?: string;
9983
+ user_id?: string;
9984
+ webhook_url?: string;
9985
+ };
9824
9986
  "models.Device": {
9825
9987
  /**
9826
9988
  * @description AtRuntimeMetadata contains metadata that is generated at runtime, which can include
@@ -9920,6 +10082,10 @@ export interface components {
9920
10082
  ptz?: number;
9921
10083
  remoteConfig?: number;
9922
10084
  };
10085
+ "models.DeviceKey": {
10086
+ key?: string;
10087
+ name?: string;
10088
+ };
9923
10089
  "models.DeviceLocationMetadata": {
9924
10090
  fieldOfView?: number;
9925
10091
  location?: components["schemas"]["models.Location"];
@@ -10893,6 +11059,7 @@ export type operations = Record<string, never>;
10893
11059
  export declare namespace models {
10894
11060
  type AccessToken = components['schemas']['models.AccessToken'];
10895
11061
  type Activity = components['schemas']['models.Activity'];
11062
+ type AlertFeatures = components['schemas']['models.AlertFeatures'];
10896
11063
  type Analysis = components['schemas']['models.Analysis'];
10897
11064
  type AnalysisFilter = components['schemas']['models.AnalysisFilter'];
10898
11065
  type AnalysisShort = components['schemas']['models.AnalysisShort'];
@@ -10908,9 +11075,11 @@ export declare namespace models {
10908
11075
  type Counting = components['schemas']['models.Counting'];
10909
11076
  type CountingDetail = components['schemas']['models.CountingDetail'];
10910
11077
  type CountingRecord = components['schemas']['models.CountingRecord'];
11078
+ type CustomAlert = components['schemas']['models.CustomAlert'];
10911
11079
  type Device = components['schemas']['models.Device'];
10912
11080
  type DeviceCameraMetadata = components['schemas']['models.DeviceCameraMetadata'];
10913
11081
  type DeviceFeaturePermissions = components['schemas']['models.DeviceFeaturePermissions'];
11082
+ type DeviceKey = components['schemas']['models.DeviceKey'];
10914
11083
  type DeviceLocationMetadata = components['schemas']['models.DeviceLocationMetadata'];
10915
11084
  type DeviceMetadata = components['schemas']['models.DeviceMetadata'];
10916
11085
  type DeviceOption = components['schemas']['models.DeviceOption'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uug-ai/models",
3
- "version": "1.2.14",
3
+ "version": "1.2.16",
4
4
  "description": "TypeScript type definitions for Go models",
5
5
  "main": "dist/types.js",
6
6
  "types": "dist/types.d.ts",