waldur-js-client 8.0.10-dev.14 → 8.0.10-dev.18

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.
@@ -2946,12 +2946,7 @@ export type BroadcastMessageQueryRequest = {
2946
2946
  export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
2947
2947
  export type BulkRoundCreateRequestRequest = {
2948
2948
  start_time: string;
2949
- review_strategy?: ReviewStrategyEnum;
2950
- deciding_entity?: DecidingEntityEnum;
2951
- allocation_time?: AllocationTimeEnum;
2952
2949
  review_duration_in_days?: number | null;
2953
- minimum_number_of_reviewers?: number | null;
2954
- minimal_average_scoring?: string | null;
2955
2950
  cadence: CadenceEnum;
2956
2951
  custom_interval_months?: number | null;
2957
2952
  submission_window_days: number;
@@ -3565,6 +3560,10 @@ export type CallWorkflowStep = {
3565
3560
  * Allocation decision: require applicant award response after decision.
3566
3561
  */
3567
3562
  include_award_response?: boolean;
3563
+ /**
3564
+ * Allocation decision: when a granted proposal takes effect — immediately (on_decision) or on the round's allocation date (fixed_date).
3565
+ */
3566
+ allocation_time?: AllocationTimeEnum;
3568
3567
  /**
3569
3568
  * Optional override of catalog ordering.
3570
3569
  */
@@ -3614,6 +3613,10 @@ export type CallWorkflowStepRequest = {
3614
3613
  * Allocation decision: require applicant award response after decision.
3615
3614
  */
3616
3615
  include_award_response?: boolean;
3616
+ /**
3617
+ * Allocation decision: when a granted proposal takes effect — immediately (on_decision) or on the round's allocation date (fixed_date).
3618
+ */
3619
+ allocation_time?: AllocationTimeEnum;
3617
3620
  /**
3618
3621
  * Optional override of catalog ordering.
3619
3622
  */
@@ -6819,7 +6822,6 @@ export type DeadLetterQueue = {
6819
6822
  */
6820
6823
  readonly note: string;
6821
6824
  };
6822
- export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
6823
6825
  export type DefaultPermissionEnum = '2770' | '2775' | '2777' | '770' | '775' | '777';
6824
6826
  export type DeleteAttachmentsRequest = {
6825
6827
  attachment_ids: Array<string>;
@@ -12362,25 +12364,15 @@ export type NestedRound = {
12362
12364
  start_time: string;
12363
12365
  cutoff_time: string;
12364
12366
  status: RoundStatus;
12365
- review_strategy?: ReviewStrategyEnum;
12366
- deciding_entity?: DecidingEntityEnum;
12367
- allocation_time?: AllocationTimeEnum;
12368
12367
  allocation_date?: string | null;
12369
- minimal_average_scoring?: string | null;
12370
12368
  review_duration_in_days?: number | null;
12371
- minimum_number_of_reviewers?: number | null;
12372
12369
  };
12373
12370
  export type NestedRoundRequest = {
12374
12371
  slug?: string;
12375
12372
  start_time: string;
12376
12373
  cutoff_time: string;
12377
- review_strategy?: ReviewStrategyEnum;
12378
- deciding_entity?: DecidingEntityEnum;
12379
- allocation_time?: AllocationTimeEnum;
12380
12374
  allocation_date?: string | null;
12381
- minimal_average_scoring?: string | null;
12382
12375
  review_duration_in_days?: number | null;
12383
- minimum_number_of_reviewers?: number | null;
12384
12376
  };
12385
12377
  export type NestedScreenshot = {
12386
12378
  name: string;
@@ -17332,6 +17324,10 @@ export type PatchedCallWorkflowStepRequest = {
17332
17324
  * Allocation decision: require applicant award response after decision.
17333
17325
  */
17334
17326
  include_award_response?: boolean;
17327
+ /**
17328
+ * Allocation decision: when a granted proposal takes effect — immediately (on_decision) or on the round's allocation date (fixed_date).
17329
+ */
17330
+ allocation_time?: AllocationTimeEnum;
17335
17331
  /**
17336
17332
  * Optional override of catalog ordering.
17337
17333
  */
@@ -18465,13 +18461,8 @@ export type PatchedProtectedCallRequest = {
18465
18461
  export type PatchedProtectedRoundRequest = {
18466
18462
  start_time?: string;
18467
18463
  cutoff_time?: string;
18468
- review_strategy?: ReviewStrategyEnum;
18469
- deciding_entity?: DecidingEntityEnum;
18470
- allocation_time?: AllocationTimeEnum;
18471
18464
  allocation_date?: string | null;
18472
- minimal_average_scoring?: string | null;
18473
18465
  review_duration_in_days?: number;
18474
- minimum_number_of_reviewers?: number | null;
18475
18466
  };
18476
18467
  export type PatchedProviderPlanDetailsRequest = {
18477
18468
  name?: string;
@@ -19372,7 +19363,7 @@ export type PermissionMetadataResponse = {
19372
19363
  * Map of role keys to role enum values from RoleEnum
19373
19364
  */
19374
19365
  roles: {
19375
- [key: string]: 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | 'CUSTOMER.MANAGER' | 'CUSTOMER.READER' | 'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | 'OFFERING.MANAGER' | 'CALL.REVIEWER' | 'CALL.MANAGER' | 'PROPOSAL.MEMBER' | 'PROPOSAL.MANAGER';
19366
+ [key: string]: 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | 'CUSTOMER.MANAGER' | 'CUSTOMER.READER' | 'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | 'OFFERING.MANAGER' | 'CALL.REVIEWER' | 'CALL.MANAGER' | 'CALL.PANEL_MEMBER' | 'PROPOSAL.MEMBER' | 'PROPOSAL.MANAGER';
19376
19367
  };
19377
19368
  /**
19378
19369
  * Map of permission keys to permission enum values from PermissionEnum
@@ -21038,26 +21029,16 @@ export type ProtectedRound = {
21038
21029
  start_time: string;
21039
21030
  cutoff_time: string;
21040
21031
  status: RoundStatus;
21041
- review_strategy?: ReviewStrategyEnum;
21042
- deciding_entity?: DecidingEntityEnum;
21043
- allocation_time?: AllocationTimeEnum;
21044
21032
  allocation_date?: string | null;
21045
- minimal_average_scoring?: string | null;
21046
21033
  review_duration_in_days?: number;
21047
- minimum_number_of_reviewers?: number | null;
21048
21034
  readonly url: string;
21049
21035
  readonly proposals: Array<ProtectedProposalList>;
21050
21036
  };
21051
21037
  export type ProtectedRoundRequest = {
21052
21038
  start_time: string;
21053
21039
  cutoff_time: string;
21054
- review_strategy?: ReviewStrategyEnum;
21055
- deciding_entity?: DecidingEntityEnum;
21056
- allocation_time?: AllocationTimeEnum;
21057
21040
  allocation_date?: string | null;
21058
- minimal_average_scoring?: string | null;
21059
21041
  review_duration_in_days?: number;
21060
- minimum_number_of_reviewers?: number | null;
21061
21042
  };
21062
21043
  export type ProviderCustomerMonthly = {
21063
21044
  month: string;
@@ -24289,7 +24270,6 @@ export type ReviewProgressStat = {
24289
24270
  readonly average_review_time_days: number | null;
24290
24271
  readonly completion_rate: number;
24291
24272
  };
24292
- export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
24293
24273
  export type ReviewSubmitRequest = {
24294
24274
  summary_score?: number;
24295
24275
  summary_public_comment?: string;
@@ -37651,6 +37631,69 @@ export type CallManagingOrganisationsListUsersListResponses = {
37651
37631
  200: Array<UserRoleDetails>;
37652
37632
  };
37653
37633
  export type CallManagingOrganisationsListUsersListResponse = CallManagingOrganisationsListUsersListResponses[keyof CallManagingOrganisationsListUsersListResponses];
37634
+ export type CallManagingOrganisationsListUsersCountData = {
37635
+ body?: never;
37636
+ path: {
37637
+ uuid: string;
37638
+ };
37639
+ query?: {
37640
+ /**
37641
+ * Fields to include in response
37642
+ */
37643
+ field?: Array<UserRoleDetailsFieldEnum>;
37644
+ /**
37645
+ * User full name
37646
+ */
37647
+ full_name?: string;
37648
+ /**
37649
+ * User native name
37650
+ */
37651
+ native_name?: string;
37652
+ /**
37653
+ * Ordering fields
37654
+ */
37655
+ o?: Array<UserRoleDetailsOEnum>;
37656
+ /**
37657
+ * A page number within the paginated result set.
37658
+ */
37659
+ page?: number;
37660
+ /**
37661
+ * Number of results to return per page.
37662
+ */
37663
+ page_size?: number;
37664
+ /**
37665
+ * Role UUID or name
37666
+ */
37667
+ role?: string;
37668
+ /**
37669
+ * Search string for user
37670
+ */
37671
+ search_string?: string;
37672
+ /**
37673
+ * User UUID
37674
+ */
37675
+ user?: string;
37676
+ /**
37677
+ * User slug
37678
+ */
37679
+ user_slug?: string;
37680
+ /**
37681
+ * User URL
37682
+ */
37683
+ user_url?: string;
37684
+ /**
37685
+ * User username
37686
+ */
37687
+ username?: string;
37688
+ };
37689
+ url: '/api/call-managing-organisations/{uuid}/list_users/';
37690
+ };
37691
+ export type CallManagingOrganisationsListUsersCountResponses = {
37692
+ /**
37693
+ * No response body
37694
+ */
37695
+ 200: unknown;
37696
+ };
37654
37697
  export type CallManagingOrganisationsStatsRetrieveData = {
37655
37698
  body?: never;
37656
37699
  path: {
@@ -40257,6 +40300,32 @@ export type CustomersProjectMetadataComplianceDetailsListResponses = {
40257
40300
  200: Array<ProjectDetailsResponse>;
40258
40301
  };
40259
40302
  export type CustomersProjectMetadataComplianceDetailsListResponse = CustomersProjectMetadataComplianceDetailsListResponses[keyof CustomersProjectMetadataComplianceDetailsListResponses];
40303
+ export type CustomersProjectMetadataComplianceDetailsCountData = {
40304
+ body?: never;
40305
+ path: {
40306
+ /**
40307
+ * UUID of the customer
40308
+ */
40309
+ customer_uuid: string;
40310
+ };
40311
+ query?: {
40312
+ /**
40313
+ * A page number within the paginated result set.
40314
+ */
40315
+ page?: number;
40316
+ /**
40317
+ * Number of results to return per page.
40318
+ */
40319
+ page_size?: number;
40320
+ };
40321
+ url: '/api/customers/{customer_uuid}/project-metadata-compliance-details/';
40322
+ };
40323
+ export type CustomersProjectMetadataComplianceDetailsCountResponses = {
40324
+ /**
40325
+ * No response body
40326
+ */
40327
+ 200: unknown;
40328
+ };
40260
40329
  export type CustomersProjectMetadataComplianceOverviewListData = {
40261
40330
  body?: never;
40262
40331
  path: {
@@ -40281,6 +40350,32 @@ export type CustomersProjectMetadataComplianceOverviewListResponses = {
40281
40350
  200: Array<ComplianceOverview>;
40282
40351
  };
40283
40352
  export type CustomersProjectMetadataComplianceOverviewListResponse = CustomersProjectMetadataComplianceOverviewListResponses[keyof CustomersProjectMetadataComplianceOverviewListResponses];
40353
+ export type CustomersProjectMetadataComplianceOverviewCountData = {
40354
+ body?: never;
40355
+ path: {
40356
+ /**
40357
+ * UUID of the customer
40358
+ */
40359
+ customer_uuid: string;
40360
+ };
40361
+ query?: {
40362
+ /**
40363
+ * A page number within the paginated result set.
40364
+ */
40365
+ page?: number;
40366
+ /**
40367
+ * Number of results to return per page.
40368
+ */
40369
+ page_size?: number;
40370
+ };
40371
+ url: '/api/customers/{customer_uuid}/project-metadata-compliance-overview/';
40372
+ };
40373
+ export type CustomersProjectMetadataComplianceOverviewCountResponses = {
40374
+ /**
40375
+ * No response body
40376
+ */
40377
+ 200: unknown;
40378
+ };
40284
40379
  export type CustomersProjectMetadataComplianceProjectsListData = {
40285
40380
  body?: never;
40286
40381
  path: {
@@ -40305,6 +40400,32 @@ export type CustomersProjectMetadataComplianceProjectsListResponses = {
40305
40400
  200: Array<ProjectAnswer>;
40306
40401
  };
40307
40402
  export type CustomersProjectMetadataComplianceProjectsListResponse = CustomersProjectMetadataComplianceProjectsListResponses[keyof CustomersProjectMetadataComplianceProjectsListResponses];
40403
+ export type CustomersProjectMetadataComplianceProjectsCountData = {
40404
+ body?: never;
40405
+ path: {
40406
+ /**
40407
+ * UUID of the customer
40408
+ */
40409
+ customer_uuid: string;
40410
+ };
40411
+ query?: {
40412
+ /**
40413
+ * A page number within the paginated result set.
40414
+ */
40415
+ page?: number;
40416
+ /**
40417
+ * Number of results to return per page.
40418
+ */
40419
+ page_size?: number;
40420
+ };
40421
+ url: '/api/customers/{customer_uuid}/project-metadata-compliance-projects/';
40422
+ };
40423
+ export type CustomersProjectMetadataComplianceProjectsCountResponses = {
40424
+ /**
40425
+ * No response body
40426
+ */
40427
+ 200: unknown;
40428
+ };
40308
40429
  export type CustomersProjectMetadataQuestionAnswersListData = {
40309
40430
  body?: never;
40310
40431
  path: {
@@ -40329,6 +40450,32 @@ export type CustomersProjectMetadataQuestionAnswersListResponses = {
40329
40450
  200: Array<QuestionAnswer>;
40330
40451
  };
40331
40452
  export type CustomersProjectMetadataQuestionAnswersListResponse = CustomersProjectMetadataQuestionAnswersListResponses[keyof CustomersProjectMetadataQuestionAnswersListResponses];
40453
+ export type CustomersProjectMetadataQuestionAnswersCountData = {
40454
+ body?: never;
40455
+ path: {
40456
+ /**
40457
+ * UUID of the customer
40458
+ */
40459
+ customer_uuid: string;
40460
+ };
40461
+ query?: {
40462
+ /**
40463
+ * A page number within the paginated result set.
40464
+ */
40465
+ page?: number;
40466
+ /**
40467
+ * Number of results to return per page.
40468
+ */
40469
+ page_size?: number;
40470
+ };
40471
+ url: '/api/customers/{customer_uuid}/project-metadata-question-answers/';
40472
+ };
40473
+ export type CustomersProjectMetadataQuestionAnswersCountResponses = {
40474
+ /**
40475
+ * No response body
40476
+ */
40477
+ 200: unknown;
40478
+ };
40332
40479
  export type CustomersUsersListData = {
40333
40480
  body?: never;
40334
40481
  path: {
@@ -40414,6 +40561,92 @@ export type CustomersUsersListResponses = {
40414
40561
  200: Array<CustomerUser>;
40415
40562
  };
40416
40563
  export type CustomersUsersListResponse = CustomersUsersListResponses[keyof CustomersUsersListResponses];
40564
+ export type CustomersUsersCountData = {
40565
+ body?: never;
40566
+ path: {
40567
+ /**
40568
+ * UUID of the customer
40569
+ */
40570
+ customer_uuid: string;
40571
+ };
40572
+ query?: {
40573
+ /**
40574
+ * Agreement date after
40575
+ */
40576
+ agreement_date?: string;
40577
+ civil_number?: string;
40578
+ /**
40579
+ * Date joined after
40580
+ */
40581
+ date_joined?: string;
40582
+ description?: string;
40583
+ /**
40584
+ * Email
40585
+ */
40586
+ email?: string;
40587
+ /**
40588
+ * Full name
40589
+ */
40590
+ full_name?: string;
40591
+ /**
40592
+ * Is active
40593
+ */
40594
+ is_active?: boolean;
40595
+ /**
40596
+ * Job title
40597
+ */
40598
+ job_title?: string;
40599
+ /**
40600
+ * Date modified after
40601
+ */
40602
+ modified?: string;
40603
+ /**
40604
+ * Native name
40605
+ */
40606
+ native_name?: string;
40607
+ /**
40608
+ * Ordering. Sort by a combination of first name, last name, and username.
40609
+ */
40610
+ o?: CustomerUserOEnum;
40611
+ /**
40612
+ * Organization
40613
+ */
40614
+ organization?: string;
40615
+ /**
40616
+ * Filter by one or more organization roles. Select a standard role or provide a custom role string. Can be specified multiple times.
40617
+ */
40618
+ organization_role?: Array<'CUSTOMER.MANAGER' | 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | string>;
40619
+ /**
40620
+ * A page number within the paginated result set.
40621
+ */
40622
+ page?: number;
40623
+ /**
40624
+ * Number of results to return per page.
40625
+ */
40626
+ page_size?: number;
40627
+ phone_number?: string;
40628
+ /**
40629
+ * Filter by one or more project roles. Select a standard role or provide a custom role string. Can be specified multiple times.
40630
+ */
40631
+ project_role?: Array<'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | string>;
40632
+ registration_method?: string;
40633
+ /**
40634
+ * User keyword
40635
+ */
40636
+ user_keyword?: string;
40637
+ /**
40638
+ * Username
40639
+ */
40640
+ username?: string;
40641
+ };
40642
+ url: '/api/customers/{customer_uuid}/users/';
40643
+ };
40644
+ export type CustomersUsersCountResponses = {
40645
+ /**
40646
+ * No response body
40647
+ */
40648
+ 200: unknown;
40649
+ };
40417
40650
  export type CustomersDestroyData = {
40418
40651
  body?: never;
40419
40652
  path: {
@@ -40707,6 +40940,69 @@ export type CustomersListUsersListResponses = {
40707
40940
  200: Array<UserRoleDetails>;
40708
40941
  };
40709
40942
  export type CustomersListUsersListResponse = CustomersListUsersListResponses[keyof CustomersListUsersListResponses];
40943
+ export type CustomersListUsersCountData = {
40944
+ body?: never;
40945
+ path: {
40946
+ uuid: string;
40947
+ };
40948
+ query?: {
40949
+ /**
40950
+ * Fields to include in response
40951
+ */
40952
+ field?: Array<UserRoleDetailsFieldEnum>;
40953
+ /**
40954
+ * User full name
40955
+ */
40956
+ full_name?: string;
40957
+ /**
40958
+ * User native name
40959
+ */
40960
+ native_name?: string;
40961
+ /**
40962
+ * Ordering fields
40963
+ */
40964
+ o?: Array<UserRoleDetailsOEnum>;
40965
+ /**
40966
+ * A page number within the paginated result set.
40967
+ */
40968
+ page?: number;
40969
+ /**
40970
+ * Number of results to return per page.
40971
+ */
40972
+ page_size?: number;
40973
+ /**
40974
+ * Role UUID or name
40975
+ */
40976
+ role?: string;
40977
+ /**
40978
+ * Search string for user
40979
+ */
40980
+ search_string?: string;
40981
+ /**
40982
+ * User UUID
40983
+ */
40984
+ user?: string;
40985
+ /**
40986
+ * User slug
40987
+ */
40988
+ user_slug?: string;
40989
+ /**
40990
+ * User URL
40991
+ */
40992
+ user_url?: string;
40993
+ /**
40994
+ * User username
40995
+ */
40996
+ username?: string;
40997
+ };
40998
+ url: '/api/customers/{uuid}/list_users/';
40999
+ };
41000
+ export type CustomersListUsersCountResponses = {
41001
+ /**
41002
+ * No response body
41003
+ */
41004
+ 200: unknown;
41005
+ };
40710
41006
  export type CustomersProjectDigestConfigRetrieveData = {
40711
41007
  body?: never;
40712
41008
  path: {
@@ -54202,6 +54498,69 @@ export type MarketplaceProviderOfferingsListUsersListResponses = {
54202
54498
  200: Array<UserRoleDetails>;
54203
54499
  };
54204
54500
  export type MarketplaceProviderOfferingsListUsersListResponse = MarketplaceProviderOfferingsListUsersListResponses[keyof MarketplaceProviderOfferingsListUsersListResponses];
54501
+ export type MarketplaceProviderOfferingsListUsersCountData = {
54502
+ body?: never;
54503
+ path: {
54504
+ uuid: string;
54505
+ };
54506
+ query?: {
54507
+ /**
54508
+ * Fields to include in response
54509
+ */
54510
+ field?: Array<UserRoleDetailsFieldEnum>;
54511
+ /**
54512
+ * User full name
54513
+ */
54514
+ full_name?: string;
54515
+ /**
54516
+ * User native name
54517
+ */
54518
+ native_name?: string;
54519
+ /**
54520
+ * Ordering fields
54521
+ */
54522
+ o?: Array<UserRoleDetailsOEnum>;
54523
+ /**
54524
+ * A page number within the paginated result set.
54525
+ */
54526
+ page?: number;
54527
+ /**
54528
+ * Number of results to return per page.
54529
+ */
54530
+ page_size?: number;
54531
+ /**
54532
+ * Role UUID or name
54533
+ */
54534
+ role?: string;
54535
+ /**
54536
+ * Search string for user
54537
+ */
54538
+ search_string?: string;
54539
+ /**
54540
+ * User UUID
54541
+ */
54542
+ user?: string;
54543
+ /**
54544
+ * User slug
54545
+ */
54546
+ user_slug?: string;
54547
+ /**
54548
+ * User URL
54549
+ */
54550
+ user_url?: string;
54551
+ /**
54552
+ * User username
54553
+ */
54554
+ username?: string;
54555
+ };
54556
+ url: '/api/marketplace-provider-offerings/{uuid}/list_users/';
54557
+ };
54558
+ export type MarketplaceProviderOfferingsListUsersCountResponses = {
54559
+ /**
54560
+ * No response body
54561
+ */
54562
+ 200: unknown;
54563
+ };
54205
54564
  export type MarketplaceProviderOfferingsMakeAvailableData = {
54206
54565
  body?: never;
54207
54566
  path: {
@@ -55360,6 +55719,69 @@ export type MarketplaceProviderResourceProjectsListUsersListResponses = {
55360
55719
  200: Array<UserRoleDetails>;
55361
55720
  };
55362
55721
  export type MarketplaceProviderResourceProjectsListUsersListResponse = MarketplaceProviderResourceProjectsListUsersListResponses[keyof MarketplaceProviderResourceProjectsListUsersListResponses];
55722
+ export type MarketplaceProviderResourceProjectsListUsersCountData = {
55723
+ body?: never;
55724
+ path: {
55725
+ uuid: string;
55726
+ };
55727
+ query?: {
55728
+ /**
55729
+ * Fields to include in response
55730
+ */
55731
+ field?: Array<UserRoleDetailsFieldEnum>;
55732
+ /**
55733
+ * User full name
55734
+ */
55735
+ full_name?: string;
55736
+ /**
55737
+ * User native name
55738
+ */
55739
+ native_name?: string;
55740
+ /**
55741
+ * Ordering fields
55742
+ */
55743
+ o?: Array<UserRoleDetailsOEnum>;
55744
+ /**
55745
+ * A page number within the paginated result set.
55746
+ */
55747
+ page?: number;
55748
+ /**
55749
+ * Number of results to return per page.
55750
+ */
55751
+ page_size?: number;
55752
+ /**
55753
+ * Role UUID or name
55754
+ */
55755
+ role?: string;
55756
+ /**
55757
+ * Search string for user
55758
+ */
55759
+ search_string?: string;
55760
+ /**
55761
+ * User UUID
55762
+ */
55763
+ user?: string;
55764
+ /**
55765
+ * User slug
55766
+ */
55767
+ user_slug?: string;
55768
+ /**
55769
+ * User URL
55770
+ */
55771
+ user_url?: string;
55772
+ /**
55773
+ * User username
55774
+ */
55775
+ username?: string;
55776
+ };
55777
+ url: '/api/marketplace-provider-resource-projects/{uuid}/list_users/';
55778
+ };
55779
+ export type MarketplaceProviderResourceProjectsListUsersCountResponses = {
55780
+ /**
55781
+ * No response body
55782
+ */
55783
+ 200: unknown;
55784
+ };
55363
55785
  export type MarketplaceProviderResourceProjectsSetBackendIdData = {
55364
55786
  body: ResourceProjectBackendIdRequest;
55365
55787
  path: {
@@ -56237,6 +56659,69 @@ export type MarketplaceProviderResourcesListUsersListResponses = {
56237
56659
  200: Array<UserRoleDetails>;
56238
56660
  };
56239
56661
  export type MarketplaceProviderResourcesListUsersListResponse = MarketplaceProviderResourcesListUsersListResponses[keyof MarketplaceProviderResourcesListUsersListResponses];
56662
+ export type MarketplaceProviderResourcesListUsersCountData = {
56663
+ body?: never;
56664
+ path: {
56665
+ uuid: string;
56666
+ };
56667
+ query?: {
56668
+ /**
56669
+ * Fields to include in response
56670
+ */
56671
+ field?: Array<UserRoleDetailsFieldEnum>;
56672
+ /**
56673
+ * User full name
56674
+ */
56675
+ full_name?: string;
56676
+ /**
56677
+ * User native name
56678
+ */
56679
+ native_name?: string;
56680
+ /**
56681
+ * Ordering fields
56682
+ */
56683
+ o?: Array<UserRoleDetailsOEnum>;
56684
+ /**
56685
+ * A page number within the paginated result set.
56686
+ */
56687
+ page?: number;
56688
+ /**
56689
+ * Number of results to return per page.
56690
+ */
56691
+ page_size?: number;
56692
+ /**
56693
+ * Role UUID or name
56694
+ */
56695
+ role?: string;
56696
+ /**
56697
+ * Search string for user
56698
+ */
56699
+ search_string?: string;
56700
+ /**
56701
+ * User UUID
56702
+ */
56703
+ user?: string;
56704
+ /**
56705
+ * User slug
56706
+ */
56707
+ user_slug?: string;
56708
+ /**
56709
+ * User URL
56710
+ */
56711
+ user_url?: string;
56712
+ /**
56713
+ * User username
56714
+ */
56715
+ username?: string;
56716
+ };
56717
+ url: '/api/marketplace-provider-resources/{uuid}/list_users/';
56718
+ };
56719
+ export type MarketplaceProviderResourcesListUsersCountResponses = {
56720
+ /**
56721
+ * No response body
56722
+ */
56723
+ 200: unknown;
56724
+ };
56240
56725
  export type MarketplaceProviderResourcesMoveResourceData = {
56241
56726
  body: MoveResourceRequest;
56242
56727
  path: {
@@ -57570,6 +58055,69 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
57570
58055
  200: Array<UserRoleDetails>;
57571
58056
  };
57572
58057
  export type MarketplaceResourceProjectsListUsersListResponse = MarketplaceResourceProjectsListUsersListResponses[keyof MarketplaceResourceProjectsListUsersListResponses];
58058
+ export type MarketplaceResourceProjectsListUsersCountData = {
58059
+ body?: never;
58060
+ path: {
58061
+ uuid: string;
58062
+ };
58063
+ query?: {
58064
+ /**
58065
+ * Fields to include in response
58066
+ */
58067
+ field?: Array<UserRoleDetailsFieldEnum>;
58068
+ /**
58069
+ * User full name
58070
+ */
58071
+ full_name?: string;
58072
+ /**
58073
+ * User native name
58074
+ */
58075
+ native_name?: string;
58076
+ /**
58077
+ * Ordering fields
58078
+ */
58079
+ o?: Array<UserRoleDetailsOEnum>;
58080
+ /**
58081
+ * A page number within the paginated result set.
58082
+ */
58083
+ page?: number;
58084
+ /**
58085
+ * Number of results to return per page.
58086
+ */
58087
+ page_size?: number;
58088
+ /**
58089
+ * Role UUID or name
58090
+ */
58091
+ role?: string;
58092
+ /**
58093
+ * Search string for user
58094
+ */
58095
+ search_string?: string;
58096
+ /**
58097
+ * User UUID
58098
+ */
58099
+ user?: string;
58100
+ /**
58101
+ * User slug
58102
+ */
58103
+ user_slug?: string;
58104
+ /**
58105
+ * User URL
58106
+ */
58107
+ user_url?: string;
58108
+ /**
58109
+ * User username
58110
+ */
58111
+ username?: string;
58112
+ };
58113
+ url: '/api/marketplace-resource-projects/{uuid}/list_users/';
58114
+ };
58115
+ export type MarketplaceResourceProjectsListUsersCountResponses = {
58116
+ /**
58117
+ * No response body
58118
+ */
58119
+ 200: unknown;
58120
+ };
57573
58121
  export type MarketplaceResourceProjectsRecoverData = {
57574
58122
  body?: ResourceProjectRecoveryRequest;
57575
58123
  path: {
@@ -58435,6 +58983,69 @@ export type MarketplaceResourcesListUsersListResponses = {
58435
58983
  200: Array<UserRoleDetails>;
58436
58984
  };
58437
58985
  export type MarketplaceResourcesListUsersListResponse = MarketplaceResourcesListUsersListResponses[keyof MarketplaceResourcesListUsersListResponses];
58986
+ export type MarketplaceResourcesListUsersCountData = {
58987
+ body?: never;
58988
+ path: {
58989
+ uuid: string;
58990
+ };
58991
+ query?: {
58992
+ /**
58993
+ * Fields to include in response
58994
+ */
58995
+ field?: Array<UserRoleDetailsFieldEnum>;
58996
+ /**
58997
+ * User full name
58998
+ */
58999
+ full_name?: string;
59000
+ /**
59001
+ * User native name
59002
+ */
59003
+ native_name?: string;
59004
+ /**
59005
+ * Ordering fields
59006
+ */
59007
+ o?: Array<UserRoleDetailsOEnum>;
59008
+ /**
59009
+ * A page number within the paginated result set.
59010
+ */
59011
+ page?: number;
59012
+ /**
59013
+ * Number of results to return per page.
59014
+ */
59015
+ page_size?: number;
59016
+ /**
59017
+ * Role UUID or name
59018
+ */
59019
+ role?: string;
59020
+ /**
59021
+ * Search string for user
59022
+ */
59023
+ search_string?: string;
59024
+ /**
59025
+ * User UUID
59026
+ */
59027
+ user?: string;
59028
+ /**
59029
+ * User slug
59030
+ */
59031
+ user_slug?: string;
59032
+ /**
59033
+ * User URL
59034
+ */
59035
+ user_url?: string;
59036
+ /**
59037
+ * User username
59038
+ */
59039
+ username?: string;
59040
+ };
59041
+ url: '/api/marketplace-resources/{uuid}/list_users/';
59042
+ };
59043
+ export type MarketplaceResourcesListUsersCountResponses = {
59044
+ /**
59045
+ * No response body
59046
+ */
59047
+ 200: unknown;
59048
+ };
58438
59049
  export type MarketplaceResourcesMoveResourceData = {
58439
59050
  body: MoveResourceRequest;
58440
59051
  path: {
@@ -59695,6 +60306,20 @@ export type ServiceProviderChecklistsSummaryResponses = {
59695
60306
  200: Array<ServiceProviderChecklistSummary>;
59696
60307
  };
59697
60308
  export type ServiceProviderChecklistsSummaryResponse = ServiceProviderChecklistsSummaryResponses[keyof ServiceProviderChecklistsSummaryResponses];
60309
+ export type MarketplaceServiceProvidersComplianceChecklistsSummaryCountData = {
60310
+ body?: never;
60311
+ path: {
60312
+ service_provider_uuid: string;
60313
+ };
60314
+ query?: never;
60315
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/checklists_summary/';
60316
+ };
60317
+ export type MarketplaceServiceProvidersComplianceChecklistsSummaryCountResponses = {
60318
+ /**
60319
+ * No response body
60320
+ */
60321
+ 200: unknown;
60322
+ };
59698
60323
  export type ServiceProviderComplianceOverviewData = {
59699
60324
  body?: never;
59700
60325
  path: {
@@ -59716,6 +60341,20 @@ export type ServiceProviderComplianceOverviewResponses = {
59716
60341
  200: Array<ServiceProviderComplianceOverview>;
59717
60342
  };
59718
60343
  export type ServiceProviderComplianceOverviewResponse = ServiceProviderComplianceOverviewResponses[keyof ServiceProviderComplianceOverviewResponses];
60344
+ export type MarketplaceServiceProvidersComplianceComplianceOverviewCountData = {
60345
+ body?: never;
60346
+ path: {
60347
+ service_provider_uuid: string;
60348
+ };
60349
+ query?: never;
60350
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/compliance_overview/';
60351
+ };
60352
+ export type MarketplaceServiceProvidersComplianceComplianceOverviewCountResponses = {
60353
+ /**
60354
+ * No response body
60355
+ */
60356
+ 200: unknown;
60357
+ };
59719
60358
  export type ServiceProviderOfferingUsersComplianceData = {
59720
60359
  body?: never;
59721
60360
  path: {
@@ -59745,6 +60384,20 @@ export type ServiceProviderOfferingUsersComplianceResponses = {
59745
60384
  200: Array<ServiceProviderOfferingUserCompliance>;
59746
60385
  };
59747
60386
  export type ServiceProviderOfferingUsersComplianceResponse = ServiceProviderOfferingUsersComplianceResponses[keyof ServiceProviderOfferingUsersComplianceResponses];
60387
+ export type MarketplaceServiceProvidersComplianceOfferingUsersCountData = {
60388
+ body?: never;
60389
+ path: {
60390
+ service_provider_uuid: string;
60391
+ };
60392
+ query?: never;
60393
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/offering_users/';
60394
+ };
60395
+ export type MarketplaceServiceProvidersComplianceOfferingUsersCountResponses = {
60396
+ /**
60397
+ * No response body
60398
+ */
60399
+ 200: unknown;
60400
+ };
59748
60401
  export type MarketplaceServiceProvidersCourseAccountsListData = {
59749
60402
  body?: never;
59750
60403
  path: {
@@ -59806,6 +60459,69 @@ export type MarketplaceServiceProvidersCourseAccountsListResponses = {
59806
60459
  200: Array<CourseAccount>;
59807
60460
  };
59808
60461
  export type MarketplaceServiceProvidersCourseAccountsListResponse = MarketplaceServiceProvidersCourseAccountsListResponses[keyof MarketplaceServiceProvidersCourseAccountsListResponses];
60462
+ export type MarketplaceServiceProvidersCourseAccountsCountData = {
60463
+ body?: never;
60464
+ path: {
60465
+ service_provider_uuid: string;
60466
+ };
60467
+ query?: {
60468
+ /**
60469
+ * Email contains
60470
+ */
60471
+ email?: string;
60472
+ /**
60473
+ * Ordering
60474
+ *
60475
+ *
60476
+ */
60477
+ o?: Array<CourseAccountOEnum>;
60478
+ /**
60479
+ * A page number within the paginated result set.
60480
+ */
60481
+ page?: number;
60482
+ /**
60483
+ * Number of results to return per page.
60484
+ */
60485
+ page_size?: number;
60486
+ /**
60487
+ * Project end date range
60488
+ */
60489
+ project_end_date_after?: string;
60490
+ /**
60491
+ * Project end date range
60492
+ */
60493
+ project_end_date_before?: string;
60494
+ /**
60495
+ * Project start date range
60496
+ */
60497
+ project_start_date_after?: string;
60498
+ /**
60499
+ * Project start date range
60500
+ */
60501
+ project_start_date_before?: string;
60502
+ /**
60503
+ * Project UUID
60504
+ */
60505
+ project_uuid?: string;
60506
+ /**
60507
+ * Course account state
60508
+ *
60509
+ *
60510
+ */
60511
+ state?: Array<CourseAccountStateEnum>;
60512
+ /**
60513
+ * Username
60514
+ */
60515
+ username?: string;
60516
+ };
60517
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/';
60518
+ };
60519
+ export type MarketplaceServiceProvidersCourseAccountsCountResponses = {
60520
+ /**
60521
+ * No response body
60522
+ */
60523
+ 200: unknown;
60524
+ };
59809
60525
  export type MarketplaceServiceProvidersCustomerProjectsListData = {
59810
60526
  body?: never;
59811
60527
  path: {
@@ -59935,6 +60651,136 @@ export type MarketplaceServiceProvidersCustomerProjectsListResponses = {
59935
60651
  200: Array<MarketplaceProviderCustomerProject>;
59936
60652
  };
59937
60653
  export type MarketplaceServiceProvidersCustomerProjectsListResponse = MarketplaceServiceProvidersCustomerProjectsListResponses[keyof MarketplaceServiceProvidersCustomerProjectsListResponses];
60654
+ export type MarketplaceServiceProvidersCustomerProjectsCountData = {
60655
+ body?: never;
60656
+ path: {
60657
+ service_provider_uuid: string;
60658
+ };
60659
+ query: {
60660
+ /**
60661
+ * Affiliation name
60662
+ */
60663
+ affiliation_name?: string;
60664
+ /**
60665
+ * Affiliation UUID
60666
+ */
60667
+ affiliation_uuid?: Array<string>;
60668
+ backend_id?: string;
60669
+ /**
60670
+ * Return a list of projects where current user is admin.
60671
+ */
60672
+ can_admin?: boolean;
60673
+ /**
60674
+ * Return a list of projects where current user is manager or a customer owner.
60675
+ */
60676
+ can_manage?: boolean;
60677
+ /**
60678
+ * Conceal finished projects
60679
+ */
60680
+ conceal_finished_projects?: boolean;
60681
+ /**
60682
+ * Created after
60683
+ */
60684
+ created?: string;
60685
+ /**
60686
+ * Created before
60687
+ */
60688
+ created_before?: string;
60689
+ /**
60690
+ * Multiple values may be separated by commas.
60691
+ */
60692
+ current_user_has_role?: Array<string>;
60693
+ /**
60694
+ * Multiple values may be separated by commas.
60695
+ */
60696
+ customer?: Array<string>;
60697
+ /**
60698
+ * Customer abbreviation
60699
+ */
60700
+ customer_abbreviation?: string;
60701
+ /**
60702
+ * Customer name
60703
+ */
60704
+ customer_name?: string;
60705
+ /**
60706
+ * Customer native name
60707
+ */
60708
+ customer_native_name?: string;
60709
+ /**
60710
+ * Description
60711
+ */
60712
+ description?: string;
60713
+ /**
60714
+ * Filter projects that have an affiliation.
60715
+ */
60716
+ has_affiliation?: boolean;
60717
+ /**
60718
+ * Is removed
60719
+ */
60720
+ is_removed?: boolean;
60721
+ /**
60722
+ * Modified after
60723
+ */
60724
+ modified?: string;
60725
+ /**
60726
+ * Modified before
60727
+ */
60728
+ modified_before?: string;
60729
+ /**
60730
+ * Name
60731
+ */
60732
+ name?: string;
60733
+ /**
60734
+ * Name (exact)
60735
+ */
60736
+ name_exact?: string;
60737
+ /**
60738
+ * Ordering
60739
+ *
60740
+ *
60741
+ */
60742
+ o?: Array<MarketplaceProviderCustomerProjectOEnum>;
60743
+ /**
60744
+ * A page number within the paginated result set.
60745
+ */
60746
+ page?: number;
60747
+ /**
60748
+ * Number of results to return per page.
60749
+ */
60750
+ page_size?: number;
60751
+ /**
60752
+ * UUID of the customer to filter projects by.
60753
+ */
60754
+ project_customer_uuid: string;
60755
+ /**
60756
+ * Filter by name, slug, UUID, backend ID or resource effective ID
60757
+ */
60758
+ query?: string;
60759
+ /**
60760
+ * Science domain UUID
60761
+ */
60762
+ science_domain_uuid?: string;
60763
+ /**
60764
+ * Science sub-domain UUID
60765
+ */
60766
+ science_sub_domain_uuid?: string;
60767
+ /**
60768
+ * Slug
60769
+ */
60770
+ slug?: string;
60771
+ /**
60772
+ * Filter projects where the given user has a role.
60773
+ */
60774
+ user_uuid_with_active_role?: string;
60775
+ };
60776
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/customer_projects/';
60777
+ };
60778
+ export type MarketplaceServiceProvidersCustomerProjectsCountResponses = {
60779
+ /**
60780
+ * No response body
60781
+ */
60782
+ 200: unknown;
60783
+ };
59938
60784
  export type MarketplaceServiceProvidersCustomersListData = {
59939
60785
  body?: never;
59940
60786
  path: {
@@ -60009,6 +60855,81 @@ export type MarketplaceServiceProvidersCustomersListResponses = {
60009
60855
  200: Array<MarketplaceProviderCustomer>;
60010
60856
  };
60011
60857
  export type MarketplaceServiceProvidersCustomersListResponse = MarketplaceServiceProvidersCustomersListResponses[keyof MarketplaceServiceProvidersCustomersListResponses];
60858
+ export type MarketplaceServiceProvidersCustomersCountData = {
60859
+ body?: never;
60860
+ path: {
60861
+ service_provider_uuid: string;
60862
+ };
60863
+ query?: {
60864
+ /**
60865
+ * Abbreviation
60866
+ */
60867
+ abbreviation?: string;
60868
+ agreement_number?: string;
60869
+ archived?: boolean;
60870
+ backend_id?: string;
60871
+ /**
60872
+ * Contact details
60873
+ */
60874
+ contact_details?: string;
60875
+ /**
60876
+ * Return a list of customers where current user has project create permission.
60877
+ */
60878
+ current_user_has_project_create_permission?: boolean;
60879
+ /**
60880
+ * Multiple values may be separated by commas.
60881
+ */
60882
+ current_user_has_role?: Array<string>;
60883
+ /**
60884
+ * Name
60885
+ */
60886
+ name?: string;
60887
+ /**
60888
+ * Name (exact)
60889
+ */
60890
+ name_exact?: string;
60891
+ /**
60892
+ * Native name
60893
+ */
60894
+ native_name?: string;
60895
+ /**
60896
+ * Organization group name
60897
+ */
60898
+ organization_group_name?: string;
60899
+ /**
60900
+ * Organization group UUID
60901
+ */
60902
+ organization_group_uuid?: Array<string>;
60903
+ /**
60904
+ * Return a list of customers where current user is owner.
60905
+ */
60906
+ owned_by_current_user?: boolean;
60907
+ /**
60908
+ * A page number within the paginated result set.
60909
+ */
60910
+ page?: number;
60911
+ /**
60912
+ * Number of results to return per page.
60913
+ */
60914
+ page_size?: number;
60915
+ /**
60916
+ * Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
60917
+ */
60918
+ query?: string;
60919
+ registration_code?: string;
60920
+ /**
60921
+ * Slug
60922
+ */
60923
+ slug?: string;
60924
+ };
60925
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/';
60926
+ };
60927
+ export type MarketplaceServiceProvidersCustomersCountResponses = {
60928
+ /**
60929
+ * No response body
60930
+ */
60931
+ 200: unknown;
60932
+ };
60012
60933
  export type MarketplaceServiceProvidersKeysListData = {
60013
60934
  body?: never;
60014
60935
  path: {
@@ -60069,6 +60990,67 @@ export type MarketplaceServiceProvidersKeysListResponses = {
60069
60990
  200: Array<SshKey>;
60070
60991
  };
60071
60992
  export type MarketplaceServiceProvidersKeysListResponse = MarketplaceServiceProvidersKeysListResponses[keyof MarketplaceServiceProvidersKeysListResponses];
60993
+ export type MarketplaceServiceProvidersKeysCountData = {
60994
+ body?: never;
60995
+ path: {
60996
+ service_provider_uuid: string;
60997
+ };
60998
+ query?: {
60999
+ /**
61000
+ * Created after
61001
+ */
61002
+ created?: string;
61003
+ /**
61004
+ * Created before
61005
+ */
61006
+ created_before?: string;
61007
+ fingerprint_md5?: string;
61008
+ fingerprint_sha256?: string;
61009
+ fingerprint_sha512?: string;
61010
+ is_shared?: boolean;
61011
+ /**
61012
+ * Modified after
61013
+ */
61014
+ modified?: string;
61015
+ /**
61016
+ * Modified before
61017
+ */
61018
+ modified_before?: string;
61019
+ /**
61020
+ * Name
61021
+ */
61022
+ name?: string;
61023
+ /**
61024
+ * Name (exact)
61025
+ */
61026
+ name_exact?: string;
61027
+ /**
61028
+ * Ordering
61029
+ *
61030
+ *
61031
+ */
61032
+ o?: Array<SshKeyOEnum>;
61033
+ /**
61034
+ * A page number within the paginated result set.
61035
+ */
61036
+ page?: number;
61037
+ /**
61038
+ * Number of results to return per page.
61039
+ */
61040
+ page_size?: number;
61041
+ /**
61042
+ * User UUID
61043
+ */
61044
+ user_uuid?: string;
61045
+ };
61046
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/keys/';
61047
+ };
61048
+ export type MarketplaceServiceProvidersKeysCountResponses = {
61049
+ /**
61050
+ * No response body
61051
+ */
61052
+ 200: unknown;
61053
+ };
60072
61054
  export type MarketplaceServiceProvidersOfferingsListData = {
60073
61055
  body?: never;
60074
61056
  path: {
@@ -60120,7 +61102,373 @@ export type MarketplaceServiceProvidersOfferingsListData = {
60120
61102
  * Description contains
60121
61103
  */
60122
61104
  description?: string;
60123
- field?: Array<ProviderOfferingFieldEnum>;
61105
+ field?: Array<ProviderOfferingFieldEnum>;
61106
+ /**
61107
+ * Has Active Terms of Service
61108
+ */
61109
+ has_active_terms_of_service?: boolean;
61110
+ /**
61111
+ * Has Terms of Service
61112
+ */
61113
+ has_terms_of_service?: boolean;
61114
+ /**
61115
+ * Keyword
61116
+ */
61117
+ keyword?: string;
61118
+ /**
61119
+ * Modified after
61120
+ */
61121
+ modified?: string;
61122
+ /**
61123
+ * Modified before
61124
+ */
61125
+ modified_before?: string;
61126
+ /**
61127
+ * Name
61128
+ */
61129
+ name?: string;
61130
+ /**
61131
+ * Name (exact)
61132
+ */
61133
+ name_exact?: string;
61134
+ /**
61135
+ * Ordering
61136
+ *
61137
+ *
61138
+ */
61139
+ o?: Array<ProviderOfferingDetailsOEnum>;
61140
+ /**
61141
+ * Offering group UUID
61142
+ */
61143
+ offering_group_uuid?: string;
61144
+ /**
61145
+ * Organization group UUID
61146
+ */
61147
+ organization_group_uuid?: string;
61148
+ /**
61149
+ * A page number within the paginated result set.
61150
+ */
61151
+ page?: number;
61152
+ /**
61153
+ * Number of results to return per page.
61154
+ */
61155
+ page_size?: number;
61156
+ /**
61157
+ * Parent offering UUID
61158
+ */
61159
+ parent_uuid?: string;
61160
+ /**
61161
+ * Project UUID
61162
+ */
61163
+ project_uuid?: string;
61164
+ /**
61165
+ * Search by offering name, slug or description
61166
+ */
61167
+ query?: string;
61168
+ /**
61169
+ * Resource customer UUID
61170
+ */
61171
+ resource_customer_uuid?: string;
61172
+ /**
61173
+ * Resource project UUID
61174
+ */
61175
+ resource_project_uuid?: string;
61176
+ /**
61177
+ * Scope UUID
61178
+ */
61179
+ scope_uuid?: string;
61180
+ /**
61181
+ * Service manager UUID
61182
+ */
61183
+ service_manager_uuid?: string;
61184
+ /**
61185
+ * Shared
61186
+ */
61187
+ shared?: boolean;
61188
+ /**
61189
+ * Slug
61190
+ */
61191
+ slug?: string;
61192
+ /**
61193
+ * Offering state
61194
+ *
61195
+ *
61196
+ */
61197
+ state?: Array<OfferingState>;
61198
+ /**
61199
+ * Tag UUID (OR logic)
61200
+ */
61201
+ tag?: Array<string>;
61202
+ /**
61203
+ * Tag name (OR logic)
61204
+ */
61205
+ tag_name?: Array<string>;
61206
+ /**
61207
+ * Tag names with AND logic (comma-separated)
61208
+ */
61209
+ tag_names_and?: string;
61210
+ /**
61211
+ * Tag UUIDs with AND logic (comma-separated)
61212
+ */
61213
+ tags_and?: string;
61214
+ /**
61215
+ * Offering type
61216
+ */
61217
+ type?: Array<string>;
61218
+ /**
61219
+ * User Has Consent
61220
+ */
61221
+ user_has_consent?: boolean;
61222
+ /**
61223
+ * User Has Offering User
61224
+ */
61225
+ user_has_offering_user?: boolean;
61226
+ /**
61227
+ * Comma-separated offering UUIDs
61228
+ */
61229
+ uuid_list?: string;
61230
+ };
61231
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
61232
+ };
61233
+ export type MarketplaceServiceProvidersOfferingsListResponses = {
61234
+ 200: Array<ProviderOffering>;
61235
+ };
61236
+ export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
61237
+ export type MarketplaceServiceProvidersOfferingsCountData = {
61238
+ body?: never;
61239
+ path: {
61240
+ service_provider_uuid: string;
61241
+ };
61242
+ query?: {
61243
+ /**
61244
+ * Accessible via calls
61245
+ */
61246
+ accessible_via_calls?: boolean;
61247
+ /**
61248
+ * Allowed customer UUID
61249
+ */
61250
+ allowed_customer_uuid?: string;
61251
+ /**
61252
+ * Offering attributes (JSON)
61253
+ */
61254
+ attributes?: string;
61255
+ /**
61256
+ * Billable
61257
+ */
61258
+ billable?: boolean;
61259
+ can_create_offering_user?: boolean;
61260
+ /**
61261
+ * Category group UUID
61262
+ */
61263
+ category_group_uuid?: string;
61264
+ /**
61265
+ * Category UUID
61266
+ */
61267
+ category_uuid?: string;
61268
+ /**
61269
+ * Created after
61270
+ */
61271
+ created?: string;
61272
+ /**
61273
+ * Created before
61274
+ */
61275
+ created_before?: string;
61276
+ /**
61277
+ * Customer URL
61278
+ */
61279
+ customer?: string;
61280
+ /**
61281
+ * Customer UUID
61282
+ */
61283
+ customer_uuid?: string;
61284
+ /**
61285
+ * Description contains
61286
+ */
61287
+ description?: string;
61288
+ /**
61289
+ * Has Active Terms of Service
61290
+ */
61291
+ has_active_terms_of_service?: boolean;
61292
+ /**
61293
+ * Has Terms of Service
61294
+ */
61295
+ has_terms_of_service?: boolean;
61296
+ /**
61297
+ * Keyword
61298
+ */
61299
+ keyword?: string;
61300
+ /**
61301
+ * Modified after
61302
+ */
61303
+ modified?: string;
61304
+ /**
61305
+ * Modified before
61306
+ */
61307
+ modified_before?: string;
61308
+ /**
61309
+ * Name
61310
+ */
61311
+ name?: string;
61312
+ /**
61313
+ * Name (exact)
61314
+ */
61315
+ name_exact?: string;
61316
+ /**
61317
+ * Ordering
61318
+ *
61319
+ *
61320
+ */
61321
+ o?: Array<ProviderOfferingDetailsOEnum>;
61322
+ /**
61323
+ * Offering group UUID
61324
+ */
61325
+ offering_group_uuid?: string;
61326
+ /**
61327
+ * Organization group UUID
61328
+ */
61329
+ organization_group_uuid?: string;
61330
+ /**
61331
+ * A page number within the paginated result set.
61332
+ */
61333
+ page?: number;
61334
+ /**
61335
+ * Number of results to return per page.
61336
+ */
61337
+ page_size?: number;
61338
+ /**
61339
+ * Parent offering UUID
61340
+ */
61341
+ parent_uuid?: string;
61342
+ /**
61343
+ * Project UUID
61344
+ */
61345
+ project_uuid?: string;
61346
+ /**
61347
+ * Search by offering name, slug or description
61348
+ */
61349
+ query?: string;
61350
+ /**
61351
+ * Resource customer UUID
61352
+ */
61353
+ resource_customer_uuid?: string;
61354
+ /**
61355
+ * Resource project UUID
61356
+ */
61357
+ resource_project_uuid?: string;
61358
+ /**
61359
+ * Scope UUID
61360
+ */
61361
+ scope_uuid?: string;
61362
+ /**
61363
+ * Service manager UUID
61364
+ */
61365
+ service_manager_uuid?: string;
61366
+ /**
61367
+ * Shared
61368
+ */
61369
+ shared?: boolean;
61370
+ /**
61371
+ * Slug
61372
+ */
61373
+ slug?: string;
61374
+ /**
61375
+ * Offering state
61376
+ *
61377
+ *
61378
+ */
61379
+ state?: Array<OfferingState>;
61380
+ /**
61381
+ * Tag UUID (OR logic)
61382
+ */
61383
+ tag?: Array<string>;
61384
+ /**
61385
+ * Tag name (OR logic)
61386
+ */
61387
+ tag_name?: Array<string>;
61388
+ /**
61389
+ * Tag names with AND logic (comma-separated)
61390
+ */
61391
+ tag_names_and?: string;
61392
+ /**
61393
+ * Tag UUIDs with AND logic (comma-separated)
61394
+ */
61395
+ tags_and?: string;
61396
+ /**
61397
+ * Offering type
61398
+ */
61399
+ type?: Array<string>;
61400
+ /**
61401
+ * User Has Consent
61402
+ */
61403
+ user_has_consent?: boolean;
61404
+ /**
61405
+ * User Has Offering User
61406
+ */
61407
+ user_has_offering_user?: boolean;
61408
+ /**
61409
+ * Comma-separated offering UUIDs
61410
+ */
61411
+ uuid_list?: string;
61412
+ };
61413
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
61414
+ };
61415
+ export type MarketplaceServiceProvidersOfferingsCountResponses = {
61416
+ /**
61417
+ * No response body
61418
+ */
61419
+ 200: unknown;
61420
+ };
61421
+ export type MarketplaceServiceProvidersOfferingsTypesListData = {
61422
+ body?: never;
61423
+ path: {
61424
+ service_provider_uuid: string;
61425
+ };
61426
+ query?: {
61427
+ /**
61428
+ * Accessible via calls
61429
+ */
61430
+ accessible_via_calls?: boolean;
61431
+ /**
61432
+ * Allowed customer UUID
61433
+ */
61434
+ allowed_customer_uuid?: string;
61435
+ /**
61436
+ * Offering attributes (JSON)
61437
+ */
61438
+ attributes?: string;
61439
+ /**
61440
+ * Billable
61441
+ */
61442
+ billable?: boolean;
61443
+ can_create_offering_user?: boolean;
61444
+ /**
61445
+ * Category group UUID
61446
+ */
61447
+ category_group_uuid?: string;
61448
+ /**
61449
+ * Category UUID
61450
+ */
61451
+ category_uuid?: string;
61452
+ /**
61453
+ * Created after
61454
+ */
61455
+ created?: string;
61456
+ /**
61457
+ * Created before
61458
+ */
61459
+ created_before?: string;
61460
+ /**
61461
+ * Customer URL
61462
+ */
61463
+ customer?: string;
61464
+ /**
61465
+ * Customer UUID
61466
+ */
61467
+ customer_uuid?: string;
61468
+ /**
61469
+ * Description contains
61470
+ */
61471
+ description?: string;
60124
61472
  /**
60125
61473
  * Has Active Terms of Service
60126
61474
  */
@@ -60246,13 +61594,13 @@ export type MarketplaceServiceProvidersOfferingsListData = {
60246
61594
  */
60247
61595
  uuid_list?: string;
60248
61596
  };
60249
- url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/';
61597
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
60250
61598
  };
60251
- export type MarketplaceServiceProvidersOfferingsListResponses = {
60252
- 200: Array<ProviderOffering>;
61599
+ export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
61600
+ 200: Array<string>;
60253
61601
  };
60254
- export type MarketplaceServiceProvidersOfferingsListResponse = MarketplaceServiceProvidersOfferingsListResponses[keyof MarketplaceServiceProvidersOfferingsListResponses];
60255
- export type MarketplaceServiceProvidersOfferingsTypesListData = {
61602
+ export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
61603
+ export type MarketplaceServiceProvidersOfferingsTypesCountData = {
60256
61604
  body?: never;
60257
61605
  path: {
60258
61606
  service_provider_uuid: string;
@@ -60430,10 +61778,12 @@ export type MarketplaceServiceProvidersOfferingsTypesListData = {
60430
61778
  };
60431
61779
  url: '/api/marketplace-service-providers/{service_provider_uuid}/offerings/types/';
60432
61780
  };
60433
- export type MarketplaceServiceProvidersOfferingsTypesListResponses = {
60434
- 200: Array<string>;
61781
+ export type MarketplaceServiceProvidersOfferingsTypesCountResponses = {
61782
+ /**
61783
+ * No response body
61784
+ */
61785
+ 200: unknown;
60435
61786
  };
60436
- export type MarketplaceServiceProvidersOfferingsTypesListResponse = MarketplaceServiceProvidersOfferingsTypesListResponses[keyof MarketplaceServiceProvidersOfferingsTypesListResponses];
60437
61787
  export type MarketplaceServiceProvidersProjectPermissionsListData = {
60438
61788
  body?: never;
60439
61789
  path: {
@@ -60512,6 +61862,85 @@ export type MarketplaceServiceProvidersProjectPermissionsListResponses = {
60512
61862
  200: Array<ProjectPermissionLog>;
60513
61863
  };
60514
61864
  export type MarketplaceServiceProvidersProjectPermissionsListResponse = MarketplaceServiceProvidersProjectPermissionsListResponses[keyof MarketplaceServiceProvidersProjectPermissionsListResponses];
61865
+ export type MarketplaceServiceProvidersProjectPermissionsCountData = {
61866
+ body?: never;
61867
+ path: {
61868
+ service_provider_uuid: string;
61869
+ };
61870
+ query?: {
61871
+ /**
61872
+ * Created after
61873
+ */
61874
+ created?: string;
61875
+ /**
61876
+ * Created before
61877
+ */
61878
+ created_before?: string;
61879
+ expiration_time?: string;
61880
+ /**
61881
+ * User full name contains
61882
+ */
61883
+ full_name?: string;
61884
+ is_active?: boolean;
61885
+ /**
61886
+ * Modified after
61887
+ */
61888
+ modified?: string;
61889
+ /**
61890
+ * Modified before
61891
+ */
61892
+ modified_before?: string;
61893
+ native_name?: string;
61894
+ /**
61895
+ * Ordering
61896
+ *
61897
+ *
61898
+ */
61899
+ o?: Array<OfferingPermissionOEnum>;
61900
+ /**
61901
+ * A page number within the paginated result set.
61902
+ */
61903
+ page?: number;
61904
+ /**
61905
+ * Number of results to return per page.
61906
+ */
61907
+ page_size?: number;
61908
+ /**
61909
+ * Role name contains
61910
+ */
61911
+ role_name?: string;
61912
+ /**
61913
+ * Role UUID
61914
+ */
61915
+ role_uuid?: string;
61916
+ /**
61917
+ * Scope name
61918
+ */
61919
+ scope_name?: string;
61920
+ /**
61921
+ * Scope type
61922
+ */
61923
+ scope_type?: string;
61924
+ /**
61925
+ * Scope UUID
61926
+ */
61927
+ scope_uuid?: string;
61928
+ user?: string;
61929
+ /**
61930
+ * User slug contains
61931
+ */
61932
+ user_slug?: string;
61933
+ user_url?: string;
61934
+ username?: string;
61935
+ };
61936
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/project_permissions/';
61937
+ };
61938
+ export type MarketplaceServiceProvidersProjectPermissionsCountResponses = {
61939
+ /**
61940
+ * No response body
61941
+ */
61942
+ 200: unknown;
61943
+ };
60515
61944
  export type MarketplaceServiceProvidersProjectServiceAccountsListData = {
60516
61945
  body?: never;
60517
61946
  path: {
@@ -60555,6 +61984,51 @@ export type MarketplaceServiceProvidersProjectServiceAccountsListResponses = {
60555
61984
  200: Array<ProjectServiceAccount>;
60556
61985
  };
60557
61986
  export type MarketplaceServiceProvidersProjectServiceAccountsListResponse = MarketplaceServiceProvidersProjectServiceAccountsListResponses[keyof MarketplaceServiceProvidersProjectServiceAccountsListResponses];
61987
+ export type MarketplaceServiceProvidersProjectServiceAccountsCountData = {
61988
+ body?: never;
61989
+ path: {
61990
+ service_provider_uuid: string;
61991
+ };
61992
+ query?: {
61993
+ /**
61994
+ * Email contains
61995
+ */
61996
+ email?: string;
61997
+ /**
61998
+ * A page number within the paginated result set.
61999
+ */
62000
+ page?: number;
62001
+ /**
62002
+ * Number of results to return per page.
62003
+ */
62004
+ page_size?: number;
62005
+ /**
62006
+ * Project URL
62007
+ */
62008
+ project?: string;
62009
+ /**
62010
+ * Project UUID
62011
+ */
62012
+ project_uuid?: string;
62013
+ /**
62014
+ * Service account state
62015
+ *
62016
+ *
62017
+ */
62018
+ state?: Array<ServiceAccountState>;
62019
+ /**
62020
+ * Username
62021
+ */
62022
+ username?: string;
62023
+ };
62024
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/project_service_accounts/';
62025
+ };
62026
+ export type MarketplaceServiceProvidersProjectServiceAccountsCountResponses = {
62027
+ /**
62028
+ * No response body
62029
+ */
62030
+ 200: unknown;
62031
+ };
60558
62032
  export type MarketplaceServiceProvidersProjectsListData = {
60559
62033
  body?: never;
60560
62034
  path: {
@@ -60680,6 +62154,132 @@ export type MarketplaceServiceProvidersProjectsListResponses = {
60680
62154
  200: Array<Project>;
60681
62155
  };
60682
62156
  export type MarketplaceServiceProvidersProjectsListResponse = MarketplaceServiceProvidersProjectsListResponses[keyof MarketplaceServiceProvidersProjectsListResponses];
62157
+ export type MarketplaceServiceProvidersProjectsCountData = {
62158
+ body?: never;
62159
+ path: {
62160
+ service_provider_uuid: string;
62161
+ };
62162
+ query?: {
62163
+ /**
62164
+ * Affiliation name
62165
+ */
62166
+ affiliation_name?: string;
62167
+ /**
62168
+ * Affiliation UUID
62169
+ */
62170
+ affiliation_uuid?: Array<string>;
62171
+ backend_id?: string;
62172
+ /**
62173
+ * Return a list of projects where current user is admin.
62174
+ */
62175
+ can_admin?: boolean;
62176
+ /**
62177
+ * Return a list of projects where current user is manager or a customer owner.
62178
+ */
62179
+ can_manage?: boolean;
62180
+ /**
62181
+ * Conceal finished projects
62182
+ */
62183
+ conceal_finished_projects?: boolean;
62184
+ /**
62185
+ * Created after
62186
+ */
62187
+ created?: string;
62188
+ /**
62189
+ * Created before
62190
+ */
62191
+ created_before?: string;
62192
+ /**
62193
+ * Multiple values may be separated by commas.
62194
+ */
62195
+ current_user_has_role?: Array<string>;
62196
+ /**
62197
+ * Multiple values may be separated by commas.
62198
+ */
62199
+ customer?: Array<string>;
62200
+ /**
62201
+ * Customer abbreviation
62202
+ */
62203
+ customer_abbreviation?: string;
62204
+ /**
62205
+ * Customer name
62206
+ */
62207
+ customer_name?: string;
62208
+ /**
62209
+ * Customer native name
62210
+ */
62211
+ customer_native_name?: string;
62212
+ /**
62213
+ * Description
62214
+ */
62215
+ description?: string;
62216
+ /**
62217
+ * Filter projects that have an affiliation.
62218
+ */
62219
+ has_affiliation?: boolean;
62220
+ /**
62221
+ * Is removed
62222
+ */
62223
+ is_removed?: boolean;
62224
+ /**
62225
+ * Modified after
62226
+ */
62227
+ modified?: string;
62228
+ /**
62229
+ * Modified before
62230
+ */
62231
+ modified_before?: string;
62232
+ /**
62233
+ * Name
62234
+ */
62235
+ name?: string;
62236
+ /**
62237
+ * Name (exact)
62238
+ */
62239
+ name_exact?: string;
62240
+ /**
62241
+ * Ordering
62242
+ *
62243
+ *
62244
+ */
62245
+ o?: Array<MarketplaceProviderCustomerProjectOEnum>;
62246
+ /**
62247
+ * A page number within the paginated result set.
62248
+ */
62249
+ page?: number;
62250
+ /**
62251
+ * Number of results to return per page.
62252
+ */
62253
+ page_size?: number;
62254
+ /**
62255
+ * Filter by name, slug, UUID, backend ID or resource effective ID
62256
+ */
62257
+ query?: string;
62258
+ /**
62259
+ * Science domain UUID
62260
+ */
62261
+ science_domain_uuid?: string;
62262
+ /**
62263
+ * Science sub-domain UUID
62264
+ */
62265
+ science_sub_domain_uuid?: string;
62266
+ /**
62267
+ * Slug
62268
+ */
62269
+ slug?: string;
62270
+ /**
62271
+ * Filter projects where the given user has a role.
62272
+ */
62273
+ user_uuid_with_active_role?: string;
62274
+ };
62275
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/projects/';
62276
+ };
62277
+ export type MarketplaceServiceProvidersProjectsCountResponses = {
62278
+ /**
62279
+ * No response body
62280
+ */
62281
+ 200: unknown;
62282
+ };
60683
62283
  export type MarketplaceServiceProvidersUserCustomersListData = {
60684
62284
  body?: never;
60685
62285
  path: {
@@ -60758,6 +62358,85 @@ export type MarketplaceServiceProvidersUserCustomersListResponses = {
60758
62358
  200: Array<MarketplaceProviderCustomer>;
60759
62359
  };
60760
62360
  export type MarketplaceServiceProvidersUserCustomersListResponse = MarketplaceServiceProvidersUserCustomersListResponses[keyof MarketplaceServiceProvidersUserCustomersListResponses];
62361
+ export type MarketplaceServiceProvidersUserCustomersCountData = {
62362
+ body?: never;
62363
+ path: {
62364
+ service_provider_uuid: string;
62365
+ };
62366
+ query: {
62367
+ /**
62368
+ * Abbreviation
62369
+ */
62370
+ abbreviation?: string;
62371
+ agreement_number?: string;
62372
+ archived?: boolean;
62373
+ backend_id?: string;
62374
+ /**
62375
+ * Contact details
62376
+ */
62377
+ contact_details?: string;
62378
+ /**
62379
+ * Return a list of customers where current user has project create permission.
62380
+ */
62381
+ current_user_has_project_create_permission?: boolean;
62382
+ /**
62383
+ * Multiple values may be separated by commas.
62384
+ */
62385
+ current_user_has_role?: Array<string>;
62386
+ /**
62387
+ * Name
62388
+ */
62389
+ name?: string;
62390
+ /**
62391
+ * Name (exact)
62392
+ */
62393
+ name_exact?: string;
62394
+ /**
62395
+ * Native name
62396
+ */
62397
+ native_name?: string;
62398
+ /**
62399
+ * Organization group name
62400
+ */
62401
+ organization_group_name?: string;
62402
+ /**
62403
+ * Organization group UUID
62404
+ */
62405
+ organization_group_uuid?: Array<string>;
62406
+ /**
62407
+ * Return a list of customers where current user is owner.
62408
+ */
62409
+ owned_by_current_user?: boolean;
62410
+ /**
62411
+ * A page number within the paginated result set.
62412
+ */
62413
+ page?: number;
62414
+ /**
62415
+ * Number of results to return per page.
62416
+ */
62417
+ page_size?: number;
62418
+ /**
62419
+ * Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
62420
+ */
62421
+ query?: string;
62422
+ registration_code?: string;
62423
+ /**
62424
+ * Slug
62425
+ */
62426
+ slug?: string;
62427
+ /**
62428
+ * UUID of the user to get related customers for.
62429
+ */
62430
+ user_uuid: string;
62431
+ };
62432
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/user_customers/';
62433
+ };
62434
+ export type MarketplaceServiceProvidersUserCustomersCountResponses = {
62435
+ /**
62436
+ * No response body
62437
+ */
62438
+ 200: unknown;
62439
+ };
60761
62440
  export type MarketplaceServiceProvidersUsersListData = {
60762
62441
  body?: never;
60763
62442
  path: {
@@ -60866,6 +62545,115 @@ export type MarketplaceServiceProvidersUsersListResponses = {
60866
62545
  200: Array<MarketplaceServiceProviderUser>;
60867
62546
  };
60868
62547
  export type MarketplaceServiceProvidersUsersListResponse = MarketplaceServiceProvidersUsersListResponses[keyof MarketplaceServiceProvidersUsersListResponses];
62548
+ export type MarketplaceServiceProvidersUsersCountData = {
62549
+ body?: never;
62550
+ path: {
62551
+ service_provider_uuid: string;
62552
+ };
62553
+ query?: {
62554
+ /**
62555
+ * Agreement date after
62556
+ */
62557
+ agreement_date?: string;
62558
+ civil_number?: string;
62559
+ /**
62560
+ * Customer UUID
62561
+ */
62562
+ customer_uuid?: string;
62563
+ /**
62564
+ * Date joined after
62565
+ */
62566
+ date_joined?: string;
62567
+ description?: string;
62568
+ /**
62569
+ * Email
62570
+ */
62571
+ email?: string;
62572
+ /**
62573
+ * Full name
62574
+ */
62575
+ full_name?: string;
62576
+ /**
62577
+ * Is active
62578
+ */
62579
+ is_active?: boolean;
62580
+ /**
62581
+ * Is staff
62582
+ */
62583
+ is_staff?: boolean;
62584
+ /**
62585
+ * Is support
62586
+ */
62587
+ is_support?: boolean;
62588
+ /**
62589
+ * Job title
62590
+ */
62591
+ job_title?: string;
62592
+ /**
62593
+ * Date modified after
62594
+ */
62595
+ modified?: string;
62596
+ /**
62597
+ * Native name
62598
+ */
62599
+ native_name?: string;
62600
+ /**
62601
+ * Ordering
62602
+ *
62603
+ *
62604
+ */
62605
+ o?: Array<MarketplaceServiceProviderUserOEnum>;
62606
+ /**
62607
+ * Organization
62608
+ */
62609
+ organization?: string;
62610
+ /**
62611
+ * Organization roles
62612
+ */
62613
+ organization_roles?: string;
62614
+ /**
62615
+ * A page number within the paginated result set.
62616
+ */
62617
+ page?: number;
62618
+ /**
62619
+ * Number of results to return per page.
62620
+ */
62621
+ page_size?: number;
62622
+ phone_number?: string;
62623
+ /**
62624
+ * Project roles
62625
+ */
62626
+ project_roles?: string;
62627
+ /**
62628
+ * Project UUID
62629
+ */
62630
+ project_uuid?: string;
62631
+ /**
62632
+ * Filter by first name, last name, civil number, username or email
62633
+ */
62634
+ query?: string;
62635
+ registration_method?: string;
62636
+ /**
62637
+ * User keyword
62638
+ */
62639
+ user_keyword?: string;
62640
+ /**
62641
+ * Username (exact)
62642
+ */
62643
+ username?: string;
62644
+ /**
62645
+ * Comma-separated usernames
62646
+ */
62647
+ username_list?: string;
62648
+ };
62649
+ url: '/api/marketplace-service-providers/{service_provider_uuid}/users/';
62650
+ };
62651
+ export type MarketplaceServiceProvidersUsersCountResponses = {
62652
+ /**
62653
+ * No response body
62654
+ */
62655
+ 200: unknown;
62656
+ };
60869
62657
  export type MarketplaceServiceProvidersDestroyData = {
60870
62658
  body?: never;
60871
62659
  path: {
@@ -61048,6 +62836,69 @@ export type MarketplaceServiceProvidersListUsersListResponses = {
61048
62836
  200: Array<UserRoleDetails>;
61049
62837
  };
61050
62838
  export type MarketplaceServiceProvidersListUsersListResponse = MarketplaceServiceProvidersListUsersListResponses[keyof MarketplaceServiceProvidersListUsersListResponses];
62839
+ export type MarketplaceServiceProvidersListUsersCountData = {
62840
+ body?: never;
62841
+ path: {
62842
+ uuid: string;
62843
+ };
62844
+ query?: {
62845
+ /**
62846
+ * Fields to include in response
62847
+ */
62848
+ field?: Array<UserRoleDetailsFieldEnum>;
62849
+ /**
62850
+ * User full name
62851
+ */
62852
+ full_name?: string;
62853
+ /**
62854
+ * User native name
62855
+ */
62856
+ native_name?: string;
62857
+ /**
62858
+ * Ordering fields
62859
+ */
62860
+ o?: Array<UserRoleDetailsOEnum>;
62861
+ /**
62862
+ * A page number within the paginated result set.
62863
+ */
62864
+ page?: number;
62865
+ /**
62866
+ * Number of results to return per page.
62867
+ */
62868
+ page_size?: number;
62869
+ /**
62870
+ * Role UUID or name
62871
+ */
62872
+ role?: string;
62873
+ /**
62874
+ * Search string for user
62875
+ */
62876
+ search_string?: string;
62877
+ /**
62878
+ * User UUID
62879
+ */
62880
+ user?: string;
62881
+ /**
62882
+ * User slug
62883
+ */
62884
+ user_slug?: string;
62885
+ /**
62886
+ * User URL
62887
+ */
62888
+ user_url?: string;
62889
+ /**
62890
+ * User username
62891
+ */
62892
+ username?: string;
62893
+ };
62894
+ url: '/api/marketplace-service-providers/{uuid}/list_users/';
62895
+ };
62896
+ export type MarketplaceServiceProvidersListUsersCountResponses = {
62897
+ /**
62898
+ * No response body
62899
+ */
62900
+ 200: unknown;
62901
+ };
61051
62902
  export type MarketplaceServiceProvidersRevenueListData = {
61052
62903
  body?: never;
61053
62904
  path: {
@@ -68600,6 +70451,69 @@ export type OpenportalUnmanagedProjectsListUsersListResponses = {
68600
70451
  200: Array<UserRoleDetails>;
68601
70452
  };
68602
70453
  export type OpenportalUnmanagedProjectsListUsersListResponse = OpenportalUnmanagedProjectsListUsersListResponses[keyof OpenportalUnmanagedProjectsListUsersListResponses];
70454
+ export type OpenportalUnmanagedProjectsListUsersCountData = {
70455
+ body?: never;
70456
+ path: {
70457
+ uuid: string;
70458
+ };
70459
+ query?: {
70460
+ /**
70461
+ * Fields to include in response
70462
+ */
70463
+ field?: Array<UserRoleDetailsFieldEnum>;
70464
+ /**
70465
+ * User full name
70466
+ */
70467
+ full_name?: string;
70468
+ /**
70469
+ * User native name
70470
+ */
70471
+ native_name?: string;
70472
+ /**
70473
+ * Ordering fields
70474
+ */
70475
+ o?: Array<UserRoleDetailsOEnum>;
70476
+ /**
70477
+ * A page number within the paginated result set.
70478
+ */
70479
+ page?: number;
70480
+ /**
70481
+ * Number of results to return per page.
70482
+ */
70483
+ page_size?: number;
70484
+ /**
70485
+ * Role UUID or name
70486
+ */
70487
+ role?: string;
70488
+ /**
70489
+ * Search string for user
70490
+ */
70491
+ search_string?: string;
70492
+ /**
70493
+ * User UUID
70494
+ */
70495
+ user?: string;
70496
+ /**
70497
+ * User slug
70498
+ */
70499
+ user_slug?: string;
70500
+ /**
70501
+ * User URL
70502
+ */
70503
+ user_url?: string;
70504
+ /**
70505
+ * User username
70506
+ */
70507
+ username?: string;
70508
+ };
70509
+ url: '/api/openportal-unmanaged-projects/{uuid}/list_users/';
70510
+ };
70511
+ export type OpenportalUnmanagedProjectsListUsersCountResponses = {
70512
+ /**
70513
+ * No response body
70514
+ */
70515
+ 200: unknown;
70516
+ };
68603
70517
  export type OpenportalUnmanagedProjectsMoveProjectData = {
68604
70518
  body: MoveProjectRequest;
68605
70519
  path: {
@@ -77547,10 +79461,88 @@ export type ProjectsOtherUsersListData = {
77547
79461
  };
77548
79462
  url: '/api/projects/{project_uuid}/other_users/';
77549
79463
  };
77550
- export type ProjectsOtherUsersListResponses = {
77551
- 200: Array<BasicUser>;
79464
+ export type ProjectsOtherUsersListResponses = {
79465
+ 200: Array<BasicUser>;
79466
+ };
79467
+ export type ProjectsOtherUsersListResponse = ProjectsOtherUsersListResponses[keyof ProjectsOtherUsersListResponses];
79468
+ export type ProjectsOtherUsersCountData = {
79469
+ body?: never;
79470
+ path: {
79471
+ /**
79472
+ * UUID of the project
79473
+ */
79474
+ project_uuid: string;
79475
+ };
79476
+ query?: {
79477
+ /**
79478
+ * Agreement date after
79479
+ */
79480
+ agreement_date?: string;
79481
+ civil_number?: string;
79482
+ /**
79483
+ * Date joined after
79484
+ */
79485
+ date_joined?: string;
79486
+ description?: string;
79487
+ /**
79488
+ * Email
79489
+ */
79490
+ email?: string;
79491
+ /**
79492
+ * Full name
79493
+ */
79494
+ full_name?: string;
79495
+ /**
79496
+ * Is active
79497
+ */
79498
+ is_active?: boolean;
79499
+ /**
79500
+ * Job title
79501
+ */
79502
+ job_title?: string;
79503
+ /**
79504
+ * Date modified after
79505
+ */
79506
+ modified?: string;
79507
+ /**
79508
+ * Native name
79509
+ */
79510
+ native_name?: string;
79511
+ /**
79512
+ * Ordering. Sort by a combination of first name, last name, and username.
79513
+ */
79514
+ o?: CustomerUserOEnum;
79515
+ /**
79516
+ * Organization
79517
+ */
79518
+ organization?: string;
79519
+ /**
79520
+ * A page number within the paginated result set.
79521
+ */
79522
+ page?: number;
79523
+ /**
79524
+ * Number of results to return per page.
79525
+ */
79526
+ page_size?: number;
79527
+ phone_number?: string;
79528
+ registration_method?: string;
79529
+ /**
79530
+ * User keyword
79531
+ */
79532
+ user_keyword?: string;
79533
+ /**
79534
+ * Username
79535
+ */
79536
+ username?: string;
79537
+ };
79538
+ url: '/api/projects/{project_uuid}/other_users/';
79539
+ };
79540
+ export type ProjectsOtherUsersCountResponses = {
79541
+ /**
79542
+ * No response body
79543
+ */
79544
+ 200: unknown;
77552
79545
  };
77553
- export type ProjectsOtherUsersListResponse = ProjectsOtherUsersListResponses[keyof ProjectsOtherUsersListResponses];
77554
79546
  export type ProjectsDestroyData = {
77555
79547
  body?: never;
77556
79548
  path: {
@@ -77746,6 +79738,69 @@ export type ProjectsListUsersListResponses = {
77746
79738
  200: Array<UserRoleDetails>;
77747
79739
  };
77748
79740
  export type ProjectsListUsersListResponse = ProjectsListUsersListResponses[keyof ProjectsListUsersListResponses];
79741
+ export type ProjectsListUsersCountData = {
79742
+ body?: never;
79743
+ path: {
79744
+ uuid: string;
79745
+ };
79746
+ query?: {
79747
+ /**
79748
+ * Fields to include in response
79749
+ */
79750
+ field?: Array<UserRoleDetailsFieldEnum>;
79751
+ /**
79752
+ * User full name
79753
+ */
79754
+ full_name?: string;
79755
+ /**
79756
+ * User native name
79757
+ */
79758
+ native_name?: string;
79759
+ /**
79760
+ * Ordering fields
79761
+ */
79762
+ o?: Array<UserRoleDetailsOEnum>;
79763
+ /**
79764
+ * A page number within the paginated result set.
79765
+ */
79766
+ page?: number;
79767
+ /**
79768
+ * Number of results to return per page.
79769
+ */
79770
+ page_size?: number;
79771
+ /**
79772
+ * Role UUID or name
79773
+ */
79774
+ role?: string;
79775
+ /**
79776
+ * Search string for user
79777
+ */
79778
+ search_string?: string;
79779
+ /**
79780
+ * User UUID
79781
+ */
79782
+ user?: string;
79783
+ /**
79784
+ * User slug
79785
+ */
79786
+ user_slug?: string;
79787
+ /**
79788
+ * User URL
79789
+ */
79790
+ user_url?: string;
79791
+ /**
79792
+ * User username
79793
+ */
79794
+ username?: string;
79795
+ };
79796
+ url: '/api/projects/{uuid}/list_users/';
79797
+ };
79798
+ export type ProjectsListUsersCountResponses = {
79799
+ /**
79800
+ * No response body
79801
+ */
79802
+ 200: unknown;
79803
+ };
77749
79804
  export type ProjectsMoveProjectData = {
77750
79805
  body: MoveProjectRequest;
77751
79806
  path: {
@@ -78469,6 +80524,69 @@ export type ProposalProposalsListUsersListResponses = {
78469
80524
  200: Array<UserRoleDetails>;
78470
80525
  };
78471
80526
  export type ProposalProposalsListUsersListResponse = ProposalProposalsListUsersListResponses[keyof ProposalProposalsListUsersListResponses];
80527
+ export type ProposalProposalsListUsersCountData = {
80528
+ body?: never;
80529
+ path: {
80530
+ uuid: string;
80531
+ };
80532
+ query?: {
80533
+ /**
80534
+ * Fields to include in response
80535
+ */
80536
+ field?: Array<UserRoleDetailsFieldEnum>;
80537
+ /**
80538
+ * User full name
80539
+ */
80540
+ full_name?: string;
80541
+ /**
80542
+ * User native name
80543
+ */
80544
+ native_name?: string;
80545
+ /**
80546
+ * Ordering fields
80547
+ */
80548
+ o?: Array<UserRoleDetailsOEnum>;
80549
+ /**
80550
+ * A page number within the paginated result set.
80551
+ */
80552
+ page?: number;
80553
+ /**
80554
+ * Number of results to return per page.
80555
+ */
80556
+ page_size?: number;
80557
+ /**
80558
+ * Role UUID or name
80559
+ */
80560
+ role?: string;
80561
+ /**
80562
+ * Search string for user
80563
+ */
80564
+ search_string?: string;
80565
+ /**
80566
+ * User UUID
80567
+ */
80568
+ user?: string;
80569
+ /**
80570
+ * User slug
80571
+ */
80572
+ user_slug?: string;
80573
+ /**
80574
+ * User URL
80575
+ */
80576
+ user_url?: string;
80577
+ /**
80578
+ * User username
80579
+ */
80580
+ username?: string;
80581
+ };
80582
+ url: '/api/proposal-proposals/{uuid}/list_users/';
80583
+ };
80584
+ export type ProposalProposalsListUsersCountResponses = {
80585
+ /**
80586
+ * No response body
80587
+ */
80588
+ 200: unknown;
80589
+ };
78472
80590
  export type ProposalProposalsRejectData = {
78473
80591
  body?: ProposalApproveRequest;
78474
80592
  path: {
@@ -79196,6 +81314,69 @@ export type ProposalProtectedCallsListUsersListResponses = {
79196
81314
  200: Array<UserRoleDetails>;
79197
81315
  };
79198
81316
  export type ProposalProtectedCallsListUsersListResponse = ProposalProtectedCallsListUsersListResponses[keyof ProposalProtectedCallsListUsersListResponses];
81317
+ export type ProposalProtectedCallsListUsersCountData = {
81318
+ body?: never;
81319
+ path: {
81320
+ uuid: string;
81321
+ };
81322
+ query?: {
81323
+ /**
81324
+ * Fields to include in response
81325
+ */
81326
+ field?: Array<UserRoleDetailsFieldEnum>;
81327
+ /**
81328
+ * User full name
81329
+ */
81330
+ full_name?: string;
81331
+ /**
81332
+ * User native name
81333
+ */
81334
+ native_name?: string;
81335
+ /**
81336
+ * Ordering fields
81337
+ */
81338
+ o?: Array<UserRoleDetailsOEnum>;
81339
+ /**
81340
+ * A page number within the paginated result set.
81341
+ */
81342
+ page?: number;
81343
+ /**
81344
+ * Number of results to return per page.
81345
+ */
81346
+ page_size?: number;
81347
+ /**
81348
+ * Role UUID or name
81349
+ */
81350
+ role?: string;
81351
+ /**
81352
+ * Search string for user
81353
+ */
81354
+ search_string?: string;
81355
+ /**
81356
+ * User UUID
81357
+ */
81358
+ user?: string;
81359
+ /**
81360
+ * User slug
81361
+ */
81362
+ user_slug?: string;
81363
+ /**
81364
+ * User URL
81365
+ */
81366
+ user_url?: string;
81367
+ /**
81368
+ * User username
81369
+ */
81370
+ username?: string;
81371
+ };
81372
+ url: '/api/proposal-protected-calls/{uuid}/list_users/';
81373
+ };
81374
+ export type ProposalProtectedCallsListUsersCountResponses = {
81375
+ /**
81376
+ * No response body
81377
+ */
81378
+ 200: unknown;
81379
+ };
79199
81380
  export type ProposalProtectedCallsMatchingConfigurationRetrieveData = {
79200
81381
  body?: never;
79201
81382
  path: {
@@ -83989,6 +86170,32 @@ export type NestedReviewerProfileAffiliationsListResponses = {
83989
86170
  200: Array<ReviewerAffiliation>;
83990
86171
  };
83991
86172
  export type NestedReviewerProfileAffiliationsListResponse = NestedReviewerProfileAffiliationsListResponses[keyof NestedReviewerProfileAffiliationsListResponses];
86173
+ export type NestedReviewerProfileAffiliationsCountData = {
86174
+ body?: never;
86175
+ path: {
86176
+ /**
86177
+ * UUID of the parent reviewer profile
86178
+ */
86179
+ reviewer_profile_uuid: string;
86180
+ };
86181
+ query?: {
86182
+ /**
86183
+ * A page number within the paginated result set.
86184
+ */
86185
+ page?: number;
86186
+ /**
86187
+ * Number of results to return per page.
86188
+ */
86189
+ page_size?: number;
86190
+ };
86191
+ url: '/api/reviewer-profiles/{reviewer_profile_uuid}/affiliations/';
86192
+ };
86193
+ export type NestedReviewerProfileAffiliationsCountResponses = {
86194
+ /**
86195
+ * No response body
86196
+ */
86197
+ 200: unknown;
86198
+ };
83992
86199
  export type NestedReviewerProfileAffiliationsCreateData = {
83993
86200
  body: ReviewerAffiliationRequest;
83994
86201
  path: {
@@ -84095,6 +86302,32 @@ export type NestedReviewerProfileExpertiseListResponses = {
84095
86302
  200: Array<ReviewerExpertise>;
84096
86303
  };
84097
86304
  export type NestedReviewerProfileExpertiseListResponse = NestedReviewerProfileExpertiseListResponses[keyof NestedReviewerProfileExpertiseListResponses];
86305
+ export type NestedReviewerProfileExpertiseCountData = {
86306
+ body?: never;
86307
+ path: {
86308
+ /**
86309
+ * UUID of the parent reviewer profile
86310
+ */
86311
+ reviewer_profile_uuid: string;
86312
+ };
86313
+ query?: {
86314
+ /**
86315
+ * A page number within the paginated result set.
86316
+ */
86317
+ page?: number;
86318
+ /**
86319
+ * Number of results to return per page.
86320
+ */
86321
+ page_size?: number;
86322
+ };
86323
+ url: '/api/reviewer-profiles/{reviewer_profile_uuid}/expertise/';
86324
+ };
86325
+ export type NestedReviewerProfileExpertiseCountResponses = {
86326
+ /**
86327
+ * No response body
86328
+ */
86329
+ 200: unknown;
86330
+ };
84098
86331
  export type NestedReviewerProfileExpertiseCreateData = {
84099
86332
  body: ReviewerExpertiseRequest;
84100
86333
  path: {
@@ -84201,6 +86434,32 @@ export type NestedReviewerProfilePublicationsListResponses = {
84201
86434
  200: Array<ReviewerPublication>;
84202
86435
  };
84203
86436
  export type NestedReviewerProfilePublicationsListResponse = NestedReviewerProfilePublicationsListResponses[keyof NestedReviewerProfilePublicationsListResponses];
86437
+ export type NestedReviewerProfilePublicationsCountData = {
86438
+ body?: never;
86439
+ path: {
86440
+ /**
86441
+ * UUID of the parent reviewer profile
86442
+ */
86443
+ reviewer_profile_uuid: string;
86444
+ };
86445
+ query?: {
86446
+ /**
86447
+ * A page number within the paginated result set.
86448
+ */
86449
+ page?: number;
86450
+ /**
86451
+ * Number of results to return per page.
86452
+ */
86453
+ page_size?: number;
86454
+ };
86455
+ url: '/api/reviewer-profiles/{reviewer_profile_uuid}/publications/';
86456
+ };
86457
+ export type NestedReviewerProfilePublicationsCountResponses = {
86458
+ /**
86459
+ * No response body
86460
+ */
86461
+ 200: unknown;
86462
+ };
84204
86463
  export type NestedReviewerProfilePublicationsCreateData = {
84205
86464
  body: ReviewerPublicationRequest;
84206
86465
  path: {