waldur-js-client 7.7.7-dev.4 → 7.7.7-dev.5
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 +9 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -8180,9 +8180,12 @@ export type ProjectCreditRequest = {
|
|
|
8180
8180
|
export type ProjectDetail = {
|
|
8181
8181
|
readonly project_uuid: string;
|
|
8182
8182
|
readonly project_name: string;
|
|
8183
|
+
readonly completion_uuid: string | null;
|
|
8183
8184
|
readonly completion_percentage: number;
|
|
8184
8185
|
readonly is_completed: boolean;
|
|
8185
8186
|
readonly requires_review: boolean;
|
|
8187
|
+
readonly answers: Array<unknown>;
|
|
8188
|
+
readonly unanswered_required_questions: Array<unknown>;
|
|
8186
8189
|
};
|
|
8187
8190
|
export type ProjectDetailsResponse = {
|
|
8188
8191
|
checklist: ChecklistInfo;
|
|
@@ -9144,6 +9147,12 @@ export type QuestionAnswer = {
|
|
|
9144
9147
|
readonly project_answers: Array<{
|
|
9145
9148
|
[key: string]: unknown;
|
|
9146
9149
|
}>;
|
|
9150
|
+
/**
|
|
9151
|
+
* Get question options for select-type questions.
|
|
9152
|
+
*/
|
|
9153
|
+
readonly question_options: Array<{
|
|
9154
|
+
[key: string]: unknown;
|
|
9155
|
+
}>;
|
|
9147
9156
|
};
|
|
9148
9157
|
export type QuestionDependency = {
|
|
9149
9158
|
readonly uuid: string;
|