waldur-js-client 7.7.6 → 7.7.7-dev.1

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.
@@ -864,7 +864,6 @@ export type BookingResource = {
864
864
  readonly offering_image?: string;
865
865
  readonly offering_thumbnail?: string;
866
866
  readonly offering_type?: string;
867
- readonly offering_terms_of_service?: string;
868
867
  /**
869
868
  * Accessible to all customers.
870
869
  */
@@ -955,6 +954,10 @@ export type BookingResource = {
955
954
  readonly service_settings_uuid?: string;
956
955
  readonly project_slug?: string;
957
956
  readonly customer_slug?: string;
957
+ /**
958
+ * Check if the current user needs to re-consent for this resource's offering.
959
+ */
960
+ readonly user_requires_reconsent?: boolean;
958
961
  readonly created_by?: string;
959
962
  /**
960
963
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -2651,6 +2654,10 @@ export type GroupInvitation = {
2651
2654
  readonly created: string;
2652
2655
  readonly expires: string;
2653
2656
  readonly is_active: boolean;
2657
+ /**
2658
+ * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
2659
+ */
2660
+ is_public?: boolean;
2654
2661
  /**
2655
2662
  * Create project and grant project permissions instead of customer permissions
2656
2663
  */
@@ -2662,10 +2669,15 @@ export type GroupInvitation = {
2662
2669
  project_role?: string | null;
2663
2670
  user_affiliations?: unknown;
2664
2671
  user_email_patterns?: unknown;
2672
+ readonly scope_image: string | null;
2665
2673
  };
2666
2674
  export type GroupInvitationRequest = {
2667
2675
  role: string;
2668
2676
  scope: string;
2677
+ /**
2678
+ * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
2679
+ */
2680
+ is_public?: boolean;
2669
2681
  /**
2670
2682
  * Create project and grant project permissions instead of customer permissions
2671
2683
  */
@@ -4544,8 +4556,6 @@ export type Offering = {
4544
4556
  readonly slug?: string;
4545
4557
  description?: string;
4546
4558
  full_description?: string;
4547
- terms_of_service?: string;
4548
- terms_of_service_link?: string;
4549
4559
  privacy_policy_link?: string;
4550
4560
  /**
4551
4561
  * Publicly accessible offering access URL
@@ -4713,8 +4723,6 @@ export type OfferingCreate = {
4713
4723
  readonly slug: string;
4714
4724
  description?: string;
4715
4725
  full_description?: string;
4716
- terms_of_service?: string;
4717
- terms_of_service_link?: string;
4718
4726
  privacy_policy_link?: string;
4719
4727
  /**
4720
4728
  * Publicly accessible offering access URL
@@ -4789,8 +4797,6 @@ export type OfferingCreateRequest = {
4789
4797
  name: string;
4790
4798
  description?: string;
4791
4799
  full_description?: string;
4792
- terms_of_service?: string;
4793
- terms_of_service_link?: string;
4794
4800
  privacy_policy_link?: string;
4795
4801
  /**
4796
4802
  * Publicly accessible offering access URL
@@ -4912,8 +4918,6 @@ export type OfferingOverviewUpdateRequest = {
4912
4918
  name: string;
4913
4919
  description?: string;
4914
4920
  full_description?: string;
4915
- terms_of_service?: string;
4916
- terms_of_service_link?: string;
4917
4921
  privacy_policy_link?: string;
4918
4922
  /**
4919
4923
  * Publicly accessible offering access URL
@@ -4988,6 +4992,53 @@ export type OfferingStatsCounter = {
4988
4992
  service_provider_uuid: string;
4989
4993
  count: number;
4990
4994
  };
4995
+ export type OfferingTermsOfService = {
4996
+ readonly uuid: string;
4997
+ readonly offering_uuid: string;
4998
+ readonly offering_name: string;
4999
+ terms_of_service?: string;
5000
+ terms_of_service_link?: string;
5001
+ version?: string;
5002
+ is_active?: boolean;
5003
+ /**
5004
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5005
+ */
5006
+ requires_reconsent?: boolean;
5007
+ readonly created: string;
5008
+ readonly modified: string;
5009
+ };
5010
+ export type OfferingTermsOfServiceCreate = {
5011
+ offering: string;
5012
+ terms_of_service?: string;
5013
+ terms_of_service_link?: string;
5014
+ version?: string;
5015
+ is_active?: boolean;
5016
+ /**
5017
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5018
+ */
5019
+ requires_reconsent?: boolean;
5020
+ };
5021
+ export type OfferingTermsOfServiceCreateRequest = {
5022
+ offering: string;
5023
+ terms_of_service?: string;
5024
+ terms_of_service_link?: string;
5025
+ version?: string;
5026
+ is_active?: boolean;
5027
+ /**
5028
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5029
+ */
5030
+ requires_reconsent?: boolean;
5031
+ };
5032
+ export type OfferingTermsOfServiceRequest = {
5033
+ terms_of_service?: string;
5034
+ terms_of_service_link?: string;
5035
+ version?: string;
5036
+ is_active?: boolean;
5037
+ /**
5038
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5039
+ */
5040
+ requires_reconsent?: boolean;
5041
+ };
4991
5042
  export type OfferingThumbnailRequest = {
4992
5043
  thumbnail: Blob | File;
4993
5044
  };
@@ -6650,7 +6701,6 @@ export type OrderCreate = {
6650
6701
  readonly offering_image: string;
6651
6702
  readonly offering_thumbnail: string;
6652
6703
  readonly offering_type: string;
6653
- readonly offering_terms_of_service: string;
6654
6704
  /**
6655
6705
  * Accessible to all customers.
6656
6706
  */
@@ -6738,7 +6788,6 @@ export type OrderDetails = {
6738
6788
  readonly offering_image?: string;
6739
6789
  readonly offering_thumbnail?: string;
6740
6790
  readonly offering_type?: string;
6741
- readonly offering_terms_of_service?: string;
6742
6791
  /**
6743
6792
  * Accessible to all customers.
6744
6793
  */
@@ -7245,6 +7294,16 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
7245
7294
  period?: PeriodEnum;
7246
7295
  organization_groups?: Array<string>;
7247
7296
  };
7297
+ export type PatchedOfferingTermsOfServiceRequest = {
7298
+ terms_of_service?: string;
7299
+ terms_of_service_link?: string;
7300
+ version?: string;
7301
+ is_active?: boolean;
7302
+ /**
7303
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
7304
+ */
7305
+ requires_reconsent?: boolean;
7306
+ };
7248
7307
  export type PatchedOfferingUsagePolicyRequest = {
7249
7308
  scope?: string;
7250
7309
  actions?: string;
@@ -7779,6 +7838,9 @@ export type PatchedUserAgreementRequest = {
7779
7838
  content?: string;
7780
7839
  agreement_type?: AgreementTypeEnum;
7781
7840
  };
7841
+ export type PatchedUserOfferingConsentRequest = {
7842
+ version?: string;
7843
+ };
7782
7844
  export type PatchedUserRequest = {
7783
7845
  /**
7784
7846
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -8537,8 +8599,6 @@ export type ProviderOfferingDetails = {
8537
8599
  readonly slug?: string;
8538
8600
  description?: string;
8539
8601
  full_description?: string;
8540
- terms_of_service?: string;
8541
- terms_of_service_link?: string;
8542
8602
  privacy_policy_link?: string;
8543
8603
  /**
8544
8604
  * Publicly accessible offering access URL
@@ -8621,8 +8681,6 @@ export type ProviderOfferingDetailsRequest = {
8621
8681
  name: string;
8622
8682
  description?: string;
8623
8683
  full_description?: string;
8624
- terms_of_service?: string;
8625
- terms_of_service_link?: string;
8626
8684
  privacy_policy_link?: string;
8627
8685
  /**
8628
8686
  * Publicly accessible offering access URL
@@ -8838,8 +8896,6 @@ export type PublicOfferingDetails = {
8838
8896
  readonly slug?: string;
8839
8897
  description?: string;
8840
8898
  full_description?: string;
8841
- terms_of_service?: string;
8842
- terms_of_service_link?: string;
8843
8899
  privacy_policy_link?: string;
8844
8900
  /**
8845
8901
  * Publicly accessible offering access URL
@@ -9987,7 +10043,6 @@ export type Resource = {
9987
10043
  readonly offering_image?: string;
9988
10044
  readonly offering_thumbnail?: string;
9989
10045
  readonly offering_type?: string;
9990
- readonly offering_terms_of_service?: string;
9991
10046
  /**
9992
10047
  * Accessible to all customers.
9993
10048
  */
@@ -10078,6 +10133,10 @@ export type Resource = {
10078
10133
  readonly service_settings_uuid?: string;
10079
10134
  readonly project_slug?: string;
10080
10135
  readonly customer_slug?: string;
10136
+ /**
10137
+ * Check if the current user needs to re-consent for this resource's offering.
10138
+ */
10139
+ readonly user_requires_reconsent?: boolean;
10081
10140
  };
10082
10141
  export type ResourceBackendIdRequest = {
10083
10142
  backend_id?: string;
@@ -11114,6 +11173,39 @@ export type UserAuthToken = {
11114
11173
  export type UserEmailChangeRequest = {
11115
11174
  email: string;
11116
11175
  };
11176
+ export type UserOfferingConsent = {
11177
+ readonly uuid: string;
11178
+ readonly user_uuid: string;
11179
+ readonly offering_uuid: string;
11180
+ readonly agreement_date: string;
11181
+ version?: string;
11182
+ readonly revocation_date: string | null;
11183
+ readonly created: string;
11184
+ /**
11185
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
11186
+ */
11187
+ readonly user_username: string;
11188
+ readonly user_full_name: string;
11189
+ /**
11190
+ * Email address
11191
+ */
11192
+ readonly user_email: string;
11193
+ readonly offering_name: string;
11194
+ readonly offering_slug: string;
11195
+ readonly offering_url: string;
11196
+ readonly modified: string;
11197
+ readonly has_consent: boolean;
11198
+ readonly requires_reconsent: boolean;
11199
+ };
11200
+ export type UserOfferingConsentCreate = {
11201
+ offering: string;
11202
+ };
11203
+ export type UserOfferingConsentCreateRequest = {
11204
+ offering: string;
11205
+ };
11206
+ export type UserOfferingConsentRequest = {
11207
+ version?: string;
11208
+ };
11117
11209
  export type UserRequest = {
11118
11210
  /**
11119
11211
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -14265,7 +14357,7 @@ export type BookingOfferingsListData = {
14265
14357
  body?: never;
14266
14358
  path?: never;
14267
14359
  query?: {
14268
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
14360
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
14269
14361
  /**
14270
14362
  * A page number within the paginated result set.
14271
14363
  */
@@ -14308,7 +14400,7 @@ export type BookingOfferingsRetrieveData = {
14308
14400
  uuid: string;
14309
14401
  };
14310
14402
  query?: {
14311
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
14403
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
14312
14404
  };
14313
14405
  url: '/api/booking-offerings/{uuid}/';
14314
14406
  };
@@ -14375,7 +14467,7 @@ export type BookingResourcesListData = {
14375
14467
  customer?: string;
14376
14468
  customer_uuid?: string;
14377
14469
  downscaled?: boolean;
14378
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
14470
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
14379
14471
  /**
14380
14472
  * Has termination date
14381
14473
  */
@@ -14533,7 +14625,7 @@ export type BookingResourcesRetrieveData = {
14533
14625
  uuid: string;
14534
14626
  };
14535
14627
  query?: {
14536
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
14628
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
14537
14629
  };
14538
14630
  url: '/api/booking-resources/{uuid}/';
14539
14631
  };
@@ -21669,6 +21761,129 @@ export type MarketplaceOfferingReferralsRetrieveResponses = {
21669
21761
  200: OfferingReferral;
21670
21762
  };
21671
21763
  export type MarketplaceOfferingReferralsRetrieveResponse = MarketplaceOfferingReferralsRetrieveResponses[keyof MarketplaceOfferingReferralsRetrieveResponses];
21764
+ export type MarketplaceOfferingTermsOfServiceListData = {
21765
+ body?: never;
21766
+ path?: never;
21767
+ query?: {
21768
+ is_active?: boolean;
21769
+ /**
21770
+ * Ordering
21771
+ *
21772
+ *
21773
+ */
21774
+ o?: Array<'-created' | '-modified' | '-version' | 'created' | 'modified' | 'version'>;
21775
+ offering?: string;
21776
+ offering_uuid?: string;
21777
+ /**
21778
+ * A page number within the paginated result set.
21779
+ */
21780
+ page?: number;
21781
+ /**
21782
+ * Number of results to return per page.
21783
+ */
21784
+ page_size?: number;
21785
+ requires_reconsent?: boolean;
21786
+ version?: string;
21787
+ };
21788
+ url: '/api/marketplace-offering-terms-of-service/';
21789
+ };
21790
+ export type MarketplaceOfferingTermsOfServiceListResponses = {
21791
+ 200: Array<OfferingTermsOfService>;
21792
+ };
21793
+ export type MarketplaceOfferingTermsOfServiceListResponse = MarketplaceOfferingTermsOfServiceListResponses[keyof MarketplaceOfferingTermsOfServiceListResponses];
21794
+ export type MarketplaceOfferingTermsOfServiceCountData = {
21795
+ body?: never;
21796
+ path?: never;
21797
+ query?: {
21798
+ is_active?: boolean;
21799
+ /**
21800
+ * Ordering
21801
+ *
21802
+ *
21803
+ */
21804
+ o?: Array<'-created' | '-modified' | '-version' | 'created' | 'modified' | 'version'>;
21805
+ offering?: string;
21806
+ offering_uuid?: string;
21807
+ /**
21808
+ * A page number within the paginated result set.
21809
+ */
21810
+ page?: number;
21811
+ /**
21812
+ * Number of results to return per page.
21813
+ */
21814
+ page_size?: number;
21815
+ requires_reconsent?: boolean;
21816
+ version?: string;
21817
+ };
21818
+ url: '/api/marketplace-offering-terms-of-service/';
21819
+ };
21820
+ export type MarketplaceOfferingTermsOfServiceCountResponses = {
21821
+ /**
21822
+ * No response body
21823
+ */
21824
+ 200: unknown;
21825
+ };
21826
+ export type MarketplaceOfferingTermsOfServiceCreateData = {
21827
+ body: OfferingTermsOfServiceCreateRequest;
21828
+ path?: never;
21829
+ query?: never;
21830
+ url: '/api/marketplace-offering-terms-of-service/';
21831
+ };
21832
+ export type MarketplaceOfferingTermsOfServiceCreateResponses = {
21833
+ 201: OfferingTermsOfServiceCreate;
21834
+ };
21835
+ export type MarketplaceOfferingTermsOfServiceCreateResponse = MarketplaceOfferingTermsOfServiceCreateResponses[keyof MarketplaceOfferingTermsOfServiceCreateResponses];
21836
+ export type MarketplaceOfferingTermsOfServiceDestroyData = {
21837
+ body?: never;
21838
+ path: {
21839
+ uuid: string;
21840
+ };
21841
+ query?: never;
21842
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21843
+ };
21844
+ export type MarketplaceOfferingTermsOfServiceDestroyResponses = {
21845
+ /**
21846
+ * No response body
21847
+ */
21848
+ 204: void;
21849
+ };
21850
+ export type MarketplaceOfferingTermsOfServiceDestroyResponse = MarketplaceOfferingTermsOfServiceDestroyResponses[keyof MarketplaceOfferingTermsOfServiceDestroyResponses];
21851
+ export type MarketplaceOfferingTermsOfServiceRetrieveData = {
21852
+ body?: never;
21853
+ path: {
21854
+ uuid: string;
21855
+ };
21856
+ query?: never;
21857
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21858
+ };
21859
+ export type MarketplaceOfferingTermsOfServiceRetrieveResponses = {
21860
+ 200: OfferingTermsOfService;
21861
+ };
21862
+ export type MarketplaceOfferingTermsOfServiceRetrieveResponse = MarketplaceOfferingTermsOfServiceRetrieveResponses[keyof MarketplaceOfferingTermsOfServiceRetrieveResponses];
21863
+ export type MarketplaceOfferingTermsOfServicePartialUpdateData = {
21864
+ body?: PatchedOfferingTermsOfServiceRequest;
21865
+ path: {
21866
+ uuid: string;
21867
+ };
21868
+ query?: never;
21869
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21870
+ };
21871
+ export type MarketplaceOfferingTermsOfServicePartialUpdateResponses = {
21872
+ 200: OfferingTermsOfService;
21873
+ };
21874
+ export type MarketplaceOfferingTermsOfServicePartialUpdateResponse = MarketplaceOfferingTermsOfServicePartialUpdateResponses[keyof MarketplaceOfferingTermsOfServicePartialUpdateResponses];
21875
+ export type MarketplaceOfferingTermsOfServiceUpdateData = {
21876
+ body?: OfferingTermsOfServiceRequest;
21877
+ path: {
21878
+ uuid: string;
21879
+ };
21880
+ query?: never;
21881
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21882
+ };
21883
+ export type MarketplaceOfferingTermsOfServiceUpdateResponses = {
21884
+ 200: OfferingTermsOfService;
21885
+ };
21886
+ export type MarketplaceOfferingTermsOfServiceUpdateResponse = MarketplaceOfferingTermsOfServiceUpdateResponses[keyof MarketplaceOfferingTermsOfServiceUpdateResponses];
21672
21887
  export type MarketplaceOfferingUsagePoliciesListData = {
21673
21888
  body?: never;
21674
21889
  path?: never;
@@ -22347,7 +22562,7 @@ export type MarketplaceOrdersListData = {
22347
22562
  */
22348
22563
  created?: string;
22349
22564
  customer_uuid?: string;
22350
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
22565
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
22351
22566
  /**
22352
22567
  * Modified after
22353
22568
  */
@@ -22473,7 +22688,7 @@ export type MarketplaceOrdersRetrieveData = {
22473
22688
  uuid: string;
22474
22689
  };
22475
22690
  query?: {
22476
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
22691
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
22477
22692
  };
22478
22693
  url: '/api/marketplace-orders/{uuid}/';
22479
22694
  };
@@ -23307,7 +23522,7 @@ export type MarketplaceProviderOfferingsListData = {
23307
23522
  customer?: string;
23308
23523
  customer_uuid?: string;
23309
23524
  description?: string;
23310
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
23525
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
23311
23526
  /**
23312
23527
  * Keyword
23313
23528
  */
@@ -23484,7 +23699,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
23484
23699
  uuid: string;
23485
23700
  };
23486
23701
  query?: {
23487
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
23702
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
23488
23703
  };
23489
23704
  url: '/api/marketplace-provider-offerings/{uuid}/';
23490
23705
  };
@@ -23982,7 +24197,7 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveData
23982
24197
  uuid: string;
23983
24198
  };
23984
24199
  query?: {
23985
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24200
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
23986
24201
  };
23987
24202
  url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
23988
24203
  };
@@ -24017,7 +24232,7 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveData =
24017
24232
  uuid: string;
24018
24233
  };
24019
24234
  query?: {
24020
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24235
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24021
24236
  };
24022
24237
  url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
24023
24238
  };
@@ -24190,7 +24405,7 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
24190
24405
  uuid: string;
24191
24406
  };
24192
24407
  query?: {
24193
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24408
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24194
24409
  };
24195
24410
  url: '/api/marketplace-provider-offerings/{uuid}/stats/';
24196
24411
  };
@@ -24396,7 +24611,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
24396
24611
  uuid: string;
24397
24612
  };
24398
24613
  query: {
24399
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24614
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24400
24615
  /**
24401
24616
  * Username of the user to check.
24402
24617
  */
@@ -24592,7 +24807,7 @@ export type MarketplaceProviderResourcesListData = {
24592
24807
  customer?: string;
24593
24808
  customer_uuid?: string;
24594
24809
  downscaled?: boolean;
24595
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
24810
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
24596
24811
  /**
24597
24812
  * Has termination date
24598
24813
  */
@@ -24749,7 +24964,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
24749
24964
  uuid: string;
24750
24965
  };
24751
24966
  query?: {
24752
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
24967
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
24753
24968
  };
24754
24969
  url: '/api/marketplace-provider-resources/{uuid}/';
24755
24970
  };
@@ -24787,7 +25002,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
24787
25002
  uuid: string;
24788
25003
  };
