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

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.
@@ -11650,11 +11650,11 @@ export type NestedRequestedOfferingRequest = {
11650
11650
  plan?: string | null;
11651
11651
  };
11652
11652
  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;
11653
+ readonly url?: string;
11654
+ readonly uuid?: string;
11655
+ readonly name?: string;
11656
+ readonly role_name?: string;
11657
+ readonly role_uuid?: string;
11658
11658
  expiration_time?: string | null;
11659
11659
  };
11660
11660
  export type NestedRound = {
@@ -18679,19 +18679,19 @@ export type ProfileCompleteness = {
18679
18679
  /**
18680
18680
  * Whether all mandatory profile fields are filled.
18681
18681
  */
18682
- is_complete: boolean;
18682
+ is_complete?: boolean;
18683
18683
  /**
18684
18684
  * List of mandatory fields that are missing.
18685
18685
  */
18686
- missing_fields: Array<string>;
18686
+ missing_fields?: Array<string>;
18687
18687
  /**
18688
18688
  * List of all mandatory fields.
18689
18689
  */
18690
- mandatory_fields: Array<string>;
18690
+ mandatory_fields?: Array<string>;
18691
18691
  /**
18692
18692
  * Whether enforcement of mandatory attributes is enabled.
18693
18693
  */
18694
- enforcement_enabled: boolean;
18694
+ enforcement_enabled?: boolean;
18695
18695
  };
18696
18696
  export type Project = {
18697
18697
  readonly url?: string;
@@ -22875,22 +22875,22 @@ export type ResourceSwitchPlanRequest = {
22875
22875
  plan: string;
22876
22876
  };
22877
22877
  export type ResourceTeamMember = {
22878
- readonly url: string;
22879
- readonly uuid: string;
22878
+ readonly url?: string;
22879
+ readonly uuid?: string;
22880
22880
  /**
22881
22881
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
22882
22882
  */
22883
- username: string;
22884
- readonly full_name: string;
22883
+ username?: string;
22884
+ readonly full_name?: string;
22885
22885
  /**
22886
22886
  * Email address
22887
22887
  */
22888
22888
  email?: string;
22889
22889
  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>;
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
22894
  };
22895
22895
  export type ResourceTerminateRequest = {
22896
22896
  /**
@@ -25471,6 +25471,14 @@ export type SubmitRequestResponse = {
25471
25471
  * Whether the request was automatically approved
25472
25472
  */
25473
25473
  auto_approved: boolean;
25474
+ /**
25475
+ * UUID of the project the user was added to. Present when the invitation has auto_approve and auto_create_project enabled. Null otherwise.
25476
+ */
25477
+ project_uuid?: string | null;
25478
+ /**
25479
+ * 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.
25480
+ */
25481
+ project_created?: boolean | null;
25474
25482
  };
25475
25483
  export type SubresourceOffering = {
25476
25484
  /**
@@ -26617,23 +26625,23 @@ export type UserMappingMap = {
26617
26625
  '*': UserMapping | null;
26618
26626
  };
26619
26627
  export type UserMe = {
26620
- readonly url: string;
26621
- readonly uuid: string;
26628
+ readonly url?: string;
26629
+ readonly uuid?: string;
26622
26630
  /**
26623
26631
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
26624
26632
  */
26625
- username: string;
26633
+ username?: string;
26626
26634
  /**
26627
26635
  * URL-friendly identifier. Only editable by staff users.
26628
26636
  */
26629
26637
  slug?: string;
26630
- readonly full_name: string;
26638
+ readonly full_name?: string;
26631
26639
  native_name?: string;
26632
26640
  job_title?: string;
26633
- email: string;
26641
+ email?: string;
26634
26642
  phone_number?: string;
26635
26643
  organization?: string;
26636
- readonly civil_number: string | null;
26644
+ readonly civil_number?: string | null;
26637
26645
  description?: string;
26638
26646
  /**
26639
26647
  * Staff status
@@ -26658,45 +26666,45 @@ export type UserMe = {
26658
26666
  * Token lifetime in seconds.
26659
26667
  */
26660
26668
  token_lifetime?: number | null;
26661
- readonly token_expires_at: string | null;
26669
+ readonly token_expires_at?: string | null;
26662
26670
  /**
26663
26671
  * Indicates what registration method was used.
26664
26672
  */
26665
- readonly registration_method: string;
26666
- readonly date_joined: string;
26673
+ readonly registration_method?: string;
26674
+ readonly date_joined?: string;
26667
26675
  /**
26668
26676
  * Indicates when the user has agreed with the policy.
26669
26677
  */
26670
- readonly agreement_date: string | null;
26678
+ readonly agreement_date?: string | null;
26671
26679
  /**
26672
26680
  * Designates whether the user is allowed to receive email notifications.
26673
26681
  */
26674
26682
  notifications_enabled?: boolean;
26675
26683
  preferred_language?: string;
26676
- readonly permissions: Array<Permission>;
26677
- readonly requested_email: string | null;
26684
+ readonly permissions?: Array<Permission>;
26685
+ readonly requested_email?: string | null;
26678
26686
  /**
26679
26687
  * Person's affiliation within organization such as student, faculty, staff.
26680
26688
  */
26681
- readonly affiliations: unknown;
26689
+ readonly affiliations?: unknown;
26682
26690
  first_name?: string;
26683
26691
  last_name?: string;
26684
26692
  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>;
26693
+ readonly identity_provider_name?: string;
26694
+ readonly identity_provider_label?: string;
26695
+ readonly identity_provider_management_url?: string;
26696
+ readonly identity_provider_fields?: Array<string>;
26689
26697
  image?: string | null;
26690
26698
  /**
26691
26699
  * Source of identity
26692
26700
  *
26693
26701
  * Indicates what identity provider was used.
26694
26702
  */
26695
- readonly identity_source: string;
26696
- readonly should_protect_user_details: boolean;
26703
+ readonly identity_source?: string;
26704
+ readonly should_protect_user_details?: boolean;
26697
26705
  readonly has_active_session?: boolean;
26698
26706
  readonly has_usable_password?: boolean;
26699
- readonly ip_address: string;
26707
+ readonly ip_address?: string;
26700
26708
  /**
26701
26709
  * User's gender (male, female, or unknown)
26702
26710
  */
@@ -26753,7 +26761,7 @@ export type UserMe = {
26753
26761
  * Reason why the user was deactivated. Visible to staff and support.
26754
26762
  */
26755
26763
  deactivation_reason?: string;
26756
- profile_completeness: ProfileCompleteness;
26764
+ profile_completeness?: ProfileCompleteness;
26757
26765
  };
26758
26766
  export type UserNationalityStats = {
26759
26767
  /**
@@ -29760,6 +29768,7 @@ export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name'
29760
29768
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
29761
29769
  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
29770
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
29771
+ 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
29772
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
29764
29773
  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
29774
  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 +29776,7 @@ export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name
29767
29776
  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
29777
  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
29778
  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';
29779
+ export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
29771
29780
  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
29781
  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
29782
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -29852,6 +29861,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
29852
29861
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
29853
29862
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
29854
29863
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
29864
+ 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
29865
  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
29866
  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
29867
  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 +36733,9 @@ export type ChatSessionsRetrieveResponse = ChatSessionsRetrieveResponses[keyof C
36723
36733
  export type ChatSessionsCurrentRetrieveData = {
36724
36734
  body?: never;
36725
36735
  path?: never;
36726
- query?: never;
36736
+ query?: {
36737
+ field?: Array<ChatSessionFieldEnum>;
36738
+ };
36727
36739
  url: '/api/chat-sessions/current/';
36728
36740
  };
36729
36741
  export type ChatSessionsCurrentRetrieveResponses = {
@@ -48371,7 +48383,9 @@ export type MarketplaceOrdersOfferingRetrieveData = {
48371
48383
  path: {
48372
48384
  uuid: string;
48373
48385
  };
48374
- query?: never;
48386
+ query?: {
48387
+ field?: Array<PublicOfferingDetailsFieldEnum>;
48388
+ };
48375
48389
  url: '/api/marketplace-orders/{uuid}/offering/';
48376
48390
  };
48377
48391
  export type MarketplaceOrdersOfferingRetrieveResponses = {
@@ -48411,7 +48425,9 @@ export type MarketplaceOrdersResourceRetrieveData = {
48411
48425
  path: {
48412
48426
  uuid: string;
48413
48427
  };
48414
- query?: never;
48428
+ query?: {
48429
+ field?: Array<ResourceFieldEnum>;
48430
+ };
48415
48431
  url: '/api/marketplace-orders/{uuid}/resource/';
48416
48432
  };
48417
48433
  export type MarketplaceOrdersResourceRetrieveResponses = {
@@ -51724,7 +51740,9 @@ export type MarketplaceProviderOfferingsOrdersRetrieveData = {
51724
51740
  order_uuid: string;
51725
51741
  uuid: string;
51726
51742
  };
51727
- query?: never;
51743
+ query?: {
51744
+ field?: Array<OrderDetailsFieldEnum>;
51745
+ };
51728
51746
  url: '/api/marketplace-provider-offerings/{uuid}/orders/{order_uuid}/';
51729
51747
  };
51730
51748
  export type MarketplaceProviderOfferingsOrdersRetrieveResponses = {
@@ -53686,7 +53704,9 @@ export type MarketplaceProviderResourcesOfferingRetrieveData = {
53686
53704
  path: {
53687
53705
  uuid: string;
53688
53706
  };
53689
- query?: never;
53707
+ query?: {
53708
+ field?: Array<PublicOfferingDetailsFieldEnum>;
53709
+ };
53690
53710
  url: '/api/marketplace-provider-resources/{uuid}/offering/';
53691
53711
  };
53692
53712
  export type MarketplaceProviderResourcesOfferingRetrieveResponses = {
@@ -55870,7 +55890,9 @@ export type MarketplaceResourcesOfferingRetrieveData = {
55870
55890
  path: {
55871
55891
  uuid: string;
55872
55892
  };
55873
- query?: never;
55893
+ query?: {
55894
+ field?: Array<PublicOfferingDetailsFieldEnum>;
55895
+ };
55874
55896
  url: '/api/marketplace-resources/{uuid}/offering/';
55875
55897
  };
55876
55898
  export type MarketplaceResourcesOfferingRetrieveResponses = {
@@ -56094,6 +56116,7 @@ export type MarketplaceResourcesTeamMembersListData = {
56094
56116
  * Downscaled
56095
56117
  */
56096
56118
  downscaled?: boolean;
56119
+ field?: Array<ResourceTeamMemberFieldEnum>;
56097
56120
  /**
56098
56121
  * Flavor name
56099
56122
  */
@@ -86387,7 +86410,9 @@ export type UsersConfirmEmailResponses = {
86387
86410
  export type UsersMeRetrieveData = {
86388
86411
  body?: never;
86389
86412
  path?: never;
86390
- query?: never;
86413
+ query?: {
86414
+ field?: Array<UserMeFieldEnum>;
86415
+ };
86391
86416
  url: '/api/users/me/';
86392
86417
  };
86393
86418
  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.42",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",