waldur-js-client 7.7.5-dev.2 → 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.
package/dist/sdk.gen.js CHANGED
@@ -3961,58 +3961,6 @@ export const customersCreate = (options) => {
3961
3961
  }
3962
3962
  });
3963
3963
  };
3964
- export const marketplaceChecklistsCustomerRetrieve = (options) => {
3965
- return (options.client ?? _heyApiClient).get({
3966
- security: [
3967
- {
3968
- name: 'Authorization',
3969
- type: 'apiKey'
3970
- },
3971
- {
3972
- scheme: 'bearer',
3973
- type: 'http'
3974
- }
3975
- ],
3976
- url: '/api/customers/{customer_uuid}/marketplace-checklists/',
3977
- ...options
3978
- });
3979
- };
3980
- export const marketplaceChecklistsCustomerUpdate = (options) => {
3981
- return (options.client ?? _heyApiClient).post({
3982
- security: [
3983
- {
3984
- name: 'Authorization',
3985
- type: 'apiKey'
3986
- },
3987
- {
3988
- scheme: 'bearer',
3989
- type: 'http'
3990
- }
3991
- ],
3992
- url: '/api/customers/{customer_uuid}/marketplace-checklists/',
3993
- ...options,
3994
- headers: {
3995
- 'Content-Type': 'application/json',
3996
- ...options.headers
3997
- }
3998
- });
3999
- };
4000
- export const marketplaceChecklistsCustomerStats = (options) => {
4001
- return (options.client ?? _heyApiClient).get({
4002
- security: [
4003
- {
4004
- name: 'Authorization',
4005
- type: 'apiKey'
4006
- },
4007
- {
4008
- scheme: 'bearer',
4009
- type: 'http'
4010
- }
4011
- ],
4012
- url: '/api/customers/{customer_uuid}/marketplace-checklists/{checklist_uuid}/',
4013
- ...options
4014
- });
4015
- };
4016
3964
  /**
4017
3965
  * If a customer has connected projects, deletion request will fail with 409 response code.
4018
3966
  */
@@ -7657,44 +7605,6 @@ export const marketplaceCategoryHelpArticlesUpdate = (options) => {
7657
7605
  }
7658
7606
  });
7659
7607
  };
7660
- /**
7661
- * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
7662
- */
7663
- export const marketplaceChecklistsList = (options) => {
7664
- return (options?.client ?? _heyApiClient).get({
7665
- security: [
7666
- {
7667
- name: 'Authorization',
7668
- type: 'apiKey'
7669
- },
7670
- {
7671
- scheme: 'bearer',
7672
- type: 'http'
7673
- }
7674
- ],
7675
- url: '/api/marketplace-checklists/',
7676
- ...options
7677
- });
7678
- };
7679
- /**
7680
- * Get number of items in the collection matching the request parameters.
7681
- */
7682
- export const marketplaceChecklistsHead = (options) => {
7683
- return (options?.client ?? _heyApiClient).head({
7684
- security: [
7685
- {
7686
- name: 'Authorization',
7687
- type: 'apiKey'
7688
- },
7689
- {
7690
- scheme: 'bearer',
7691
- type: 'http'
7692
- }
7693
- ],
7694
- url: '/api/marketplace-checklists/',
7695
- ...options
7696
- });
7697
- };
7698
7608
  /**
7699
7609
  * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
7700
7610
  */
@@ -8253,25 +8163,6 @@ export const marketplaceChecklistsCategoriesList = (options) => {
8253
8163
  ...options
8254
8164
  });
8255
8165
  };
