waldur-js-client 7.7.7-dev.0 → 7.7.7-dev.2

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
@@ -1994,6 +1997,7 @@ export type Customer = {
1994
1997
  * Maximum number of service accounts allowed
1995
1998
  */
1996
1999
  readonly max_service_accounts?: number | null;
2000
+ readonly project_metadata_checklist?: string | null;
1997
2001
  name?: string;
1998
2002
  readonly slug?: string;
1999
2003
  native_name?: string;
@@ -3328,6 +3332,7 @@ export type MaintenanceAnnouncement = {
3328
3332
  readonly created_by: string | null;
3329
3333
  readonly affected_offerings: Array<MaintenanceAnnouncementOffering>;
3330
3334
  readonly service_provider_name: string;
3335
+ readonly backend_id: string;
3331
3336
  };
3332
3337
  export type MaintenanceAnnouncementOffering = {
3333
3338
  readonly url: string;
@@ -4553,8 +4558,6 @@ export type Offering = {
4553
4558
  readonly slug?: string;
4554
4559
  description?: string;
4555
4560
  full_description?: string;
4556
- terms_of_service?: string;
4557
- terms_of_service_link?: string;
4558
4561
  privacy_policy_link?: string;
4559
4562
  /**
4560
4563
  * Publicly accessible offering access URL
@@ -4722,8 +4725,6 @@ export type OfferingCreate = {
4722
4725
  readonly slug: string;
4723
4726
  description?: string;
4724
4727
  full_description?: string;
4725
- terms_of_service?: string;
4726
- terms_of_service_link?: string;
4727
4728
  privacy_policy_link?: string;
4728
4729
  /**
4729
4730
  * Publicly accessible offering access URL
@@ -4798,8 +4799,6 @@ export type OfferingCreateRequest = {
4798
4799
  name: string;
4799
4800
  description?: string;
4800
4801
  full_description?: string;
4801
- terms_of_service?: string;
4802
- terms_of_service_link?: string;
4803
4802
  privacy_policy_link?: string;
4804
4803
  /**
4805
4804
  * Publicly accessible offering access URL
@@ -4921,8 +4920,6 @@ export type OfferingOverviewUpdateRequest = {
4921
4920
  name: string;
4922
4921
  description?: string;
4923
4922
  full_description?: string;
4924
- terms_of_service?: string;
4925
- terms_of_service_link?: string;
4926
4923
  privacy_policy_link?: string;
4927
4924
  /**
4928
4925
  * Publicly accessible offering access URL
@@ -4997,6 +4994,53 @@ export type OfferingStatsCounter = {
4997
4994
  service_provider_uuid: string;
4998
4995
  count: number;
4999
4996
  };
4997
+ export type OfferingTermsOfService = {
4998
+ readonly uuid: string;
4999
+ readonly offering_uuid: string;
5000
+ readonly offering_name: string;
5001
+ terms_of_service?: string;
5002
+ terms_of_service_link?: string;
5003
+ version?: string;
5004
+ is_active?: boolean;
5005
+ /**
5006
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5007
+ */
5008
+ requires_reconsent?: boolean;
5009
+ readonly created: string;
5010
+ readonly modified: string;
5011
+ };
5012
+ export type OfferingTermsOfServiceCreate = {
5013
+ offering: string;
5014
+ terms_of_service?: string;
5015
+ terms_of_service_link?: string;
5016
+ version?: string;
5017
+ is_active?: boolean;
5018
+ /**
5019
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5020
+ */
5021
+ requires_reconsent?: boolean;
5022
+ };
5023
+ export type OfferingTermsOfServiceCreateRequest = {
5024
+ offering: string;
5025
+ terms_of_service?: string;
5026
+ terms_of_service_link?: string;
5027
+ version?: string;
5028
+ is_active?: boolean;
5029
+ /**
5030
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5031
+ */
5032
+ requires_reconsent?: boolean;
5033
+ };
5034
+ export type OfferingTermsOfServiceRequest = {
5035
+ terms_of_service?: string;
5036
+ terms_of_service_link?: string;
5037
+ version?: string;
5038
+ is_active?: boolean;
5039
+ /**
5040
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
5041
+ */
5042
+ requires_reconsent?: boolean;
5043
+ };
5000
5044
  export type OfferingThumbnailRequest = {
5001
5045
  thumbnail: Blob | File;
5002
5046
  };
@@ -6659,7 +6703,6 @@ export type OrderCreate = {
6659
6703
  readonly offering_image: string;
6660
6704
  readonly offering_thumbnail: string;
6661
6705
  readonly offering_type: string;
6662
- readonly offering_terms_of_service: string;
6663
6706
  /**
6664
6707
  * Accessible to all customers.
6665
6708
  */
@@ -6747,7 +6790,6 @@ export type OrderDetails = {
6747
6790
  readonly offering_image?: string;
6748
6791
  readonly offering_thumbnail?: string;
6749
6792
  readonly offering_type?: string;
6750
- readonly offering_terms_of_service?: string;
6751
6793
  /**
6752
6794
  * Accessible to all customers.
6753
6795
  */
@@ -7254,6 +7296,16 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
7254
7296
  period?: PeriodEnum;
7255
7297
  organization_groups?: Array<string>;
7256
7298
  };
7299
+ export type PatchedOfferingTermsOfServiceRequest = {
7300
+ terms_of_service?: string;
7301
+ terms_of_service_link?: string;
7302
+ version?: string;
7303
+ is_active?: boolean;
7304
+ /**
7305
+ * If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
7306
+ */
7307
+ requires_reconsent?: boolean;
7308
+ };
7257
7309
  export type PatchedOfferingUsagePolicyRequest = {
7258
7310
  scope?: string;
7259
7311
  actions?: string;
@@ -7788,6 +7840,9 @@ export type PatchedUserAgreementRequest = {
7788
7840
  content?: string;
7789
7841
  agreement_type?: AgreementTypeEnum;
7790
7842
  };
7843
+ export type PatchedUserOfferingConsentRequest = {
7844
+ version?: string;
7845
+ };
7791
7846
  export type PatchedUserRequest = {
7792
7847
  /**
7793
7848
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -8546,8 +8601,6 @@ export type ProviderOfferingDetails = {
8546
8601
  readonly slug?: string;
8547
8602
  description?: string;
8548
8603
  full_description?: string;
8549
- terms_of_service?: string;
8550
- terms_of_service_link?: string;
8551
8604
  privacy_policy_link?: string;
8552
8605
  /**
8553
8606
  * Publicly accessible offering access URL
@@ -8630,8 +8683,6 @@ export type ProviderOfferingDetailsRequest = {
8630
8683
  name: string;
8631
8684
  description?: string;
8632
8685
  full_description?: string;
8633
- terms_of_service?: string;
8634
- terms_of_service_link?: string;
8635
8686
  privacy_policy_link?: string;
8636
8687
  /**
8637
8688
  * Publicly accessible offering access URL
@@ -8847,8 +8898,6 @@ export type PublicOfferingDetails = {
8847
8898
  readonly slug?: string;
8848
8899
  description?: string;
8849
8900
  full_description?: string;
8850
- terms_of_service?: string;
8851
- terms_of_service_link?: string;
8852
8901
  privacy_policy_link?: string;
8853
8902
  /**
8854
8903
  * Publicly accessible offering access URL
@@ -9996,7 +10045,6 @@ export type Resource = {
9996
10045
  readonly offering_image?: string;
9997
10046
  readonly offering_thumbnail?: string;
9998
10047
  readonly offering_type?: string;
9999
- readonly offering_terms_of_service?: string;
10000
10048
  /**
10001
10049
  * Accessible to all customers.
10002
10050
  */
@@ -10087,6 +10135,10 @@ export type Resource = {
10087
10135
  readonly service_settings_uuid?: string;
10088
10136
  readonly project_slug?: string;
10089
10137
  readonly customer_slug?: string;
10138
+ /**
10139
+ * Check if the current user needs to re-consent for this resource's offering.
10140
+ */
10141
+ readonly user_requires_reconsent?: boolean;
10090
10142
  };
10091
10143
  export type ResourceBackendIdRequest = {
10092
10144
  backend_id?: string;
@@ -11123,6 +11175,39 @@ export type UserAuthToken = {
11123
11175
  export type UserEmailChangeRequest = {
11124
11176
  email: string;
11125
11177
  };
11178
+ export type UserOfferingConsent = {
11179
+ readonly uuid: string;
11180
+ readonly user_uuid: string;
11181
+ readonly offering_uuid: string;
11182
+ readonly agreement_date: string;
11183
+ version?: string;
11184
+ readonly revocation_date: string | null;
11185
+ readonly created: string;
11186
+ /**
11187
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
11188
+ */
11189
+ readonly user_username: string;
11190
+ readonly user_full_name: string;
11191
+ /**
11192
+ * Email address
11193
+ */
11194
+ readonly user_email: string;
11195
+ readonly offering_name: string;
11196
+ readonly offering_slug: string;
11197
+ readonly offering_url: string;
11198
+ readonly modified: string;
11199
+ readonly has_consent: boolean;
11200
+ readonly requires_reconsent: boolean;
11201
+ };
11202
+ export type UserOfferingConsentCreate = {
11203
+ offering: string;
11204
+ };
11205
+ export type UserOfferingConsentCreateRequest = {
11206
+ offering: string;
11207
+ };
11208
+ export type UserOfferingConsentRequest = {
11209
+ version?: string;
11210
+ };
11126
11211
  export type UserRequest = {
11127
11212
  /**
11128
11213
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -14274,7 +14359,7 @@ export type BookingOfferingsListData = {
14274
14359
  body?: never;
14275
14360
  path?: never;
14276
14361
  query?: {
14277
- 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'>;
14362
+ 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'>;
14278
14363
  /**
14279
14364
  * A page number within the paginated result set.
14280
14365
  */
@@ -14317,7 +14402,7 @@ export type BookingOfferingsRetrieveData = {
14317
14402
  uuid: string;
14318
14403
  };
14319
14404
  query?: {
14320
- 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'>;
14405
+ 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'>;
14321
14406
  };
14322
14407
  url: '/api/booking-offerings/{uuid}/';
14323
14408
  };
@@ -14384,7 +14469,7 @@ export type BookingResourcesListData = {
14384
14469
  customer?: string;
14385
14470
  customer_uuid?: string;
14386
14471
  downscaled?: boolean;
14387
- 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'>;
14472
+ 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'>;
14388
14473
  /**
14389
14474
  * Has termination date
14390
14475
  */
@@ -14542,7 +14627,7 @@ export type BookingResourcesRetrieveData = {
14542
14627
  uuid: string;
14543
14628
  };
14544
14629
  query?: {
14545
- 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'>;
14630
+ 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'>;
14546
14631
  };
14547
14632
  url: '/api/booking-resources/{uuid}/';
14548
14633
  };
@@ -16240,7 +16325,7 @@ export type CustomersListData = {
16240
16325
  archived?: boolean;
16241
16326
  backend_id?: string;
16242
16327
  contact_details?: string;
16243
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
16328
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
16244
16329
  name?: string;
16245
16330
  name_exact?: string;
16246
16331
  native_name?: string;
@@ -16355,7 +16440,7 @@ export type CustomersRetrieveData = {
16355
16440
  uuid: string;
16356
16441
  };
16357
16442
  query?: {
16358
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
16443
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
16359
16444
  };
16360
16445
  url: '/api/customers/{uuid}/';
16361
16446
  };
@@ -21678,6 +21763,129 @@ export type MarketplaceOfferingReferralsRetrieveResponses = {
21678
21763
  200: OfferingReferral;
21679
21764
  };
21680
21765
  export type MarketplaceOfferingReferralsRetrieveResponse = MarketplaceOfferingReferralsRetrieveResponses[keyof MarketplaceOfferingReferralsRetrieveResponses];
21766
+ export type MarketplaceOfferingTermsOfServiceListData = {
21767
+ body?: never;
21768
+ path?: never;
21769
+ query?: {
21770
+ is_active?: boolean;
21771
+ /**
21772
+ * Ordering
21773
+ *
21774
+ *
21775
+ */
21776
+ o?: Array<'-created' | '-modified' | '-version' | 'created' | 'modified' | 'version'>;
21777
+ offering?: string;
21778
+ offering_uuid?: string;
21779
+ /**
21780
+ * A page number within the paginated result set.
21781
+ */
21782
+ page?: number;
21783
+ /**
21784
+ * Number of results to return per page.
21785
+ */
21786
+ page_size?: number;
21787
+ requires_reconsent?: boolean;
21788
+ version?: string;
21789
+ };
21790
+ url: '/api/marketplace-offering-terms-of-service/';
21791
+ };
21792
+ export type MarketplaceOfferingTermsOfServiceListResponses = {
21793
+ 200: Array<OfferingTermsOfService>;
21794
+ };
21795
+ export type MarketplaceOfferingTermsOfServiceListResponse = MarketplaceOfferingTermsOfServiceListResponses[keyof MarketplaceOfferingTermsOfServiceListResponses];
21796
+ export type MarketplaceOfferingTermsOfServiceCountData = {
21797
+ body?: never;
21798
+ path?: never;
21799
+ query?: {
21800
+ is_active?: boolean;
21801
+ /**
21802
+ * Ordering
21803
+ *
21804
+ *
21805
+ */
21806
+ o?: Array<'-created' | '-modified' | '-version' | 'created' | 'modified' | 'version'>;
21807
+ offering?: string;
21808
+ offering_uuid?: string;
21809
+ /**
21810
+ * A page number within the paginated result set.
21811
+ */
21812
+ page?: number;
21813
+ /**
21814
+ * Number of results to return per page.
21815
+ */
21816
+ page_size?: number;
21817
+ requires_reconsent?: boolean;
21818
+ version?: string;
21819
+ };
21820
+ url: '/api/marketplace-offering-terms-of-service/';
21821
+ };
21822
+ export type MarketplaceOfferingTermsOfServiceCountResponses = {
21823
+ /**
21824
+ * No response body
21825
+ */
21826
+ 200: unknown;
21827
+ };
21828
+ export type MarketplaceOfferingTermsOfServiceCreateData = {
21829
+ body: OfferingTermsOfServiceCreateRequest;
21830
+ path?: never;
21831
+ query?: never;
21832
+ url: '/api/marketplace-offering-terms-of-service/';
21833
+ };
21834
+ export type MarketplaceOfferingTermsOfServiceCreateResponses = {
21835
+ 201: OfferingTermsOfServiceCreate;
21836
+ };
21837
+ export type MarketplaceOfferingTermsOfServiceCreateResponse = MarketplaceOfferingTermsOfServiceCreateResponses[keyof MarketplaceOfferingTermsOfServiceCreateResponses];
21838
+ export type MarketplaceOfferingTermsOfServiceDestroyData = {
21839
+ body?: never;
21840
+ path: {
21841
+ uuid: string;
21842
+ };
21843
+ query?: never;
21844
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21845
+ };
21846
+ export type MarketplaceOfferingTermsOfServiceDestroyResponses = {
21847
+ /**
21848
+ * No response body
21849
+ */
21850
+ 204: void;
21851
+ };
21852
+ export type MarketplaceOfferingTermsOfServiceDestroyResponse = MarketplaceOfferingTermsOfServiceDestroyResponses[keyof MarketplaceOfferingTermsOfServiceDestroyResponses];
21853
+ export type MarketplaceOfferingTermsOfServiceRetrieveData = {
21854
+ body?: never;
21855
+ path: {
21856
+ uuid: string;
21857
+ };
21858
+ query?: never;
21859
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21860
+ };
21861
+ export type MarketplaceOfferingTermsOfServiceRetrieveResponses = {
21862
+ 200: OfferingTermsOfService;
21863
+ };
21864
+ export type MarketplaceOfferingTermsOfServiceRetrieveResponse = MarketplaceOfferingTermsOfServiceRetrieveResponses[keyof MarketplaceOfferingTermsOfServiceRetrieveResponses];
21865
+ export type MarketplaceOfferingTermsOfServicePartialUpdateData = {
21866
+ body?: PatchedOfferingTermsOfServiceRequest;
21867
+ path: {
21868
+ uuid: string;
21869
+ };
21870
+ query?: never;
21871
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21872
+ };
21873
+ export type MarketplaceOfferingTermsOfServicePartialUpdateResponses = {
21874
+ 200: OfferingTermsOfService;
21875
+ };
21876
+ export type MarketplaceOfferingTermsOfServicePartialUpdateResponse = MarketplaceOfferingTermsOfServicePartialUpdateResponses[keyof MarketplaceOfferingTermsOfServicePartialUpdateResponses];
21877
+ export type MarketplaceOfferingTermsOfServiceUpdateData = {
21878
+ body?: OfferingTermsOfServiceRequest;
21879
+ path: {
21880
+ uuid: string;
21881
+ };
21882
+ query?: never;
21883
+ url: '/api/marketplace-offering-terms-of-service/{uuid}/';
21884
+ };
21885
+ export type MarketplaceOfferingTermsOfServiceUpdateResponses = {
21886
+ 200: OfferingTermsOfService;
21887
+ };
21888
+ export type MarketplaceOfferingTermsOfServiceUpdateResponse = MarketplaceOfferingTermsOfServiceUpdateResponses[keyof MarketplaceOfferingTermsOfServiceUpdateResponses];
21681
21889
  export type MarketplaceOfferingUsagePoliciesListData = {
21682
21890
  body?: never;
21683
21891
  path?: never;
@@ -22356,7 +22564,7 @@ export type MarketplaceOrdersListData = {
22356
22564
  */
22357
22565
  created?: string;
22358
22566
  customer_uuid?: string;
22359
- 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'>;
22567
+ 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'>;
22360
22568
  /**
22361
22569
  * Modified after
22362
22570
  */
@@ -22482,7 +22690,7 @@ export type MarketplaceOrdersRetrieveData = {
22482
22690
  uuid: string;
22483
22691
  };
22484
22692
  query?: {
22485
- 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'>;
22693
+ 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'>;
22486
22694
  };
22487
22695
  url: '/api/marketplace-orders/{uuid}/';
22488
22696
  };
@@ -23316,7 +23524,7 @@ export type MarketplaceProviderOfferingsListData = {
23316
23524
  customer?: string;
23317
23525
  customer_uuid?: string;
23318
23526
  description?: string;
23319
- 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'>;
23527
+ 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'>;
23320
23528
  /**
23321
23529
  * Keyword
23322
23530
  */
@@ -23493,7 +23701,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
23493
23701
  uuid: string;
23494
23702
  };
23495
23703
  query?: {
23496
- 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'>;
23704
+ 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'>;
23497
23705
  };
23498
23706
  url: '/api/marketplace-provider-offerings/{uuid}/';
23499
23707
  };
@@ -23991,7 +24199,7 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveData
23991
24199
  uuid: string;
23992
24200
  };
23993
24201
  query?: {
23994
- 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'>;
24202
+ 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'>;
23995
24203
  };
23996
24204
  url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
23997
24205
  };
@@ -24026,7 +24234,7 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveData =
24026
24234
  uuid: string;
24027
24235
  };
24028
24236
  query?: {
24029
- 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'>;
24237
+ 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'>;
24030
24238
  };
24031
24239
  url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
24032
24240
  };
@@ -24199,7 +24407,7 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
24199
24407
  uuid: string;
24200
24408
  };
24201
24409
  query?: {
24202
- 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'>;
24410
+ 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'>;
24203
24411
  };
24204
24412
  url: '/api/marketplace-provider-offerings/{uuid}/stats/';
24205
24413
  };
@@ -24405,7 +24613,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
24405
24613
  uuid: string;
24406
24614
  };
