waldur-js-client 8.0.8-dev.5 → 8.0.8-dev.7

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.gen.d.ts +17 -17
  2. package/package.json +1 -1
@@ -2349,7 +2349,7 @@ export type BaseProviderPlan = {
2349
2349
  };
2350
2350
  readonly resources_count?: number;
2351
2351
  readonly plan_type?: string;
2352
- readonly minimal_price?: number;
2352
+ readonly minimal_price?: string;
2353
2353
  };
2354
2354
  export type BaseProviderPlanRequest = {
2355
2355
  name: string;
@@ -2400,7 +2400,7 @@ export type BasePublicPlan = {
2400
2400
  };
2401
2401
  readonly resources_count?: number;
2402
2402
  readonly plan_type?: string;
2403
- readonly minimal_price?: number;
2403
+ readonly minimal_price?: string;
2404
2404
  };
2405
2405
  export type BasePublicPlanRequest = {
2406
2406
  url: string;
@@ -3600,7 +3600,7 @@ export type ChatRequestRequest = {
3600
3600
  };
3601
3601
  export type ChatResponse = {
3602
3602
  /**
3603
- * Component key (e.g. 'markdown', 'code', 'table', 'vm_order').
3603
+ * Component key (e.g. 'markdown', 'code', 'vm_order', 'resource_list').
3604
3604
  */
3605
3605
  k?: string;
3606
3606
  /**
@@ -3615,18 +3615,6 @@ export type ChatResponse = {
3615
3615
  * Error message.
3616
3616
  */
3617
3617
  e?: string;
3618
- /**
3619
- * Table headers.
3620
- */
3621
- h?: Array<unknown>;
3622
- /**
3623
- * Table rows.
3624
- */
3625
- r?: Array<unknown>;
3626
- /**
3627
- * Total row count.
3628
- */
3629
- n?: number;
3630
3618
  /**
3631
3619
  * System metadata (thread_uuid, message UUIDs).
3632
3620
  */
@@ -3666,7 +3654,7 @@ export type ChatResponse = {
3666
3654
  */
3667
3655
  organization?: string;
3668
3656
  /**
3669
- * Project UUID.
3657
+ * Project UUID. Present when k='vm_order' or k='resource_list'.
3670
3658
  */
3671
3659
  project_uuid?: string;
3672
3660
  /**
@@ -3697,6 +3685,18 @@ export type ChatResponse = {
3697
3685
  * Available offering options [{uuid, name}]. Present when status='offering_form'.
3698
3686
  */
3699
3687
  offerings?: Array<unknown>;
3688
+ /**
3689
+ * Customer/organization UUID filter hint. Present when k='resource_list'.
3690
+ */
3691
+ customer_uuid?: string;
3692
+ /**
3693
+ * Category UUID filter hint. Present when k='resource_list'.
3694
+ */
3695
+ category_uuid?: string;
3696
+ /**
3697
+ * State display name filters (e.g. ['OK', 'Erred']). Present when k='resource_list'.
3698
+ */
3699
+ state?: Array<unknown>;
3700
3700
  };
3701
3701
  export type ChatSession = {
3702
3702
  readonly uuid?: string;
@@ -18917,7 +18917,7 @@ export type ProviderPlanDetails = {
18917
18917
  };
18918
18918
  readonly resources_count: number;
18919
18919
  readonly plan_type: string;
18920
- readonly minimal_price: number;
18920
+ readonly minimal_price: string;
18921
18921
  };
18922
18922
  export type ProviderPlanDetailsRequest = {
18923
18923
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.8-dev.5",
3
+ "version": "8.0.8-dev.7",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",