waldur-js-client 8.0.10-dev.14 → 8.0.10-dev.15
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/index.d.ts +72 -2
- package/dist/index.js +71 -1
- package/dist/sdk.gen.d.ts +197 -1
- package/dist/sdk.gen.js +441 -0
- package/dist/types.gen.d.ts +2291 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -37651,6 +37651,69 @@ export type CallManagingOrganisationsListUsersListResponses = {
|
|
|
37651
37651
|
200: Array<UserRoleDetails>;
|
|
37652
37652
|
};
|
|
37653
37653
|
export type CallManagingOrganisationsListUsersListResponse = CallManagingOrganisationsListUsersListResponses[keyof CallManagingOrganisationsListUsersListResponses];
|
|
37654
|
+
export type CallManagingOrganisationsListUsersCountData = {
|
|
37655
|
+
body?: never;
|
|
37656
|
+
path: {
|
|
37657
|
+
uuid: string;
|
|
37658
|
+
};
|
|
37659
|
+
query?: {
|
|
37660
|
+
/**
|
|
37661
|
+
* Fields to include in response
|
|
37662
|
+
*/
|
|
37663
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
37664
|
+
/**
|
|
37665
|
+
* User full name
|
|
37666
|
+
*/
|
|
37667
|
+
full_name?: string;
|
|
37668
|
+
/**
|
|
37669
|
+
* User native name
|
|
37670
|
+
*/
|
|
37671
|
+
native_name?: string;
|
|
37672
|
+
/**
|
|
37673
|
+
* Ordering fields
|
|
37674
|
+
*/
|
|
37675
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
37676
|
+
/**
|
|
37677
|
+
* A page number within the paginated result set.
|
|
37678
|
+
*/
|
|
37679
|
+
page?: number;
|
|
37680
|
+
/**
|
|
37681
|
+
* Number of results to return per page.
|
|
37682
|
+
*/
|
|
37683
|
+
page_size?: number;
|
|
37684
|
+
/**
|
|
37685
|
+
* Role UUID or name
|
|
37686
|
+
*/
|
|
37687
|
+
role?: string;
|
|
37688
|
+
/**
|
|
37689
|
+
* Search string for user
|
|
37690
|
+
*/
|
|
37691
|
+
search_string?: string;
|
|
37692
|
+
/**
|
|
37693
|
+
* User UUID
|
|
37694
|
+
*/
|
|
37695
|
+
user?: string;
|
|
37696
|
+
/**
|
|
37697
|
+
* User slug
|
|
37698
|
+
*/
|
|
37699
|
+
user_slug?: string;
|
|
37700
|
+
/**
|
|
37701
|
+
* User URL
|
|
37702
|
+
*/
|
|
37703
|
+
user_url?: string;
|
|
37704
|
+
/**
|
|
37705
|
+
* User username
|
|
37706
|
+
*/
|
|
37707
|
+
username?: string;
|
|
37708
|
+
};
|
|
37709
|
+
url: '/api/call-managing-organisations/{uuid}/list_users/';
|
|
37710
|
+
};
|
|
37711
|
+
export type CallManagingOrganisationsListUsersCountResponses = {
|
|
37712
|
+
/**
|
|
37713
|
+
* No response body
|
|
37714
|
+
*/
|
|
37715
|
+
200: unknown;
|
|
37716
|
+
};
|
|
37654
37717
|
export type CallManagingOrganisationsStatsRetrieveData = {
|
|
37655
37718
|
body?: never;
|
|
37656
37719
|
path: {
|
|
@@ -40257,6 +40320,32 @@ export type CustomersProjectMetadataComplianceDetailsListResponses = {
|
|
|
40257
40320
|
200: Array<ProjectDetailsResponse>;
|
|
40258
40321
|
};
|
|
40259
40322
|
export type CustomersProjectMetadataComplianceDetailsListResponse = CustomersProjectMetadataComplianceDetailsListResponses[keyof CustomersProjectMetadataComplianceDetailsListResponses];
|
|
40323
|
+
export type CustomersProjectMetadataComplianceDetailsCountData = {
|
|
40324
|
+
body?: never;
|
|
40325
|
+
path: {
|
|
40326
|
+
/**
|
|
40327
|
+
* UUID of the customer
|
|
40328
|
+
*/
|
|
40329
|
+
customer_uuid: string;
|
|
40330
|
+
};
|
|
40331
|
+
query?: {
|
|
40332
|
+
/**
|
|
40333
|
+
* A page number within the paginated result set.
|
|
40334
|
+
*/
|
|
40335
|
+
page?: number;
|
|
40336
|
+
/**
|
|
40337
|
+
* Number of results to return per page.
|
|
40338
|
+
*/
|
|
40339
|
+
page_size?: number;
|
|
40340
|
+
};
|
|
40341
|
+
url: '/api/customers/{customer_uuid}/project-metadata-compliance-details/';
|
|
40342
|
+
};
|
|
40343
|
+
export type CustomersProjectMetadataComplianceDetailsCountResponses = {
|
|
40344
|
+
/**
|
|
40345
|
+
* No response body
|
|
40346
|
+
*/
|
|
40347
|
+
200: unknown;
|
|
40348
|
+
};
|
|
40260
40349
|
export type CustomersProjectMetadataComplianceOverviewListData = {
|
|
40261
40350
|
body?: never;
|
|
40262
40351
|
path: {
|
|
@@ -40281,6 +40370,32 @@ export type CustomersProjectMetadataComplianceOverviewListResponses = {
|
|
|
40281
40370
|
200: Array<ComplianceOverview>;
|
|
40282
40371
|
};
|
|
40283
40372
|
export type CustomersProjectMetadataComplianceOverviewListResponse = CustomersProjectMetadataComplianceOverviewListResponses[keyof CustomersProjectMetadataComplianceOverviewListResponses];
|
|
40373
|
+
export type CustomersProjectMetadataComplianceOverviewCountData = {
|
|
40374
|
+
body?: never;
|
|
40375
|
+
path: {
|
|
40376
|
+
/**
|
|
40377
|
+
* UUID of the customer
|
|
40378
|
+
*/
|
|
40379
|
+
customer_uuid: string;
|
|
40380
|
+
};
|
|
40381
|
+
query?: {
|
|
40382
|
+
/**
|
|
40383
|
+
* A page number within the paginated result set.
|
|
40384
|
+
*/
|
|
40385
|
+
page?: number;
|
|
40386
|
+
/**
|
|
40387
|
+
* Number of results to return per page.
|
|
40388
|
+
*/
|
|
40389
|
+
page_size?: number;
|
|
40390
|
+
};
|
|
40391
|
+
url: '/api/customers/{customer_uuid}/project-metadata-compliance-overview/';
|
|
40392
|
+
};
|
|
40393
|
+
export type CustomersProjectMetadataComplianceOverviewCountResponses = {
|
|
40394
|
+
/**
|
|
40395
|
+
* No response body
|
|
40396
|
+
*/
|
|
40397
|
+
200: unknown;
|
|
40398
|
+
};
|
|
40284
40399
|
export type CustomersProjectMetadataComplianceProjectsListData = {
|
|
40285
40400
|
body?: never;
|
|
40286
40401
|
path: {
|
|
@@ -40305,6 +40420,32 @@ export type CustomersProjectMetadataComplianceProjectsListResponses = {
|
|
|
40305
40420
|
200: Array<ProjectAnswer>;
|
|
40306
40421
|
};
|
|
40307
40422
|
export type CustomersProjectMetadataComplianceProjectsListResponse = CustomersProjectMetadataComplianceProjectsListResponses[keyof CustomersProjectMetadataComplianceProjectsListResponses];
|
|
40423
|
+
export type CustomersProjectMetadataComplianceProjectsCountData = {
|
|
40424
|
+
body?: never;
|
|
40425
|
+
path: {
|
|
40426
|
+
/**
|
|
40427
|
+
* UUID of the customer
|
|
40428
|
+
*/
|
|
40429
|
+
customer_uuid: string;
|
|
40430
|
+
};
|
|
40431
|
+
query?: {
|
|
40432
|
+
/**
|
|
40433
|
+
* A page number within the paginated result set.
|
|
40434
|
+
*/
|
|
40435
|
+
page?: number;
|
|
40436
|
+
/**
|
|
40437
|
+
* Number of results to return per page.
|
|
40438
|
+
*/
|
|
40439
|
+
page_size?: number;
|
|
40440
|
+
};
|
|
40441
|
+
url: '/api/customers/{customer_uuid}/project-metadata-compliance-projects/';
|
|
40442
|
+
};
|
|
40443
|
+
export type CustomersProjectMetadataComplianceProjectsCountResponses = {
|
|
40444
|
+
/**
|
|
40445
|
+
* No response body
|
|
40446
|
+
*/
|
|
40447
|
+
200: unknown;
|
|
40448
|
+
};
|
|
40308
40449
|
export type CustomersProjectMetadataQuestionAnswersListData = {
|
|
40309
40450
|
body?: never;
|
|
40310
40451
|
path: {
|
|
@@ -40329,6 +40470,32 @@ export type CustomersProjectMetadataQuestionAnswersListResponses = {
|
|
|
40329
40470
|
200: Array<QuestionAnswer>;
|
|
40330
40471
|
};
|
|
40331
40472
|
export type CustomersProjectMetadataQuestionAnswersListResponse = CustomersProjectMetadataQuestionAnswersListResponses[keyof CustomersProjectMetadataQuestionAnswersListResponses];
|
|
40473
|
+
export type CustomersProjectMetadataQuestionAnswersCountData = {
|
|
40474
|
+
body?: never;
|
|
40475
|
+
path: {
|
|
40476
|
+
/**
|
|
40477
|
+
* UUID of the customer
|
|
40478
|
+
*/
|
|
40479
|
+
customer_uuid: string;
|
|
40480
|
+
};
|
|
40481
|
+
query?: {
|
|
40482
|
+
/**
|
|
40483
|
+
* A page number within the paginated result set.
|
|
40484
|
+
*/
|
|
40485
|
+
page?: number;
|
|
40486
|
+
/**
|
|
40487
|
+
* Number of results to return per page.
|
|
40488
|
+
*/
|
|
40489
|
+
page_size?: number;
|
|
40490
|
+
};
|
|
40491
|
+
url: '/api/customers/{customer_uuid}/project-metadata-question-answers/';
|
|
40492
|
+
};
|
|
40493
|
+
export type CustomersProjectMetadataQuestionAnswersCountResponses = {
|
|
40494
|
+
/**
|
|
40495
|
+
* No response body
|
|
40496
|
+
*/
|
|
40497
|
+
200: unknown;
|
|
40498
|
+
};
|
|
40332
40499
|
export type CustomersUsersListData = {
|
|
40333
40500
|
body?: never;
|
|
40334
40501
|
path: {
|
|
@@ -40414,6 +40581,92 @@ export type CustomersUsersListResponses = {
|
|
|
40414
40581
|
200: Array<CustomerUser>;
|
|
40415
40582
|
};
|
|
40416
40583
|
export type CustomersUsersListResponse = CustomersUsersListResponses[keyof CustomersUsersListResponses];
|
|
40584
|
+
export type CustomersUsersCountData = {
|
|
40585
|
+
body?: never;
|
|
40586
|
+
path: {
|
|
40587
|
+
/**
|
|
40588
|
+
* UUID of the customer
|
|
40589
|
+
*/
|
|
40590
|
+
customer_uuid: string;
|
|
40591
|
+
};
|
|
40592
|
+
query?: {
|
|
40593
|
+
/**
|
|
40594
|
+
* Agreement date after
|
|
40595
|
+
*/
|
|
40596
|
+
agreement_date?: string;
|
|
40597
|
+
civil_number?: string;
|
|
40598
|
+
/**
|
|
40599
|
+
* Date joined after
|
|
40600
|
+
*/
|
|
40601
|
+
date_joined?: string;
|
|
40602
|
+
description?: string;
|
|
40603
|
+
/**
|
|
40604
|
+
* Email
|
|
40605
|
+
*/
|
|
40606
|
+
email?: string;
|
|
40607
|
+
/**
|
|
40608
|
+
* Full name
|
|
40609
|
+
*/
|
|
40610
|
+
full_name?: string;
|
|
40611
|
+
/**
|
|
40612
|
+
* Is active
|
|
40613
|
+
*/
|
|
40614
|
+
is_active?: boolean;
|
|
40615
|
+
/**
|
|
40616
|
+
* Job title
|
|
40617
|
+
*/
|
|
40618
|
+
job_title?: string;
|
|
40619
|
+
/**
|
|
40620
|
+
* Date modified after
|
|
40621
|
+
*/
|
|
40622
|
+
modified?: string;
|
|
40623
|
+
/**
|
|
40624
|
+
* Native name
|
|
40625
|
+
*/
|
|
40626
|
+
native_name?: string;
|
|
40627
|
+
/**
|
|
40628
|
+
* Ordering. Sort by a combination of first name, last name, and username.
|
|
40629
|
+
*/
|
|
40630
|
+
o?: CustomerUserOEnum;
|
|
40631
|
+
/**
|
|
40632
|
+
* Organization
|
|
40633
|
+
*/
|
|
40634
|
+
organization?: string;
|
|
40635
|
+
/**
|
|
40636
|
+
* Filter by one or more organization roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
40637
|
+
*/
|
|
40638
|
+
organization_role?: Array<'CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | string>;
|
|
40639
|
+
/**
|
|
40640
|
+
* A page number within the paginated result set.
|
|
40641
|
+
*/
|
|
40642
|
+
page?: number;
|
|
40643
|
+
/**
|
|
40644
|
+
* Number of results to return per page.
|
|
40645
|
+
*/
|
|
40646
|
+
page_size?: number;
|
|
40647
|
+
phone_number?: string;
|
|
40648
|
+
/**
|
|
40649
|
+
* Filter by one or more project roles. Select a standard role or provide a custom role string. Can be specified multiple times.
|
|
40650
|
+
*/
|
|
40651
|
+
project_role?: Array<'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | string>;
|
|
40652
|
+
registration_method?: string;
|
|
40653
|
+
/**
|
|
40654
|
+
* User keyword
|
|
40655
|
+
*/
|
|
40656
|
+
user_keyword?: string;
|
|
40657
|
+
/**
|
|
40658
|
+
* Username
|
|
40659
|
+
*/
|
|
40660
|
+
username?: string;
|
|
40661
|
+
};
|
|
40662
|
+
url: '/api/customers/{customer_uuid}/users/';
|
|
40663
|
+
};
|
|
40664
|
+
export type CustomersUsersCountResponses = {
|
|
40665
|
+
/**
|
|
40666
|
+
* No response body
|
|
40667
|
+
*/
|
|
40668
|
+
200: unknown;
|
|
40669
|
+
};
|
|
40417
40670
|
export type CustomersDestroyData = {
|
|
40418
40671
|
body?: never;
|
|
40419
40672
|
path: {
|
|
@@ -40707,6 +40960,69 @@ export type CustomersListUsersListResponses = {
|
|
|
40707
40960
|
200: Array<UserRoleDetails>;
|
|
40708
40961
|
};
|
|
40709
40962
|
export type CustomersListUsersListResponse = CustomersListUsersListResponses[keyof CustomersListUsersListResponses];
|
|
40963
|
+
export type CustomersListUsersCountData = {
|
|
40964
|
+
body?: never;
|
|
40965
|
+
path: {
|
|
40966
|
+
uuid: string;
|
|
40967
|
+
};
|
|
40968
|
+
query?: {
|
|
40969
|
+
/**
|
|
40970
|
+
* Fields to include in response
|
|
40971
|
+
*/
|
|
40972
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
40973
|
+
/**
|
|
40974
|
+
* User full name
|
|
40975
|
+
*/
|
|
40976
|
+
full_name?: string;
|
|
40977
|
+
/**
|
|
40978
|
+
* User native name
|
|
40979
|
+
*/
|
|
40980
|
+
native_name?: string;
|
|
40981
|
+
/**
|
|
40982
|
+
* Ordering fields
|
|
40983
|
+
*/
|
|
40984
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
40985
|
+
/**
|
|
40986
|
+
* A page number within the paginated result set.
|
|
40987
|
+
*/
|
|
40988
|
+
page?: number;
|
|
40989
|
+
/**
|
|
40990
|
+
* Number of results to return per page.
|
|
40991
|
+
*/
|
|
40992
|
+
page_size?: number;
|
|
40993
|
+
/**
|
|
40994
|
+
* Role UUID or name
|
|
40995
|
+
*/
|
|
40996
|
+
role?: string;
|
|
40997
|
+
/**
|
|
40998
|
+
* Search string for user
|
|
40999
|
+
*/
|
|
41000
|
+
search_string?: string;
|
|
41001
|
+
/**
|
|
41002
|
+
* User UUID
|
|
41003
|
+
*/
|
|
41004
|
+
user?: string;
|
|
41005
|
+
/**
|
|
41006
|
+
* User slug
|
|
41007
|
+
*/
|
|
41008
|
+
user_slug?: string;
|
|
41009
|
+
/**
|
|
41010
|
+
* User URL
|
|
41011
|
+
*/
|
|
41012
|
+
user_url?: string;
|
|
41013
|
+
/**
|
|
41014
|
+
* User username
|
|
41015
|
+
*/
|
|
41016
|
+
username?: string;
|
|
41017
|
+
};
|
|
41018
|
+
url: '/api/customers/{uuid}/list_users/';
|
|
41019
|
+
};
|
|
41020
|
+
export type CustomersListUsersCountResponses = {
|
|
41021
|
+
/**
|
|
41022
|
+
* No response body
|
|
41023
|
+
*/
|
|
41024
|
+
200: unknown;
|
|
41025
|
+
};
|
|
40710
41026
|
export type CustomersProjectDigestConfigRetrieveData = {
|
|
40711
41027
|
body?: never;
|
|
40712
41028
|
path: {
|
|
@@ -54202,6 +54518,69 @@ export type MarketplaceProviderOfferingsListUsersListResponses = {
|
|
|
54202
54518
|
200: Array<UserRoleDetails>;
|
|
54203
54519
|
};
|
|
54204
54520
|
export type MarketplaceProviderOfferingsListUsersListResponse = MarketplaceProviderOfferingsListUsersListResponses[keyof MarketplaceProviderOfferingsListUsersListResponses];
|
|
54521
|
+
export type MarketplaceProviderOfferingsListUsersCountData = {
|
|
54522
|
+
body?: never;
|
|
54523
|
+
path: {
|
|
54524
|
+
uuid: string;
|
|
54525
|
+
};
|
|
54526
|
+
query?: {
|
|
54527
|
+
/**
|
|
54528
|
+
* Fields to include in response
|
|
54529
|
+
*/
|
|
54530
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
54531
|
+
/**
|
|
54532
|
+
* User full name
|
|
54533
|
+
*/
|
|
54534
|
+
full_name?: string;
|
|
54535
|
+
/**
|
|
54536
|
+
* User native name
|
|
54537
|
+
*/
|
|
54538
|
+
native_name?: string;
|
|
54539
|
+
/**
|
|
54540
|
+
* Ordering fields
|
|
54541
|
+
*/
|
|
54542
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
54543
|
+
/**
|
|
54544
|
+
* A page number within the paginated result set.
|
|
54545
|
+
*/
|
|
54546
|
+
page?: number;
|
|
54547
|
+
/**
|
|
54548
|
+
* Number of results to return per page.
|
|
54549
|
+
*/
|
|
54550
|
+
page_size?: number;
|
|
54551
|
+
/**
|
|
54552
|
+
* Role UUID or name
|
|
54553
|
+
*/
|
|
54554
|
+
role?: string;
|
|
54555
|
+
/**
|
|
54556
|
+
* Search string for user
|
|
54557
|
+
*/
|
|
54558
|
+
search_string?: string;
|
|
54559
|
+
/**
|
|
54560
|
+
* User UUID
|
|
54561
|
+
*/
|
|
54562
|
+
user?: string;
|
|
54563
|
+
/**
|
|
54564
|
+
* User slug
|
|
54565
|
+
*/
|
|
54566
|
+
user_slug?: string;
|
|
54567
|
+
/**
|
|
54568
|
+
* User URL
|
|
54569
|
+
*/
|
|
54570
|
+
user_url?: string;
|
|
54571
|
+
/**
|
|
54572
|
+
* User username
|
|
54573
|
+
*/
|
|
54574
|
+
username?: string;
|
|
54575
|
+
};
|
|
54576
|
+
url: '/api/marketplace-provider-offerings/{uuid}/list_users/';
|
|
54577
|
+
};
|
|
54578
|
+
export type MarketplaceProviderOfferingsListUsersCountResponses = {
|
|
54579
|
+
/**
|
|
54580
|
+
* No response body
|
|
54581
|
+
*/
|
|
54582
|
+
200: unknown;
|
|
54583
|
+
};
|
|
54205
54584
|
export type MarketplaceProviderOfferingsMakeAvailableData = {
|
|
54206
54585
|
body?: never;
|
|
54207
54586
|
path: {
|
|
@@ -55360,6 +55739,69 @@ export type MarketplaceProviderResourceProjectsListUsersListResponses = {
|
|
|
55360
55739
|
200: Array<UserRoleDetails>;
|
|
55361
55740
|
};
|
|
55362
55741
|
export type MarketplaceProviderResourceProjectsListUsersListResponse = MarketplaceProviderResourceProjectsListUsersListResponses[keyof MarketplaceProviderResourceProjectsListUsersListResponses];
|
|
55742
|
+
export type MarketplaceProviderResourceProjectsListUsersCountData = {
|
|
55743
|
+
body?: never;
|
|
55744
|
+
path: {
|
|
55745
|
+
uuid: string;
|
|
55746
|
+
};
|
|
55747
|
+
query?: {
|
|
55748
|
+
/**
|
|
55749
|
+
* Fields to include in response
|
|
55750
|
+
*/
|
|
55751
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
55752
|
+
/**
|
|
55753
|
+
* User full name
|
|
55754
|
+
*/
|
|
55755
|
+
full_name?: string;
|
|
55756
|
+
/**
|
|
55757
|
+
* User native name
|
|
55758
|
+
*/
|
|
55759
|
+
native_name?: string;
|
|
55760
|
+
/**
|
|
55761
|
+
* Ordering fields
|
|
55762
|
+
*/
|
|
55763
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
55764
|
+
/**
|
|
55765
|
+
* A page number within the paginated result set.
|
|
55766
|
+
*/
|
|
55767
|
+
page?: number;
|
|
55768
|
+
/**
|
|
55769
|
+
* Number of results to return per page.
|
|
55770
|
+
*/
|
|
55771
|
+
page_size?: number;
|
|
55772
|
+
/**
|
|
55773
|
+
* Role UUID or name
|
|
55774
|
+
*/
|
|
55775
|
+
role?: string;
|
|
55776
|
+
/**
|
|
55777
|
+
* Search string for user
|
|
55778
|
+
*/
|
|
55779
|
+
search_string?: string;
|
|
55780
|
+
/**
|
|
55781
|
+
* User UUID
|
|
55782
|
+
*/
|
|
55783
|
+
user?: string;
|
|
55784
|
+
/**
|
|
55785
|
+
* User slug
|
|
55786
|
+
*/
|
|
55787
|
+
user_slug?: string;
|
|
55788
|
+
/**
|
|
55789
|
+
* User URL
|
|
55790
|
+
*/
|
|
55791
|
+
user_url?: string;
|
|
55792
|
+
/**
|
|
55793
|
+
* User username
|
|
55794
|
+
*/
|
|
55795
|
+
username?: string;
|
|
55796
|
+
};
|
|
55797
|
+
url: '/api/marketplace-provider-resource-projects/{uuid}/list_users/';
|
|
55798
|
+
};
|
|
55799
|
+
export type MarketplaceProviderResourceProjectsListUsersCountResponses = {
|
|
55800
|
+
/**
|
|
55801
|
+
* No response body
|
|
55802
|
+
*/
|
|
55803
|
+
200: unknown;
|
|
55804
|
+
};
|
|
55363
55805
|
export type MarketplaceProviderResourceProjectsSetBackendIdData = {
|
|
55364
55806
|
body: ResourceProjectBackendIdRequest;
|
|
55365
55807
|
path: {
|
|
@@ -56237,6 +56679,69 @@ export type MarketplaceProviderResourcesListUsersListResponses = {
|
|
|
56237
56679
|
200: Array<UserRoleDetails>;
|
|
56238
56680
|
};
|
|
56239
56681
|
export type MarketplaceProviderResourcesListUsersListResponse = MarketplaceProviderResourcesListUsersListResponses[keyof MarketplaceProviderResourcesListUsersListResponses];
|
|
56682
|
+
export type MarketplaceProviderResourcesListUsersCountData = {
|
|
56683
|
+
body?: never;
|
|
56684
|
+
path: {
|
|
56685
|
+
uuid: string;
|
|
56686
|
+
};
|
|
56687
|
+
query?: {
|
|
56688
|
+
/**
|
|
56689
|
+
* Fields to include in response
|
|
56690
|
+
*/
|
|
56691
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
56692
|
+
/**
|
|
56693
|
+
* User full name
|
|
56694
|
+
*/
|
|
56695
|
+
full_name?: string;
|
|
56696
|
+
/**
|
|
56697
|
+
* User native name
|
|
56698
|
+
*/
|
|
56699
|
+
native_name?: string;
|
|
56700
|
+
/**
|
|
56701
|
+
* Ordering fields
|
|
56702
|
+
*/
|
|
56703
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
56704
|
+
/**
|
|
56705
|
+
* A page number within the paginated result set.
|
|
56706
|
+
*/
|
|
56707
|
+
page?: number;
|
|
56708
|
+
/**
|
|
56709
|
+
* Number of results to return per page.
|
|
56710
|
+
*/
|
|
56711
|
+
page_size?: number;
|
|
56712
|
+
/**
|
|
56713
|
+
* Role UUID or name
|
|
56714
|
+
*/
|
|
56715
|
+
role?: string;
|
|
56716
|
+
/**
|
|
56717
|
+
* Search string for user
|
|
56718
|
+
*/
|
|
56719
|
+
search_string?: string;
|
|
56720
|
+
/**
|
|
56721
|
+
* User UUID
|
|
56722
|
+
*/
|
|
56723
|
+
user?: string;
|
|
56724
|
+
/**
|
|
56725
|
+
* User slug
|
|
56726
|
+
*/
|
|
56727
|
+
user_slug?: string;
|
|
56728
|
+
/**
|
|
56729
|
+
* User URL
|
|
56730
|
+
*/
|
|
56731
|
+
user_url?: string;
|
|
56732
|
+
/**
|
|
56733
|
+
* User username
|
|
56734
|
+
*/
|
|
56735
|
+
username?: string;
|
|
56736
|
+
};
|
|
56737
|
+
url: '/api/marketplace-provider-resources/{uuid}/list_users/';
|
|
56738
|
+
};
|
|
56739
|
+
export type MarketplaceProviderResourcesListUsersCountResponses = {
|
|
56740
|
+
/**
|
|
56741
|
+
* No response body
|
|
56742
|
+
*/
|
|
56743
|
+
200: unknown;
|
|
56744
|
+
};
|
|
56240
56745
|
export type MarketplaceProviderResourcesMoveResourceData = {
|
|
56241
56746
|
body: MoveResourceRequest;
|
|
56242
56747
|
path: {
|
|
@@ -57570,6 +58075,69 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
|
|
|
57570
58075
|
200: Array<UserRoleDetails>;
|
|
57571
58076
|
};
|
|
57572
58077
|
export type MarketplaceResourceProjectsListUsersListResponse = MarketplaceResourceProjectsListUsersListResponses[keyof MarketplaceResourceProjectsListUsersListResponses];
|
|
58078
|
+
export type MarketplaceResourceProjectsListUsersCountData = {
|
|
58079
|
+
body?: never;
|
|
58080
|
+
path: {
|
|
58081
|
+
uuid: string;
|
|
58082
|
+
};
|
|
58083
|
+
query?: {
|
|
58084
|
+
/**
|
|
58085
|
+
* Fields to include in response
|
|
58086
|
+
*/
|
|
58087
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
58088
|
+
/**
|
|
58089
|
+
* User full name
|
|
58090
|
+
*/
|
|
58091
|
+
full_name?: string;
|
|
58092
|
+
/**
|
|
58093
|
+
* User native name
|
|
58094
|
+
*/
|
|
58095
|
+
native_name?: string;
|
|
58096
|
+
/**
|
|
58097
|
+
* Ordering fields
|
|
58098
|
+
*/
|
|
58099
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
58100
|
+
/**
|
|
58101
|
+
* A page number within the paginated result set.
|
|
58102
|
+
*/
|
|
58103
|
+
page?: number;
|
|
58104
|
+
/**
|
|
58105
|
+
* Number of results to return per page.
|
|
58106
|
+
*/
|
|
58107
|
+
page_size?: number;
|
|
58108
|
+
/**
|
|
58109
|
+
* Role UUID or name
|
|
58110
|
+
*/
|
|
58111
|
+
role?: string;
|
|
58112
|
+
/**
|
|
58113
|
+
* Search string for user
|
|
58114
|
+
*/
|
|
58115
|
+
search_string?: string;
|
|
58116
|
+
/**
|
|
58117
|
+
* User UUID
|
|
58118
|
+
*/
|
|
58119
|
+
user?: string;
|
|
58120
|
+
/**
|
|
58121
|
+
* User slug
|
|
58122
|
+
*/
|
|
58123
|
+
user_slug?: string;
|
|
58124
|
+
/**
|
|
58125
|
+
* User URL
|
|
58126
|
+
*/
|
|
58127
|
+
user_url?: string;
|
|
58128
|
+
/**
|
|
58129
|
+
* User username
|
|
58130
|
+
*/
|
|
58131
|
+
username?: string;
|
|
58132
|
+
};
|
|
58133
|
+
url: '/api/marketplace-resource-projects/{uuid}/list_users/';
|
|
58134
|
+
};
|
|
58135
|
+
export type MarketplaceResourceProjectsListUsersCountResponses = {
|
|
58136
|
+
/**
|
|
58137
|
+
* No response body
|
|
58138
|
+
*/
|
|
58139
|
+
200: unknown;
|
|
58140
|
+
};
|
|
57573
58141
|
export type MarketplaceResourceProjectsRecoverData = {
|
|
57574
58142
|
body?: ResourceProjectRecoveryRequest;
|
|
57575
58143
|
path: {
|
|
@@ -58435,6 +59003,69 @@ export type MarketplaceResourcesListUsersListResponses = {
|
|
|
58435
59003
|
200: Array<UserRoleDetails>;
|
|
58436
59004
|
};
|
|
58437
59005
|
export type MarketplaceResourcesListUsersListResponse = MarketplaceResourcesListUsersListResponses[keyof MarketplaceResourcesListUsersListResponses];
|
|
59006
|
+
export type MarketplaceResourcesListUsersCountData = {
|
|
59007
|
+
body?: never;
|
|
59008
|
+
path: {
|
|
59009
|
+
uuid: string;
|
|
59010
|
+
};
|
|
59011
|
+
query?: {
|
|
59012
|
+
/**
|
|
59013
|
+
* Fields to include in response
|
|
59014
|
+
*/
|
|
59015
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
59016
|
+
/**
|
|
59017
|
+
* User full name
|
|
59018
|
+
*/
|
|
59019
|
+
full_name?: string;
|
|
59020
|
+
/**
|
|
59021
|
+
* User native name
|
|
59022
|
+
*/
|
|
59023
|
+
native_name?: string;
|
|
59024
|
+
/**
|
|
59025
|
+
* Ordering fields
|
|
59026
|
+
*/
|
|
59027
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
59028
|
+
/**
|
|
59029
|
+
* A page number within the paginated result set.
|
|
59030
|
+
*/
|
|
59031
|
+
page?: number;
|
|
59032
|
+
/**
|
|
59033
|
+
* Number of results to return per page.
|
|
59034
|
+
*/
|
|
59035
|
+
page_size?: number;
|
|
59036
|
+
/**
|
|
59037
|
+
* Role UUID or name
|
|
59038
|
+
*/
|
|
59039
|
+
role?: string;
|
|
59040
|
+
/**
|
|
59041
|
+
* Search string for user
|
|
59042
|
+
*/
|
|
59043
|
+
search_string?: string;
|
|
59044
|
+
/**
|
|
59045
|
+
* User UUID
|
|
59046
|
+
*/
|
|
59047
|
+
user?: string;
|
|
59048
|
+
/**
|
|
59049
|
+
* User slug
|
|
59050
|
+
*/
|
|
59051
|
+
user_slug?: string;
|
|
59052
|
+
/**
|
|
59053
|
+
* User URL
|
|
59054
|
+
*/
|
|
59055
|
+
user_url?: string;
|
|
59056
|
+
/**
|
|
59057
|
+
* User username
|
|
59058
|
+
*/
|
|
59059
|
+
username?: string;
|
|
59060
|
+
};
|
|
59061
|
+
url: '/api/marketplace-resources/{uuid}/list_users/';
|
|
59062
|
+
};
|
|
59063
|
+
export type MarketplaceResourcesListUsersCountResponses = {
|
|
59064
|
+
/**
|
|
59065
|
+
* No response body
|
|
59066
|
+
*/
|
|
59067
|
+
200: unknown;
|
|
59068
|
+
};
|
|
58438
59069
|
export type MarketplaceResourcesMoveResourceData = {
|
|
58439
59070
|
body: MoveResourceRequest;
|
|
58440
59071
|
path: {
|
|
@@ -59695,6 +60326,20 @@ export type ServiceProviderChecklistsSummaryResponses = {
|
|
|
59695
60326
|
200: Array<ServiceProviderChecklistSummary>;
|
|
59696
60327
|
};
|
|
59697
60328
|
export type ServiceProviderChecklistsSummaryResponse = ServiceProviderChecklistsSummaryResponses[keyof ServiceProviderChecklistsSummaryResponses];
|
|
60329
|
+
export type MarketplaceServiceProvidersComplianceChecklistsSummaryCountData = {
|
|
60330
|
+
body?: never;
|
|
60331
|
+
path: {
|
|
60332
|
+
service_provider_uuid: string;
|
|
60333
|
+
};
|
|
60334
|
+
query?: never;
|
|
60335
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/';
|
|
60336
|
+
};
|
|
60337
|
+
export type MarketplaceServiceProvidersComplianceChecklistsSummaryCountResponses = {
|
|
60338
|
+
/**
|
|
60339
|
+
* No response body
|
|
60340
|
+
*/
|
|
60341
|
+
200: unknown;
|
|
60342
|
+
};
|
|
59698
60343
|
export type ServiceProviderComplianceOverviewData = {
|
|
59699
60344
|
body?: never;
|
|
59700
60345
|
path: {
|
|
@@ -59716,6 +60361,20 @@ export type ServiceProviderComplianceOverviewResponses = {
|
|
|
59716
60361
|
200: Array<ServiceProviderComplianceOverview>;
|
|
59717
60362
|
};
|
|
59718
60363
|
export type ServiceProviderComplianceOverviewResponse = ServiceProviderComplianceOverviewResponses[keyof ServiceProviderComplianceOverviewResponses];
|
|
60364
|
+
export type MarketplaceServiceProvidersComplianceComplianceOverviewCountData = {
|
|
60365
|
+
body?: never;
|
|
60366
|
+
path: {
|
|
60367
|
+
service_provider_uuid: string;
|
|
60368
|
+
};
|
|
60369
|
+
query?: never;
|
|
60370
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/compliance_overview/';
|
|
60371
|
+
};
|
|
60372
|
+
export type MarketplaceServiceProvidersComplianceComplianceOverviewCountResponses = {
|
|
60373
|
+
/**
|
|
60374
|
+
* No response body
|
|
60375
|
+
*/
|
|
60376
|
+
200: unknown;
|
|
60377
|
+
};
|
|
59719
60378
|
export type ServiceProviderOfferingUsersComplianceData = {
|
|
59720
60379
|
body?: never;
|
|
59721
60380
|
path: {
|
|
@@ -59745,6 +60404,20 @@ export type ServiceProviderOfferingUsersComplianceResponses = {
|
|
|
59745
60404
|
200: Array<ServiceProviderOfferingUserCompliance>;
|
|
59746
60405
|
};
|
|
59747
60406
|
export type ServiceProviderOfferingUsersComplianceResponse = ServiceProviderOfferingUsersComplianceResponses[keyof ServiceProviderOfferingUsersComplianceResponses];
|
|
60407
|
+
export type MarketplaceServiceProvidersComplianceOfferingUsersCountData = {
|
|
60408
|
+
body?: never;
|
|
60409
|
+
path: {
|
|
60410
|
+
service_provider_uuid: string;
|
|
60411
|
+
};
|
|
60412
|
+
query?: never;
|
|
60413
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/offering_users/';
|
|
60414
|
+
};
|
|
60415
|
+
export type MarketplaceServiceProvidersComplianceOfferingUsersCountResponses = {
|
|
60416
|
+
/**
|
|
60417
|
+
* No response body
|
|
60418
|
+
*/
|
|
60419
|
+
200: unknown;
|
|
60420
|
+
};
|
|
59748
60421
|
export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
59749
60422
|
body?: never;
|
|
59750
60423
|
path: {
|
|
@@ -59806,6 +60479,69 @@ export type MarketplaceServiceProvidersCourseAccountsListResponses = {
|
|
|
59806
60479
|
200: Array<CourseAccount>;
|
|
59807
60480
|
};
|
|
59808
60481
|
export type MarketplaceServiceProvidersCourseAccountsListResponse = MarketplaceServiceProvidersCourseAccountsListResponses[keyof MarketplaceServiceProvidersCourseAccountsListResponses];
|
|
60482
|
+
export type MarketplaceServiceProvidersCourseAccountsCountData = {
|
|
60483
|
+
body?: never;
|
|
60484
|
+
path: {
|
|
60485
|
+
service_provider_uuid: string;
|
|
60486
|
+
};
|
|
60487
|
+
query?: {
|
|
60488
|
+
/**
|
|
60489
|
+
* Email contains
|
|
60490
|
+
*/
|
|
60491
|
+
email?: string;
|
|
60492
|
+
/**
|
|
60493
|
+
* Ordering
|
|
60494
|
+
*
|
|
60495
|
+
*
|
|
60496
|
+
*/
|
|
60497
|
+
o?: Array<CourseAccountOEnum>;
|
|
60498
|
+
/**
|
|
60499
|
+
* A page number within the paginated result set.
|
|
60500
|
+
*/
|
|
60501
|
+
page?: number;
|
|
60502
|
+
/**
|
|
60503
|
+
* Number of results to return per page.
|
|
60504
|
+
*/
|
|
60505
|
+
page_size?: number;
|
|
60506
|
+
/**
|
|
60507
|
+
* Project end date range
|
|
60508
|
+
*/
|
|
60509
|
+
project_end_date_after?: string;
|
|
60510
|
+
/**
|
|
60511
|
+
* Project end date range
|
|
60512
|
+
*/
|
|
60513
|
+
project_end_date_before?: string;
|
|
60514
|
+
/**
|
|
60515
|
+
* Project start date range
|
|
60516
|
+
*/
|
|
60517
|
+
project_start_date_after?: string;
|
|
60518
|
+
/**
|
|
60519
|
+
* Project start date range
|
|
60520
|
+
*/
|
|
60521
|
+
project_start_date_before?: string;
|
|
60522
|
+
/**
|
|
60523
|
+
* Project UUID
|
|
60524
|
+
*/
|
|
60525
|
+
project_uuid?: string;
|
|
60526
|
+
/**
|
|
60527
|
+
* Course account state
|
|
60528
|
+
*
|
|
60529
|
+
*
|
|
60530
|
+
*/
|
|
60531
|
+
state?: Array<CourseAccountStateEnum>;
|
|
60532
|
+
/**
|
|
60533
|
+
* Username
|
|
60534
|
+
*/
|
|
60535
|
+
username?: string;
|
|
60536
|
+
};
|
|
60537
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/';
|
|
60538
|
+
};
|
|
60539
|
+
export type MarketplaceServiceProvidersCourseAccountsCountResponses = {
|
|
60540
|
+
/**
|
|
60541
|
+
* No response body
|
|
60542
|
+
*/
|
|
60543
|
+
200: unknown;
|
|
60544
|
+
};
|
|
59809
60545
|
export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
59810
60546
|
body?: never;
|
|
59811
60547
|
path: {
|
|
@@ -59935,6 +60671,136 @@ export type MarketplaceServiceProvidersCustomerProjectsListResponses = {
|
|
|
59935
60671
|
200: Array<MarketplaceProviderCustomerProject>;
|
|
59936
60672
|
};
|
|
59937
60673
|
export type MarketplaceServiceProvidersCustomerProjectsListResponse = MarketplaceServiceProvidersCustomerProjectsListResponses[keyof MarketplaceServiceProvidersCustomerProjectsListResponses];
|
|
60674
|
+
export type MarketplaceServiceProvidersCustomerProjectsCountData = {
|
|
60675
|
+
body?: never;
|
|
60676
|
+
path: {
|
|
60677
|
+
service_provider_uuid: string;
|
|
60678
|
+
};
|
|
60679
|
+
query: {
|
|
60680
|
+
/**
|
|
60681
|
+
* Affiliation name
|
|
60682
|
+
*/
|
|
60683
|
+
affiliation_name?: string;
|
|
60684
|
+
/**
|
|
60685
|
+
* Affiliation UUID
|
|
60686
|
+
*/
|
|
60687
|
+
affiliation_uuid?: Array<string>;
|
|
60688
|
+
backend_id?: string;
|
|
60689
|
+
/**
|
|
60690
|
+
* Return a list of projects where current user is admin.
|
|
60691
|
+
*/
|
|
60692
|
+
can_admin?: boolean;
|
|
60693
|
+
/**
|
|
60694
|
+
* Return a list of projects where current user is manager or a customer owner.
|
|
60695
|
+
*/
|
|
60696
|
+
can_manage?: boolean;
|
|
60697
|
+
/**
|
|
60698
|
+
* Conceal finished projects
|
|
60699
|
+
*/
|
|
60700
|
+
conceal_finished_projects?: boolean;
|
|
60701
|
+
/**
|
|
60702
|
+
* Created after
|
|
60703
|
+
*/
|
|
60704
|
+
created?: string;
|
|
60705
|
+
/**
|
|
60706
|
+
* Created before
|
|
60707
|
+
*/
|
|
60708
|
+
created_before?: string;
|
|
60709
|
+
/**
|
|
60710
|
+
* Multiple values may be separated by commas.
|
|
60711
|
+
*/
|
|
60712
|
+
current_user_has_role?: Array<string>;
|
|
60713
|
+
/**
|
|
60714
|
+
* Multiple values may be separated by commas.
|
|
60715
|
+
*/
|
|
60716
|
+
customer?: Array<string>;
|
|
60717
|
+
/**
|
|
60718
|
+
* Customer abbreviation
|
|
60719
|
+
*/
|
|
60720
|
+
customer_abbreviation?: string;
|
|
60721
|
+
/**
|
|
60722
|
+
* Customer name
|
|
60723
|
+
*/
|
|
60724
|
+
customer_name?: string;
|
|
60725
|
+
/**
|
|
60726
|
+
* Customer native name
|
|
60727
|
+
*/
|
|
60728
|
+
customer_native_name?: string;
|
|
60729
|
+
/**
|
|
60730
|
+
* Description
|
|
60731
|
+
*/
|
|
60732
|
+
description?: string;
|
|
60733
|
+
/**
|
|
60734
|
+
* Filter projects that have an affiliation.
|
|
60735
|
+
*/
|
|
60736
|
+
has_affiliation?: boolean;
|
|
60737
|
+
/**
|
|
60738
|
+
* Is removed
|
|
60739
|
+
*/
|
|
60740
|
+
is_removed?: boolean;
|
|
60741
|
+
/**
|
|
60742
|
+
* Modified after
|
|
60743
|
+
*/
|
|
60744
|
+
modified?: string;
|
|
60745
|
+
/**
|
|
60746
|
+
* Modified before
|
|
60747
|
+
*/
|
|
60748
|
+
modified_before?: string;
|
|
60749
|
+
/**
|
|
60750
|
+
* Name
|
|
60751
|
+
*/
|
|
60752
|
+
name?: string;
|
|
60753
|
+
/**
|
|
60754
|
+
* Name (exact)
|
|
60755
|
+
*/
|
|
60756
|
+
name_exact?: string;
|
|
60757
|
+
/**
|
|
60758
|
+
* Ordering
|
|
60759
|
+
*
|
|
60760
|
+
*
|
|
60761
|
+
*/
|
|
60762
|
+
o?: Array<MarketplaceProviderCustomerProjectOEnum>;
|
|
60763
|
+
/**
|
|
60764
|
+
* A page number within the paginated result set.
|
|
60765
|
+
*/
|
|
60766
|
+
page?: number;
|
|
60767
|
+
/**
|
|
60768
|
+
* Number of results to return per page.
|
|
60769
|
+
*/
|
|
60770
|
+
page_size?: number;
|
|
60771
|
+
/**
|
|
60772
|
+
* UUID of the customer to filter projects by.
|
|
60773
|
+
*/
|
|
60774
|
+
project_customer_uuid: string;
|
|
60775
|
+
/**
|
|
60776
|
+
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
60777
|
+
*/
|
|
60778
|
+
query?: string;
|
|
60779
|
+
/**
|
|
60780
|
+
* Science domain UUID
|
|
60781
|
+
*/
|
|
60782
|
+
science_domain_uuid?: string;
|
|
60783
|
+
/**
|
|
60784
|
+
* Science sub-domain UUID
|
|
60785
|
+
*/
|
|
60786
|
+
science_sub_domain_uuid?: string;
|
|
60787
|
+
/**
|
|
60788
|
+
* Slug
|
|
60789
|
+
*/
|
|
60790
|
+
slug?: string;
|
|
60791
|
+
/**
|
|
60792
|
+
* Filter projects where the given user has a role.
|
|
60793
|
+
*/
|
|
60794
|
+
user_uuid_with_active_role?: string;
|
|
60795
|
+
};
|
|
60796
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/';
|
|
60797
|
+
};
|
|
60798
|
+
export type MarketplaceServiceProvidersCustomerProjectsCountResponses = {
|
|
60799
|
+
/**
|
|
60800
|
+
* No response body
|
|
60801
|
+
*/
|
|
60802
|
+
200: unknown;
|
|
60803
|
+
};
|
|
59938
60804
|
export type MarketplaceServiceProvidersCustomersListData = {
|
|
59939
60805
|
body?: never;
|
|
59940
60806
|
path: {
|
|
@@ -60009,6 +60875,81 @@ export type MarketplaceServiceProvidersCustomersListResponses = {
|
|
|
60009
60875
|
200: Array<MarketplaceProviderCustomer>;
|
|
60010
60876
|
};
|
|
60011
60877
|
export type MarketplaceServiceProvidersCustomersListResponse = MarketplaceServiceProvidersCustomersListResponses[keyof MarketplaceServiceProvidersCustomersListResponses];
|
|
60878
|
+
export type MarketplaceServiceProvidersCustomersCountData = {
|
|
60879
|
+
body?: never;
|
|
60880
|
+
path: {
|
|
60881
|
+
service_provider_uuid: string;
|
|
60882
|
+
};
|
|
60883
|
+
query?: {
|
|
60884
|
+
/**
|
|
60885
|
+
* Abbreviation
|
|
60886
|
+
*/
|
|
60887
|
+
abbreviation?: string;
|
|
60888
|
+
agreement_number?: string;
|
|
60889
|
+
archived?: boolean;
|
|
60890
|
+
backend_id?: string;
|
|
60891
|
+
/**
|
|
60892
|
+
* Contact details
|
|
60893
|
+
*/
|
|
60894
|
+
contact_details?: string;
|
|
60895
|
+
/**
|
|
60896
|
+
* Return a list of customers where current user has project create permission.
|
|
60897
|
+
*/
|
|
60898
|
+
current_user_has_project_create_permission?: boolean;
|
|
60899
|
+
/**
|
|
60900
|
+
* Multiple values may be separated by commas.
|
|
60901
|
+
*/
|
|
60902
|
+
current_user_has_role?: Array<string>;
|
|
60903
|
+
/**
|
|
60904
|
+
* Name
|
|
60905
|
+
*/
|
|
60906
|
+
name?: string;
|
|
60907
|
+
/**
|
|
60908
|
+
* Name (exact)
|
|
60909
|
+
*/
|
|
60910
|
+
name_exact?: string;
|
|
60911
|
+
/**
|
|
60912
|
+
* Native name
|
|
60913
|
+
*/
|
|
60914
|
+
native_name?: string;
|
|
60915
|
+
/**
|
|
60916
|
+
* Organization group name
|
|
60917
|
+
*/
|
|
60918
|
+
organization_group_name?: string;
|
|
60919
|
+
/**
|
|
60920
|
+
* Organization group UUID
|
|
60921
|
+
*/
|
|
60922
|
+
organization_group_uuid?: Array<string>;
|
|
60923
|
+
/**
|
|
60924
|
+
* Return a list of customers where current user is owner.
|
|
60925
|
+
*/
|
|
60926
|
+
owned_by_current_user?: boolean;
|
|
60927
|
+
/**
|
|
60928
|
+
* A page number within the paginated result set.
|
|
60929
|
+
*/
|
|
60930
|
+
page?: number;
|
|
60931
|
+
/**
|
|
60932
|
+
* Number of results to return per page.
|
|
60933
|
+
*/
|
|
60934
|
+
page_size?: number;
|
|
60935
|
+
/**
|
|
60936
|
+
* Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
|
|
60937
|
+
*/
|
|
60938
|
+
query?: string;
|
|
60939
|
+
registration_code?: string;
|
|
60940
|
+
/**
|
|
60941
|
+
* Slug
|
|
60942
|
+
*/
|
|
60943
|
+
slug?: string;
|
|
60944
|
+
};
|
|
60945
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/';
|
|
60946
|
+
};
|
|
60947
|
+
export type MarketplaceServiceProvidersCustomersCountResponses = {
|
|
60948
|
+
/**
|
|
60949
|
+
* No response body
|
|
60950
|
+
*/
|
|
60951
|
+
200: unknown;
|
|
60952
|
+
};
|
|
60012
60953
|
export type MarketplaceServiceProvidersKeysListData = {
|
|
60013
60954
|
body?: never;
|
|
60014
60955
|
path: {
|
|
@@ -60069,6 +61010,67 @@ export type MarketplaceServiceProvidersKeysListResponses = {
|
|
|
60069
61010
|
200: Array<SshKey>;
|
|
60070
61011
|
};
|
|
60071
61012
|
export type MarketplaceServiceProvidersKeysListResponse = MarketplaceServiceProvidersKeysListResponses[keyof MarketplaceServiceProvidersKeysListResponses];
|
|
61013
|
+
export type MarketplaceServiceProvidersKeysCountData = {
|
|
61014
|
+
body?: never;
|
|
61015
|
+
path: {
|
|
61016
|
+
service_provider_uuid: string;
|
|
61017
|
+
};
|
|
61018
|
+
query?: {
|
|
61019
|
+
/**
|
|
61020
|
+
* Created after
|
|
61021
|
+
*/
|
|
61022
|
+
created?: string;
|
|
61023
|
+
/**
|
|
61024
|
+
* Created before
|
|
61025
|
+
*/
|
|
61026
|
+
created_before?: string;
|
|
61027
|
+
fingerprint_md5?: string;
|
|
61028
|
+
fingerprint_sha256?: string;
|
|
61029
|
+
fingerprint_sha512?: string;
|
|
61030
|
+
is_shared?: boolean;
|
|
61031
|
+
/**
|
|
61032
|
+
* Modified after
|
|
61033
|
+
*/
|
|
61034
|
+
modified?: string;
|
|
61035
|
+
/**
|
|
61036
|
+
* Modified before
|
|
61037
|
+
*/
|
|
61038
|
+
modified_before?: string;
|
|
61039
|
+
/**
|
|
61040
|
+
* Name
|
|
61041
|
+
*/
|
|
61042
|
+
name?: string;
|
|
61043
|
+
/**
|
|
61044
|
+
* Name (exact)
|
|
61045
|
+
*/
|
|
61046
|
+
name_exact?: string;
|
|
61047
|
+
/**
|
|
61048
|
+
* Ordering
|
|
61049
|
+
*
|
|
61050
|
+
*
|
|
61051
|
+
*/
|
|
61052
|
+
o?: Array<SshKeyOEnum>;
|
|
61053
|
+
/**
|
|
61054
|
+
* A page number within the paginated result set.
|
|
61055
|
+
*/
|
|
61056
|
+
page?: number;
|
|
61057
|
+
/**
|
|
61058
|
+
* Number of results to return per page.
|
|
61059
|
+
*/
|
|
61060
|
+
page_size?: number;
|
|
61061
|
+
/**
|
|
61062
|
+
* User UUID
|
|
61063
|
+
*/
|
|
61064
|
+
user_uuid?: string;
|
|
61065
|
+
};
|
|
61066
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/keys/';
|
|
61067
|
+
};
|
|
61068
|
+
export type MarketplaceServiceProvidersKeysCountResponses = {
|
|
61069
|
+
/**
|
|
61070
|
+
* No response body
|
|
61071
|
+
*/
|
|
61072
|
+
200: unknown;
|
|
61073
|
+
};
|
|
60072
61074
|
export type MarketplaceServiceProvidersOfferingsListData = {
|
|
60073
61075
|
body?: never;
|
|
60074
61076
|
path: {
|
|
@@ -60120,7 +61122,373 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
60120
61122
|
* Description contains
|
|
60121
61123
|
*/
|
|
60122
61124
|
description?: string;
|
|
60123
|
-
field?: Array<ProviderOfferingFieldEnum>;
|
|
61125
|
+
field?: Array<ProviderOfferingFieldEnum>;
|
|
61126
|
+
/**
|
|
61127
|
+
* Has Active Terms of Service
|
|
61128
|
+
*/
|
|
61129
|
+
has_active_terms_of_service?: boolean;
|
|
61130
|
+
/**
|
|
61131
|
+
* Has Terms of Service
|
|
61132
|
+
*/
|
|
61133
|
+
has_terms_of_service?: boolean;
|
|
61134
|
+
/**
|
|
61135
|
+
* Keyword
|
|
61136
|
+
*/
|
|
61137
|
+
keyword?: string;
|
|
61138
|
+
/**
|
|
61139
|
+
* Modified after
|
|
61140
|
+
*/
|
|
61141
|
+
modified?: string;
|
|
61142
|
+
/**
|
|
61143
|
+
* Modified before
|
|
61144
|
+
*/
|
|
61145
|
+
modified_before?: string;
|
|
61146
|
+
/**
|
|
61147
|
+
* Name
|
|
61148
|
+
*/
|
|
61149
|
+
name?: string;
|
|
61150
|
+
/**
|
|
61151
|
+
* Name (exact)
|
|
61152
|
+
*/
|
|
61153
|
+
name_exact?: string;
|
|
61154
|
+
/**
|
|
61155
|
+
* Ordering
|
|
61156
|
+
*
|
|
61157
|
+
*
|
|
61158
|
+
*/
|
|
61159
|
+
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
61160
|
+
/**
|
|
61161
|
+
* Offering group UUID
|
|
61162
|
+
*/
|
|
61163
|
+
offering_group_uuid?: string;
|
|
61164
|
+
/**
|
|
61165
|
+
* Organization group UUID
|
|
61166
|
+
*/
|
|
61167
|
+
organization_group_uuid?: string;
|
|
61168
|
+
/**
|
|
61169
|
+
* A page number within the paginated result set.
|
|
61170
|
+
*/
|
|
61171
|
+
page?: number;
|
|
61172
|
+
/**
|
|
61173
|
+
* Number of results to return per page.
|
|
61174
|
+
*/
|
|
61175
|
+
page_size?: number;
|
|
61176
|
+
/**
|
|
61177
|
+
* Parent offering UUID
|
|
61178
|
+
*/
|
|
61179
|
+
parent_uuid?: string;
|
|
61180
|
+
/**
|
|
61181
|
+
* Project UUID
|
|
61182
|
+
*/
|
|
61183
|
+
project_uuid?: string;
|
|
61184
|
+
/**
|
|
61185
|
+
* Search by offering name, slug or description
|
|
61186
|
+
*/
|
|
61187
|
+
query?: string;
|
|
61188
|
+
/**
|
|
61189
|
+
* Resource customer UUID
|
|
61190
|
+
*/
|
|
61191
|
+
resource_customer_uuid?: string;
|
|
61192
|
+
/**
|
|
61193
|
+
* Resource project UUID
|
|
61194
|
+
*/
|
|
61195
|
+
resource_project_uuid?: string;
|
|
61196
|
+
/**
|
|
61197
|
+
* Scope UUID
|
|
61198
|
+
*/
|
|
61199
|
+
scope_uuid?: string;
|
|
61200
|
+
/**
|
|
61201
|
+
* Service manager UUID
|
|
61202
|
+
*/
|
|
61203
|
+
service_manager_uuid?: string;
|
|
61204
|
+
/**
|
|
61205
|
+
* Shared
|
|
61206
|
+
*/
|
|
61207
|
+
shared?: boolean;
|
|
61208
|
+
/**
|
|
61209
|
+
* Slug
|
|
61210
|
+
*/
|
|
61211
|
+
slug?: string;
|
|
61212
|
+
/**
|
|
61213
|
+
* Offering state
|
|
61214
|
+
*
|
|
61215
|
+
*
|
|
61216
|
+
*/
|
|
61217
|
+
state?: Array<OfferingState>;
|
|
61218
|
+
/**
|
|
61219
|
+
* Tag UUID (OR logic)
|
|
61220
|
+
*/
|
|
61221
|
+
tag?: Array<string>;
|
|
61222
|
+
/**
|
|
61223
|
+
* Tag name (OR logic)
|
|
61224
|
+
*/
|
|
61225
|
+
tag_name?: Array<string>;
|
|
61226
|
+
/**
|
|
61227
|
+
* Tag names with AND logic (comma-separated)
|
|
61228
|
+
*/
|
|
61229
|
+
tag_names_and?: string;
|
|
61230
|
+
/**
|
|
61231
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
61232
|
+
*/
|
|
61233
|
+
tags_and?: string;
|
|
61234
|
+
/**
|
|
61235
|
+
* Offering type
|
|
61236
|
+
*/
|
|
61237
|
+
type?: Array<string>;
|
|
61238
|
+
/**
|
|
61239
|
+
* User Has Consent
|
|
61240
|
+
*/
|
|
61241
|
+
user_has_consent?: boolean;
|
|
61242
|
+
/**
|
|
61243
|
+
* User Has Offering User
|
|
61244
|
+
*/
|
|
61245
|
+
user_has_offering_user?: boolean;
|
|
61246
|
+
/**
|
|
61247
|
+
* Comma-separated offering UUIDs
|
|
61248
|
+
*/
|
|
61249
|
+
uuid_list?: string;
|
|
61250
|
+
};
|
|
61251
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
|
|
61252
|
+
};
|
|
61253
|
+
export type MarketplaceServiceProvidersOfferingsListResponses = {
|
|
61254
|
+
200: Array<ProviderOffering>;
|
|
61255
|
+
};
|
|
61256
|
+
export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
|
|
61257
|
+
export type MarketplaceServiceProvidersOfferingsCountData = {
|
|
61258
|
+
body?: never;
|
|
61259
|
+
path: {
|
|
61260
|
+
service_provider_uuid: string;
|
|
61261
|
+
};
|
|
61262
|
+
query?: {
|
|
61263
|
+
/**
|
|
61264
|
+
* Accessible via calls
|
|
61265
|
+
*/
|
|
61266
|
+
accessible_via_calls?: boolean;
|
|
61267
|
+
/**
|
|
61268
|
+
* Allowed customer UUID
|
|
61269
|
+
*/
|
|
61270
|
+
allowed_customer_uuid?: string;
|
|
61271
|
+
/**
|
|
61272
|
+
* Offering attributes (JSON)
|
|
61273
|
+
*/
|
|
61274
|
+
attributes?: string;
|
|
61275
|
+
/**
|
|
61276
|
+
* Billable
|
|
61277
|
+
*/
|
|
61278
|
+
billable?: boolean;
|
|
61279
|
+
can_create_offering_user?: boolean;
|
|
61280
|
+
/**
|
|
61281
|
+
* Category group UUID
|
|
61282
|
+
*/
|
|
61283
|
+
category_group_uuid?: string;
|
|
61284
|
+
/**
|
|
61285
|
+
* Category UUID
|
|
61286
|
+
*/
|
|
61287
|
+
category_uuid?: string;
|
|
61288
|
+
/**
|
|
61289
|
+
* Created after
|
|
61290
|
+
*/
|
|
61291
|
+
created?: string;
|
|
61292
|
+
/**
|
|
61293
|
+
* Created before
|
|
61294
|
+
*/
|
|
61295
|
+
created_before?: string;
|
|
61296
|
+
/**
|
|
61297
|
+
* Customer URL
|
|
61298
|
+
*/
|
|
61299
|
+
customer?: string;
|
|
61300
|
+
/**
|
|
61301
|
+
* Customer UUID
|
|
61302
|
+
*/
|
|
61303
|
+
customer_uuid?: string;
|
|
61304
|
+
/**
|
|
61305
|
+
* Description contains
|
|
61306
|
+
*/
|
|
61307
|
+
description?: string;
|
|
61308
|
+
/**
|
|
61309
|
+
* Has Active Terms of Service
|
|
61310
|
+
*/
|
|
61311
|
+
has_active_terms_of_service?: boolean;
|
|
61312
|
+
/**
|
|
61313
|
+
* Has Terms of Service
|
|
61314
|
+
*/
|
|
61315
|
+
has_terms_of_service?: boolean;
|
|
61316
|
+
/**
|
|
61317
|
+
* Keyword
|
|
61318
|
+
*/
|
|
61319
|
+
keyword?: string;
|
|
61320
|
+
/**
|
|
61321
|
+
* Modified after
|
|
61322
|
+
*/
|
|
61323
|
+
modified?: string;
|
|
61324
|
+
/**
|
|
61325
|
+
* Modified before
|
|
61326
|
+
*/
|
|
61327
|
+
modified_before?: string;
|
|
61328
|
+
/**
|
|
61329
|
+
* Name
|
|
61330
|
+
*/
|
|
61331
|
+
name?: string;
|
|
61332
|
+
/**
|
|
61333
|
+
* Name (exact)
|
|
61334
|
+
*/
|
|
61335
|
+
name_exact?: string;
|
|
61336
|
+
/**
|
|
61337
|
+
* Ordering
|
|
61338
|
+
*
|
|
61339
|
+
*
|
|
61340
|
+
*/
|
|
61341
|
+
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
61342
|
+
/**
|
|
61343
|
+
* Offering group UUID
|
|
61344
|
+
*/
|
|
61345
|
+
offering_group_uuid?: string;
|
|
61346
|
+
/**
|
|
61347
|
+
* Organization group UUID
|
|
61348
|
+
*/
|
|
61349
|
+
organization_group_uuid?: string;
|
|
61350
|
+
/**
|
|
61351
|
+
* A page number within the paginated result set.
|
|
61352
|
+
*/
|
|
61353
|
+
page?: number;
|
|
61354
|
+
/**
|
|
61355
|
+
* Number of results to return per page.
|
|
61356
|
+
*/
|
|
61357
|
+
page_size?: number;
|
|
61358
|
+
/**
|
|
61359
|
+
* Parent offering UUID
|
|
61360
|
+
*/
|
|
61361
|
+
parent_uuid?: string;
|
|
61362
|
+
/**
|
|
61363
|
+
* Project UUID
|
|
61364
|
+
*/
|
|
61365
|
+
project_uuid?: string;
|
|
61366
|
+
/**
|
|
61367
|
+
* Search by offering name, slug or description
|
|
61368
|
+
*/
|
|
61369
|
+
query?: string;
|
|
61370
|
+
/**
|
|
61371
|
+
* Resource customer UUID
|
|
61372
|
+
*/
|
|
61373
|
+
resource_customer_uuid?: string;
|
|
61374
|
+
/**
|
|
61375
|
+
* Resource project UUID
|
|
61376
|
+
*/
|
|
61377
|
+
resource_project_uuid?: string;
|
|
61378
|
+
/**
|
|
61379
|
+
* Scope UUID
|
|
61380
|
+
*/
|
|
61381
|
+
scope_uuid?: string;
|
|
61382
|
+
/**
|
|
61383
|
+
* Service manager UUID
|
|
61384
|
+
*/
|
|
61385
|
+
service_manager_uuid?: string;
|
|
61386
|
+
/**
|
|
61387
|
+
* Shared
|
|
61388
|
+
*/
|
|
61389
|
+
shared?: boolean;
|
|
61390
|
+
/**
|
|
61391
|
+
* Slug
|
|
61392
|
+
*/
|
|
61393
|
+
slug?: string;
|
|
61394
|
+
/**
|
|
61395
|
+
* Offering state
|
|
61396
|
+
*
|
|
61397
|
+
*
|
|
61398
|
+
*/
|
|
61399
|
+
state?: Array<OfferingState>;
|
|
61400
|
+
/**
|
|
61401
|
+
* Tag UUID (OR logic)
|
|
61402
|
+
*/
|
|
61403
|
+
tag?: Array<string>;
|
|
61404
|
+
/**
|
|
61405
|
+
* Tag name (OR logic)
|
|
61406
|
+
*/
|
|
61407
|
+
tag_name?: Array<string>;
|
|
61408
|
+
/**
|
|
61409
|
+
* Tag names with AND logic (comma-separated)
|
|
61410
|
+
*/
|
|
61411
|
+
tag_names_and?: string;
|
|
61412
|
+
/**
|
|
61413
|
+
* Tag UUIDs with AND logic (comma-separated)
|
|
61414
|
+
*/
|
|
61415
|
+
tags_and?: string;
|
|
61416
|
+
/**
|
|
61417
|
+
* Offering type
|
|
61418
|
+
*/
|
|
61419
|
+
type?: Array<string>;
|
|
61420
|
+
/**
|
|
61421
|
+
* User Has Consent
|
|
61422
|
+
*/
|
|
61423
|
+
user_has_consent?: boolean;
|
|
61424
|
+
/**
|
|
61425
|
+
* User Has Offering User
|
|
61426
|
+
*/
|
|
61427
|
+
user_has_offering_user?: boolean;
|
|
61428
|
+
/**
|
|
61429
|
+
* Comma-separated offering UUIDs
|
|
61430
|
+
*/
|
|
61431
|
+
uuid_list?: string;
|
|
61432
|
+
};
|
|
61433
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
|
|
61434
|
+
};
|
|
61435
|
+
export type MarketplaceServiceProvidersOfferingsCountResponses = {
|
|
61436
|
+
/**
|
|
61437
|
+
* No response body
|
|
61438
|
+
*/
|
|
61439
|
+
200: unknown;
|
|
61440
|
+
};
|
|
61441
|
+
export type MarketplaceServiceProvidersOfferingsTypesListData = {
|
|
61442
|
+
body?: never;
|
|
61443
|
+
path: {
|
|
61444
|
+
service_provider_uuid: string;
|
|
61445
|
+
};
|
|
61446
|
+
query?: {
|
|
61447
|
+
/**
|
|
61448
|
+
* Accessible via calls
|
|
61449
|
+
*/
|
|
61450
|
+
accessible_via_calls?: boolean;
|
|
61451
|
+
/**
|
|
61452
|
+
* Allowed customer UUID
|
|
61453
|
+
*/
|
|
61454
|
+
allowed_customer_uuid?: string;
|
|
61455
|
+
/**
|
|
61456
|
+
* Offering attributes (JSON)
|
|
61457
|
+
*/
|
|
61458
|
+
attributes?: string;
|
|
61459
|
+
/**
|
|
61460
|
+
* Billable
|
|
61461
|
+
*/
|
|
61462
|
+
billable?: boolean;
|
|
61463
|
+
can_create_offering_user?: boolean;
|
|
61464
|
+
/**
|
|
61465
|
+
* Category group UUID
|
|
61466
|
+
*/
|
|
61467
|
+
category_group_uuid?: string;
|
|
61468
|
+
/**
|
|
61469
|
+
* Category UUID
|
|
61470
|
+
*/
|
|
61471
|
+
category_uuid?: string;
|
|
61472
|
+
/**
|
|
61473
|
+
* Created after
|
|
61474
|
+
*/
|
|
61475
|
+
created?: string;
|
|
61476
|
+
/**
|
|
61477
|
+
* Created before
|
|
61478
|
+
*/
|
|
61479
|
+
created_before?: string;
|
|
61480
|
+
/**
|
|
61481
|
+
* Customer URL
|
|
61482
|
+
*/
|
|
61483
|
+
customer?: string;
|
|
61484
|
+
/**
|
|
61485
|
+
* Customer UUID
|
|
61486
|
+
*/
|
|
61487
|
+
customer_uuid?: string;
|
|
61488
|
+
/**
|
|
61489
|
+
* Description contains
|
|
61490
|
+
*/
|
|
61491
|
+
description?: string;
|
|
60124
61492
|
/**
|
|
60125
61493
|
* Has Active Terms of Service
|
|
60126
61494
|
*/
|
|
@@ -60246,13 +61614,13 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
60246
61614
|
*/
|
|
60247
61615
|
uuid_list?: string;
|
|
60248
61616
|
};
|
|
60249
|
-
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
|
|
61617
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
|
|
60250
61618
|
};
|
|
60251
|
-
export type
|
|
60252
|
-
200: Array<
|
|
61619
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
|
|
61620
|
+
200: Array<string>;
|
|
60253
61621
|
};
|
|
60254
|
-
export type
|
|
60255
|
-
export type
|
|
61622
|
+
export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
|
|
61623
|
+
export type MarketplaceServiceProvidersOfferingsTypesCountData = {
|
|
60256
61624
|
body?: never;
|
|
60257
61625
|
path: {
|
|
60258
61626
|
service_provider_uuid: string;
|
|
@@ -60430,10 +61798,12 @@ export type MarketplaceServiceProvidersOfferingsTypesListData = {
|
|
|
60430
61798
|
};
|
|
60431
61799
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
|
|
60432
61800
|
};
|
|
60433
|
-
export type
|
|
60434
|
-
|
|
61801
|
+
export type MarketplaceServiceProvidersOfferingsTypesCountResponses = {
|
|
61802
|
+
/**
|
|
61803
|
+
* No response body
|
|
61804
|
+
*/
|
|
61805
|
+
200: unknown;
|
|
60435
61806
|
};
|
|
60436
|
-
export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
|
|
60437
61807
|
export type MarketplaceServiceProvidersProjectPermissionsListData = {
|
|
60438
61808
|
body?: never;
|
|
60439
61809
|
path: {
|
|
@@ -60512,6 +61882,85 @@ export type MarketplaceServiceProvidersProjectPermissionsListResponses = {
|
|
|
60512
61882
|
200: Array<ProjectPermissionLog>;
|
|
60513
61883
|
};
|
|
60514
61884
|
export type MarketplaceServiceProvidersProjectPermissionsListResponse = MarketplaceServiceProvidersProjectPermissionsListResponses[keyof MarketplaceServiceProvidersProjectPermissionsListResponses];
|
|
61885
|
+
export type MarketplaceServiceProvidersProjectPermissionsCountData = {
|
|
61886
|
+
body?: never;
|
|
61887
|
+
path: {
|
|
61888
|
+
service_provider_uuid: string;
|
|
61889
|
+
};
|
|
61890
|
+
query?: {
|
|
61891
|
+
/**
|
|
61892
|
+
* Created after
|
|
61893
|
+
*/
|
|
61894
|
+
created?: string;
|
|
61895
|
+
/**
|
|
61896
|
+
* Created before
|
|
61897
|
+
*/
|
|
61898
|
+
created_before?: string;
|
|
61899
|
+
expiration_time?: string;
|
|
61900
|
+
/**
|
|
61901
|
+
* User full name contains
|
|
61902
|
+
*/
|
|
61903
|
+
full_name?: string;
|
|
61904
|
+
is_active?: boolean;
|
|
61905
|
+
/**
|
|
61906
|
+
* Modified after
|
|
61907
|
+
*/
|
|
61908
|
+
modified?: string;
|
|
61909
|
+
/**
|
|
61910
|
+
* Modified before
|
|
61911
|
+
*/
|
|
61912
|
+
modified_before?: string;
|
|
61913
|
+
native_name?: string;
|
|
61914
|
+
/**
|
|
61915
|
+
* Ordering
|
|
61916
|
+
*
|
|
61917
|
+
*
|
|
61918
|
+
*/
|
|
61919
|
+
o?: Array<OfferingPermissionOEnum>;
|
|
61920
|
+
/**
|
|
61921
|
+
* A page number within the paginated result set.
|
|
61922
|
+
*/
|
|
61923
|
+
page?: number;
|
|
61924
|
+
/**
|
|
61925
|
+
* Number of results to return per page.
|
|
61926
|
+
*/
|
|
61927
|
+
page_size?: number;
|
|
61928
|
+
/**
|
|
61929
|
+
* Role name contains
|
|
61930
|
+
*/
|
|
61931
|
+
role_name?: string;
|
|
61932
|
+
/**
|
|
61933
|
+
* Role UUID
|
|
61934
|
+
*/
|
|
61935
|
+
role_uuid?: string;
|
|
61936
|
+
/**
|
|
61937
|
+
* Scope name
|
|
61938
|
+
*/
|
|
61939
|
+
scope_name?: string;
|
|
61940
|
+
/**
|
|
61941
|
+
* Scope type
|
|
61942
|
+
*/
|
|
61943
|
+
scope_type?: string;
|
|
61944
|
+
/**
|
|
61945
|
+
* Scope UUID
|
|
61946
|
+
*/
|
|
61947
|
+
scope_uuid?: string;
|
|
61948
|
+
user?: string;
|
|
61949
|
+
/**
|
|
61950
|
+
* User slug contains
|
|
61951
|
+
*/
|
|
61952
|
+
user_slug?: string;
|
|
61953
|
+
user_url?: string;
|
|
61954
|
+
username?: string;
|
|
61955
|
+
};
|
|
61956
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_permissions/';
|
|
61957
|
+
};
|
|
61958
|
+
export type MarketplaceServiceProvidersProjectPermissionsCountResponses = {
|
|
61959
|
+
/**
|
|
61960
|
+
* No response body
|
|
61961
|
+
*/
|
|
61962
|
+
200: unknown;
|
|
61963
|
+
};
|
|
60515
61964
|
export type MarketplaceServiceProvidersProjectServiceAccountsListData = {
|
|
60516
61965
|
body?: never;
|
|
60517
61966
|
path: {
|
|
@@ -60555,6 +62004,51 @@ export type MarketplaceServiceProvidersProjectServiceAccountsListResponses = {
|
|
|
60555
62004
|
200: Array<ProjectServiceAccount>;
|
|
60556
62005
|
};
|
|
60557
62006
|
export type MarketplaceServiceProvidersProjectServiceAccountsListResponse = MarketplaceServiceProvidersProjectServiceAccountsListResponses[keyof MarketplaceServiceProvidersProjectServiceAccountsListResponses];
|
|
62007
|
+
export type MarketplaceServiceProvidersProjectServiceAccountsCountData = {
|
|
62008
|
+
body?: never;
|
|
62009
|
+
path: {
|
|
62010
|
+
service_provider_uuid: string;
|
|
62011
|
+
};
|
|
62012
|
+
query?: {
|
|
62013
|
+
/**
|
|
62014
|
+
* Email contains
|
|
62015
|
+
*/
|
|
62016
|
+
email?: string;
|
|
62017
|
+
/**
|
|
62018
|
+
* A page number within the paginated result set.
|
|
62019
|
+
*/
|
|
62020
|
+
page?: number;
|
|
62021
|
+
/**
|
|
62022
|
+
* Number of results to return per page.
|
|
62023
|
+
*/
|
|
62024
|
+
page_size?: number;
|
|
62025
|
+
/**
|
|
62026
|
+
* Project URL
|
|
62027
|
+
*/
|
|
62028
|
+
project?: string;
|
|
62029
|
+
/**
|
|
62030
|
+
* Project UUID
|
|
62031
|
+
*/
|
|
62032
|
+
project_uuid?: string;
|
|
62033
|
+
/**
|
|
62034
|
+
* Service account state
|
|
62035
|
+
*
|
|
62036
|
+
*
|
|
62037
|
+
*/
|
|
62038
|
+
state?: Array<ServiceAccountState>;
|
|
62039
|
+
/**
|
|
62040
|
+
* Username
|
|
62041
|
+
*/
|
|
62042
|
+
username?: string;
|
|
62043
|
+
};
|
|
62044
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/project_service_accounts/';
|
|
62045
|
+
};
|
|
62046
|
+
export type MarketplaceServiceProvidersProjectServiceAccountsCountResponses = {
|
|
62047
|
+
/**
|
|
62048
|
+
* No response body
|
|
62049
|
+
*/
|
|
62050
|
+
200: unknown;
|
|
62051
|
+
};
|
|
60558
62052
|
export type MarketplaceServiceProvidersProjectsListData = {
|
|
60559
62053
|
body?: never;
|
|
60560
62054
|
path: {
|
|
@@ -60680,6 +62174,132 @@ export type MarketplaceServiceProvidersProjectsListResponses = {
|
|
|
60680
62174
|
200: Array<Project>;
|
|
60681
62175
|
};
|
|
60682
62176
|
export type MarketplaceServiceProvidersProjectsListResponse = MarketplaceServiceProvidersProjectsListResponses[keyof MarketplaceServiceProvidersProjectsListResponses];
|
|
62177
|
+
export type MarketplaceServiceProvidersProjectsCountData = {
|
|
62178
|
+
body?: never;
|
|
62179
|
+
path: {
|
|
62180
|
+
service_provider_uuid: string;
|
|
62181
|
+
};
|
|
62182
|
+
query?: {
|
|
62183
|
+
/**
|
|
62184
|
+
* Affiliation name
|
|
62185
|
+
*/
|
|
62186
|
+
affiliation_name?: string;
|
|
62187
|
+
/**
|
|
62188
|
+
* Affiliation UUID
|
|
62189
|
+
*/
|
|
62190
|
+
affiliation_uuid?: Array<string>;
|
|
62191
|
+
backend_id?: string;
|
|
62192
|
+
/**
|
|
62193
|
+
* Return a list of projects where current user is admin.
|
|
62194
|
+
*/
|
|
62195
|
+
can_admin?: boolean;
|
|
62196
|
+
/**
|
|
62197
|
+
* Return a list of projects where current user is manager or a customer owner.
|
|
62198
|
+
*/
|
|
62199
|
+
can_manage?: boolean;
|
|
62200
|
+
/**
|
|
62201
|
+
* Conceal finished projects
|
|
62202
|
+
*/
|
|
62203
|
+
conceal_finished_projects?: boolean;
|
|
62204
|
+
/**
|
|
62205
|
+
* Created after
|
|
62206
|
+
*/
|
|
62207
|
+
created?: string;
|
|
62208
|
+
/**
|
|
62209
|
+
* Created before
|
|
62210
|
+
*/
|
|
62211
|
+
created_before?: string;
|
|
62212
|
+
/**
|
|
62213
|
+
* Multiple values may be separated by commas.
|
|
62214
|
+
*/
|
|
62215
|
+
current_user_has_role?: Array<string>;
|
|
62216
|
+
/**
|
|
62217
|
+
* Multiple values may be separated by commas.
|
|
62218
|
+
*/
|
|
62219
|
+
customer?: Array<string>;
|
|
62220
|
+
/**
|
|
62221
|
+
* Customer abbreviation
|
|
62222
|
+
*/
|
|
62223
|
+
customer_abbreviation?: string;
|
|
62224
|
+
/**
|
|
62225
|
+
* Customer name
|
|
62226
|
+
*/
|
|
62227
|
+
customer_name?: string;
|
|
62228
|
+
/**
|
|
62229
|
+
* Customer native name
|
|
62230
|
+
*/
|
|
62231
|
+
customer_native_name?: string;
|
|
62232
|
+
/**
|
|
62233
|
+
* Description
|
|
62234
|
+
*/
|
|
62235
|
+
description?: string;
|
|
62236
|
+
/**
|
|
62237
|
+
* Filter projects that have an affiliation.
|
|
62238
|
+
*/
|
|
62239
|
+
has_affiliation?: boolean;
|
|
62240
|
+
/**
|
|
62241
|
+
* Is removed
|
|
62242
|
+
*/
|
|
62243
|
+
is_removed?: boolean;
|
|
62244
|
+
/**
|
|
62245
|
+
* Modified after
|
|
62246
|
+
*/
|
|
62247
|
+
modified?: string;
|
|
62248
|
+
/**
|
|
62249
|
+
* Modified before
|
|
62250
|
+
*/
|
|
62251
|
+
modified_before?: string;
|
|
62252
|
+
/**
|
|
62253
|
+
* Name
|
|
62254
|
+
*/
|
|
62255
|
+
name?: string;
|
|
62256
|
+
/**
|
|
62257
|
+
* Name (exact)
|
|
62258
|
+
*/
|
|
62259
|
+
name_exact?: string;
|
|
62260
|
+
/**
|
|
62261
|
+
* Ordering
|
|
62262
|
+
*
|
|
62263
|
+
*
|
|
62264
|
+
*/
|
|
62265
|
+
o?: Array<MarketplaceProviderCustomerProjectOEnum>;
|
|
62266
|
+
/**
|
|
62267
|
+
* A page number within the paginated result set.
|
|
62268
|
+
*/
|
|
62269
|
+
page?: number;
|
|
62270
|
+
/**
|
|
62271
|
+
* Number of results to return per page.
|
|
62272
|
+
*/
|
|
62273
|
+
page_size?: number;
|
|
62274
|
+
/**
|
|
62275
|
+
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
62276
|
+
*/
|
|
62277
|
+
query?: string;
|
|
62278
|
+
/**
|
|
62279
|
+
* Science domain UUID
|
|
62280
|
+
*/
|
|
62281
|
+
science_domain_uuid?: string;
|
|
62282
|
+
/**
|
|
62283
|
+
* Science sub-domain UUID
|
|
62284
|
+
*/
|
|
62285
|
+
science_sub_domain_uuid?: string;
|
|
62286
|
+
/**
|
|
62287
|
+
* Slug
|
|
62288
|
+
*/
|
|
62289
|
+
slug?: string;
|
|
62290
|
+
/**
|
|
62291
|
+
* Filter projects where the given user has a role.
|
|
62292
|
+
*/
|
|
62293
|
+
user_uuid_with_active_role?: string;
|
|
62294
|
+
};
|
|
62295
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/';
|
|
62296
|
+
};
|
|
62297
|
+
export type MarketplaceServiceProvidersProjectsCountResponses = {
|
|
62298
|
+
/**
|
|
62299
|
+
* No response body
|
|
62300
|
+
*/
|
|
62301
|
+
200: unknown;
|
|
62302
|
+
};
|
|
60683
62303
|
export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
60684
62304
|
body?: never;
|
|
60685
62305
|
path: {
|
|
@@ -60758,6 +62378,85 @@ export type MarketplaceServiceProvidersUserCustomersListResponses = {
|
|
|
60758
62378
|
200: Array<MarketplaceProviderCustomer>;
|
|
60759
62379
|
};
|
|
60760
62380
|
export type MarketplaceServiceProvidersUserCustomersListResponse = MarketplaceServiceProvidersUserCustomersListResponses[keyof MarketplaceServiceProvidersUserCustomersListResponses];
|
|
62381
|
+
export type MarketplaceServiceProvidersUserCustomersCountData = {
|
|
62382
|
+
body?: never;
|
|
62383
|
+
path: {
|
|
62384
|
+
service_provider_uuid: string;
|
|
62385
|
+
};
|
|
62386
|
+
query: {
|
|
62387
|
+
/**
|
|
62388
|
+
* Abbreviation
|
|
62389
|
+
*/
|
|
62390
|
+
abbreviation?: string;
|
|
62391
|
+
agreement_number?: string;
|
|
62392
|
+
archived?: boolean;
|
|
62393
|
+
backend_id?: string;
|
|
62394
|
+
/**
|
|
62395
|
+
* Contact details
|
|
62396
|
+
*/
|
|
62397
|
+
contact_details?: string;
|
|
62398
|
+
/**
|
|
62399
|
+
* Return a list of customers where current user has project create permission.
|
|
62400
|
+
*/
|
|
62401
|
+
current_user_has_project_create_permission?: boolean;
|
|
62402
|
+
/**
|
|
62403
|
+
* Multiple values may be separated by commas.
|
|
62404
|
+
*/
|
|
62405
|
+
current_user_has_role?: Array<string>;
|
|
62406
|
+
/**
|
|
62407
|
+
* Name
|
|
62408
|
+
*/
|
|
62409
|
+
name?: string;
|
|
62410
|
+
/**
|
|
62411
|
+
* Name (exact)
|
|
62412
|
+
*/
|
|
62413
|
+
name_exact?: string;
|
|
62414
|
+
/**
|
|
62415
|
+
* Native name
|
|
62416
|
+
*/
|
|
62417
|
+
native_name?: string;
|
|
62418
|
+
/**
|
|
62419
|
+
* Organization group name
|
|
62420
|
+
*/
|
|
62421
|
+
organization_group_name?: string;
|
|
62422
|
+
/**
|
|
62423
|
+
* Organization group UUID
|
|
62424
|
+
*/
|
|
62425
|
+
organization_group_uuid?: Array<string>;
|
|
62426
|
+
/**
|
|
62427
|
+
* Return a list of customers where current user is owner.
|
|
62428
|
+
*/
|
|
62429
|
+
owned_by_current_user?: boolean;
|
|
62430
|
+
/**
|
|
62431
|
+
* A page number within the paginated result set.
|
|
62432
|
+
*/
|
|
62433
|
+
page?: number;
|
|
62434
|
+
/**
|
|
62435
|
+
* Number of results to return per page.
|
|
62436
|
+
*/
|
|
62437
|
+
page_size?: number;
|
|
62438
|
+
/**
|
|
62439
|
+
* Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
|
|
62440
|
+
*/
|
|
62441
|
+
query?: string;
|
|
62442
|
+
registration_code?: string;
|
|
62443
|
+
/**
|
|
62444
|
+
* Slug
|
|
62445
|
+
*/
|
|
62446
|
+
slug?: string;
|
|
62447
|
+
/**
|
|
62448
|
+
* UUID of the user to get related customers for.
|
|
62449
|
+
*/
|
|
62450
|
+
user_uuid: string;
|
|
62451
|
+
};
|
|
62452
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/user_customers/';
|
|
62453
|
+
};
|
|
62454
|
+
export type MarketplaceServiceProvidersUserCustomersCountResponses = {
|
|
62455
|
+
/**
|
|
62456
|
+
* No response body
|
|
62457
|
+
*/
|
|
62458
|
+
200: unknown;
|
|
62459
|
+
};
|
|
60761
62460
|
export type MarketplaceServiceProvidersUsersListData = {
|
|
60762
62461
|
body?: never;
|
|
60763
62462
|
path: {
|
|
@@ -60866,6 +62565,115 @@ export type MarketplaceServiceProvidersUsersListResponses = {
|
|
|
60866
62565
|
200: Array<MarketplaceServiceProviderUser>;
|
|
60867
62566
|
};
|
|
60868
62567
|
export type MarketplaceServiceProvidersUsersListResponse = MarketplaceServiceProvidersUsersListResponses[keyof MarketplaceServiceProvidersUsersListResponses];
|
|
62568
|
+
export type MarketplaceServiceProvidersUsersCountData = {
|
|
62569
|
+
body?: never;
|
|
62570
|
+
path: {
|
|
62571
|
+
service_provider_uuid: string;
|
|
62572
|
+
};
|
|
62573
|
+
query?: {
|
|
62574
|
+
/**
|
|
62575
|
+
* Agreement date after
|
|
62576
|
+
*/
|
|
62577
|
+
agreement_date?: string;
|
|
62578
|
+
civil_number?: string;
|
|
62579
|
+
/**
|
|
62580
|
+
* Customer UUID
|
|
62581
|
+
*/
|
|
62582
|
+
customer_uuid?: string;
|
|
62583
|
+
/**
|
|
62584
|
+
* Date joined after
|
|
62585
|
+
*/
|
|
62586
|
+
date_joined?: string;
|
|
62587
|
+
description?: string;
|
|
62588
|
+
/**
|
|
62589
|
+
* Email
|
|
62590
|
+
*/
|
|
62591
|
+
email?: string;
|
|
62592
|
+
/**
|
|
62593
|
+
* Full name
|
|
62594
|
+
*/
|
|
62595
|
+
full_name?: string;
|
|
62596
|
+
/**
|
|
62597
|
+
* Is active
|
|
62598
|
+
*/
|
|
62599
|
+
is_active?: boolean;
|
|
62600
|
+
/**
|
|
62601
|
+
* Is staff
|
|
62602
|
+
*/
|
|
62603
|
+
is_staff?: boolean;
|
|
62604
|
+
/**
|
|
62605
|
+
* Is support
|
|
62606
|
+
*/
|
|
62607
|
+
is_support?: boolean;
|
|
62608
|
+
/**
|
|
62609
|
+
* Job title
|
|
62610
|
+
*/
|
|
62611
|
+
job_title?: string;
|
|
62612
|
+
/**
|
|
62613
|
+
* Date modified after
|
|
62614
|
+
*/
|
|
62615
|
+
modified?: string;
|
|
62616
|
+
/**
|
|
62617
|
+
* Native name
|
|
62618
|
+
*/
|
|
62619
|
+
native_name?: string;
|
|
62620
|
+
/**
|
|
62621
|
+
* Ordering
|
|
62622
|
+
*
|
|
62623
|
+
*
|
|
62624
|
+
*/
|
|
62625
|
+
o?: Array<MarketplaceServiceProviderUserOEnum>;
|
|
62626
|
+
/**
|
|
62627
|
+
* Organization
|
|
62628
|
+
*/
|
|
62629
|
+
organization?: string;
|
|
62630
|
+
/**
|
|
62631
|
+
* Organization roles
|
|
62632
|
+
*/
|
|
62633
|
+
organization_roles?: string;
|
|
62634
|
+
/**
|
|
62635
|
+
* A page number within the paginated result set.
|
|
62636
|
+
*/
|
|
62637
|
+
page?: number;
|
|
62638
|
+
/**
|
|
62639
|
+
* Number of results to return per page.
|
|
62640
|
+
*/
|
|
62641
|
+
page_size?: number;
|
|
62642
|
+
phone_number?: string;
|
|
62643
|
+
/**
|
|
62644
|
+
* Project roles
|
|
62645
|
+
*/
|
|
62646
|
+
project_roles?: string;
|
|
62647
|
+
/**
|
|
62648
|
+
* Project UUID
|
|
62649
|
+
*/
|
|
62650
|
+
project_uuid?: string;
|
|
62651
|
+
/**
|
|
62652
|
+
* Filter by first name, last name, civil number, username or email
|
|
62653
|
+
*/
|
|
62654
|
+
query?: string;
|
|
62655
|
+
registration_method?: string;
|
|
62656
|
+
/**
|
|
62657
|
+
* User keyword
|
|
62658
|
+
*/
|
|
62659
|
+
user_keyword?: string;
|
|
62660
|
+
/**
|
|
62661
|
+
* Username (exact)
|
|
62662
|
+
*/
|
|
62663
|
+
username?: string;
|
|
62664
|
+
/**
|
|
62665
|
+
* Comma-separated usernames
|
|
62666
|
+
*/
|
|
62667
|
+
username_list?: string;
|
|
62668
|
+
};
|
|
62669
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/users/';
|
|
62670
|
+
};
|
|
62671
|
+
export type MarketplaceServiceProvidersUsersCountResponses = {
|
|
62672
|
+
/**
|
|
62673
|
+
* No response body
|
|
62674
|
+
*/
|
|
62675
|
+
200: unknown;
|
|
62676
|
+
};
|
|
60869
62677
|
export type MarketplaceServiceProvidersDestroyData = {
|
|
60870
62678
|
body?: never;
|
|
60871
62679
|
path: {
|
|
@@ -61048,6 +62856,69 @@ export type MarketplaceServiceProvidersListUsersListResponses = {
|
|
|
61048
62856
|
200: Array<UserRoleDetails>;
|
|
61049
62857
|
};
|
|
61050
62858
|
export type MarketplaceServiceProvidersListUsersListResponse = MarketplaceServiceProvidersListUsersListResponses[keyof MarketplaceServiceProvidersListUsersListResponses];
|
|
62859
|
+
export type MarketplaceServiceProvidersListUsersCountData = {
|
|
62860
|
+
body?: never;
|
|
62861
|
+
path: {
|
|
62862
|
+
uuid: string;
|
|
62863
|
+
};
|
|
62864
|
+
query?: {
|
|
62865
|
+
/**
|
|
62866
|
+
* Fields to include in response
|
|
62867
|
+
*/
|
|
62868
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
62869
|
+
/**
|
|
62870
|
+
* User full name
|
|
62871
|
+
*/
|
|
62872
|
+
full_name?: string;
|
|
62873
|
+
/**
|
|
62874
|
+
* User native name
|
|
62875
|
+
*/
|
|
62876
|
+
native_name?: string;
|
|
62877
|
+
/**
|
|
62878
|
+
* Ordering fields
|
|
62879
|
+
*/
|
|
62880
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
62881
|
+
/**
|
|
62882
|
+
* A page number within the paginated result set.
|
|
62883
|
+
*/
|
|
62884
|
+
page?: number;
|
|
62885
|
+
/**
|
|
62886
|
+
* Number of results to return per page.
|
|
62887
|
+
*/
|
|
62888
|
+
page_size?: number;
|
|
62889
|
+
/**
|
|
62890
|
+
* Role UUID or name
|
|
62891
|
+
*/
|
|
62892
|
+
role?: string;
|
|
62893
|
+
/**
|
|
62894
|
+
* Search string for user
|
|
62895
|
+
*/
|
|
62896
|
+
search_string?: string;
|
|
62897
|
+
/**
|
|
62898
|
+
* User UUID
|
|
62899
|
+
*/
|
|
62900
|
+
user?: string;
|
|
62901
|
+
/**
|
|
62902
|
+
* User slug
|
|
62903
|
+
*/
|
|
62904
|
+
user_slug?: string;
|
|
62905
|
+
/**
|
|
62906
|
+
* User URL
|
|
62907
|
+
*/
|
|
62908
|
+
user_url?: string;
|
|
62909
|
+
/**
|
|
62910
|
+
* User username
|
|
62911
|
+
*/
|
|
62912
|
+
username?: string;
|
|
62913
|
+
};
|
|
62914
|
+
url: '/api/marketplace-service-providers/{uuid}/list_users/';
|
|
62915
|
+
};
|
|
62916
|
+
export type MarketplaceServiceProvidersListUsersCountResponses = {
|
|
62917
|
+
/**
|
|
62918
|
+
* No response body
|
|
62919
|
+
*/
|
|
62920
|
+
200: unknown;
|
|
62921
|
+
};
|
|
61051
62922
|
export type MarketplaceServiceProvidersRevenueListData = {
|
|
61052
62923
|
body?: never;
|
|
61053
62924
|
path: {
|
|
@@ -68600,6 +70471,69 @@ export type OpenportalUnmanagedProjectsListUsersListResponses = {
|
|
|
68600
70471
|
200: Array<UserRoleDetails>;
|
|
68601
70472
|
};
|
|
68602
70473
|
export type OpenportalUnmanagedProjectsListUsersListResponse = OpenportalUnmanagedProjectsListUsersListResponses[keyof OpenportalUnmanagedProjectsListUsersListResponses];
|
|
70474
|
+
export type OpenportalUnmanagedProjectsListUsersCountData = {
|
|
70475
|
+
body?: never;
|
|
70476
|
+
path: {
|
|
70477
|
+
uuid: string;
|
|
70478
|
+
};
|
|
70479
|
+
query?: {
|
|
70480
|
+
/**
|
|
70481
|
+
* Fields to include in response
|
|
70482
|
+
*/
|
|
70483
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
70484
|
+
/**
|
|
70485
|
+
* User full name
|
|
70486
|
+
*/
|
|
70487
|
+
full_name?: string;
|
|
70488
|
+
/**
|
|
70489
|
+
* User native name
|
|
70490
|
+
*/
|
|
70491
|
+
native_name?: string;
|
|
70492
|
+
/**
|
|
70493
|
+
* Ordering fields
|
|
70494
|
+
*/
|
|
70495
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
70496
|
+
/**
|
|
70497
|
+
* A page number within the paginated result set.
|
|
70498
|
+
*/
|
|
70499
|
+
page?: number;
|
|
70500
|
+
/**
|
|
70501
|
+
* Number of results to return per page.
|
|
70502
|
+
*/
|
|
70503
|
+
page_size?: number;
|
|
70504
|
+
/**
|
|
70505
|
+
* Role UUID or name
|
|
70506
|
+
*/
|
|
70507
|
+
role?: string;
|
|
70508
|
+
/**
|
|
70509
|
+
* Search string for user
|
|
70510
|
+
*/
|
|
70511
|
+
search_string?: string;
|
|
70512
|
+
/**
|
|
70513
|
+
* User UUID
|
|
70514
|
+
*/
|
|
70515
|
+
user?: string;
|
|
70516
|
+
/**
|
|
70517
|
+
* User slug
|
|
70518
|
+
*/
|
|
70519
|
+
user_slug?: string;
|
|
70520
|
+
/**
|
|
70521
|
+
* User URL
|
|
70522
|
+
*/
|
|
70523
|
+
user_url?: string;
|
|
70524
|
+
/**
|
|
70525
|
+
* User username
|
|
70526
|
+
*/
|
|
70527
|
+
username?: string;
|
|
70528
|
+
};
|
|
70529
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/list_users/';
|
|
70530
|
+
};
|
|
70531
|
+
export type OpenportalUnmanagedProjectsListUsersCountResponses = {
|
|
70532
|
+
/**
|
|
70533
|
+
* No response body
|
|
70534
|
+
*/
|
|
70535
|
+
200: unknown;
|
|
70536
|
+
};
|
|
68603
70537
|
export type OpenportalUnmanagedProjectsMoveProjectData = {
|
|
68604
70538
|
body: MoveProjectRequest;
|
|
68605
70539
|
path: {
|
|
@@ -77547,10 +79481,88 @@ export type ProjectsOtherUsersListData = {
|
|
|
77547
79481
|
};
|
|
77548
79482
|
url: '/api/projects/{project_uuid}/other_users/';
|
|
77549
79483
|
};
|
|
77550
|
-
export type ProjectsOtherUsersListResponses = {
|
|
77551
|
-
200: Array<BasicUser>;
|
|
79484
|
+
export type ProjectsOtherUsersListResponses = {
|
|
79485
|
+
200: Array<BasicUser>;
|
|
79486
|
+
};
|
|
79487
|
+
export type ProjectsOtherUsersListResponse = ProjectsOtherUsersListResponses[keyof ProjectsOtherUsersListResponses];
|
|
79488
|
+
export type ProjectsOtherUsersCountData = {
|
|
79489
|
+
body?: never;
|
|
79490
|
+
path: {
|
|
79491
|
+
/**
|
|
79492
|
+
* UUID of the project
|
|
79493
|
+
*/
|
|
79494
|
+
project_uuid: string;
|
|
79495
|
+
};
|
|
79496
|
+
query?: {
|
|
79497
|
+
/**
|
|
79498
|
+
* Agreement date after
|
|
79499
|
+
*/
|
|
79500
|
+
agreement_date?: string;
|
|
79501
|
+
civil_number?: string;
|
|
79502
|
+
/**
|
|
79503
|
+
* Date joined after
|
|
79504
|
+
*/
|
|
79505
|
+
date_joined?: string;
|
|
79506
|
+
description?: string;
|
|
79507
|
+
/**
|
|
79508
|
+
* Email
|
|
79509
|
+
*/
|
|
79510
|
+
email?: string;
|
|
79511
|
+
/**
|
|
79512
|
+
* Full name
|
|
79513
|
+
*/
|
|
79514
|
+
full_name?: string;
|
|
79515
|
+
/**
|
|
79516
|
+
* Is active
|
|
79517
|
+
*/
|
|
79518
|
+
is_active?: boolean;
|
|
79519
|
+
/**
|
|
79520
|
+
* Job title
|
|
79521
|
+
*/
|
|
79522
|
+
job_title?: string;
|
|
79523
|
+
/**
|
|
79524
|
+
* Date modified after
|
|
79525
|
+
*/
|
|
79526
|
+
modified?: string;
|
|
79527
|
+
/**
|
|
79528
|
+
* Native name
|
|
79529
|
+
*/
|
|
79530
|
+
native_name?: string;
|
|
79531
|
+
/**
|
|
79532
|
+
* Ordering. Sort by a combination of first name, last name, and username.
|
|
79533
|
+
*/
|
|
79534
|
+
o?: CustomerUserOEnum;
|
|
79535
|
+
/**
|
|
79536
|
+
* Organization
|
|
79537
|
+
*/
|
|
79538
|
+
organization?: string;
|
|
79539
|
+
/**
|
|
79540
|
+
* A page number within the paginated result set.
|
|
79541
|
+
*/
|
|
79542
|
+
page?: number;
|
|
79543
|
+
/**
|
|
79544
|
+
* Number of results to return per page.
|
|
79545
|
+
*/
|
|
79546
|
+
page_size?: number;
|
|
79547
|
+
phone_number?: string;
|
|
79548
|
+
registration_method?: string;
|
|
79549
|
+
/**
|
|
79550
|
+
* User keyword
|
|
79551
|
+
*/
|
|
79552
|
+
user_keyword?: string;
|
|
79553
|
+
/**
|
|
79554
|
+
* Username
|
|
79555
|
+
*/
|
|
79556
|
+
username?: string;
|
|
79557
|
+
};
|
|
79558
|
+
url: '/api/projects/{project_uuid}/other_users/';
|
|
79559
|
+
};
|
|
79560
|
+
export type ProjectsOtherUsersCountResponses = {
|
|
79561
|
+
/**
|
|
79562
|
+
* No response body
|
|
79563
|
+
*/
|
|
79564
|
+
200: unknown;
|
|
77552
79565
|
};
|
|
77553
|
-
export type ProjectsOtherUsersListResponse = ProjectsOtherUsersListResponses[keyof ProjectsOtherUsersListResponses];
|
|
77554
79566
|
export type ProjectsDestroyData = {
|
|
77555
79567
|
body?: never;
|
|
77556
79568
|
path: {
|
|
@@ -77746,6 +79758,69 @@ export type ProjectsListUsersListResponses = {
|
|
|
77746
79758
|
200: Array<UserRoleDetails>;
|
|
77747
79759
|
};
|
|
77748
79760
|
export type ProjectsListUsersListResponse = ProjectsListUsersListResponses[keyof ProjectsListUsersListResponses];
|
|
79761
|
+
export type ProjectsListUsersCountData = {
|
|
79762
|
+
body?: never;
|
|
79763
|
+
path: {
|
|
79764
|
+
uuid: string;
|
|
79765
|
+
};
|
|
79766
|
+
query?: {
|
|
79767
|
+
/**
|
|
79768
|
+
* Fields to include in response
|
|
79769
|
+
*/
|
|
79770
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
79771
|
+
/**
|
|
79772
|
+
* User full name
|
|
79773
|
+
*/
|
|
79774
|
+
full_name?: string;
|
|
79775
|
+
/**
|
|
79776
|
+
* User native name
|
|
79777
|
+
*/
|
|
79778
|
+
native_name?: string;
|
|
79779
|
+
/**
|
|
79780
|
+
* Ordering fields
|
|
79781
|
+
*/
|
|
79782
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
79783
|
+
/**
|
|
79784
|
+
* A page number within the paginated result set.
|
|
79785
|
+
*/
|
|
79786
|
+
page?: number;
|
|
79787
|
+
/**
|
|
79788
|
+
* Number of results to return per page.
|
|
79789
|
+
*/
|
|
79790
|
+
page_size?: number;
|
|
79791
|
+
/**
|
|
79792
|
+
* Role UUID or name
|
|
79793
|
+
*/
|
|
79794
|
+
role?: string;
|
|
79795
|
+
/**
|
|
79796
|
+
* Search string for user
|
|
79797
|
+
*/
|
|
79798
|
+
search_string?: string;
|
|
79799
|
+
/**
|
|
79800
|
+
* User UUID
|
|
79801
|
+
*/
|
|
79802
|
+
user?: string;
|
|
79803
|
+
/**
|
|
79804
|
+
* User slug
|
|
79805
|
+
*/
|
|
79806
|
+
user_slug?: string;
|
|
79807
|
+
/**
|
|
79808
|
+
* User URL
|
|
79809
|
+
*/
|
|
79810
|
+
user_url?: string;
|
|
79811
|
+
/**
|
|
79812
|
+
* User username
|
|
79813
|
+
*/
|
|
79814
|
+
username?: string;
|
|
79815
|
+
};
|
|
79816
|
+
url: '/api/projects/{uuid}/list_users/';
|
|
79817
|
+
};
|
|
79818
|
+
export type ProjectsListUsersCountResponses = {
|
|
79819
|
+
/**
|
|
79820
|
+
* No response body
|
|
79821
|
+
*/
|
|
79822
|
+
200: unknown;
|
|
79823
|
+
};
|
|
77749
79824
|
export type ProjectsMoveProjectData = {
|
|
77750
79825
|
body: MoveProjectRequest;
|
|
77751
79826
|
path: {
|
|
@@ -78469,6 +80544,69 @@ export type ProposalProposalsListUsersListResponses = {
|
|
|
78469
80544
|
200: Array<UserRoleDetails>;
|
|
78470
80545
|
};
|
|
78471
80546
|
export type ProposalProposalsListUsersListResponse = ProposalProposalsListUsersListResponses[keyof ProposalProposalsListUsersListResponses];
|
|
80547
|
+
export type ProposalProposalsListUsersCountData = {
|
|
80548
|
+
body?: never;
|
|
80549
|
+
path: {
|
|
80550
|
+
uuid: string;
|
|
80551
|
+
};
|
|
80552
|
+
query?: {
|
|
80553
|
+
/**
|
|
80554
|
+
* Fields to include in response
|
|
80555
|
+
*/
|
|
80556
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
80557
|
+
/**
|
|
80558
|
+
* User full name
|
|
80559
|
+
*/
|
|
80560
|
+
full_name?: string;
|
|
80561
|
+
/**
|
|
80562
|
+
* User native name
|
|
80563
|
+
*/
|
|
80564
|
+
native_name?: string;
|
|
80565
|
+
/**
|
|
80566
|
+
* Ordering fields
|
|
80567
|
+
*/
|
|
80568
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
80569
|
+
/**
|
|
80570
|
+
* A page number within the paginated result set.
|
|
80571
|
+
*/
|
|
80572
|
+
page?: number;
|
|
80573
|
+
/**
|
|
80574
|
+
* Number of results to return per page.
|
|
80575
|
+
*/
|
|
80576
|
+
page_size?: number;
|
|
80577
|
+
/**
|
|
80578
|
+
* Role UUID or name
|
|
80579
|
+
*/
|
|
80580
|
+
role?: string;
|
|
80581
|
+
/**
|
|
80582
|
+
* Search string for user
|
|
80583
|
+
*/
|
|
80584
|
+
search_string?: string;
|
|
80585
|
+
/**
|
|
80586
|
+
* User UUID
|
|
80587
|
+
*/
|
|
80588
|
+
user?: string;
|
|
80589
|
+
/**
|
|
80590
|
+
* User slug
|
|
80591
|
+
*/
|
|
80592
|
+
user_slug?: string;
|
|
80593
|
+
/**
|
|
80594
|
+
* User URL
|
|
80595
|
+
*/
|
|
80596
|
+
user_url?: string;
|
|
80597
|
+
/**
|
|
80598
|
+
* User username
|
|
80599
|
+
*/
|
|
80600
|
+
username?: string;
|
|
80601
|
+
};
|
|
80602
|
+
url: '/api/proposal-proposals/{uuid}/list_users/';
|
|
80603
|
+
};
|
|
80604
|
+
export type ProposalProposalsListUsersCountResponses = {
|
|
80605
|
+
/**
|
|
80606
|
+
* No response body
|
|
80607
|
+
*/
|
|
80608
|
+
200: unknown;
|
|
80609
|
+
};
|
|
78472
80610
|
export type ProposalProposalsRejectData = {
|
|
78473
80611
|
body?: ProposalApproveRequest;
|
|
78474
80612
|
path: {
|
|
@@ -79196,6 +81334,69 @@ export type ProposalProtectedCallsListUsersListResponses = {
|
|
|
79196
81334
|
200: Array<UserRoleDetails>;
|
|
79197
81335
|
};
|
|
79198
81336
|
export type ProposalProtectedCallsListUsersListResponse = ProposalProtectedCallsListUsersListResponses[keyof ProposalProtectedCallsListUsersListResponses];
|
|
81337
|
+
export type ProposalProtectedCallsListUsersCountData = {
|
|
81338
|
+
body?: never;
|
|
81339
|
+
path: {
|
|
81340
|
+
uuid: string;
|
|
81341
|
+
};
|
|
81342
|
+
query?: {
|
|
81343
|
+
/**
|
|
81344
|
+
* Fields to include in response
|
|
81345
|
+
*/
|
|
81346
|
+
field?: Array<UserRoleDetailsFieldEnum>;
|
|
81347
|
+
/**
|
|
81348
|
+
* User full name
|
|
81349
|
+
*/
|
|
81350
|
+
full_name?: string;
|
|
81351
|
+
/**
|
|
81352
|
+
* User native name
|
|
81353
|
+
*/
|
|
81354
|
+
native_name?: string;
|
|
81355
|
+
/**
|
|
81356
|
+
* Ordering fields
|
|
81357
|
+
*/
|
|
81358
|
+
o?: Array<UserRoleDetailsOEnum>;
|
|
81359
|
+
/**
|
|
81360
|
+
* A page number within the paginated result set.
|
|
81361
|
+
*/
|
|
81362
|
+
page?: number;
|
|
81363
|
+
/**
|
|
81364
|
+
* Number of results to return per page.
|
|
81365
|
+
*/
|
|
81366
|
+
page_size?: number;
|
|
81367
|
+
/**
|
|
81368
|
+
* Role UUID or name
|
|
81369
|
+
*/
|
|
81370
|
+
role?: string;
|
|
81371
|
+
/**
|
|
81372
|
+
* Search string for user
|
|
81373
|
+
*/
|
|
81374
|
+
search_string?: string;
|
|
81375
|
+
/**
|
|
81376
|
+
* User UUID
|
|
81377
|
+
*/
|
|
81378
|
+
user?: string;
|
|
81379
|
+
/**
|
|
81380
|
+
* User slug
|
|
81381
|
+
*/
|
|
81382
|
+
user_slug?: string;
|
|
81383
|
+
/**
|
|
81384
|
+
* User URL
|
|
81385
|
+
*/
|
|
81386
|
+
user_url?: string;
|
|
81387
|
+
/**
|
|
81388
|
+
* User username
|
|
81389
|
+
*/
|
|
81390
|
+
username?: string;
|
|
81391
|
+
};
|
|
81392
|
+
url: '/api/proposal-protected-calls/{uuid}/list_users/';
|
|
81393
|
+
};
|
|
81394
|
+
export type ProposalProtectedCallsListUsersCountResponses = {
|
|
81395
|
+
/**
|
|
81396
|
+
* No response body
|
|
81397
|
+
*/
|
|
81398
|
+
200: unknown;
|
|
81399
|
+
};
|
|
79199
81400
|
export type ProposalProtectedCallsMatchingConfigurationRetrieveData = {
|
|
79200
81401
|
body?: never;
|
|
79201
81402
|
path: {
|
|
@@ -83989,6 +86190,32 @@ export type NestedReviewerProfileAffiliationsListResponses = {
|
|
|
83989
86190
|
200: Array<ReviewerAffiliation>;
|
|
83990
86191
|
};
|
|
83991
86192
|
export type NestedReviewerProfileAffiliationsListResponse = NestedReviewerProfileAffiliationsListResponses[keyof NestedReviewerProfileAffiliationsListResponses];
|
|
86193
|
+
export type NestedReviewerProfileAffiliationsCountData = {
|
|
86194
|
+
body?: never;
|
|
86195
|
+
path: {
|
|
86196
|
+
/**
|
|
86197
|
+
* UUID of the parent reviewer profile
|
|
86198
|
+
*/
|
|
86199
|
+
reviewer_profile_uuid: string;
|
|
86200
|
+
};
|
|
86201
|
+
query?: {
|
|
86202
|
+
/**
|
|
86203
|
+
* A page number within the paginated result set.
|
|
86204
|
+
*/
|
|
86205
|
+
page?: number;
|
|
86206
|
+
/**
|
|
86207
|
+
* Number of results to return per page.
|
|
86208
|
+
*/
|
|
86209
|
+
page_size?: number;
|
|
86210
|
+
};
|
|
86211
|
+
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/affiliations/';
|
|
86212
|
+
};
|
|
86213
|
+
export type NestedReviewerProfileAffiliationsCountResponses = {
|
|
86214
|
+
/**
|
|
86215
|
+
* No response body
|
|
86216
|
+
*/
|
|
86217
|
+
200: unknown;
|
|
86218
|
+
};
|
|
83992
86219
|
export type NestedReviewerProfileAffiliationsCreateData = {
|
|
83993
86220
|
body: ReviewerAffiliationRequest;
|
|
83994
86221
|
path: {
|
|
@@ -84095,6 +86322,32 @@ export type NestedReviewerProfileExpertiseListResponses = {
|
|
|
84095
86322
|
200: Array<ReviewerExpertise>;
|
|
84096
86323
|
};
|
|
84097
86324
|
export type NestedReviewerProfileExpertiseListResponse = NestedReviewerProfileExpertiseListResponses[keyof NestedReviewerProfileExpertiseListResponses];
|
|
86325
|
+
export type NestedReviewerProfileExpertiseCountData = {
|
|
86326
|
+
body?: never;
|
|
86327
|
+
path: {
|
|
86328
|
+
/**
|
|
86329
|
+
* UUID of the parent reviewer profile
|
|
86330
|
+
*/
|
|
86331
|
+
reviewer_profile_uuid: string;
|
|
86332
|
+
};
|
|
86333
|
+
query?: {
|
|
86334
|
+
/**
|
|
86335
|
+
* A page number within the paginated result set.
|
|
86336
|
+
*/
|
|
86337
|
+
page?: number;
|
|
86338
|
+
/**
|
|
86339
|
+
* Number of results to return per page.
|
|
86340
|
+
*/
|
|
86341
|
+
page_size?: number;
|
|
86342
|
+
};
|
|
86343
|
+
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/expertise/';
|
|
86344
|
+
};
|
|
86345
|
+
export type NestedReviewerProfileExpertiseCountResponses = {
|
|
86346
|
+
/**
|
|
86347
|
+
* No response body
|
|
86348
|
+
*/
|
|
86349
|
+
200: unknown;
|
|
86350
|
+
};
|
|
84098
86351
|
export type NestedReviewerProfileExpertiseCreateData = {
|
|
84099
86352
|
body: ReviewerExpertiseRequest;
|
|
84100
86353
|
path: {
|
|
@@ -84201,6 +86454,32 @@ export type NestedReviewerProfilePublicationsListResponses = {
|
|
|
84201
86454
|
200: Array<ReviewerPublication>;
|
|
84202
86455
|
};
|
|
84203
86456
|
export type NestedReviewerProfilePublicationsListResponse = NestedReviewerProfilePublicationsListResponses[keyof NestedReviewerProfilePublicationsListResponses];
|
|
86457
|
+
export type NestedReviewerProfilePublicationsCountData = {
|
|
86458
|
+
body?: never;
|
|
86459
|
+
path: {
|
|
86460
|
+
/**
|
|
86461
|
+
* UUID of the parent reviewer profile
|
|
86462
|
+
*/
|
|
86463
|
+
reviewer_profile_uuid: string;
|
|
86464
|
+
};
|
|
86465
|
+
query?: {
|
|
86466
|
+
/**
|
|
86467
|
+
* A page number within the paginated result set.
|
|
86468
|
+
*/
|
|
86469
|
+
page?: number;
|
|
86470
|
+
/**
|
|
86471
|
+
* Number of results to return per page.
|
|
86472
|
+
*/
|
|
86473
|
+
page_size?: number;
|
|
86474
|
+
};
|
|
86475
|
+
url: '/api/reviewer-profiles/{reviewer_profile_uuid}/publications/';
|
|
86476
|
+
};
|
|
86477
|
+
export type NestedReviewerProfilePublicationsCountResponses = {
|
|
86478
|
+
/**
|
|
86479
|
+
* No response body
|
|
86480
|
+
*/
|
|
86481
|
+
200: unknown;
|
|
86482
|
+
};
|
|
84204
86483
|
export type NestedReviewerProfilePublicationsCreateData = {
|
|
84205
86484
|
body: ReviewerPublicationRequest;
|
|
84206
86485
|
path: {
|