8256
- /**
8257
- * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
8258
- */
8259
- export const marketplaceChecklistsCategoriesChecklistsList = (options) => {
8260
- return (options.client ?? _heyApiClient).get({
8261
- security: [
8262
- {
8263
- name: 'Authorization',
8264
- type: 'apiKey'
8265
- },
8266
- {
8267
- scheme: 'bearer',
8268
- type: 'http'
8269
- }
8270
- ],
8271
- url: '/api/marketplace-checklists-categories/{category_uuid}/checklists/',
8272
- ...options
8273
- });
8274
- };
8275
8166
  export const marketplaceChecklistsCategoriesRetrieve = (options) => {
8276
8167
  return (options.client ?? _heyApiClient).get({
8277
8168
  security: [
@@ -8288,121 +8179,6 @@ export const marketplaceChecklistsCategoriesRetrieve = (options) => {
8288
8179
  ...options
8289
8180
  });
8290
8181
  };
8291
- /**
8292
- * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
8293
- */
8294
- export const marketplaceChecklistsAnswersList = (options) => {
8295
- return (options.client ?? _heyApiClient).get({
8296
- security: [
8297
- {
8298
- name: 'Authorization',
8299
- type: 'apiKey'
8300
- },
8301
- {
8302
- scheme: 'bearer',
8303
- type: 'http'
8304
- }
8305
- ],
8306
- url: '/api/marketplace-checklists/{checklist_uuid}/answers/',
8307
- ...options
8308
- });
8309
- };
8310
- /**
8311
- * Submit answer to checklist question
8312
- */
8313
- export const marketplaceChecklistsAnswersSubmitCreate = (options) => {
8314
- return (options.client ?? _heyApiClient).post({
8315
- security: [
8316
- {
8317
- name: 'Authorization',
8318
- type: 'apiKey'
8319
- },
8320
- {
8321
- scheme: 'bearer',
8322
- type: 'http'
8323
- }
8324
- ],
8325
- url: '/api/marketplace-checklists/{checklist_uuid}/answers/submit/',
8326
- ...options,
8327
- headers: {
8328
- 'Content-Type': 'application/json',
8329
- ...options.headers
8330
- }
8331
- });
8332
- };
8333
- /**
8334
- * Checklist stats per customer
8335
- */
8336
- export const marketplaceChecklistsStatsList = (options) => {
8337
- return (options.client ?? _heyApiClient).get({
8338
- security: [
8339
- {
8340
- name: 'Authorization',
8341
- type: 'apiKey'
8342
- },
8343
- {
8344
- scheme: 'bearer',
8345
- type: 'http'
8346
- }
8347
- ],
8348
- url: '/api/marketplace-checklists/{checklist_uuid}/stats/',
8349
- ...options
8350
- });
8351
- };
8352
- /**
8353
- * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
8354
- */
8355
- export const marketplaceChecklistsUserAnswersList = (options) => {
8356
- return (options.client ?? _heyApiClient).get({
8357
- security: [
8358
- {
8359
- name: 'Authorization',
8360
- type: 'apiKey'
8361
- },
8362
- {
8363
- scheme: 'bearer',
8364
- type: 'http'
8365
- }
8366
- ],
8367
- url: '/api/marketplace-checklists/{checklist_uuid}/user/{user_uuid}/answers/',
8368
- ...options
8369
- });
8370
- };
8371
- export const marketplaceChecklistsRetrieve = (options) => {
8372
- return (options.client ?? _heyApiClient).get({
8373
- security: [
8374
- {
8375
- name: 'Authorization',
8376
- type: 'apiKey'
8377
- },
8378
- {
8379
- scheme: 'bearer',
8380
- type: 'http'
8381
- }
8382
- ],
8383
- url: '/api/marketplace-checklists/{uuid}/',
8384
- ...options
8385
- });
8386
- };
8387
- /**
8388
- * Return questions available for current user.
8389
- */
8390
- export const marketplaceChecklistsQuestionsList = (options) => {
8391
- return (options.client ?? _heyApiClient).get({
8392
- security: [
8393
- {
8394
- name: 'Authorization',
8395
- type: 'apiKey'
8396
- },
8397
- {
8398
- scheme: 'bearer',
8399
- type: 'http'
8400
- }
8401
- ],
8402
- url: '/api/marketplace-checklists/{uuid}/questions/',
8403
- ...options
8404
- });
8405
- };
8406
8182
  /**
8407
8183
  * Mixin to optimize HEAD requests for DRF views bypassing serializer processing
8408
8184
  */
@@ -12579,6 +12355,25 @@ export const marketplaceProviderResourcesPlanPeriodsList = (options) => {
12579
12355
  ...options
12580
12356
  });
12581
12357
  };
