waldur-js-client 7.7.6-dev.4 → 7.7.6-dev.6
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.d.ts +29 -1
- package/dist/sdk.gen.js +137 -0
- package/dist/types.gen.d.ts +746 -11
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -10282,6 +10282,82 @@ export const marketplaceOfferingUsersBeginCreating = (options) => {
|
|
|
10282
10282
|
...options
|
|
10283
10283
|
});
|
|
10284
10284
|
};
|
|
10285
|
+
/**
|
|
10286
|
+
* Get checklist with questions and existing answers.
|
|
10287
|
+
*/
|
|
10288
|
+
export const marketplaceOfferingUsersChecklistRetrieve = (options) => {
|
|
10289
|
+
return (options.client ?? _heyApiClient).get({
|
|
10290
|
+
security: [
|
|
10291
|
+
{
|
|
10292
|
+
name: 'Authorization',
|
|
10293
|
+
type: 'apiKey'
|
|
10294
|
+
},
|
|
10295
|
+
{
|
|
10296
|
+
scheme: 'bearer',
|
|
10297
|
+
type: 'http'
|
|
10298
|
+
}
|
|
10299
|
+
],
|
|
10300
|
+
url: '/api/marketplace-offering-users/{uuid}/checklist/',
|
|
10301
|
+
...options
|
|
10302
|
+
});
|
|
10303
|
+
};
|
|
10304
|
+
/**
|
|
10305
|
+
* Get checklist with questions and existing answers including review logic (reviewers only).
|
|
10306
|
+
*/
|
|
10307
|
+
export const marketplaceOfferingUsersChecklistReviewRetrieve = (options) => {
|
|
10308
|
+
return (options.client ?? _heyApiClient).get({
|
|
10309
|
+
security: [
|
|
10310
|
+
{
|
|
10311
|
+
name: 'Authorization',
|
|
10312
|
+
type: 'apiKey'
|
|
10313
|
+
},
|
|
10314
|
+
{
|
|
10315
|
+
scheme: 'bearer',
|
|
10316
|
+
type: 'http'
|
|
10317
|
+
}
|
|
10318
|
+
],
|
|
10319
|
+
url: '/api/marketplace-offering-users/{uuid}/checklist_review/',
|
|
10320
|
+
...options
|
|
10321
|
+
});
|
|
10322
|
+
};
|
|
10323
|
+
/**
|
|
10324
|
+
* Get checklist completion status with review triggers (reviewers only).
|
|
10325
|
+
*/
|
|
10326
|
+
export const marketplaceOfferingUsersCompletionReviewStatusRetrieve = (options) => {
|
|
10327
|
+
return (options.client ?? _heyApiClient).get({
|
|
10328
|
+
security: [
|
|
10329
|
+
{
|
|
10330
|
+
name: 'Authorization',
|
|
10331
|
+
type: 'apiKey'
|
|
10332
|
+
},
|
|
10333
|
+
{
|
|
10334
|
+
scheme: 'bearer',
|
|
10335
|
+
type: 'http'
|
|
10336
|
+
}
|
|
10337
|
+
],
|
|
10338
|
+
url: '/api/marketplace-offering-users/{uuid}/completion_review_status/',
|
|
10339
|
+
...options
|
|
10340
|
+
});
|
|
10341
|
+
};
|
|
10342
|
+
/**
|
|
10343
|
+
* Get checklist completion status.
|
|
10344
|
+
*/
|
|
10345
|
+
export const marketplaceOfferingUsersCompletionStatusRetrieve = (options) => {
|
|
10346
|
+
return (options.client ?? _heyApiClient).get({
|
|
10347
|
+
security: [
|
|
10348
|
+
{
|
|
10349
|
+
name: 'Authorization',
|
|
10350
|
+
type: 'apiKey'
|
|
10351
|
+
},
|
|
10352
|
+
{
|
|
10353
|
+
scheme: 'bearer',
|
|
10354
|
+
type: 'http'
|
|
10355
|
+
}
|
|
10356
|
+
],
|
|
10357
|
+
url: '/api/marketplace-offering-users/{uuid}/completion_status/',
|
|
10358
|
+
...options
|
|
10359
|
+
});
|
|
10360
|
+
};
|
|
10285
10361
|
/**
|
|
10286
10362
|
* Action to request deletion of an offering user account.
|
|
10287
10363
|
*/
|
|
@@ -10443,6 +10519,29 @@ export const marketplaceOfferingUsersSetValidationComplete = (options) => {
|
|
|
10443
10519
|
...options
|
|
10444
10520
|
});
|
|
10445
10521
|
};
|
|
10522
|
+
/**
|
|
10523
|
+
* Submit checklist answers.
|
|
10524
|
+
*/
|
|
10525
|
+
export const marketplaceOfferingUsersSubmitAnswers = (options) => {
|
|
10526
|
+
return (options.client ?? _heyApiClient).post({
|
|
10527
|
+
security: [
|
|
10528
|
+
{
|
|
10529
|
+
name: 'Authorization',
|
|
10530
|
+
type: 'apiKey'
|
|
10531
|
+
},
|
|
10532
|
+
{
|
|
10533
|
+
scheme: 'bearer',
|
|
10534
|
+
type: 'http'
|
|
10535
|
+
}
|
|
10536
|
+
],
|
|
10537
|
+
url: '/api/marketplace-offering-users/{uuid}/submit_answers/',
|
|
10538
|
+
...options,
|
|
10539
|
+
headers: {
|
|
10540
|
+
'Content-Type': 'application/json',
|
|
10541
|
+
...options.headers
|
|
10542
|
+
}
|
|
10543
|
+
});
|
|
10544
|
+
};
|
|
10446
10545
|
/**
|
|
10447
10546
|
* Action for service providers to update comment and comment URL fields.
|
|
10448
10547
|
*/
|
|
@@ -14435,6 +14534,44 @@ export const marketplaceServiceProvidersCreate = (options) => {
|
|
|
14435
14534
|
}
|
|
14436
14535
|
});
|
|
14437
14536
|
};
|
|
14537
|
+
/**
|
|
14538
|
+
* Get compliance overview statistics for all offerings managed by this service provider.
|
|
14539
|
+
*/
|
|
14540
|
+
export const serviceProviderComplianceOverview = (options) => {
|
|
14541
|
+
return (options.client ?? _heyApiClient).get({
|
|
14542
|
+
security: [
|
|
14543
|
+
{
|
|
14544
|
+
name: 'Authorization',
|
|
14545
|
+
type: 'apiKey'
|
|
14546
|
+
},
|
|
14547
|
+
{
|
|
14548
|
+
scheme: 'bearer',
|
|
14549
|
+
type: 'http'
|
|
14550
|
+
}
|
|
14551
|
+
],
|
|
14552
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/compliance_overview/',
|
|
14553
|
+
...options
|
|
14554
|
+
});
|
|
14555
|
+
};
|
|
14556
|
+
/**
|
|
14557
|
+
* List offering users with their compliance status for this service provider.
|
|
14558
|
+
*/
|
|
14559
|
+
export const serviceProviderOfferingUsersCompliance = (options) => {
|
|
14560
|
+
return (options.client ?? _heyApiClient).get({
|
|
14561
|
+
security: [
|
|
14562
|
+
{
|
|
14563
|
+
name: 'Authorization',
|
|
14564
|
+
type: 'apiKey'
|
|
14565
|
+
},
|
|
14566
|
+
{
|
|
14567
|
+
scheme: 'bearer',
|
|
14568
|
+
type: 'http'
|
|
14569
|
+
}
|
|
14570
|
+
],
|
|
14571
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/offering_users/',
|
|
14572
|
+
...options
|
|
14573
|
+
});
|
|
14574
|
+
};
|
|
14438
14575
|
/**
|
|
14439
14576
|
* Return customer projects of service provider.
|
|
14440
14577
|
*/
|