waldur-js-client 8.0.9-dev.41 → 8.0.9-dev.43

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.
@@ -5090,6 +5090,8 @@ export type ConstanceSettings = {
5090
5090
  USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
5091
5091
  USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
5092
5092
  USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
5093
+ OPENSTACK_LOG_CALLS_ENABLED?: boolean;
5094
+ OPENSTACK_LOG_CALLS_THRESHOLD_MS?: number;
5093
5095
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
5094
5096
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
5095
5097
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
@@ -5368,6 +5370,8 @@ export type ConstanceSettingsRequest = {
5368
5370
  USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
5369
5371
  USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
5370
5372
  USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
5373
+ OPENSTACK_LOG_CALLS_ENABLED?: boolean;
5374
+ OPENSTACK_LOG_CALLS_THRESHOLD_MS?: number;
5371
5375
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
5372
5376
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
5373
5377
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
@@ -11650,11 +11654,11 @@ export type NestedRequestedOfferingRequest = {
11650
11654
  plan?: string | null;
11651
11655
  };
11652
11656
  export type NestedResourceProjectPermission = {
11653
- readonly url: string;
11654
- readonly uuid: string;
11655
- readonly name: string;
11656
- readonly role_name: string;
11657
- readonly role_uuid: string;
11657
+ readonly url?: string;
11658
+ readonly uuid?: string;
11659
+ readonly name?: string;
11660
+ readonly role_name?: string;
11661
+ readonly role_uuid?: string;
11658
11662
  expiration_time?: string | null;
11659
11663
  };
11660
11664
  export type NestedRound = {
@@ -18679,19 +18683,19 @@ export type ProfileCompleteness = {
18679
18683
  /**
18680
18684
  * Whether all mandatory profile fields are filled.
18681
18685
  */
18682
- is_complete: boolean;
18686
+ is_complete?: boolean;
18683
18687
  /**
18684
18688
  * List of mandatory fields that are missing.
18685
18689
  */
18686
- missing_fields: Array<string>;
18690
+ missing_fields?: Array<string>;
18687
18691
  /**
18688
18692
  * List of all mandatory fields.
18689
18693
  */
18690
- mandatory_fields: Array<string>;
18694
+ mandatory_fields?: Array<string>;
18691
18695
  /**
18692
18696
  * Whether enforcement of mandatory attributes is enabled.
18693
18697
  */
18694
- enforcement_enabled: boolean;
18698
+ enforcement_enabled?: boolean;
18695
18699
  };
18696
18700
  export type Project = {
18697
18701
  readonly url?: string;
@@ -22875,22 +22879,22 @@ export type ResourceSwitchPlanRequest = {
22875
22879
  plan: string;
22876
22880
  };
22877
22881
  export type ResourceTeamMember = {
22878
- readonly url: string;
22879
- readonly uuid: string;
22882
+ readonly url?: string;
22883
+ readonly uuid?: string;
22880
22884
  /**
22881
22885
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
22882
22886
  */
22883
- username: string;
22884
- readonly full_name: string;
22887
+ username?: string;
22888
+ readonly full_name?: string;
22885
22889
  /**
22886
22890
  * Email address
22887
22891
  */
22888
22892
  email?: string;
22889
22893
  image?: string | null;
22890
- readonly role_name: string | null;
22891
- readonly role_uuid: string | null;
22892
- readonly expiration_time: string | null;
22893
- readonly resource_projects: Array<NestedResourceProjectPermission>;
22894
+ readonly role_name?: string | null;
22895
+ readonly role_uuid?: string | null;
22896
+ readonly expiration_time?: string | null;
22897
+ readonly resource_projects?: Array<NestedResourceProjectPermission>;
22894
22898
  };
22895
22899
  export type ResourceTerminateRequest = {
22896
22900
  /**
@@ -25471,6 +25475,14 @@ export type SubmitRequestResponse = {
25471
25475
  * Whether the request was automatically approved
25472
25476
  */
25473
25477
  auto_approved: boolean;
25478
+ /**
25479
+ * UUID of the project the user was added to. Present when the invitation has auto_approve and auto_create_project enabled. Null otherwise.
25480
+ */
25481
+ project_uuid?: string | null;
25482
+ /**
25483
+ * True if a new project was created for the user; false if an existing project with the same name was reused. Null when no project workflow ran.
25484
+ */
25485
+ project_created?: boolean | null;
25474
25486
  };
25475
25487
  export type SubresourceOffering = {
25476
25488
  /**
@@ -26617,23 +26629,23 @@ export type UserMappingMap = {
26617
26629
  '*': UserMapping | null;
26618
26630
  };
26619
26631
  export type UserMe = {
26620
- readonly url: string;
26621
- readonly uuid: string;
26632
+ readonly url?: string;
26633
+ readonly uuid?: string;
26622
26634
  /**
26623
26635
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
26624
26636
  */
26625
- username: string;
26637
+ username?: string;
26626
26638
  /**
26627
26639
  * URL-friendly identifier. Only editable by staff users.
26628
26640
  */
26629
26641
  slug?: string;
26630
- readonly full_name: string;
26642
+ readonly full_name?: string;
26631
26643
  native_name?: string;
26632
26644
  job_title?: string;
26633
- email: string;
26645
+ email?: string;
26634
26646
  phone_number?: string;
26635
26647
  organization?: string;
26636
- readonly civil_number: string | null;
26648
+ readonly civil_number?: string | null;
26637
26649
  description?: string;
26638
26650
  /**
26639
26651
  * Staff status
@@ -26658,45 +26670,45 @@ export type UserMe = {
26658
26670
  * Token lifetime in seconds.
26659
26671
  */
26660
26672
  token_lifetime?: number | null;
26661
- readonly token_expires_at: string | null;
26673
+ readonly token_expires_at?: string | null;
26662
26674
  /**
26663
26675
  * Indicates what registration method was used.
26664
26676
  */
26665
- readonly registration_method: string;
26666
- readonly date_joined: string;
26677
+ readonly registration_method?: string;
26678
+ readonly date_joined?: string;
26667
26679
  /**
26668
26680
  * Indicates when the user has agreed with the policy.
26669
26681
  */
26670
- readonly agreement_date: string | null;
26682
+ readonly agreement_date?: string | null;
26671
26683
  /**
26672
26684
  * Designates whether the user is allowed to receive email notifications.
26673
26685
  */
26674
26686
  notifications_enabled?: boolean;
26675
26687
  preferred_language?: string;
26676
- readonly permissions: Array<Permission>;
26677
- readonly requested_email: string | null;
26688
+ readonly permissions?: Array<Permission>;
26689
+ readonly requested_email?: string | null;
26678
26690
  /**
26679
26691
  * Person's affiliation within organization such as student, faculty, staff.
26680
26692
  */
26681
- readonly affiliations: unknown;
26693
+ readonly affiliations?: unknown;
26682
26694
  first_name?: string;
26683
26695
  last_name?: string;
26684
26696
  birth_date?: string | null;
26685
- readonly identity_provider_name: string;
26686
- readonly identity_provider_label: string;
26687
- readonly identity_provider_management_url: string;
26688
- readonly identity_provider_fields: Array<string>;
26697
+ readonly identity_provider_name?: string;
26698
+ readonly identity_provider_label?: string;
26699
+ readonly identity_provider_management_url?: string;
26700
+ readonly identity_provider_fields?: Array<string>;
26689
26701
  image?: string | null;
26690
26702
  /**
26691
26703
  * Source of identity
26692
26704
  *
26693
26705
  * Indicates what identity provider was used.
26694
26706
  */
26695
- readonly identity_source: string;
26696
- readonly should_protect_user_details: boolean;
26707
+ readonly identity_source?: string;
26708
+ readonly should_protect_user_details?: boolean;
26697
26709
  readonly has_active_session?: boolean;
26698
26710
  readonly has_usable_password?: boolean;
26699
- readonly ip_address: string;
26711
+ readonly ip_address?: string;
26700
26712
  /**
26701
26713
  * User's gender (male, female, or unknown)
26702
26714
  */
@@ -26753,7 +26765,7 @@ export type UserMe = {
26753
26765
  * Reason why the user was deactivated. Visible to staff and support.
26754
26766
  */
26755
26767
  deactivation_reason?: string;
26756
- profile_completeness: ProfileCompleteness;
26768
+ profile_completeness?: ProfileCompleteness;
26757
26769
  };
26758
26770
  export type UserNationalityStats = {
26759
26771
  /**
@@ -28926,6 +28938,8 @@ export type ConstanceSettingsRequestForm = {
28926
28938
  USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
28927
28939
  USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
28928
28940
  USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
28941
+ OPENSTACK_LOG_CALLS_ENABLED?: boolean;
28942
+ OPENSTACK_LOG_CALLS_THRESHOLD_MS?: number;
28929
28943
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
28930
28944
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
28931
28945
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
@@ -29204,6 +29218,8 @@ export type ConstanceSettingsRequestMultipart = {
29204
29218
  USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
29205
29219
  USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
29206
29220
  USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
29221
+ OPENSTACK_LOG_CALLS_ENABLED?: boolean;
29222
+ OPENSTACK_LOG_CALLS_THRESHOLD_MS?: number;
29207
29223
  USER_DATA_ACCESS_LOGGING_ENABLED?: boolean;
29208
29224
  USER_DATA_ACCESS_LOG_RETENTION_DAYS?: number;
29209
29225
  USER_DATA_ACCESS_LOG_SELF_ACCESS?: boolean;
@@ -29760,6 +29776,7 @@ export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name'
29760
29776
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
29761
29777
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'auto_approved' | 'auto_approved_by_rule_uuid' | 'auto_approved_cost_limit_snapshot' | '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';
29762
29778
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
29779
+ export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'config_drive_default' | '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';
29763
29780
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
29764
29781
  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';
29765
29782
  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';
@@ -29767,7 +29784,7 @@ export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name
29767
29784
  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';
29768
29785
  export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | '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' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
29769
29786
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
29770
- export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'config_drive_default' | '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';
29787
+ export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
29771
29788
  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';
29772
29789
  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';
29773
29790
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -29852,6 +29869,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
29852
29869
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
29853
29870
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
29854
29871
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
29872
+ export type UserMeFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | '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' | 'profile_completeness' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
29855
29873
  export type VmwareDiskFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
29856
29874
  export type VmwarePortFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | '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' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
29857
29875
  export type VmwareVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cluster' | 'cluster_name' | 'cores' | 'cores_per_socket' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'datastore' | 'datastore_name' | 'description' | 'disk' | 'disks' | 'error_message' | 'error_traceback' | 'folder' | 'folder_name' | 'guest_os' | 'guest_os_name' | 'guest_power_state' | 'is_limit_based' | 'is_usage_based' | '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' | 'networks' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'tools_installed' | 'tools_state' | 'url' | 'uuid';
@@ -36723,7 +36741,9 @@ export type ChatSessionsRetrieveResponse = ChatSessionsRetrieveResponses[keyof C
36723
36741
  export type ChatSessionsCurrentRetrieveData = {
36724
36742
  body?: never;
36725
36743
  path?: never;
36726
- query?: never;
36744
+ query?: {
36745
+ field?: Array<ChatSessionFieldEnum>;
36746
+ };
36727
36747
  url: '/api/chat-sessions/current/';
36728
36748
  };
36729
36749
  export type ChatSessionsCurrentRetrieveResponses = {
@@ -48371,7 +48391,9 @@ export type MarketplaceOrdersOfferingRetrieveData = {
48371
48391
  path: {
48372
48392
  uuid: string;
48373
48393
  };
48374
- query?: never;
48394
+ query?: {
48395
+ field?: Array<PublicOfferingDetailsFieldEnum>;
48396
+ };
48375
48397
  url: '/api/marketplace-orders/{uuid}/offering/';
48376
48398
  };
48377
48399
  export type MarketplaceOrdersOfferingRetrieveResponses = {
@@ -48411,7 +48433,9 @@ export type MarketplaceOrdersResourceRetrieveData = {
48411
48433
  path: {
48412
48434
  uuid: string;
48413
48435
  };
48414
- query?: never;
48436
+ query?: {
48437
+ field?: Array<ResourceFieldEnum>;
48438
+ };
48415
48439
  url: '/api/marketplace-orders/{uuid}/resource/';
48416
48440
  };
48417
48441
  export type MarketplaceOrdersResourceRetrieveResponses = {
@@ -51724,7 +51748,9 @@ export type MarketplaceProviderOfferingsOrdersRetrieveData = {
51724
51748
  order_uuid: string;
51725
51749
  uuid: string;
51726
51750
  };
51727
- query?: never;
51751
+ query?: {
51752
+ field?: Array<OrderDetailsFieldEnum>;
51753
+ };
51728
51754
  url: '/api/marketplace-provider-offerings/{uuid}/orders/{order_uuid}/';
51729
51755
  };
51730
51756
  export type MarketplaceProviderOfferingsOrdersRetrieveResponses = {
@@ -53686,7 +53712,9 @@ export type MarketplaceProviderResourcesOfferingRetrieveData = {
53686
53712
  path: {
53687
53713
  uuid: string;
53688
53714
  };
53689
- query?: never;
53715
+ query?: {
53716
+ field?: Array<PublicOfferingDetailsFieldEnum>;
53717
+ };
53690
53718
  url: '/api/marketplace-provider-resources/{uuid}/offering/';
53691
53719
  };
53692
53720
  export type MarketplaceProviderResourcesOfferingRetrieveResponses = {
@@ -55870,7 +55898,9 @@ export type MarketplaceResourcesOfferingRetrieveData = {
55870
55898
  path: {
55871
55899
  uuid: string;
55872
55900
  };
55873
- query?: never;
55901
+ query?: {
55902
+ field?: Array<PublicOfferingDetailsFieldEnum>;
55903
+ };
55874
55904
  url: '/api/marketplace-resources/{uuid}/offering/';
55875
55905
  };
55876
55906
  export type MarketplaceResourcesOfferingRetrieveResponses = {
@@ -56094,6 +56124,7 @@ export type MarketplaceResourcesTeamMembersListData = {
56094
56124
  * Downscaled
56095
56125
  */
56096
56126
  downscaled?: boolean;
56127
+ field?: Array<ResourceTeamMemberFieldEnum>;
56097
56128
  /**
56098
56129
  * Flavor name
56099
56130
  */
@@ -86387,7 +86418,9 @@ export type UsersConfirmEmailResponses = {
86387
86418
  export type UsersMeRetrieveData = {
86388
86419
  body?: never;
86389
86420
  path?: never;
86390
- query?: never;
86421
+ query?: {
86422
+ field?: Array<UserMeFieldEnum>;
86423
+ };
86391
86424
  url: '/api/users/me/';
86392
86425
  };
86393
86426
  export type UsersMeRetrieveResponses = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.41",
3
+ "version": "8.0.9-dev.43",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",