12358
+ /**
12359
+ * Starts process of pulling a resource
12360
+ */
12361
+ export const marketplaceProviderResourcesPull = (options) => {
12362
+ return (options.client ?? _heyApiClient).post({
12363
+ security: [
12364
+ {
12365
+ name: 'Authorization',
12366
+ type: 'apiKey'
12367
+ },
12368
+ {
12369
+ scheme: 'bearer',
12370
+ type: 'http'
12371
+ }
12372
+ ],
12373
+ url: '/api/marketplace-provider-resources/{uuid}/pull/',
12374
+ ...options
12375
+ });
12376
+ };
12582
12377
  /**
12583
12378
  * Refresh the last sync time for a resource.
12584
12379
  */
@@ -13450,6 +13245,25 @@ export const marketplaceResourcesPlanPeriodsList = (options) => {
13450
13245
  ...options
13451
13246
  });
13452
13247
  };
13248
+ /**
13249
+ * Starts process of pulling a resource
13250
+ */
13251
+ export const marketplaceResourcesPull = (options) => {
13252
+ return (options.client ?? _heyApiClient).post({
13253
+ security: [
13254
+ {
13255
+ name: 'Authorization',
13256
+ type: 'apiKey'
13257
+ },
13258
+ {
13259
+ scheme: 'bearer',
13260
+ type: 'http'
13261
+ }
13262
+ ],
13263
+ url: '/api/marketplace-resources/{uuid}/pull/',
13264
+ ...options
13265
+ });
13266
+ };
13453
13267
  /**
13454
13268
  * Set end date of the resource by staff.
13455
13269
  */
@@ -20138,22 +19952,6 @@ export const projectsCreate = (options) => {
20138
19952
  }
20139
19953
  });
20140
19954
  };
20141
- export const projectsMarketplaceChecklistsList = (options) => {
20142
- return (options.client ?? _heyApiClient).get({
20143
- security: [
20144
- {
20145
- name: 'Authorization',
20146
- type: 'apiKey'
20147
- },
20148
- {
20149
- scheme: 'bearer',
20150
- type: 'http'
20151
- }
20152
- ],
20153
- url: '/api/projects/{project_uuid}/marketplace-checklists/',
20154
- ...options
20155
- });
20156
- };
20157
19955
  /**
20158
19956
  * If a project has connected instances, deletion request will fail with 409 response code.
20159
19957
  */
@@ -20725,9 +20523,47 @@ export const proposalProposalsAttachDocument = (options) => {
20725
20523
  });
20726
20524
  };
20727
20525
  /**
20728
- * Get compliance checklist for proposal with questions and existing answers.
20526
+ * Get checklist with questions and existing answers.
20527
+ */
20528
+ export const proposalProposalsChecklistRetrieve = (options) => {
20529
+ return (options.client ?? _heyApiClient).get({
20530
+ security: [
20531
+ {
20532
+ name: 'Authorization',
20533
+ type: 'apiKey'
20534
+ },
20535
+ {
20536
+ scheme: 'bearer',
20537
+ type: 'http'
20538
+ }
20539
+ ],
20540
+ url: '/api/proposal-proposals/{uuid}/checklist/',
20541
+ ...options
20542
+ });
20543
+ };
20544
+ /**
20545
+ * Get checklist with questions and existing answers including review logic (reviewers only).
20546
+ */
20547
+ export const proposalProposalsChecklistReviewRetrieve = (options) => {
20548
+ return (options.client ?? _heyApiClient).get({
20549
+ security: [
20550
+ {
20551
+ name: 'Authorization',
20552
+ type: 'apiKey'
20553
+ },
20554
+ {
20555
+ scheme: 'bearer',
20556
+ type: 'http'
20557
+ }
20558
+ ],
20559
+ url: '/api/proposal-proposals/{uuid}/checklist_review/',
20560
+ ...options
20561
+ });
20562
+ };
20563
+ /**
20564
+ * Get checklist completion status with review triggers (reviewers only).
20729
20565
  */