24789
25004
  query?: {
24790
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
25005
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
24791
25006
  };
24792
25007
  url: '/api/marketplace-provider-resources/{uuid}/details/';
24793
25008
  };
@@ -25080,7 +25295,7 @@ export type MarketplacePublicOfferingsListData = {
25080
25295
  customer?: string;
25081
25296
  customer_uuid?: string;
25082
25297
  description?: string;
25083
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
25298
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
25084
25299
  /**
25085
25300
  * Keyword
25086
25301
  */
@@ -25232,7 +25447,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
25232
25447
  uuid: string;
25233
25448
  };
25234
25449
  query?: {
25235
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
25450
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
25236
25451
  };
25237
25452
  url: '/api/marketplace-public-offerings/{uuid}/';
25238
25453
  };
@@ -25527,7 +25742,7 @@ export type MarketplaceResourcesListData = {
25527
25742
  customer?: string;
25528
25743
  customer_uuid?: string;
25529
25744
  downscaled?: boolean;
25530
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
25745
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
25531
25746
  /**
25532
25747
  * Has termination date
25533
25748
  */
@@ -25684,7 +25899,7 @@ export type MarketplaceResourcesRetrieveData = {
25684
25899
  uuid: string;
25685
25900
  };
25686
25901
  query?: {
25687
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
25902
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
25688
25903
  };
25689
25904
  url: '/api/marketplace-resources/{uuid}/';
25690
25905
  };
