waldur-js-client 8.0.8-dev.35 → 8.0.8-dev.37
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 +17 -73
- package/dist/sdk.gen.js +205 -612
- package/dist/types.gen.d.ts +153 -611
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -24467,34 +24467,6 @@ export const marketplaceProviderResourcesSetEndDateByStaff = (options) => {
|
|
|
24467
24467
|
}
|
|
24468
24468
|
});
|
|
24469
24469
|
};
|
|
24470
|
-
/**
|
|
24471
|
-
* Set Keycloak scope options for a resource
|
|
24472
|
-
* Allows a service provider to configure available scope options for Keycloak memberships on a resource. Requires Keycloak integration to be enabled on the offering.
|
|
24473
|
-
*/
|
|
24474
|
-
export const marketplaceProviderResourcesSetKeycloakScopes = (options) => {
|
|
24475
|
-
return (options.client ?? _heyApiClient).post({
|
|
24476
|
-
security: [
|
|
24477
|
-
{
|
|
24478
|
-
name: 'Authorization',
|
|
24479
|
-
type: 'apiKey'
|
|
24480
|
-
},
|
|
24481
|
-
{
|
|
24482
|
-
scheme: 'bearer',
|
|
24483
|
-
type: 'http'
|
|
24484
|
-
},
|
|
24485
|
-
{
|
|
24486
|
-
scheme: 'bearer',
|
|
24487
|
-
type: 'http'
|
|
24488
|
-
}
|
|
24489
|
-
],
|
|
24490
|
-
url: '/api/marketplace-provider-resources/{uuid}/set_keycloak_scopes/',
|
|
24491
|
-
...options,
|
|
24492
|
-
headers: {
|
|
24493
|
-
'Content-Type': 'application/json',
|
|
24494
|
-
...options.headers
|
|
24495
|
-
}
|
|
24496
|
-
});
|
|
24497
|
-
};
|
|
24498
24470
|
/**
|
|
24499
24471
|
* Set resource limits
|
|
24500
24472
|
* Allows a service provider to directly set the limits for a resource. This is typically used for administrative changes or backend synchronization, bypassing the normal order process.
|
|
@@ -32444,477 +32416,8 @@ export const myAssignmentBatchesList = (options) => {
|
|
|
32444
32416
|
/**
|
|
32445
32417
|
* Get number of items in the collection matching the request parameters.
|
|
32446
32418
|
*/
|
|
32447
|
-
export const myAssignmentBatchesCount = (options) => {
|
|
32448
|
-
return (options?.client ?? _heyApiClient).head({
|
|
32449
|
-
security: [
|
|
32450
|
-
{
|
|
32451
|
-
name: 'Authorization',
|
|
32452
|
-
type: 'apiKey'
|
|
32453
|
-
},
|
|
32454
|
-
{
|
|
32455
|
-
scheme: 'bearer',
|
|
32456
|
-
type: 'http'
|
|
32457
|
-
},
|
|
32458
|
-
{
|
|
32459
|
-
scheme: 'bearer',
|
|
32460
|
-
type: 'http'
|
|
32461
|
-
}
|
|
32462
|
-
],
|
|
32463
|
-
url: '/api/my-assignment-batches/',
|
|
32464
|
-
...options
|
|
32465
|
-
});
|
|
32466
|
-
};
|
|
32467
|
-
/**
|
|
32468
|
-
* Get details of a specific assignment batch with items.
|
|
32469
|
-
*/
|
|
32470
|
-
export const myAssignmentBatchesRetrieve = (options) => {
|
|
32471
|
-
return (options.client ?? _heyApiClient).get({
|
|
32472
|
-
security: [
|
|
32473
|
-
{
|
|
32474
|
-
name: 'Authorization',
|
|
32475
|
-
type: 'apiKey'
|
|
32476
|
-
},
|
|
32477
|
-
{
|
|
32478
|
-
scheme: 'bearer',
|
|
32479
|
-
type: 'http'
|
|
32480
|
-
},
|
|
32481
|
-
{
|
|
32482
|
-
scheme: 'bearer',
|
|
32483
|
-
type: 'http'
|
|
32484
|
-
}
|
|
32485
|
-
],
|
|
32486
|
-
url: '/api/my-assignment-batches/{uuid}/',
|
|
32487
|
-
...options
|
|
32488
|
-
});
|
|
32489
|
-
};
|
|
32490
|
-
export const notificationMessagesList = (options) => {
|
|
32491
|
-
return (options?.client ?? _heyApiClient).get({
|
|
32492
|
-
security: [
|
|
32493
|
-
{
|
|
32494
|
-
name: 'Authorization',
|
|
32495
|
-
type: 'apiKey'
|
|
32496
|
-
},
|
|
32497
|
-
{
|
|
32498
|
-
scheme: 'bearer',
|
|
32499
|
-
type: 'http'
|
|
32500
|
-
},
|
|
32501
|
-
{
|
|
32502
|
-
scheme: 'bearer',
|
|
32503
|
-
type: 'http'
|
|
32504
|
-
}
|
|
32505
|
-
],
|
|
32506
|
-
url: '/api/notification-messages/',
|
|
32507
|
-
...options
|
|
32508
|
-
});
|
|
32509
|
-
};
|
|
32510
|
-
/**
|
|
32511
|
-
* Get number of items in the collection matching the request parameters.
|
|
32512
|
-
*/
|
|
32513
|
-
export const notificationMessagesCount = (options) => {
|
|
32514
|
-
return (options?.client ?? _heyApiClient).head({
|
|
32515
|
-
security: [
|
|
32516
|
-
{
|
|
32517
|
-
name: 'Authorization',
|
|
32518
|
-
type: 'apiKey'
|
|
32519
|
-
},
|
|
32520
|
-
{
|
|
32521
|
-
scheme: 'bearer',
|
|
32522
|
-
type: 'http'
|
|
32523
|
-
},
|
|
32524
|
-
{
|
|
32525
|
-
scheme: 'bearer',
|
|
32526
|
-
type: 'http'
|
|
32527
|
-
}
|
|
32528
|
-
],
|
|
32529
|
-
url: '/api/notification-messages/',
|
|
32530
|
-
...options
|
|
32531
|
-
});
|
|
32532
|
-
};
|
|
32533
|
-
export const notificationMessagesCreate = (options) => {
|
|
32534
|
-
return (options.client ?? _heyApiClient).post({
|
|
32535
|
-
security: [
|
|
32536
|
-
{
|
|
32537
|
-
name: 'Authorization',
|
|
32538
|
-
type: 'apiKey'
|
|
32539
|
-
},
|
|
32540
|
-
{
|
|
32541
|
-
scheme: 'bearer',
|
|
32542
|
-
type: 'http'
|
|
32543
|
-
},
|
|
32544
|
-
{
|
|
32545
|
-
scheme: 'bearer',
|
|
32546
|
-
type: 'http'
|
|
32547
|
-
}
|
|
32548
|
-
],
|
|
32549
|
-
url: '/api/notification-messages/',
|
|
32550
|
-
...options,
|
|
32551
|
-
headers: {
|
|
32552
|
-
'Content-Type': 'application/json',
|
|
32553
|
-
...options.headers
|
|
32554
|
-
}
|
|
32555
|
-
});
|
|
32556
|
-
};
|
|
32557
|
-
export const notificationMessagesTemplatesList = (options) => {
|
|
32558
|
-
return (options?.client ?? _heyApiClient).get({
|
|
32559
|
-
security: [
|
|
32560
|
-
{
|
|
32561
|
-
name: 'Authorization',
|
|
32562
|
-
type: 'apiKey'
|
|
32563
|
-
},
|
|
32564
|
-
{
|
|
32565
|
-
scheme: 'bearer',
|
|
32566
|
-
type: 'http'
|
|
32567
|
-
},
|
|
32568
|
-
{
|
|
32569
|
-
scheme: 'bearer',
|
|
32570
|
-
type: 'http'
|
|
32571
|
-
}
|
|
32572
|
-
],
|
|
32573
|
-
url: '/api/notification-messages-templates/',
|
|
32574
|
-
...options
|
|
32575
|
-
});
|
|
32576
|
-
};
|
|
32577
|
-
/**
|
|
32578
|
-
* Get number of items in the collection matching the request parameters.
|
|
32579
|
-
*/
|
|
32580
|
-
export const notificationMessagesTemplatesCount = (options) => {
|
|
32581
|
-
return (options?.client ?? _heyApiClient).head({
|
|
32582
|
-
security: [
|
|
32583
|
-
{
|
|
32584
|
-
name: 'Authorization',
|
|
32585
|
-
type: 'apiKey'
|
|
32586
|
-
},
|
|
32587
|
-
{
|
|
32588
|
-
scheme: 'bearer',
|
|
32589
|
-
type: 'http'
|
|
32590
|
-
},
|
|
32591
|
-
{
|
|
32592
|
-
scheme: 'bearer',
|
|
32593
|
-
type: 'http'
|
|
32594
|
-
}
|
|
32595
|
-
],
|
|
32596
|
-
url: '/api/notification-messages-templates/',
|
|
32597
|
-
...options
|
|
32598
|
-
});
|
|
32599
|
-
};
|
|
32600
|
-
export const notificationMessagesTemplatesCreate = (options) => {
|
|
32601
|
-
return (options.client ?? _heyApiClient).post({
|
|
32602
|
-
security: [
|
|
32603
|
-
{
|
|
32604
|
-
name: 'Authorization',
|
|
32605
|
-
type: 'apiKey'
|
|
32606
|
-
},
|
|
32607
|
-
{
|
|
32608
|
-
scheme: 'bearer',
|
|
32609
|
-
type: 'http'
|
|
32610
|
-
},
|
|
32611
|
-
{
|
|
32612
|
-
scheme: 'bearer',
|
|
32613
|
-
type: 'http'
|
|
32614
|
-
}
|
|
32615
|
-
],
|
|
32616
|
-
url: '/api/notification-messages-templates/',
|
|
32617
|
-
...options,
|
|
32618
|
-
headers: {
|
|
32619
|
-
'Content-Type': 'application/json',
|
|
32620
|
-
...options.headers
|
|
32621
|
-
}
|
|
32622
|
-
});
|
|
32623
|
-
};
|
|
32624
|
-
export const notificationMessagesTemplatesDestroy = (options) => {
|
|
32625
|
-
return (options.client ?? _heyApiClient).delete({
|
|
32626
|
-
security: [
|
|
32627
|
-
{
|
|
32628
|
-
name: 'Authorization',
|
|
32629
|
-
type: 'apiKey'
|
|
32630
|
-
},
|
|
32631
|
-
{
|
|
32632
|
-
scheme: 'bearer',
|
|
32633
|
-
type: 'http'
|
|
32634
|
-
},
|
|
32635
|
-
{
|
|
32636
|
-
scheme: 'bearer',
|
|
32637
|
-
type: 'http'
|
|
32638
|
-
}
|
|
32639
|
-
],
|
|
32640
|
-
url: '/api/notification-messages-templates/{uuid}/',
|
|
32641
|
-
...options
|
|
32642
|
-
});
|
|
32643
|
-
};
|
|
32644
|
-
export const notificationMessagesTemplatesRetrieve = (options) => {
|
|
32645
|
-
return (options.client ?? _heyApiClient).get({
|
|
32646
|
-
security: [
|
|
32647
|
-
{
|
|
32648
|
-
name: 'Authorization',
|
|
32649
|
-
type: 'apiKey'
|
|
32650
|
-
},
|
|
32651
|
-
{
|
|
32652
|
-
scheme: 'bearer',
|
|
32653
|
-
type: 'http'
|
|
32654
|
-
},
|
|
32655
|
-
{
|
|
32656
|
-
scheme: 'bearer',
|
|
32657
|
-
type: 'http'
|
|
32658
|
-
}
|
|
32659
|
-
],
|
|
32660
|
-
url: '/api/notification-messages-templates/{uuid}/',
|
|
32661
|
-
...options
|
|
32662
|
-
});
|
|
32663
|
-
};
|
|
32664
|
-
export const notificationMessagesTemplatesPartialUpdate = (options) => {
|
|
32665
|
-
return (options.client ?? _heyApiClient).patch({
|
|
32666
|
-
security: [
|
|
32667
|
-
{
|
|
32668
|
-
name: 'Authorization',
|
|
32669
|
-
type: 'apiKey'
|
|
32670
|
-
},
|
|
32671
|
-
{
|
|
32672
|
-
scheme: 'bearer',
|
|
32673
|
-
type: 'http'
|
|
32674
|
-
},
|
|
32675
|
-
{
|
|
32676
|
-
scheme: 'bearer',
|
|
32677
|
-
type: 'http'
|
|
32678
|
-
}
|
|
32679
|
-
],
|
|
32680
|
-
url: '/api/notification-messages-templates/{uuid}/',
|
|
32681
|
-
...options,
|
|
32682
|
-
headers: {
|
|
32683
|
-
'Content-Type': 'application/json',
|
|
32684
|
-
...options.headers
|
|
32685
|
-
}
|
|
32686
|
-
});
|
|
32687
|
-
};
|
|
32688
|
-
export const notificationMessagesTemplatesUpdate = (options) => {
|
|
32689
|
-
return (options.client ?? _heyApiClient).put({
|
|
32690
|
-
security: [
|
|
32691
|
-
{
|
|
32692
|
-
name: 'Authorization',
|
|
32693
|
-
type: 'apiKey'
|
|
32694
|
-
},
|
|
32695
|
-
{
|
|
32696
|
-
scheme: 'bearer',
|
|
32697
|
-
type: 'http'
|
|
32698
|
-
},
|
|
32699
|
-
{
|
|
32700
|
-
scheme: 'bearer',
|
|
32701
|
-
type: 'http'
|
|
32702
|
-
}
|
|
32703
|
-
],
|
|
32704
|
-
url: '/api/notification-messages-templates/{uuid}/',
|
|
32705
|
-
...options,
|
|
32706
|
-
headers: {
|
|
32707
|
-
'Content-Type': 'application/json',
|
|
32708
|
-
...options.headers
|
|
32709
|
-
}
|
|
32710
|
-
});
|
|
32711
|
-
};
|
|
32712
|
-
/**
|
|
32713
|
-
* Override notification template content
|
|
32714
|
-
*/
|
|
32715
|
-
export const notificationMessagesTemplatesOverride = (options) => {
|
|
32716
|
-
return (options.client ?? _heyApiClient).post({
|
|
32717
|
-
security: [
|
|
32718
|
-
{
|
|
32719
|
-
name: 'Authorization',
|
|
32720
|
-
type: 'apiKey'
|
|
32721
|
-
},
|
|
32722
|
-
{
|
|
32723
|
-
scheme: 'bearer',
|
|
32724
|
-
type: 'http'
|
|
32725
|
-
},
|
|
32726
|
-
{
|
|
32727
|
-
scheme: 'bearer',
|
|
32728
|
-
type: 'http'
|
|
32729
|
-
}
|
|
32730
|
-
],
|
|
32731
|
-
url: '/api/notification-messages-templates/{uuid}/override/',
|
|
32732
|
-
...options,
|
|
32733
|
-
headers: {
|
|
32734
|
-
'Content-Type': 'application/json',
|
|
32735
|
-
...options.headers
|
|
32736
|
-
}
|
|
32737
|
-
});
|
|
32738
|
-
};
|
|
32739
|
-
export const notificationMessagesDestroy = (options) => {
|
|
32740
|
-
return (options.client ?? _heyApiClient).delete({
|
|
32741
|
-
security: [
|
|
32742
|
-
{
|
|
32743
|
-
name: 'Authorization',
|
|
32744
|
-
type: 'apiKey'
|
|
32745
|
-
},
|
|
32746
|
-
{
|
|
32747
|
-
scheme: 'bearer',
|
|
32748
|
-
type: 'http'
|
|
32749
|
-
},
|
|
32750
|
-
{
|
|
32751
|
-
scheme: 'bearer',
|
|
32752
|
-
type: 'http'
|
|
32753
|
-
}
|
|
32754
|
-
],
|
|
32755
|
-
url: '/api/notification-messages/{uuid}/',
|
|
32756
|
-
...options
|
|
32757
|
-
});
|
|
32758
|
-
};
|
|
32759
|
-
export const notificationMessagesRetrieve = (options) => {
|
|
32760
|
-
return (options.client ?? _heyApiClient).get({
|
|
32761
|
-
security: [
|
|
32762
|
-
{
|
|
32763
|
-
name: 'Authorization',
|
|
32764
|
-
type: 'apiKey'
|
|
32765
|
-
},
|
|
32766
|
-
{
|
|
32767
|
-
scheme: 'bearer',
|
|
32768
|
-
type: 'http'
|
|
32769
|
-
},
|
|
32770
|
-
{
|
|
32771
|
-
scheme: 'bearer',
|
|
32772
|
-
type: 'http'
|
|
32773
|
-
}
|
|
32774
|
-
],
|
|
32775
|
-
url: '/api/notification-messages/{uuid}/',
|
|
32776
|
-
...options
|
|
32777
|
-
});
|
|
32778
|
-
};
|
|
32779
|
-
export const notificationMessagesPartialUpdate = (options) => {
|
|
32780
|
-
return (options.client ?? _heyApiClient).patch({
|
|
32781
|
-
security: [
|
|
32782
|
-
{
|
|
32783
|
-
name: 'Authorization',
|
|
32784
|
-
type: 'apiKey'
|
|
32785
|
-
},
|
|
32786
|
-
{
|
|
32787
|
-
scheme: 'bearer',
|
|
32788
|
-
type: 'http'
|
|
32789
|
-
},
|
|
32790
|
-
{
|
|
32791
|
-
scheme: 'bearer',
|
|
32792
|
-
type: 'http'
|
|
32793
|
-
}
|
|
32794
|
-
],
|
|
32795
|
-
url: '/api/notification-messages/{uuid}/',
|
|
32796
|
-
...options,
|
|
32797
|
-
headers: {
|
|
32798
|
-
'Content-Type': 'application/json',
|
|
32799
|
-
...options.headers
|
|
32800
|
-
}
|
|
32801
|
-
});
|
|
32802
|
-
};
|
|
32803
|
-
export const notificationMessagesUpdate = (options) => {
|
|
32804
|
-
return (options.client ?? _heyApiClient).put({
|
|
32805
|
-
security: [
|
|
32806
|
-
{
|
|
32807
|
-
name: 'Authorization',
|
|
32808
|
-
type: 'apiKey'
|
|
32809
|
-
},
|
|
32810
|
-
{
|
|
32811
|
-
scheme: 'bearer',
|
|
32812
|
-
type: 'http'
|
|
32813
|
-
},
|
|
32814
|
-
{
|
|
32815
|
-
scheme: 'bearer',
|
|
32816
|
-
type: 'http'
|
|
32817
|
-
}
|
|
32818
|
-
],
|
|
32819
|
-
url: '/api/notification-messages/{uuid}/',
|
|
32820
|
-
...options,
|
|
32821
|
-
headers: {
|
|
32822
|
-
'Content-Type': 'application/json',
|
|
32823
|
-
...options.headers
|
|
32824
|
-
}
|
|
32825
|
-
});
|
|
32826
|
-
};
|
|
32827
|
-
/**
|
|
32828
|
-
* Disable a notification
|
|
32829
|
-
*/
|
|
32830
|
-
export const notificationMessagesDisable = (options) => {
|
|
32831
|
-
return (options.client ?? _heyApiClient).post({
|
|
32832
|
-
security: [
|
|
32833
|
-
{
|
|
32834
|
-
name: 'Authorization',
|
|
32835
|
-
type: 'apiKey'
|
|
32836
|
-
},
|
|
32837
|
-
{
|
|
32838
|
-
scheme: 'bearer',
|
|
32839
|
-
type: 'http'
|
|
32840
|
-
},
|
|
32841
|
-
{
|
|
32842
|
-
scheme: 'bearer',
|
|
32843
|
-
type: 'http'
|
|
32844
|
-
}
|
|
32845
|
-
],
|
|
32846
|
-
url: '/api/notification-messages/{uuid}/disable/',
|
|
32847
|
-
...options
|
|
32848
|
-
});
|
|
32849
|
-
};
|
|
32850
|
-
/**
|
|
32851
|
-
* Enable a notification
|
|
32852
|
-
*/
|
|
32853
|
-
export const notificationMessagesEnable = (options) => {
|
|
32854
|
-
return (options.client ?? _heyApiClient).post({
|
|
32855
|
-
security: [
|
|
32856
|
-
{
|
|
32857
|
-
name: 'Authorization',
|
|
32858
|
-
type: 'apiKey'
|
|
32859
|
-
},
|
|
32860
|
-
{
|
|
32861
|
-
scheme: 'bearer',
|
|
32862
|
-
type: 'http'
|
|
32863
|
-
},
|
|
32864
|
-
{
|
|
32865
|
-
scheme: 'bearer',
|
|
32866
|
-
type: 'http'
|
|
32867
|
-
}
|
|
32868
|
-
],
|
|
32869
|
-
url: '/api/notification-messages/{uuid}/enable/',
|
|
32870
|
-
...options
|
|
32871
|
-
});
|
|
32872
|
-
};
|
|
32873
|
-
export const offeringKeycloakGroupsList = (options) => {
|
|
32874
|
-
return (options?.client ?? _heyApiClient).get({
|
|
32875
|
-
security: [
|
|
32876
|
-
{
|
|
32877
|
-
name: 'Authorization',
|
|
32878
|
-
type: 'apiKey'
|
|
32879
|
-
},
|
|
32880
|
-
{
|
|
32881
|
-
scheme: 'bearer',
|
|
32882
|
-
type: 'http'
|
|
32883
|
-
},
|
|
32884
|
-
{
|
|
32885
|
-
scheme: 'bearer',
|
|
32886
|
-
type: 'http'
|
|
32887
|
-
}
|
|
32888
|
-
],
|
|
32889
|
-
url: '/api/offering-keycloak-groups/',
|
|
32890
|
-
...options
|
|
32891
|
-
});
|
|
32892
|
-
};
|
|
32893
|
-
/**
|
|
32894
|
-
* Get number of items in the collection matching the request parameters.
|
|
32895
|
-
*/
|
|
32896
|
-
export const offeringKeycloakGroupsCount = (options) => {
|
|
32897
|
-
return (options?.client ?? _heyApiClient).head({
|
|
32898
|
-
security: [
|
|
32899
|
-
{
|
|
32900
|
-
name: 'Authorization',
|
|
32901
|
-
type: 'apiKey'
|
|
32902
|
-
},
|
|
32903
|
-
{
|
|
32904
|
-
scheme: 'bearer',
|
|
32905
|
-
type: 'http'
|
|
32906
|
-
},
|
|
32907
|
-
{
|
|
32908
|
-
scheme: 'bearer',
|
|
32909
|
-
type: 'http'
|
|
32910
|
-
}
|
|
32911
|
-
],
|
|
32912
|
-
url: '/api/offering-keycloak-groups/',
|
|
32913
|
-
...options
|
|
32914
|
-
});
|
|
32915
|
-
};
|
|
32916
|
-
export const offeringKeycloakGroupsDestroy = (options) => {
|
|
32917
|
-
return (options.client ?? _heyApiClient).delete({
|
|
32419
|
+
export const myAssignmentBatchesCount = (options) => {
|
|
32420
|
+
return (options?.client ?? _heyApiClient).head({
|
|
32918
32421
|
security: [
|
|
32919
32422
|
{
|
|
32920
32423
|
name: 'Authorization',
|
|
@@ -32929,11 +32432,14 @@ export const offeringKeycloakGroupsDestroy = (options) => {
|
|
|
32929
32432
|
type: 'http'
|
|
32930
32433
|
}
|
|
32931
32434
|
],
|
|
32932
|
-
url: '/api/
|
|
32435
|
+
url: '/api/my-assignment-batches/',
|
|
32933
32436
|
...options
|
|
32934
32437
|
});
|
|
32935
32438
|
};
|
|
32936
|
-
|
|
32439
|
+
/**
|
|
32440
|
+
* Get details of a specific assignment batch with items.
|
|
32441
|
+
*/
|
|
32442
|
+
export const myAssignmentBatchesRetrieve = (options) => {
|
|
32937
32443
|
return (options.client ?? _heyApiClient).get({
|
|
32938
32444
|
security: [
|
|
32939
32445
|
{
|
|
@@ -32949,15 +32455,12 @@ export const offeringKeycloakGroupsRetrieve = (options) => {
|
|
|
32949
32455
|
type: 'http'
|
|
32950
32456
|
}
|
|
32951
32457
|
],
|
|
32952
|
-
url: '/api/
|
|
32458
|
+
url: '/api/my-assignment-batches/{uuid}/',
|
|
32953
32459
|
...options
|
|
32954
32460
|
});
|
|
32955
32461
|
};
|
|
32956
|
-
|
|
32957
|
-
|
|
32958
|
-
*/
|
|
32959
|
-
export const offeringKeycloakGroupsPullMembers = (options) => {
|
|
32960
|
-
return (options.client ?? _heyApiClient).post({
|
|
32462
|
+
export const notificationMessagesList = (options) => {
|
|
32463
|
+
return (options?.client ?? _heyApiClient).get({
|
|
32961
32464
|
security: [
|
|
32962
32465
|
{
|
|
32963
32466
|
name: 'Authorization',
|
|
@@ -32972,15 +32475,15 @@ export const offeringKeycloakGroupsPullMembers = (options) => {
|
|
|
32972
32475
|
type: 'http'
|
|
32973
32476
|
}
|
|
32974
32477
|
],
|
|
32975
|
-
url: '/api/
|
|
32478
|
+
url: '/api/notification-messages/',
|
|
32976
32479
|
...options
|
|
32977
32480
|
});
|
|
32978
32481
|
};
|
|
32979
32482
|
/**
|
|
32980
|
-
*
|
|
32483
|
+
* Get number of items in the collection matching the request parameters.
|
|
32981
32484
|
*/
|
|
32982
|
-
export const
|
|
32983
|
-
return (options
|
|
32485
|
+
export const notificationMessagesCount = (options) => {
|
|
32486
|
+
return (options?.client ?? _heyApiClient).head({
|
|
32984
32487
|
security: [
|
|
32985
32488
|
{
|
|
32986
32489
|
name: 'Authorization',
|
|
@@ -32995,18 +32498,11 @@ export const offeringKeycloakGroupsSetBackendId = (options) => {
|
|
|
32995
32498
|
type: 'http'
|
|
32996
32499
|
}
|
|
32997
32500
|
],
|
|
32998
|
-
url: '/api/
|
|
32999
|
-
...options
|
|
33000
|
-
headers: {
|
|
33001
|
-
'Content-Type': 'application/json',
|
|
33002
|
-
...options.headers
|
|
33003
|
-
}
|
|
32501
|
+
url: '/api/notification-messages/',
|
|
32502
|
+
...options
|
|
33004
32503
|
});
|
|
33005
32504
|
};
|
|
33006
|
-
|
|
33007
|
-
* Import a remote Keycloak group as a local OfferingKeycloakGroup
|
|
33008
|
-
*/
|
|
33009
|
-
export const offeringKeycloakGroupsImportRemote = (options) => {
|
|
32505
|
+
export const notificationMessagesCreate = (options) => {
|
|
33010
32506
|
return (options.client ?? _heyApiClient).post({
|
|
33011
32507
|
security: [
|
|
33012
32508
|
{
|
|
@@ -33022,7 +32518,7 @@ export const offeringKeycloakGroupsImportRemote = (options) => {
|
|
|
33022
32518
|
type: 'http'
|
|
33023
32519
|
}
|
|
33024
32520
|
],
|
|
33025
|
-
url: '/api/
|
|
32521
|
+
url: '/api/notification-messages/',
|
|
33026
32522
|
...options,
|
|
33027
32523
|
headers: {
|
|
33028
32524
|
'Content-Type': 'application/json',
|
|
@@ -33030,11 +32526,8 @@ export const offeringKeycloakGroupsImportRemote = (options) => {
|
|
|
33030
32526
|
}
|
|
33031
32527
|
});
|
|
33032
32528
|
};
|
|
33033
|
-
|
|
33034
|
-
|
|
33035
|
-
*/
|
|
33036
|
-
export const offeringKeycloakGroupsRemoteGroupMembersList = (options) => {
|
|
33037
|
-
return (options.client ?? _heyApiClient).get({
|
|
32529
|
+
export const notificationMessagesTemplatesList = (options) => {
|
|
32530
|
+
return (options?.client ?? _heyApiClient).get({
|
|
33038
32531
|
security: [
|
|
33039
32532
|
{
|
|
33040
32533
|
name: 'Authorization',
|
|
@@ -33049,16 +32542,15 @@ export const offeringKeycloakGroupsRemoteGroupMembersList = (options) => {
|
|
|
33049
32542
|
type: 'http'
|
|
33050
32543
|
}
|
|
33051
32544
|
],
|
|
33052
|
-
url: '/api/
|
|
32545
|
+
url: '/api/notification-messages-templates/',
|
|
33053
32546
|
...options
|
|
33054
32547
|
});
|
|
33055
32548
|
};
|
|
33056
32549
|
/**
|
|
33057
|
-
* List members of a remote Keycloak group
|
|
33058
32550
|
* Get number of items in the collection matching the request parameters.
|
|
33059
32551
|
*/
|
|
33060
|
-
export const
|
|
33061
|
-
return (options
|
|
32552
|
+
export const notificationMessagesTemplatesCount = (options) => {
|
|
32553
|
+
return (options?.client ?? _heyApiClient).head({
|
|
33062
32554
|
security: [
|
|
33063
32555
|
{
|
|
33064
32556
|
name: 'Authorization',
|
|
@@ -33073,15 +32565,12 @@ export const offeringKeycloakGroupsRemoteGroupMembersCount = (options) => {
|
|
|
33073
32565
|
type: 'http'
|
|
33074
32566
|
}
|
|
33075
32567
|
],
|
|
33076
|
-
url: '/api/
|
|
32568
|
+
url: '/api/notification-messages-templates/',
|
|
33077
32569
|
...options
|
|
33078
32570
|
});
|
|
33079
32571
|
};
|
|
33080
|
-
|
|
33081
|
-
|
|
33082
|
-
*/
|
|
33083
|
-
export const offeringKeycloakGroupsRemoteGroupsList = (options) => {
|
|
33084
|
-
return (options.client ?? _heyApiClient).get({
|
|
32572
|
+
export const notificationMessagesTemplatesCreate = (options) => {
|
|
32573
|
+
return (options.client ?? _heyApiClient).post({
|
|
33085
32574
|
security: [
|
|
33086
32575
|
{
|
|
33087
32576
|
name: 'Authorization',
|
|
@@ -33096,16 +32585,16 @@ export const offeringKeycloakGroupsRemoteGroupsList = (options) => {
|
|
|
33096
32585
|
type: 'http'
|
|
33097
32586
|
}
|
|
33098
32587
|
],
|
|
33099
|
-
url: '/api/
|
|
33100
|
-
...options
|
|
32588
|
+
url: '/api/notification-messages-templates/',
|
|
32589
|
+
...options,
|
|
32590
|
+
headers: {
|
|
32591
|
+
'Content-Type': 'application/json',
|
|
32592
|
+
...options.headers
|
|
32593
|
+
}
|
|
33101
32594
|
});
|
|
33102
32595
|
};
|
|
33103
|
-
|
|
33104
|
-
|
|
33105
|
-
* Get number of items in the collection matching the request parameters.
|
|
33106
|
-
*/
|
|
33107
|
-
export const offeringKeycloakGroupsRemoteGroupsCount = (options) => {
|
|
33108
|
-
return (options.client ?? _heyApiClient).head({
|
|
32596
|
+
export const notificationMessagesTemplatesDestroy = (options) => {
|
|
32597
|
+
return (options.client ?? _heyApiClient).delete({
|
|
33109
32598
|
security: [
|
|
33110
32599
|
{
|
|
33111
32600
|
name: 'Authorization',
|
|
@@ -33120,14 +32609,11 @@ export const offeringKeycloakGroupsRemoteGroupsCount = (options) => {
|
|
|
33120
32609
|
type: 'http'
|
|
33121
32610
|
}
|
|
33122
32611
|
],
|
|
33123
|
-
url: '/api/
|
|
32612
|
+
url: '/api/notification-messages-templates/{uuid}/',
|
|
33124
32613
|
...options
|
|
33125
32614
|
});
|
|
33126
32615
|
};
|
|
33127
|
-
|
|
33128
|
-
* Search for users in remote Keycloak instance
|
|
33129
|
-
*/
|
|
33130
|
-
export const offeringKeycloakGroupsSearchRemoteUsersList = (options) => {
|
|
32616
|
+
export const notificationMessagesTemplatesRetrieve = (options) => {
|
|
33131
32617
|
return (options.client ?? _heyApiClient).get({
|
|
33132
32618
|
security: [
|
|
33133
32619
|
{
|
|
@@ -33143,16 +32629,12 @@ export const offeringKeycloakGroupsSearchRemoteUsersList = (options) => {
|
|
|
33143
32629
|
type: 'http'
|
|
33144
32630
|
}
|
|
33145
32631
|
],
|
|
33146
|
-
url: '/api/
|
|
32632
|
+
url: '/api/notification-messages-templates/{uuid}/',
|
|
33147
32633
|
...options
|
|
33148
32634
|
});
|
|
33149
32635
|
};
|
|
33150
|
-
|
|
33151
|
-
|
|
33152
|
-
* Get number of items in the collection matching the request parameters.
|
|
33153
|
-
*/
|
|
33154
|
-
export const offeringKeycloakGroupsSearchRemoteUsersCount = (options) => {
|
|
33155
|
-
return (options.client ?? _heyApiClient).head({
|
|
32636
|
+
export const notificationMessagesTemplatesPartialUpdate = (options) => {
|
|
32637
|
+
return (options.client ?? _heyApiClient).patch({
|
|
33156
32638
|
security: [
|
|
33157
32639
|
{
|
|
33158
32640
|
name: 'Authorization',
|
|
@@ -33167,15 +32649,16 @@ export const offeringKeycloakGroupsSearchRemoteUsersCount = (options) => {
|
|
|
33167
32649
|
type: 'http'
|
|
33168
32650
|
}
|
|
33169
32651
|
],
|
|
33170
|
-
url: '/api/
|
|
33171
|
-
...options
|
|
32652
|
+
url: '/api/notification-messages-templates/{uuid}/',
|
|
32653
|
+
...options,
|
|
32654
|
+
headers: {
|
|
32655
|
+
'Content-Type': 'application/json',
|
|
32656
|
+
...options.headers
|
|
32657
|
+
}
|
|
33172
32658
|
});
|
|
33173
32659
|
};
|
|
33174
|
-
|
|
33175
|
-
|
|
33176
|
-
*/
|
|
33177
|
-
export const offeringKeycloakGroupsSyncStatusRetrieve = (options) => {
|
|
33178
|
-
return (options.client ?? _heyApiClient).get({
|
|
32660
|
+
export const notificationMessagesTemplatesUpdate = (options) => {
|
|
32661
|
+
return (options.client ?? _heyApiClient).put({
|
|
33179
32662
|
security: [
|
|
33180
32663
|
{
|
|
33181
32664
|
name: 'Authorization',
|
|
@@ -33190,16 +32673,19 @@ export const offeringKeycloakGroupsSyncStatusRetrieve = (options) => {
|
|
|
33190
32673
|
type: 'http'
|
|
33191
32674
|
}
|
|
33192
32675
|
],
|
|
33193
|
-
url: '/api/
|
|
33194
|
-
...options
|
|
32676
|
+
url: '/api/notification-messages-templates/{uuid}/',
|
|
32677
|
+
...options,
|
|
32678
|
+
headers: {
|
|
32679
|
+
'Content-Type': 'application/json',
|
|
32680
|
+
...options.headers
|
|
32681
|
+
}
|
|
33195
32682
|
});
|
|
33196
32683
|
};
|
|
33197
32684
|
/**
|
|
33198
|
-
*
|
|
33199
|
-
* Get number of items in the collection matching the request parameters.
|
|
32685
|
+
* Override notification template content
|
|
33200
32686
|
*/
|
|
33201
|
-
export const
|
|
33202
|
-
return (options.client ?? _heyApiClient).
|
|
32687
|
+
export const notificationMessagesTemplatesOverride = (options) => {
|
|
32688
|
+
return (options.client ?? _heyApiClient).post({
|
|
33203
32689
|
security: [
|
|
33204
32690
|
{
|
|
33205
32691
|
name: 'Authorization',
|
|
@@ -33214,15 +32700,16 @@ export const offeringKeycloakGroupsSyncStatusCount = (options) => {
|
|
|
33214
32700
|
type: 'http'
|
|
33215
32701
|
}
|
|
33216
32702
|
],
|
|
33217
|
-
url: '/api/
|
|
33218
|
-
...options
|
|
32703
|
+
url: '/api/notification-messages-templates/{uuid}/override/',
|
|
32704
|
+
...options,
|
|
32705
|
+
headers: {
|
|
32706
|
+
'Content-Type': 'application/json',
|
|
32707
|
+
...options.headers
|
|
32708
|
+
}
|
|
33219
32709
|
});
|
|
33220
32710
|
};
|
|
33221
|
-
|
|
33222
|
-
|
|
33223
|
-
*/
|
|
33224
|
-
export const offeringKeycloakGroupsTestConnection = (options) => {
|
|
33225
|
-
return (options.client ?? _heyApiClient).post({
|
|
32711
|
+
export const notificationMessagesDestroy = (options) => {
|
|
32712
|
+
return (options.client ?? _heyApiClient).delete({
|
|
33226
32713
|
security: [
|
|
33227
32714
|
{
|
|
33228
32715
|
name: 'Authorization',
|
|
@@ -33237,16 +32724,12 @@ export const offeringKeycloakGroupsTestConnection = (options) => {
|
|
|
33237
32724
|
type: 'http'
|
|
33238
32725
|
}
|
|
33239
32726
|
],
|
|
33240
|
-
url: '/api/
|
|
33241
|
-
...options
|
|
33242
|
-
headers: {
|
|
33243
|
-
'Content-Type': 'application/json',
|
|
33244
|
-
...options.headers
|
|
33245
|
-
}
|
|
32727
|
+
url: '/api/notification-messages/{uuid}/',
|
|
32728
|
+
...options
|
|
33246
32729
|
});
|
|
33247
32730
|
};
|
|
33248
|
-
export const
|
|
33249
|
-
return (options
|
|
32731
|
+
export const notificationMessagesRetrieve = (options) => {
|
|
32732
|
+
return (options.client ?? _heyApiClient).get({
|
|
33250
32733
|
security: [
|
|
33251
32734
|
{
|
|
33252
32735
|
name: 'Authorization',
|
|
@@ -33261,15 +32744,12 @@ export const offeringKeycloakMembershipsList = (options) => {
|
|
|
33261
32744
|
type: 'http'
|
|
33262
32745
|
}
|
|
33263
32746
|
],
|
|
33264
|
-
url: '/api/
|
|
32747
|
+
url: '/api/notification-messages/{uuid}/',
|
|
33265
32748
|
...options
|
|
33266
32749
|
});
|
|
33267
32750
|
};
|
|
33268
|
-
|
|
33269
|
-
|
|
33270
|
-
*/
|
|
33271
|
-
export const offeringKeycloakMembershipsCount = (options) => {
|
|
33272
|
-
return (options?.client ?? _heyApiClient).head({
|
|
32751
|
+
export const notificationMessagesPartialUpdate = (options) => {
|
|
32752
|
+
return (options.client ?? _heyApiClient).patch({
|
|
33273
32753
|
security: [
|
|
33274
32754
|
{
|
|
33275
32755
|
name: 'Authorization',
|
|
@@ -33284,12 +32764,16 @@ export const offeringKeycloakMembershipsCount = (options) => {
|
|
|
33284
32764
|
type: 'http'
|
|
33285
32765
|
}
|
|
33286
32766
|
],
|
|
33287
|
-
url: '/api/
|
|
33288
|
-
...options
|
|
32767
|
+
url: '/api/notification-messages/{uuid}/',
|
|
32768
|
+
...options,
|
|
32769
|
+
headers: {
|
|
32770
|
+
'Content-Type': 'application/json',
|
|
32771
|
+
...options.headers
|
|
32772
|
+
}
|
|
33289
32773
|
});
|
|
33290
32774
|
};
|
|
33291
|
-
export const
|
|
33292
|
-
return (options.client ?? _heyApiClient).
|
|
32775
|
+
export const notificationMessagesUpdate = (options) => {
|
|
32776
|
+
return (options.client ?? _heyApiClient).put({
|
|
33293
32777
|
security: [
|
|
33294
32778
|
{
|
|
33295
32779
|
name: 'Authorization',
|
|
@@ -33304,7 +32788,7 @@ export const offeringKeycloakMembershipsCreate = (options) => {
|
|
|
33304
32788
|
type: 'http'
|
|
33305
32789
|
}
|
|
33306
32790
|
],
|
|
33307
|
-
url: '/api/
|
|
32791
|
+
url: '/api/notification-messages/{uuid}/',
|
|
33308
32792
|
...options,
|
|
33309
32793
|
headers: {
|
|
33310
32794
|
'Content-Type': 'application/json',
|
|
@@ -33312,8 +32796,11 @@ export const offeringKeycloakMembershipsCreate = (options) => {
|
|
|
33312
32796
|
}
|
|
33313
32797
|
});
|
|
33314
32798
|
};
|
|
33315
|
-
|
|
33316
|
-
|
|
32799
|
+
/**
|
|
32800
|
+
* Disable a notification
|
|
32801
|
+
*/
|
|
32802
|
+
export const notificationMessagesDisable = (options) => {
|
|
32803
|
+
return (options.client ?? _heyApiClient).post({
|
|
33317
32804
|
security: [
|
|
33318
32805
|
{
|
|
33319
32806
|
name: 'Authorization',
|
|
@@ -33328,12 +32815,15 @@ export const offeringKeycloakMembershipsDestroy = (options) => {
|
|
|
33328
32815
|
type: 'http'
|
|
33329
32816
|
}
|
|
33330
32817
|
],
|
|
33331
|
-
url: '/api/
|
|
32818
|
+
url: '/api/notification-messages/{uuid}/disable/',
|
|
33332
32819
|
...options
|
|
33333
32820
|
});
|
|
33334
32821
|
};
|
|
33335
|
-
|
|
33336
|
-
|
|
32822
|
+
/**
|
|
32823
|
+
* Enable a notification
|
|
32824
|
+
*/
|
|
32825
|
+
export const notificationMessagesEnable = (options) => {
|
|
32826
|
+
return (options.client ?? _heyApiClient).post({
|
|
33337
32827
|
security: [
|
|
33338
32828
|
{
|
|
33339
32829
|
name: 'Authorization',
|
|
@@ -33348,7 +32838,7 @@ export const offeringKeycloakMembershipsRetrieve = (options) => {
|
|
|
33348
32838
|
type: 'http'
|
|
33349
32839
|
}
|
|
33350
32840
|
],
|
|
33351
|
-
url: '/api/
|
|
32841
|
+
url: '/api/notification-messages/{uuid}/enable/',
|
|
33352
32842
|
...options
|
|
33353
32843
|
});
|
|
33354
32844
|
};
|
|
@@ -37544,6 +37034,69 @@ export const openstackHealthMonitorsPull = (options) => {
|
|
|
37544
37034
|
...options
|
|
37545
37035
|
});
|
|
37546
37036
|
};
|
|
37037
|
+
export const openstackHypervisorInventoriesList = (options) => {
|
|
37038
|
+
return (options?.client ?? _heyApiClient).get({
|
|
37039
|
+
security: [
|
|
37040
|
+
{
|
|
37041
|
+
name: 'Authorization',
|
|
37042
|
+
type: 'apiKey'
|
|
37043
|
+
},
|
|
37044
|
+
{
|
|
37045
|
+
scheme: 'bearer',
|
|
37046
|
+
type: 'http'
|
|
37047
|
+
},
|
|
37048
|
+
{
|
|
37049
|
+
scheme: 'bearer',
|
|
37050
|
+
type: 'http'
|
|
37051
|
+
}
|
|
37052
|
+
],
|
|
37053
|
+
url: '/api/openstack-hypervisor-inventories/',
|
|
37054
|
+
...options
|
|
37055
|
+
});
|
|
37056
|
+
};
|
|
37057
|
+
/**
|
|
37058
|
+
* Get number of items in the collection matching the request parameters.
|
|
37059
|
+
*/
|
|
37060
|
+
export const openstackHypervisorInventoriesCount = (options) => {
|
|
37061
|
+
return (options?.client ?? _heyApiClient).head({
|
|
37062
|
+
security: [
|
|
37063
|
+
{
|
|
37064
|
+
name: 'Authorization',
|
|
37065
|
+
type: 'apiKey'
|
|
37066
|
+
},
|
|
37067
|
+
{
|
|
37068
|
+
scheme: 'bearer',
|
|
37069
|
+
type: 'http'
|
|
37070
|
+
},
|
|
37071
|
+
{
|
|
37072
|
+
scheme: 'bearer',
|
|
37073
|
+
type: 'http'
|
|
37074
|
+
}
|
|
37075
|
+
],
|
|
37076
|
+
url: '/api/openstack-hypervisor-inventories/',
|
|
37077
|
+
...options
|
|
37078
|
+
});
|
|
37079
|
+
};
|
|
37080
|
+
export const openstackHypervisorInventoriesRetrieve = (options) => {
|
|
37081
|
+
return (options.client ?? _heyApiClient).get({
|
|
37082
|
+
security: [
|
|
37083
|
+
{
|
|
37084
|
+
name: 'Authorization',
|
|
37085
|
+
type: 'apiKey'
|
|
37086
|
+
},
|
|
37087
|
+
{
|
|
37088
|
+
scheme: 'bearer',
|
|
37089
|
+
type: 'http'
|
|
37090
|
+
},
|
|
37091
|
+
{
|
|
37092
|
+
scheme: 'bearer',
|
|
37093
|
+
type: 'http'
|
|
37094
|
+
}
|
|
37095
|
+
],
|
|
37096
|
+
url: '/api/openstack-hypervisor-inventories/{uuid}/',
|
|
37097
|
+
...options
|
|
37098
|
+
});
|
|
37099
|
+
};
|
|
37547
37100
|
export const openstackHypervisorsList = (options) => {
|
|
37548
37101
|
return (options?.client ?? _heyApiClient).get({
|
|
37549
37102
|
security: [
|
|
@@ -37607,6 +37160,54 @@ export const openstackHypervisorsRetrieve = (options) => {
|
|
|
37607
37160
|
...options
|
|
37608
37161
|
});
|
|
37609
37162
|
};
|
|
37163
|
+
/**
|
|
37164
|
+
* Pre-flight allocation candidates
|
|
37165
|
+
* Ask Placement which compute hosts could currently satisfy a request for the given resources (and required traits). Useful as a pre-flight check before placing an order on a fully-booked cloud. Returns 0 candidates when nothing fits, with the same provider_summaries Placement returns for diagnostic display.
|
|
37166
|
+
*/
|
|
37167
|
+
export const openstackHypervisorsAllocationCandidatesRetrieve = (options) => {
|
|
37168
|
+
return (options.client ?? _heyApiClient).get({
|
|
37169
|
+
security: [
|
|
37170
|
+
{
|
|
37171
|
+
name: 'Authorization',
|
|
37172
|
+
type: 'apiKey'
|
|
37173
|
+
},
|
|
37174
|
+
{
|
|
37175
|
+
scheme: 'bearer',
|
|
37176
|
+
type: 'http'
|
|
37177
|
+
},
|
|
37178
|
+
{
|
|
37179
|
+
scheme: 'bearer',
|
|
37180
|
+
type: 'http'
|
|
37181
|
+
}
|
|
37182
|
+
],
|
|
37183
|
+
url: '/api/openstack-hypervisors/allocation_candidates/',
|
|
37184
|
+
...options
|
|
37185
|
+
});
|
|
37186
|
+
};
|
|
37187
|
+
/**
|
|
37188
|
+
* Pre-flight allocation candidates
|
|
37189
|
+
* Get number of items in the collection matching the request parameters.
|
|
37190
|
+
*/
|
|
37191
|
+
export const openstackHypervisorsAllocationCandidatesCount = (options) => {
|
|
37192
|
+
return (options.client ?? _heyApiClient).head({
|
|
37193
|
+
security: [
|
|
37194
|
+
{
|
|
37195
|
+
name: 'Authorization',
|
|
37196
|
+
type: 'apiKey'
|
|
37197
|
+
},
|
|
37198
|
+
{
|
|
37199
|
+
scheme: 'bearer',
|
|
37200
|
+
type: 'http'
|
|
37201
|
+
},
|
|
37202
|
+
{
|
|
37203
|
+
scheme: 'bearer',
|
|
37204
|
+
type: 'http'
|
|
37205
|
+
}
|
|
37206
|
+
],
|
|
37207
|
+
url: '/api/openstack-hypervisors/allocation_candidates/',
|
|
37208
|
+
...options
|
|
37209
|
+
});
|
|
37210
|
+
};
|
|
37610
37211
|
/**
|
|
37611
37212
|
* Get hypervisor summary statistics
|
|
37612
37213
|
* Return aggregated vCPU, RAM and disk totals across all hypervisors matching the current filter (e.g. settings_uuid).
|
|
@@ -55463,11 +55064,7 @@ export const supportRequestTypesAdminActivate = (options) => {
|
|
|
55463
55064
|
}
|
|
55464
55065
|
],
|
|
55465
55066
|
url: '/api/support-request-types-admin/{uuid}/activate/',
|
|
55466
|
-
...options
|
|
55467
|
-
headers: {
|
|
55468
|
-
'Content-Type': 'application/json',
|
|
55469
|
-
...options.headers
|
|
55470
|
-
}
|
|
55067
|
+
...options
|
|
55471
55068
|
});
|
|
55472
55069
|
};
|
|
55473
55070
|
/**
|
|
@@ -55490,11 +55087,7 @@ export const supportRequestTypesAdminDeactivate = (options) => {
|
|
|
55490
55087
|
}
|
|
55491
55088
|
],
|
|
55492
55089
|
url: '/api/support-request-types-admin/{uuid}/deactivate/',
|
|
55493
|
-
...options
|
|
55494
|
-
headers: {
|
|
55495
|
-
'Content-Type': 'application/json',
|
|
55496
|
-
...options.headers
|
|
55497
|
-
}
|
|
55090
|
+
...options
|
|
55498
55091
|
});
|
|
55499
55092
|
};
|
|
55500
55093
|
/**
|