20730
- export const proposalProposalsComplianceChecklistRetrieve = (options) => {
20566
+ export const proposalProposalsCompletionReviewStatusRetrieve = (options) => {
20731
20567
  return (options.client ?? _heyApiClient).get({
20732
20568
  security: [
20733
20569
  {
@@ -20739,14 +20575,14 @@ export const proposalProposalsComplianceChecklistRetrieve = (options) => {
20739
20575
  type: 'http'
20740
20576
  }
20741
20577
  ],
20742
- url: '/api/proposal-proposals/{uuid}/compliance_checklist/',
20578
+ url: '/api/proposal-proposals/{uuid}/completion_review_status/',
20743
20579
  ...options
20744
20580
  });
20745
20581
  };
20746
20582
  /**
20747
- * Get compliance checklist completion status.
20583
+ * Get checklist completion status.
20748
20584
  */
20749
- export const proposalProposalsComplianceStatusRetrieve = (options) => {
20585
+ export const proposalProposalsCompletionStatusRetrieve = (options) => {
20750
20586
  return (options.client ?? _heyApiClient).get({
20751
20587
  security: [
20752
20588
  {
@@ -20758,7 +20594,7 @@ export const proposalProposalsComplianceStatusRetrieve = (options) => {
20758
20594
  type: 'http'
20759
20595
  }
20760
20596
  ],
20761
- url: '/api/proposal-proposals/{uuid}/compliance_status/',
20597
+ url: '/api/proposal-proposals/{uuid}/completion_status/',
20762
20598
  ...options
20763
20599
  });
20764
20600
  };
@@ -20955,9 +20791,9 @@ export const proposalProposalsSubmit = (options) => {
20955
20791
  });
20956
20792
  };
20957
20793
  /**
20958
- * Submit compliance checklist answers (Proposal managers only).
20794
+ * Submit checklist answers.
20959
20795
  */
20960
- export const proposalProposalsSubmitComplianceAnswers = (options) => {
20796
+ export const proposalProposalsSubmitAnswers = (options) => {
20961
20797
  return (options.client ?? _heyApiClient).post({
20962
20798
  security: [
20963
20799
  {
@@ -20969,7 +20805,7 @@ export const proposalProposalsSubmitComplianceAnswers = (options) => {
20969
20805
  type: 'http'
20970
20806
  }
20971
20807
  ],
20972
- url: '/api/proposal-proposals/{uuid}/submit_compliance_answers/',
20808
+ url: '/api/proposal-proposals/{uuid}/submit_answers/',
20973
20809
  ...options,
20974
20810
  headers: {
20975
20811
  'Content-Type': 'application/json',
@@ -26741,22 +26577,6 @@ export const usersCreate = (options) => {
26741
26577
  }
26742
26578
  });
26743
26579
  };
26744
- export const usersMarketplaceChecklistStatsRetrieve = (options) => {
26745
- return (options.client ?? _heyApiClient).get({
26746
- security: [
26747
- {
26748
- name: 'Authorization',
26749
- type: 'apiKey'
26750
- },
26751
- {
26752
- scheme: 'bearer',
26753
- type: 'http'
26754
- }
26755
- ],
26756
- url: '/api/users/{user_uuid}/marketplace-checklist-stats/',
26757
- ...options
26758
- });
26759
- };
26760
26580
  export const usersDestroy = (options) => {
26761
26581
  return (options.client ?? _heyApiClient).delete({
26762
26582
  security: [