waldur-js-client 7.7.8-dev.5 → 7.7.8-dev.7
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 +40 -1
- package/dist/sdk.gen.js +284 -0
- package/dist/types.gen.d.ts +428 -14
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -9187,6 +9187,116 @@ export const marketplaceComponentUserUsagesRetrieve = (options) => {
|
|
|
9187
9187
|
...options
|
|
9188
9188
|
});
|
|
9189
9189
|
};
|
|
9190
|
+
/**
|
|
9191
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
9192
|
+
*/
|
|
9193
|
+
export const marketplaceCourseAccountsList = (options) => {
|
|
9194
|
+
return (options?.client ?? _heyApiClient).get({
|
|
9195
|
+
security: [
|
|
9196
|
+
{
|
|
9197
|
+
name: 'Authorization',
|
|
9198
|
+
type: 'apiKey'
|
|
9199
|
+
},
|
|
9200
|
+
{
|
|
9201
|
+
scheme: 'bearer',
|
|
9202
|
+
type: 'http'
|
|
9203
|
+
}
|
|
9204
|
+
],
|
|
9205
|
+
url: '/api/marketplace-course-accounts/',
|
|
9206
|
+
...options
|
|
9207
|
+
});
|
|
9208
|
+
};
|
|
9209
|
+
/**
|
|
9210
|
+
* Get number of items in the collection matching the request parameters.
|
|
9211
|
+
*/
|
|
9212
|
+
export const marketplaceCourseAccountsCount = (options) => {
|
|
9213
|
+
return (options?.client ?? _heyApiClient).head({
|
|
9214
|
+
security: [
|
|
9215
|
+
{
|
|
9216
|
+
name: 'Authorization',
|
|
9217
|
+
type: 'apiKey'
|
|
9218
|
+
},
|
|
9219
|
+
{
|
|
9220
|
+
scheme: 'bearer',
|
|
9221
|
+
type: 'http'
|
|
9222
|
+
}
|
|
9223
|
+
],
|
|
9224
|
+
url: '/api/marketplace-course-accounts/',
|
|
9225
|
+
...options
|
|
9226
|
+
});
|
|
9227
|
+
};
|
|
9228
|
+
export const marketplaceCourseAccountsCreate = (options) => {
|
|
9229
|
+
return (options.client ?? _heyApiClient).post({
|
|
9230
|
+
security: [
|
|
9231
|
+
{
|
|
9232
|
+
name: 'Authorization',
|
|
9233
|
+
type: 'apiKey'
|
|
9234
|
+
},
|
|
9235
|
+
{
|
|
9236
|
+
scheme: 'bearer',
|
|
9237
|
+
type: 'http'
|
|
9238
|
+
}
|
|
9239
|
+
],
|
|
9240
|
+
url: '/api/marketplace-course-accounts/',
|
|
9241
|
+
...options,
|
|
9242
|
+
headers: {
|
|
9243
|
+
'Content-Type': 'application/json',
|
|
9244
|
+
...options.headers
|
|
9245
|
+
}
|
|
9246
|
+
});
|
|
9247
|
+
};
|
|
9248
|
+
export const marketplaceCourseAccountsDestroy = (options) => {
|
|
9249
|
+
return (options.client ?? _heyApiClient).delete({
|
|
9250
|
+
security: [
|
|
9251
|
+
{
|
|
9252
|
+
name: 'Authorization',
|
|
9253
|
+
type: 'apiKey'
|
|
9254
|
+
},
|
|
9255
|
+
{
|
|
9256
|
+
scheme: 'bearer',
|
|
9257
|
+
type: 'http'
|
|
9258
|
+
}
|
|
9259
|
+
],
|
|
9260
|
+
url: '/api/marketplace-course-accounts/{uuid}/',
|
|
9261
|
+
...options
|
|
9262
|
+
});
|
|
9263
|
+
};
|
|
9264
|
+
export const marketplaceCourseAccountsRetrieve = (options) => {
|
|
9265
|
+
return (options.client ?? _heyApiClient).get({
|
|
9266
|
+
security: [
|
|
9267
|
+
{
|
|
9268
|
+
name: 'Authorization',
|
|
9269
|
+
type: 'apiKey'
|
|
9270
|
+
},
|
|
9271
|
+
{
|
|
9272
|
+
scheme: 'bearer',
|
|
9273
|
+
type: 'http'
|
|
9274
|
+
}
|
|
9275
|
+
],
|
|
9276
|
+
url: '/api/marketplace-course-accounts/{uuid}/',
|
|
9277
|
+
...options
|
|
9278
|
+
});
|
|
9279
|
+
};
|
|
9280
|
+
export const marketplaceCourseAccountsCreateBulk = (options) => {
|
|
9281
|
+
return (options.client ?? _heyApiClient).post({
|
|
9282
|
+
security: [
|
|
9283
|
+
{
|
|
9284
|
+
name: 'Authorization',
|
|
9285
|
+
type: 'apiKey'
|
|
9286
|
+
},
|
|
9287
|
+
{
|
|
9288
|
+
scheme: 'bearer',
|
|
9289
|
+
type: 'http'
|
|
9290
|
+
}
|
|
9291
|
+
],
|
|
9292
|
+
url: '/api/marketplace-course-accounts/create_bulk/',
|
|
9293
|
+
...options,
|
|
9294
|
+
headers: {
|
|
9295
|
+
'Content-Type': 'application/json',
|
|
9296
|
+
...options.headers
|
|
9297
|
+
}
|
|
9298
|
+
});
|
|
9299
|
+
};
|
|
9190
9300
|
/**
|
|
9191
9301
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
9192
9302
|
*/
|
|
@@ -14852,6 +14962,31 @@ export const serviceProviderOfferingUsersCompliance = (options) => {
|
|
|
14852
14962
|
...options
|
|
14853
14963
|
});
|
|
14854
14964
|
};
|
|
14965
|
+
/**
|
|
14966
|
+
* Return course project accounts that have access to resources managed by the provider.
|
|
14967
|
+
*
|
|
14968
|
+
* Checks for:
|
|
14969
|
+
* - Projects with active service provider's resources
|
|
14970
|
+
* - Course accounts with non-blank users
|
|
14971
|
+
*
|
|
14972
|
+
*
|
|
14973
|
+
*/
|
|
14974
|
+
export const marketplaceServiceProvidersCourseAccountsList = (options) => {
|
|
14975
|
+
return (options.client ?? _heyApiClient).get({
|
|
14976
|
+
security: [
|
|
14977
|
+
{
|
|
14978
|
+
name: 'Authorization',
|
|
14979
|
+
type: 'apiKey'
|
|
14980
|
+
},
|
|
14981
|
+
{
|
|
14982
|
+
scheme: 'bearer',
|
|
14983
|
+
type: 'http'
|
|
14984
|
+
}
|
|
14985
|
+
],
|
|
14986
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/',
|
|
14987
|
+
...options
|
|
14988
|
+
});
|
|
14989
|
+
};
|
|
14855
14990
|
/**
|
|
14856
14991
|
* Return customer projects of service provider.
|
|
14857
14992
|
*/
|
|
@@ -26407,6 +26542,136 @@ export const supportFeedbacksRetrieve = (options) => {
|
|
|
26407
26542
|
...options
|
|
26408
26543
|
});
|
|
26409
26544
|
};
|
|
26545
|
+
/**
|
|
26546
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
26547
|
+
*/
|
|
26548
|
+
export const supportIssueStatusesList = (options) => {
|
|
26549
|
+
return (options?.client ?? _heyApiClient).get({
|
|
26550
|
+
security: [
|
|
26551
|
+
{
|
|
26552
|
+
name: 'Authorization',
|
|
26553
|
+
type: 'apiKey'
|
|
26554
|
+
},
|
|
26555
|
+
{
|
|
26556
|
+
scheme: 'bearer',
|
|
26557
|
+
type: 'http'
|
|
26558
|
+
}
|
|
26559
|
+
],
|
|
26560
|
+
url: '/api/support-issue-statuses/',
|
|
26561
|
+
...options
|
|
26562
|
+
});
|
|
26563
|
+
};
|
|
26564
|
+
/**
|
|
26565
|
+
* Get number of items in the collection matching the request parameters.
|
|
26566
|
+
*/
|
|
26567
|
+
export const supportIssueStatusesCount = (options) => {
|
|
26568
|
+
return (options?.client ?? _heyApiClient).head({
|
|
26569
|
+
security: [
|
|
26570
|
+
{
|
|
26571
|
+
name: 'Authorization',
|
|
26572
|
+
type: 'apiKey'
|
|
26573
|
+
},
|
|
26574
|
+
{
|
|
26575
|
+
scheme: 'bearer',
|
|
26576
|
+
type: 'http'
|
|
26577
|
+
}
|
|
26578
|
+
],
|
|
26579
|
+
url: '/api/support-issue-statuses/',
|
|
26580
|
+
...options
|
|
26581
|
+
});
|
|
26582
|
+
};
|
|
26583
|
+
export const supportIssueStatusesCreate = (options) => {
|
|
26584
|
+
return (options.client ?? _heyApiClient).post({
|
|
26585
|
+
security: [
|
|
26586
|
+
{
|
|
26587
|
+
name: 'Authorization',
|
|
26588
|
+
type: 'apiKey'
|
|
26589
|
+
},
|
|
26590
|
+
{
|
|
26591
|
+
scheme: 'bearer',
|
|
26592
|
+
type: 'http'
|
|
26593
|
+
}
|
|
26594
|
+
],
|
|
26595
|
+
url: '/api/support-issue-statuses/',
|
|
26596
|
+
...options,
|
|
26597
|
+
headers: {
|
|
26598
|
+
'Content-Type': 'application/json',
|
|
26599
|
+
...options.headers
|
|
26600
|
+
}
|
|
26601
|
+
});
|
|
26602
|
+
};
|
|
26603
|
+
export const supportIssueStatusesDestroy = (options) => {
|
|
26604
|
+
return (options.client ?? _heyApiClient).delete({
|
|
26605
|
+
security: [
|
|
26606
|
+
{
|
|
26607
|
+
name: 'Authorization',
|
|
26608
|
+
type: 'apiKey'
|
|
26609
|
+
},
|
|
26610
|
+
{
|
|
26611
|
+
scheme: 'bearer',
|
|
26612
|
+
type: 'http'
|
|
26613
|
+
}
|
|
26614
|
+
],
|
|
26615
|
+
url: '/api/support-issue-statuses/{uuid}/',
|
|
26616
|
+
...options
|
|
26617
|
+
});
|
|
26618
|
+
};
|
|
26619
|
+
export const supportIssueStatusesRetrieve = (options) => {
|
|
26620
|
+
return (options.client ?? _heyApiClient).get({
|
|
26621
|
+
security: [
|
|
26622
|
+
{
|
|
26623
|
+
name: 'Authorization',
|
|
26624
|
+
type: 'apiKey'
|
|
26625
|
+
},
|
|
26626
|
+
{
|
|
26627
|
+
scheme: 'bearer',
|
|
26628
|
+
type: 'http'
|
|
26629
|
+
}
|
|
26630
|
+
],
|
|
26631
|
+
url: '/api/support-issue-statuses/{uuid}/',
|
|
26632
|
+
...options
|
|
26633
|
+
});
|
|
26634
|
+
};
|
|
26635
|
+
export const supportIssueStatusesPartialUpdate = (options) => {
|
|
26636
|
+
return (options.client ?? _heyApiClient).patch({
|
|
26637
|
+
security: [
|
|
26638
|
+
{
|
|
26639
|
+
name: 'Authorization',
|
|
26640
|
+
type: 'apiKey'
|
|
26641
|
+
},
|
|
26642
|
+
{
|
|
26643
|
+
scheme: 'bearer',
|
|
26644
|
+
type: 'http'
|
|
26645
|
+
}
|
|
26646
|
+
],
|
|
26647
|
+
url: '/api/support-issue-statuses/{uuid}/',
|
|
26648
|
+
...options,
|
|
26649
|
+
headers: {
|
|
26650
|
+
'Content-Type': 'application/json',
|
|
26651
|
+
...options.headers
|
|
26652
|
+
}
|
|
26653
|
+
});
|
|
26654
|
+
};
|
|
26655
|
+
export const supportIssueStatusesUpdate = (options) => {
|
|
26656
|
+
return (options.client ?? _heyApiClient).put({
|
|
26657
|
+
security: [
|
|
26658
|
+
{
|
|
26659
|
+
name: 'Authorization',
|
|
26660
|
+
type: 'apiKey'
|
|
26661
|
+
},
|
|
26662
|
+
{
|
|
26663
|
+
scheme: 'bearer',
|
|
26664
|
+
type: 'http'
|
|
26665
|
+
}
|
|
26666
|
+
],
|
|
26667
|
+
url: '/api/support-issue-statuses/{uuid}/',
|
|
26668
|
+
...options,
|
|
26669
|
+
headers: {
|
|
26670
|
+
'Content-Type': 'application/json',
|
|
26671
|
+
...options.headers
|
|
26672
|
+
}
|
|
26673
|
+
});
|
|
26674
|
+
};
|
|
26410
26675
|
/**
|
|
26411
26676
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
26412
26677
|
*/
|
|
@@ -27491,6 +27756,25 @@ export const userPermissionRequestsApprove = (options) => {
|
|
|
27491
27756
|
}
|
|
27492
27757
|
});
|
|
27493
27758
|
};
|
|
27759
|
+
/**
|
|
27760
|
+
* Cancel permission request. Users can cancel their own requests, staff can cancel any request.
|
|
27761
|
+
*/
|
|
27762
|
+
export const userPermissionRequestsCancelRequest = (options) => {
|
|
27763
|
+
return (options.client ?? _heyApiClient).post({
|
|
27764
|
+
security: [
|
|
27765
|
+
{
|
|
27766
|
+
name: 'Authorization',
|
|
27767
|
+
type: 'apiKey'
|
|
27768
|
+
},
|
|
27769
|
+
{
|
|
27770
|
+
scheme: 'bearer',
|
|
27771
|
+
type: 'http'
|
|
27772
|
+
}
|
|
27773
|
+
],
|
|
27774
|
+
url: '/api/user-permission-requests/{uuid}/cancel_request/',
|
|
27775
|
+
...options
|
|
27776
|
+
});
|
|
27777
|
+
};
|
|
27494
27778
|
export const userPermissionRequestsReject = (options) => {
|
|
27495
27779
|
return (options.client ?? _heyApiClient).post({
|
|
27496
27780
|
security: [
|