24407
24615
  query: {
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' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
24616
+ 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'>;
24409
24617
  /**
24410
24618
  * Username of the user to check.
24411
24619
  */
@@ -24601,7 +24809,7 @@ export type MarketplaceProviderResourcesListData = {
24601
24809
  customer?: string;
24602
24810
  customer_uuid?: string;
24603
24811
  downscaled?: boolean;
24604
- 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'>;
24812
+ 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'>;
24605
24813
  /**
24606
24814
  * Has termination date
24607
24815
  */
@@ -24758,7 +24966,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
24758
24966
  uuid: string;
24759
24967
  };
24760
24968
  query?: {
24761
- 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'>;
24969
+ 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'>;
24762
24970
  };
24763
24971
  url: '/api/marketplace-provider-resources/{uuid}/';
24764
24972
  };
@@ -24796,7 +25004,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
24796
25004
  uuid: string;
24797
25005
  };
24798
25006
  query?: {
24799
- 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'>;
25007
+ 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'>;
24800
25008
  };
24801
25009
  url: '/api/marketplace-provider-resources/{uuid}/details/';
24802
25010
  };
@@ -25089,7 +25297,7 @@ export type MarketplacePublicOfferingsListData = {
25089
25297
  customer?: string;
25090
25298
  customer_uuid?: string;
25091
25299
  description?: string;
25092
- 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'>;
25300
+ 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'>;
25093
25301
  /**
25094
25302
  * Keyword
25095
25303
  */
@@ -25241,7 +25449,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
25241
25449
  uuid: string;
25242
25450
  };
