waldur-js-client 8.0.9-dev.7 → 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;
@@ -22081,6 +22133,7 @@ export type ResourceProject = {
22081
22133
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
22082
22134
  */
22083
22135
  readonly removed_by_username: string;
22136
+ readonly termination_metadata: unknown;
22084
22137
  };
22085
22138
  export type ResourceProjectBackendId = {
22086
22139
  backend_id: string;
@@ -23675,6 +23728,10 @@ export type ScienceSubDomainRequest = {
23675
23728
  name: string;
23676
23729
  domain: string;
23677
23730
  };
23731
+ export type ScimPullAttributesResponse = {
23732
+ detail: string;
23733
+ changed_fields?: Array<string>;
23734
+ };
23678
23735
  export type ScimSyncAllResponse = {
23679
23736
  detail: string;
23680
23737
  };
@@ -27281,6 +27338,28 @@ export type OfferingFileRequestMultipart = {
27281
27338
  offering: string;
27282
27339
  file: Blob | File;
27283
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
+ };
27284
27363
  export type OrderConsumerInfoRequestForm = {
27285
27364
  consumer_message?: string;
27286
27365
  consumer_message_attachment?: Blob | File;
@@ -27356,6 +27435,7 @@ export type OfferingCreateRequestForm = {
27356
27435
  image?: (Blob | File) | null;
27357
27436
  backend_metadata?: unknown;
27358
27437
  compliance_checklist?: string | null;
27438
+ offering_group?: string | null;
27359
27439
  limits?: {
27360
27440
  [key: string]: OfferingComponentLimitRequest;
27361
27441
  };
@@ -27411,6 +27491,7 @@ export type OfferingCreateRequestMultipart = {
27411
27491
  image?: (Blob | File) | null;
27412
27492
  backend_metadata?: unknown;
27413
27493
  compliance_checklist?: string | null;
27494
+ offering_group?: string | null;
27414
27495
  limits?: {
27415
27496
  [key: string]: OfferingComponentLimitRequest;
27416
27497
  };
@@ -27914,6 +27995,12 @@ export type ConstanceSettingsRequestForm = {
27914
27995
  SCIM_API_URL?: string;
27915
27996
  SCIM_API_KEY?: string;
27916
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;
27917
28004
  KEYCLOAK_ICON?: (Blob | File) | null;
27918
28005
  COUNTRIES?: Array<string>;
27919
28006
  OIDC_AUTH_URL?: string;
@@ -28184,6 +28271,12 @@ export type ConstanceSettingsRequestMultipart = {
28184
28271
  SCIM_API_URL?: string;
28185
28272
  SCIM_API_KEY?: string;
28186
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;
28187
28280
  KEYCLOAK_ICON?: (Blob | File) | null;
28188
28281
  COUNTRIES?: Array<string>;
28189
28282
  OIDC_AUTH_URL?: string;
@@ -28740,7 +28833,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
28740
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';
28741
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';
28742
28835
  export type BackendResourceReqOEnum = '-created' | 'created';
28743
- 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';
28744
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';
28745
28838
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
28746
28839
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
@@ -28790,6 +28883,7 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
28790
28883
  export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
28791
28884
  export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
28792
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';
28793
28887
  export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
28794
28888
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
28795
28889
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
@@ -28799,19 +28893,19 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
28799
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';
28800
28894
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
28801
28895
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
28802
- 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';
28803
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';
28804
28898
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
28805
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';
28806
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';
28807
28901
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
28808
- 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';
28809
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';
28810
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';
28811
28905
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
28812
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';
28813
28907
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
28814
- 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';
28815
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';
28816
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';
28817
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';
@@ -45240,6 +45334,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
45240
45334
  200: OfferingFile;
45241
45335
  };
45242
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];
45243
45451
  export type MarketplaceOfferingPermissionsListData = {
45244
45452
  body?: never;
45245
45453
  path?: never;
@@ -48338,6 +48546,10 @@ export type MarketplaceProviderOfferingsListData = {
48338
48546
  *
48339
48547
  */
48340
48548
  o?: Array<ProviderOfferingDetailsOEnum>;
48549
+ /**
48550
+ * Offering group UUID
48551
+ */
48552
+ offering_group_uuid?: string;
48341
48553
  /**
48342
48554
  * Organization group UUID
48343
48555
  */
@@ -48518,6 +48730,10 @@ export type MarketplaceProviderOfferingsCountData = {
48518
48730
  *
48519
48731
  */
48520
48732
  o?: Array<ProviderOfferingDetailsOEnum>;
48733
+ /**
48734
+ * Offering group UUID
48735
+ */
48736
+ offering_group_uuid?: string;
48521
48737
  /**
48522
48738
  * Organization group UUID
48523
48739
  */
@@ -48835,6 +49051,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
48835
49051
  *
48836
49052
  */
48837
49053
  o?: Array<ProviderOfferingDetailsOEnum>;
49054
+ /**
49055
+ * Offering group UUID
49056
+ */
49057
+ offering_group_uuid?: string;
48838
49058
  /**
48839
49059
  * Organization group UUID
48840
49060
  */
@@ -49026,6 +49246,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
49026
49246
  *
49027
49247
  */
49028
49248
  o?: Array<ProviderOfferingDetailsOEnum>;
49249
+ /**
49250
+ * Offering group UUID
49251
+ */
49252
+ offering_group_uuid?: string;
49029
49253
  /**
49030
49254
  * Organization group UUID
49031
49255
  */
@@ -49227,6 +49451,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
49227
49451
  *
49228
49452
  */
49229
49453
  o?: Array<ProviderOfferingDetailsOEnum>;
49454
+ /**
49455
+ * Offering group UUID
49456
+ */
49457
+ offering_group_uuid?: string;
49230
49458
  /**
49231
49459
  * Organization group UUID
49232
49460
  */
@@ -49553,6 +49781,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
49553
49781
  *
49554
49782
  */
49555
49783
  o?: Array<ProviderOfferingDetailsOEnum>;
49784
+ /**
49785
+ * Offering group UUID
49786
+ */
49787
+ offering_group_uuid?: string;
49556
49788
  /**
49557
49789
  * Organization group UUID
49558
49790
  */
@@ -49794,6 +50026,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
49794
50026
  *
49795
50027
  */
49796
50028
  o?: Array<ProviderOfferingDetailsOEnum>;
50029
+ /**
50030
+ * Offering group UUID
50031
+ */
50032
+ offering_group_uuid?: string;
49797
50033
  /**
49798
50034
  * Organization group UUID
49799
50035
  */
@@ -49998,6 +50234,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
49998
50234
  *
49999
50235
  */
50000
50236
  o?: Array<ProviderOfferingDetailsOEnum>;
50237
+ /**
50238
+ * Offering group UUID
50239
+ */
50240
+ offering_group_uuid?: string;
50001
50241
  /**
50002
50242
  * Organization group UUID
50003
50243
  */
@@ -50202,6 +50442,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
50202
50442
  *
50203
50443
  */
50204
50444
  o?: Array<ProviderOfferingDetailsOEnum>;
50445
+ /**
50446
+ * Offering group UUID
50447
+ */
50448
+ offering_group_uuid?: string;
50205
50449
  /**
50206
50450
  * Organization group UUID
50207
50451
  */
@@ -50509,6 +50753,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
50509
50753
  */
50510
50754
  200: unknown;
50511
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
+ };
50512
50770
  export type MarketplaceProviderOfferingsSetProfileData = {
50513
50771
  body?: OfferingProfileBindRequest;
50514
50772
  path: {
@@ -50985,6 +51243,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
50985
51243
  *
50986
51244
  */
50987
51245
  o?: Array<ProviderOfferingDetailsOEnum>;
51246
+ /**
51247
+ * Offering group UUID
51248
+ */
51249
+ offering_group_uuid?: string;
50988
51250
  /**
50989
51251
  * Organization group UUID
50990
51252
  */
@@ -51161,6 +51423,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
51161
51423
  *
51162
51424
  */
51163
51425
  o?: Array<ProviderOfferingDetailsOEnum>;
51426
+ /**
51427
+ * Offering group UUID
51428
+ */
51429
+ offering_group_uuid?: string;
51164
51430
  /**
51165
51431
  * Organization group UUID
51166
51432
  */
@@ -52783,6 +53049,10 @@ export type MarketplacePublicOfferingsListData = {
52783
53049
  *
52784
53050
  */
52785
53051
  o?: Array<ProviderOfferingDetailsOEnum>;
53052
+ /**
53053
+ * Offering group UUID
53054
+ */
53055
+ offering_group_uuid?: string;
52786
53056
  /**
52787
53057
  * Organization group UUID
52788
53058
  */
@@ -52959,6 +53229,10 @@ export type MarketplacePublicOfferingsCountData = {
52959
53229
  *
52960
53230
  */
52961
53231
  o?: Array<ProviderOfferingDetailsOEnum>;
53232
+ /**
53233
+ * Offering group UUID
53234
+ */
53235
+ offering_group_uuid?: string;
52962
53236
  /**
52963
53237
  * Organization group UUID
52964
53238
  */
@@ -56019,6 +56293,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
56019
56293
  *
56020
56294
  */
56021
56295
  o?: Array<ProviderOfferingDetailsOEnum>;
56296
+ /**
56297
+ * Offering group UUID
56298
+ */
56299
+ offering_group_uuid?: string;
56022
56300
  /**
56023
56301
  * Organization group UUID
56024
56302
  */
@@ -84342,6 +84620,18 @@ export type UsersPullRemoteUserResponses = {
84342
84620
  */
84343
84621
  200: unknown;
84344
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];
84345
84635
  export type UsersRefreshTokenData = {
84346
84636
  body?: never;
84347
84637
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.7",
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",