waldur-js-client 7.7.5-dev.3 → 7.7.5-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.
@@ -28,21 +28,32 @@ export type AdminAnnouncementRequest = {
28
28
  export type AdminAnnouncementTypeEnum = 'information' | 'warning' | 'danger';
29
29
  export type AgreementTypeEnum = 'TOS' | 'PP';
30
30
  export type AllocationTimeEnum = 'on_decision' | 'fixed_date';
31
- export type AnswerList = {
32
- readonly question_uuid: string;
31
+ export type Answer = {
32
+ readonly uuid: string;
33
+ readonly question_description: string;
34
+ readonly question_type: string;
35
+ readonly question_required: boolean;
33
36
  /**
34
37
  * Flexible answer storage for different question types
35
38
  */
36
39
  answer_data?: unknown;
37
- };
38
- export type AnswerSubmit = {
39
- question_uuid: string;
40
- answer_data: unknown;
40
+ /**
41
+ * Internal flag - this answer requires additional review
42
+ */
43
+ readonly requires_review: boolean;
44
+ readonly user: number;
45
+ readonly user_name: string;
46
+ readonly created: string;
47
+ readonly modified: string;
41
48
  };
42
49
  export type AnswerSubmitRequest = {
43
50
  question_uuid: string;
44
51
  answer_data: unknown;
45
52
  };
53
+ export type AnswerSubmitResponse = {
54
+ detail: string;
55
+ completion: ChecklistCompletion;
56
+ };
46
57
  export type Attachment = {
47
58
  readonly url?: string;
48
59
  readonly uuid?: string;
@@ -1292,16 +1303,6 @@ export type CategorySerializerForForNestedFields = {
1292
1303
  export type CategorySerializerForForNestedFieldsRequest = {
1293
1304
  title: string;
1294
1305
  };
1295
- export type Checklist = {
1296
- readonly uuid: string;
1297
- readonly url: string;
1298
- name: string;
1299
- description?: string;
1300
- readonly questions_count: number;
1301
- readonly category_name: string;
1302
- readonly category_uuid: string;
1303
- readonly roles: Array<string>;
1304
- };
1305
1306
  export type ChecklistAdmin = {
1306
1307
  readonly uuid: string;
1307
1308
  readonly url: string;
@@ -1310,7 +1311,6 @@ export type ChecklistAdmin = {
1310
1311
  readonly questions_count: number;
1311
1312
  readonly category_name: string;
1312
1313
  readonly category_uuid: string;
1313
- readonly roles: Array<string>;
1314
1314
  readonly checklist_type: string;
1315
1315
  };
1316
1316
  export type ChecklistCategory = {
@@ -1321,14 +1321,62 @@ export type ChecklistCategory = {
1321
1321
  description?: string;
1322
1322
  readonly checklists_count: number;
1323
1323
  };
1324
- export type ChecklistCustomerStats = {
1325
- readonly name: string;
1324
+ export type ChecklistCompletion = {
1326
1325
  readonly uuid: string;
1327
- readonly latitude: number;
1328
- readonly longitude: number;
1329
- readonly score: number;
1326
+ /**
1327
+ * Whether all required questions have been answered
1328
+ */
1329
+ readonly is_completed: boolean;
1330
+ readonly completion_percentage: number;
1331
+ readonly unanswered_required_questions: Array<unknown>;
1332
+ readonly checklist_name: string;
1333
+ readonly checklist_description: string;
1334
+ readonly created: string;
1335
+ readonly modified: string;
1330
1336
  };
1331
- export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance';
1337
+ export type ChecklistCompletionReviewer = {
1338
+ readonly uuid: string;
1339
+ /**
1340
+ * Whether all required questions have been answered
1341
+ */
1342
+ readonly is_completed: boolean;
1343
+ readonly completion_percentage: number;
1344
+ readonly unanswered_required_questions: Array<unknown>;
1345
+ readonly checklist_name: string;
1346
+ readonly checklist_description: string;
1347
+ readonly created: string;
1348
+ readonly modified: string;
1349
+ /**
1350
+ * Whether any answers triggered review requirements
1351
+ */
1352
+ readonly requires_review: boolean;
1353
+ /**
1354
+ * User who reviewed the checklist completion
1355
+ */
1356
+ reviewed_by?: number | null;
1357
+ readonly reviewed_by_name: string;
1358
+ reviewed_at?: string | null;
1359
+ /**
1360
+ * Notes from the reviewer
1361
+ */
1362
+ review_notes?: string;
1363
+ readonly review_trigger_summary: Array<unknown>;
1364
+ };
1365
+ export type ChecklistResponse = {
1366
+ readonly checklist: {
1367
+ [key: string]: unknown;
1368
+ };
1369
+ completion: ChecklistCompletion;
1370
+ questions: Array<QuestionWithAnswer>;
1371
+ };
1372
+ export type ChecklistReviewerResponse = {
1373
+ readonly checklist: {
1374
+ [key: string]: unknown;
1375
+ };
1376
+ completion: ChecklistCompletionReviewer;
1377
+ questions: Array<QuestionWithAnswerReviewer>;
1378
+ };
1379
+ export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata';
1332
1380
  export type ClusterSecurityGroup = {
1333
1381
  readonly uuid: string;
1334
1382
  readonly name: string;
@@ -1831,13 +1879,11 @@ export type CreateChecklist = {
1831
1879
  readonly questions_count: number;
1832
1880
  readonly category_name: string;
1833
1881
  readonly category_uuid: string;
1834
- roles?: Array<string>;
1835
1882
  checklist_type: ChecklistTypeEnum;
1836
1883
  };
1837
1884
  export type CreateChecklistRequest = {
1838
1885
  name: string;
1839
1886
  description?: string;
1840
- roles?: Array<string>;
1841
1887
  checklist_type: ChecklistTypeEnum;
1842
1888
  };
1843
1889
  export type CreateCustomerCredit = {
@@ -1958,11 +2004,6 @@ export type Customer = {
1958
2004
  readonly call_managing_organization_uuid?: string | null;
1959
2005
  billing_price_estimate?: NestedPriceEstimate;
1960
2006
  };
1961
- export type CustomerChecklistStat = {
1962
- readonly name: string;
1963
- readonly uuid: string;
1964
- readonly score: number;
1965
- };
1966
2007
  export type CustomerCredit = {
1967
2008
  readonly uuid: string;
1968
2009
  readonly url: string;
@@ -6486,7 +6527,6 @@ export type PatchedComponentUserUsageLimitRequest = {
6486
6527
  export type PatchedCreateChecklistRequest = {
6487
6528
  name?: string;
6488
6529
  description?: string;
6489
- roles?: Array<string>;
6490
6530
  checklist_type?: ChecklistTypeEnum;
6491
6531
  };
6492
6532
  export type PatchedCreateCustomerCreditRequest = {
@@ -7635,14 +7675,6 @@ export type ProjectServiceAccountRequest = {
7635
7675
  preferred_identifier?: string;
7636
7676
  project: string;
7637
7677
  };
7638
- export type ProjectStatsItem = {
7639
- readonly name: string;
7640
- readonly uuid: string;
7641
- readonly positive_count: number;
7642
- readonly negative_count: number;
7643
- readonly unknown_count: number;
7644
- readonly score: number;
7645
- };
7646
7678
  export type ProjectType = {
7647
7679
  readonly uuid: string;
7648
7680
  readonly url: string;
@@ -7730,81 +7762,6 @@ export type Proposal = {
7730
7762
  export type ProposalApproveRequest = {
7731
7763
  allocation_comment?: string;
7732
7764
  };
7733
- export type ProposalChecklistAnswer = {
7734
- readonly uuid: string;
7735
- readonly question_description: string;
7736
- readonly question_type: string;
7737
- readonly question_required: boolean;
7738
- /**
7739
- * Flexible answer storage for different question types
7740
- */
7741
- answer_data?: unknown;
7742
- /**
7743
- * Internal flag - this answer requires additional review
7744
- */
7745
- readonly requires_review: boolean;
7746
- readonly user: number;
7747
- readonly user_name: string;
7748
- readonly created: string;
7749
- readonly modified: string;
7750
- };
7751
- export type ProposalChecklistAnswerSubmitRequest = {
7752
- question_uuid: string;
7753
- answer_data: unknown;
7754
- };
7755
- export type ProposalChecklistAnswerSubmitResponse = {
7756
- detail: string;
7757
- completion: ProposalChecklistCompletion;
7758
- };
7759
- export type ProposalChecklistCompletion = {
7760
- readonly uuid: string;
7761
- /**
7762
- * Whether all required questions have been answered
7763
- */
7764
- readonly is_completed: boolean;
7765
- /**
7766
- * Whether any answers triggered review requirements
7767
- */
7768
- readonly requires_review: boolean;
7769
- /**
7770
- * User who reviewed the checklist completion
7771
- */
7772
- reviewed_by?: number | null;
7773
- readonly reviewed_by_name: string;
7774
- reviewed_at?: string | null;
7775
- /**
7776
- * Notes from the reviewer
7777
- */
7778
- review_notes?: string;
7779
- readonly completion_percentage: number;
7780
- readonly review_trigger_summary: Array<unknown>;
7781
- readonly unanswered_required_questions: Array<unknown>;
7782
- readonly checklist_name: string;
7783
- readonly checklist_description: string;
7784
- readonly created: string;
7785
- readonly modified: string;
7786
- };
7787
- export type ProposalChecklistQuestion = {
7788
- readonly uuid: string;
7789
- readonly description: string;
7790
- /**
7791
- * Type of question and expected answer format
7792
- */
7793
- question_type: QuestionTypeEnum;
7794
- readonly required: boolean;
7795
- readonly order: number;
7796
- readonly existing_answer: {
7797
- [key: string]: unknown;
7798
- } | null;
7799
- readonly question_options: Array<unknown> | null;
7800
- };
7801
- export type ProposalComplianceChecklistResponse = {
7802
- readonly checklist: {
7803
- [key: string]: unknown;
7804
- };
7805
- completion: ProposalChecklistCompletion;
7806
- questions: Array<ProposalChecklistQuestion>;
7807
- };
7808
7765
  export type ProposalDocumentation = {
7809
7766
  /**
7810
7767
  * Upload supporting documentation in PDF format.
@@ -8409,12 +8366,6 @@ export type PullMarketplaceScriptResourceRequest = {
8409
8366
  export type QueryRequest = {
8410
8367
  query: string;
8411
8368
  };
8412
- export type Question = {
8413
- readonly uuid: string;
8414
- description?: string;
8415
- image?: string | null;
8416
- readonly question_options: Array<QuestionOptions>;
8417
- };
8418
8369
  export type QuestionAdmin = {
8419
8370
  readonly uuid: string;
8420
8371
  description?: string;
@@ -8482,11 +8433,6 @@ export type QuestionDependencyRequest = {
8482
8433
  required_answer_value: unknown;
8483
8434
  operator?: OperatorEnum;
8484
8435
  };
8485
- export type QuestionOptions = {
8486
- readonly uuid: string;
8487
- label: string;
8488
- order?: number;
8489
- };
8490
8436
  export type QuestionOptionsAdmin = {
8491
8437
  readonly uuid: string;
8492
8438
  label: string;
@@ -8501,6 +8447,43 @@ export type QuestionOptionsAdminRequest = {
8501
8447
  question: string;
8502
8448
  };
8503
8449
  export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file';
8450
+ export type QuestionWithAnswer = {
8451
+ readonly uuid: string;
8452
+ readonly description: string;
8453
+ /**
8454
+ * Type of question and expected answer format
8455
+ */
8456
+ question_type: QuestionTypeEnum;
8457
+ readonly required: boolean;
8458
+ readonly order: number;
8459
+ readonly existing_answer: {
8460
+ [key: string]: unknown;
8461
+ } | null;
8462
+ readonly question_options: Array<unknown> | null;
8463
+ };
8464
+ export type QuestionWithAnswerReviewer = {
8465
+ readonly uuid: string;
8466
+ readonly description: string;
8467
+ /**
8468
+ * Type of question and expected answer format
8469
+ */
8470
+ question_type: QuestionTypeEnum;
8471
+ readonly required: boolean;
8472
+ readonly order: number;
8473
+ readonly existing_answer: {
8474
+ [key: string]: unknown;
8475
+ } | null;
8476
+ readonly question_options: Array<unknown> | null;
8477
+ operator?: OperatorEnum | BlankEnum;
8478
+ /**
8479
+ * Answer value that trigger review.
8480
+ */
8481
+ review_answer_value?: unknown;
8482
+ /**
8483
+ * This question always requires review regardless of answer
8484
+ */
8485
+ always_requires_review?: boolean;
8486
+ };
8504
8487
  export type Quota = {
8505
8488
  name?: string;
8506
8489
  usage?: number;
@@ -10528,9 +10511,6 @@ export type UserRoleUpdateRequest = {
10528
10511
  user: string;
10529
10512
  expiration_time?: string | null;
10530
10513
  };
10531
- export type UserStats = {
10532
- readonly score: number;
10533
- };
10534
10514
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
10535
10515
  export type Version = {
10536
10516
  /**
@@ -14932,43 +14912,6 @@ export type CustomersCreateResponses = {
14932
14912
  201: Customer;
14933
14913
  };
14934
14914
  export type CustomersCreateResponse = CustomersCreateResponses[keyof CustomersCreateResponses];
14935
- export type MarketplaceChecklistsCustomerRetrieveData = {
14936
- body?: never;
14937
- path: {
14938
- customer_uuid: string;
14939
- };
14940
- query?: never;
14941
- url: '/api/customers/{customer_uuid}/marketplace-checklists/';
14942
- };
14943
- export type MarketplaceChecklistsCustomerRetrieveResponses = {
14944
- 200: Array<string>;
14945
- };
14946
- export type MarketplaceChecklistsCustomerRetrieveResponse = MarketplaceChecklistsCustomerRetrieveResponses[keyof MarketplaceChecklistsCustomerRetrieveResponses];
14947
- export type MarketplaceChecklistsCustomerUpdateData = {
14948
- body: Array<string>;
14949
- path: {
14950
- customer_uuid: string;
14951
- };
14952
- query?: never;
14953
- url: '/api/customers/{customer_uuid}/marketplace-checklists/';
14954
- };
14955
- export type MarketplaceChecklistsCustomerUpdateResponses = {
14956
- 200: Array<string>;
14957
- };
14958
- export type MarketplaceChecklistsCustomerUpdateResponse = MarketplaceChecklistsCustomerUpdateResponses[keyof MarketplaceChecklistsCustomerUpdateResponses];
14959
- export type MarketplaceChecklistsCustomerStatsData = {
14960
- body?: never;
14961
- path: {
14962
- checklist_uuid: string;
14963
- customer_uuid: string;
14964
- };
14965
- query?: never;
14966
- url: '/api/customers/{customer_uuid}/marketplace-checklists/{checklist_uuid}/';
14967
- };
14968
- export type MarketplaceChecklistsCustomerStatsResponses = {
14969
- 200: Array<CustomerChecklistStat>;
14970
- };
14971
- export type MarketplaceChecklistsCustomerStatsResponse = MarketplaceChecklistsCustomerStatsResponses[keyof MarketplaceChecklistsCustomerStatsResponses];
14972
14915
  export type CustomersDestroyData = {
14973
14916
  body?: never;
14974
14917
  path: {
@@ -18597,46 +18540,6 @@ export type MarketplaceCategoryHelpArticlesUpdateResponses = {
18597
18540
  200: CategoryHelpArticles;
18598
18541
  };
18599
18542
  export type MarketplaceCategoryHelpArticlesUpdateResponse = MarketplaceCategoryHelpArticlesUpdateResponses[keyof MarketplaceCategoryHelpArticlesUpdateResponses];
18600
- export type MarketplaceChecklistsListData = {
18601
- body?: never;
18602
- path?: never;
18603
- query?: {
18604
- /**
18605
- * A page number within the paginated result set.
18606
- */
18607
- page?: number;
18608
- /**
18609
- * Number of results to return per page.
18610
- */
18611
- page_size?: number;
18612
- };
18613
- url: '/api/marketplace-checklists/';
18614
- };
18615
- export type MarketplaceChecklistsListResponses = {
18616
- 200: Array<Checklist>;
18617
- };
18618
- export type MarketplaceChecklistsListResponse = MarketplaceChecklistsListResponses[keyof MarketplaceChecklistsListResponses];
18619
- export type MarketplaceChecklistsHeadData = {
18620
- body?: never;
18621
- path?: never;
18622
- query?: {
18623
- /**
18624
- * A page number within the paginated result set.
18625
- */
18626
- page?: number;
18627
- /**
18628
- * Number of results to return per page.
18629
- */
18630
- page_size?: number;
18631
- };
18632
- url: '/api/marketplace-checklists/';
18633
- };
18634
- export type MarketplaceChecklistsHeadResponses = {
18635
- /**
18636
- * No response body
18637
- */
18638
- 200: unknown;
18639
- };
18640
18543
  export type MarketplaceChecklistsAdminListData = {
18641
18544
  body?: never;
18642
18545
  path?: never;
@@ -19089,27 +18992,6 @@ export type MarketplaceChecklistsCategoriesListResponses = {
19089
18992
  200: Array<ChecklistCategory>;
19090
18993
  };
19091
18994
  export type MarketplaceChecklistsCategoriesListResponse = MarketplaceChecklistsCategoriesListResponses[keyof MarketplaceChecklistsCategoriesListResponses];
19092
- export type MarketplaceChecklistsCategoriesChecklistsListData = {
19093
- body?: never;
19094
- path: {
19095
- category_uuid: string;
19096
- };
19097
- query?: {
19098
- /**
19099
- * A page number within the paginated result set.
19100
- */
19101
- page?: number;
19102
- /**
19103
- * Number of results to return per page.
19104
- */
19105
- page_size?: number;
19106
- };
19107
- url: '/api/marketplace-checklists-categories/{category_uuid}/checklists/';
19108
- };
19109
- export type MarketplaceChecklistsCategoriesChecklistsListResponses = {
19110
- 200: Array<Checklist>;
19111
- };
19112
- export type MarketplaceChecklistsCategoriesChecklistsListResponse = MarketplaceChecklistsCategoriesChecklistsListResponses[keyof MarketplaceChecklistsCategoriesChecklistsListResponses];
19113
18995
  export type MarketplaceChecklistsCategoriesRetrieveData = {
19114
18996
  body?: never;
19115
18997
  path: {
@@ -19122,119 +19004,6 @@ export type MarketplaceChecklistsCategoriesRetrieveResponses = {
19122
19004
  200: ChecklistCategory;
19123
19005
  };
19124
19006
  export type MarketplaceChecklistsCategoriesRetrieveResponse = MarketplaceChecklistsCategoriesRetrieveResponses[keyof MarketplaceChecklistsCategoriesRetrieveResponses];
19125
- export type MarketplaceChecklistsAnswersListData = {
19126
- body?: never;
19127
- path: {
19128
- checklist_uuid: string;
19129
- };
19130
- query?: {
19131
- /**
19132
- * A page number within the paginated result set.
19133
- */
19134
- page?: number;
19135
- /**
19136
- * Number of results to return per page.
19137
- */
19138
- page_size?: number;
19139
- };
19140
- url: '/api/marketplace-checklists/{checklist_uuid}/answers/';
19141
- };
19142
- export type MarketplaceChecklistsAnswersListResponses = {
19143
- 200: Array<AnswerList>;
19144
- };
19145
- export type MarketplaceChecklistsAnswersListResponse = MarketplaceChecklistsAnswersListResponses[keyof MarketplaceChecklistsAnswersListResponses];
19146
- export type MarketplaceChecklistsAnswersSubmitCreateData = {
19147
- body: Array<AnswerSubmitRequest>;
19148
- path: {
19149
- checklist_uuid: string;
19150
- };
19151
- query?: {
19152
- /**
19153
- * User UUID to submit answer on behalf of. Required staff permission.
19154
- */
19155
- on_behalf_user_uuid?: string;
19156
- /**
19157
- * A page number within the paginated result set.
19158
- */
19159
- page?: number;
19160
- /**
19161
- * Number of results to return per page.
19162
- */
19163
- page_size?: number;
19164
- };
19165
- url: '/api/marketplace-checklists/{checklist_uuid}/answers/submit/';
19166
- };
19167
- export type MarketplaceChecklistsAnswersSubmitCreateResponses = {
19168
- 201: Array<AnswerSubmit>;
19169
- };
19170
- export type MarketplaceChecklistsAnswersSubmitCreateResponse = MarketplaceChecklistsAnswersSubmitCreateResponses[keyof MarketplaceChecklistsAnswersSubmitCreateResponses];
19171
- export type MarketplaceChecklistsStatsListData = {
19172
- body?: never;
19173
- path: {
19174
- checklist_uuid: string;
19175
- };
19176
- query?: never;
19177
- url: '/api/marketplace-checklists/{checklist_uuid}/stats/';
19178
- };
19179
- export type MarketplaceChecklistsStatsListResponses = {
19180
- 200: Array<ChecklistCustomerStats>;
19181
- };
19182
- export type MarketplaceChecklistsStatsListResponse = MarketplaceChecklistsStatsListResponses[keyof MarketplaceChecklistsStatsListResponses];
19183
- export type MarketplaceChecklistsUserAnswersListData = {
19184
- body?: never;
19185
- path: {
19186
- checklist_uuid: string;
19187
- user_uuid: string;
19188
- };
19189
- query?: {
19190
- /**
19191
- * A page number within the paginated result set.
19192
- */
19193
- page?: number;
19194
- /**
19195
- * Number of results to return per page.
19196
- */
19197
- page_size?: number;
19198
- };
19199
- url: '/api/marketplace-checklists/{checklist_uuid}/user/{user_uuid}/answers/';
19200
- };
19201
- export type MarketplaceChecklistsUserAnswersListResponses = {
19202
- 200: Array<AnswerList>;
19203
- };
19204
- export type MarketplaceChecklistsUserAnswersListResponse = MarketplaceChecklistsUserAnswersListResponses[keyof MarketplaceChecklistsUserAnswersListResponses];
19205
- export type MarketplaceChecklistsRetrieveData = {
19206
- body?: never;
19207
- path: {
19208
- uuid: string;
19209
- };
19210
- query?: never;
19211
- url: '/api/marketplace-checklists/{uuid}/';
19212
- };
19213
- export type MarketplaceChecklistsRetrieveResponses = {
19214
- 200: Checklist;
19215
- };
19216
- export type MarketplaceChecklistsRetrieveResponse = MarketplaceChecklistsRetrieveResponses[keyof MarketplaceChecklistsRetrieveResponses];
19217
- export type MarketplaceChecklistsQuestionsListData = {
19218
- body?: never;
19219
- path: {
19220
- uuid: string;
19221
- };
19222
- query?: {
19223
- /**
19224
- * A page number within the paginated result set.
19225
- */
19226
- page?: number;
19227
- /**
19228
- * Number of results to return per page.
19229
- */
19230
- page_size?: number;
19231
- };
19232
- url: '/api/marketplace-checklists/{uuid}/questions/';
19233
- };
19234
- export type MarketplaceChecklistsQuestionsListResponses = {
19235
- 200: Array<Question>;
19236
- };
19237
- export type MarketplaceChecklistsQuestionsListResponse = MarketplaceChecklistsQuestionsListResponses[keyof MarketplaceChecklistsQuestionsListResponses];
19238
19007
  export type MarketplaceComponentUsagesListData = {
19239
19008
  body?: never;
19240
19009
  path?: never;
@@ -23805,6 +23574,20 @@ export type MarketplaceProviderResourcesPlanPeriodsListResponses = {
23805
23574
  200: Array<ResourcePlanPeriod>;
23806
23575
  };
23807
23576
  export type MarketplaceProviderResourcesPlanPeriodsListResponse = MarketplaceProviderResourcesPlanPeriodsListResponses[keyof MarketplaceProviderResourcesPlanPeriodsListResponses];
23577
+ export type MarketplaceProviderResourcesPullData = {
23578
+ body?: never;
23579
+ path: {
23580
+ uuid: string;
23581
+ };
23582
+ query?: never;
23583
+ url: '/api/marketplace-provider-resources/{uuid}/pull/';
23584
+ };
23585
+ export type MarketplaceProviderResourcesPullResponses = {
23586
+ 200: {
23587
+ [key: string]: string;
23588
+ };
23589
+ };
23590
+ export type MarketplaceProviderResourcesPullResponse = MarketplaceProviderResourcesPullResponses[keyof MarketplaceProviderResourcesPullResponses];
23808
23591
  export type MarketplaceProviderResourcesRefreshLastSyncData = {
23809
23592
  body?: never;
23810
23593
  path: {
@@ -24726,6 +24509,20 @@ export type MarketplaceResourcesPlanPeriodsListResponses = {
24726
24509
  200: Array<ResourcePlanPeriod>;
24727
24510
  };
24728
24511
  export type MarketplaceResourcesPlanPeriodsListResponse = MarketplaceResourcesPlanPeriodsListResponses[keyof MarketplaceResourcesPlanPeriodsListResponses];
24512
+ export type MarketplaceResourcesPullData = {
24513
+ body?: never;
24514
+ path: {
24515
+ uuid: string;
24516
+ };
24517
+ query?: never;
24518
+ url: '/api/marketplace-resources/{uuid}/pull/';
24519
+ };
24520
+ export type MarketplaceResourcesPullResponses = {
24521
+ 200: {
24522
+ [key: string]: string;
24523
+ };
24524
+ };
24525
+ export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
24729
24526
  export type MarketplaceResourcesSetEndDateByStaffData = {
24730
24527
  body?: ResourceEndDateByProviderRequest;
24731
24528
  path: {
@@ -31556,18 +31353,6 @@ export type ProjectsCreateResponses = {
31556
31353
  201: Project;
31557
31354
  };
31558
31355
  export type ProjectsCreateResponse = ProjectsCreateResponses[keyof ProjectsCreateResponses];
31559
- export type ProjectsMarketplaceChecklistsListData = {
31560
- body?: never;
31561
- path: {
31562
- project_uuid: string;
31563
- };
31564
- query?: never;
31565
- url: '/api/projects/{project_uuid}/marketplace-checklists/';
31566
- };
31567
- export type ProjectsMarketplaceChecklistsListResponses = {
31568
- 200: Array<ProjectStatsItem>;
31569
- };
31570
- export type ProjectsMarketplaceChecklistsListResponse = ProjectsMarketplaceChecklistsListResponses[keyof ProjectsMarketplaceChecklistsListResponses];
31571
31356
  export type ProjectsDestroyData = {
31572
31357
  body?: never;
31573
31358
  path: {
@@ -32137,30 +31922,94 @@ export type ProposalProposalsAttachDocumentResponses = {
32137
31922
  */
32138
31923
  200: unknown;
32139
31924
  };
32140
- export type ProposalProposalsComplianceChecklistRetrieveData = {
31925
+ export type ProposalProposalsChecklistRetrieveData = {
31926
+ body?: never;
31927
+ path: {
31928
+ uuid: string;
31929
+ };
31930
+ query?: never;
31931
+ url: '/api/proposal-proposals/{uuid}/checklist/';
31932
+ };
31933
+ export type ProposalProposalsChecklistRetrieveErrors = {
31934
+ /**
31935
+ * No checklist configured
31936
+ */
31937
+ 400: unknown;
31938
+ /**
31939
+ * Object not found
31940
+ */
31941
+ 404: unknown;
31942
+ };
31943
+ export type ProposalProposalsChecklistRetrieveResponses = {
31944
+ 200: ChecklistResponse;
31945
+ };
31946
+ export type ProposalProposalsChecklistRetrieveResponse = ProposalProposalsChecklistRetrieveResponses[keyof ProposalProposalsChecklistRetrieveResponses];
31947
+ export type ProposalProposalsChecklistReviewRetrieveData = {
31948
+ body?: never;
31949
+ path: {
31950
+ uuid: string;
31951
+ };
31952
+ query?: never;
31953
+ url: '/api/proposal-proposals/{uuid}/checklist_review/';
31954
+ };
31955
+ export type ProposalProposalsChecklistReviewRetrieveErrors = {
31956
+ /**
31957
+ * No checklist configured
31958
+ */
31959
+ 400: unknown;
31960
+ /**
31961
+ * Object not found
31962
+ */
31963
+ 404: unknown;
31964
+ };
31965
+ export type ProposalProposalsChecklistReviewRetrieveResponses = {
31966
+ 200: ChecklistReviewerResponse;
31967
+ };
31968
+ export type ProposalProposalsChecklistReviewRetrieveResponse = ProposalProposalsChecklistReviewRetrieveResponses[keyof ProposalProposalsChecklistReviewRetrieveResponses];
31969
+ export type ProposalProposalsCompletionReviewStatusRetrieveData = {
32141
31970
  body?: never;
32142
31971
  path: {
32143
31972
  uuid: string;
32144
31973
  };
32145
31974
  query?: never;
32146
- url: '/api/proposal-proposals/{uuid}/compliance_checklist/';
31975
+ url: '/api/proposal-proposals/{uuid}/completion_review_status/';
31976
+ };
31977
+ export type ProposalProposalsCompletionReviewStatusRetrieveErrors = {
31978
+ /**
31979
+ * No checklist configured
31980
+ */
31981
+ 400: unknown;
31982
+ /**
31983
+ * Object not found
31984
+ */
31985
+ 404: unknown;
32147
31986
  };
32148
- export type ProposalProposalsComplianceChecklistRetrieveResponses = {
32149
- 200: ProposalComplianceChecklistResponse;
31987
+ export type ProposalProposalsCompletionReviewStatusRetrieveResponses = {
31988
+ 200: ChecklistCompletionReviewer;
32150
31989
  };
32151
- export type ProposalProposalsComplianceChecklistRetrieveResponse = ProposalProposalsComplianceChecklistRetrieveResponses[keyof ProposalProposalsComplianceChecklistRetrieveResponses];
32152
- export type ProposalProposalsComplianceStatusRetrieveData = {
31990
+ export type ProposalProposalsCompletionReviewStatusRetrieveResponse = ProposalProposalsCompletionReviewStatusRetrieveResponses[keyof ProposalProposalsCompletionReviewStatusRetrieveResponses];
31991
+ export type ProposalProposalsCompletionStatusRetrieveData = {
32153
31992
  body?: never;
32154
31993
  path: {
32155
31994
  uuid: string;
32156
31995
  };
32157
31996
  query?: never;
32158
- url: '/api/proposal-proposals/{uuid}/compliance_status/';
31997
+ url: '/api/proposal-proposals/{uuid}/completion_status/';
32159
31998
  };
32160
- export type ProposalProposalsComplianceStatusRetrieveResponses = {
32161
- 200: ProposalChecklistCompletion;
31999
+ export type ProposalProposalsCompletionStatusRetrieveErrors = {
32000
+ /**
32001
+ * No checklist configured
32002
+ */
32003
+ 400: unknown;
32004
+ /**
32005
+ * Object not found
32006
+ */
32007
+ 404: unknown;
32162
32008
  };
32163
- export type ProposalProposalsComplianceStatusRetrieveResponse = ProposalProposalsComplianceStatusRetrieveResponses[keyof ProposalProposalsComplianceStatusRetrieveResponses];
32009
+ export type ProposalProposalsCompletionStatusRetrieveResponses = {
32010
+ 200: ChecklistCompletion;
32011
+ };
32012
+ export type ProposalProposalsCompletionStatusRetrieveResponse = ProposalProposalsCompletionStatusRetrieveResponses[keyof ProposalProposalsCompletionStatusRetrieveResponses];
32164
32013
  export type ProposalProposalsDeleteUserData = {
32165
32014
  body: UserRoleDeleteRequest;
32166
32015
  path: {
@@ -32352,18 +32201,28 @@ export type ProposalProposalsSubmitResponses = {
32352
32201
  */
32353
32202
  200: unknown;
32354
32203
  };
32355
- export type ProposalProposalsSubmitComplianceAnswersData = {
32356
- body: Array<ProposalChecklistAnswerSubmitRequest>;
32204
+ export type ProposalProposalsSubmitAnswersData = {
32205
+ body: Array<AnswerSubmitRequest>;
32357
32206
  path: {
32358
32207
  uuid: string;
32359
32208
  };
32360
32209
  query?: never;
32361
- url: '/api/proposal-proposals/{uuid}/submit_compliance_answers/';
32210
+ url: '/api/proposal-proposals/{uuid}/submit_answers/';
32211
+ };
32212
+ export type ProposalProposalsSubmitAnswersErrors = {
32213
+ /**
32214
+ * Validation error or no checklist configured
32215
+ */
32216
+ 400: unknown;
32217
+ /**
32218
+ * Object not found
32219
+ */
32220
+ 404: unknown;
32362
32221
  };
32363
- export type ProposalProposalsSubmitComplianceAnswersResponses = {
32364
- 200: ProposalChecklistAnswerSubmitResponse;
32222
+ export type ProposalProposalsSubmitAnswersResponses = {
32223
+ 200: AnswerSubmitResponse;
32365
32224
  };
32366
- export type ProposalProposalsSubmitComplianceAnswersResponse = ProposalProposalsSubmitComplianceAnswersResponses[keyof ProposalProposalsSubmitComplianceAnswersResponses];
32225
+ export type ProposalProposalsSubmitAnswersResponse = ProposalProposalsSubmitAnswersResponses[keyof ProposalProposalsSubmitAnswersResponses];
32367
32226
  export type ProposalProposalsUpdateProjectDetailsData = {
32368
32227
  body: ProposalUpdateProjectDetailsRequest;
32369
32228
  path: {
@@ -32797,7 +32656,7 @@ export type ProposalProtectedCallsProposalsComplianceAnswersListData = {
32797
32656
  url: '/api/proposal-protected-calls/{uuid}/proposals/{proposal_uuid}/compliance-answers/';
32798
32657
  };
32799
32658
  export type ProposalProtectedCallsProposalsComplianceAnswersListResponses = {
32800
- 200: Array<ProposalChecklistAnswer>;
32659
+ 200: Array<Answer>;
32801
32660
  };
32802
32661
  export type ProposalProtectedCallsProposalsComplianceAnswersListResponse = ProposalProtectedCallsProposalsComplianceAnswersListResponses[keyof ProposalProtectedCallsProposalsComplianceAnswersListResponses];
32803
32662
  export type ProposalProtectedCallsResourceTemplatesListData = {
@@ -38134,18 +37993,6 @@ export type UsersCreateResponses = {
38134
37993
  201: User;
38135
37994
  };
38136
37995
  export type UsersCreateResponse = UsersCreateResponses[keyof UsersCreateResponses];
38137
- export type UsersMarketplaceChecklistStatsRetrieveData = {
38138
- body?: never;
38139
- path: {
38140
- user_uuid: string;
38141
- };
38142
- query?: never;
38143
- url: '/api/users/{user_uuid}/marketplace-checklist-stats/';
38144
- };
38145
- export type UsersMarketplaceChecklistStatsRetrieveResponses = {
38146
- 200: UserStats;
38147
- };
38148
- export type UsersMarketplaceChecklistStatsRetrieveResponse = UsersMarketplaceChecklistStatsRetrieveResponses[keyof UsersMarketplaceChecklistStatsRetrieveResponses];
38149
37996
  export type UsersDestroyData = {
38150
37997
  body?: never;
38151
37998
  path: {