25243
25451
  query?: {
25244
- 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'>;
25452
+ 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'>;
25245
25453
  };
25246
25454
  url: '/api/marketplace-public-offerings/{uuid}/';
25247
25455
  };
@@ -25536,7 +25744,7 @@ export type MarketplaceResourcesListData = {
25536
25744
  customer?: string;
25537
25745
  customer_uuid?: string;
25538
25746
  downscaled?: boolean;
25539
- 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'>;
25747
+ 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'>;
25540
25748
  /**
25541
25749
  * Has termination date
25542
25750
  */
@@ -25693,7 +25901,7 @@ export type MarketplaceResourcesRetrieveData = {
25693
25901
  uuid: string;
25694
25902
  };
25695
25903
  query?: {
25696
- 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'>;
25904
+ 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'>;
25697
25905
  };
25698
25906
  url: '/api/marketplace-resources/{uuid}/';
25699
25907
  };
@@ -25731,7 +25939,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
25731
25939
  uuid: string;
25732
25940
  };
25733
25941
  query?: {
25734
- 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'>;
25942
+ 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'>;
25735
25943
  };
25736
25944
  url: '/api/marketplace-resources/{uuid}/details/';
25737
25945
  };
@@ -28182,6 +28390,145 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
28182
28390
  */
28183
28391
  200: unknown;
