waldur-js-client 8.0.7-dev.2 → 8.0.7-dev.20

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.
@@ -1,3 +1,4 @@
1
+ export type AiassistantenabledrolesEnum = 'disabled' | 'staff' | 'staff_and_support' | 'all';
1
2
  export type AccessSubnet = {
2
3
  readonly uuid: string;
3
4
  inet: string;
@@ -1273,6 +1274,12 @@ export type AssignmentItem = {
1273
1274
  * Number of times this proposal has been reassigned.
1274
1275
  */
1275
1276
  readonly reassign_count: number;
1277
+ /**
1278
+ * Reason for manager override of COI block.
1279
+ */
1280
+ readonly override_reason: string;
1281
+ readonly overridden_by_name: string;
1282
+ readonly overridden_at: string | null;
1276
1283
  readonly created: string;
1277
1284
  };
1278
1285
  export type AssignmentItemDeclineRequest = {
@@ -1437,12 +1444,57 @@ export type AttachmentRequest = {
1437
1444
  issue: string;
1438
1445
  file: Blob | File;
1439
1446
  };
1447
+ export type Attribute = {
1448
+ readonly url: string;
1449
+ readonly uuid: string;
1450
+ key: string;
1451
+ readonly created: string;
1452
+ title: string;
1453
+ section: string;
1454
+ readonly section_title: string;
1455
+ type: AttributeTypeEnum;
1456
+ /**
1457
+ * A value must be provided for the attribute.
1458
+ */
1459
+ required?: boolean;
1460
+ default?: unknown;
1461
+ };
1462
+ export type AttributeOption = {
1463
+ readonly url: string;
1464
+ readonly uuid: string;
1465
+ readonly id: number;
1466
+ key: string;
1467
+ title: string;
1468
+ attribute: string;
1469
+ readonly attribute_title: string;
1470
+ /**
1471
+ * Return True if this option is the default for its attribute.
1472
+ */
1473
+ readonly is_default: boolean;
1474
+ };
1475
+ export type AttributeOptionRequest = {
1476
+ key: string;
1477
+ title: string;
1478
+ attribute: string;
1479
+ };
1480
+ export type AttributeRequest = {
1481
+ key: string;
1482
+ title: string;
1483
+ section: string;
1484
+ type: AttributeTypeEnum;
1485
+ /**
1486
+ * A value must be provided for the attribute.
1487
+ */
1488
+ required?: boolean;
1489
+ default?: unknown;
1490
+ };
1440
1491
  export type AttributeSourceDetail = {
1441
1492
  source: string;
1442
1493
  timestamp: string;
1443
1494
  age_days: number;
1444
1495
  is_stale: boolean;
1445
1496
  };
1497
+ export type AttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
1446
1498
  export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
1447
1499
  export type AuthResult = {
1448
1500
  readonly uuid: string;
@@ -2329,7 +2381,11 @@ export type BookingResource = {
2329
2381
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
2330
2382
  */
2331
2383
  readonly project_end_date?: string | null;
2332
- readonly project_end_date_requested_by?: string;
2384
+ /**
2385
+ * Effective project end date including grace period. After this date, resources will be terminated.
2386
+ */
2387
+ readonly project_effective_end_date?: string | null;
2388
+ readonly project_end_date_requested_by?: string | null;
2333
2389
  readonly customer_uuid?: string;
2334
2390
  readonly customer_name?: string;
2335
2391
  readonly offering_slug?: string;
@@ -2838,7 +2894,7 @@ export type CallReviewerPool = {
2838
2894
  */
2839
2895
  expertise_match_score?: number | null;
2840
2896
  readonly invited_by_name: string;
2841
- readonly invitation_token: string;
2897
+ readonly invitation_link: string | null;
2842
2898
  readonly invitation_expires_at: string | null;
2843
2899
  readonly created: string;
2844
2900
  /**
@@ -2867,6 +2923,12 @@ export type CallReviewerPool = {
2867
2923
  * Count reviews in 'submitted' state.
2868
2924
  */
2869
2925
  readonly reviews_completed: number;
2926
+ /**
2927
+ * Reason for manager override of invitation status.
2928
+ */
2929
+ readonly override_reason: string;
2930
+ readonly overridden_by_name: string;
2931
+ readonly overridden_at: string | null;
2870
2932
  };
2871
2933
  export type CallReviewerPoolUpdate = {
2872
2934
  /**
@@ -3488,6 +3550,10 @@ export type ChatResponse = {
3488
3550
  * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3489
3551
  */
3490
3552
  projects?: Array<unknown>;
3553
+ /**
3554
+ * Available offering options [{uuid, name}]. Present when status='offering_form'.
3555
+ */
3556
+ offerings?: Array<unknown>;
3491
3557
  };
3492
3558
  export type ChatSession = {
3493
3559
  readonly uuid?: string;
@@ -4298,17 +4364,19 @@ export type ConstanceSettings = {
4298
4364
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4299
4365
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4300
4366
  ONBOARDING_BREG_API_URL?: string;
4301
- LLM_CHAT_ENABLED?: boolean;
4302
- LLM_INFERENCES_BACKEND_TYPE?: string;
4303
- LLM_INFERENCES_API_URL?: string;
4304
- LLM_INFERENCES_API_TOKEN?: string;
4305
- LLM_INFERENCES_MODEL?: string;
4306
- LLM_TOKEN_LIMIT_DAILY?: number;
4307
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4308
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4309
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4310
- LLM_CHAT_HISTORY_LIMIT?: number;
4311
- LLM_INJECTION_ALLOWLIST?: string;
4367
+ AI_ASSISTANT_ENABLED?: boolean;
4368
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4369
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4370
+ AI_ASSISTANT_API_URL?: string;
4371
+ AI_ASSISTANT_API_TOKEN?: string;
4372
+ AI_ASSISTANT_MODEL?: string;
4373
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4374
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4375
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4376
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4377
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4378
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4379
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4312
4380
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4313
4381
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4314
4382
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4347,6 +4415,7 @@ export type ConstanceSettings = {
4347
4415
  ENABLE_PROJECT_DIGEST?: boolean;
4348
4416
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4349
4417
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4418
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4350
4419
  };
4351
4420
  export type ConstanceSettingsRequest = {
4352
4421
  SITE_NAME?: string;
@@ -4543,17 +4612,19 @@ export type ConstanceSettingsRequest = {
4543
4612
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4544
4613
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4545
4614
  ONBOARDING_BREG_API_URL?: string;
4546
- LLM_CHAT_ENABLED?: boolean;
4547
- LLM_INFERENCES_BACKEND_TYPE?: string;
4548
- LLM_INFERENCES_API_URL?: string;
4549
- LLM_INFERENCES_API_TOKEN?: string;
4550
- LLM_INFERENCES_MODEL?: string;
4551
- LLM_TOKEN_LIMIT_DAILY?: number;
4552
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4553
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4554
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4555
- LLM_CHAT_HISTORY_LIMIT?: number;
4556
- LLM_INJECTION_ALLOWLIST?: string;
4615
+ AI_ASSISTANT_ENABLED?: boolean;
4616
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4617
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4618
+ AI_ASSISTANT_API_URL?: string;
4619
+ AI_ASSISTANT_API_TOKEN?: string;
4620
+ AI_ASSISTANT_MODEL?: string;
4621
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4622
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4623
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4624
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4625
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4626
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4627
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4557
4628
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4558
4629
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4559
4630
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4592,6 +4663,7 @@ export type ConstanceSettingsRequest = {
4592
4663
  ENABLE_PROJECT_DIGEST?: boolean;
4593
4664
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4594
4665
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4666
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4595
4667
  };
4596
4668
  export type ConsumptionStatisticsResponse = {
4597
4669
  total_records: number;
@@ -6240,6 +6312,7 @@ export type DryRunRequest = {
6240
6312
  };
6241
6313
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6242
6314
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
6315
+ export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
6243
6316
  export type EligibilityCheck = {
6244
6317
  is_eligible: boolean;
6245
6318
  restrictions: Array<string>;
@@ -6311,7 +6384,7 @@ export type EventMetadataResponse = {
6311
6384
  * Map of event group keys to lists of event type enums from EventType
6312
6385
  */
6313
6386
  event_groups: {
6314
- [key: string]: Array<'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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | '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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6387
+ [key: string]: Array<'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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6315
6388
  };
6316
6389
  };
6317
6390
  export type EventStats = {
@@ -6390,7 +6463,7 @@ export type EventSubscriptionRequest = {
6390
6463
  */
6391
6464
  observable_objects?: unknown;
6392
6465
  };
6393
- 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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | '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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6466
+ 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' | '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_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_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_user_created' | 'marketplace_resource_user_deleted' | '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_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | '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_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' | '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_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_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' | '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' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6394
6467
  export type ExecuteActionErrorResponse = {
6395
6468
  error: string;
6396
6469
  };
@@ -6871,6 +6944,12 @@ export type FlavorResponse = {
6871
6944
  */
6872
6945
  disk: number;
6873
6946
  };
6947
+ export type ForceAcceptPoolRequest = {
6948
+ override_reason: string;
6949
+ };
6950
+ export type ForceUnblockRequest = {
6951
+ override_reason: string;
6952
+ };
6874
6953
  export type FreeipaProfile = {
6875
6954
  readonly uuid: string;
6876
6955
  /**
@@ -9858,6 +9937,8 @@ export type Message = {
9858
9937
  readonly thread: string;
9859
9938
  role: MessageRoleEnum;
9860
9939
  content: string;
9940
+ readonly content_display: string;
9941
+ readonly tool_calls: unknown;
9861
9942
  readonly sequence_index: number;
9862
9943
  readonly replaces: string | null;
9863
9944
  readonly created: string;
@@ -10049,9 +10130,10 @@ export type NestedAgentServiceRequest = {
10049
10130
  statistics?: unknown;
10050
10131
  };
10051
10132
  export type NestedAttribute = {
10133
+ readonly uuid?: string;
10052
10134
  key?: string;
10053
10135
  title?: string;
10054
- type?: NestedAttributeTypeEnum;
10136
+ type?: AttributeTypeEnum;
10055
10137
  options?: Array<NestedAttributeOption>;
10056
10138
  /**
10057
10139
  * A value must be provided for the attribute.
@@ -10060,8 +10142,13 @@ export type NestedAttribute = {
10060
10142
  default?: unknown;
10061
10143
  };
10062
10144
  export type NestedAttributeOption = {
10145
+ readonly uuid?: string;
10063
10146
  key?: string;
10064
10147
  title?: string;
10148
+ /**
10149
+ * Return True if this option is the default for its attribute.
10150
+ */
10151
+ readonly is_default?: boolean;
10065
10152
  };
10066
10153
  export type NestedAttributeOptionRequest = {
10067
10154
  key: string;
@@ -10070,7 +10157,7 @@ export type NestedAttributeOptionRequest = {
10070
10157
  export type NestedAttributeRequest = {
10071
10158
  key: string;
10072
10159
  title: string;
10073
- type: NestedAttributeTypeEnum;
10160
+ type: AttributeTypeEnum;
10074
10161
  options: Array<NestedAttributeOptionRequest>;
10075
10162
  /**
10076
10163
  * A value must be provided for the attribute.
@@ -10078,7 +10165,6 @@ export type NestedAttributeRequest = {
10078
10165
  required?: boolean;
10079
10166
  default?: unknown;
10080
10167
  };
10081
- export type NestedAttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
10082
10168
  export type NestedCampaign = {
10083
10169
  readonly uuid?: string;
10084
10170
  name?: string;
@@ -10828,6 +10914,8 @@ export type Offering = {
10828
10914
  description?: string;
10829
10915
  full_description?: string;
10830
10916
  privacy_policy_link?: string;
10917
+ helpdesk_url?: string;
10918
+ documentation_url?: string;
10831
10919
  /**
10832
10920
  * Publicly accessible offering access URL
10833
10921
  */
@@ -11060,6 +11148,8 @@ export type OfferingCreateRequest = {
11060
11148
  description?: string;
11061
11149
  full_description?: string;
11062
11150
  privacy_policy_link?: string;
11151
+ helpdesk_url?: string;
11152
+ documentation_url?: string;
11063
11153
  /**
11064
11154
  * Publicly accessible offering access URL
11065
11155
  */
@@ -11458,6 +11548,8 @@ export type OfferingOverviewUpdateRequest = {
11458
11548
  description?: string;
11459
11549
  full_description?: string;
11460
11550
  privacy_policy_link?: string;
11551
+ helpdesk_url?: string;
11552
+ documentation_url?: string;
11461
11553
  /**
11462
11554
  * Publicly accessible offering access URL
11463
11555
  */
@@ -15006,6 +15098,22 @@ export type PatchedAssignmentItemRequest = {
15006
15098
  */
15007
15099
  decline_reason?: string;
15008
15100
  };
15101
+ export type PatchedAttributeOptionRequest = {
15102
+ key?: string;
15103
+ title?: string;
15104
+ attribute?: string;
15105
+ };
15106
+ export type PatchedAttributeRequest = {
15107
+ key?: string;
15108
+ title?: string;
15109
+ section?: string;
15110
+ type?: AttributeTypeEnum;
15111
+ /**
15112
+ * A value must be provided for the attribute.
15113
+ */
15114
+ required?: boolean;
15115
+ default?: unknown;
15116
+ };
15009
15117
  export type PatchedAwsInstanceRequest = {
15010
15118
  name?: string;
15011
15119
  description?: string;
@@ -17274,6 +17382,10 @@ export type Project = {
17274
17382
  */
17275
17383
  end_date?: string | null;
17276
17384
  readonly end_date_requested_by?: string | null;
17385
+ /**
17386
+ * Timestamp of the last end_date change.
17387
+ */
17388
+ readonly end_date_updated_at?: string | null;
17277
17389
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17278
17390
  /**
17279
17391
  * Human-readable label for the OECD FOS 2007 classification code
@@ -17306,6 +17418,14 @@ export type Project = {
17306
17418
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17307
17419
  */
17308
17420
  grace_period_days?: number | null;
17421
+ /**
17422
+ * Effective end date including grace period. After this date, project resources will be terminated.
17423
+ */
17424
+ readonly effective_end_date?: string | null;
17425
+ /**
17426
+ * True if the project is past its end date but still within the grace period.
17427
+ */
17428
+ readonly is_in_grace_period?: boolean;
17309
17429
  user_email_patterns?: unknown;
17310
17430
  user_affiliations?: unknown;
17311
17431
  /**
@@ -17366,6 +17486,16 @@ export type ProjectClassificationSummary = {
17366
17486
  */
17367
17487
  industry_projects: number;
17368
17488
  };
17489
+ export type ProjectCreationTrend = {
17490
+ /**
17491
+ * Month in YYYY-MM format
17492
+ */
17493
+ month: string;
17494
+ /**
17495
+ * Number of items created
17496
+ */
17497
+ count: number;
17498
+ };
17369
17499
  export type ProjectCredit = {
17370
17500
  readonly uuid: string;
17371
17501
  readonly url: string;
@@ -17456,6 +17586,61 @@ export type ProjectDigestPreviewResponse = {
17456
17586
  html_body: string;
17457
17587
  text_body: string;
17458
17588
  };
17589
+ export type ProjectEndDateChangeRequest = {
17590
+ readonly url: string;
17591
+ readonly uuid: string;
17592
+ readonly state: string;
17593
+ project: string;
17594
+ readonly project_uuid: string;
17595
+ readonly project_name: string;
17596
+ readonly customer_uuid: string;
17597
+ readonly customer_name: string;
17598
+ /**
17599
+ * The requested new end date for the project
17600
+ */
17601
+ requested_end_date: string;
17602
+ /**
17603
+ * Optional comment from the requester
17604
+ */
17605
+ comment?: string | null;
17606
+ readonly created: string;
17607
+ readonly created_by_uuid: string | null;
17608
+ readonly created_by_full_name: string | null;
17609
+ /**
17610
+ * Timestamp when the review was completed
17611
+ */
17612
+ readonly reviewed_at: string | null;
17613
+ readonly reviewed_by_uuid: string | null;
17614
+ readonly reviewed_by_full_name: string | null;
17615
+ /**
17616
+ * Optional comment provided during review
17617
+ */
17618
+ review_comment?: string | null;
17619
+ };
17620
+ export type ProjectEndDateChangeRequestCreate = {
17621
+ project: string;
17622
+ /**
17623
+ * The requested new end date for the project
17624
+ */
17625
+ requested_end_date: string;
17626
+ /**
17627
+ * Optional comment from the requester
17628
+ */
17629
+ comment?: string | null;
17630
+ readonly uuid: string;
17631
+ readonly state: string;
17632
+ };
17633
+ export type ProjectEndDateChangeRequestCreateRequest = {
17634
+ project: string;
17635
+ /**
17636
+ * The requested new end date for the project
17637
+ */
17638
+ requested_end_date: string;
17639
+ /**
17640
+ * Optional comment from the requester
17641
+ */
17642
+ comment?: string | null;
17643
+ };
17459
17644
  export type ProjectEstimatedCostPolicy = {
17460
17645
  readonly uuid: string;
17461
17646
  readonly url: string;
@@ -18245,6 +18430,8 @@ export type ProviderOfferingDetails = {
18245
18430
  description?: string;
18246
18431
  full_description?: string;
18247
18432
  privacy_policy_link?: string;
18433
+ helpdesk_url?: string;
18434
+ documentation_url?: string;
18248
18435
  /**
18249
18436
  * Publicly accessible offering access URL
18250
18437
  */
@@ -18347,6 +18534,8 @@ export type ProviderOfferingDetailsRequest = {
18347
18534
  description?: string;
18348
18535
  full_description?: string;
18349
18536
  privacy_policy_link?: string;
18537
+ helpdesk_url?: string;
18538
+ documentation_url?: string;
18350
18539
  /**
18351
18540
  * Publicly accessible offering access URL
18352
18541
  */
@@ -18651,6 +18840,8 @@ export type PublicOfferingDetails = {
18651
18840
  description?: string;
18652
18841
  full_description?: string;
18653
18842
  privacy_policy_link?: string;
18843
+ helpdesk_url?: string;
18844
+ documentation_url?: string;
18654
18845
  /**
18655
18846
  * Publicly accessible offering access URL
18656
18847
  */
@@ -20527,7 +20718,11 @@ export type Resource = {
20527
20718
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
20528
20719
  */
20529
20720
  readonly project_end_date?: string | null;
20530
- readonly project_end_date_requested_by?: string;
20721
+ /**
20722
+ * Effective project end date including grace period. After this date, resources will be terminated.
20723
+ */
20724
+ readonly project_effective_end_date?: string | null;
20725
+ readonly project_end_date_requested_by?: string | null;
20531
20726
  readonly customer_uuid?: string;
20532
20727
  readonly customer_name?: string;
20533
20728
  readonly offering_slug?: string;
@@ -20604,12 +20799,21 @@ export type ResourceBackendMetadataRequest = {
20604
20799
  export type ResourceDownscaledRequest = {
20605
20800
  downscaled?: boolean;
20606
20801
  };
20802
+ export type ResourceEffectiveIdRequest = {
20803
+ effective_id?: string;
20804
+ };
20607
20805
  export type ResourceEndDateByProviderRequest = {
20608
20806
  /**
20609
20807
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
20610
20808
  */
20611
20809
  end_date?: string | null;
20612
20810
  };
20811
+ export type ResourceEndDateRequest = {
20812
+ /**
20813
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
20814
+ */
20815
+ end_date?: string | null;
20816
+ };
20613
20817
  export type ResourceKeycloakScopesRequest = {
20614
20818
  /**
20615
20819
  * Pre-configured scope options for this resource.
@@ -23747,6 +23951,24 @@ export type TopQueue = {
23747
23951
  */
23748
23952
  readonly consumers: number;
23749
23953
  };
23954
+ export type TopServiceProviderByResources = {
23955
+ /**
23956
+ * UUID of the service provider
23957
+ */
23958
+ customer_uuid: string;
23959
+ /**
23960
+ * Name of the service provider
23961
+ */
23962
+ customer_name: string;
23963
+ /**
23964
+ * Number of active resources
23965
+ */
23966
+ resources_count: number;
23967
+ /**
23968
+ * Number of distinct projects
23969
+ */
23970
+ projects_count: number;
23971
+ };
23750
23972
  export type TotalCustomerCost = {
23751
23973
  readonly total: number;
23752
23974
  readonly price: number;
@@ -24222,6 +24444,16 @@ export type UserLanguageCount = {
24222
24444
  language: string;
24223
24445
  count: number;
24224
24446
  };
24447
+ export type UserNationalityStats = {
24448
+ /**
24449
+ * Nationality code
24450
+ */
24451
+ nationality: string;
24452
+ /**
24453
+ * Number of users
24454
+ */
24455
+ count: number;
24456
+ };
24225
24457
  export type UserOfferingConsent = {
24226
24458
  readonly uuid: string;
24227
24459
  readonly user_uuid: string;
@@ -24370,6 +24602,16 @@ export type UserRequest = {
24370
24602
  */
24371
24603
  managed_isds?: unknown;
24372
24604
  };
24605
+ export type UserResidenceCountryStats = {
24606
+ /**
24607
+ * Country of residence code
24608
+ */
24609
+ country_of_residence: string;
24610
+ /**
24611
+ * Number of users
24612
+ */
24613
+ count: number;
24614
+ };
24373
24615
  export type UserRoleCreateRequest = {
24374
24616
  role: string;
24375
24617
  user: string;
@@ -24965,6 +25207,10 @@ export type OpenStackCreateInstancePortRequest = {
24965
25207
  */
24966
25208
  subnet?: string | null;
24967
25209
  port?: string;
25210
+ /**
25211
+ * If True, security groups and rules will be applied to this port
25212
+ */
25213
+ port_security_enabled?: boolean;
24968
25214
  };
24969
25215
  export type OpenStackDataVolumeRequest = {
24970
25216
  size: number;
@@ -25574,6 +25820,8 @@ export type OfferingCreateRequestForm = {
25574
25820
  description?: string;
25575
25821
  full_description?: string;
25576
25822
  privacy_policy_link?: string;
25823
+ helpdesk_url?: string;
25824
+ documentation_url?: string;
25577
25825
  /**
25578
25826
  * Publicly accessible offering access URL
25579
25827
  */
@@ -25627,6 +25875,8 @@ export type OfferingCreateRequestMultipart = {
25627
25875
  description?: string;
25628
25876
  full_description?: string;
25629
25877
  privacy_policy_link?: string;
25878
+ helpdesk_url?: string;
25879
+ documentation_url?: string;
25630
25880
  /**
25631
25881
  * Publicly accessible offering access URL
25632
25882
  */
@@ -26176,17 +26426,19 @@ export type ConstanceSettingsRequestForm = {
26176
26426
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26177
26427
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26178
26428
  ONBOARDING_BREG_API_URL?: string;
26179
- LLM_CHAT_ENABLED?: boolean;
26180
- LLM_INFERENCES_BACKEND_TYPE?: string;
26181
- LLM_INFERENCES_API_URL?: string;
26182
- LLM_INFERENCES_API_TOKEN?: string;
26183
- LLM_INFERENCES_MODEL?: string;
26184
- LLM_TOKEN_LIMIT_DAILY?: number;
26185
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26186
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26187
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26188
- LLM_CHAT_HISTORY_LIMIT?: number;
26189
- LLM_INJECTION_ALLOWLIST?: string;
26429
+ AI_ASSISTANT_ENABLED?: boolean;
26430
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26431
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26432
+ AI_ASSISTANT_API_URL?: string;
26433
+ AI_ASSISTANT_API_TOKEN?: string;
26434
+ AI_ASSISTANT_MODEL?: string;
26435
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26436
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26437
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26438
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26439
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26440
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26441
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26190
26442
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26191
26443
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26192
26444
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26225,6 +26477,7 @@ export type ConstanceSettingsRequestForm = {
26225
26477
  ENABLE_PROJECT_DIGEST?: boolean;
26226
26478
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26227
26479
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26480
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26228
26481
  };
26229
26482
  export type ConstanceSettingsRequestMultipart = {
26230
26483
  SITE_NAME?: string;
@@ -26421,17 +26674,19 @@ export type ConstanceSettingsRequestMultipart = {
26421
26674
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26422
26675
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26423
26676
  ONBOARDING_BREG_API_URL?: string;
26424
- LLM_CHAT_ENABLED?: boolean;
26425
- LLM_INFERENCES_BACKEND_TYPE?: string;
26426
- LLM_INFERENCES_API_URL?: string;
26427
- LLM_INFERENCES_API_TOKEN?: string;
26428
- LLM_INFERENCES_MODEL?: string;
26429
- LLM_TOKEN_LIMIT_DAILY?: number;
26430
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26431
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26432
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26433
- LLM_CHAT_HISTORY_LIMIT?: number;
26434
- LLM_INJECTION_ALLOWLIST?: string;
26677
+ AI_ASSISTANT_ENABLED?: boolean;
26678
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26679
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26680
+ AI_ASSISTANT_API_URL?: string;
26681
+ AI_ASSISTANT_API_TOKEN?: string;
26682
+ AI_ASSISTANT_MODEL?: string;
26683
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26684
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26685
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26686
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26687
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26688
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26689
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26435
26690
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26436
26691
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26437
26692
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26470,6 +26725,7 @@ export type ConstanceSettingsRequestMultipart = {
26470
26725
  ENABLE_PROJECT_DIGEST?: boolean;
26471
26726
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26472
26727
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26728
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26473
26729
  };
26474
26730
  export type PaymentRequestForm = {
26475
26731
  profile: string;
@@ -26895,8 +27151,8 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
26895
27151
  export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
26896
27152
  export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
26897
27153
  export type BackendResourceReqOEnum = '-created' | 'created';
26898
- export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
26899
- export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
27154
+ export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27155
+ export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
26900
27156
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
26901
27157
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
26902
27158
  export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
@@ -26931,7 +27187,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
26931
27187
  export type SshKeyOEnum = '-name' | 'name';
26932
27188
  export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
26933
27189
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
26934
- export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
27190
+ export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
26935
27191
  export type MarketplaceCategoryFieldEnum = 'articles' | 'available_offerings_count' | 'columns' | 'components' | 'default_tenant_category' | 'default_vm_category' | 'default_volume_category' | 'description' | 'group' | 'icon' | 'offering_count' | 'sections' | 'title' | 'url' | 'uuid';
26936
27192
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
26937
27193
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
@@ -26952,13 +27208,13 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
26952
27208
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | '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';
26953
27209
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
26954
27210
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
26955
- 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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27211
+ 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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
26956
27212
  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';
26957
27213
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
26958
- export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27214
+ export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | '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' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
26959
27215
  export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
26960
27216
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26961
- export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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';
27217
+ export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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';
26962
27218
  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';
26963
27219
  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';
26964
27220
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -28761,6 +29017,18 @@ export type AssignmentItemsDeclineResponses = {
28761
29017
  200: AssignmentItemResponse;
28762
29018
  };
28763
29019
  export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
29020
+ export type AssignmentItemsForceUnblockData = {
29021
+ body: ForceUnblockRequest;
29022
+ path: {
29023
+ uuid: string;
29024
+ };
29025
+ query?: never;
29026
+ url: '/api/assignment-items/{uuid}/force-unblock/';
29027
+ };
29028
+ export type AssignmentItemsForceUnblockResponses = {
29029
+ 200: AssignmentItem;
29030
+ };
29031
+ export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
28764
29032
  export type AssignmentItemsReassignData = {
28765
29033
  body: ReassignItemRequest;
28766
29034
  path: {
@@ -31350,6 +31618,10 @@ export type BackendResourceRequestsListData = {
31350
31618
  * Created after
31351
31619
  */
31352
31620
  created?: string;
31621
+ /**
31622
+ * Created before
31623
+ */
31624
+ created_before?: string;
31353
31625
  /**
31354
31626
  * Modified after
31355
31627
  */
@@ -31358,6 +31630,10 @@ export type BackendResourceRequestsListData = {
31358
31630
  * Modified after
31359
31631
  */
31360
31632
  modified?: string;
31633
+ /**
31634
+ * Modified before
31635
+ */
31636
+ modified_before?: string;
31361
31637
  /**
31362
31638
  * Ordering
31363
31639
  *
@@ -31401,6 +31677,10 @@ export type BackendResourceRequestsCountData = {
31401
31677
  * Created after
31402
31678
  */
31403
31679
  created?: string;
31680
+ /**
31681
+ * Created before
31682
+ */
31683
+ created_before?: string;
31404
31684
  /**
31405
31685
  * Modified after
31406
31686
  */
@@ -31409,6 +31689,10 @@ export type BackendResourceRequestsCountData = {
31409
31689
  * Modified after
31410
31690
  */
31411
31691
  modified?: string;
31692
+ /**
31693
+ * Modified before
31694
+ */
31695
+ modified_before?: string;
31412
31696
  /**
31413
31697
  * Ordering
31414
31698
  *
@@ -31522,10 +31806,18 @@ export type BackendResourcesListData = {
31522
31806
  * Created after
31523
31807
  */
31524
31808
  created?: string;
31809
+ /**
31810
+ * Created before
31811
+ */
31812
+ created_before?: string;
31525
31813
  /**
31526
31814
  * Modified after
31527
31815
  */
31528
31816
  modified?: string;
31817
+ /**
31818
+ * Modified before
31819
+ */
31820
+ modified_before?: string;
31529
31821
  /**
31530
31822
  * Name
31531
31823
  */
@@ -31575,10 +31867,18 @@ export type BackendResourcesCountData = {
31575
31867
  * Created after
31576
31868
  */
31577
31869
  created?: string;
31870
+ /**
31871
+ * Created before
31872
+ */
31873
+ created_before?: string;
31578
31874
  /**
31579
31875
  * Modified after
31580
31876
  */
31581
31877
  modified?: string;
31878
+ /**
31879
+ * Modified before
31880
+ */
31881
+ modified_before?: string;
31582
31882
  /**
31583
31883
  * Name
31584
31884
  */
@@ -31801,6 +32101,10 @@ export type BookingResourcesListData = {
31801
32101
  * Created after
31802
32102
  */
31803
32103
  created?: string;
32104
+ /**
32105
+ * Created before
32106
+ */
32107
+ created_before?: string;
31804
32108
  /**
31805
32109
  * Customer URL
31806
32110
  */
@@ -31838,6 +32142,10 @@ export type BookingResourcesListData = {
31838
32142
  * Modified after
31839
32143
  */
31840
32144
  modified?: string;
32145
+ /**
32146
+ * Modified before
32147
+ */
32148
+ modified_before?: string;
31841
32149
  /**
31842
32150
  * Name
31843
32151
  */
@@ -31978,6 +32286,10 @@ export type BookingResourcesCountData = {
31978
32286
  * Created after
31979
32287
  */
31980
32288
  created?: string;
32289
+ /**
32290
+ * Created before
32291
+ */
32292
+ created_before?: string;
31981
32293
  /**
31982
32294
  * Customer URL
31983
32295
  */
@@ -32014,6 +32326,10 @@ export type BookingResourcesCountData = {
32014
32326
  * Modified after
32015
32327
  */
32016
32328
  modified?: string;
32329
+ /**
32330
+ * Modified before
32331
+ */
32332
+ modified_before?: string;
32017
32333
  /**
32018
32334
  * Name
32019
32335
  */
@@ -33004,6 +33320,18 @@ export type CallReviewerPoolsDeclineResponses = {
33004
33320
  200: InvitationDeclineResponse;
33005
33321
  };
33006
33322
  export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
33323
+ export type CallReviewerPoolsForceAcceptData = {
33324
+ body: ForceAcceptPoolRequest;
33325
+ path: {
33326
+ uuid: string;
33327
+ };
33328
+ query?: never;
33329
+ url: '/api/call-reviewer-pools/{uuid}/force-accept/';
33330
+ };
33331
+ export type CallReviewerPoolsForceAcceptResponses = {
33332
+ 200: CallReviewerPool;
33333
+ };
33334
+ export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
33007
33335
  export type CallRoundsListData = {
33008
33336
  body?: never;
33009
33337
  path?: never;
@@ -38780,6 +39108,10 @@ export type KeysListData = {
38780
39108
  * Created after
38781
39109
  */
38782
39110
  created?: string;
39111
+ /**
39112
+ * Created before
39113
+ */
39114
+ created_before?: string;
38783
39115
  field?: Array<SshKeyFieldEnum>;
38784
39116
  fingerprint_md5?: string;
38785
39117
  fingerprint_sha256?: string;
@@ -38790,58 +39122,70 @@ export type KeysListData = {
38790
39122
  */
38791
39123
  modified?: string;
38792
39124
  /**
38793
- * Name
38794
- */
38795
- name?: string;
38796
- /**
38797
- * Name (exact)
38798
- */
38799
- name_exact?: string;
38800
- /**
38801
- * Ordering
38802
- *
38803
- *
38804
- */
38805
- o?: Array<SshKeyOEnum>;
38806
- /**
38807
- * A page number within the paginated result set.
38808
- */
38809
- page?: number;
38810
- /**
38811
- * Number of results to return per page.
38812
- */
38813
- page_size?: number;
38814
- /**
38815
- * User UUID
38816
- */
38817
- user_uuid?: string;
38818
- /**
38819
- * UUID
38820
- */
38821
- uuid?: string;
38822
- };
38823
- url: '/api/keys/';
38824
- };
38825
- export type KeysListResponses = {
38826
- 200: Array<SshKey>;
38827
- };
38828
- export type KeysListResponse = KeysListResponses[keyof KeysListResponses];
38829
- export type KeysCountData = {
38830
- body?: never;
38831
- path?: never;
38832
- query?: {
38833
- /**
38834
- * Created after
38835
- */
38836
- created?: string;
38837
- fingerprint_md5?: string;
38838
- fingerprint_sha256?: string;
38839
- fingerprint_sha512?: string;
38840
- is_shared?: boolean;
38841
- /**
38842
- * Modified after
39125
+ * Modified before
38843
39126
  */
38844
- modified?: string;
39127
+ modified_before?: string;
39128
+ /**
39129
+ * Name
39130
+ */
39131
+ name?: string;
39132
+ /**
39133
+ * Name (exact)
39134
+ */
39135
+ name_exact?: string;
39136
+ /**
39137
+ * Ordering
39138
+ *
39139
+ *
39140
+ */
39141
+ o?: Array<SshKeyOEnum>;
39142
+ /**
39143
+ * A page number within the paginated result set.
39144
+ */
39145
+ page?: number;
39146
+ /**
39147
+ * Number of results to return per page.
39148
+ */
39149
+ page_size?: number;
39150
+ /**
39151
+ * User UUID
39152
+ */
39153
+ user_uuid?: string;
39154
+ /**
39155
+ * UUID
39156
+ */
39157
+ uuid?: string;
39158
+ };
39159
+ url: '/api/keys/';
39160
+ };
39161
+ export type KeysListResponses = {
39162
+ 200: Array<SshKey>;
39163
+ };
39164
+ export type KeysListResponse = KeysListResponses[keyof KeysListResponses];
39165
+ export type KeysCountData = {
39166
+ body?: never;
39167
+ path?: never;
39168
+ query?: {
39169
+ /**
39170
+ * Created after
39171
+ */
39172
+ created?: string;
39173
+ /**
39174
+ * Created before
39175
+ */
39176
+ created_before?: string;
39177
+ fingerprint_md5?: string;
39178
+ fingerprint_sha256?: string;
39179
+ fingerprint_sha512?: string;
39180
+ is_shared?: boolean;
39181
+ /**
39182
+ * Modified after
39183
+ */
39184
+ modified?: string;
39185
+ /**
39186
+ * Modified before
39187
+ */
39188
+ modified_before?: string;
38845
39189
  /**
38846
39190
  * Name
38847
39191
  */
@@ -38946,6 +39290,10 @@ export type KeysHistoryListData = {
38946
39290
  * Modified after
38947
39291
  */
38948
39292
  modified?: string;
39293
+ /**
39294
+ * Modified before
39295
+ */
39296
+ modified_before?: string;
38949
39297
  /**
38950
39298
  * Name
38951
39299
  */
@@ -39851,6 +40199,224 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
39851
40199
  200: RancherNode;
39852
40200
  };
39853
40201
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
40202
+ export type MarketplaceAttributeOptionsListData = {
40203
+ body?: never;
40204
+ path?: never;
40205
+ query?: {
40206
+ /**
40207
+ * Attribute URL
40208
+ */
40209
+ attribute?: string;
40210
+ /**
40211
+ * A page number within the paginated result set.
40212
+ */
40213
+ page?: number;
40214
+ /**
40215
+ * Number of results to return per page.
40216
+ */
40217
+ page_size?: number;
40218
+ };
40219
+ url: '/api/marketplace-attribute-options/';
40220
+ };
40221
+ export type MarketplaceAttributeOptionsListResponses = {
40222
+ 200: Array<AttributeOption>;
40223
+ };
40224
+ export type MarketplaceAttributeOptionsListResponse = MarketplaceAttributeOptionsListResponses[keyof MarketplaceAttributeOptionsListResponses];
40225
+ export type MarketplaceAttributeOptionsCountData = {
40226
+ body?: never;
40227
+ path?: never;
40228
+ query?: {
40229
+ /**
40230
+ * Attribute URL
40231
+ */
40232
+ attribute?: string;
40233
+ /**
40234
+ * A page number within the paginated result set.
40235
+ */
40236
+ page?: number;
40237
+ /**
40238
+ * Number of results to return per page.
40239
+ */
40240
+ page_size?: number;
40241
+ };
40242
+ url: '/api/marketplace-attribute-options/';
40243
+ };
40244
+ export type MarketplaceAttributeOptionsCountResponses = {
40245
+ /**
40246
+ * No response body
40247
+ */
40248
+ 200: unknown;
40249
+ };
40250
+ export type MarketplaceAttributeOptionsCreateData = {
40251
+ body: AttributeOptionRequest;
40252
+ path?: never;
40253
+ query?: never;
40254
+ url: '/api/marketplace-attribute-options/';
40255
+ };
40256
+ export type MarketplaceAttributeOptionsCreateResponses = {
40257
+ 201: AttributeOption;
40258
+ };
40259
+ export type MarketplaceAttributeOptionsCreateResponse = MarketplaceAttributeOptionsCreateResponses[keyof MarketplaceAttributeOptionsCreateResponses];
40260
+ export type MarketplaceAttributeOptionsDestroyData = {
40261
+ body?: never;
40262
+ path: {
40263
+ uuid: string;
40264
+ };
40265
+ query?: never;
40266
+ url: '/api/marketplace-attribute-options/{uuid}/';
40267
+ };
40268
+ export type MarketplaceAttributeOptionsDestroyResponses = {
40269
+ /**
40270
+ * No response body
40271
+ */
40272
+ 204: void;
40273
+ };
40274
+ export type MarketplaceAttributeOptionsDestroyResponse = MarketplaceAttributeOptionsDestroyResponses[keyof MarketplaceAttributeOptionsDestroyResponses];
40275
+ export type MarketplaceAttributeOptionsRetrieveData = {
40276
+ body?: never;
40277
+ path: {
40278
+ uuid: string;
40279
+ };
40280
+ query?: never;
40281
+ url: '/api/marketplace-attribute-options/{uuid}/';
40282
+ };
40283
+ export type MarketplaceAttributeOptionsRetrieveResponses = {
40284
+ 200: AttributeOption;
40285
+ };
40286
+ export type MarketplaceAttributeOptionsRetrieveResponse = MarketplaceAttributeOptionsRetrieveResponses[keyof MarketplaceAttributeOptionsRetrieveResponses];
40287
+ export type MarketplaceAttributeOptionsPartialUpdateData = {
40288
+ body?: PatchedAttributeOptionRequest;
40289
+ path: {
40290
+ uuid: string;
40291
+ };
40292
+ query?: never;
40293
+ url: '/api/marketplace-attribute-options/{uuid}/';
40294
+ };
40295
+ export type MarketplaceAttributeOptionsPartialUpdateResponses = {
40296
+ 200: AttributeOption;
40297
+ };
40298
+ export type MarketplaceAttributeOptionsPartialUpdateResponse = MarketplaceAttributeOptionsPartialUpdateResponses[keyof MarketplaceAttributeOptionsPartialUpdateResponses];
40299
+ export type MarketplaceAttributeOptionsUpdateData = {
40300
+ body: AttributeOptionRequest;
40301
+ path: {
40302
+ uuid: string;
40303
+ };
40304
+ query?: never;
40305
+ url: '/api/marketplace-attribute-options/{uuid}/';
40306
+ };
40307
+ export type MarketplaceAttributeOptionsUpdateResponses = {
40308
+ 200: AttributeOption;
40309
+ };
40310
+ export type MarketplaceAttributeOptionsUpdateResponse = MarketplaceAttributeOptionsUpdateResponses[keyof MarketplaceAttributeOptionsUpdateResponses];
40311
+ export type MarketplaceAttributesListData = {
40312
+ body?: never;
40313
+ path?: never;
40314
+ query?: {
40315
+ /**
40316
+ * A page number within the paginated result set.
40317
+ */
40318
+ page?: number;
40319
+ /**
40320
+ * Number of results to return per page.
40321
+ */
40322
+ page_size?: number;
40323
+ /**
40324
+ * Section URL
40325
+ */
40326
+ section?: string;
40327
+ };
40328
+ url: '/api/marketplace-attributes/';
40329
+ };
40330
+ export type MarketplaceAttributesListResponses = {
40331
+ 200: Array<Attribute>;
40332
+ };
40333
+ export type MarketplaceAttributesListResponse = MarketplaceAttributesListResponses[keyof MarketplaceAttributesListResponses];
40334
+ export type MarketplaceAttributesCountData = {
40335
+ body?: never;
40336
+ path?: never;
40337
+ query?: {
40338
+ /**
40339
+ * A page number within the paginated result set.
40340
+ */
40341
+ page?: number;
40342
+ /**
40343
+ * Number of results to return per page.
40344
+ */
40345
+ page_size?: number;
40346
+ /**
40347
+ * Section URL
40348
+ */
40349
+ section?: string;
40350
+ };
40351
+ url: '/api/marketplace-attributes/';
40352
+ };
40353
+ export type MarketplaceAttributesCountResponses = {
40354
+ /**
40355
+ * No response body
40356
+ */
40357
+ 200: unknown;
40358
+ };
40359
+ export type MarketplaceAttributesCreateData = {
40360
+ body: AttributeRequest;
40361
+ path?: never;
40362
+ query?: never;
40363
+ url: '/api/marketplace-attributes/';
40364
+ };
40365
+ export type MarketplaceAttributesCreateResponses = {
40366
+ 201: Attribute;
40367
+ };
40368
+ export type MarketplaceAttributesCreateResponse = MarketplaceAttributesCreateResponses[keyof MarketplaceAttributesCreateResponses];
40369
+ export type MarketplaceAttributesDestroyData = {
40370
+ body?: never;
40371
+ path: {
40372
+ uuid: string;
40373
+ };
40374
+ query?: never;
40375
+ url: '/api/marketplace-attributes/{uuid}/';
40376
+ };
40377
+ export type MarketplaceAttributesDestroyResponses = {
40378
+ /**
40379
+ * No response body
40380
+ */
40381
+ 204: void;
40382
+ };
40383
+ export type MarketplaceAttributesDestroyResponse = MarketplaceAttributesDestroyResponses[keyof MarketplaceAttributesDestroyResponses];
40384
+ export type MarketplaceAttributesRetrieveData = {
40385
+ body?: never;
40386
+ path: {
40387
+ uuid: string;
40388
+ };
40389
+ query?: never;
40390
+ url: '/api/marketplace-attributes/{uuid}/';
40391
+ };
40392
+ export type MarketplaceAttributesRetrieveResponses = {
40393
+ 200: Attribute;
40394
+ };
40395
+ export type MarketplaceAttributesRetrieveResponse = MarketplaceAttributesRetrieveResponses[keyof MarketplaceAttributesRetrieveResponses];
40396
+ export type MarketplaceAttributesPartialUpdateData = {
40397
+ body?: PatchedAttributeRequest;
40398
+ path: {
40399
+ uuid: string;
40400
+ };
40401
+ query?: never;
40402
+ url: '/api/marketplace-attributes/{uuid}/';
40403
+ };
40404
+ export type MarketplaceAttributesPartialUpdateResponses = {
40405
+ 200: Attribute;
40406
+ };
40407
+ export type MarketplaceAttributesPartialUpdateResponse = MarketplaceAttributesPartialUpdateResponses[keyof MarketplaceAttributesPartialUpdateResponses];
40408
+ export type MarketplaceAttributesUpdateData = {
40409
+ body: AttributeRequest;
40410
+ path: {
40411
+ uuid: string;
40412
+ };
40413
+ query?: never;
40414
+ url: '/api/marketplace-attributes/{uuid}/';
40415
+ };
40416
+ export type MarketplaceAttributesUpdateResponses = {
40417
+ 200: Attribute;
40418
+ };
40419
+ export type MarketplaceAttributesUpdateResponse = MarketplaceAttributesUpdateResponses[keyof MarketplaceAttributesUpdateResponses];
39854
40420
  export type MarketplaceBookingsListData = {
39855
40421
  body?: never;
39856
40422
  path: {
@@ -41069,6 +41635,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
41069
41635
  200: CourseAccount;
41070
41636
  };
41071
41637
  export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
41638
+ export type MarketplaceCourseAccountsRetryData = {
41639
+ body?: never;
41640
+ path: {
41641
+ uuid: string;
41642
+ };
41643
+ query?: never;
41644
+ url: '/api/marketplace-course-accounts/{uuid}/retry/';
41645
+ };
41646
+ export type MarketplaceCourseAccountsRetryResponses = {
41647
+ 202: CourseAccount;
41648
+ };
41649
+ export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
41072
41650
  export type MarketplaceCourseAccountsCreateBulkData = {
41073
41651
  body: CourseAccountsBulkCreateRequest;
41074
41652
  path?: never;
@@ -42030,6 +42608,10 @@ export type MarketplaceOfferingPermissionsListData = {
42030
42608
  * Created after
42031
42609
  */
42032
42610
  created?: string;
42611
+ /**
42612
+ * Created before
42613
+ */
42614
+ created_before?: string;
42033
42615
  customer?: string;
42034
42616
  /**
42035
42617
  * User full name contains
@@ -42039,6 +42621,10 @@ export type MarketplaceOfferingPermissionsListData = {
42039
42621
  * Modified after
42040
42622
  */
42041
42623
  modified?: string;
42624
+ /**
42625
+ * Modified before
42626
+ */
42627
+ modified_before?: string;
42042
42628
  native_name?: string;
42043
42629
  /**
42044
42630
  * Ordering
@@ -42097,6 +42683,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42097
42683
  * Created after
42098
42684
  */
42099
42685
  created?: string;
42686
+ /**
42687
+ * Created before
42688
+ */
42689
+ created_before?: string;
42100
42690
  customer?: string;
42101
42691
  /**
42102
42692
  * User full name contains
@@ -42106,6 +42696,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42106
42696
  * Modified after
42107
42697
  */
42108
42698
  modified?: string;
42699
+ /**
42700
+ * Modified before
42701
+ */
42702
+ modified_before?: string;
42109
42703
  native_name?: string;
42110
42704
  /**
42111
42705
  * Ordering
@@ -42166,6 +42760,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42166
42760
  * Created after
42167
42761
  */
42168
42762
  created?: string;
42763
+ /**
42764
+ * Created before
42765
+ */
42766
+ created_before?: string;
42169
42767
  customer?: string;
42170
42768
  /**
42171
42769
  * User full name contains
@@ -42175,6 +42773,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42175
42773
  * Modified after
42176
42774
  */
42177
42775
  modified?: string;
42776
+ /**
42777
+ * Modified before
42778
+ */
42779
+ modified_before?: string;
42178
42780
  native_name?: string;
42179
42781
  /**
42180
42782
  * Ordering
@@ -42233,6 +42835,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42233
42835
  * Created after
42234
42836
  */
42235
42837
  created?: string;
42838
+ /**
42839
+ * Created before
42840
+ */
42841
+ created_before?: string;
42236
42842
  customer?: string;
42237
42843
  /**
42238
42844
  * User full name contains
@@ -42242,6 +42848,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42242
42848
  * Modified after
42243
42849
  */
42244
42850
  modified?: string;
42851
+ /**
42852
+ * Modified before
42853
+ */
42854
+ modified_before?: string;
42245
42855
  native_name?: string;
42246
42856
  /**
42247
42857
  * Ordering
@@ -42684,11 +43294,19 @@ export type MarketplaceOfferingUserChecklistCompletionsListData = {
42684
43294
  * Created after
42685
43295
  */
42686
43296
  created?: string;
43297
+ /**
43298
+ * Created before
43299
+ */
43300
+ created_before?: string;
42687
43301
  is_completed?: boolean;
42688
43302
  /**
42689
43303
  * Modified after
42690
43304
  */
42691
43305
  modified?: string;
43306
+ /**
43307
+ * Modified before
43308
+ */
43309
+ modified_before?: string;
42692
43310
  /**
42693
43311
  * Ordering
42694
43312
  *
@@ -42726,11 +43344,19 @@ export type MarketplaceOfferingUserChecklistCompletionsCountData = {
42726
43344
  * Created after
42727
43345
  */
42728
43346
  created?: string;
43347
+ /**
43348
+ * Created before
43349
+ */
43350
+ created_before?: string;
42729
43351
  is_completed?: boolean;
42730
43352
  /**
42731
43353
  * Modified after
42732
43354
  */
42733
43355
  modified?: string;
43356
+ /**
43357
+ * Modified before
43358
+ */
43359
+ modified_before?: string;
42734
43360
  /**
42735
43361
  * Ordering
42736
43362
  *
@@ -42906,6 +43532,10 @@ export type MarketplaceOfferingUsersListData = {
42906
43532
  * Created after
42907
43533
  */
42908
43534
  created?: string;
43535
+ /**
43536
+ * Created before
43537
+ */
43538
+ created_before?: string;
42909
43539
  field?: Array<OfferingUserFieldEnum>;
42910
43540
  /**
42911
43541
  * User has complete profile for the offering
@@ -42923,6 +43553,10 @@ export type MarketplaceOfferingUsersListData = {
42923
43553
  * Modified after
42924
43554
  */
42925
43555
  modified?: string;
43556
+ /**
43557
+ * Modified before
43558
+ */
43559
+ modified_before?: string;
42926
43560
  /**
42927
43561
  * Ordering
42928
43562
  *
@@ -42984,6 +43618,10 @@ export type MarketplaceOfferingUsersCountData = {
42984
43618
  * Created after
42985
43619
  */
42986
43620
  created?: string;
43621
+ /**
43622
+ * Created before
43623
+ */
43624
+ created_before?: string;
42987
43625
  /**
42988
43626
  * User has complete profile for the offering
42989
43627
  */
@@ -43000,6 +43638,10 @@ export type MarketplaceOfferingUsersCountData = {
43000
43638
  * Modified after
43001
43639
  */
43002
43640
  modified?: string;
43641
+ /**
43642
+ * Modified before
43643
+ */
43644
+ modified_before?: string;
43003
43645
  /**
43004
43646
  * Ordering
43005
43647
  *
@@ -43485,6 +44127,10 @@ export type MarketplaceOrdersListData = {
43485
44127
  * Created after
43486
44128
  */
43487
44129
  created?: string;
44130
+ /**
44131
+ * Created before
44132
+ */
44133
+ created_before?: string;
43488
44134
  /**
43489
44135
  * Customer UUID
43490
44136
  */
@@ -43494,6 +44140,10 @@ export type MarketplaceOrdersListData = {
43494
44140
  * Modified after
43495
44141
  */
43496
44142
  modified?: string;
44143
+ /**
44144
+ * Modified before
44145
+ */
44146
+ modified_before?: string;
43497
44147
  /**
43498
44148
  * Ordering
43499
44149
  *
@@ -43589,6 +44239,10 @@ export type MarketplaceOrdersCountData = {
43589
44239
  * Created after
43590
44240
  */
43591
44241
  created?: string;
44242
+ /**
44243
+ * Created before
44244
+ */
44245
+ created_before?: string;
43592
44246
  /**
43593
44247
  * Customer UUID
43594
44248
  */
@@ -43597,6 +44251,10 @@ export type MarketplaceOrdersCountData = {
43597
44251
  * Modified after
43598
44252
  */
43599
44253
  modified?: string;
44254
+ /**
44255
+ * Modified before
44256
+ */
44257
+ modified_before?: string;
43600
44258
  /**
43601
44259
  * Ordering
43602
44260
  *
@@ -43830,6 +44488,20 @@ export type MarketplaceOrdersRejectByProviderResponses = {
43830
44488
  */
43831
44489
  200: unknown;
43832
44490
  };
44491
+ export type MarketplaceOrdersRetryData = {
44492
+ body?: never;
44493
+ path: {
44494
+ uuid: string;
44495
+ };
44496
+ query?: never;
44497
+ url: '/api/marketplace-orders/{uuid}/retry/';
44498
+ };
44499
+ export type MarketplaceOrdersRetryResponses = {
44500
+ /**
44501
+ * No response body
44502
+ */
44503
+ 200: unknown;
44504
+ };
43833
44505
  export type MarketplaceOrdersSetBackendIdData = {
43834
44506
  body: OrderBackendIdRequest;
43835
44507
  path: {
@@ -44802,6 +45474,10 @@ export type MarketplaceProviderOfferingsListData = {
44802
45474
  * Created after
44803
45475
  */
44804
45476
  created?: string;
45477
+ /**
45478
+ * Created before
45479
+ */
45480
+ created_before?: string;
44805
45481
  /**
44806
45482
  * Customer URL
44807
45483
  */
@@ -44835,6 +45511,10 @@ export type MarketplaceProviderOfferingsListData = {
44835
45511
  * Modified after
44836
45512
  */
44837
45513
  modified?: string;
45514
+ /**
45515
+ * Modified before
45516
+ */
45517
+ modified_before?: string;
44838
45518
  /**
44839
45519
  * Name
44840
45520
  */
@@ -44971,6 +45651,10 @@ export type MarketplaceProviderOfferingsCountData = {
44971
45651
  * Created after
44972
45652
  */
44973
45653
  created?: string;
45654
+ /**
45655
+ * Created before
45656
+ */
45657
+ created_before?: string;
44974
45658
  /**
44975
45659
  * Customer URL
44976
45660
  */
@@ -45003,6 +45687,10 @@ export type MarketplaceProviderOfferingsCountData = {
45003
45687
  * Modified after
45004
45688
  */
45005
45689
  modified?: string;
45690
+ /**
45691
+ * Modified before
45692
+ */
45693
+ modified_before?: string;
45006
45694
  /**
45007
45695
  * Name
45008
45696
  */
@@ -45272,6 +45960,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45272
45960
  * Created after
45273
45961
  */
45274
45962
  created?: string;
45963
+ /**
45964
+ * Created before
45965
+ */
45966
+ created_before?: string;
45275
45967
  /**
45276
45968
  * Customer URL
45277
45969
  */
@@ -45308,6 +46000,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45308
46000
  * Modified after
45309
46001
  */
45310
46002
  modified?: string;
46003
+ /**
46004
+ * Modified before
46005
+ */
46006
+ modified_before?: string;
45311
46007
  /**
45312
46008
  * Name
45313
46009
  */
@@ -45451,6 +46147,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45451
46147
  * Created after
45452
46148
  */
45453
46149
  created?: string;
46150
+ /**
46151
+ * Created before
46152
+ */
46153
+ created_before?: string;
45454
46154
  /**
45455
46155
  * Customer URL
45456
46156
  */
@@ -45487,6 +46187,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45487
46187
  * Modified after
45488
46188
  */
45489
46189
  modified?: string;
46190
+ /**
46191
+ * Modified before
46192
+ */
46193
+ modified_before?: string;
45490
46194
  /**
45491
46195
  * Name
45492
46196
  */
@@ -45643,6 +46347,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45643
46347
  * Created after
45644
46348
  */
45645
46349
  created?: string;
46350
+ /**
46351
+ * Created before
46352
+ */
46353
+ created_before?: string;
45646
46354
  /**
45647
46355
  * Customer URL
45648
46356
  */
@@ -45676,6 +46384,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45676
46384
  * Modified after
45677
46385
  */
45678
46386
  modified?: string;
46387
+ /**
46388
+ * Modified before
46389
+ */
46390
+ modified_before?: string;
45679
46391
  /**
45680
46392
  * Name
45681
46393
  */
@@ -45994,6 +46706,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
45994
46706
  * Modified after
45995
46707
  */
45996
46708
  modified?: string;
46709
+ /**
46710
+ * Modified before
46711
+ */
46712
+ modified_before?: string;
45997
46713
  /**
45998
46714
  * Name
45999
46715
  */
@@ -46191,6 +46907,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46191
46907
  * Created after
46192
46908
  */
46193
46909
  created?: string;
46910
+ /**
46911
+ * Created before
46912
+ */
46913
+ created_before?: string;
46194
46914
  /**
46195
46915
  * Customer URL
46196
46916
  */
@@ -46223,6 +46943,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46223
46943
  * Modified after
46224
46944
  */
46225
46945
  modified?: string;
46946
+ /**
46947
+ * Modified before
46948
+ */
46949
+ modified_before?: string;
46226
46950
  /**
46227
46951
  * Name
46228
46952
  */
@@ -46383,6 +47107,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46383
47107
  * Created after
46384
47108
  */
46385
47109
  created?: string;
47110
+ /**
47111
+ * Created before
47112
+ */
47113
+ created_before?: string;
46386
47114
  /**
46387
47115
  * Customer URL
46388
47116
  */
@@ -46415,6 +47143,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46415
47143
  * Modified after
46416
47144
  */
46417
47145
  modified?: string;
47146
+ /**
47147
+ * Modified before
47148
+ */
47149
+ modified_before?: string;
46418
47150
  /**
46419
47151
  * Name
46420
47152
  */
@@ -46575,6 +47307,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46575
47307
  * Created after
46576
47308
  */
46577
47309
  created?: string;
47310
+ /**
47311
+ * Created before
47312
+ */
47313
+ created_before?: string;
46578
47314
  /**
46579
47315
  * Customer URL
46580
47316
  */
@@ -46607,6 +47343,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46607
47343
  * Modified after
46608
47344
  */
46609
47345
  modified?: string;
47346
+ /**
47347
+ * Modified before
47348
+ */
47349
+ modified_before?: string;
46610
47350
  /**
46611
47351
  * Name
46612
47352
  */
@@ -47311,169 +48051,9 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47311
48051
  */
47312
48052
  created?: string;
47313
48053
  /**
47314
- * Customer URL
47315
- */
47316
- customer?: string;
47317
- /**
47318
- * Customer UUID
48054
+ * Created before
47319
48055
  */
47320
- customer_uuid?: string;
47321
- /**
47322
- * Description contains
47323
- */
47324
- description?: string;
47325
- /**
47326
- * Has Active Terms of Service
47327
- */
47328
- has_active_terms_of_service?: boolean;
47329
- /**
47330
- * Has Terms of Service
47331
- */
47332
- has_terms_of_service?: boolean;
47333
- /**
47334
- * Keyword
47335
- */
47336
- keyword?: string;
47337
- /**
47338
- * Modified after
47339
- */
47340
- modified?: string;
47341
- /**
47342
- * Name
47343
- */
47344
- name?: string;
47345
- /**
47346
- * Name (exact)
47347
- */
47348
- name_exact?: string;
47349
- /**
47350
- * Ordering
47351
- *
47352
- *
47353
- */
47354
- o?: Array<ProviderOfferingDetailsOEnum>;
47355
- /**
47356
- * Organization group UUID
47357
- */
47358
- organization_group_uuid?: string;
47359
- /**
47360
- * A page number within the paginated result set.
47361
- */
47362
- page?: number;
47363
- /**
47364
- * Number of results to return per page.
47365
- */
47366
- page_size?: number;
47367
- /**
47368
- * Parent offering UUID
47369
- */
47370
- parent_uuid?: string;
47371
- /**
47372
- * Project UUID
47373
- */
47374
- project_uuid?: string;
47375
- /**
47376
- * Search by offering name, slug or description
47377
- */
47378
- query?: string;
47379
- /**
47380
- * Resource customer UUID
47381
- */
47382
- resource_customer_uuid?: string;
47383
- /**
47384
- * Resource project UUID
47385
- */
47386
- resource_project_uuid?: string;
47387
- /**
47388
- * Scope UUID
47389
- */
47390
- scope_uuid?: string;
47391
- /**
47392
- * Service manager UUID
47393
- */
47394
- service_manager_uuid?: string;
47395
- /**
47396
- * Shared
47397
- */
47398
- shared?: boolean;
47399
- /**
47400
- * Offering state
47401
- *
47402
- *
47403
- */
47404
- state?: Array<OfferingState>;
47405
- /**
47406
- * Tag UUID (OR logic)
47407
- */
47408
- tag?: Array<string>;
47409
- /**
47410
- * Tag name (OR logic)
47411
- */
47412
- tag_name?: Array<string>;
47413
- /**
47414
- * Tag names with AND logic (comma-separated)
47415
- */
47416
- tag_names_and?: string;
47417
- /**
47418
- * Tag UUIDs with AND logic (comma-separated)
47419
- */
47420
- tags_and?: string;
47421
- /**
47422
- * Offering type
47423
- */
47424
- type?: Array<string>;
47425
- /**
47426
- * User Has Consent
47427
- */
47428
- user_has_consent?: boolean;
47429
- /**
47430
- * User Has Offering User
47431
- */
47432
- user_has_offering_user?: boolean;
47433
- /**
47434
- * Comma-separated offering UUIDs
47435
- */
47436
- uuid_list?: string;
47437
- };
47438
- url: '/api/marketplace-provider-offerings/groups/';
47439
- };
47440
- export type MarketplaceProviderOfferingsGroupsListResponses = {
47441
- 200: Array<OfferingGroups>;
47442
- };
47443
- export type MarketplaceProviderOfferingsGroupsListResponse = MarketplaceProviderOfferingsGroupsListResponses[keyof MarketplaceProviderOfferingsGroupsListResponses];
47444
- export type MarketplaceProviderOfferingsGroupsCountData = {
47445
- body?: never;
47446
- path?: never;
47447
- query?: {
47448
- /**
47449
- * Accessible via calls
47450
- */
47451
- accessible_via_calls?: boolean;
47452
- /**
47453
- * Allowed customer UUID
47454
- */
47455
- allowed_customer_uuid?: string;
47456
- /**
47457
- * Offering attributes (JSON)
47458
- */
47459
- attributes?: string;
47460
- /**
47461
- * Billable
47462
- */
47463
- billable?: boolean;
47464
- can_create_offering_user?: boolean;
47465
- /**
47466
- * Category group UUID
47467
- */
47468
- category_group_uuid?: string;
47469
- /**
47470
- * Category UUID
47471
- */
47472
- category_uuid?: string;
47473
- /**
47474
- * Created after
47475
- */
47476
- created?: string;
48056
+ created_before?: string;
47477
48057
  /**
47478
48058
  * Customer URL
47479
48059
  */
@@ -47502,6 +48082,182 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47502
48082
  * Modified after
47503
48083
  */
47504
48084
  modified?: string;
48085
+ /**
48086
+ * Modified before
48087
+ */
48088
+ modified_before?: string;
48089
+ /**
48090
+ * Name
48091
+ */
48092
+ name?: string;
48093
+ /**
48094
+ * Name (exact)
48095
+ */
48096
+ name_exact?: string;
48097
+ /**
48098
+ * Ordering
48099
+ *
48100
+ *
48101
+ */
48102
+ o?: Array<ProviderOfferingDetailsOEnum>;
48103
+ /**
48104
+ * Organization group UUID
48105
+ */
48106
+ organization_group_uuid?: string;
48107
+ /**
48108
+ * A page number within the paginated result set.
48109
+ */
48110
+ page?: number;
48111
+ /**
48112
+ * Number of results to return per page.
48113
+ */
48114
+ page_size?: number;
48115
+ /**
48116
+ * Parent offering UUID
48117
+ */
48118
+ parent_uuid?: string;
48119
+ /**
48120
+ * Project UUID
48121
+ */
48122
+ project_uuid?: string;
48123
+ /**
48124
+ * Search by offering name, slug or description
48125
+ */
48126
+ query?: string;
48127
+ /**
48128
+ * Resource customer UUID
48129
+ */
48130
+ resource_customer_uuid?: string;
48131
+ /**
48132
+ * Resource project UUID
48133
+ */
48134
+ resource_project_uuid?: string;
48135
+ /**
48136
+ * Scope UUID
48137
+ */
48138
+ scope_uuid?: string;
48139
+ /**
48140
+ * Service manager UUID
48141
+ */
48142
+ service_manager_uuid?: string;
48143
+ /**
48144
+ * Shared
48145
+ */
48146
+ shared?: boolean;
48147
+ /**
48148
+ * Offering state
48149
+ *
48150
+ *
48151
+ */
48152
+ state?: Array<OfferingState>;
48153
+ /**
48154
+ * Tag UUID (OR logic)
48155
+ */
48156
+ tag?: Array<string>;
48157
+ /**
48158
+ * Tag name (OR logic)
48159
+ */
48160
+ tag_name?: Array<string>;
48161
+ /**
48162
+ * Tag names with AND logic (comma-separated)
48163
+ */
48164
+ tag_names_and?: string;
48165
+ /**
48166
+ * Tag UUIDs with AND logic (comma-separated)
48167
+ */
48168
+ tags_and?: string;
48169
+ /**
48170
+ * Offering type
48171
+ */
48172
+ type?: Array<string>;
48173
+ /**
48174
+ * User Has Consent
48175
+ */
48176
+ user_has_consent?: boolean;
48177
+ /**
48178
+ * User Has Offering User
48179
+ */
48180
+ user_has_offering_user?: boolean;
48181
+ /**
48182
+ * Comma-separated offering UUIDs
48183
+ */
48184
+ uuid_list?: string;
48185
+ };
48186
+ url: '/api/marketplace-provider-offerings/groups/';
48187
+ };
48188
+ export type MarketplaceProviderOfferingsGroupsListResponses = {
48189
+ 200: Array<OfferingGroups>;
48190
+ };
48191
+ export type MarketplaceProviderOfferingsGroupsListResponse = MarketplaceProviderOfferingsGroupsListResponses[keyof MarketplaceProviderOfferingsGroupsListResponses];
48192
+ export type MarketplaceProviderOfferingsGroupsCountData = {
48193
+ body?: never;
48194
+ path?: never;
48195
+ query?: {
48196
+ /**
48197
+ * Accessible via calls
48198
+ */
48199
+ accessible_via_calls?: boolean;
48200
+ /**
48201
+ * Allowed customer UUID
48202
+ */
48203
+ allowed_customer_uuid?: string;
48204
+ /**
48205
+ * Offering attributes (JSON)
48206
+ */
48207
+ attributes?: string;
48208
+ /**
48209
+ * Billable
48210
+ */
48211
+ billable?: boolean;
48212
+ can_create_offering_user?: boolean;
48213
+ /**
48214
+ * Category group UUID
48215
+ */
48216
+ category_group_uuid?: string;
48217
+ /**
48218
+ * Category UUID
48219
+ */
48220
+ category_uuid?: string;
48221
+ /**
48222
+ * Created after
48223
+ */
48224
+ created?: string;
48225
+ /**
48226
+ * Created before
48227
+ */
48228
+ created_before?: string;
48229
+ /**
48230
+ * Customer URL
48231
+ */
48232
+ customer?: string;
48233
+ /**
48234
+ * Customer UUID
48235
+ */
48236
+ customer_uuid?: string;
48237
+ /**
48238
+ * Description contains
48239
+ */
48240
+ description?: string;
48241
+ /**
48242
+ * Has Active Terms of Service
48243
+ */
48244
+ has_active_terms_of_service?: boolean;
48245
+ /**
48246
+ * Has Terms of Service
48247
+ */
48248
+ has_terms_of_service?: boolean;
48249
+ /**
48250
+ * Keyword
48251
+ */
48252
+ keyword?: string;
48253
+ /**
48254
+ * Modified after
48255
+ */
48256
+ modified?: string;
48257
+ /**
48258
+ * Modified before
48259
+ */
48260
+ modified_before?: string;
47505
48261
  /**
47506
48262
  * Name
47507
48263
  */
@@ -47637,6 +48393,10 @@ export type MarketplaceProviderResourcesListData = {
47637
48393
  * Created after
47638
48394
  */
47639
48395
  created?: string;
48396
+ /**
48397
+ * Created before
48398
+ */
48399
+ created_before?: string;
47640
48400
  /**
47641
48401
  * Customer URL
47642
48402
  */
@@ -47674,6 +48434,10 @@ export type MarketplaceProviderResourcesListData = {
47674
48434
  * Modified after
47675
48435
  */
47676
48436
  modified?: string;
48437
+ /**
48438
+ * Modified before
48439
+ */
48440
+ modified_before?: string;
47677
48441
  /**
47678
48442
  * Name
47679
48443
  */
@@ -47817,6 +48581,10 @@ export type MarketplaceProviderResourcesCountData = {
47817
48581
  * Created after
47818
48582
  */
47819
48583
  created?: string;
48584
+ /**
48585
+ * Created before
48586
+ */
48587
+ created_before?: string;
47820
48588
  /**
47821
48589
  * Customer URL
47822
48590
  */
@@ -47853,6 +48621,10 @@ export type MarketplaceProviderResourcesCountData = {
47853
48621
  * Modified after
47854
48622
  */
47855
48623
  modified?: string;
48624
+ /**
48625
+ * Modified before
48626
+ */
48627
+ modified_before?: string;
47856
48628
  /**
47857
48629
  * Name
47858
48630
  */
@@ -48112,6 +48884,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48112
48884
  * Modified after
48113
48885
  */
48114
48886
  modified?: string;
48887
+ /**
48888
+ * Modified before
48889
+ */
48890
+ modified_before?: string;
48115
48891
  /**
48116
48892
  * Name
48117
48893
  */
@@ -48415,6 +49191,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
48415
49191
  };
48416
49192
  };
48417
49193
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
49194
+ export type MarketplaceProviderResourcesSetEffectiveIdData = {
49195
+ body?: ResourceEffectiveIdRequest;
49196
+ path: {
49197
+ uuid: string;
49198
+ };
49199
+ query?: never;
49200
+ url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
49201
+ };
49202
+ export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
49203
+ 200: ResourceResponseStatus;
49204
+ };
49205
+ export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
49206
+ export type MarketplaceProviderResourcesSetEndDateData = {
49207
+ body?: ResourceEndDateRequest;
49208
+ path: {
49209
+ uuid: string;
49210
+ };
49211
+ query?: never;
49212
+ url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
49213
+ };
49214
+ export type MarketplaceProviderResourcesSetEndDateResponses = {
49215
+ /**
49216
+ * No response body
49217
+ */
49218
+ 200: unknown;
49219
+ };
48418
49220
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
48419
49221
  body?: ResourceEndDateByProviderRequest;
48420
49222
  path: {
@@ -48666,6 +49468,10 @@ export type MarketplacePublicOfferingsListData = {
48666
49468
  * Created after
48667
49469
  */
48668
49470
  created?: string;
49471
+ /**
49472
+ * Created before
49473
+ */
49474
+ created_before?: string;
48669
49475
  /**
48670
49476
  * Customer URL
48671
49477
  */
@@ -48695,6 +49501,10 @@ export type MarketplacePublicOfferingsListData = {
48695
49501
  * Modified after
48696
49502
  */
48697
49503
  modified?: string;
49504
+ /**
49505
+ * Modified before
49506
+ */
49507
+ modified_before?: string;
48698
49508
  /**
48699
49509
  * Name
48700
49510
  */
@@ -48831,6 +49641,10 @@ export type MarketplacePublicOfferingsCountData = {
48831
49641
  * Created after
48832
49642
  */
48833
49643
  created?: string;
49644
+ /**
49645
+ * Created before
49646
+ */
49647
+ created_before?: string;
48834
49648
  /**
48835
49649
  * Customer URL
48836
49650
  */
@@ -48859,6 +49673,10 @@ export type MarketplacePublicOfferingsCountData = {
48859
49673
  * Modified after
48860
49674
  */
48861
49675
  modified?: string;
49676
+ /**
49677
+ * Modified before
49678
+ */
49679
+ modified_before?: string;
48862
49680
  /**
48863
49681
  * Name
48864
49682
  */
@@ -49311,6 +50129,10 @@ export type MarketplaceResourcesListData = {
49311
50129
  * Created after
49312
50130
  */
49313
50131
  created?: string;
50132
+ /**
50133
+ * Created before
50134
+ */
50135
+ created_before?: string;
49314
50136
  /**
49315
50137
  * Customer URL
49316
50138
  */
@@ -49348,6 +50170,10 @@ export type MarketplaceResourcesListData = {
49348
50170
  * Modified after
49349
50171
  */
49350
50172
  modified?: string;
50173
+ /**
50174
+ * Modified before
50175
+ */
50176
+ modified_before?: string;
49351
50177
  /**
49352
50178
  * Name
49353
50179
  */
@@ -49491,6 +50317,10 @@ export type MarketplaceResourcesCountData = {
49491
50317
  * Created after
49492
50318
  */
49493
50319
  created?: string;
50320
+ /**
50321
+ * Created before
50322
+ */
50323
+ created_before?: string;
49494
50324
  /**
49495
50325
  * Customer URL
49496
50326
  */
@@ -49527,6 +50357,10 @@ export type MarketplaceResourcesCountData = {
49527
50357
  * Modified after
49528
50358
  */
49529
50359
  modified?: string;
50360
+ /**
50361
+ * Modified before
50362
+ */
50363
+ modified_before?: string;
49530
50364
  /**
49531
50365
  * Name
49532
50366
  */
@@ -49798,6 +50632,10 @@ export type MarketplaceResourcesHistoryListData = {
49798
50632
  * Modified after
49799
50633
  */
49800
50634
  modified?: string;
50635
+ /**
50636
+ * Modified before
50637
+ */
50638
+ modified_before?: string;
49801
50639
  /**
49802
50640
  * Name
49803
50641
  */
@@ -50059,6 +50897,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
50059
50897
  };
50060
50898
  };
50061
50899
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
50900
+ export type MarketplaceResourcesSetEndDateData = {
50901
+ body?: ResourceEndDateRequest;
50902
+ path: {
50903
+ uuid: string;
50904
+ };
50905
+ query?: never;
50906
+ url: '/api/marketplace-resources/{uuid}/set_end_date/';
50907
+ };
50908
+ export type MarketplaceResourcesSetEndDateResponses = {
50909
+ /**
50910
+ * No response body
50911
+ */
50912
+ 200: unknown;
50913
+ };
50062
50914
  export type MarketplaceResourcesSetEndDateByStaffData = {
50063
50915
  body?: ResourceEndDateByProviderRequest;
50064
50916
  path: {
@@ -50223,6 +51075,10 @@ export type MarketplaceRobotAccountsListData = {
50223
51075
  * Created after
50224
51076
  */
50225
51077
  created?: string;
51078
+ /**
51079
+ * Created before
51080
+ */
51081
+ created_before?: string;
50226
51082
  /**
50227
51083
  * Customer UUID
50228
51084
  */
@@ -50232,6 +51088,10 @@ export type MarketplaceRobotAccountsListData = {
50232
51088
  * Modified after
50233
51089
  */
50234
51090
  modified?: string;
51091
+ /**
51092
+ * Modified before
51093
+ */
51094
+ modified_before?: string;
50235
51095
  /**
50236
51096
  * A page number within the paginated result set.
50237
51097
  */
@@ -50256,6 +51116,10 @@ export type MarketplaceRobotAccountsListData = {
50256
51116
  * Resource UUID
50257
51117
  */
50258
51118
  resource_uuid?: string;
51119
+ /**
51120
+ * Responsible user UUID
51121
+ */
51122
+ responsible_user_uuid?: string;
50259
51123
  /**
50260
51124
  * Robot account state
50261
51125
  *
@@ -50263,6 +51127,14 @@ export type MarketplaceRobotAccountsListData = {
50263
51127
  */
50264
51128
  state?: RemoteResourceSyncStatusRemoteStateEnum;
50265
51129
  type?: string;
51130
+ /**
51131
+ * Connected user email contains
51132
+ */
51133
+ user_email?: string;
51134
+ /**
51135
+ * Username contains
51136
+ */
51137
+ username?: string;
50266
51138
  };
50267
51139
  url: '/api/marketplace-robot-accounts/';
50268
51140
  };
@@ -50278,6 +51150,10 @@ export type MarketplaceRobotAccountsCountData = {
50278
51150
  * Created after
50279
51151
  */
50280
51152
  created?: string;
51153
+ /**
51154
+ * Created before
51155
+ */
51156
+ created_before?: string;
50281
51157
  /**
50282
51158
  * Customer UUID
50283
51159
  */
@@ -50286,6 +51162,10 @@ export type MarketplaceRobotAccountsCountData = {
50286
51162
  * Modified after
50287
51163
  */
50288
51164
  modified?: string;
51165
+ /**
51166
+ * Modified before
51167
+ */
51168
+ modified_before?: string;
50289
51169
  /**
50290
51170
  * A page number within the paginated result set.
50291
51171
  */
@@ -50310,6 +51190,10 @@ export type MarketplaceRobotAccountsCountData = {
50310
51190
  * Resource UUID
50311
51191
  */
50312
51192
  resource_uuid?: string;
51193
+ /**
51194
+ * Responsible user UUID
51195
+ */
51196
+ responsible_user_uuid?: string;
50313
51197
  /**
50314
51198
  * Robot account state
50315
51199
  *
@@ -50317,6 +51201,14 @@ export type MarketplaceRobotAccountsCountData = {
50317
51201
  */
50318
51202
  state?: RemoteResourceSyncStatusRemoteStateEnum;
50319
51203
  type?: string;
51204
+ /**
51205
+ * Connected user email contains
51206
+ */
51207
+ user_email?: string;
51208
+ /**
51209
+ * Username contains
51210
+ */
51211
+ username?: string;
50320
51212
  };
50321
51213
  url: '/api/marketplace-robot-accounts/';
50322
51214
  };
@@ -51070,6 +51962,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51070
51962
  * Created after
51071
51963
  */
51072
51964
  created?: string;
51965
+ /**
51966
+ * Created before
51967
+ */
51968
+ created_before?: string;
51073
51969
  /**
51074
51970
  * Multiple values may be separated by commas.
51075
51971
  */
@@ -51099,6 +51995,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51099
51995
  * Modified after
51100
51996
  */
51101
51997
  modified?: string;
51998
+ /**
51999
+ * Modified before
52000
+ */
52001
+ modified_before?: string;
51102
52002
  /**
51103
52003
  * Name
51104
52004
  */
@@ -51220,6 +52120,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51220
52120
  * Created after
51221
52121
  */
51222
52122
  created?: string;
52123
+ /**
52124
+ * Created before
52125
+ */
52126
+ created_before?: string;
51223
52127
  field?: Array<SshKeyFieldEnum>;
51224
52128
  fingerprint_md5?: string;
51225
52129
  fingerprint_sha256?: string;
@@ -51229,6 +52133,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51229
52133
  * Modified after
51230
52134
  */
51231
52135
  modified?: string;
52136
+ /**
52137
+ * Modified before
52138
+ */
52139
+ modified_before?: string;
51232
52140
  /**
51233
52141
  * Name
51234
52142
  */
@@ -51301,6 +52209,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51301
52209
  * Created after
51302
52210
  */
51303
52211
  created?: string;
52212
+ /**
52213
+ * Created before
52214
+ */
52215
+ created_before?: string;
51304
52216
  /**
51305
52217
  * Customer URL
51306
52218
  */
@@ -51330,6 +52242,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51330
52242
  * Modified after
51331
52243
  */
51332
52244
  modified?: string;
52245
+ /**
52246
+ * Modified before
52247
+ */
52248
+ modified_before?: string;
51333
52249
  /**
51334
52250
  * Name
51335
52251
  */
@@ -51443,6 +52359,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51443
52359
  * Created after
51444
52360
  */
51445
52361
  created?: string;
52362
+ /**
52363
+ * Created before
52364
+ */
52365
+ created_before?: string;
51446
52366
  expiration_time?: string;
51447
52367
  field?: Array<ProjectPermissionLogFieldEnum>;
51448
52368
  /**
@@ -51453,6 +52373,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51453
52373
  * Modified after
51454
52374
  */
51455
52375
  modified?: string;
52376
+ /**
52377
+ * Modified before
52378
+ */
52379
+ modified_before?: string;
51456
52380
  native_name?: string;
51457
52381
  /**
51458
52382
  * Ordering
@@ -51568,6 +52492,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51568
52492
  * Created after
51569
52493
  */
51570
52494
  created?: string;
52495
+ /**
52496
+ * Created before
52497
+ */
52498
+ created_before?: string;
51571
52499
  /**
51572
52500
  * Multiple values may be separated by commas.
51573
52501
  */
@@ -51597,6 +52525,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51597
52525
  * Modified after
51598
52526
  */
51599
52527
  modified?: string;
52528
+ /**
52529
+ * Modified before
52530
+ */
52531
+ modified_before?: string;
51600
52532
  /**
51601
52533
  * Name
51602
52534
  */
@@ -53834,6 +54766,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
53834
54766
  body?: never;
53835
54767
  path?: never;
53836
54768
  query?: {
54769
+ /**
54770
+ * Limit number of results (e.g. top N offerings). No limit by default.
54771
+ */
54772
+ limit?: number;
53837
54773
  /**
53838
54774
  * A page number within the paginated result set.
53839
54775
  */
@@ -53853,6 +54789,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
53853
54789
  body?: never;
53854
54790
  path?: never;
53855
54791
  query?: {
54792
+ /**
54793
+ * Limit number of results (e.g. top N offerings). No limit by default.
54794
+ */
54795
+ limit?: number;
53856
54796
  /**
53857
54797
  * A page number within the paginated result set.
53858
54798
  */
@@ -54784,6 +55724,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
54784
55724
  */
54785
55725
  200: unknown;
54786
55726
  };
55727
+ export type MarketplaceStatsProjectCreationTrendListData = {
55728
+ body?: never;
55729
+ path?: never;
55730
+ query?: {
55731
+ /**
55732
+ * A page number within the paginated result set.
55733
+ */
55734
+ page?: number;
55735
+ /**
55736
+ * Number of results to return per page.
55737
+ */
55738
+ page_size?: number;
55739
+ };
55740
+ url: '/api/marketplace-stats/project_creation_trend/';
55741
+ };
55742
+ export type MarketplaceStatsProjectCreationTrendListResponses = {
55743
+ 200: Array<ProjectCreationTrend>;
55744
+ };
55745
+ export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
55746
+ export type MarketplaceStatsProjectCreationTrendCountData = {
55747
+ body?: never;
55748
+ path?: never;
55749
+ query?: {
55750
+ /**
55751
+ * A page number within the paginated result set.
55752
+ */
55753
+ page?: number;
55754
+ /**
55755
+ * Number of results to return per page.
55756
+ */
55757
+ page_size?: number;
55758
+ };
55759
+ url: '/api/marketplace-stats/project_creation_trend/';
55760
+ };
55761
+ export type MarketplaceStatsProjectCreationTrendCountResponses = {
55762
+ /**
55763
+ * No response body
55764
+ */
55765
+ 200: unknown;
55766
+ };
54787
55767
  export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
54788
55768
  body?: never;
54789
55769
  path?: never;
@@ -54968,6 +55948,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
54968
55948
  */
54969
55949
  200: unknown;
54970
55950
  };
55951
+ export type MarketplaceStatsResourceCreationTrendListData = {
55952
+ body?: never;
55953
+ path?: never;
55954
+ query?: {
55955
+ /**
55956
+ * A page number within the paginated result set.
55957
+ */
55958
+ page?: number;
55959
+ /**
55960
+ * Number of results to return per page.
55961
+ */
55962
+ page_size?: number;
55963
+ };
55964
+ url: '/api/marketplace-stats/resource_creation_trend/';
55965
+ };
55966
+ export type MarketplaceStatsResourceCreationTrendListResponses = {
55967
+ 200: Array<ProjectCreationTrend>;
55968
+ };
55969
+ export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
55970
+ export type MarketplaceStatsResourceCreationTrendCountData = {
55971
+ body?: never;
55972
+ path?: never;
55973
+ query?: {
55974
+ /**
55975
+ * A page number within the paginated result set.
55976
+ */
55977
+ page?: number;
55978
+ /**
55979
+ * Number of results to return per page.
55980
+ */
55981
+ page_size?: number;
55982
+ };
55983
+ url: '/api/marketplace-stats/resource_creation_trend/';
55984
+ };
55985
+ export type MarketplaceStatsResourceCreationTrendCountResponses = {
55986
+ /**
55987
+ * No response body
55988
+ */
55989
+ 200: unknown;
55990
+ };
54971
55991
  export type MarketplaceStatsResourceProvisioningStatsListData = {
54972
55992
  body?: never;
54973
55993
  path?: never;
@@ -55254,6 +56274,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
55254
56274
  */
55255
56275
  200: unknown;
55256
56276
  };
56277
+ export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
56278
+ body?: never;
56279
+ path?: never;
56280
+ query?: {
56281
+ /**
56282
+ * Number of top providers to return. Default is 5.
56283
+ */
56284
+ limit?: number;
56285
+ /**
56286
+ * A page number within the paginated result set.
56287
+ */
56288
+ page?: number;
56289
+ /**
56290
+ * Number of results to return per page.
56291
+ */
56292
+ page_size?: number;
56293
+ };
56294
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56295
+ };
56296
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
56297
+ 200: Array<TopServiceProviderByResources>;
56298
+ };
56299
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
56300
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
56301
+ body?: never;
56302
+ path?: never;
56303
+ query?: {
56304
+ /**
56305
+ * Number of top providers to return. Default is 5.
56306
+ */
56307
+ limit?: number;
56308
+ /**
56309
+ * A page number within the paginated result set.
56310
+ */
56311
+ page?: number;
56312
+ /**
56313
+ * Number of results to return per page.
56314
+ */
56315
+ page_size?: number;
56316
+ };
56317
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56318
+ };
56319
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
56320
+ /**
56321
+ * No response body
56322
+ */
56323
+ 200: unknown;
56324
+ };
55257
56325
  export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
55258
56326
  body?: never;
55259
56327
  path?: never;
@@ -55454,6 +56522,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
55454
56522
  */
55455
56523
  200: unknown;
55456
56524
  };
56525
+ export type MarketplaceStatsUserNationalityListData = {
56526
+ body?: never;
56527
+ path?: never;
56528
+ query?: {
56529
+ /**
56530
+ * A page number within the paginated result set.
56531
+ */
56532
+ page?: number;
56533
+ /**
56534
+ * Number of results to return per page.
56535
+ */
56536
+ page_size?: number;
56537
+ };
56538
+ url: '/api/marketplace-stats/user_nationality/';
56539
+ };
56540
+ export type MarketplaceStatsUserNationalityListResponses = {
56541
+ 200: Array<UserNationalityStats>;
56542
+ };
56543
+ export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
56544
+ export type MarketplaceStatsUserNationalityCountData = {
56545
+ body?: never;
56546
+ path?: never;
56547
+ query?: {
56548
+ /**
56549
+ * A page number within the paginated result set.
56550
+ */
56551
+ page?: number;
56552
+ /**
56553
+ * Number of results to return per page.
56554
+ */
56555
+ page_size?: number;
56556
+ };
56557
+ url: '/api/marketplace-stats/user_nationality/';
56558
+ };
56559
+ export type MarketplaceStatsUserNationalityCountResponses = {
56560
+ /**
56561
+ * No response body
56562
+ */
56563
+ 200: unknown;
56564
+ };
55457
56565
  export type MarketplaceStatsUserOrganizationCountListData = {
55458
56566
  body?: never;
55459
56567
  path?: never;
@@ -55534,6 +56642,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
55534
56642
  */
55535
56643
  200: unknown;
55536
56644
  };
56645
+ export type MarketplaceStatsUserResidenceCountryListData = {
56646
+ body?: never;
56647
+ path?: never;
56648
+ query?: {
56649
+ /**
56650
+ * A page number within the paginated result set.
56651
+ */
56652
+ page?: number;
56653
+ /**
56654
+ * Number of results to return per page.
56655
+ */
56656
+ page_size?: number;
56657
+ };
56658
+ url: '/api/marketplace-stats/user_residence_country/';
56659
+ };
56660
+ export type MarketplaceStatsUserResidenceCountryListResponses = {
56661
+ 200: Array<UserResidenceCountryStats>;
56662
+ };
56663
+ export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
56664
+ export type MarketplaceStatsUserResidenceCountryCountData = {
56665
+ body?: never;
56666
+ path?: never;
56667
+ query?: {
56668
+ /**
56669
+ * A page number within the paginated result set.
56670
+ */
56671
+ page?: number;
56672
+ /**
56673
+ * Number of results to return per page.
56674
+ */
56675
+ page_size?: number;
56676
+ };
56677
+ url: '/api/marketplace-stats/user_residence_country/';
56678
+ };
56679
+ export type MarketplaceStatsUserResidenceCountryCountResponses = {
56680
+ /**
56681
+ * No response body
56682
+ */
56683
+ 200: unknown;
56684
+ };
55537
56685
  export type MarketplaceTagsListData = {
55538
56686
  body?: never;
55539
56687
  path?: never;
@@ -58596,6 +59744,10 @@ export type OpenportalUnmanagedProjectsListData = {
58596
59744
  * Created after
58597
59745
  */
58598
59746
  created?: string;
59747
+ /**
59748
+ * Created before
59749
+ */
59750
+ created_before?: string;
58599
59751
  /**
58600
59752
  * Multiple values may be separated by commas.
58601
59753
  */
@@ -58629,6 +59781,10 @@ export type OpenportalUnmanagedProjectsListData = {
58629
59781
  * Modified after
58630
59782
  */
58631
59783
  modified?: string;
59784
+ /**
59785
+ * Modified before
59786
+ */
59787
+ modified_before?: string;
58632
59788
  /**
58633
59789
  * Name
58634
59790
  */
@@ -58699,6 +59855,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58699
59855
  * Created after
58700
59856
  */
58701
59857
  created?: string;
59858
+ /**
59859
+ * Created before
59860
+ */
59861
+ created_before?: string;
58702
59862
  /**
58703
59863
  * Multiple values may be separated by commas.
58704
59864
  */
@@ -58731,6 +59891,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58731
59891
  * Modified after
58732
59892
  */
58733
59893
  modified?: string;
59894
+ /**
59895
+ * Modified before
59896
+ */
59897
+ modified_before?: string;
58734
59898
  /**
58735
59899
  * Name
58736
59900
  */
@@ -66603,6 +67767,136 @@ export type ProjectCreditsUpdateResponses = {
66603
67767
  200: ProjectCredit;
66604
67768
  };
66605
67769
  export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
67770
+ export type ProjectEndDateChangeRequestsListData = {
67771
+ body?: never;
67772
+ path?: never;
67773
+ query?: {
67774
+ /**
67775
+ * Created by UUID
67776
+ */
67777
+ created_by_uuid?: string;
67778
+ /**
67779
+ * Customer UUID
67780
+ */
67781
+ customer_uuid?: string;
67782
+ /**
67783
+ * A page number within the paginated result set.
67784
+ */
67785
+ page?: number;
67786
+ /**
67787
+ * Number of results to return per page.
67788
+ */
67789
+ page_size?: number;
67790
+ /**
67791
+ * Project UUID
67792
+ */
67793
+ project_uuid?: string;
67794
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
67795
+ };
67796
+ url: '/api/project-end-date-change-requests/';
67797
+ };
67798
+ export type ProjectEndDateChangeRequestsListResponses = {
67799
+ 200: Array<ProjectEndDateChangeRequest>;
67800
+ };
67801
+ export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
67802
+ export type ProjectEndDateChangeRequestsCountData = {
67803
+ body?: never;
67804
+ path?: never;
67805
+ query?: {
67806
+ /**
67807
+ * Created by UUID
67808
+ */
67809
+ created_by_uuid?: string;
67810
+ /**
67811
+ * Customer UUID
67812
+ */
67813
+ customer_uuid?: string;
67814
+ /**
67815
+ * A page number within the paginated result set.
67816
+ */
67817
+ page?: number;
67818
+ /**
67819
+ * Number of results to return per page.
67820
+ */
67821
+ page_size?: number;
67822
+ /**
67823
+ * Project UUID
67824
+ */
67825
+ project_uuid?: string;
67826
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
67827
+ };
67828
+ url: '/api/project-end-date-change-requests/';
67829
+ };
67830
+ export type ProjectEndDateChangeRequestsCountResponses = {
67831
+ /**
67832
+ * No response body
67833
+ */
67834
+ 200: unknown;
67835
+ };
67836
+ export type ProjectEndDateChangeRequestsCreateData = {
67837
+ body: ProjectEndDateChangeRequestCreateRequest;
67838
+ path?: never;
67839
+ query?: never;
67840
+ url: '/api/project-end-date-change-requests/';
67841
+ };
67842
+ export type ProjectEndDateChangeRequestsCreateResponses = {
67843
+ 201: ProjectEndDateChangeRequestCreate;
67844
+ };
67845
+ export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
67846
+ export type ProjectEndDateChangeRequestsRetrieveData = {
67847
+ body?: never;
67848
+ path: {
67849
+ uuid: string;
67850
+ };
67851
+ query?: never;
67852
+ url: '/api/project-end-date-change-requests/{uuid}/';
67853
+ };
67854
+ export type ProjectEndDateChangeRequestsRetrieveResponses = {
67855
+ 200: ProjectEndDateChangeRequest;
67856
+ };
67857
+ export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
67858
+ export type ProjectEndDateChangeRequestsApproveData = {
67859
+ body?: ReviewCommentRequest;
67860
+ path: {
67861
+ uuid: string;
67862
+ };
67863
+ query?: never;
67864
+ url: '/api/project-end-date-change-requests/{uuid}/approve/';
67865
+ };
67866
+ export type ProjectEndDateChangeRequestsApproveResponses = {
67867
+ /**
67868
+ * No response body
67869
+ */
67870
+ 200: unknown;
67871
+ };
67872
+ export type ProjectEndDateChangeRequestsCancelData = {
67873
+ body?: never;
67874
+ path: {
67875
+ uuid: string;
67876
+ };
67877
+ query?: never;
67878
+ url: '/api/project-end-date-change-requests/{uuid}/cancel/';
67879
+ };
67880
+ export type ProjectEndDateChangeRequestsCancelResponses = {
67881
+ /**
67882
+ * No response body
67883
+ */
67884
+ 200: unknown;
67885
+ };
67886
+ export type ProjectEndDateChangeRequestsRejectData = {
67887
+ body?: ReviewCommentRequest;
67888
+ path: {
67889
+ uuid: string;
67890
+ };
67891
+ query?: never;
67892
+ url: '/api/project-end-date-change-requests/{uuid}/reject/';
67893
+ };
67894
+ export type ProjectEndDateChangeRequestsRejectResponses = {
67895
+ /**
67896
+ * No response body
67897
+ */
67898
+ 200: unknown;
67899
+ };
66606
67900
  export type ProjectPermissionsReviewsListData = {
66607
67901
  body?: never;
66608
67902
  path?: never;
@@ -66848,6 +68142,10 @@ export type ProjectsListData = {
66848
68142
  * Created after
66849
68143
  */
66850
68144
  created?: string;
68145
+ /**
68146
+ * Created before
68147
+ */
68148
+ created_before?: string;
66851
68149
  /**
66852
68150
  * Multiple values may be separated by commas.
66853
68151
  */
@@ -66881,6 +68179,10 @@ export type ProjectsListData = {
66881
68179
  * Modified after
66882
68180
  */
66883
68181
  modified?: string;
68182
+ /**
68183
+ * Modified before
68184
+ */
68185
+ modified_before?: string;
66884
68186
  /**
66885
68187
  * Name
66886
68188
  */
@@ -66951,6 +68253,10 @@ export type ProjectsCountData = {
66951
68253
  * Created after
66952
68254
  */
66953
68255
  created?: string;
68256
+ /**
68257
+ * Created before
68258
+ */
68259
+ created_before?: string;
66954
68260
  /**
66955
68261
  * Multiple values may be separated by commas.
66956
68262
  */
@@ -66983,6 +68289,10 @@ export type ProjectsCountData = {
66983
68289
  * Modified after
66984
68290
  */
66985
68291
  modified?: string;
68292
+ /**
68293
+ * Modified before
68294
+ */
68295
+ modified_before?: string;
66986
68296
  /**
66987
68297
  * Name
66988
68298
  */
@@ -77442,6 +78752,10 @@ export type UserPermissionsListData = {
77442
78752
  * Created after
77443
78753
  */
77444
78754
  created?: string;
78755
+ /**
78756
+ * Created before
78757
+ */
78758
+ created_before?: string;
77445
78759
  expiration_time?: string;
77446
78760
  /**
77447
78761
  * User full name contains
@@ -77451,6 +78765,10 @@ export type UserPermissionsListData = {
77451
78765
  * Modified after
77452
78766
  */
77453
78767
  modified?: string;
78768
+ /**
78769
+ * Modified before
78770
+ */
78771
+ modified_before?: string;
77454
78772
  native_name?: string;
77455
78773
  /**
77456
78774
  * Ordering
@@ -77508,6 +78826,10 @@ export type UserPermissionsCountData = {
77508
78826
  * Created after
77509
78827
  */
77510
78828
  created?: string;
78829
+ /**
78830
+ * Created before
78831
+ */
78832
+ created_before?: string;
77511
78833
  expiration_time?: string;
77512
78834
  /**
77513
78835
  * User full name contains
@@ -77517,6 +78839,10 @@ export type UserPermissionsCountData = {
77517
78839
  * Modified after
77518
78840
  */
77519
78841
  modified?: string;
78842
+ /**
78843
+ * Modified before
78844
+ */
78845
+ modified_before?: string;
77520
78846
  native_name?: string;
77521
78847
  /**
77522
78848
  * Ordering