waldur-js-client 8.0.9-dev.1 → 8.0.9-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.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).
@@ -24377,6 +24560,34 @@ export const marketplaceProviderResourcesAddUser = (options) => {
24377
24560
  }
24378
24561
  });
24379
24562
  };
24563
+ /**
24564
+ * Adjust resource start and end dates (staff only)
24565
+ * Updates both the originating order's start_date and the resource's end_date in one atomic operation. Intended for helpdesk-style prepaid offerings where staff need to shift the service window forward. Does not regenerate invoices, issue credits, or send notifications.
24566
+ */
24567
+ export const marketplaceProviderResourcesAdjustDates = (options) => {
24568
+ return (options.client ?? _heyApiClient).post({
24569
+ security: [
24570
+ {
24571
+ name: 'Authorization',
24572
+ type: 'apiKey'
24573
+ },
24574
+ {
24575
+ scheme: 'bearer',
24576
+ type: 'http'
24577
+ },
24578
+ {
24579
+ scheme: 'bearer',
24580
+ type: 'http'
24581
+ }
24582
+ ],
24583
+ url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/',
24584
+ ...options,
24585
+ headers: {
24586
+ 'Content-Type': 'application/json',
24587
+ ...options.headers
24588
+ }
24589
+ });
24590
+ };
24380
24591
  /**
24381
24592
  * Revoke a role from a user
24382
24593
  * Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
@@ -25912,6 +26123,34 @@ export const marketplaceResourceProjectsListUsersList = (options) => {
25912
26123
  ...options
25913
26124
  });
25914
26125
  };
26126
+ /**
26127
+ * Recover a soft-deleted resource project
26128
+ * Flips is_removed back to False on a previously soft-deleted resource project. Optionally restores the team members captured at soft-delete time, or sends them new invitations. Pass ?include_removed=true on the lookup so the soft-deleted row can be resolved.
26129
+ */
26130
+ export const marketplaceResourceProjectsRecover = (options) => {
26131
+ return (options.client ?? _heyApiClient).post({
26132
+ security: [
26133
+ {
26134
+ name: 'Authorization',
26135
+ type: 'apiKey'
26136
+ },
26137
+ {
26138
+ scheme: 'bearer',
26139
+ type: 'http'
26140
+ },
26141
+ {
26142
+ scheme: 'bearer',
26143
+ type: 'http'
26144
+ }
26145
+ ],
26146
+ url: '/api/marketplace-resource-projects/{uuid}/recover/',
26147
+ ...options,
26148
+ headers: {
26149
+ 'Content-Type': 'application/json',
26150
+ ...options.headers
26151
+ }
26152
+ });
26153
+ };
25915
26154
  /**
25916
26155
  * Update a user's role expiration
25917
26156
  * Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
@@ -26096,6 +26335,34 @@ export const marketplaceResourcesAddUser = (options) => {
26096
26335
  }
26097
26336
  });
26098
26337
  };
26338
+ /**
26339
+ * Adjust resource start and end dates (staff only)
26340
+ * Updates both the originating order's start_date and the resource's end_date in one atomic operation. Intended for helpdesk-style prepaid offerings where staff need to shift the service window forward. Does not regenerate invoices, issue credits, or send notifications.
26341
+ */
26342
+ export const marketplaceResourcesAdjustDates = (options) => {
26343
+ return (options.client ?? _heyApiClient).post({
26344
+ security: [
26345
+ {
26346
+ name: 'Authorization',
26347
+ type: 'apiKey'
26348
+ },
26349
+ {
26350
+ scheme: 'bearer',
26351
+ type: 'http'
26352
+ },
26353
+ {
26354
+ scheme: 'bearer',
26355
+ type: 'http'
26356
+ }
26357
+ ],
26358
+ url: '/api/marketplace-resources/{uuid}/adjust_dates/',
26359
+ ...options,
26360
+ headers: {
26361
+ 'Content-Type': 'application/json',
26362
+ ...options.headers
26363
+ }
26364
+ });
26365
+ };
26099
26366
  /**
26100
26367
  * Revoke a role from a user
26101
26368
  * Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
@@ -28761,6 +29028,77 @@ export const marketplaceSiteAgentIdentitiesCleanupOrphaned = (options) => {
28761
29028
  }
28762
29029
  });
28763
29030
  };
29031
+ export const marketplaceSiteAgentLogsList = (options) => {
29032
+ return (options?.client ?? _heyApiClient).get({
29033
+ security: [
29034
+ {
29035
+ name: 'Authorization',
29036
+ type: 'apiKey'
29037
+ },
29038
+ {
29039
+ scheme: 'bearer',
29040
+ type: 'http'
29041
+ },
29042
+ {
29043
+ scheme: 'bearer',
29044
+ type: 'http'
29045
+ }
29046
+ ],
29047
+ url: '/api/marketplace-site-agent-logs/',
29048
+ ...options
29049
+ });
29050
+ };
29051
+ /**
29052
+ * Get number of items in the collection matching the request parameters.
29053
+ */
29054
+ export const marketplaceSiteAgentLogsCount = (options) => {
29055
+ return (options?.client ?? _heyApiClient).head({
29056
+ security: [
29057
+ {
29058
+ name: 'Authorization',
29059
+ type: 'apiKey'
29060
+ },
29061
+ {
29062
+ scheme: 'bearer',
29063
+ type: 'http'
29064
+ },
29065
+ {
29066
+ scheme: 'bearer',
29067
+ type: 'http'
29068
+ }
29069
+ ],
29070
+ url: '/api/marketplace-site-agent-logs/',
29071
+ ...options
29072
+ });
29073
+ };
29074
+ /**
29075
+ * Push site agent logs
29076
+ * Receive a batch of log entries from a site agent. Send a list where each entry includes agent_identity_uuid.
29077
+ */
29078
+ export const marketplaceSiteAgentLogsCreate = (options) => {
29079
+ return (options.client ?? _heyApiClient).post({
29080
+ security: [
29081
+ {
29082
+ name: 'Authorization',
29083
+ type: 'apiKey'
29084
+ },
29085
+ {
29086
+ scheme: 'bearer',
29087
+ type: 'http'
29088
+ },
29089
+ {
29090
+ scheme: 'bearer',
29091
+ type: 'http'
29092
+ }
29093
+ ],
29094
+ url: '/api/marketplace-site-agent-logs/',
29095
+ ...options,
29096
+ headers: {
29097
+ 'Content-Type': 'application/json',
29098
+ ...options.headers
29099
+ }
29100
+ });
29101
+ };
28764
29102
  export const marketplaceSiteAgentProcessorsList = (options) => {
28765
29103
  return (options?.client ?? _heyApiClient).get({
28766
29104
  security: [
@@ -44368,7 +44706,7 @@ export const personalAccessTokensRetrieve = (options) => {
44368
44706
  };
44369
44707
  /**
44370
44708
  * Rotate a personal access token
44371
- * Atomically revoke the old token and create a new one with the same scopes.
44709
+ * Atomically revoke the old token and create a new one with the same scopes and bindings.
44372
44710
  */
44373
44711
  export const personalAccessTokensRotate = (options) => {
44374
44712
  return (options.client ?? _heyApiClient).post({
@@ -44390,6 +44728,60 @@ export const personalAccessTokensRotate = (options) => {
44390
44728
  ...options
44391
44729
  });
44392
44730
  };
44731
+ /**
44732
+ * List entity types the caller can bind each permission to
44733
+ * For each permission, which TYPE_MAP keys the caller could bind a PAT to.
44734
+ *
44735
+ * Drives the create-PAT frontend's type picker. For staff users every
44736
+ * type is offered for every permission (they bypass UserRole checks).
44737
+ * For other users we return only types where they hold an active role
44738
+ * granting the permission directly (the binding then inherits to
44739
+ * descendants at request time).
44740
+ */
44741
+ export const personalAccessTokensAvailableBindingTargetsList = (options) => {
44742
+ return (options?.client ?? _heyApiClient).get({
44743
+ security: [
44744
+ {
44745
+ name: 'Authorization',
44746
+ type: 'apiKey'
44747
+ },
44748
+ {
44749
+ scheme: 'bearer',
44750
+ type: 'http'
44751
+ },
44752
+ {
44753
+ scheme: 'bearer',
44754
+ type: 'http'
44755
+ }
44756
+ ],
44757
+ url: '/api/personal-access-tokens/available_binding_targets/',
44758
+ ...options
44759
+ });
44760
+ };
44761
+ /**
44762
+ * List entity types the caller can bind each permission to
44763
+ * Get number of items in the collection matching the request parameters.
44764
+ */
44765
+ export const personalAccessTokensAvailableBindingTargetsCount = (options) => {
44766
+ return (options?.client ?? _heyApiClient).head({
44767
+ security: [
44768
+ {
44769
+ name: 'Authorization',
44770
+ type: 'apiKey'
44771
+ },
44772
+ {
44773
+ scheme: 'bearer',
44774
+ type: 'http'
44775
+ },
44776
+ {
44777
+ scheme: 'bearer',
44778
+ type: 'http'
44779
+ }
44780
+ ],
44781
+ url: '/api/personal-access-tokens/available_binding_targets/',
44782
+ ...options
44783
+ });
44784
+ };
44393
44785
  /**
44394
44786
  * List available scopes for PAT creation
44395
44787
  * Return permissions the current user can delegate to a PAT.
@@ -45981,6 +46373,33 @@ export const proposalProposalsChecklistReviewRetrieve = (options) => {
45981
46373
  ...options
45982
46374
  });
45983
46375
  };
46376
+ /**
46377
+ * Complete the current workflow step with an outcome.
46378
+ */
46379
+ export const proposalProposalsCompleteWorkflowStep = (options) => {
46380
+ return (options.client ?? _heyApiClient).post({
46381
+ security: [
46382
+ {
46383
+ name: 'Authorization',
46384
+ type: 'apiKey'
46385
+ },
46386
+ {
46387
+ scheme: 'bearer',
46388
+ type: 'http'
46389
+ },
46390
+ {
46391
+ scheme: 'bearer',
46392
+ type: 'http'
46393
+ }
46394
+ ],
46395
+ url: '/api/proposal-proposals/{uuid}/complete_workflow_step/',
46396
+ ...options,
46397
+ headers: {
46398
+ 'Content-Type': 'application/json',
46399
+ ...options.headers
46400
+ }
46401
+ });
46402
+ };
45984
46403
  /**
45985
46404
  * Get checklist completion status with review triggers (reviewers only).
45986
46405
  */
@@ -46133,6 +46552,33 @@ export const proposalProposalsReject = (options) => {
46133
46552
  }
46134
46553
  });
46135
46554
  };
46555
+ /**
46556
+ * Reject the proposal at the current workflow step.
46557
+ */
46558
+ export const proposalProposalsRejectWorkflowStep = (options) => {
46559
+ return (options.client ?? _heyApiClient).post({
46560
+ security: [
46561
+ {
46562
+ name: 'Authorization',
46563
+ type: 'apiKey'
46564
+ },
46565
+ {
46566
+ scheme: 'bearer',
46567
+ type: 'http'
46568
+ },
46569
+ {
46570
+ scheme: 'bearer',
46571
+ type: 'http'
46572
+ }
46573
+ ],
46574
+ url: '/api/proposal-proposals/{uuid}/reject_workflow_step/',
46575
+ ...options,
46576
+ headers: {
46577
+ 'Content-Type': 'application/json',
46578
+ ...options.headers
46579
+ }
46580
+ });
46581
+ };
46136
46582
  /**
46137
46583
  * List resources for a proposal.
46138
46584
  */
@@ -46376,6 +46822,29 @@ export const proposalProposalsUpdateUser = (options) => {
46376
46822
  }
46377
46823
  });