28184
28392
  };
28393
+ export type MarketplaceUserOfferingConsentsListData = {
28394
+ body?: never;
28395
+ path?: never;
28396
+ query?: {
28397
+ has_consent?: boolean;
28398
+ /**
28399
+ * Ordering
28400
+ *
28401
+ *
28402
+ */
28403
+ o?: Array<'-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date'>;
28404
+ offering?: string;
28405
+ offering_uuid?: string;
28406
+ /**
28407
+ * A page number within the paginated result set.
28408
+ */
28409
+ page?: number;
28410
+ /**
28411
+ * Number of results to return per page.
28412
+ */
28413
+ page_size?: number;
28414
+ requires_reconsent?: boolean;
28415
+ user?: string;
28416
+ user_uuid?: string;
28417
+ version?: string;
28418
+ };
28419
+ url: '/api/marketplace-user-offering-consents/';
28420
+ };
28421
+ export type MarketplaceUserOfferingConsentsListResponses = {
28422
+ 200: Array<UserOfferingConsent>;
28423
+ };
28424
+ export type MarketplaceUserOfferingConsentsListResponse = MarketplaceUserOfferingConsentsListResponses[keyof MarketplaceUserOfferingConsentsListResponses];
28425
+ export type MarketplaceUserOfferingConsentsCountData = {
28426
+ body?: never;
28427
+ path?: never;
28428
+ query?: {
28429
+ has_consent?: boolean;
28430
+ /**
28431
+ * Ordering
28432
+ *
28433
+ *
28434
+ */
28435
+ o?: Array<'-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date'>;
28436
+ offering?: string;
28437
+ offering_uuid?: string;
28438
+ /**
28439
+ * A page number within the paginated result set.
28440
+ */
28441
+ page?: number;
28442
+ /**
28443
+ * Number of results to return per page.
28444
+ */
28445
+ page_size?: number;
28446
+ requires_reconsent?: boolean;
28447
+ user?: string;
28448
+ user_uuid?: string;
28449
+ version?: string;
28450
+ };
28451
+ url: '/api/marketplace-user-offering-consents/';
28452
+ };
28453
+ export type MarketplaceUserOfferingConsentsCountResponses = {
28454
+ /**
28455
+ * No response body
28456
+ */
28457
+ 200: unknown;
28458
+ };
28459
+ export type MarketplaceUserOfferingConsentsCreateData = {
28460
+ body: UserOfferingConsentCreateRequest;
28461
+ path?: never;
28462
+ query?: never;
28463
+ url: '/api/marketplace-user-offering-consents/';
28464
+ };
28465
+ export type MarketplaceUserOfferingConsentsCreateResponses = {
28466
+ 201: UserOfferingConsentCreate;
28467
+ };
28468
+ export type MarketplaceUserOfferingConsentsCreateResponse = MarketplaceUserOfferingConsentsCreateResponses[keyof MarketplaceUserOfferingConsentsCreateResponses];
28469
+ export type MarketplaceUserOfferingConsentsDestroyData = {
28470
+ body?: never;
28471
+ path: {
28472
+ uuid: string;
28473
+ };
28474
+ query?: never;
28475
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28476
+ };
28477
+ export type MarketplaceUserOfferingConsentsDestroyResponses = {
28478
+ /**
28479
+ * No response body
28480
+ */
28481
+ 204: void;
28482
+ };
28483
+ export type MarketplaceUserOfferingConsentsDestroyResponse = MarketplaceUserOfferingConsentsDestroyResponses[keyof MarketplaceUserOfferingConsentsDestroyResponses];
28484
+ export type MarketplaceUserOfferingConsentsRetrieveData = {
28485
+ body?: never;
28486
+ path: {
28487
+ uuid: string;
28488
+ };
28489
+ query?: never;
28490
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28491
+ };
28492
+ export type MarketplaceUserOfferingConsentsRetrieveResponses = {
28493
+ 200: UserOfferingConsent;
28494
+ };
28495
+ export type MarketplaceUserOfferingConsentsRetrieveResponse = MarketplaceUserOfferingConsentsRetrieveResponses[keyof MarketplaceUserOfferingConsentsRetrieveResponses];
28496
+ export type MarketplaceUserOfferingConsentsPartialUpdateData = {
28497
+ body?: PatchedUserOfferingConsentRequest;
28498
+ path: {
28499
+ uuid: string;
28500
+ };
28501
+ query?: never;
28502
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28503
+ };
28504
+ export type MarketplaceUserOfferingConsentsPartialUpdateResponses = {
28505
+ 200: UserOfferingConsent;
28506
+ };
28507
+ export type MarketplaceUserOfferingConsentsPartialUpdateResponse = MarketplaceUserOfferingConsentsPartialUpdateResponses[keyof MarketplaceUserOfferingConsentsPartialUpdateResponses];
28508
+ export type MarketplaceUserOfferingConsentsUpdateData = {
28509
+ body?: UserOfferingConsentRequest;
28510
+ path: {
28511
+ uuid: string;
28512
+ };
28513
+ query?: never;
28514
+ url: '/api/marketplace-user-offering-consents/{uuid}/';
28515
+ };
28516
+ export type MarketplaceUserOfferingConsentsUpdateResponses = {
28517
+ 200: UserOfferingConsent;
28518
+ };
28519
+ export type MarketplaceUserOfferingConsentsUpdateResponse = MarketplaceUserOfferingConsentsUpdateResponses[keyof MarketplaceUserOfferingConsentsUpdateResponses];
28520
+ export type MarketplaceUserOfferingConsentsRevokeData = {
28521
+ body?: never;
28522
+ path: {
28523
+ uuid: string;
28524
+ };
28525
+ query?: never;
28526
+ url: '/api/marketplace-user-offering-consents/{uuid}/revoke/';
28527
+ };
28528
+ export type MarketplaceUserOfferingConsentsRevokeResponses = {
28529
+ 200: UserOfferingConsent;
28530
+ };
28531
+ export type MarketplaceUserOfferingConsentsRevokeResponse = MarketplaceUserOfferingConsentsRevokeResponses[keyof MarketplaceUserOfferingConsentsRevokeResponses];
28185
28532
  export type MediaRetrieveData = {
28186
28533
  body?: never;
28187
28534
  path: {