@uug-ai/models 1.2.19 → 1.2.21
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 +79 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -6360,6 +6360,45 @@ export interface paths {
|
|
|
6360
6360
|
patch?: never;
|
|
6361
6361
|
trace?: never;
|
|
6362
6362
|
};
|
|
6363
|
+
"/internal/message": {
|
|
6364
|
+
parameters: {
|
|
6365
|
+
query?: never;
|
|
6366
|
+
header?: never;
|
|
6367
|
+
path?: never;
|
|
6368
|
+
cookie?: never;
|
|
6369
|
+
};
|
|
6370
|
+
/**
|
|
6371
|
+
* Get Message (schema generation only)
|
|
6372
|
+
* @description Internal endpoint used only to ensure Message schema is generated in OpenAPI spec
|
|
6373
|
+
*/
|
|
6374
|
+
get: {
|
|
6375
|
+
parameters: {
|
|
6376
|
+
query?: never;
|
|
6377
|
+
header?: never;
|
|
6378
|
+
path?: never;
|
|
6379
|
+
cookie?: never;
|
|
6380
|
+
};
|
|
6381
|
+
requestBody?: never;
|
|
6382
|
+
responses: {
|
|
6383
|
+
/** @description OK */
|
|
6384
|
+
200: {
|
|
6385
|
+
headers: {
|
|
6386
|
+
[name: string]: unknown;
|
|
6387
|
+
};
|
|
6388
|
+
content: {
|
|
6389
|
+
"application/json": components["schemas"]["models.Message"];
|
|
6390
|
+
};
|
|
6391
|
+
};
|
|
6392
|
+
};
|
|
6393
|
+
};
|
|
6394
|
+
put?: never;
|
|
6395
|
+
post?: never;
|
|
6396
|
+
delete?: never;
|
|
6397
|
+
options?: never;
|
|
6398
|
+
head?: never;
|
|
6399
|
+
patch?: never;
|
|
6400
|
+
trace?: never;
|
|
6401
|
+
};
|
|
6363
6402
|
"/internal/metadata": {
|
|
6364
6403
|
parameters: {
|
|
6365
6404
|
query?: never;
|
|
@@ -10604,6 +10643,45 @@ export interface components {
|
|
|
10604
10643
|
/** @description Tags associated to give some context about the media file */
|
|
10605
10644
|
tags?: string[];
|
|
10606
10645
|
};
|
|
10646
|
+
"models.Message": {
|
|
10647
|
+
alert_id?: string;
|
|
10648
|
+
alert_master_user?: string;
|
|
10649
|
+
alert_name?: string;
|
|
10650
|
+
alert_user?: string;
|
|
10651
|
+
body?: string;
|
|
10652
|
+
classifications?: string[];
|
|
10653
|
+
data?: {
|
|
10654
|
+
[key: string]: string;
|
|
10655
|
+
};
|
|
10656
|
+
data_usage?: string;
|
|
10657
|
+
device_id?: string;
|
|
10658
|
+
device_name?: string;
|
|
10659
|
+
email?: string;
|
|
10660
|
+
groups?: components["schemas"]["models.Group"][];
|
|
10661
|
+
id?: string;
|
|
10662
|
+
media?: components["schemas"]["models.Media"][];
|
|
10663
|
+
media_key?: string;
|
|
10664
|
+
media_provider?: string;
|
|
10665
|
+
media_source?: string;
|
|
10666
|
+
/** @description generic, counting, region */
|
|
10667
|
+
notification_type?: string;
|
|
10668
|
+
number_of_media?: string;
|
|
10669
|
+
sequence_id?: string;
|
|
10670
|
+
sites?: components["schemas"]["models.Site"][];
|
|
10671
|
+
spriteFile?: string;
|
|
10672
|
+
spriteInterval?: number;
|
|
10673
|
+
spriteProvider?: string;
|
|
10674
|
+
thumbnail?: string;
|
|
10675
|
+
thumbnailFile?: string;
|
|
10676
|
+
thumbnailProvider?: string;
|
|
10677
|
+
timestamp?: number;
|
|
10678
|
+
timezone?: string;
|
|
10679
|
+
title?: string;
|
|
10680
|
+
type?: string;
|
|
10681
|
+
unread?: boolean;
|
|
10682
|
+
user?: string;
|
|
10683
|
+
userid?: string;
|
|
10684
|
+
};
|
|
10607
10685
|
"models.Model": {
|
|
10608
10686
|
/**
|
|
10609
10687
|
* @description AtRuntimeMetadata are computed or dynamic information about the model that is relevant during its usage or processing.
|
|
@@ -11116,6 +11194,7 @@ export declare namespace models {
|
|
|
11116
11194
|
type Media = components['schemas']['models.Media'];
|
|
11117
11195
|
type MediaAtRuntimeMetadata = components['schemas']['models.MediaAtRuntimeMetadata'];
|
|
11118
11196
|
type MediaMetadata = components['schemas']['models.MediaMetadata'];
|
|
11197
|
+
type Message = components['schemas']['models.Message'];
|
|
11119
11198
|
type Model = components['schemas']['models.Model'];
|
|
11120
11199
|
type ModelOption = components['schemas']['models.ModelOption'];
|
|
11121
11200
|
type MonitorStage = components['schemas']['models.MonitorStage'];
|