waldur-js-client 8.0.8-dev.16 → 8.0.8-dev.17
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.gen.d.ts +12 -18
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3732,18 +3732,6 @@ export type ChatResponse = {
|
|
|
3732
3732
|
* State display name filters (e.g. ['OK', 'Erred']). Present when k='resource_list'.
|
|
3733
3733
|
*/
|
|
3734
3734
|
state?: Array<unknown>;
|
|
3735
|
-
/**
|
|
3736
|
-
* Table headers - list of column names. Present when k='table'.
|
|
3737
|
-
*/
|
|
3738
|
-
h?: Array<unknown>;
|
|
3739
|
-
/**
|
|
3740
|
-
* Table rows - list of row data (each row is a list of strings). Present when k='table'.
|
|
3741
|
-
*/
|
|
3742
|
-
r?: Array<unknown>;
|
|
3743
|
-
/**
|
|
3744
|
-
* Total count of rows in the table (used for pagination display). Present when k='table'.
|
|
3745
|
-
*/
|
|
3746
|
-
n?: number | null;
|
|
3747
3735
|
};
|
|
3748
3736
|
export type ChatSession = {
|
|
3749
3737
|
readonly uuid?: string;
|
|
@@ -10325,9 +10313,13 @@ export type Message = {
|
|
|
10325
10313
|
readonly uuid: string;
|
|
10326
10314
|
readonly thread: string;
|
|
10327
10315
|
role: MessageRoleEnum;
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10316
|
+
readonly blocks: Array<{
|
|
10317
|
+
id: string;
|
|
10318
|
+
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool';
|
|
10319
|
+
status: string;
|
|
10320
|
+
[key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool');
|
|
10321
|
+
}>;
|
|
10322
|
+
readonly warning: string;
|
|
10331
10323
|
readonly sequence_index: number;
|
|
10332
10324
|
readonly replaces: string | null;
|
|
10333
10325
|
readonly created: string;
|
|
@@ -11425,7 +11417,7 @@ export type OfferingComponent = {
|
|
|
11425
11417
|
* The conversion factor from backend units to measured_unit
|
|
11426
11418
|
*/
|
|
11427
11419
|
unit_factor?: number;
|
|
11428
|
-
limit_period?: LimitPeriodEnum |
|
|
11420
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
11429
11421
|
limit_amount?: number | null;
|
|
11430
11422
|
article_code?: string;
|
|
11431
11423
|
max_value?: number | null;
|
|
@@ -11489,7 +11481,7 @@ export type OfferingComponentRequest = {
|
|
|
11489
11481
|
* The conversion factor from backend units to measured_unit
|
|
11490
11482
|
*/
|
|
11491
11483
|
unit_factor?: number;
|
|
11492
|
-
limit_period?: LimitPeriodEnum |
|
|
11484
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
11493
11485
|
limit_amount?: number | null;
|
|
11494
11486
|
article_code?: string;
|
|
11495
11487
|
max_value?: number | null;
|
|
@@ -24628,7 +24620,7 @@ export type UpdateOfferingComponentRequest = {
|
|
|
24628
24620
|
* The conversion factor from backend units to measured_unit
|
|
24629
24621
|
*/
|
|
24630
24622
|
unit_factor?: number;
|
|
24631
|
-
limit_period?: LimitPeriodEnum |
|
|
24623
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
24632
24624
|
limit_amount?: number | null;
|
|
24633
24625
|
article_code?: string;
|
|
24634
24626
|
max_value?: number | null;
|
|
@@ -27827,6 +27819,7 @@ export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expe
|
|
|
27827
27819
|
export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27828
27820
|
export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'input_tokens' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'output_tokens' | 'title_gen_input_tokens' | 'title_gen_output_tokens' | 'total_tokens' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27829
27821
|
export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
|
|
27822
|
+
export type ThreadSessionScopeEnum = 'own';
|
|
27830
27823
|
export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
|
|
27831
27824
|
export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
|
|
27832
27825
|
export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
|
|
@@ -34650,6 +34643,7 @@ export type ChatThreadsListData = {
|
|
|
34650
34643
|
*/
|
|
34651
34644
|
page_size?: number;
|
|
34652
34645
|
query?: string;
|
|
34646
|
+
scope?: ThreadSessionScopeEnum;
|
|
34653
34647
|
total_tokens_max?: number;
|
|
34654
34648
|
total_tokens_min?: number;
|
|
34655
34649
|
user?: string;
|