waldur-js-client 8.0.9-dev.8 → 8.0.9-dev.9

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.
@@ -4899,6 +4899,12 @@ export type ConstanceSettings = {
4899
4899
  SCIM_API_URL?: string;
4900
4900
  SCIM_API_KEY?: string;
4901
4901
  SCIM_URN_NAMESPACE?: string;
4902
+ SCIM_INBOUND_ENABLED?: boolean;
4903
+ SCIM_INBOUND_SOURCE_NAME?: string;
4904
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
4905
+ SCIM_PULL_API_URL?: string;
4906
+ SCIM_PULL_API_KEY?: string;
4907
+ SCIM_PULL_SOURCE_NAME?: string;
4902
4908
  KEYCLOAK_ICON?: string | null;
4903
4909
  COUNTRIES?: Array<string>;
4904
4910
  OIDC_AUTH_URL?: string;
@@ -5169,6 +5175,12 @@ export type ConstanceSettingsRequest = {
5169
5175
  SCIM_API_URL?: string;
5170
5176
  SCIM_API_KEY?: string;
5171
5177
  SCIM_URN_NAMESPACE?: string;
5178
+ SCIM_INBOUND_ENABLED?: boolean;
5179
+ SCIM_INBOUND_SOURCE_NAME?: string;
5180
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
5181
+ SCIM_PULL_API_URL?: string;
5182
+ SCIM_PULL_API_KEY?: string;
5183
+ SCIM_PULL_SOURCE_NAME?: string;
5172
5184
  KEYCLOAK_ICON?: (Blob | File) | null;
5173
5185
  COUNTRIES?: Array<string>;
5174
5186
  OIDC_AUTH_URL?: string;
@@ -11840,6 +11852,9 @@ export type Offering = {
11840
11852
  compliance_checklist?: string | null;
11841
11853
  readonly profile_uuid?: string | null;
11842
11854
  readonly profile_name?: string | null;
11855
+ readonly offering_group?: string | null;
11856
+ readonly offering_group_uuid?: string | null;
11857
+ readonly offering_group_title?: string | null;
11843
11858
  readonly user_has_consent?: boolean;
11844
11859
  readonly is_accessible?: boolean;
11845
11860
  googlecalendar?: GoogleCalendar;
@@ -12069,6 +12084,7 @@ export type OfferingCreateRequest = {
12069
12084
  image?: (Blob | File) | null;
12070
12085
  backend_metadata?: unknown;
12071
12086
  compliance_checklist?: string | null;
12087
+ offering_group?: string | null;
12072
12088
  limits?: {
12073
12089
  [key: string]: OfferingComponentLimitRequest;
12074
12090
  };
@@ -12228,6 +12244,29 @@ export type OfferingFileRequest = {
12228
12244
  offering: string;
12229
12245
  file: Blob | File;
12230
12246
  };
12247
+ export type OfferingGroup = {
12248
+ readonly url?: string;
12249
+ readonly uuid?: string;
12250
+ readonly created?: string;
12251
+ title?: string;
12252
+ description?: string;
12253
+ icon?: string | null;
12254
+ customer?: string;
12255
+ readonly customer_uuid?: string;
12256
+ readonly customer_name?: string;
12257
+ };
12258
+ export type OfferingGroupAssignRequest = {
12259
+ /**
12260
+ * OfferingGroup UUID. Pass null to remove the assignment.
12261
+ */
12262
+ offering_group: string | null;
12263
+ };
12264
+ export type OfferingGroupRequest = {
12265
+ title: string;
12266
+ description?: string;
12267
+ icon?: (Blob | File) | null;
12268
+ customer: string;
12269
+ };
12231
12270
  export type OfferingGroups = {
12232
12271
  readonly customer_name: string;
12233
12272
  readonly customer_uuid: string;
@@ -16686,6 +16725,11 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
16686
16725
  */
16687
16726
  apply_to_all?: boolean;
16688
16727
  };
16728
+ export type PatchedOfferingGroupRequest = {
16729
+ title?: string;
16730
+ description?: string;
16731
+ icon?: (Blob | File) | null;
16732
+ };
16689
16733
  export type PatchedOfferingPartitionUpdateRequest = {
16690
16734
  partition_uuid?: string;
16691
16735
  /**
@@ -19592,6 +19636,8 @@ export type ProviderOffering = {
19592
19636
  resource_options?: unknown;
19593
19637
  secret_options?: MergedSecretOptions;
19594
19638
  thumbnail?: string | null;
19639
+ readonly offering_group_uuid?: string | null;
19640
+ readonly offering_group_title?: string | null;
19595
19641
  };
19596
19642
  export type ProviderOfferingCosts = {
19597
19643
  /**
@@ -19724,6 +19770,9 @@ export type ProviderOfferingDetails = {
19724
19770
  compliance_checklist?: string | null;
19725
19771
  readonly profile_uuid?: string | null;
19726
19772
  readonly profile_name?: string | null;
19773
+ readonly offering_group?: string | null;
19774
+ readonly offering_group_uuid?: string | null;
19775
+ readonly offering_group_title?: string | null;
19727
19776
  readonly integration_status?: Array<IntegrationStatus> | null;
19728
19777
  readonly google_calendar_is_public?: boolean | null;
19729
19778
  /**
@@ -20079,6 +20128,9 @@ export type PublicOfferingDetails = {
20079
20128
  compliance_checklist?: string | null;
20080
20129
  readonly profile_uuid?: string | null;
20081
20130
  readonly profile_name?: string | null;
20131
+ readonly offering_group?: string | null;
20132
+ readonly offering_group_uuid?: string | null;
20133
+ readonly offering_group_title?: string | null;
20082
20134
  readonly user_has_consent?: boolean;
20083
20135
  readonly is_accessible?: boolean;
20084
20136
  readonly google_calendar_is_public?: boolean | null;
@@ -23676,6 +23728,10 @@ export type ScienceSubDomainRequest = {
23676
23728
  name: string;
23677
23729
  domain: string;
23678
23730
  };
23731
+ export type ScimPullAttributesResponse = {
23732
+ detail: string;
23733
+ changed_fields?: Array<string>;
23734
+ };
23679
23735
  export type ScimSyncAllResponse = {
23680
23736
  detail: string;
23681
23737
  };
@@ -27282,6 +27338,28 @@ export type OfferingFileRequestMultipart = {
27282
27338
  offering: string;
27283
27339
  file: Blob | File;
27284
27340
  };
27341
+ export type OfferingGroupRequestForm = {
27342
+ title: string;
27343
+ description?: string;
27344
+ icon?: (Blob | File) | null;
27345
+ customer: string;
27346
+ };
27347
+ export type OfferingGroupRequestMultipart = {
27348
+ title: string;
27349
+ description?: string;
27350
+ icon?: (Blob | File) | null;
27351
+ customer: string;
27352
+ };
27353
+ export type PatchedOfferingGroupRequestForm = {
27354
+ title?: string;
27355
+ description?: string;
27356
+ icon?: (Blob | File) | null;
27357
+ };
27358
+ export type PatchedOfferingGroupRequestMultipart = {
27359
+ title?: string;
27360
+ description?: string;
27361
+ icon?: (Blob | File) | null;
27362
+ };
27285
27363
  export type OrderConsumerInfoRequestForm = {
27286
27364
  consumer_message?: string;
27287
27365
  consumer_message_attachment?: Blob | File;
@@ -27357,6 +27435,7 @@ export type OfferingCreateRequestForm = {
27357
27435
  image?: (Blob | File) | null;
27358
27436
  backend_metadata?: unknown;
27359
27437
  compliance_checklist?: string | null;
27438
+ offering_group?: string | null;
27360
27439
  limits?: {
27361
27440
  [key: string]: OfferingComponentLimitRequest;
27362
27441
  };
@@ -27412,6 +27491,7 @@ export type OfferingCreateRequestMultipart = {
27412
27491
  image?: (Blob | File) | null;
27413
27492
  backend_metadata?: unknown;
27414
27493
  compliance_checklist?: string | null;
27494
+ offering_group?: string | null;
27415
27495
  limits?: {
27416
27496
  [key: string]: OfferingComponentLimitRequest;
27417
27497
  };
@@ -27915,6 +27995,12 @@ export type ConstanceSettingsRequestForm = {
27915
27995
  SCIM_API_URL?: string;
27916
27996
  SCIM_API_KEY?: string;
27917
27997
  SCIM_URN_NAMESPACE?: string;
27998
+ SCIM_INBOUND_ENABLED?: boolean;
27999
+ SCIM_INBOUND_SOURCE_NAME?: string;
28000
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
28001
+ SCIM_PULL_API_URL?: string;
28002
+ SCIM_PULL_API_KEY?: string;
28003
+ SCIM_PULL_SOURCE_NAME?: string;
27918
28004
  KEYCLOAK_ICON?: (Blob | File) | null;
27919
28005
  COUNTRIES?: Array<string>;
27920
28006
  OIDC_AUTH_URL?: string;
@@ -28185,6 +28271,12 @@ export type ConstanceSettingsRequestMultipart = {
28185
28271
  SCIM_API_URL?: string;
28186
28272
  SCIM_API_KEY?: string;
28187
28273
  SCIM_URN_NAMESPACE?: string;
28274
+ SCIM_INBOUND_ENABLED?: boolean;
28275
+ SCIM_INBOUND_SOURCE_NAME?: string;
28276
+ SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
28277
+ SCIM_PULL_API_URL?: string;
28278
+ SCIM_PULL_API_KEY?: string;
28279
+ SCIM_PULL_SOURCE_NAME?: string;
28188
28280
  KEYCLOAK_ICON?: (Blob | File) | null;
28189
28281
  COUNTRIES?: Array<string>;
28190
28282
  OIDC_AUTH_URL?: string;
@@ -28741,7 +28833,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
28741
28833
  export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
28742
28834
  export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
28743
28835
  export type BackendResourceReqOEnum = '-created' | 'created';
28744
- export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
28836
+ export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
28745
28837
  export type BookingResourceFieldEnum = '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_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | '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_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
28746
28838
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
28747
28839
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
@@ -28791,6 +28883,7 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
28791
28883
  export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
28792
28884
  export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
28793
28885
  export type OfferingFileFieldEnum = 'created' | 'file' | 'name' | 'offering' | 'url' | 'uuid';
28886
+ export type OfferingGroupFieldEnum = 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'description' | 'icon' | 'title' | 'url' | 'uuid';
28794
28887
  export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
28795
28888
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
28796
28889
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
@@ -28800,19 +28893,19 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
28800
28893
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | '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' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
28801
28894
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
28802
28895
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
28803
- export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
28896
+ export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
28804
28897
  export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
28805
28898
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
28806
28899
  export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
28807
28900
  export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
28808
28901
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
28809
- export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
28902
+ export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
28810
28903
  export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
28811
28904
  export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
28812
28905
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
28813
28906
  export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date';
28814
28907
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
28815
- export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
28908
+ export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
28816
28909
  export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
28817
28910
  export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
28818
28911
  export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username';
@@ -45241,6 +45334,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
45241
45334
  200: OfferingFile;
45242
45335
  };
45243
45336
  export type MarketplaceOfferingFilesRetrieveResponse = MarketplaceOfferingFilesRetrieveResponses[keyof MarketplaceOfferingFilesRetrieveResponses];
45337
+ export type MarketplaceOfferingGroupsListData = {
45338
+ body?: never;
45339
+ path?: never;
45340
+ query?: {
45341
+ /**
45342
+ * Customer UUID
45343
+ */
45344
+ customer_uuid?: string;
45345
+ field?: Array<OfferingGroupFieldEnum>;
45346
+ /**
45347
+ * A page number within the paginated result set.
45348
+ */
45349
+ page?: number;
45350
+ /**
45351
+ * Number of results to return per page.
45352
+ */
45353
+ page_size?: number;
45354
+ title?: string;
45355
+ };
45356
+ url: '/api/marketplace-offering-groups/';
45357
+ };
45358
+ export type MarketplaceOfferingGroupsListResponses = {
45359
+ 200: Array<OfferingGroup>;
45360
+ };
45361
+ export type MarketplaceOfferingGroupsListResponse = MarketplaceOfferingGroupsListResponses[keyof MarketplaceOfferingGroupsListResponses];
45362
+ export type MarketplaceOfferingGroupsCountData = {
45363
+ body?: never;
45364
+ path?: never;
45365
+ query?: {
45366
+ /**
45367
+ * Customer UUID
45368
+ */
45369
+ customer_uuid?: string;
45370
+ /**
45371
+ * A page number within the paginated result set.
45372
+ */
45373
+ page?: number;
45374
+ /**
45375
+ * Number of results to return per page.
45376
+ */
45377
+ page_size?: number;
45378
+ title?: string;
45379
+ };
45380
+ url: '/api/marketplace-offering-groups/';
45381
+ };
45382
+ export type MarketplaceOfferingGroupsCountResponses = {
45383
+ /**
45384
+ * No response body
45385
+ */
45386
+ 200: unknown;
45387
+ };
45388
+ export type MarketplaceOfferingGroupsCreateData = {
45389
+ body: OfferingGroupRequest;
45390
+ path?: never;
45391
+ query?: never;
45392
+ url: '/api/marketplace-offering-groups/';
45393
+ };
45394
+ export type MarketplaceOfferingGroupsCreateResponses = {
45395
+ 201: OfferingGroup;
45396
+ };
45397
+ export type MarketplaceOfferingGroupsCreateResponse = MarketplaceOfferingGroupsCreateResponses[keyof MarketplaceOfferingGroupsCreateResponses];
45398
+ export type MarketplaceOfferingGroupsDestroyData = {
45399
+ body?: never;
45400
+ path: {
45401
+ uuid: string;
45402
+ };
45403
+ query?: never;
45404
+ url: '/api/marketplace-offering-groups/{uuid}/';
45405
+ };
45406
+ export type MarketplaceOfferingGroupsDestroyResponses = {
45407
+ /**
45408
+ * No response body
45409
+ */
45410
+ 204: void;
45411
+ };
45412
+ export type MarketplaceOfferingGroupsDestroyResponse = MarketplaceOfferingGroupsDestroyResponses[keyof MarketplaceOfferingGroupsDestroyResponses];
45413
+ export type MarketplaceOfferingGroupsRetrieveData = {
45414
+ body?: never;
45415
+ path: {
45416
+ uuid: string;
45417
+ };
45418
+ query?: {
45419
+ field?: Array<OfferingGroupFieldEnum>;
45420
+ };
45421
+ url: '/api/marketplace-offering-groups/{uuid}/';
45422
+ };
45423
+ export type MarketplaceOfferingGroupsRetrieveResponses = {
45424
+ 200: OfferingGroup;
45425
+ };
45426
+ export type MarketplaceOfferingGroupsRetrieveResponse = MarketplaceOfferingGroupsRetrieveResponses[keyof MarketplaceOfferingGroupsRetrieveResponses];
45427
+ export type MarketplaceOfferingGroupsPartialUpdateData = {
45428
+ body?: PatchedOfferingGroupRequest;
45429
+ path: {
45430
+ uuid: string;
45431
+ };
45432
+ query?: never;
45433
+ url: '/api/marketplace-offering-groups/{uuid}/';
45434
+ };
45435
+ export type MarketplaceOfferingGroupsPartialUpdateResponses = {
45436
+ 200: OfferingGroup;
45437
+ };
45438
+ export type MarketplaceOfferingGroupsPartialUpdateResponse = MarketplaceOfferingGroupsPartialUpdateResponses[keyof MarketplaceOfferingGroupsPartialUpdateResponses];
45439
+ export type MarketplaceOfferingGroupsUpdateData = {
45440
+ body: OfferingGroupRequest;
45441
+ path: {
45442
+ uuid: string;
45443
+ };
45444
+ query?: never;
45445
+ url: '/api/marketplace-offering-groups/{uuid}/';
45446
+ };
45447
+ export type MarketplaceOfferingGroupsUpdateResponses = {
45448
+ 200: OfferingGroup;
45449
+ };
45450
+ export type MarketplaceOfferingGroupsUpdateResponse = MarketplaceOfferingGroupsUpdateResponses[keyof MarketplaceOfferingGroupsUpdateResponses];
45244
45451
  export type MarketplaceOfferingPermissionsListData = {
45245
45452
  body?: never;
45246
45453
  path?: never;
@@ -48339,6 +48546,10 @@ export type MarketplaceProviderOfferingsListData = {
48339
48546
  *
48340
48547
  */
48341
48548
  o?: Array<ProviderOfferingDetailsOEnum>;
48549
+ /**
48550
+ * Offering group UUID
48551
+ */
48552
+ offering_group_uuid?: string;
48342
48553
  /**
48343
48554
  * Organization group UUID
48344
48555
  */
@@ -48519,6 +48730,10 @@ export type MarketplaceProviderOfferingsCountData = {
48519
48730
  *
48520
48731
  */
48521
48732
  o?: Array<ProviderOfferingDetailsOEnum>;
48733
+ /**
48734
+ * Offering group UUID
48735
+ */
48736
+ offering_group_uuid?: string;
48522
48737
  /**
48523
48738
  * Organization group UUID
48524
48739
  */
@@ -48836,6 +49051,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
48836
49051
  *
48837
49052
  */
48838
49053
  o?: Array<ProviderOfferingDetailsOEnum>;
49054
+ /**
49055
+ * Offering group UUID
49056
+ */
49057
+ offering_group_uuid?: string;
48839
49058
  /**
48840
49059
  * Organization group UUID
48841
49060
  */
@@ -49027,6 +49246,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
49027
49246
  *
49028
49247
  */
49029
49248
  o?: Array<ProviderOfferingDetailsOEnum>;
49249
+ /**
49250
+ * Offering group UUID
49251
+ */
49252
+ offering_group_uuid?: string;
49030
49253
  /**
49031
49254
  * Organization group UUID
49032
49255
  */
@@ -49228,6 +49451,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
49228
49451
  *
49229
49452
  */
49230
49453
  o?: Array<ProviderOfferingDetailsOEnum>;
49454
+ /**
49455
+ * Offering group UUID
49456
+ */
49457
+ offering_group_uuid?: string;
49231
49458
  /**
49232
49459
  * Organization group UUID
49233
49460
  */
@@ -49554,6 +49781,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
49554
49781
  *
49555
49782
  */
49556
49783
  o?: Array<ProviderOfferingDetailsOEnum>;
49784
+ /**
49785
+ * Offering group UUID
49786
+ */
49787
+ offering_group_uuid?: string;
49557
49788
  /**
49558
49789
  * Organization group UUID
49559
49790
  */
@@ -49795,6 +50026,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
49795
50026
  *
49796
50027
  */
49797
50028
  o?: Array<ProviderOfferingDetailsOEnum>;
50029
+ /**
50030
+ * Offering group UUID
50031
+ */
50032
+ offering_group_uuid?: string;
49798
50033
  /**
49799
50034
  * Organization group UUID
49800
50035
  */
@@ -49999,6 +50234,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
49999
50234
  *
50000
50235
  */
50001
50236
  o?: Array<ProviderOfferingDetailsOEnum>;
50237
+ /**
50238
+ * Offering group UUID
50239
+ */
50240
+ offering_group_uuid?: string;
50002
50241
  /**
50003
50242
  * Organization group UUID
50004
50243
  */
@@ -50203,6 +50442,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
50203
50442
  *
50204
50443
  */
50205
50444
  o?: Array<ProviderOfferingDetailsOEnum>;
50445
+ /**
50446
+ * Offering group UUID
50447
+ */
50448
+ offering_group_uuid?: string;
50206
50449
  /**
50207
50450
  * Organization group UUID
50208
50451
  */
@@ -50510,6 +50753,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
50510
50753
  */
50511
50754
  200: unknown;
50512
50755
  };
50756
+ export type MarketplaceProviderOfferingsSetOfferingGroupData = {
50757
+ body: OfferingGroupAssignRequest;
50758
+ path: {
50759
+ uuid: string;
50760
+ };
50761
+ query?: never;
50762
+ url: '/api/marketplace-provider-offerings/{uuid}/set_offering_group/';
50763
+ };
50764
+ export type MarketplaceProviderOfferingsSetOfferingGroupResponses = {
50765
+ /**
50766
+ * No response body
50767
+ */
50768
+ 200: unknown;
50769
+ };
50513
50770
  export type MarketplaceProviderOfferingsSetProfileData = {
50514
50771
  body?: OfferingProfileBindRequest;
50515
50772
  path: {
@@ -50986,6 +51243,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
50986
51243
  *
50987
51244
  */
50988
51245
  o?: Array<ProviderOfferingDetailsOEnum>;
51246
+ /**
51247
+ * Offering group UUID
51248
+ */
51249
+ offering_group_uuid?: string;
50989
51250
  /**
50990
51251
  * Organization group UUID
50991
51252
  */
@@ -51162,6 +51423,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
51162
51423
  *
51163
51424
  */
51164
51425
  o?: Array<ProviderOfferingDetailsOEnum>;
51426
+ /**
51427
+ * Offering group UUID
51428
+ */
51429
+ offering_group_uuid?: string;
51165
51430
  /**
51166
51431
  * Organization group UUID
51167
51432
  */
@@ -52784,6 +53049,10 @@ export type MarketplacePublicOfferingsListData = {
52784
53049
  *
52785
53050
  */
52786
53051
  o?: Array<ProviderOfferingDetailsOEnum>;
53052
+ /**
53053
+ * Offering group UUID
53054
+ */
53055
+ offering_group_uuid?: string;
52787
53056
  /**
52788
53057
  * Organization group UUID
52789
53058
  */
@@ -52960,6 +53229,10 @@ export type MarketplacePublicOfferingsCountData = {
52960
53229
  *
52961
53230
  */
52962
53231
  o?: Array<ProviderOfferingDetailsOEnum>;
53232
+ /**
53233
+ * Offering group UUID
53234
+ */
53235
+ offering_group_uuid?: string;
52963
53236
  /**
52964
53237
  * Organization group UUID
52965
53238
  */
@@ -56020,6 +56293,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
56020
56293
  *
56021
56294
  */
56022
56295
  o?: Array<ProviderOfferingDetailsOEnum>;
56296
+ /**
56297
+ * Offering group UUID
56298
+ */
56299
+ offering_group_uuid?: string;
56023
56300
  /**
56024
56301
  * Organization group UUID
56025
56302
  */
@@ -84343,6 +84620,18 @@ export type UsersPullRemoteUserResponses = {
84343
84620
  */
84344
84621
  200: unknown;
84345
84622
  };
84623
+ export type UsersPullScimAttributesData = {
84624
+ body?: never;
84625
+ path: {
84626
+ uuid: string;
84627
+ };
84628
+ query?: never;
84629
+ url: '/api/users/{uuid}/pull_scim_attributes/';
84630
+ };
84631
+ export type UsersPullScimAttributesResponses = {
84632
+ 200: ScimPullAttributesResponse;
84633
+ };
84634
+ export type UsersPullScimAttributesResponse = UsersPullScimAttributesResponses[keyof UsersPullScimAttributesResponses];
84346
84635
  export type UsersRefreshTokenData = {
84347
84636
  body?: never;
84348
84637
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.8",
3
+ "version": "8.0.9-dev.9",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",