waldur-js-client 8.0.9-dev.40 → 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.
@@ -8252,6 +8252,7 @@ export type Hypervisor = {
8252
8252
  * Hypervisor status, e.g. enabled or disabled
8253
8253
  */
8254
8254
  status?: string;
8255
+ readonly traits: Array<string>;
8255
8256
  };
8256
8257
  export type HypervisorInventory = {
8257
8258
  readonly url: string;
@@ -8392,34 +8393,34 @@ export type IdentityProvider = {
8392
8393
  /**
8393
8394
  * ID of application used for OAuth authentication.
8394
8395
  */
8395
- client_id: string;
8396
+ client_id?: string;
8396
8397
  /**
8397
8398
  * Application secret key.
8398
8399
  */
8399
- client_secret: string;
8400
+ client_secret?: string;
8400
8401
  verify_ssl?: boolean;
8401
8402
  enable_post_logout_redirect?: boolean;
8402
8403
  enable_pkce?: boolean;
8403
8404
  /**
8404
8405
  * The endpoint for endpoint discovery.
8405
8406
  */
8406
- discovery_url: string;
8407
+ discovery_url?: string;
8407
8408
  /**
8408
8409
  * The endpoint for fetching user info.
8409
8410
  */
8410
- readonly userinfo_url: string;
8411
+ readonly userinfo_url?: string;
8411
8412
  /**
8412
8413
  * The endpoint for obtaining auth token.
8413
8414
  */
8414
- readonly token_url: string;
8415
+ readonly token_url?: string;
8415
8416
  /**
8416
8417
  * The endpoint for authorization request flow.
8417
8418
  */
8418
- readonly auth_url: string;
8419
+ readonly auth_url?: string;
8419
8420
  /**
8420
8421
  * The endpoint used to redirect after sign-out.
8421
8422
  */
8422
- readonly logout_url: string;
8423
+ readonly logout_url?: string;
8423
8424
  /**
8424
8425
  * Human-readable identity provider is label.
8425
8426
  */
@@ -9106,7 +9107,7 @@ export type Issue = {
9106
9107
  /**
9107
9108
  * Link to issue in support system.
9108
9109
  */
9109
- readonly link: string;
9110
+ readonly link?: string;
9110
9111
  summary: string;
9111
9112
  description?: string;
9112
9113
  readonly status: string;
@@ -9145,7 +9146,7 @@ export type Issue = {
9145
9146
  /**
9146
9147
  * Internal processing log for debugging order lifecycle events. Visible only to staff.
9147
9148
  */
9148
- readonly processing_log: unknown;
9149
+ readonly processing_log?: unknown;
9149
9150
  /**
9150
9151
  * Return order UUID if the issue's resource is an Order.
9151
9152
  */
@@ -10972,11 +10973,11 @@ export type Message = {
10972
10973
  readonly created: string;
10973
10974
  readonly input_tokens: number | null;
10974
10975
  readonly output_tokens: number | null;
10975
- readonly is_flagged: boolean;
10976
- severity: InjectionSeverityEnum;
10977
- readonly injection_categories: unknown;
10978
- readonly pii_categories: unknown;
10979
- action_taken: ActionTakenEnum;
10976
+ readonly is_flagged?: boolean;
10977
+ severity?: InjectionSeverityEnum;
10978
+ readonly injection_categories?: unknown;
10979
+ readonly pii_categories?: unknown;
10980
+ action_taken?: ActionTakenEnum;
10980
10981
  /**
10981
10982
  * User feedback: True=thumbs up, False=thumbs down, None=no feedback.
10982
10983
  */
@@ -11649,11 +11650,11 @@ export type NestedRequestedOfferingRequest = {
11649
11650
  plan?: string | null;
11650
11651
  };
11651
11652
  export type NestedResourceProjectPermission = {
11652
- readonly url: string;
11653
- readonly uuid: string;
11654
- readonly name: string;
11655
- readonly role_name: string;
11656
- 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;
11657
11658
  expiration_time?: string | null;
11658
11659
  };
11659
11660
  export type NestedRound = {
@@ -18678,19 +18679,19 @@ export type ProfileCompleteness = {
18678
18679
  /**
18679
18680
  * Whether all mandatory profile fields are filled.
18680
18681
  */
18681
- is_complete: boolean;
18682
+ is_complete?: boolean;
18682
18683
  /**
18683
18684
  * List of mandatory fields that are missing.
18684
18685
  */
18685
- missing_fields: Array<string>;
18686
+ missing_fields?: Array<string>;
18686
18687
  /**
18687
18688
  * List of all mandatory fields.
18688
18689
  */
18689
- mandatory_fields: Array<string>;
18690
+ mandatory_fields?: Array<string>;
18690
18691
  /**
18691
18692
  * Whether enforcement of mandatory attributes is enabled.
18692
18693
  */
18693
- enforcement_enabled: boolean;
18694
+ enforcement_enabled?: boolean;
18694
18695
  };
18695
18696
  export type Project = {
18696
18697
  readonly url?: string;
@@ -22874,22 +22875,22 @@ export type ResourceSwitchPlanRequest = {
22874
22875
  plan: string;
22875
22876
  };
22876
22877
  export type ResourceTeamMember = {
22877
- readonly url: string;
22878
- readonly uuid: string;
22878
+ readonly url?: string;
22879
+ readonly uuid?: string;
22879
22880
  /**
22880
22881
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
22881
22882
  */
22882
- username: string;
22883
- readonly full_name: string;
22883
+ username?: string;
22884
+ readonly full_name?: string;
22884
22885
  /**
22885
22886
  * Email address
22886
22887
  */
22887
22888
  email?: string;
22888
22889
  image?: string | null;
22889
- readonly role_name: string | null;
22890
- readonly role_uuid: string | null;
22891
- readonly expiration_time: string | null;
22892
- 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>;
22893
22894
  };
22894
22895
  export type ResourceTerminateRequest = {
22895
22896
  /**
@@ -25470,6 +25471,14 @@ export type SubmitRequestResponse = {
25470
25471
  * Whether the request was automatically approved
25471
25472
  */
25472
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;
25473
25482
  };
25474
25483
  export type SubresourceOffering = {
25475
25484
  /**
@@ -26616,23 +26625,23 @@ export type UserMappingMap = {
26616
26625
  '*': UserMapping | null;
26617
26626
  };
26618
26627
  export type UserMe = {
26619
- readonly url: string;
26620
- readonly uuid: string;
26628
+ readonly url?: string;
26629
+ readonly uuid?: string;
26621
26630
  /**
26622
26631
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
26623
26632
  */
26624
- username: string;
26633
+ username?: string;
26625
26634
  /**
26626
26635
  * URL-friendly identifier. Only editable by staff users.
26627
26636
  */
26628
26637
  slug?: string;
26629
- readonly full_name: string;
26638
+ readonly full_name?: string;
26630
26639
  native_name?: string;
26631
26640
  job_title?: string;
26632
- email: string;
26641
+ email?: string;
26633
26642
  phone_number?: string;
26634
26643
  organization?: string;
26635
- readonly civil_number: string | null;
26644
+ readonly civil_number?: string | null;
26636
26645
  description?: string;
26637
26646
  /**
26638
26647
  * Staff status
@@ -26652,50 +26661,50 @@ export type UserMe = {
26652
26661
  * Designates whether the user is a global support user.
26653
26662
  */
26654
26663
  is_support?: boolean;
26655
- readonly token: string;
26664
+ readonly token?: string;
26656
26665
  /**
26657
26666
  * Token lifetime in seconds.
26658
26667
  */
26659
26668
  token_lifetime?: number | null;
26660
- readonly token_expires_at: string | null;
26669
+ readonly token_expires_at?: string | null;
26661
26670
  /**
26662
26671
  * Indicates what registration method was used.
26663
26672
  */
26664
- readonly registration_method: string;
26665
- readonly date_joined: string;
26673
+ readonly registration_method?: string;
26674
+ readonly date_joined?: string;
26666
26675
  /**
26667
26676
  * Indicates when the user has agreed with the policy.
26668
26677
  */
26669
- readonly agreement_date: string | null;
26678
+ readonly agreement_date?: string | null;
26670
26679
  /**
26671
26680
  * Designates whether the user is allowed to receive email notifications.
26672
26681
  */
26673
26682
  notifications_enabled?: boolean;
26674
26683
  preferred_language?: string;
26675
- readonly permissions: Array<Permission>;
26676
- readonly requested_email: string | null;
26684
+ readonly permissions?: Array<Permission>;
26685
+ readonly requested_email?: string | null;
26677
26686
  /**
26678
26687
  * Person's affiliation within organization such as student, faculty, staff.
26679
26688
  */
26680
- readonly affiliations: unknown;
26689
+ readonly affiliations?: unknown;
26681
26690
  first_name?: string;
26682
26691
  last_name?: string;
26683
26692
  birth_date?: string | null;
26684
- readonly identity_provider_name: string;
26685
- readonly identity_provider_label: string;
26686
- readonly identity_provider_management_url: string;
26687
- 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>;
26688
26697
  image?: string | null;
26689
26698
  /**
26690
26699
  * Source of identity
26691
26700
  *
26692
26701
  * Indicates what identity provider was used.
26693
26702
  */
26694
- readonly identity_source: string;
26695
- readonly should_protect_user_details: boolean;
26696
- readonly has_active_session: boolean;
26697
- readonly has_usable_password: boolean;
26698
- readonly ip_address: string;
26703
+ readonly identity_source?: string;
26704
+ readonly should_protect_user_details?: boolean;
26705
+ readonly has_active_session?: boolean;
26706
+ readonly has_usable_password?: boolean;
26707
+ readonly ip_address?: string;
26699
26708
  /**
26700
26709
  * User's gender (male, female, or unknown)
26701
26710
  */
@@ -26739,7 +26748,7 @@ export type UserMe = {
26739
26748
  /**
26740
26749
  * Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
26741
26750
  */
26742
- readonly attribute_sources: unknown;
26751
+ readonly attribute_sources?: unknown;
26743
26752
  /**
26744
26753
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
26745
26754
  */
@@ -26747,12 +26756,12 @@ export type UserMe = {
26747
26756
  /**
26748
26757
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
26749
26758
  */
26750
- readonly active_isds: unknown;
26759
+ readonly active_isds?: unknown;
26751
26760
  /**
26752
26761
  * Reason why the user was deactivated. Visible to staff and support.
26753
26762
  */
26754
26763
  deactivation_reason?: string;
26755
- profile_completeness: ProfileCompleteness;
26764
+ profile_completeness?: ProfileCompleteness;
26756
26765
  };
26757
26766
  export type UserNationalityStats = {
26758
26767
  /**
@@ -29759,6 +29768,7 @@ export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name'
29759
29768
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
29760
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';
29761
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';
29762
29772
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
29763
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';
29764
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';
@@ -29766,7 +29776,7 @@ export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name
29766
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';
29767
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';
29768
29778
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
29769
- 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';
29770
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';
29771
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';
29772
29782
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -29851,6 +29861,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
29851
29861
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
29852
29862
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
29853
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';
29854
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';
29855
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';
29856
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';
@@ -36722,7 +36733,9 @@ export type ChatSessionsRetrieveResponse = ChatSessionsRetrieveResponses[keyof C
36722
36733
  export type ChatSessionsCurrentRetrieveData = {
36723
36734
  body?: never;
36724
36735
  path?: never;
36725
- query?: never;
36736
+ query?: {
36737
+ field?: Array<ChatSessionFieldEnum>;
36738
+ };
36726
36739
  url: '/api/chat-sessions/current/';
36727
36740
  };
36728
36741
  export type ChatSessionsCurrentRetrieveResponses = {
@@ -48370,7 +48383,9 @@ export type MarketplaceOrdersOfferingRetrieveData = {
48370
48383
  path: {
48371
48384
  uuid: string;
48372
48385
  };
48373
- query?: never;
48386
+ query?: {
48387
+ field?: Array<PublicOfferingDetailsFieldEnum>;
48388
+ };
48374
48389
  url: '/api/marketplace-orders/{uuid}/offering/';
48375
48390
  };
48376
48391
  export type MarketplaceOrdersOfferingRetrieveResponses = {
@@ -48410,7 +48425,9 @@ export type MarketplaceOrdersResourceRetrieveData = {
48410
48425
  path: {
48411
48426
  uuid: string;
48412
48427
  };
48413
- query?: never;
48428
+ query?: {
48429
+ field?: Array<ResourceFieldEnum>;
48430
+ };
48414
48431
  url: '/api/marketplace-orders/{uuid}/resource/';
48415
48432
  };
48416
48433
  export type MarketplaceOrdersResourceRetrieveResponses = {
@@ -51723,7 +51740,9 @@ export type MarketplaceProviderOfferingsOrdersRetrieveData = {
51723
51740
  order_uuid: string;
51724
51741
  uuid: string;
51725
51742
  };
51726
- query?: never;
51743
+ query?: {
51744
+ field?: Array<OrderDetailsFieldEnum>;
51745
+ };
51727
51746
  url: '/api/marketplace-provider-offerings/{uuid}/orders/{order_uuid}/';
51728
51747
  };
51729
51748
  export type MarketplaceProviderOfferingsOrdersRetrieveResponses = {
@@ -53685,7 +53704,9 @@ export type MarketplaceProviderResourcesOfferingRetrieveData = {
53685
53704
  path: {
53686
53705
  uuid: string;
53687
53706
  };
53688
- query?: never;
53707
+ query?: {
53708
+ field?: Array<PublicOfferingDetailsFieldEnum>;
53709
+ };
53689
53710
  url: '/api/marketplace-provider-resources/{uuid}/offering/';
53690
53711
  };
53691
53712
  export type MarketplaceProviderResourcesOfferingRetrieveResponses = {
@@ -55869,7 +55890,9 @@ export type MarketplaceResourcesOfferingRetrieveData = {
55869
55890
  path: {
55870
55891
  uuid: string;
55871
55892
  };
55872
- query?: never;
55893
+ query?: {
55894
+ field?: Array<PublicOfferingDetailsFieldEnum>;
55895
+ };
55873
55896
  url: '/api/marketplace-resources/{uuid}/offering/';
55874
55897
  };
55875
55898
  export type MarketplaceResourcesOfferingRetrieveResponses = {
@@ -56093,6 +56116,7 @@ export type MarketplaceResourcesTeamMembersListData = {
56093
56116
  * Downscaled
56094
56117
  */
56095
56118
  downscaled?: boolean;
56119
+ field?: Array<ResourceTeamMemberFieldEnum>;
56096
56120
  /**
56097
56121
  * Flavor name
56098
56122
  */
@@ -67141,6 +67165,10 @@ export type OpenstackHypervisorsListData = {
67141
67165
  settings_uuid?: string;
67142
67166
  state?: string;
67143
67167
  status?: string;
67168
+ /**
67169
+ * Trait names with AND logic (comma-separated)
67170
+ */
67171
+ trait?: string;
67144
67172
  };
67145
67173
  url: '/api/openstack-hypervisors/';
67146
67174
  };
@@ -67179,6 +67207,10 @@ export type OpenstackHypervisorsCountData = {
67179
67207
  settings_uuid?: string;
67180
67208
  state?: string;
67181
67209
  status?: string;
67210
+ /**
67211
+ * Trait names with AND logic (comma-separated)
67212
+ */
67213
+ trait?: string;
67182
67214
  };
67183
67215
  url: '/api/openstack-hypervisors/';
67184
67216
  };
@@ -86378,7 +86410,9 @@ export type UsersConfirmEmailResponses = {
86378
86410
  export type UsersMeRetrieveData = {
86379
86411
  body?: never;
86380
86412
  path?: never;
86381
- query?: never;
86413
+ query?: {
86414
+ field?: Array<UserMeFieldEnum>;
86415
+ };
86382
86416
  url: '/api/users/me/';
86383
86417
  };
86384
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.40",
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",