waldur-js-client 7.8.7-dev.3 → 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.
- package/dist/types.gen.d.ts +5 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
*/
|