waldur-js-client 8.0.9-dev.55 → 8.0.9-dev.57

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +205 -494
  2. package/package.json +1 -1
@@ -277,6 +277,14 @@ export type AgentConnectionSummary = {
277
277
  */
278
278
  readonly total_queued_messages: number;
279
279
  };
280
+ export type AgentDependency = {
281
+ package: string;
282
+ version: string;
283
+ };
284
+ export type AgentDependencyRequest = {
285
+ package: string;
286
+ version: string;
287
+ };
280
288
  export type AgentEventSubscriptionCreateRequest = {
281
289
  /**
282
290
  * The type of object to observe for events
@@ -317,9 +325,7 @@ export type AgentIdentity = {
317
325
  readonly created_by: string | null;
318
326
  name: string;
319
327
  version?: string | null;
320
- dependencies?: {
321
- [key: string]: unknown;
322
- };
328
+ readonly dependencies: Array<AgentDependency>;
323
329
  /**
324
330
  * Example: '/etc/waldur/agent.yaml'
325
331
  */
@@ -340,9 +346,6 @@ export type AgentIdentityRequest = {
340
346
  offering: string;
341
347
  name: string;
342
348
  version?: string | null;
343
- dependencies?: {
344
- [key: string]: unknown;
345
- };
346
349
  /**
347
350
  * Example: '/etc/waldur/agent.yaml'
348
351
  */
@@ -825,9 +828,7 @@ export type Answer = {
825
828
  };
826
829
  export type AnswerSubmitRequest = {
827
830
  question_uuid: string;
828
- answer_data: {
829
- [key: string]: unknown;
830
- } | null;
831
+ answer_data: unknown;
831
832
  };
832
833
  export type AnswerSubmitResponse = {
833
834
  detail: string;
@@ -2902,9 +2903,7 @@ export type BroadcastMessage = {
2902
2903
  readonly created: string;
2903
2904
  subject: string;
2904
2905
  body: string;
2905
- query: {
2906
- [key: string]: unknown;
2907
- };
2906
+ query: QueryOutput;
2908
2907
  readonly author_full_name: string;
2909
2908
  readonly emails: {
2910
2909
  [key: string]: unknown;
@@ -2912,14 +2911,17 @@ export type BroadcastMessage = {
2912
2911
  state: BroadcastMessageStateEnum;
2913
2912
  send_at?: string | null;
2914
2913
  };
2915
- export type BroadcastMessageRequest = {
2914
+ export type BroadcastMessageCreateRequest = {
2916
2915
  subject: string;
2917
2916
  body: string;
2918
- query: {
2919
- [key: string]: unknown;
2920
- };
2917
+ query: BroadcastMessageQueryRequest;
2921
2918
  send_at?: string | null;
2922
2919
  };
2920
+ export type BroadcastMessageQueryRequest = {
2921
+ customers?: Array<string>;
2922
+ offerings?: Array<string>;
2923
+ all_users?: boolean;
2924
+ };
2923
2925
  export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
2924
2926
  export type BulkRoundCreateRequestRequest = {
2925
2927
  start_time: string;
@@ -3359,7 +3361,7 @@ export type CallResourceTemplate = {
3359
3361
  [key: string]: unknown;
3360
3362
  };
3361
3363
  limits?: {
3362
- [key: string]: unknown;
3364
+ [key: string]: number;
3363
3365
  };
3364
3366
  /**
3365
3367
  * If True, every proposal must include this resource type
@@ -3380,7 +3382,7 @@ export type CallResourceTemplateRequest = {
3380
3382
  [key: string]: unknown;
3381
3383
  };
3382
3384
  limits?: {
3383
- [key: string]: unknown;
3385
+ [key: string]: number;
3384
3386
  };
3385
3387
  /**
3386
3388
  * If True, every proposal must include this resource type
@@ -7416,9 +7418,7 @@ export type EventSubscription = {
7416
7418
  /**
7417
7419
  * List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
7418
7420
  */
7419
- observable_objects?: {
7420
- [key: string]: unknown;
7421
- };
7421
+ observable_objects?: Array<EventSubscriptionObservableObject>;
7422
7422
  readonly created: string;
7423
7423
  readonly modified: string;
7424
7424
  /**
@@ -7426,6 +7426,16 @@ export type EventSubscription = {
7426
7426
  */
7427
7427
  source_ip: string | string | null;
7428
7428
  };
7429
+ export type EventSubscriptionObservableObject = {
7430
+ offering_uuid?: string;
7431
+ object_type: string;
7432
+ object_id?: number;
7433
+ };
7434
+ export type EventSubscriptionObservableObjectRequest = {
7435
+ offering_uuid?: string;
7436
+ object_type: string;
7437
+ object_id?: number;
7438
+ };
7429
7439
  export type EventSubscriptionQueue = {
7430
7440
  readonly uuid: string;
7431
7441
  readonly url: string;
@@ -7473,9 +7483,7 @@ export type EventSubscriptionRequest = {
7473
7483
  /**
7474
7484
  * List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
7475
7485
  */
7476
- observable_objects?: {
7477
- [key: string]: unknown;
7478
- };
7486
+ observable_objects?: Array<EventSubscriptionObservableObjectRequest>;
7479
7487
  };
7480
7488
  export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_options_updated' | 'marketplace_offering_resource_options_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_rbac_policy_created' | 'openstack_rbac_policy_deleted' | 'openstack_router_interface_added' | 'openstack_router_interface_removed' | 'openstack_router_updated' | 'openstack_subnet_host_routes_changed' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_rules_changed' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'proposal_workflow_advanced' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_rescue_failed' | 'resource_rescue_scheduled' | 'resource_rescue_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_unrescue_failed' | 'resource_unrescue_scheduled' | 'resource_unrescue_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
7481
7489
  export type ExecuteActionErrorResponse = {
@@ -8262,18 +8270,9 @@ export type GroupInvitation = {
8262
8270
  * UUID of the project role to grant if auto_create_project is enabled
8263
8271
  */
8264
8272
  project_role?: string | null;
8265
- user_affiliations?: {
8266
- [key: string]: unknown;
8267
- };
8268
- user_email_patterns?: {
8269
- [key: string]: unknown;
8270
- };
8271
- /**
8272
- * List of allowed identity sources (identity providers).
8273
- */
8274
- user_identity_sources?: {
8275
- [key: string]: unknown;
8276
- };
8273
+ user_affiliations?: Array<string>;
8274
+ user_email_patterns?: Array<string>;
8275
+ user_identity_sources?: Array<string>;
8277
8276
  /**
8278
8277
  * Image URL of the invitation scope (Customer or Project)
8279
8278
  */
@@ -8320,18 +8319,9 @@ export type GroupInvitationRequest = {
8320
8319
  * UUID of the project role to grant if auto_create_project is enabled
8321
8320
  */
8322
8321
  project_role?: string | null;
8323
- user_affiliations?: {
8324
- [key: string]: unknown;
8325
- };
8326
- user_email_patterns?: {
8327
- [key: string]: unknown;
8328
- };
8329
- /**
8330
- * List of allowed identity sources (identity providers).
8331
- */
8332
- user_identity_sources?: {
8333
- [key: string]: unknown;
8334
- };
8322
+ user_affiliations?: Array<string>;
8323
+ user_email_patterns?: Array<string>;
8324
+ user_identity_sources?: Array<string>;
8335
8325
  /**
8336
8326
  * Custom description text displayed to users viewing this invitation.
8337
8327
  */
@@ -8374,18 +8364,9 @@ export type GroupInvitationUpdate = {
8374
8364
  * UUID of the project role to grant if auto_create_project is enabled
8375
8365
  */
8376
8366
  project_role?: string | null;
8377
- user_affiliations?: {
8378
- [key: string]: unknown;
8379
- };
8380
- user_email_patterns?: {
8381
- [key: string]: unknown;
8382
- };
8383
- /**
8384
- * List of allowed identity sources (identity providers).
8385
- */
8386
- user_identity_sources?: {
8387
- [key: string]: unknown;
8388
- };
8367
+ user_affiliations?: Array<string>;
8368
+ user_email_patterns?: Array<string>;
8369
+ user_identity_sources?: Array<string>;
8389
8370
  /**
8390
8371
  * Custom description text displayed to users viewing this invitation.
8391
8372
  */
@@ -8428,18 +8409,9 @@ export type GroupInvitationUpdateRequest = {
8428
8409
  * UUID of the project role to grant if auto_create_project is enabled
8429
8410
  */
8430
8411
  project_role?: string | null;
8431
- user_affiliations?: {
8432
- [key: string]: unknown;
8433
- };
8434
- user_email_patterns?: {
8435
- [key: string]: unknown;
8436
- };
8437
- /**
8438
- * List of allowed identity sources (identity providers).
8439
- */
8440
- user_identity_sources?: {
8441
- [key: string]: unknown;
8442
- };
8412
+ user_affiliations?: Array<string>;
8413
+ user_email_patterns?: Array<string>;
8414
+ user_identity_sources?: Array<string>;
8443
8415
  /**
8444
8416
  * Custom description text displayed to users viewing this invitation.
8445
8417
  */
@@ -8560,6 +8532,14 @@ export type IsdUserCount = {
8560
8532
  stale_user_count: number;
8561
8533
  oldest_sync: string | null;
8562
8534
  };
8535
+ export type IdNamePair = {
8536
+ name: string;
8537
+ uuid: string;
8538
+ };
8539
+ export type IdNamePairRequest = {
8540
+ name: string;
8541
+ uuid: string;
8542
+ };
8563
8543
  export type IdentityBridgeAllowedFields = {
8564
8544
  allowed_fields: Array<string>;
8565
8545
  };
@@ -8638,6 +8618,8 @@ export type IdentityManager = {
8638
8618
  managed_isds: Array<string>;
8639
8619
  };
8640
8620
  export type IdentityProvider = {
8621
+ protected_fields?: Array<string>;
8622
+ allowed_redirects?: Array<string>;
8641
8623
  provider: string;
8642
8624
  is_active?: boolean;
8643
8625
  /**
@@ -8679,9 +8661,6 @@ export type IdentityProvider = {
8679
8661
  * The endpoint for user details management.
8680
8662
  */
8681
8663
  management_url?: string;
8682
- protected_fields?: {
8683
- [key: string]: unknown;
8684
- };
8685
8664
  /**
8686
8665
  * Space-separated list of scopes to request during authentication.
8687
8666
  */
@@ -8704,14 +8683,10 @@ export type IdentityProvider = {
8704
8683
  * Space-separated list of extra fields to persist.
8705
8684
  */
8706
8685
  extra_fields?: string | null;
8707
- /**
8708
- * List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
8709
- */
8710
- allowed_redirects?: {
8711
- [key: string]: unknown;
8712
- };
8713
8686
  };
8714
8687
  export type IdentityProviderRequest = {
8688
+ protected_fields?: Array<string>;
8689
+ allowed_redirects?: Array<string>;
8715
8690
  provider: string;
8716
8691
  is_active?: boolean;
8717
8692
  /**
@@ -8737,9 +8712,6 @@ export type IdentityProviderRequest = {
8737
8712
  * The endpoint for user details management.
8738
8713
  */
8739
8714
  management_url?: string;
8740
- protected_fields?: {
8741
- [key: string]: unknown;
8742
- };
8743
8715
  /**
8744
8716
  * Space-separated list of scopes to request during authentication.
8745
8717
  */
@@ -8762,12 +8734,6 @@ export type IdentityProviderRequest = {
8762
8734
  * Space-separated list of extra fields to persist.
8763
8735
  */
8764
8736
  extra_fields?: string | null;
8765
- /**
8766
- * List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
8767
- */
8768
- allowed_redirects?: {
8769
- [key: string]: unknown;
8770
- };
8771
8737
  };
8772
8738
  export type ImageCreateRequest = {
8773
8739
  name: string;
@@ -10050,12 +10016,7 @@ export type ManagedProject = {
10050
10016
  * The destination used to send instructions from the remote portal.
10051
10017
  */
10052
10018
  destination: string;
10053
- /**
10054
- * Details of the project as provided by the remote OpenPortal.
10055
- */
10056
- readonly details: {
10057
- [key: string]: unknown;
10058
- };
10019
+ details: ManagedProjectDetails;
10059
10020
  project: string;
10060
10021
  project_data: BasicProject;
10061
10022
  project_template: string;
@@ -10067,6 +10028,13 @@ export type ManagedProject = {
10067
10028
  */
10068
10029
  local_identifier?: string | null;
10069
10030
  };
10031
+ export type ManagedProjectDetails = {
10032
+ name?: string | null;
10033
+ description?: string | null;
10034
+ allocation?: string | null;
10035
+ start_date?: string | null;
10036
+ end_date?: string | null;
10037
+ };
10070
10038
  export type ManagedRancherCreateNodeRequest = {
10071
10039
  role: RancherNodeRoleEnum;
10072
10040
  system_volume_size?: number;
@@ -11137,9 +11105,7 @@ export type MergedSecretOptions = {
11137
11105
  /**
11138
11106
  * Script environment variables
11139
11107
  */
11140
- environ?: {
11141
- [key: string]: unknown;
11142
- };
11108
+ environ?: Array<ScriptEnvVar>;
11143
11109
  /**
11144
11110
  * Script for resource creation
11145
11111
  */
@@ -11301,9 +11267,7 @@ export type MergedSecretOptionsRequest = {
11301
11267
  /**
11302
11268
  * Script environment variables
11303
11269
  */
11304
- environ?: {
11305
- [key: string]: unknown;
11306
- };
11270
+ environ?: Array<ScriptEnvVarRequest>;
11307
11271
  /**
11308
11272
  * Script for resource creation
11309
11273
  */
@@ -16915,9 +16879,6 @@ export type PatchedAzureVirtualMachineRequest = {
16915
16879
  export type PatchedBroadcastMessageRequest = {
16916
16880
  subject?: string;
16917
16881
  body?: string;
16918
- query?: {
16919
- [key: string]: unknown;
16920
- };
16921
16882
  send_at?: string | null;
16922
16883
  };
16923
16884
  export type PatchedCallAssignmentConfigurationRequest = {
@@ -16999,7 +16960,7 @@ export type PatchedCallResourceTemplateRequest = {
16999
16960
  [key: string]: unknown;
17000
16961
  };
17001
16962
  limits?: {
17002
- [key: string]: unknown;
16963
+ [key: string]: number;
17003
16964
  };
17004
16965
  /**
17005
16966
  * If True, every proposal must include this resource type
@@ -17320,18 +17281,9 @@ export type PatchedGroupInvitationUpdateRequest = {
17320
17281
  * UUID of the project role to grant if auto_create_project is enabled
17321
17282
  */
17322
17283
  project_role?: string | null;
17323
- user_affiliations?: {
17324
- [key: string]: unknown;
17325
- };
17326
- user_email_patterns?: {
17327
- [key: string]: unknown;
17328
- };
17329
- /**
17330
- * List of allowed identity sources (identity providers).
17331
- */
17332
- user_identity_sources?: {
17333
- [key: string]: unknown;
17334
- };
17284
+ user_affiliations?: Array<string>;
17285
+ user_email_patterns?: Array<string>;
17286
+ user_identity_sources?: Array<string>;
17335
17287
  /**
17336
17288
  * Custom description text displayed to users viewing this invitation.
17337
17289
  */
@@ -17346,6 +17298,8 @@ export type PatchedGroupInvitationUpdateRequest = {
17346
17298
  allow_custom_project_details?: boolean;
17347
17299
  };
17348
17300
  export type PatchedIdentityProviderRequest = {
17301
+ protected_fields?: Array<string>;
17302
+ allowed_redirects?: Array<string>;
17349
17303
  provider?: string;
17350
17304
  is_active?: boolean;
17351
17305
  /**
@@ -17371,9 +17325,6 @@ export type PatchedIdentityProviderRequest = {
17371
17325
  * The endpoint for user details management.
17372
17326
  */
17373
17327
  management_url?: string;
17374
- protected_fields?: {
17375
- [key: string]: unknown;
17376
- };
17377
17328
  /**
17378
17329
  * Space-separated list of scopes to request during authentication.
17379
17330
  */
@@ -17396,12 +17347,6 @@ export type PatchedIdentityProviderRequest = {
17396
17347
  * Space-separated list of extra fields to persist.
17397
17348
  */
17398
17349
  extra_fields?: string | null;
17399
- /**
17400
- * List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
17401
- */
17402
- allowed_redirects?: {
17403
- [key: string]: unknown;
17404
- };
17405
17350
  };
17406
17351
  export type PatchedInvitationUpdateRequest = {
17407
17352
  /**
@@ -18229,18 +18174,8 @@ export type PatchedQuestionAdminRequest = {
18229
18174
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
18230
18175
  */
18231
18176
  max_value?: string | null;
18232
- /**
18233
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
18234
- */
18235
- allowed_file_types?: {
18236
- [key: string]: unknown;
18237
- };
18238
- /**
18239
- * List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
18240
- */
18241
- allowed_mime_types?: {
18242
- [key: string]: unknown;
18243
- };
18177
+ allowed_file_types?: Array<string>;
18178
+ allowed_mime_types?: Array<string>;
18244
18179
  /**
18245
18180
  * Maximum file size in megabytes. If not set, no size limit is enforced.
18246
18181
  */
@@ -18274,12 +18209,7 @@ export type PatchedQuestionAdminRequest = {
18274
18209
  */
18275
18210
  rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
18276
18211
  operator?: ChecklistOperators | BlankEnum;
18277
- /**
18278
- * Answer value that trigger review.
18279
- */
18280
- review_answer_value?: {
18281
- [key: string]: unknown;
18282
- } | null;
18212
+ review_answer_value?: unknown;
18283
18213
  /**
18284
18214
  * This question always requires review regardless of answer
18285
18215
  */
@@ -18307,12 +18237,7 @@ export type PatchedQuestionAdminRequest = {
18307
18237
  export type PatchedQuestionDependencyRequest = {
18308
18238
  question?: string;
18309
18239
  depends_on_question?: string;
18310
- /**
18311
- * The answer value(s) that make this question visible
18312
- */
18313
- required_answer_value?: {
18314
- [key: string]: unknown;
18315
- };
18240
+ required_answer_value?: unknown;
18316
18241
  operator?: ChecklistOperators;
18317
18242
  };
18318
18243
  export type PatchedQuestionOptionsAdminRequest = {
@@ -18360,9 +18285,7 @@ export type PatchedRancherHpaRequest = {
18360
18285
  workload?: string | null;
18361
18286
  min_replicas?: number;
18362
18287
  max_replicas?: number;
18363
- metrics?: {
18364
- [key: string]: unknown;
18365
- };
18288
+ metrics?: Array<RancherHpaMetricRequest>;
18366
18289
  };
18367
18290
  export type PatchedRancherIngressRequest = {
18368
18291
  name?: string;
@@ -18598,9 +18521,7 @@ export type PatchedRobotAccountRequest = {
18598
18521
  * Users who have access to this robot account.
18599
18522
  */
18600
18523
  users?: Array<string>;
18601
- keys?: {
18602
- [key: string]: unknown;
18603
- };
18524
+ keys?: Array<string>;
18604
18525
  responsible_user?: string | null;
18605
18526
  };
18606
18527
  export type PatchedRoleDetailsRequest = {
@@ -18809,24 +18730,6 @@ export type PatchedSoftwarePackageRequest = {
18809
18730
  name?: string;
18810
18731
  description?: string;
18811
18732
  homepage?: string | null;
18812
- /**
18813
- * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
18814
- */
18815
- categories?: {
18816
- [key: string]: unknown;
18817
- };
18818
- /**
18819
- * Software licenses (e.g., ['GPL-3.0', 'MIT'])
18820
- */
18821
- licenses?: {
18822
- [key: string]: unknown;
18823
- };
18824
- /**
18825
- * Package maintainers
18826
- */
18827
- maintainers?: {
18828
- [key: string]: unknown;
18829
- };
18830
18733
  /**
18831
18734
  * Whether this package is an extension of another package
18832
18735
  */
@@ -18939,6 +18842,7 @@ export type PatchedUserRequest = {
18939
18842
  */
18940
18843
  notifications_enabled?: boolean;
18941
18844
  preferred_language?: string;
18845
+ affiliations?: Array<string>;
18942
18846
  first_name?: string;
18943
18847
  last_name?: string;
18944
18848
  birth_date?: string | null;
@@ -18958,12 +18862,7 @@ export type PatchedUserRequest = {
18958
18862
  * Primary citizenship (ISO 3166-1 alpha-2 code)
18959
18863
  */
18960
18864
  nationality?: string;
18961
- /**
18962
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
18963
- */
18964
- nationalities?: {
18965
- [key: string]: unknown;
18966
- };
18865
+ nationalities?: Array<string>;
18967
18866
  organization_country?: string;
18968
18867
  /**
18969
18868
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -18973,12 +18872,7 @@ export type PatchedUserRequest = {
18973
18872
  * Company registration code of the user's organization, if known
18974
18873
  */
18975
18874
  organization_registry_code?: string;
18976
- /**
18977
- * REFEDS assurance profile URIs from identity provider
18978
- */
18979
- eduperson_assurance?: {
18980
- [key: string]: unknown;
18981
- };
18875
+ eduperson_assurance?: Array<string>;
18982
18876
  /**
18983
18877
  * Designates whether the user is allowed to manage remote user identities.
18984
18878
  */
@@ -18987,12 +18881,8 @@ export type PatchedUserRequest = {
18987
18881
  * Designates whether the user is allowed to create and use personal access tokens.
18988
18882
  */
18989
18883
  can_use_personal_access_tokens?: boolean;
18990
- /**
18991
- * 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.
18992
- */
18993
- managed_isds?: {
18994
- [key: string]: unknown;
18995
- };
18884
+ managed_isds?: Array<string>;
18885
+ active_isds?: Array<string>;
18996
18886
  /**
18997
18887
  * Reason why the user was deactivated. Visible to staff and support.
18998
18888
  */
@@ -21424,6 +21314,16 @@ export type PullMarketplaceScriptResourceRequest = {
21424
21314
  resource_uuid: string;
21425
21315
  };
21426
21316
  export type QosStrategyEnum = 'threshold' | 'progressive';
21317
+ export type QueryOutput = {
21318
+ customers?: Array<IdNamePair>;
21319
+ offerings?: Array<IdNamePair>;
21320
+ all_users?: boolean;
21321
+ };
21322
+ export type QueryOutputRequest = {
21323
+ customers?: Array<IdNamePairRequest>;
21324
+ offerings?: Array<IdNamePairRequest>;
21325
+ all_users?: boolean;
21326
+ };
21427
21327
  export type QueryPerformance = {
21428
21328
  /**
21429
21329
  * Total sequential scans (potentially expensive)
@@ -21478,18 +21378,8 @@ export type Question = {
21478
21378
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
21479
21379
  */
21480
21380
  max_value?: string | null;
21481
- /**
21482
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21483
- */
21484
- allowed_file_types?: {
21485
- [key: string]: unknown;
21486
- };
21487
- /**
21488
- * List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
21489
- */
21490
- allowed_mime_types?: {
21491
- [key: string]: unknown;
21492
- };
21381
+ allowed_file_types?: Array<string>;
21382
+ allowed_mime_types?: Array<string>;
21493
21383
  /**
21494
21384
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21495
21385
  */
@@ -21523,12 +21413,7 @@ export type Question = {
21523
21413
  */
21524
21414
  rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
21525
21415
  operator?: ChecklistOperators | BlankEnum;
21526
- /**
21527
- * Answer value that trigger review.
21528
- */
21529
- review_answer_value?: {
21530
- [key: string]: unknown;
21531
- } | null;
21416
+ review_answer_value?: unknown;
21532
21417
  /**
21533
21418
  * This question always requires review regardless of answer
21534
21419
  */
@@ -21574,18 +21459,8 @@ export type QuestionAdmin = {
21574
21459
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
21575
21460
  */
21576
21461
  max_value?: string | null;
21577
- /**
21578
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21579
- */
21580
- allowed_file_types?: {
21581
- [key: string]: unknown;
21582
- };
21583
- /**
21584
- * List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
21585
- */
21586
- allowed_mime_types?: {
21587
- [key: string]: unknown;
21588
- };
21462
+ allowed_file_types?: Array<string>;
21463
+ allowed_mime_types?: Array<string>;
21589
21464
  /**
21590
21465
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21591
21466
  */
@@ -21619,12 +21494,7 @@ export type QuestionAdmin = {
21619
21494
  */
21620
21495
  rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
21621
21496
  operator?: ChecklistOperators | BlankEnum;
21622
- /**
21623
- * Answer value that trigger review.
21624
- */
21625
- review_answer_value?: {
21626
- [key: string]: unknown;
21627
- } | null;
21497
+ review_answer_value?: unknown;
21628
21498
  /**
21629
21499
  * This question always requires review regardless of answer
21630
21500
  */
@@ -21673,18 +21543,8 @@ export type QuestionAdminRequest = {
21673
21543
  * Maximum value allowed for NUMBER, YEAR, and RATING type questions
21674
21544
  */
21675
21545
  max_value?: string | null;
21676
- /**
21677
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
21678
- */
21679
- allowed_file_types?: {
21680
- [key: string]: unknown;
21681
- };
21682
- /**
21683
- * List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
21684
- */
21685
- allowed_mime_types?: {
21686
- [key: string]: unknown;
21687
- };
21546
+ allowed_file_types?: Array<string>;
21547
+ allowed_mime_types?: Array<string>;
21688
21548
  /**
21689
21549
  * Maximum file size in megabytes. If not set, no size limit is enforced.
21690
21550
  */
@@ -21718,12 +21578,7 @@ export type QuestionAdminRequest = {
21718
21578
  */
21719
21579
  rich_text_toolbar_level?: RichTextToolbarLevelEnum | BlankEnum;
21720
21580
  operator?: ChecklistOperators | BlankEnum;
21721
- /**
21722
- * Answer value that trigger review.
21723
- */
21724
- review_answer_value?: {
21725
- [key: string]: unknown;
21726
- } | null;
21581
+ review_answer_value?: unknown;
21727
21582
  /**
21728
21583
  * This question always requires review regardless of answer
21729
21584
  */
@@ -21791,12 +21646,7 @@ export type QuestionDependency = {
21791
21646
  readonly question_name: string;
21792
21647
  depends_on_question: string;
21793
21648
  readonly depends_on_question_name: string;
21794
- /**
21795
- * The answer value(s) that make this question visible
21796
- */
21797
- required_answer_value: {
21798
- [key: string]: unknown;
21799
- };
21649
+ required_answer_value?: unknown;
21800
21650
  operator?: ChecklistOperators;
21801
21651
  };
21802
21652
  export type QuestionDependencyInfo = {
@@ -21806,12 +21656,7 @@ export type QuestionDependencyInfo = {
21806
21656
  export type QuestionDependencyRequest = {
21807
21657
  question: string;
21808
21658
  depends_on_question: string;
21809
- /**
21810
- * The answer value(s) that make this question visible
21811
- */
21812
- required_answer_value: {
21813
- [key: string]: unknown;
21814
- };
21659
+ required_answer_value?: unknown;
21815
21660
  operator?: ChecklistOperators;
21816
21661
  };
21817
21662
  export type QuestionOptions = {
@@ -21965,12 +21810,7 @@ export type QuestionWithAnswerReviewer = {
21965
21810
  rich_text_toolbar_level: RichTextToolbarLevelEnum;
21966
21811
  dependencies_info: QuestionDependencyInfo | null;
21967
21812
  operator?: ChecklistOperators | BlankEnum;
21968
- /**
21969
- * Answer value that trigger review.
21970
- */
21971
- review_answer_value?: {
21972
- [key: string]: unknown;
21973
- } | null;
21813
+ review_answer_value?: unknown;
21974
21814
  /**
21975
21815
  * This question always requires review regardless of answer
21976
21816
  */
@@ -22163,17 +22003,11 @@ export type RancherCluster = {
22163
22003
  install_longhorn?: boolean;
22164
22004
  readonly management_security_group: string;
22165
22005
  readonly public_ips: Array<RancherNestedPublicIp>;
22166
- /**
22167
- * Cluster capacity in the format {'cpu': '10', 'ram': '49125240Ki', 'pods': '330'}
22168
- */
22169
22006
  readonly capacity: {
22170
- [key: string]: unknown;
22007
+ [key: string]: number;
22171
22008
  };
22172
- /**
22173
- * Cluster requested resources in the format {'cpu': '1450m', 'memory': '884Mi', 'pods': '13'}
22174
- */
22175
22009
  readonly requested: {
22176
- [key: string]: unknown;
22010
+ [key: string]: number;
22177
22011
  };
22178
22012
  /**
22179
22013
  * Kubernetes version used in the cluster.
@@ -22333,9 +22167,27 @@ export type RancherHpa = {
22333
22167
  max_replicas?: number;
22334
22168
  readonly current_replicas: number;
22335
22169
  readonly desired_replicas: number;
22336
- metrics: {
22337
- [key: string]: unknown;
22338
- };
22170
+ metrics: Array<RancherHpaMetric>;
22171
+ };
22172
+ export type RancherHpaMetric = {
22173
+ name: string;
22174
+ type: string;
22175
+ target: RancherHpaMetricTarget;
22176
+ };
22177
+ export type RancherHpaMetricRequest = {
22178
+ name: string;
22179
+ type: string;
22180
+ target: RancherHpaMetricTargetRequest;
22181
+ };
22182
+ export type RancherHpaMetricTarget = {
22183
+ type: string;
22184
+ utilization?: number | null;
22185
+ averageValue?: string | null;
22186
+ };
22187
+ export type RancherHpaMetricTargetRequest = {
22188
+ type: string;
22189
+ utilization?: number | null;
22190
+ averageValue?: string | null;
22339
22191
  };
22340
22192
  export type RancherHpaRequest = {
22341
22193
  name: string;
@@ -22343,9 +22195,7 @@ export type RancherHpaRequest = {
22343
22195
  workload?: string | null;
22344
22196
  min_replicas?: number;
22345
22197
  max_replicas?: number;
22346
- metrics: {
22347
- [key: string]: unknown;
22348
- };
22198
+ metrics: Array<RancherHpaMetricRequest>;
22349
22199
  };
22350
22200
  export type RancherImportYamlRequest = {
22351
22201
  yaml: string;
@@ -24328,18 +24178,8 @@ export type ReviewerSuggestion = {
24328
24178
  readonly reviewed_by_name: string;
24329
24179
  readonly reviewed_at: string | null;
24330
24180
  rejection_reason?: string;
24331
- /**
24332
- * Keywords from reviewer's expertise that matched the source text
24333
- */
24334
- readonly matched_keywords: {
24335
- [key: string]: unknown;
24336
- };
24337
- /**
24338
- * Top proposals with highest affinity: [{uuid, name, slug, affinity}, ...]
24339
- */
24340
- readonly top_matching_proposals: {
24341
- [key: string]: unknown;
24342
- };
24181
+ readonly matched_keywords: Array<string>;
24182
+ readonly top_matching_proposals: Array<ReviewerSuggestionTopMatchingProposal>;
24343
24183
  /**
24344
24184
  * What content was used to generate this suggestion
24345
24185
  */
@@ -24359,6 +24199,28 @@ export type ReviewerSuggestionRequest = {
24359
24199
  rejection_reason?: string;
24360
24200
  };
24361
24201
  export type ReviewerSuggestionStatusEnum = 'pending' | 'confirmed' | 'rejected' | 'invited';
24202
+ export type ReviewerSuggestionTopMatchingProposal = {
24203
+ uuid: string;
24204
+ name?: string;
24205
+ slug?: string;
24206
+ affinity: number;
24207
+ keyword_score?: number | null;
24208
+ text_score?: number | null;
24209
+ has_coi?: boolean | null;
24210
+ coi_type?: string | null;
24211
+ coi_severity?: string | null;
24212
+ };
24213
+ export type ReviewerSuggestionTopMatchingProposalRequest = {
24214
+ uuid: string;
24215
+ name?: string;
24216
+ slug?: string;
24217
+ affinity: number;
24218
+ keyword_score?: number | null;
24219
+ text_score?: number | null;
24220
+ has_coi?: boolean | null;
24221
+ coi_type?: string | null;
24222
+ coi_severity?: string | null;
24223
+ };
24362
24224
  export type RichTextToolbarLevelEnum = 'minimal' | 'standard' | 'extended';
24363
24225
  export type RmqClientProperties = {
24364
24226
  /**
@@ -24739,9 +24601,7 @@ export type RobotAccount = {
24739
24601
  * Users who have access to this robot account.
24740
24602
  */
24741
24603
  users?: Array<string>;
24742
- keys?: {
24743
- [key: string]: unknown;
24744
- };
24604
+ keys?: Array<string>;
24745
24605
  readonly backend_id: string;
24746
24606
  readonly fingerprints: Array<Fingerprint>;
24747
24607
  responsible_user?: string | null;
@@ -24762,9 +24622,7 @@ export type RobotAccountDetails = {
24762
24622
  */
24763
24623
  type: string;
24764
24624
  readonly users: Array<BasicUser>;
24765
- keys?: {
24766
- [key: string]: unknown;
24767
- };
24625
+ keys?: Array<string>;
24768
24626
  readonly backend_id: string;
24769
24627
  readonly fingerprints: Array<Fingerprint>;
24770
24628
  responsible_user: BasicUser | null;
@@ -24797,9 +24655,7 @@ export type RobotAccountRequest = {
24797
24655
  * Users who have access to this robot account.
24798
24656
  */
24799
24657
  users?: Array<string>;
24800
- keys?: {
24801
- [key: string]: unknown;
24802
- };
24658
+ keys?: Array<string>;
24803
24659
  responsible_user?: string | null;
24804
24660
  };
24805
24661
  export type RobotAccountStates = 'Requested' | 'Creating' | 'OK' | 'Requested deletion' | 'Deleted' | 'Error';
@@ -25300,6 +25156,14 @@ export type ScriptAsyncDryRunResponse = {
25300
25156
  export type ScriptDryRunResponse = {
25301
25157
  output: string;
25302
25158
  };
25159
+ export type ScriptEnvVar = {
25160
+ name: string;
25161
+ value: string;
25162
+ };
25163
+ export type ScriptEnvVarRequest = {
25164
+ name: string;
25165
+ value: string;
25166
+ };
25303
25167
  export type Secret = {
25304
25168
  name: string;
25305
25169
  id: string;
@@ -26041,12 +25905,7 @@ export type SlurmPolicyEvaluationLog = {
26041
25905
  * Grace limit percentage threshold (e.g. 120 for 20% grace)
26042
25906
  */
26043
25907
  grace_limit_percentage: number;
26044
- /**
26045
- * List of actions taken during this evaluation (e.g. ['pause', 'notify'])
26046
- */
26047
- actions_taken?: {
26048
- [key: string]: unknown;
26049
- };
25908
+ readonly actions_taken: Array<string>;
26050
25909
  /**
26051
25910
  * Resource state before evaluation: {paused: bool, downscaled: bool}
26052
25911
  */
@@ -26244,24 +26103,9 @@ export type SoftwarePackage = {
26244
26103
  name: string;
26245
26104
  description?: string;
26246
26105
  homepage?: string | null;
26247
- /**
26248
- * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
26249
- */
26250
- categories?: {
26251
- [key: string]: unknown;
26252
- };
26253
- /**
26254
- * Software licenses (e.g., ['GPL-3.0', 'MIT'])
26255
- */
26256
- licenses?: {
26257
- [key: string]: unknown;
26258
- };
26259
- /**
26260
- * Package maintainers
26261
- */
26262
- maintainers?: {
26263
- [key: string]: unknown;
26264
- };
26106
+ readonly categories: Array<string>;
26107
+ readonly licenses: Array<string>;
26108
+ readonly maintainers: Array<string>;
26265
26109
  /**
26266
26110
  * Whether this package is an extension of another package
26267
26111
  */
@@ -26281,24 +26125,6 @@ export type SoftwarePackageRequest = {
26281
26125
  name: string;
26282
26126
  description?: string;
26283
26127
  homepage?: string | null;
26284
- /**
26285
- * Package categories (e.g., ['bio', 'hpc', 'build-tools'])
26286
- */
26287
- categories?: {
26288
- [key: string]: unknown;
26289
- };
26290
- /**
26291
- * Software licenses (e.g., ['GPL-3.0', 'MIT'])
26292
- */
26293
- licenses?: {
26294
- [key: string]: unknown;
26295
- };
26296
- /**
26297
- * Package maintainers
26298
- */
26299
- maintainers?: {
26300
- [key: string]: unknown;
26301
- };
26302
26128
  /**
26303
26129
  * Whether this package is an extension of another package
26304
26130
  */
@@ -27271,12 +27097,7 @@ export type User = {
27271
27097
  preferred_language?: string;
27272
27098
  readonly permissions: Array<Permission>;
27273
27099
  readonly requested_email: string | null;
27274
- /**
27275
- * Person's affiliation within organization such as student, faculty, staff.
27276
- */
27277
- readonly affiliations: {
27278
- [key: string]: unknown;
27279
- };
27100
+ affiliations?: Array<string>;
27280
27101
  first_name?: string;
27281
27102
  last_name?: string;
27282
27103
  birth_date?: string | null;
@@ -27310,12 +27131,7 @@ export type User = {
27310
27131
  * Primary citizenship (ISO 3166-1 alpha-2 code)
27311
27132
  */
27312
27133
  nationality?: string;
27313
- /**
27314
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
27315
- */
27316
- nationalities?: {
27317
- [key: string]: unknown;
27318
- };
27134
+ nationalities?: Array<string>;
27319
27135
  organization_country?: string;
27320
27136
  /**
27321
27137
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -27325,12 +27141,7 @@ export type User = {
27325
27141
  * Company registration code of the user's organization, if known
27326
27142
  */
27327
27143
  organization_registry_code?: string;
27328
- /**
27329
- * REFEDS assurance profile URIs from identity provider
27330
- */
27331
- eduperson_assurance?: {
27332
- [key: string]: unknown;
27333
- };
27144
+ eduperson_assurance?: Array<string>;
27334
27145
  /**
27335
27146
  * Designates whether the user is allowed to manage remote user identities.
27336
27147
  */
@@ -27345,18 +27156,8 @@ export type User = {
27345
27156
  readonly attribute_sources?: {
27346
27157
  [key: string]: unknown;
27347
27158
  };
27348
- /**
27349
- * 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.
27350
- */
27351
- managed_isds?: {
27352
- [key: string]: unknown;
27353
- };
27354
- /**
27355
- * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
27356
- */
27357
- readonly active_isds?: {
27358
- [key: string]: unknown;
27359
- };
27159
+ managed_isds?: Array<string>;
27160
+ active_isds?: Array<string>;
27360
27161
  /**
27361
27162
  * Reason why the user was deactivated. Visible to staff and support.
27362
27163
  */
@@ -27703,12 +27504,7 @@ export type UserMe = {
27703
27504
  preferred_language?: string;
27704
27505
  readonly permissions: Array<Permission>;
27705
27506
  readonly requested_email: string | null;
27706
- /**
27707
- * Person's affiliation within organization such as student, faculty, staff.
27708
- */
27709
- readonly affiliations: {
27710
- [key: string]: unknown;
27711
- };
27507
+ affiliations?: Array<string>;
27712
27508
  first_name?: string;
27713
27509
  last_name?: string;
27714
27510
  birth_date?: string | null;
@@ -27742,12 +27538,7 @@ export type UserMe = {
27742
27538
  * Primary citizenship (ISO 3166-1 alpha-2 code)
27743
27539
  */
27744
27540
  nationality?: string;
27745
- /**
27746
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
27747
- */
27748
- nationalities?: {
27749
- [key: string]: unknown;
27750
- };
27541
+ nationalities?: Array<string>;
27751
27542
  organization_country?: string;
27752
27543
  /**
27753
27544
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -27757,12 +27548,7 @@ export type UserMe = {
27757
27548
  * Company registration code of the user's organization, if known
27758
27549
  */
27759
27550
  organization_registry_code?: string;
27760
- /**
27761
- * REFEDS assurance profile URIs from identity provider
27762
- */
27763
- eduperson_assurance?: {
27764
- [key: string]: unknown;
27765
- };
27551
+ eduperson_assurance?: Array<string>;
27766
27552
  /**
27767
27553
  * Designates whether the user is allowed to manage remote user identities.
27768
27554
  */
@@ -27777,18 +27563,8 @@ export type UserMe = {
27777
27563
  readonly attribute_sources?: {
27778
27564
  [key: string]: unknown;
27779
27565
  };
27780
- /**
27781
- * 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.
27782
- */
27783
- managed_isds?: {
27784
- [key: string]: unknown;
27785
- };
27786
- /**
27787
- * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
27788
- */
27789
- readonly active_isds?: {
27790
- [key: string]: unknown;
27791
- };
27566
+ managed_isds?: Array<string>;
27567
+ active_isds?: Array<string>;
27792
27568
  /**
27793
27569
  * Reason why the user was deactivated. Visible to staff and support.
27794
27570
  */
@@ -27916,6 +27692,7 @@ export type UserRequest = {
27916
27692
  */
27917
27693
  notifications_enabled?: boolean;
27918
27694
  preferred_language?: string;
27695
+ affiliations?: Array<string>;
27919
27696
  first_name?: string;
27920
27697
  last_name?: string;
27921
27698
  birth_date?: string | null;
@@ -27935,12 +27712,7 @@ export type UserRequest = {
27935
27712
  * Primary citizenship (ISO 3166-1 alpha-2 code)
27936
27713
  */
27937
27714
  nationality?: string;
27938
- /**
27939
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
27940
- */
27941
- nationalities?: {
27942
- [key: string]: unknown;
27943
- };
27715
+ nationalities?: Array<string>;
27944
27716
  organization_country?: string;
27945
27717
  /**
27946
27718
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -27950,12 +27722,7 @@ export type UserRequest = {
27950
27722
  * Company registration code of the user's organization, if known
27951
27723
  */
27952
27724
  organization_registry_code?: string;
27953
- /**
27954
- * REFEDS assurance profile URIs from identity provider
27955
- */
27956
- eduperson_assurance?: {
27957
- [key: string]: unknown;
27958
- };
27725
+ eduperson_assurance?: Array<string>;
27959
27726
  /**
27960
27727
  * Designates whether the user is allowed to manage remote user identities.
27961
27728
  */
@@ -27964,12 +27731,8 @@ export type UserRequest = {
27964
27731
  * Designates whether the user is allowed to create and use personal access tokens.
27965
27732
  */
27966
27733
  can_use_personal_access_tokens?: boolean;
27967
- /**
27968
- * 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.
27969
- */
27970
- managed_isds?: {
27971
- [key: string]: unknown;
27972
- };
27734
+ managed_isds?: Array<string>;
27735
+ active_isds?: Array<string>;
27973
27736
  /**
27974
27737
  * Reason why the user was deactivated. Visible to staff and support.
27975
27738
  */
@@ -30496,6 +30259,7 @@ export type UserRequestForm = {
30496
30259
  */
30497
30260
  notifications_enabled?: boolean;
30498
30261
  preferred_language?: string;
30262
+ affiliations?: Array<string>;
30499
30263
  first_name?: string;
30500
30264
  last_name?: string;
30501
30265
  birth_date?: string | null;
@@ -30515,12 +30279,7 @@ export type UserRequestForm = {
30515
30279
  * Primary citizenship (ISO 3166-1 alpha-2 code)
30516
30280
  */
30517
30281
  nationality?: string;
30518
- /**
30519
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
30520
- */
30521
- nationalities?: {
30522
- [key: string]: unknown;
30523
- };
30282
+ nationalities?: Array<string>;
30524
30283
  organization_country?: string;
30525
30284
  /**
30526
30285
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -30530,12 +30289,7 @@ export type UserRequestForm = {
30530
30289
  * Company registration code of the user's organization, if known
30531
30290
  */
30532
30291
  organization_registry_code?: string;
30533
- /**
30534
- * REFEDS assurance profile URIs from identity provider
30535
- */
30536
- eduperson_assurance?: {
30537
- [key: string]: unknown;
30538
- };
30292
+ eduperson_assurance?: Array<string>;
30539
30293
  /**
30540
30294
  * Designates whether the user is allowed to manage remote user identities.
30541
30295
  */
@@ -30544,12 +30298,8 @@ export type UserRequestForm = {
30544
30298
  * Designates whether the user is allowed to create and use personal access tokens.
30545
30299
  */
30546
30300
  can_use_personal_access_tokens?: boolean;
30547
- /**
30548
- * 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.
30549
- */
30550
- managed_isds?: {
30551
- [key: string]: unknown;
30552
- };
30301
+ managed_isds?: Array<string>;
30302
+ active_isds?: Array<string>;
30553
30303
  /**
30554
30304
  * Reason why the user was deactivated. Visible to staff and support.
30555
30305
  */
@@ -30601,6 +30351,7 @@ export type UserRequestMultipart = {
30601
30351
  */
30602
30352
  notifications_enabled?: boolean;
30603
30353
  preferred_language?: string;
30354
+ affiliations?: Array<string>;
30604
30355
  first_name?: string;
30605
30356
  last_name?: string;
30606
30357
  birth_date?: string | null;
@@ -30620,12 +30371,7 @@ export type UserRequestMultipart = {
30620
30371
  * Primary citizenship (ISO 3166-1 alpha-2 code)
30621
30372
  */
30622
30373
  nationality?: string;
30623
- /**
30624
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
30625
- */
30626
- nationalities?: {
30627
- [key: string]: unknown;
30628
- };
30374
+ nationalities?: Array<string>;
30629
30375
  organization_country?: string;
30630
30376
  /**
30631
30377
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -30635,12 +30381,7 @@ export type UserRequestMultipart = {
30635
30381
  * Company registration code of the user's organization, if known
30636
30382
  */
30637
30383
  organization_registry_code?: string;
30638
- /**
30639
- * REFEDS assurance profile URIs from identity provider
30640
- */
30641
- eduperson_assurance?: {
30642
- [key: string]: unknown;
30643
- };
30384
+ eduperson_assurance?: Array<string>;
30644
30385
  /**
30645
30386
  * Designates whether the user is allowed to manage remote user identities.
30646
30387
  */
@@ -30649,12 +30390,8 @@ export type UserRequestMultipart = {
30649
30390
  * Designates whether the user is allowed to create and use personal access tokens.
30650
30391
  */
30651
30392
  can_use_personal_access_tokens?: boolean;
30652
- /**
30653
- * 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.
30654
- */
30655
- managed_isds?: {
30656
- [key: string]: unknown;
30657
- };
30393
+ managed_isds?: Array<string>;
30394
+ active_isds?: Array<string>;
30658
30395
  /**
30659
30396
  * Reason why the user was deactivated. Visible to staff and support.
30660
30397
  */
@@ -30705,6 +30442,7 @@ export type PatchedUserRequestForm = {
30705
30442
  */
30706
30443
  notifications_enabled?: boolean;
30707
30444
  preferred_language?: string;
30445
+ affiliations?: Array<string>;
30708
30446
  first_name?: string;
30709
30447
  last_name?: string;
30710
30448
  birth_date?: string | null;
@@ -30724,12 +30462,7 @@ export type PatchedUserRequestForm = {
30724
30462
  * Primary citizenship (ISO 3166-1 alpha-2 code)
30725
30463
  */
30726
30464
  nationality?: string;
30727
- /**
30728
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
30729
- */
30730
- nationalities?: {
30731
- [key: string]: unknown;
30732
- };
30465
+ nationalities?: Array<string>;
30733
30466
  organization_country?: string;
30734
30467
  /**
30735
30468
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -30739,12 +30472,7 @@ export type PatchedUserRequestForm = {
30739
30472
  * Company registration code of the user's organization, if known
30740
30473
  */
30741
30474
  organization_registry_code?: string;
30742
- /**
30743
- * REFEDS assurance profile URIs from identity provider
30744
- */
30745
- eduperson_assurance?: {
30746
- [key: string]: unknown;
30747
- };
30475
+ eduperson_assurance?: Array<string>;
30748
30476
  /**
30749
30477
  * Designates whether the user is allowed to manage remote user identities.
30750
30478
  */
@@ -30753,12 +30481,8 @@ export type PatchedUserRequestForm = {
30753
30481
  * Designates whether the user is allowed to create and use personal access tokens.
30754
30482
  */
30755
30483
  can_use_personal_access_tokens?: boolean;
30756
- /**
30757
- * 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.
30758
- */
30759
- managed_isds?: {
30760
- [key: string]: unknown;
30761
- };
30484
+ managed_isds?: Array<string>;
30485
+ active_isds?: Array<string>;
30762
30486
  /**
30763
30487
  * Reason why the user was deactivated. Visible to staff and support.
30764
30488
  */
@@ -30809,6 +30533,7 @@ export type PatchedUserRequestMultipart = {
30809
30533
  */
30810
30534
  notifications_enabled?: boolean;
30811
30535
  preferred_language?: string;
30536
+ affiliations?: Array<string>;
30812
30537
  first_name?: string;
30813
30538
  last_name?: string;
30814
30539
  birth_date?: string | null;
@@ -30828,12 +30553,7 @@ export type PatchedUserRequestMultipart = {
30828
30553
  * Primary citizenship (ISO 3166-1 alpha-2 code)
30829
30554
  */
30830
30555
  nationality?: string;
30831
- /**
30832
- * List of all citizenships (ISO 3166-1 alpha-2 codes)
30833
- */
30834
- nationalities?: {
30835
- [key: string]: unknown;
30836
- };
30556
+ nationalities?: Array<string>;
30837
30557
  organization_country?: string;
30838
30558
  /**
30839
30559
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
@@ -30843,12 +30563,7 @@ export type PatchedUserRequestMultipart = {
30843
30563
  * Company registration code of the user's organization, if known
30844
30564
  */
30845
30565
  organization_registry_code?: string;
30846
- /**
30847
- * REFEDS assurance profile URIs from identity provider
30848
- */
30849
- eduperson_assurance?: {
30850
- [key: string]: unknown;
30851
- };
30566
+ eduperson_assurance?: Array<string>;
30852
30567
  /**
30853
30568
  * Designates whether the user is allowed to manage remote user identities.
30854
30569
  */
@@ -30857,12 +30572,8 @@ export type PatchedUserRequestMultipart = {
30857
30572
  * Designates whether the user is allowed to create and use personal access tokens.
30858
30573
  */
30859
30574
  can_use_personal_access_tokens?: boolean;
30860
- /**
30861
- * 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.
30862
- */
30863
- managed_isds?: {
30864
- [key: string]: unknown;
30865
- };
30575
+ managed_isds?: Array<string>;
30576
+ active_isds?: Array<string>;
30866
30577
  /**
30867
30578
  * Reason why the user was deactivated. Visible to staff and support.
30868
30579
  */
@@ -36937,7 +36648,7 @@ export type BroadcastMessagesCountResponses = {
36937
36648
  200: unknown;
36938
36649
  };
36939
36650
  export type BroadcastMessagesCreateData = {
36940
- body: BroadcastMessageRequest;
36651
+ body: BroadcastMessageCreateRequest;
36941
36652
  path?: never;
36942
36653
  query?: never;
36943
36654
  url: '/api/broadcast-messages/';
@@ -36988,7 +36699,7 @@ export type BroadcastMessagesPartialUpdateResponses = {
36988
36699
  };
36989
36700
  export type BroadcastMessagesPartialUpdateResponse = BroadcastMessagesPartialUpdateResponses[keyof BroadcastMessagesPartialUpdateResponses];
36990
36701
  export type BroadcastMessagesUpdateData = {
36991
- body: BroadcastMessageRequest;
36702
+ body: BroadcastMessageCreateRequest;
36992
36703
  path: {
36993
36704
  uuid: string;
36994
36705
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.55",
3
+ "version": "8.0.9-dev.57",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",