46378
46824
  };
46825
+ /**
46826
+ * List all workflow step instances for this proposal.
46827
+ */
46828
+ export const proposalProposalsWorkflowStatesList = (options) => {
46829
+ return (options.client ?? _heyApiClient).get({
46830
+ security: [
46831
+ {
46832
+ name: 'Authorization',
46833
+ type: 'apiKey'
46834
+ },
46835
+ {
46836
+ scheme: 'bearer',
46837
+ type: 'http'
46838
+ },
46839
+ {
46840
+ scheme: 'bearer',
46841
+ type: 'http'
46842
+ }
46843
+ ],
46844
+ url: '/api/proposal-proposals/{uuid}/workflow_states/',
46845
+ ...options
46846
+ });
46847
+ };
46379
46848
  /**
46380
46849
  * Get checklist template for creating new objects.
46381
46850
  */
@@ -47769,6 +48238,144 @@ export const proposalProtectedCallsUpdateUser = (options) => {
47769
48238
  }
47770
48239
  });
47771
48240
  };
48241
+ /**
48242
+ * List workflow steps for a call.
48243
+ */
48244
+ export const proposalProtectedCallsWorkflowStepsList = (options) => {
48245
+ return (options.client ?? _heyApiClient).get({
48246
+ security: [
48247
+ {
48248
+ name: 'Authorization',
48249
+ type: 'apiKey'
48250
+ },
48251
+ {
48252
+ scheme: 'bearer',
48253
+ type: 'http'
48254
+ },
48255
+ {
48256
+ scheme: 'bearer',
48257
+ type: 'http'
48258
+ }
48259
+ ],
48260
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/',
48261
+ ...options
48262
+ });
48263
+ };
48264
+ /**
48265
+ * Create or update a workflow step for a call.
48266
+ */
48267
+ export const proposalProtectedCallsWorkflowStepsSet = (options) => {
48268
+ return (options.client ?? _heyApiClient).post({
48269
+ security: [
48270
+ {
48271
+ name: 'Authorization',
48272
+ type: 'apiKey'
48273
+ },
48274
+ {
48275
+ scheme: 'bearer',
48276
+ type: 'http'
48277
+ },
48278
+ {
48279
+ scheme: 'bearer',
48280
+ type: 'http'
48281
+ }
48282
+ ],
48283
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/',
48284
+ ...options,
48285
+ headers: {
48286
+ 'Content-Type': 'application/json',
48287
+ ...options.headers
48288
+ }
48289
+ });
48290
+ };
48291
+ export const proposalProtectedCallsWorkflowStepsDestroy = (options) => {
48292
+ return (options.client ?? _heyApiClient).delete({
48293
+ security: [
48294
+ {
48295
+ name: 'Authorization',
48296
+ type: 'apiKey'
48297
+ },
48298
+ {
48299
+ scheme: 'bearer',
48300
+ type: 'http'
48301
+ },
48302
+ {
48303
+ scheme: 'bearer',
48304
+ type: 'http'
48305
+ }
48306
+ ],
48307
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/',
48308
+ ...options
48309
+ });
48310
+ };
48311
+ export const proposalProtectedCallsWorkflowStepsRetrieve = (options) => {
48312
+ return (options.client ?? _heyApiClient).get({
48313
+ security: [
48314
+ {
48315
+ name: 'Authorization',
48316
+ type: 'apiKey'
48317
+ },
48318
+ {
48319
+ scheme: 'bearer',
48320
+ type: 'http'
48321
+ },
48322
+ {
48323
+ scheme: 'bearer',
48324
+ type: 'http'
48325
+ }
48326
+ ],
48327
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/',
48328
+ ...options
48329
+ });
48330
+ };
48331
+ export const proposalProtectedCallsWorkflowStepsPartialUpdate = (options) => {
48332
+ return (options.client ?? _heyApiClient).patch({
48333
+ security: [
48334
+ {
48335
+ name: 'Authorization',
48336
+ type: 'apiKey'
48337
+ },
48338
+ {
48339
+ scheme: 'bearer',
48340
+ type: 'http'
48341
+ },
48342
+ {
48343
+ scheme: 'bearer',
48344
+ type: 'http'
48345
+ }
48346
+ ],
48347
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/',
48348
+ ...options,
48349
+ headers: {
48350
+ 'Content-Type': 'application/json',
48351
+ ...options.headers
48352
+ }
48353
+ });
48354
+ };
48355
+ export const proposalProtectedCallsWorkflowStepsUpdate = (options) => {
48356
+ return (options.client ?? _heyApiClient).put({
48357
+ security: [
48358
+ {
48359
+ name: 'Authorization',
48360
+ type: 'apiKey'
48361
+ },
48362
+ {
48363
+ scheme: 'bearer',
48364
+ type: 'http'
48365
+ },
48366
+ {
48367
+ scheme: 'bearer',
48368
+ type: 'http'
48369
+ }
48370
+ ],
48371
+ url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/',
48372
+ ...options,
48373
+ headers: {
48374
+ 'Content-Type': 'application/json',
48375
+ ...options.headers
48376
+ }
48377
+ });
48378
+ };
47772
48379
  /**
47773
48380
  * Get available compliance checklists for call creation/editing.
47774
48381
  */
@@ -58376,6 +58983,30 @@ export const usersPullRemoteUser = (options) => {
58376
58983
  ...options
58377
58984
  });
58378
58985
  };
58986
+ /**
58987
+ * Pull SCIM attributes from external IdP for this user
58988
+ * 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.
58989
+ */
58990
+ export const usersPullScimAttributes = (options) => {
58991
+ return (options.client ?? _heyApiClient).post({
58992
+ security: [
58993
+ {
58994
+ name: 'Authorization',
58995
+ type: 'apiKey'
58996
+ },
58997
+ {
58998
+ scheme: 'bearer',
58999
+ type: 'http'
59000
+ },
59001
+ {
59002
+ scheme: 'bearer',
59003
+ type: 'http'
59004
+ }
59005
+ ],
59006
+ url: '/api/users/{uuid}/pull_scim_attributes/',
59007
+ ...options
59008
+ });
59009
+ };
58379
59010
  /**
58380
59011
  * Refresh user auth token
58381
59012
  */