waldur-js-client 8.0.9-dev.8 → 8.0.9-dev.9

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
@@ -18452,6 +18452,161 @@ export const marketplaceOfferingFilesRetrieve = (options) => {
18452
18452
  ...options
18453
18453
  });
18454
18454
  };
18455
+ export const marketplaceOfferingGroupsList = (options) => {
18456
+ return (options?.client ?? _heyApiClient).get({
18457
+ security: [
18458
+ {
18459
+ name: 'Authorization',
18460
+ type: 'apiKey'
18461
+ },
18462
+ {
18463
+ scheme: 'bearer',
18464
+ type: 'http'
18465
+ },
18466
+ {
18467
+ scheme: 'bearer',
18468
+ type: 'http'
18469
+ }
18470
+ ],
18471
+ url: '/api/marketplace-offering-groups/',
18472
+ ...options
18473
+ });
18474
+ };
18475
+ /**
18476
+ * Get number of items in the collection matching the request parameters.
18477
+ */
18478
+ export const marketplaceOfferingGroupsCount = (options) => {
18479
+ return (options?.client ?? _heyApiClient).head({
18480
+ security: [
18481
+ {
18482
+ name: 'Authorization',
18483
+ type: 'apiKey'
18484
+ },
18485
+ {
18486
+ scheme: 'bearer',
18487
+ type: 'http'
18488
+ },
18489
+ {
18490
+ scheme: 'bearer',
18491
+ type: 'http'
18492
+ }
18493
+ ],
18494
+ url: '/api/marketplace-offering-groups/',
18495
+ ...options
18496
+ });
18497
+ };
18498
+ export const marketplaceOfferingGroupsCreate = (options) => {
18499
+ return (options.client ?? _heyApiClient).post({
18500
+ security: [
18501
+ {
18502
+ name: 'Authorization',
18503
+ type: 'apiKey'
18504
+ },
18505
+ {
18506
+ scheme: 'bearer',
18507
+ type: 'http'
18508
+ },
18509
+ {
18510
+ scheme: 'bearer',
18511
+ type: 'http'
18512
+ }
18513
+ ],
18514
+ url: '/api/marketplace-offering-groups/',
18515
+ ...options,
18516
+ headers: {
18517
+ 'Content-Type': 'application/json',
18518
+ ...options.headers
18519
+ }
18520
+ });
18521
+ };
18522
+ export const marketplaceOfferingGroupsDestroy = (options) => {
18523
+ return (options.client ?? _heyApiClient).delete({
18524
+ security: [
18525
+ {
18526
+ name: 'Authorization',
18527
+ type: 'apiKey'
18528
+ },
18529
+ {
18530
+ scheme: 'bearer',
18531
+ type: 'http'
18532
+ },
18533
+ {
18534
+ scheme: 'bearer',
18535
+ type: 'http'
18536
+ }
18537
+ ],
18538
+ url: '/api/marketplace-offering-groups/{uuid}/',
18539
+ ...options
18540
+ });
18541
+ };
18542
+ export const marketplaceOfferingGroupsRetrieve = (options) => {
18543
+ return (options.client ?? _heyApiClient).get({
18544
+ security: [
18545
+ {
18546
+ name: 'Authorization',
18547
+ type: 'apiKey'
18548
+ },
18549
+ {
18550
+ scheme: 'bearer',
18551
+ type: 'http'
18552
+ },
18553
+ {
18554
+ scheme: 'bearer',
18555
+ type: 'http'
18556
+ }
18557
+ ],
18558
+ url: '/api/marketplace-offering-groups/{uuid}/',
18559
+ ...options
18560
+ });
18561
+ };
18562
+ export const marketplaceOfferingGroupsPartialUpdate = (options) => {
18563
+ return (options.client ?? _heyApiClient).patch({
18564
+ security: [
18565
+ {
18566
+ name: 'Authorization',
18567
+ type: 'apiKey'
18568
+ },
18569
+ {
18570
+ scheme: 'bearer',
18571
+ type: 'http'
18572
+ },
18573
+ {
18574
+ scheme: 'bearer',
18575
+ type: 'http'
18576
+ }
18577
+ ],
18578
+ url: '/api/marketplace-offering-groups/{uuid}/',
18579
+ ...options,
18580
+ headers: {
18581
+ 'Content-Type': 'application/json',
18582
+ ...options.headers
18583
+ }
18584
+ });
18585
+ };
18586
+ export const marketplaceOfferingGroupsUpdate = (options) => {
18587
+ return (options.client ?? _heyApiClient).put({
18588
+ security: [
18589
+ {
18590
+ name: 'Authorization',
18591
+ type: 'apiKey'
18592
+ },
18593
+ {
18594
+ scheme: 'bearer',
18595
+ type: 'http'
18596
+ },
18597
+ {
18598
+ scheme: 'bearer',
18599
+ type: 'http'
18600
+ }
18601
+ ],
18602
+ url: '/api/marketplace-offering-groups/{uuid}/',
18603
+ ...options,
18604
+ headers: {
18605
+ 'Content-Type': 'application/json',
18606
+ ...options.headers
18607
+ }
18608
+ });
18609
+ };
18455
18610
  export const marketplaceOfferingPermissionsList = (options) => {
18456
18611
  return (options?.client ?? _heyApiClient).get({
18457
18612
  security: [
@@ -23074,6 +23229,34 @@ export const marketplaceProviderOfferingsSetBackendMetadata = (options) => {
23074
23229
  }
23075
23230
  });
23076
23231
  };
23232
+ /**
23233
+ * Assign or clear the offering group
23234
+ * Sets the offering's ``offering_group`` FK. Pass ``offering_group: <uuid>`` to assign a group, or ``offering_group: null`` to clear it. The group must belong to the same customer as the offering.
23235
+ */
23236
+ export const marketplaceProviderOfferingsSetOfferingGroup = (options) => {
23237
+ return (options.client ?? _heyApiClient).post({
23238
+ security: [
23239
+ {
23240
+ name: 'Authorization',
23241
+ type: 'apiKey'
23242
+ },
23243
+ {
23244
+ scheme: 'bearer',
23245
+ type: 'http'
23246
+ },
23247
+ {
23248
+ scheme: 'bearer',
23249
+ type: 'http'
23250
+ }
23251
+ ],
23252
+ url: '/api/marketplace-provider-offerings/{uuid}/set_offering_group/',
23253
+ ...options,
23254
+ headers: {
23255
+ 'Content-Type': 'application/json',
23256
+ ...options.headers
23257
+ }
23258
+ });
23259
+ };
23077
23260
  /**
23078
23261
  * Bind / unbind offering to a service profile
23079
23262
  * Sets the offering's `profile` FK. Pass `profile: <uuid>` to bind, or `profile: null` to unbind. Requires UPDATE_OFFERING permission on the offering's customer (service-provider owners and staff). Triggers async reconciliation of RoleAvailability rows on this offering against the profile's role catalog (or wipes them on unbind).
@@ -58746,6 +58929,30 @@ export const usersPullRemoteUser = (options) => {
58746
58929
  ...options
58747
58930
  });
58748
58931
  };
58932
+ /**
58933
+ * Pull SCIM attributes from external IdP for this user
58934
+ * Staff-only action that pulls the user's attributes from the configured external SCIM 2.0 directory (SCIM_PULL_API_URL). Pulled attributes are merged via the same source-aware policy as inbound SCIM and the Identity Bridge.
58935
+ */
58936
+ export const usersPullScimAttributes = (options) => {
58937
+ return (options.client ?? _heyApiClient).post({
58938
+ security: [
58939
+ {
58940
+ name: 'Authorization',
58941
+ type: 'apiKey'
58942
+ },
58943
+ {
58944
+ scheme: 'bearer',
58945
+ type: 'http'
58946
+ },
58947
+ {
58948
+ scheme: 'bearer',
58949
+ type: 'http'
58950
+ }
58951
+ ],
58952
+ url: '/api/users/{uuid}/pull_scim_attributes/',
58953
+ ...options
58954
+ });
58955
+ };
58749
58956
  /**
58750
58957
  * Refresh user auth token
58751
58958
  */