waldur-js-client 8.0.7-dev.37 → 8.0.7-dev.39
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 +6 -1
- package/dist/sdk.gen.js +24 -0
- package/dist/types.gen.d.ts +196 -0
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -19428,6 +19428,30 @@ export const marketplaceOrdersRejectByProvider = (options) => {
|
|
|
19428
19428
|
}
|
|
19429
19429
|
});
|
|
19430
19430
|
};
|
|
19431
|
+
/**
|
|
19432
|
+
* Get resource details
|
|
19433
|
+
* Returns details of the resource connected to the requested object.
|
|
19434
|
+
*/
|
|
19435
|
+
export const marketplaceOrdersResourceRetrieve = (options) => {
|
|
19436
|
+
return (options.client ?? _heyApiClient).get({
|
|
19437
|
+
security: [
|
|
19438
|
+
{
|
|
19439
|
+
name: 'Authorization',
|
|
19440
|
+
type: 'apiKey'
|
|
19441
|
+
},
|
|
19442
|
+
{
|
|
19443
|
+
scheme: 'bearer',
|
|
19444
|
+
type: 'http'
|
|
19445
|
+
},
|
|
19446
|
+
{
|
|
19447
|
+
scheme: 'bearer',
|
|
19448
|
+
type: 'http'
|
|
19449
|
+
}
|
|
19450
|
+
],
|
|
19451
|
+
url: '/api/marketplace-orders/{uuid}/resource/',
|
|
19452
|
+
...options
|
|
19453
|
+
});
|
|
19454
|
+
};
|
|
19431
19455
|
/**
|
|
19432
19456
|
* Retry an erred order
|
|
19433
19457
|
* Resets an erred order and its resource back to an active state so that the order can be reprocessed.
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -32557,6 +32557,10 @@ export type BookingResourcesListData = {
|
|
|
32557
32557
|
* Service manager UUID
|
|
32558
32558
|
*/
|
|
32559
32559
|
service_manager_uuid?: string;
|
|
32560
|
+
/**
|
|
32561
|
+
* Slug
|
|
32562
|
+
*/
|
|
32563
|
+
slug?: string;
|
|
32560
32564
|
/**
|
|
32561
32565
|
* Resource state
|
|
32562
32566
|
*
|
|
@@ -32745,6 +32749,10 @@ export type BookingResourcesCountData = {
|
|
|
32745
32749
|
* Service manager UUID
|
|
32746
32750
|
*/
|
|
32747
32751
|
service_manager_uuid?: string;
|
|
32752
|
+
/**
|
|
32753
|
+
* Slug
|
|
32754
|
+
*/
|
|
32755
|
+
slug?: string;
|
|
32748
32756
|
/**
|
|
32749
32757
|
* Resource state
|
|
32750
32758
|
*
|
|
@@ -35459,6 +35467,10 @@ export type CustomersListData = {
|
|
|
35459
35467
|
* Filter by service provider UUID.
|
|
35460
35468
|
*/
|
|
35461
35469
|
service_provider_uuid?: string;
|
|
35470
|
+
/**
|
|
35471
|
+
* Slug
|
|
35472
|
+
*/
|
|
35473
|
+
slug?: string;
|
|
35462
35474
|
/**
|
|
35463
35475
|
* Filter by user UUID.
|
|
35464
35476
|
*/
|
|
@@ -35550,6 +35562,10 @@ export type CustomersCountData = {
|
|
|
35550
35562
|
* Filter by service provider UUID.
|
|
35551
35563
|
*/
|
|
35552
35564
|
service_provider_uuid?: string;
|
|
35565
|
+
/**
|
|
35566
|
+
* Slug
|
|
35567
|
+
*/
|
|
35568
|
+
slug?: string;
|
|
35553
35569
|
/**
|
|
35554
35570
|
* Filter by user UUID.
|
|
35555
35571
|
*/
|
|
@@ -35941,6 +35957,10 @@ export type CustomersHistoryListData = {
|
|
|
35941
35957
|
* Filter by service provider UUID.
|
|
35942
35958
|
*/
|
|
35943
35959
|
service_provider_uuid?: string;
|
|
35960
|
+
/**
|
|
35961
|
+
* Slug
|
|
35962
|
+
*/
|
|
35963
|
+
slug?: string;
|
|
35944
35964
|
/**
|
|
35945
35965
|
* Filter by user UUID.
|
|
35946
35966
|
*/
|
|
@@ -36224,6 +36244,10 @@ export type CustomersCountriesListData = {
|
|
|
36224
36244
|
* Filter by service provider UUID.
|
|
36225
36245
|
*/
|
|
36226
36246
|
service_provider_uuid?: string;
|
|
36247
|
+
/**
|
|
36248
|
+
* Slug
|
|
36249
|
+
*/
|
|
36250
|
+
slug?: string;
|
|
36227
36251
|
/**
|
|
36228
36252
|
* Filter by user UUID.
|
|
36229
36253
|
*/
|
|
@@ -36315,6 +36339,10 @@ export type CustomersCountriesCountData = {
|
|
|
36315
36339
|
* Filter by service provider UUID.
|
|
36316
36340
|
*/
|
|
36317
36341
|
service_provider_uuid?: string;
|
|
36342
|
+
/**
|
|
36343
|
+
* Slug
|
|
36344
|
+
*/
|
|
36345
|
+
slug?: string;
|
|
36318
36346
|
/**
|
|
36319
36347
|
* Filter by user UUID.
|
|
36320
36348
|
*/
|
|
@@ -37933,6 +37961,10 @@ export type FinancialReportsListData = {
|
|
|
37933
37961
|
*/
|
|
37934
37962
|
query?: string;
|
|
37935
37963
|
registration_code?: string;
|
|
37964
|
+
/**
|
|
37965
|
+
* Slug
|
|
37966
|
+
*/
|
|
37967
|
+
slug?: string;
|
|
37936
37968
|
/**
|
|
37937
37969
|
* Filter by year.
|
|
37938
37970
|
*/
|
|
@@ -38016,6 +38048,10 @@ export type FinancialReportsCountData = {
|
|
|
38016
38048
|
*/
|
|
38017
38049
|
query?: string;
|
|
38018
38050
|
registration_code?: string;
|
|
38051
|
+
/**
|
|
38052
|
+
* Slug
|
|
38053
|
+
*/
|
|
38054
|
+
slug?: string;
|
|
38019
38055
|
/**
|
|
38020
38056
|
* Filter by year.
|
|
38021
38057
|
*/
|
|
@@ -44754,6 +44790,10 @@ export type MarketplaceOrdersListData = {
|
|
|
44754
44790
|
* Service manager UUID
|
|
44755
44791
|
*/
|
|
44756
44792
|
service_manager_uuid?: string;
|
|
44793
|
+
/**
|
|
44794
|
+
* Slug
|
|
44795
|
+
*/
|
|
44796
|
+
slug?: string;
|
|
44757
44797
|
/**
|
|
44758
44798
|
* Order state
|
|
44759
44799
|
*
|
|
@@ -44865,6 +44905,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
44865
44905
|
* Service manager UUID
|
|
44866
44906
|
*/
|
|
44867
44907
|
service_manager_uuid?: string;
|
|
44908
|
+
/**
|
|
44909
|
+
* Slug
|
|
44910
|
+
*/
|
|
44911
|
+
slug?: string;
|
|
44868
44912
|
/**
|
|
44869
44913
|
* Order state
|
|
44870
44914
|
*
|
|
@@ -45042,6 +45086,18 @@ export type MarketplaceOrdersRejectByProviderResponses = {
|
|
|
45042
45086
|
*/
|
|
45043
45087
|
200: unknown;
|
|
45044
45088
|
};
|
|
45089
|
+
export type MarketplaceOrdersResourceRetrieveData = {
|
|
45090
|
+
body?: never;
|
|
45091
|
+
path: {
|
|
45092
|
+
uuid: string;
|
|
45093
|
+
};
|
|
45094
|
+
query?: never;
|
|
45095
|
+
url: '/api/marketplace-orders/{uuid}/resource/';
|
|
45096
|
+
};
|
|
45097
|
+
export type MarketplaceOrdersResourceRetrieveResponses = {
|
|
45098
|
+
200: Resource;
|
|
45099
|
+
};
|
|
45100
|
+
export type MarketplaceOrdersResourceRetrieveResponse = MarketplaceOrdersResourceRetrieveResponses[keyof MarketplaceOrdersResourceRetrieveResponses];
|
|
45045
45101
|
export type MarketplaceOrdersRetryData = {
|
|
45046
45102
|
body?: never;
|
|
45047
45103
|
path: {
|
|
@@ -46129,6 +46185,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
46129
46185
|
* Shared
|
|
46130
46186
|
*/
|
|
46131
46187
|
shared?: boolean;
|
|
46188
|
+
/**
|
|
46189
|
+
* Slug
|
|
46190
|
+
*/
|
|
46191
|
+
slug?: string;
|
|
46132
46192
|
/**
|
|
46133
46193
|
* Offering state
|
|
46134
46194
|
*
|
|
@@ -46305,6 +46365,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
46305
46365
|
* Shared
|
|
46306
46366
|
*/
|
|
46307
46367
|
shared?: boolean;
|
|
46368
|
+
/**
|
|
46369
|
+
* Slug
|
|
46370
|
+
*/
|
|
46371
|
+
slug?: string;
|
|
46308
46372
|
/**
|
|
46309
46373
|
* Offering state
|
|
46310
46374
|
*
|
|
@@ -46618,6 +46682,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
46618
46682
|
* Shared
|
|
46619
46683
|
*/
|
|
46620
46684
|
shared?: boolean;
|
|
46685
|
+
/**
|
|
46686
|
+
* Slug
|
|
46687
|
+
*/
|
|
46688
|
+
slug?: string;
|
|
46621
46689
|
/**
|
|
46622
46690
|
* Start date in format YYYY-MM.
|
|
46623
46691
|
*/
|
|
@@ -46805,6 +46873,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
46805
46873
|
* Shared
|
|
46806
46874
|
*/
|
|
46807
46875
|
shared?: boolean;
|
|
46876
|
+
/**
|
|
46877
|
+
* Slug
|
|
46878
|
+
*/
|
|
46879
|
+
slug?: string;
|
|
46808
46880
|
/**
|
|
46809
46881
|
* Start date in format YYYY-MM.
|
|
46810
46882
|
*/
|
|
@@ -47002,6 +47074,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
47002
47074
|
* Shared
|
|
47003
47075
|
*/
|
|
47004
47076
|
shared?: boolean;
|
|
47077
|
+
/**
|
|
47078
|
+
* Slug
|
|
47079
|
+
*/
|
|
47080
|
+
slug?: string;
|
|
47005
47081
|
/**
|
|
47006
47082
|
* Offering state
|
|
47007
47083
|
*
|
|
@@ -47324,6 +47400,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
47324
47400
|
* Shared
|
|
47325
47401
|
*/
|
|
47326
47402
|
shared?: boolean;
|
|
47403
|
+
/**
|
|
47404
|
+
* Slug
|
|
47405
|
+
*/
|
|
47406
|
+
slug?: string;
|
|
47327
47407
|
/**
|
|
47328
47408
|
* Offering state
|
|
47329
47409
|
*
|
|
@@ -47561,6 +47641,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
47561
47641
|
* Shared
|
|
47562
47642
|
*/
|
|
47563
47643
|
shared?: boolean;
|
|
47644
|
+
/**
|
|
47645
|
+
* Slug
|
|
47646
|
+
*/
|
|
47647
|
+
slug?: string;
|
|
47564
47648
|
/**
|
|
47565
47649
|
* Offering state
|
|
47566
47650
|
*
|
|
@@ -47761,6 +47845,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
47761
47845
|
* Shared
|
|
47762
47846
|
*/
|
|
47763
47847
|
shared?: boolean;
|
|
47848
|
+
/**
|
|
47849
|
+
* Slug
|
|
47850
|
+
*/
|
|
47851
|
+
slug?: string;
|
|
47764
47852
|
/**
|
|
47765
47853
|
* Offering state
|
|
47766
47854
|
*
|
|
@@ -47961,6 +48049,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
47961
48049
|
* Shared
|
|
47962
48050
|
*/
|
|
47963
48051
|
shared?: boolean;
|
|
48052
|
+
/**
|
|
48053
|
+
* Slug
|
|
48054
|
+
*/
|
|
48055
|
+
slug?: string;
|
|
47964
48056
|
/**
|
|
47965
48057
|
* Offering state
|
|
47966
48058
|
*
|
|
@@ -48726,6 +48818,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
48726
48818
|
* Shared
|
|
48727
48819
|
*/
|
|
48728
48820
|
shared?: boolean;
|
|
48821
|
+
/**
|
|
48822
|
+
* Slug
|
|
48823
|
+
*/
|
|
48824
|
+
slug?: string;
|
|
48729
48825
|
/**
|
|
48730
48826
|
* Offering state
|
|
48731
48827
|
*
|
|
@@ -48898,6 +48994,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
48898
48994
|
* Shared
|
|
48899
48995
|
*/
|
|
48900
48996
|
shared?: boolean;
|
|
48997
|
+
/**
|
|
48998
|
+
* Slug
|
|
48999
|
+
*/
|
|
49000
|
+
slug?: string;
|
|
48901
49001
|
/**
|
|
48902
49002
|
* Offering state
|
|
48903
49003
|
*
|
|
@@ -49122,6 +49222,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
49122
49222
|
* Service manager UUID
|
|
49123
49223
|
*/
|
|
49124
49224
|
service_manager_uuid?: string;
|
|
49225
|
+
/**
|
|
49226
|
+
* Slug
|
|
49227
|
+
*/
|
|
49228
|
+
slug?: string;
|
|
49125
49229
|
/**
|
|
49126
49230
|
* Resource state
|
|
49127
49231
|
*
|
|
@@ -49313,6 +49417,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
49313
49417
|
* Service manager UUID
|
|
49314
49418
|
*/
|
|
49315
49419
|
service_manager_uuid?: string;
|
|
49420
|
+
/**
|
|
49421
|
+
* Slug
|
|
49422
|
+
*/
|
|
49423
|
+
slug?: string;
|
|
49316
49424
|
/**
|
|
49317
49425
|
* Resource state
|
|
49318
49426
|
*
|
|
@@ -49580,6 +49688,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
49580
49688
|
* Service manager UUID
|
|
49581
49689
|
*/
|
|
49582
49690
|
service_manager_uuid?: string;
|
|
49691
|
+
/**
|
|
49692
|
+
* Slug
|
|
49693
|
+
*/
|
|
49694
|
+
slug?: string;
|
|
49583
49695
|
/**
|
|
49584
49696
|
* Resource state
|
|
49585
49697
|
*
|
|
@@ -50157,6 +50269,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
50157
50269
|
* Shared
|
|
50158
50270
|
*/
|
|
50159
50271
|
shared?: boolean;
|
|
50272
|
+
/**
|
|
50273
|
+
* Slug
|
|
50274
|
+
*/
|
|
50275
|
+
slug?: string;
|
|
50160
50276
|
/**
|
|
50161
50277
|
* Offering state
|
|
50162
50278
|
*
|
|
@@ -50329,6 +50445,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
50329
50445
|
* Shared
|
|
50330
50446
|
*/
|
|
50331
50447
|
shared?: boolean;
|
|
50448
|
+
/**
|
|
50449
|
+
* Slug
|
|
50450
|
+
*/
|
|
50451
|
+
slug?: string;
|
|
50332
50452
|
/**
|
|
50333
50453
|
* Offering state
|
|
50334
50454
|
*
|
|
@@ -50870,6 +50990,10 @@ export type MarketplaceResourcesListData = {
|
|
|
50870
50990
|
* Service manager UUID
|
|
50871
50991
|
*/
|
|
50872
50992
|
service_manager_uuid?: string;
|
|
50993
|
+
/**
|
|
50994
|
+
* Slug
|
|
50995
|
+
*/
|
|
50996
|
+
slug?: string;
|
|
50873
50997
|
/**
|
|
50874
50998
|
* Resource state
|
|
50875
50999
|
*
|
|
@@ -51061,6 +51185,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
51061
51185
|
* Service manager UUID
|
|
51062
51186
|
*/
|
|
51063
51187
|
service_manager_uuid?: string;
|
|
51188
|
+
/**
|
|
51189
|
+
* Slug
|
|
51190
|
+
*/
|
|
51191
|
+
slug?: string;
|
|
51064
51192
|
/**
|
|
51065
51193
|
* Resource state
|
|
51066
51194
|
*
|
|
@@ -51340,6 +51468,10 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
51340
51468
|
* Service manager UUID
|
|
51341
51469
|
*/
|
|
51342
51470
|
service_manager_uuid?: string;
|
|
51471
|
+
/**
|
|
51472
|
+
* Slug
|
|
51473
|
+
*/
|
|
51474
|
+
slug?: string;
|
|
51343
51475
|
/**
|
|
51344
51476
|
* Resource state
|
|
51345
51477
|
*
|
|
@@ -52709,6 +52841,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
|
|
|
52709
52841
|
*/
|
|
52710
52842
|
query?: string;
|
|
52711
52843
|
registration_code?: string;
|
|
52844
|
+
/**
|
|
52845
|
+
* Slug
|
|
52846
|
+
*/
|
|
52847
|
+
slug?: string;
|
|
52712
52848
|
};
|
|
52713
52849
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/';
|
|
52714
52850
|
};
|
|
@@ -52910,6 +53046,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
52910
53046
|
* Shared
|
|
52911
53047
|
*/
|
|
52912
53048
|
shared?: boolean;
|
|
53049
|
+
/**
|
|
53050
|
+
* Slug
|
|
53051
|
+
*/
|
|
53052
|
+
slug?: string;
|
|
52913
53053
|
/**
|
|
52914
53054
|
* Offering state
|
|
52915
53055
|
*
|
|
@@ -53235,6 +53375,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
53235
53375
|
*/
|
|
53236
53376
|
query?: string;
|
|
53237
53377
|
registration_code?: string;
|
|
53378
|
+
/**
|
|
53379
|
+
* Slug
|
|
53380
|
+
*/
|
|
53381
|
+
slug?: string;
|
|
53238
53382
|
/**
|
|
53239
53383
|
* UUID of the user to get related customers for.
|
|
53240
53384
|
*/
|
|
@@ -69728,6 +69872,10 @@ export type ProposalProposalsListData = {
|
|
|
69728
69872
|
page_size?: number;
|
|
69729
69873
|
round?: string;
|
|
69730
69874
|
round_uuid?: string;
|
|
69875
|
+
/**
|
|
69876
|
+
* Slug
|
|
69877
|
+
*/
|
|
69878
|
+
slug?: string;
|
|
69731
69879
|
state?: Array<ProposalStates>;
|
|
69732
69880
|
};
|
|
69733
69881
|
url: '/api/proposal-proposals/';
|
|
@@ -69761,6 +69909,10 @@ export type ProposalProposalsCountData = {
|
|
|
69761
69909
|
page_size?: number;
|
|
69762
69910
|
round?: string;
|
|
69763
69911
|
round_uuid?: string;
|
|
69912
|
+
/**
|
|
69913
|
+
* Slug
|
|
69914
|
+
*/
|
|
69915
|
+
slug?: string;
|
|
69764
69916
|
state?: Array<ProposalStates>;
|
|
69765
69917
|
};
|
|
69766
69918
|
url: '/api/proposal-proposals/';
|
|
@@ -70268,6 +70420,10 @@ export type ProposalProtectedCallsListData = {
|
|
|
70268
70420
|
* Number of results to return per page.
|
|
70269
70421
|
*/
|
|
70270
70422
|
page_size?: number;
|
|
70423
|
+
/**
|
|
70424
|
+
* Slug
|
|
70425
|
+
*/
|
|
70426
|
+
slug?: string;
|
|
70271
70427
|
state?: Array<CallStates>;
|
|
70272
70428
|
};
|
|
70273
70429
|
url: '/api/proposal-protected-calls/';
|
|
@@ -70301,6 +70457,10 @@ export type ProposalProtectedCallsCountData = {
|
|
|
70301
70457
|
* Number of results to return per page.
|
|
70302
70458
|
*/
|
|
70303
70459
|
page_size?: number;
|
|
70460
|
+
/**
|
|
70461
|
+
* Slug
|
|
70462
|
+
*/
|
|
70463
|
+
slug?: string;
|
|
70304
70464
|
state?: Array<CallStates>;
|
|
70305
70465
|
};
|
|
70306
70466
|
url: '/api/proposal-protected-calls/';
|
|
@@ -70546,6 +70706,10 @@ export type ProposalProtectedCallsConflictsListData = {
|
|
|
70546
70706
|
* Number of results to return per page.
|
|
70547
70707
|
*/
|
|
70548
70708
|
page_size?: number;
|
|
70709
|
+
/**
|
|
70710
|
+
* Slug
|
|
70711
|
+
*/
|
|
70712
|
+
slug?: string;
|
|
70549
70713
|
state?: Array<CallStates>;
|
|
70550
70714
|
};
|
|
70551
70715
|
url: '/api/proposal-protected-calls/{uuid}/conflicts/';
|
|
@@ -70865,6 +71029,10 @@ export type ProposalProtectedCallsProposalsComplianceAnswersListData = {
|
|
|
70865
71029
|
* Number of results to return per page.
|
|
70866
71030
|
*/
|
|
70867
71031
|
page_size?: number;
|
|
71032
|
+
/**
|
|
71033
|
+
* Slug
|
|
71034
|
+
*/
|
|
71035
|
+
slug?: string;
|
|
70868
71036
|
state?: Array<CallStates>;
|
|
70869
71037
|
};
|
|
70870
71038
|
url: '/api/proposal-protected-calls/{uuid}/proposals/{proposal_uuid}/compliance-answers/';
|
|
@@ -70900,6 +71068,10 @@ export type ProposalProtectedCallsProposedAssignmentsListData = {
|
|
|
70900
71068
|
* Number of results to return per page.
|
|
70901
71069
|
*/
|
|
70902
71070
|
page_size?: number;
|
|
71071
|
+
/**
|
|
71072
|
+
* Slug
|
|
71073
|
+
*/
|
|
71074
|
+
slug?: string;
|
|
70903
71075
|
state?: Array<CallStates>;
|
|
70904
71076
|
};
|
|
70905
71077
|
url: '/api/proposal-protected-calls/{uuid}/proposed-assignments/';
|
|
@@ -71058,6 +71230,10 @@ export type ProposalProtectedCallsInviteReviewersData = {
|
|
|
71058
71230
|
* Number of results to return per page.
|
|
71059
71231
|
*/
|
|
71060
71232
|
page_size?: number;
|
|
71233
|
+
/**
|
|
71234
|
+
* Slug
|
|
71235
|
+
*/
|
|
71236
|
+
slug?: string;
|
|
71061
71237
|
state?: Array<CallStates>;
|
|
71062
71238
|
};
|
|
71063
71239
|
url: '/api/proposal-protected-calls/{uuid}/reviewer-pool/';
|
|
@@ -71218,6 +71394,10 @@ export type ProposalProtectedCallsSuggestionsListData = {
|
|
|
71218
71394
|
* Number of results to return per page.
|
|
71219
71395
|
*/
|
|
71220
71396
|
page_size?: number;
|
|
71397
|
+
/**
|
|
71398
|
+
* Slug
|
|
71399
|
+
*/
|
|
71400
|
+
slug?: string;
|
|
71221
71401
|
state?: Array<CallStates>;
|
|
71222
71402
|
};
|
|
71223
71403
|
url: '/api/proposal-protected-calls/{uuid}/suggestions/';
|
|
@@ -71294,6 +71474,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
|
|
|
71294
71474
|
* Number of results to return per page.
|
|
71295
71475
|
*/
|
|
71296
71476
|
page_size?: number;
|
|
71477
|
+
/**
|
|
71478
|
+
* Slug
|
|
71479
|
+
*/
|
|
71480
|
+
slug?: string;
|
|
71297
71481
|
state?: Array<CallStates>;
|
|
71298
71482
|
};
|
|
71299
71483
|
url: '/api/proposal-protected-calls/available_compliance_checklists/';
|
|
@@ -71334,6 +71518,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsCountData = {
|
|
|
71334
71518
|
* Number of results to return per page.
|
|
71335
71519
|
*/
|
|
71336
71520
|
page_size?: number;
|
|
71521
|
+
/**
|
|
71522
|
+
* Slug
|
|
71523
|
+
*/
|
|
71524
|
+
slug?: string;
|
|
71337
71525
|
state?: Array<CallStates>;
|
|
71338
71526
|
};
|
|
71339
71527
|
url: '/api/proposal-protected-calls/available_compliance_checklists/';
|
|
@@ -71370,6 +71558,10 @@ export type ProposalPublicCallsListData = {
|
|
|
71370
71558
|
* Number of results to return per page.
|
|
71371
71559
|
*/
|
|
71372
71560
|
page_size?: number;
|
|
71561
|
+
/**
|
|
71562
|
+
* Slug
|
|
71563
|
+
*/
|
|
71564
|
+
slug?: string;
|
|
71373
71565
|
state?: Array<CallStates>;
|
|
71374
71566
|
};
|
|
71375
71567
|
url: '/api/proposal-public-calls/';
|
|
@@ -71403,6 +71595,10 @@ export type ProposalPublicCallsCountData = {
|
|
|
71403
71595
|
* Number of results to return per page.
|
|
71404
71596
|
*/
|
|
71405
71597
|
page_size?: number;
|
|
71598
|
+
/**
|
|
71599
|
+
* Slug
|
|
71600
|
+
*/
|
|
71601
|
+
slug?: string;
|
|
71406
71602
|
state?: Array<CallStates>;
|
|
71407
71603
|
};
|
|
71408
71604
|
url: '/api/proposal-public-calls/';
|