waldur-js-client 7.8.7-dev.2 → 7.8.7-dev.4

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.
@@ -6319,6 +6319,7 @@ export type OnboardingCountryChecklistConfiguration = {
6319
6319
  checklist: string;
6320
6320
  readonly checklist_name: string;
6321
6321
  readonly checklist_uuid: string;
6322
+ readonly questions: Array<QuestionAdmin>;
6322
6323
  /**
6323
6324
  * Whether this country configuration is active
6324
6325
  */
@@ -9224,6 +9225,7 @@ export type PatchedProviderPlanDetailsRequest = {
9224
9225
  backend_id?: string;
9225
9226
  };
9226
9227
  export type PatchedQuestionAdminRequest = {
9228
+ required?: boolean;
9227
9229
  description?: string;
9228
9230
  /**
9229
9231
  * Additional guidance text visible to users when answering and reviewing
@@ -9231,7 +9233,6 @@ export type PatchedQuestionAdminRequest = {
9231
9233
  user_guidance?: string;
9232
9234
  checklist?: string;
9233
9235
  order?: number;
9234
- required?: boolean;
9235
9236
  /**
9236
9237
  * Type of question and expected answer format
9237
9238
  */
@@ -10797,6 +10798,7 @@ export type QueryRequest = {
10797
10798
  };
10798
10799
  export type Question = {
10799
10800
  readonly uuid: string;
10801
+ required?: boolean;
10800
10802
  description?: string;
10801
10803
  /**
10802
10804
  * Additional guidance text visible to users when answering and reviewing
@@ -10806,6 +10808,7 @@ export type Question = {
10806
10808
  };
10807
10809
  export type QuestionAdmin = {
10808
10810
  readonly uuid: string;
10811
+ required?: boolean;
10809
10812
  description?: string;
10810
10813
  /**
10811
10814
  * Additional guidance text visible to users when answering and reviewing
@@ -10817,7 +10820,6 @@ export type QuestionAdmin = {
10817
10820
  readonly checklist_uuid: string;
10818
10821
  checklist: string;
10819
10822
  order?: number;
10820
- required?: boolean;
10821
10823
  /**
10822
10824
  * Type of question and expected answer format
10823
10825
  */
@@ -10857,6 +10859,7 @@ export type QuestionAdmin = {
10857
10859
  dependency_logic_operator?: DependencyLogicOperatorEnum;
10858
10860
  };
10859
10861
  export type QuestionAdminRequest = {
10862
+ required?: boolean;
10860
10863
  description?: string;
10861
10864
  /**
10862
10865
  * Additional guidance text visible to users when answering and reviewing
@@ -10864,7 +10867,6 @@ export type QuestionAdminRequest = {
10864
10867
  user_guidance?: string;
10865
10868
  checklist: string;
10866
10869
  order?: number;
10867
- required?: boolean;
10868
10870
  /**
10869
10871
  * Type of question and expected answer format
10870
10872
  */
@@ -36763,7 +36765,7 @@ export type OpenstackPortsListData = {
36763
36765
  *
36764
36766
  *
36765
36767
  */
36766
- o?: Array<'-network_name' | 'network_name'>;
36768
+ o?: Array<'-admin_state_up' | '-created' | '-device_owner' | '-instance_name' | '-mac_address' | '-name' | '-network_name' | '-status' | '-subnet_name' | 'admin_state_up' | 'created' | 'device_owner' | 'instance_name' | 'mac_address' | 'name' | 'network_name' | 'status' | 'subnet_name'>;
36767
36769
  /**
36768
36770
  * A page number within the paginated result set.
36769
36771
  */
@@ -36822,7 +36824,7 @@ export type OpenstackPortsCountData = {
36822
36824
  *
36823
36825
  *
36824
36826
  */
36825
- o?: Array<'-network_name' | 'network_name'>;
36827
+ o?: Array<'-admin_state_up' | '-created' | '-device_owner' | '-instance_name' | '-mac_address' | '-name' | '-network_name' | '-status' | '-subnet_name' | 'admin_state_up' | 'created' | 'device_owner' | 'instance_name' | 'mac_address' | 'name' | 'network_name' | 'status' | 'subnet_name'>;
36826
36828
  /**
36827
36829
  * A page number within the paginated result set.
36828
36830
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.7-dev.2",
3
+ "version": "7.8.7-dev.4",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",