@@ -25722,7 +25937,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
25722
25937
  uuid: string;
25723
25938
  };
25724
25939
  query?: {
25725
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_terms_of_service' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'username' | 'uuid'>;
25940
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
25726
25941
  };
25727
25942
  url: '/api/marketplace-resources/{uuid}/details/';
25728
25943
  };
@@ -28173,6 +28388,145 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
28173
28388
  */
28174
28389
  200: unknown;
28175
28390
  };
28391
+ export type MarketplaceUserOfferingConsentsListData = {
28392
+ body?: never;
28393
+ path?: never;
28394
+ query?: {
28395
+ has_consent?: boolean;
28396
+ /**
28397
+ * Ordering
28398
+ *
28399
+ *
28400
+ */
28401
+ o?: Array<'-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date'>;
28402
+ offering?: string;
28403
+ offering_uuid?: string;
28404
+ /**
28405
+ * A page number within the paginated result set.
28406
+ */
28407
+ page?: number;
28408
+ /**
28409
+ * Number of results to return per page.
28410
+ */
28411
+ page_size?: number;
28412
+ requires_reconsent?: boolean;
28413
+ user?: string;
28414
+ user_uuid?: string;
28415
+ version?: string;
28416
+ };
28417
+ url: '/api/marketplace-user-offering-consents/';
28418
+ };
28419
+ export type MarketplaceUserOfferingConsentsListResponses = {
28420
+ 200: Array<UserOfferingConsent>;
28421
+ };
28422
+ export type MarketplaceUserOfferingConsentsListResponse = MarketplaceUserOfferingConsentsListResponses[keyof MarketplaceUserOfferingConsentsListResponses];
28423
+ export type MarketplaceUserOfferingConsentsCountData = {
28424
+ body?: never;
28425
+ path?: never;
28426
+ query?: {
28427
+ has_consent?: boolean;
28428
+ /**
28429
+ * Ordering
28430
+ *
28431
+ *
28432
+ */
28433
+ o?: Array<'-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date'>;
28434
+ offering?: string;
28435
+ offering_uuid?: string;
28436
+ /**
28437
+ * A page number within the paginated result set.
28438
+ */
28439
+ page?: number;
28440
+ /**
28441
+ * Number of results to return per page.
28442
+ */
28443
+ page_size?: number;
28444
+ requires_reconsent?: boolean;
28445
+ user?: string;
28446
+ user_uuid?: string;
28447
+ version?: string;
28448
+ };
28449
+ url: '/api/marketplace-user-offering-consents/';
28450
+ };
28451
+ export type MarketplaceUserOfferingConsentsCountResponses = {
28452
+ /**
28453
+ * No response body
28454
+ */
28455
+ 200: unknown;
28456
+ };
28457
+ export type MarketplaceUserOfferingConsentsCreateData = {
28458
+ body: UserOfferingConsentCreateRequest;
28459
+ path?: never;
28460
+ query?: never;
28461
+ url: '/api/marketplace-user-offering-consents/';
28462
+ };
28463
+ export type MarketplaceUserOfferingConsentsCreateResponses = {
28464
+ 201: UserOfferingConsentCreate;
28465
+ };
28466
+ export type MarketplaceUserOfferingConsentsCreateResponse = MarketplaceUserOfferingConsentsCreateResponses[keyof MarketplaceUserOfferingConsentsCreateResponses];
28467
+ export type MarketplaceUserOfferingConsentsDestroyData = {
28468
+ body?: never;
28469
+ path: {
28470
+ uuid: string;
28471
+ };
28472
+ query?: never;
28473
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28474
+ };
28475
+ export type MarketplaceUserOfferingConsentsDestroyResponses = {
28476
+ /**
28477
+ * No response body
28478
+ */
28479
+ 204: void;
28480
+ };
28481
+ export type MarketplaceUserOfferingConsentsDestroyResponse = MarketplaceUserOfferingConsentsDestroyResponses[keyof MarketplaceUserOfferingConsentsDestroyResponses];
28482
+ export type MarketplaceUserOfferingConsentsRetrieveData = {
28483
+ body?: never;
28484
+ path: {
28485
+ uuid: string;
28486
+ };
28487
+ query?: never;
28488
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28489
+ };
28490
+ export type MarketplaceUserOfferingConsentsRetrieveResponses = {
28491
+ 200: UserOfferingConsent;
28492
+ };
28493
+ export type MarketplaceUserOfferingConsentsRetrieveResponse = MarketplaceUserOfferingConsentsRetrieveResponses[keyof MarketplaceUserOfferingConsentsRetrieveResponses];
28494
+ export type MarketplaceUserOfferingConsentsPartialUpdateData = {
28495
+ body?: PatchedUserOfferingConsentRequest;
28496
+ path: {
28497
+ uuid: string;
28498
+ };
28499
+ query?: never;
28500
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28501
+ };
28502
+ export type MarketplaceUserOfferingConsentsPartialUpdateResponses = {
28503
+ 200: UserOfferingConsent;
28504
+ };
28505
+ export type MarketplaceUserOfferingConsentsPartialUpdateResponse = MarketplaceUserOfferingConsentsPartialUpdateResponses[keyof MarketplaceUserOfferingConsentsPartialUpdateResponses];
28506
+ export type MarketplaceUserOfferingConsentsUpdateData = {
28507
+ body?: UserOfferingConsentRequest;
28508
+ path: {
28509
+ uuid: string;
28510
+ };
28511
+ query?: never;
28512
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28513
+ };
28514
+ export type MarketplaceUserOfferingConsentsUpdateResponses = {
28515
+ 200: UserOfferingConsent;
28516
+ };
28517
+ export type MarketplaceUserOfferingConsentsUpdateResponse = MarketplaceUserOfferingConsentsUpdateResponses[keyof MarketplaceUserOfferingConsentsUpdateResponses];
28518
+ export type MarketplaceUserOfferingConsentsRevokeData = {
28519
+ body?: never;
28520
+ path: {
28521
+ uuid: string;
28522
+ };
28523
+ query?: never;
28524
+ url: '/api/marketplace-user-offering-consents/{uuid}/revoke/';
28525
+ };
28526
+ export type MarketplaceUserOfferingConsentsRevokeResponses = {
28527
+ 200: UserOfferingConsent;
28528
+ };
28529
+ export type MarketplaceUserOfferingConsentsRevokeResponse = MarketplaceUserOfferingConsentsRevokeResponses[keyof MarketplaceUserOfferingConsentsRevokeResponses];
28176
28530
  export type MediaRetrieveData = {
28177
28531
  body?: never;
28178
28532
  path: {