waldur-js-client 7.8.5-dev.0 → 7.8.5-dev.10
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 +21 -1
- package/dist/sdk.gen.js +201 -0
- package/dist/types.gen.d.ts +484 -19
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -9297,6 +9297,171 @@ export const marketplaceCourseAccountsCreateBulk = (options) => {
|
|
|
9297
9297
|
}
|
|
9298
9298
|
});
|
|
9299
9299
|
};
|
|
9300
|
+
/**
|
|
9301
|
+
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
9302
|
+
*/
|
|
9303
|
+
export const marketplaceCustomerComponentUsagePoliciesList = (options) => {
|
|
9304
|
+
return (options?.client ?? _heyApiClient).get({
|
|
9305
|
+
security: [
|
|
9306
|
+
{
|
|
9307
|
+
name: 'Authorization',
|
|
9308
|
+
type: 'apiKey'
|
|
9309
|
+
},
|
|
9310
|
+
{
|
|
9311
|
+
scheme: 'bearer',
|
|
9312
|
+
type: 'http'
|
|
9313
|
+
}
|
|
9314
|
+
],
|
|
9315
|
+
url: '/api/marketplace-customer-component-usage-policies/',
|
|
9316
|
+
...options
|
|
9317
|
+
});
|
|
9318
|
+
};
|
|
9319
|
+
/**
|
|
9320
|
+
* Get number of items in the collection matching the request parameters.
|
|
9321
|
+
*/
|
|
9322
|
+
export const marketplaceCustomerComponentUsagePoliciesCount = (options) => {
|
|
9323
|
+
return (options?.client ?? _heyApiClient).head({
|
|
9324
|
+
security: [
|
|
9325
|
+
{
|
|
9326
|
+
name: 'Authorization',
|
|
9327
|
+
type: 'apiKey'
|
|
9328
|
+
},
|
|
9329
|
+
{
|
|
9330
|
+
scheme: 'bearer',
|
|
9331
|
+
type: 'http'
|
|
9332
|
+
}
|
|
9333
|
+
],
|
|
9334
|
+
url: '/api/marketplace-customer-component-usage-policies/',
|
|
9335
|
+
...options
|
|
9336
|
+
});
|
|
9337
|
+
};
|
|
9338
|
+
export const marketplaceCustomerComponentUsagePoliciesCreate = (options) => {
|
|
9339
|
+
return (options.client ?? _heyApiClient).post({
|
|
9340
|
+
security: [
|
|
9341
|
+
{
|
|
9342
|
+
name: 'Authorization',
|
|
9343
|
+
type: 'apiKey'
|
|
9344
|
+
},
|
|
9345
|
+
{
|
|
9346
|
+
scheme: 'bearer',
|
|
9347
|
+
type: 'http'
|
|
9348
|
+
}
|
|
9349
|
+
],
|
|
9350
|
+
url: '/api/marketplace-customer-component-usage-policies/',
|
|
9351
|
+
...options,
|
|
9352
|
+
headers: {
|
|
9353
|
+
'Content-Type': 'application/json',
|
|
9354
|
+
...options.headers
|
|
9355
|
+
}
|
|
9356
|
+
});
|
|
9357
|
+
};
|
|
9358
|
+
export const marketplaceCustomerComponentUsagePoliciesDestroy = (options) => {
|
|
9359
|
+
return (options.client ?? _heyApiClient).delete({
|
|
9360
|
+
security: [
|
|
9361
|
+
{
|
|
9362
|
+
name: 'Authorization',
|
|
9363
|
+
type: 'apiKey'
|
|
9364
|
+
},
|
|
9365
|
+
{
|
|
9366
|
+
scheme: 'bearer',
|
|
9367
|
+
type: 'http'
|
|
9368
|
+
}
|
|
9369
|
+
],
|
|
9370
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/',
|
|
9371
|
+
...options
|
|
9372
|
+
});
|
|
9373
|
+
};
|
|
9374
|
+
export const marketplaceCustomerComponentUsagePoliciesRetrieve = (options) => {
|
|
9375
|
+
return (options.client ?? _heyApiClient).get({
|
|
9376
|
+
security: [
|
|
9377
|
+
{
|
|
9378
|
+
name: 'Authorization',
|
|
9379
|
+
type: 'apiKey'
|
|
9380
|
+
},
|
|
9381
|
+
{
|
|
9382
|
+
scheme: 'bearer',
|
|
9383
|
+
type: 'http'
|
|
9384
|
+
}
|
|
9385
|
+
],
|
|
9386
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/',
|
|
9387
|
+
...options
|
|
9388
|
+
});
|
|
9389
|
+
};
|
|
9390
|
+
export const marketplaceCustomerComponentUsagePoliciesPartialUpdate = (options) => {
|
|
9391
|
+
return (options.client ?? _heyApiClient).patch({
|
|
9392
|
+
security: [
|
|
9393
|
+
{
|
|
9394
|
+
name: 'Authorization',
|
|
9395
|
+
type: 'apiKey'
|
|
9396
|
+
},
|
|
9397
|
+
{
|
|
9398
|
+
scheme: 'bearer',
|
|
9399
|
+
type: 'http'
|
|
9400
|
+
}
|
|
9401
|
+
],
|
|
9402
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/',
|
|
9403
|
+
...options,
|
|
9404
|
+
headers: {
|
|
9405
|
+
'Content-Type': 'application/json',
|
|
9406
|
+
...options.headers
|
|
9407
|
+
}
|
|
9408
|
+
});
|
|
9409
|
+
};
|
|
9410
|
+
export const marketplaceCustomerComponentUsagePoliciesUpdate = (options) => {
|
|
9411
|
+
return (options.client ?? _heyApiClient).put({
|
|
9412
|
+
security: [
|
|
9413
|
+
{
|
|
9414
|
+
name: 'Authorization',
|
|
9415
|
+
type: 'apiKey'
|
|
9416
|
+
},
|
|
9417
|
+
{
|
|
9418
|
+
scheme: 'bearer',
|
|
9419
|
+
type: 'http'
|
|
9420
|
+
}
|
|
9421
|
+
],
|
|
9422
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/',
|
|
9423
|
+
...options,
|
|
9424
|
+
headers: {
|
|
9425
|
+
'Content-Type': 'application/json',
|
|
9426
|
+
...options.headers
|
|
9427
|
+
}
|
|
9428
|
+
});
|
|
9429
|
+
};
|
|
9430
|
+
export const marketplaceCustomerComponentUsagePoliciesActionsRetrieve = (options) => {
|
|
9431
|
+
return (options?.client ?? _heyApiClient).get({
|
|
9432
|
+
security: [
|
|
9433
|
+
{
|
|
9434
|
+
name: 'Authorization',
|
|
9435
|
+
type: 'apiKey'
|
|
9436
|
+
},
|
|
9437
|
+
{
|
|
9438
|
+
scheme: 'bearer',
|
|
9439
|
+
type: 'http'
|
|
9440
|
+
}
|
|
9441
|
+
],
|
|
9442
|
+
url: '/api/marketplace-customer-component-usage-policies/actions/',
|
|
9443
|
+
...options
|
|
9444
|
+
});
|
|
9445
|
+
};
|
|
9446
|
+
/**
|
|
9447
|
+
* Get number of items in the collection matching the request parameters.
|
|
9448
|
+
*/
|
|
9449
|
+
export const marketplaceCustomerComponentUsagePoliciesActionsCount = (options) => {
|
|
9450
|
+
return (options?.client ?? _heyApiClient).head({
|
|
9451
|
+
security: [
|
|
9452
|
+
{
|
|
9453
|
+
name: 'Authorization',
|
|
9454
|
+
type: 'apiKey'
|
|
9455
|
+
},
|
|
9456
|
+
{
|
|
9457
|
+
scheme: 'bearer',
|
|
9458
|
+
type: 'http'
|
|
9459
|
+
}
|
|
9460
|
+
],
|
|
9461
|
+
url: '/api/marketplace-customer-component-usage-policies/actions/',
|
|
9462
|
+
...options
|
|
9463
|
+
});
|
|
9464
|
+
};
|
|
9300
9465
|
/**
|
|
9301
9466
|
* Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
9302
9467
|
*/
|
|
@@ -11272,6 +11437,26 @@ export const marketplaceOrdersRejectByProvider = (options) => {
|
|
|
11272
11437
|
...options
|
|
11273
11438
|
});
|
|
11274
11439
|
};
|
|
11440
|
+
export const marketplaceOrdersSetBackendId = (options) => {
|
|
11441
|
+
return (options.client ?? _heyApiClient).post({
|
|
11442
|
+
security: [
|
|
11443
|
+
{
|
|
11444
|
+
name: 'Authorization',
|
|
11445
|
+
type: 'apiKey'
|
|
11446
|
+
},
|
|
11447
|
+
{
|
|
11448
|
+
scheme: 'bearer',
|
|
11449
|
+
type: 'http'
|
|
11450
|
+
}
|
|
11451
|
+
],
|
|
11452
|
+
url: '/api/marketplace-orders/{uuid}/set_backend_id/',
|
|
11453
|
+
...options,
|
|
11454
|
+
headers: {
|
|
11455
|
+
'Content-Type': 'application/json',
|
|
11456
|
+
...options.headers
|
|
11457
|
+
}
|
|
11458
|
+
});
|
|
11459
|
+
};
|
|
11275
11460
|
export const marketplaceOrdersSetStateDone = (options) => {
|
|
11276
11461
|
return (options.client ?? _heyApiClient).post({
|
|
11277
11462
|
security: [
|
|
@@ -26678,6 +26863,22 @@ export const remoteWaldurApiPullOrder = (options) => {
|
|
|
26678
26863
|
...options
|
|
26679
26864
|
});
|
|
26680
26865
|
};
|
|
26866
|
+
export const remoteWaldurApiPullResourceRobotAccounts = (options) => {
|
|
26867
|
+
return (options.client ?? _heyApiClient).post({
|
|
26868
|
+
security: [
|
|
26869
|
+
{
|
|
26870
|
+
name: 'Authorization',
|
|
26871
|
+
type: 'apiKey'
|
|
26872
|
+
},
|
|
26873
|
+
{
|
|
26874
|
+
scheme: 'bearer',
|
|
26875
|
+
type: 'http'
|
|
26876
|
+
}
|
|
26877
|
+
],
|
|
26878
|
+
url: '/api/remote-waldur-api/pull_resource_robot_accounts/{uuid}/',
|
|
26879
|
+
...options
|
|
26880
|
+
});
|
|
26881
|
+
};
|
|
26681
26882
|
export const remoteWaldurApiPushProjectData = (options) => {
|
|
26682
26883
|
return (options.client ?? _heyApiClient).post({
|
|
26683
26884
|
security: [
|