waldur-js-client 7.7.2-dev.1 → 7.7.2-dev.2

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.
@@ -30,15 +30,18 @@ export type AgreementTypeEnum = 'TOS' | 'PP';
30
30
  export type AllocationTimeEnum = 'on_decision' | 'fixed_date';
31
31
  export type AnswerList = {
32
32
  readonly question_uuid: string;
33
- value?: boolean | null;
33
+ /**
34
+ * Flexible answer storage for different question types
35
+ */
36
+ answer_data?: unknown;
34
37
  };
35
38
  export type AnswerSubmit = {
36
39
  question_uuid: string;
37
- value: boolean | null;
40
+ answer_data: unknown;
38
41
  };
39
42
  export type AnswerSubmitRequest = {
40
43
  question_uuid: string;
41
- value: boolean | null;
44
+ answer_data: unknown;
42
45
  };
43
46
  export type Attachment = {
44
47
  readonly url?: string;
@@ -1029,6 +1032,7 @@ export type CallResourceTemplate = {
1029
1032
  requested_offering?: string;
1030
1033
  readonly requested_offering_name?: string;
1031
1034
  readonly requested_offering_uuid?: string;
1035
+ requested_offering_plan?: BasePublicPlan;
1032
1036
  readonly created_by?: string | null;
1033
1037
  readonly created_by_name?: string;
1034
1038
  readonly created?: string;
@@ -1277,12 +1281,24 @@ export type CategorySerializerForForNestedFieldsRequest = {
1277
1281
  };
1278
1282
  export type Checklist = {
1279
1283
  readonly uuid: string;
1284
+ readonly url: string;
1285
+ name: string;
1286
+ description?: string;
1287
+ readonly questions_count: number;
1288
+ readonly category_name: string;
1289
+ readonly category_uuid: string;
1290
+ readonly roles: Array<string>;
1291
+ };
1292
+ export type ChecklistAdmin = {
1293
+ readonly uuid: string;
1294
+ readonly url: string;
1280
1295
  name: string;
1281
1296
  description?: string;
1282
1297
  readonly questions_count: number;
1283
1298
  readonly category_name: string;
1284
1299
  readonly category_uuid: string;
1285
1300
  readonly roles: Array<string>;
1301
+ readonly checklist_type: string;
1286
1302
  };
1287
1303
  export type ChecklistCategory = {
1288
1304
  readonly uuid: string;
@@ -1299,17 +1315,7 @@ export type ChecklistCustomerStats = {
1299
1315
  readonly longitude: number;
1300
1316
  readonly score: number;
1301
1317
  };
1302
- export type ChecklistQuestion = {
1303
- readonly uuid: string;
1304
- description?: string;
1305
- /**
1306
- * It is shown when incorrect or N/A answer is chosen
1307
- */
1308
- solution?: string | null;
1309
- readonly category_uuid: string;
1310
- correct_answer?: boolean;
1311
- image?: string | null;
1312
- };
1318
+ export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance';
1313
1319
  export type ClusterSecurityGroup = {
1314
1320
  readonly uuid: string;
1315
1321
  readonly name: string;
@@ -1804,6 +1810,23 @@ export type CountryEnum = 'AL' | 'AT' | 'BE' | 'BG' | 'BA' | 'CH' | 'CY' | 'CZ'
1804
1810
  export type CreateAttachmentsRequest = {
1805
1811
  attachments: Array<Blob | File>;
1806
1812
  };
1813
+ export type CreateChecklist = {
1814
+ readonly uuid: string;
1815
+ readonly url: string;
1816
+ name: string;
1817
+ description?: string;
1818
+ readonly questions_count: number;
1819
+ readonly category_name: string;
1820
+ readonly category_uuid: string;
1821
+ roles?: Array<string>;
1822
+ checklist_type: ChecklistTypeEnum;
1823
+ };
1824
+ export type CreateChecklistRequest = {
1825
+ name: string;
1826
+ description?: string;
1827
+ roles?: Array<string>;
1828
+ checklist_type: ChecklistTypeEnum;
1829
+ };
1807
1830
  export type CreateCustomerCredit = {
1808
1831
  readonly uuid: string;
1809
1832
  readonly url: string;
@@ -6052,6 +6075,7 @@ export type OpenStackVolumeType = {
6052
6075
  description?: string;
6053
6076
  settings: string;
6054
6077
  };
6078
+ export type OperatorEnum = 'equals' | 'not_equals' | 'contains' | 'in' | 'not_in';
6055
6079
  export type OptionField = {
6056
6080
  type: OptionFieldTypeEnum;
6057
6081
  label: string;
@@ -6400,6 +6424,12 @@ export type PatchedComponentUserUsageLimitRequest = {
6400
6424
  user?: string;
6401
6425
  limit?: string;
6402
6426
  };
6427
+ export type PatchedCreateChecklistRequest = {
6428
+ name?: string;
6429
+ description?: string;
6430
+ roles?: Array<string>;
6431
+ checklist_type?: ChecklistTypeEnum;
6432
+ };
6403
6433
  export type PatchedCreateCustomerCreditRequest = {
6404
6434
  value?: string;
6405
6435
  customer?: string;
@@ -6865,6 +6895,43 @@ export type PatchedProviderPlanDetailsRequest = {
6865
6895
  unit?: BillingUnit;
6866
6896
  backend_id?: string;
6867
6897
  };
6898
+ export type PatchedQuestionAdminRequest = {
6899
+ description?: string;
6900
+ /**
6901
+ * Guidance shown when answer needs clarification
6902
+ */
6903
+ solution?: string | null;
6904
+ image?: (Blob | File) | null;
6905
+ checklist?: string;
6906
+ order?: number;
6907
+ required?: boolean;
6908
+ /**
6909
+ * Type of question and expected answer format
6910
+ */
6911
+ question_type?: QuestionTypeEnum;
6912
+ operator?: OperatorEnum | BlankEnum;
6913
+ /**
6914
+ * Answer value that trigger review.
6915
+ */
6916
+ review_answer_value?: unknown;
6917
+ /**
6918
+ * This question always requires review regardless of answer
6919
+ */
6920
+ always_requires_review?: boolean;
6921
+ };
6922
+ export type PatchedQuestionDependencyRequest = {
6923
+ question?: string;
6924
+ depends_on_question?: string;
6925
+ /**
6926
+ * The answer value(s) that make this question visible
6927
+ */
6928
+ required_answer_value?: unknown;
6929
+ operator?: OperatorEnum;
6930
+ };
6931
+ export type PatchedQuestionOptionsAdminRequest = {
6932
+ label?: string;
6933
+ order?: number;
6934
+ };
6868
6935
  export type PatchedRancherApplicationRequest = {
6869
6936
  name?: string;
6870
6937
  description?: string;
@@ -8182,6 +8249,112 @@ export type PullMarketplaceScriptResourceRequest = {
8182
8249
  export type QueryRequest = {
8183
8250
  query: string;
8184
8251
  };
8252
+ export type Question = {
8253
+ readonly uuid: string;
8254
+ description?: string;
8255
+ /**
8256
+ * Guidance shown when answer needs clarification
8257
+ */
8258
+ solution?: string | null;
8259
+ readonly category_uuid: string;
8260
+ image?: string | null;
8261
+ readonly question_options: Array<QuestionOptions>;
8262
+ };
8263
+ export type QuestionAdmin = {
8264
+ readonly uuid: string;
8265
+ description?: string;
8266
+ /**
8267
+ * Guidance shown when answer needs clarification
8268
+ */
8269
+ solution?: string | null;
8270
+ readonly category_uuid: string;
8271
+ image?: string | null;
8272
+ readonly question_options: Array<QuestionOptionsAdmin>;
8273
+ readonly url: string;
8274
+ readonly checklist_name: string;
8275
+ readonly checklist_uuid: string;
8276
+ checklist: string;
8277
+ order?: number;
8278
+ required?: boolean;
8279
+ /**
8280
+ * Type of question and expected answer format
8281
+ */
8282
+ question_type?: QuestionTypeEnum;
8283
+ operator?: OperatorEnum | BlankEnum;
8284
+ /**
8285
+ * Answer value that trigger review.
8286
+ */
8287
+ review_answer_value?: unknown;
8288
+ /**
8289
+ * This question always requires review regardless of answer
8290
+ */
8291
+ always_requires_review?: boolean;
8292
+ };
8293
+ export type QuestionAdminRequest = {
8294
+ description?: string;
8295
+ /**
8296
+ * Guidance shown when answer needs clarification
8297
+ */
8298
+ solution?: string | null;
8299
+ image?: (Blob | File) | null;
8300
+ checklist: string;
8301
+ order?: number;
8302
+ required?: boolean;
8303
+ /**
8304
+ * Type of question and expected answer format
8305
+ */
8306
+ question_type?: QuestionTypeEnum;
8307
+ operator?: OperatorEnum | BlankEnum;
8308
+ /**
8309
+ * Answer value that trigger review.
8310
+ */
8311
+ review_answer_value?: unknown;
8312
+ /**
8313
+ * This question always requires review regardless of answer
8314
+ */
8315
+ always_requires_review?: boolean;
8316
+ };
8317
+ export type QuestionDependency = {
8318
+ readonly uuid: string;
8319
+ readonly url: string;
8320
+ question: string;
8321
+ readonly question_name: string;
8322
+ depends_on_question: string;
8323
+ readonly depends_on_question_name: string;
8324
+ /**
8325
+ * The answer value(s) that make this question visible
8326
+ */
8327
+ required_answer_value: unknown;
8328
+ operator?: OperatorEnum;
8329
+ };
8330
+ export type QuestionDependencyRequest = {
8331
+ question: string;
8332
+ depends_on_question: string;
8333
+ /**
8334
+ * The answer value(s) that make this question visible
8335
+ */
8336
+ required_answer_value: unknown;
8337
+ operator?: OperatorEnum;
8338
+ };
8339
+ export type QuestionOptions = {
8340
+ readonly uuid: string;
8341
+ label: string;
8342
+ order?: number;
8343
+ };
8344
+ export type QuestionOptionsAdmin = {
8345
+ readonly uuid: string;
8346
+ label: string;
8347
+ order?: number;
8348
+ readonly url: string;
8349
+ question: string;
8350
+ readonly question_uuid: string;
8351
+ };
8352
+ export type QuestionOptionsAdminRequest = {
8353
+ label: string;
8354
+ order?: number;
8355
+ question: string;
8356
+ };
8357
+ export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file';
8185
8358
  export type Quota = {
8186
8359
  name?: string;
8187
8360
  usage?: number;
@@ -16191,6 +16364,351 @@ export type MarketplaceChecklistsListResponses = {
16191
16364
  200: Array<Checklist>;
16192
16365
  };
16193
16366
  export type MarketplaceChecklistsListResponse = MarketplaceChecklistsListResponses[keyof MarketplaceChecklistsListResponses];
16367
+ export type MarketplaceChecklistsAdminListData = {
16368
+ body?: never;
16369
+ path?: never;
16370
+ query?: {
16371
+ /**
16372
+ * A page number within the paginated result set.
16373
+ */
16374
+ page?: number;
16375
+ /**
16376
+ * Number of results to return per page.
16377
+ */
16378
+ page_size?: number;
16379
+ };
16380
+ url: '/api/marketplace-checklists-admin/';
16381
+ };
16382
+ export type MarketplaceChecklistsAdminListResponses = {
16383
+ 200: Array<ChecklistAdmin>;
16384
+ };
16385
+ export type MarketplaceChecklistsAdminListResponse = MarketplaceChecklistsAdminListResponses[keyof MarketplaceChecklistsAdminListResponses];
16386
+ export type MarketplaceChecklistsAdminCreateData = {
16387
+ body: CreateChecklistRequest;
16388
+ path?: never;
16389
+ query?: never;
16390
+ url: '/api/marketplace-checklists-admin/';
16391
+ };
16392
+ export type MarketplaceChecklistsAdminCreateResponses = {
16393
+ 201: CreateChecklist;
16394
+ };
16395
+ export type MarketplaceChecklistsAdminCreateResponse = MarketplaceChecklistsAdminCreateResponses[keyof MarketplaceChecklistsAdminCreateResponses];
16396
+ export type MarketplaceChecklistsAdminQuestionDependenciesListData = {
16397
+ body?: never;
16398
+ path?: never;
16399
+ query?: {
16400
+ depends_on_question_uuid?: string;
16401
+ /**
16402
+ * A page number within the paginated result set.
16403
+ */
16404
+ page?: number;
16405
+ /**
16406
+ * Number of results to return per page.
16407
+ */
16408
+ page_size?: number;
16409
+ question_uuid?: string;
16410
+ };
16411
+ url: '/api/marketplace-checklists-admin-question-dependencies/';
16412
+ };
16413
+ export type MarketplaceChecklistsAdminQuestionDependenciesListResponses = {
16414
+ 200: Array<QuestionDependency>;
16415
+ };
16416
+ export type MarketplaceChecklistsAdminQuestionDependenciesListResponse = MarketplaceChecklistsAdminQuestionDependenciesListResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesListResponses];
16417
+ export type MarketplaceChecklistsAdminQuestionDependenciesCreateData = {
16418
+ body: QuestionDependencyRequest;
16419
+ path?: never;
16420
+ query?: never;
16421
+ url: '/api/marketplace-checklists-admin-question-dependencies/';
16422
+ };
16423
+ export type MarketplaceChecklistsAdminQuestionDependenciesCreateResponses = {
16424
+ 201: QuestionDependency;
16425
+ };
16426
+ export type MarketplaceChecklistsAdminQuestionDependenciesCreateResponse = MarketplaceChecklistsAdminQuestionDependenciesCreateResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesCreateResponses];
16427
+ export type MarketplaceChecklistsAdminQuestionDependenciesDestroyData = {
16428
+ body?: never;
16429
+ path: {
16430
+ uuid: string;
16431
+ };
16432
+ query?: never;
16433
+ url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
16434
+ };
16435
+ export type MarketplaceChecklistsAdminQuestionDependenciesDestroyResponses = {
16436
+ /**
16437
+ * No response body
16438
+ */
16439
+ 204: void;
16440
+ };
16441
+ export type MarketplaceChecklistsAdminQuestionDependenciesDestroyResponse = MarketplaceChecklistsAdminQuestionDependenciesDestroyResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesDestroyResponses];
16442
+ export type MarketplaceChecklistsAdminQuestionDependenciesRetrieveData = {
16443
+ body?: never;
16444
+ path: {
16445
+ uuid: string;
16446
+ };
16447
+ query?: never;
16448
+ url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
16449
+ };
16450
+ export type MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponses = {
16451
+ 200: QuestionDependency;
16452
+ };
16453
+ export type MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponse = MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponses];
16454
+ export type MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateData = {
16455
+ body?: PatchedQuestionDependencyRequest;
16456
+ path: {
16457
+ uuid: string;
16458
+ };
16459
+ query?: never;
16460
+ url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
16461
+ };
16462
+ export type MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponses = {
16463
+ 200: QuestionDependency;
16464
+ };
16465
+ export type MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponse = MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponses];
16466
+ export type MarketplaceChecklistsAdminQuestionDependenciesUpdateData = {
16467
+ body: QuestionDependencyRequest;
16468
+ path: {
16469
+ uuid: string;
16470
+ };
16471
+ query?: never;
16472
+ url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
16473
+ };
16474
+ export type MarketplaceChecklistsAdminQuestionDependenciesUpdateResponses = {
16475
+ 200: QuestionDependency;
16476
+ };
16477
+ export type MarketplaceChecklistsAdminQuestionDependenciesUpdateResponse = MarketplaceChecklistsAdminQuestionDependenciesUpdateResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesUpdateResponses];
16478
+ export type MarketplaceChecklistsAdminQuestionOptionsListData = {
16479
+ body?: never;
16480
+ path?: never;
16481
+ query?: {
16482
+ /**
16483
+ * A page number within the paginated result set.
16484
+ */
16485
+ page?: number;
16486
+ /**
16487
+ * Number of results to return per page.
16488
+ */
16489
+ page_size?: number;
16490
+ question_uuid?: string;
16491
+ };
16492
+ url: '/api/marketplace-checklists-admin-question-options/';
16493
+ };
16494
+ export type MarketplaceChecklistsAdminQuestionOptionsListResponses = {
16495
+ 200: Array<QuestionOptionsAdmin>;
16496
+ };
16497
+ export type MarketplaceChecklistsAdminQuestionOptionsListResponse = MarketplaceChecklistsAdminQuestionOptionsListResponses[keyof MarketplaceChecklistsAdminQuestionOptionsListResponses];
16498
+ export type MarketplaceChecklistsAdminQuestionOptionsCreateData = {
16499
+ body: QuestionOptionsAdminRequest;
16500
+ path?: never;
16501
+ query?: never;
16502
+ url: '/api/marketplace-checklists-admin-question-options/';
16503
+ };
16504
+ export type MarketplaceChecklistsAdminQuestionOptionsCreateResponses = {
16505
+ 201: QuestionOptionsAdmin;
16506
+ };
16507
+ export type MarketplaceChecklistsAdminQuestionOptionsCreateResponse = MarketplaceChecklistsAdminQuestionOptionsCreateResponses[keyof MarketplaceChecklistsAdminQuestionOptionsCreateResponses];
16508
+ export type MarketplaceChecklistsAdminQuestionOptionsDestroyData = {
16509
+ body?: never;
16510
+ path: {
16511
+ uuid: string;
16512
+ };
16513
+ query?: never;
16514
+ url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
16515
+ };
16516
+ export type MarketplaceChecklistsAdminQuestionOptionsDestroyResponses = {
16517
+ /**
16518
+ * No response body
16519
+ */
16520
+ 204: void;
16521
+ };
16522
+ export type MarketplaceChecklistsAdminQuestionOptionsDestroyResponse = MarketplaceChecklistsAdminQuestionOptionsDestroyResponses[keyof MarketplaceChecklistsAdminQuestionOptionsDestroyResponses];
16523
+ export type MarketplaceChecklistsAdminQuestionOptionsRetrieveData = {
16524
+ body?: never;
16525
+ path: {
16526
+ uuid: string;
16527
+ };
16528
+ query?: never;
16529
+ url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
16530
+ };
16531
+ export type MarketplaceChecklistsAdminQuestionOptionsRetrieveResponses = {
16532
+ 200: QuestionOptionsAdmin;
16533
+ };
16534
+ export type MarketplaceChecklistsAdminQuestionOptionsRetrieveResponse = MarketplaceChecklistsAdminQuestionOptionsRetrieveResponses[keyof MarketplaceChecklistsAdminQuestionOptionsRetrieveResponses];
16535
+ export type MarketplaceChecklistsAdminQuestionOptionsPartialUpdateData = {
16536
+ body?: PatchedQuestionOptionsAdminRequest;
16537
+ path: {
16538
+ uuid: string;
16539
+ };
16540
+ query?: never;
16541
+ url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
16542
+ };
16543
+ export type MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponses = {
16544
+ 200: QuestionOptionsAdmin;
16545
+ };
16546
+ export type MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponse = MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponses[keyof MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponses];
16547
+ export type MarketplaceChecklistsAdminQuestionOptionsUpdateData = {
16548
+ body: QuestionOptionsAdminRequest;
16549
+ path: {
16550
+ uuid: string;
16551
+ };
16552
+ query?: never;
16553
+ url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
16554
+ };
16555
+ export type MarketplaceChecklistsAdminQuestionOptionsUpdateResponses = {
16556
+ 200: QuestionOptionsAdmin;
16557
+ };
16558
+ export type MarketplaceChecklistsAdminQuestionOptionsUpdateResponse = MarketplaceChecklistsAdminQuestionOptionsUpdateResponses[keyof MarketplaceChecklistsAdminQuestionOptionsUpdateResponses];
16559
+ export type MarketplaceChecklistsAdminQuestionsListData = {
16560
+ body?: never;
16561
+ path?: never;
16562
+ query?: {
16563
+ checklist_uuid?: string;
16564
+ /**
16565
+ * A page number within the paginated result set.
16566
+ */
16567
+ page?: number;
16568
+ /**
16569
+ * Number of results to return per page.
16570
+ */
16571
+ page_size?: number;
16572
+ };
16573
+ url: '/api/marketplace-checklists-admin-questions/';
16574
+ };
16575
+ export type MarketplaceChecklistsAdminQuestionsListResponses = {
16576
+ 200: Array<QuestionAdmin>;
16577
+ };
16578
+ export type MarketplaceChecklistsAdminQuestionsListResponse = MarketplaceChecklistsAdminQuestionsListResponses[keyof MarketplaceChecklistsAdminQuestionsListResponses];
16579
+ export type MarketplaceChecklistsAdminQuestionsCreateData = {
16580
+ body: QuestionAdminRequest;
16581
+ path?: never;
16582
+ query?: never;
16583
+ url: '/api/marketplace-checklists-admin-questions/';
16584
+ };
16585
+ export type MarketplaceChecklistsAdminQuestionsCreateResponses = {
16586
+ 201: QuestionAdmin;
16587
+ };
16588
+ export type MarketplaceChecklistsAdminQuestionsCreateResponse = MarketplaceChecklistsAdminQuestionsCreateResponses[keyof MarketplaceChecklistsAdminQuestionsCreateResponses];
16589
+ export type MarketplaceChecklistsAdminQuestionsDestroyData = {
16590
+ body?: never;
16591
+ path: {
16592
+ uuid: string;
16593
+ };
16594
+ query?: never;
16595
+ url: '/api/marketplace-checklists-admin-questions/{uuid}/';
16596
+ };
16597
+ export type MarketplaceChecklistsAdminQuestionsDestroyResponses = {
16598
+ /**
16599
+ * No response body
16600
+ */
16601
+ 204: void;
16602
+ };
16603
+ export type MarketplaceChecklistsAdminQuestionsDestroyResponse = MarketplaceChecklistsAdminQuestionsDestroyResponses[keyof MarketplaceChecklistsAdminQuestionsDestroyResponses];
16604
+ export type MarketplaceChecklistsAdminQuestionsRetrieveData = {
16605
+ body?: never;
16606
+ path: {
16607
+ uuid: string;
16608
+ };
16609
+ query?: never;
16610
+ url: '/api/marketplace-checklists-admin-questions/{uuid}/';
16611
+ };
16612
+ export type MarketplaceChecklistsAdminQuestionsRetrieveResponses = {
16613
+ 200: QuestionAdmin;
16614
+ };
16615
+ export type MarketplaceChecklistsAdminQuestionsRetrieveResponse = MarketplaceChecklistsAdminQuestionsRetrieveResponses[keyof MarketplaceChecklistsAdminQuestionsRetrieveResponses];
16616
+ export type MarketplaceChecklistsAdminQuestionsPartialUpdateData = {
16617
+ body?: PatchedQuestionAdminRequest;
16618
+ path: {
16619
+ uuid: string;
16620
+ };
16621
+ query?: never;
16622
+ url: '/api/marketplace-checklists-admin-questions/{uuid}/';
16623
+ };
16624
+ export type MarketplaceChecklistsAdminQuestionsPartialUpdateResponses = {
16625
+ 200: QuestionAdmin;
16626
+ };
16627
+ export type MarketplaceChecklistsAdminQuestionsPartialUpdateResponse = MarketplaceChecklistsAdminQuestionsPartialUpdateResponses[keyof MarketplaceChecklistsAdminQuestionsPartialUpdateResponses];
16628
+ export type MarketplaceChecklistsAdminQuestionsUpdateData = {
16629
+ body: QuestionAdminRequest;
16630
+ path: {
16631
+ uuid: string;
16632
+ };
16633
+ query?: never;
16634
+ url: '/api/marketplace-checklists-admin-questions/{uuid}/';
16635
+ };
16636
+ export type MarketplaceChecklistsAdminQuestionsUpdateResponses = {
16637
+ 200: QuestionAdmin;
16638
+ };
16639
+ export type MarketplaceChecklistsAdminQuestionsUpdateResponse = MarketplaceChecklistsAdminQuestionsUpdateResponses[keyof MarketplaceChecklistsAdminQuestionsUpdateResponses];
16640
+ export type MarketplaceChecklistsAdminDestroyData = {
16641
+ body?: never;
16642
+ path: {
16643
+ uuid: string;
16644
+ };
16645
+ query?: never;
16646
+ url: '/api/marketplace-checklists-admin/{uuid}/';
16647
+ };
16648
+ export type MarketplaceChecklistsAdminDestroyResponses = {
16649
+ /**
16650
+ * No response body
16651
+ */
16652
+ 204: void;
16653
+ };
16654
+ export type MarketplaceChecklistsAdminDestroyResponse = MarketplaceChecklistsAdminDestroyResponses[keyof MarketplaceChecklistsAdminDestroyResponses];
16655
+ export type MarketplaceChecklistsAdminRetrieveData = {
16656
+ body?: never;
16657
+ path: {
16658
+ uuid: string;
16659
+ };
16660
+ query?: never;
16661
+ url: '/api/marketplace-checklists-admin/{uuid}/';
16662
+ };
16663
+ export type MarketplaceChecklistsAdminRetrieveResponses = {
16664
+ 200: ChecklistAdmin;
16665
+ };
16666
+ export type MarketplaceChecklistsAdminRetrieveResponse = MarketplaceChecklistsAdminRetrieveResponses[keyof MarketplaceChecklistsAdminRetrieveResponses];
16667
+ export type MarketplaceChecklistsAdminPartialUpdateData = {
16668
+ body?: PatchedCreateChecklistRequest;
16669
+ path: {
16670
+ uuid: string;
16671
+ };
16672
+ query?: never;
16673
+ url: '/api/marketplace-checklists-admin/{uuid}/';
16674
+ };
16675
+ export type MarketplaceChecklistsAdminPartialUpdateResponses = {
16676
+ 200: CreateChecklist;
16677
+ };
16678
+ export type MarketplaceChecklistsAdminPartialUpdateResponse = MarketplaceChecklistsAdminPartialUpdateResponses[keyof MarketplaceChecklistsAdminPartialUpdateResponses];
16679
+ export type MarketplaceChecklistsAdminUpdateData = {
16680
+ body: CreateChecklistRequest;
16681
+ path: {
16682
+ uuid: string;
16683
+ };
16684
+ query?: never;
16685
+ url: '/api/marketplace-checklists-admin/{uuid}/';
16686
+ };
16687
+ export type MarketplaceChecklistsAdminUpdateResponses = {
16688
+ 200: CreateChecklist;
16689
+ };
16690
+ export type MarketplaceChecklistsAdminUpdateResponse = MarketplaceChecklistsAdminUpdateResponses[keyof MarketplaceChecklistsAdminUpdateResponses];
16691
+ export type MarketplaceChecklistsAdminChecklistQuestionsData = {
16692
+ body?: never;
16693
+ path: {
16694
+ uuid: string;
16695
+ };
16696
+ query?: {
16697
+ /**
16698
+ * A page number within the paginated result set.
16699
+ */
16700
+ page?: number;
16701
+ /**
16702
+ * Number of results to return per page.
16703
+ */
16704
+ page_size?: number;
16705
+ };
16706
+ url: '/api/marketplace-checklists-admin/{uuid}/questions/';
16707
+ };
16708
+ export type MarketplaceChecklistsAdminChecklistQuestionsResponses = {
16709
+ 200: Array<QuestionAdmin>;
16710
+ };
16711
+ export type MarketplaceChecklistsAdminChecklistQuestionsResponse = MarketplaceChecklistsAdminChecklistQuestionsResponses[keyof MarketplaceChecklistsAdminChecklistQuestionsResponses];
16194
16712
  export type MarketplaceChecklistsCategoriesListData = {
16195
16713
  body?: never;
16196
16714
  path?: never;
@@ -16243,18 +16761,6 @@ export type MarketplaceChecklistsCategoriesRetrieveResponses = {
16243
16761
  200: ChecklistCategory;
16244
16762
  };
16245
16763
  export type MarketplaceChecklistsCategoriesRetrieveResponse = MarketplaceChecklistsCategoriesRetrieveResponses[keyof MarketplaceChecklistsCategoriesRetrieveResponses];
16246
- export type MarketplaceChecklistsRetrieveData = {
16247
- body?: never;
16248
- path: {
16249
- checklist_uuid: string;
16250
- };
16251
- query?: never;
16252
- url: '/api/marketplace-checklists/{checklist_uuid}/';
16253
- };
16254
- export type MarketplaceChecklistsRetrieveResponses = {
16255
- 200: Checklist;
16256
- };
16257
- export type MarketplaceChecklistsRetrieveResponse = MarketplaceChecklistsRetrieveResponses[keyof MarketplaceChecklistsRetrieveResponses];
16258
16764
  export type MarketplaceChecklistsAnswersListData = {
16259
16765
  body?: never;
16260
16766
  path: {
@@ -16301,11 +16807,24 @@ export type MarketplaceChecklistsAnswersSubmitCreateResponses = {
16301
16807
  201: Array<AnswerSubmit>;
16302
16808
  };
16303
16809
  export type MarketplaceChecklistsAnswersSubmitCreateResponse = MarketplaceChecklistsAnswersSubmitCreateResponses[keyof MarketplaceChecklistsAnswersSubmitCreateResponses];
16304
- export type MarketplaceChecklistsQuestionsListData = {
16810
+ export type MarketplaceChecklistsStatsListData = {
16305
16811
  body?: never;
16306
16812
  path: {
16307
16813
  checklist_uuid: string;
16308
16814
  };
16815
+ query?: never;
16816
+ url: '/api/marketplace-checklists/{checklist_uuid}/stats/';
16817
+ };
16818
+ export type MarketplaceChecklistsStatsListResponses = {
16819
+ 200: Array<ChecklistCustomerStats>;
16820
+ };
16821
+ export type MarketplaceChecklistsStatsListResponse = MarketplaceChecklistsStatsListResponses[keyof MarketplaceChecklistsStatsListResponses];
16822
+ export type MarketplaceChecklistsUserAnswersListData = {
16823
+ body?: never;
16824
+ path: {
16825
+ checklist_uuid: string;
16826
+ user_uuid: string;
16827
+ };
16309
16828
  query?: {
16310
16829
  /**
16311
16830
  * A page number within the paginated result set.
@@ -16316,29 +16835,28 @@ export type MarketplaceChecklistsQuestionsListData = {
16316
16835
  */
16317
16836
  page_size?: number;
16318
16837
  };
16319
- url: '/api/marketplace-checklists/{checklist_uuid}/questions/';
16838
+ url: '/api/marketplace-checklists/{checklist_uuid}/user/{user_uuid}/answers/';
16320
16839
  };
16321
- export type MarketplaceChecklistsQuestionsListResponses = {
16322
- 200: Array<ChecklistQuestion>;
16840
+ export type MarketplaceChecklistsUserAnswersListResponses = {
16841
+ 200: Array<AnswerList>;
16323
16842
  };
16324
- export type MarketplaceChecklistsQuestionsListResponse = MarketplaceChecklistsQuestionsListResponses[keyof MarketplaceChecklistsQuestionsListResponses];
16325
- export type MarketplaceChecklistsStatsListData = {
16843
+ export type MarketplaceChecklistsUserAnswersListResponse = MarketplaceChecklistsUserAnswersListResponses[keyof MarketplaceChecklistsUserAnswersListResponses];
16844
+ export type MarketplaceChecklistsRetrieveData = {
16326
16845
  body?: never;
16327
16846
  path: {
16328
- checklist_uuid: string;
16847
+ uuid: string;
16329
16848
  };
16330
16849
  query?: never;
16331
- url: '/api/marketplace-checklists/{checklist_uuid}/stats/';
16850
+ url: '/api/marketplace-checklists/{uuid}/';
16332
16851
  };
16333
- export type MarketplaceChecklistsStatsListResponses = {
16334
- 200: Array<ChecklistCustomerStats>;
16852
+ export type MarketplaceChecklistsRetrieveResponses = {
16853
+ 200: Checklist;
16335
16854
  };
16336
- export type MarketplaceChecklistsStatsListResponse = MarketplaceChecklistsStatsListResponses[keyof MarketplaceChecklistsStatsListResponses];
16337
- export type MarketplaceChecklistsUserAnswersListData = {
16855
+ export type MarketplaceChecklistsRetrieveResponse = MarketplaceChecklistsRetrieveResponses[keyof MarketplaceChecklistsRetrieveResponses];
16856
+ export type MarketplaceChecklistsQuestionsListData = {
16338
16857
  body?: never;
16339
16858
  path: {
16340
- checklist_uuid: string;
16341
- user_uuid: string;
16859
+ uuid: string;
16342
16860
  };
16343
16861
  query?: {
16344
16862
  /**
@@ -16350,12 +16868,12 @@ export type MarketplaceChecklistsUserAnswersListData = {
16350
16868
  */
16351
16869
  page_size?: number;
16352
16870
  };
16353
- url: '/api/marketplace-checklists/{checklist_uuid}/user/{user_uuid}/answers/';
16871
+ url: '/api/marketplace-checklists/{uuid}/questions/';
16354
16872
  };
16355
- export type MarketplaceChecklistsUserAnswersListResponses = {
16356
- 200: Array<AnswerList>;
16873
+ export type MarketplaceChecklistsQuestionsListResponses = {
16874
+ 200: Array<Question>;
16357
16875
  };
16358
- export type MarketplaceChecklistsUserAnswersListResponse = MarketplaceChecklistsUserAnswersListResponses[keyof MarketplaceChecklistsUserAnswersListResponses];
16876
+ export type MarketplaceChecklistsQuestionsListResponse = MarketplaceChecklistsQuestionsListResponses[keyof MarketplaceChecklistsQuestionsListResponses];
16359
16877
  export type MarketplaceComponentUsagesListData = {
16360
16878
  body?: never;
16361
16879
  path?: never;