waldur-js-client 8.0.7-dev.3 → 8.0.7-dev.30

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;
@@ -1101,6 +1102,75 @@ export type ArrowVendorOfferingMappingRequest = {
1101
1102
  */
1102
1103
  is_active?: boolean;
1103
1104
  };
1105
+ export type ArticleCodeUpdateApplyRequest = {
1106
+ /**
1107
+ * Substring to search for in article codes.
1108
+ */
1109
+ search: string;
1110
+ /**
1111
+ * Replacement string.
1112
+ */
1113
+ replace?: string;
1114
+ /**
1115
+ * Filter by offering category UUID.
1116
+ */
1117
+ offering_category_uuid?: string;
1118
+ /**
1119
+ * Filter by service provider (customer) UUID.
1120
+ */
1121
+ offering_customer_uuid?: string;
1122
+ /**
1123
+ * Filter by offering state.
1124
+ */
1125
+ offering_state?: OfferingState;
1126
+ /**
1127
+ * Filter by offering name (case-insensitive substring match).
1128
+ */
1129
+ offering_name?: string;
1130
+ /**
1131
+ * UUIDs of components to update (from preview results).
1132
+ */
1133
+ component_uuids: Array<string>;
1134
+ };
1135
+ export type ArticleCodeUpdateApplyResponse = {
1136
+ updated_count: number;
1137
+ };
1138
+ export type ArticleCodeUpdatePreviewItem = {
1139
+ component_uuid: string;
1140
+ component_type: string;
1141
+ component_name: string;
1142
+ offering_uuid: string;
1143
+ offering_name: string;
1144
+ offering_customer_name: string;
1145
+ old_article_code: string;
1146
+ new_article_code: string;
1147
+ };
1148
+ export type ArticleCodeUpdatePreviewRequest = {
1149
+ /**
1150
+ * Substring to search for in article codes.
1151
+ */
1152
+ search: string;
1153
+ /**
1154
+ * Replacement string.
1155
+ */
1156
+ replace?: string;
1157
+ /**
1158
+ * Filter by offering category UUID.
1159
+ */
1160
+ offering_category_uuid?: string;
1161
+ /**
1162
+ * Filter by service provider (customer) UUID.
1163
+ */
1164
+ offering_customer_uuid?: string;
1165
+ /**
1166
+ * Filter by offering state.
1167
+ */
1168
+ offering_state?: OfferingState;
1169
+ /**
1170
+ * Filter by offering name (case-insensitive substring match).
1171
+ */
1172
+ offering_name?: string;
1173
+ };
1104
1174
  export type AssignmentBatch = {
1105
1175
  readonly url: string;
1106
1176
  readonly uuid: string;
@@ -1273,6 +1343,12 @@ export type AssignmentItem = {
1273
1343
  * Number of times this proposal has been reassigned.
1274
1344
  */
1275
1345
  readonly reassign_count: number;
1346
+ /**
1347
+ * Reason for manager override of COI block.
1348
+ */
1349
+ readonly override_reason: string;
1350
+ readonly overridden_by_name: string;
1351
+ readonly overridden_at: string | null;
1276
1352
  readonly created: string;
1277
1353
  };
1278
1354
  export type AssignmentItemDeclineRequest = {
@@ -1437,12 +1513,57 @@ export type AttachmentRequest = {
1437
1513
  issue: string;
1438
1514
  file: Blob | File;
1439
1515
  };
1516
+ export type Attribute = {
1517
+ readonly url: string;
1518
+ readonly uuid: string;
1519
+ key: string;
1520
+ readonly created: string;
1521
+ title: string;
1522
+ section: string;
1523
+ readonly section_title: string;
1524
+ type: AttributeTypeEnum;
1525
+ /**
1526
+ * A value must be provided for the attribute.
1527
+ */
1528
+ required?: boolean;
1529
+ default?: unknown;
1530
+ };
1531
+ export type AttributeOption = {
1532
+ readonly url: string;
1533
+ readonly uuid: string;
1534
+ readonly id: number;
1535
+ key: string;
1536
+ title: string;
1537
+ attribute: string;
1538
+ readonly attribute_title: string;
1539
+ /**
1540
+ * Return True if this option is the default for its attribute.
1541
+ */
1542
+ readonly is_default: boolean;
1543
+ };
1544
+ export type AttributeOptionRequest = {
1545
+ key: string;
1546
+ title: string;
1547
+ attribute: string;
1548
+ };
1549
+ export type AttributeRequest = {
1550
+ key: string;
1551
+ title: string;
1552
+ section: string;
1553
+ type: AttributeTypeEnum;
1554
+ /**
1555
+ * A value must be provided for the attribute.
1556
+ */
1557
+ required?: boolean;
1558
+ default?: unknown;
1559
+ };
1440
1560
  export type AttributeSourceDetail = {
1441
1561
  source: string;
1442
1562
  timestamp: string;
1443
1563
  age_days: number;
1444
1564
  is_stale: boolean;
1445
1565
  };
1566
+ export type AttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
1446
1567
  export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
1447
1568
  export type AuthResult = {
1448
1569
  readonly uuid: string;
@@ -2329,7 +2450,11 @@ export type BookingResource = {
2329
2450
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
2330
2451
  */
2331
2452
  readonly project_end_date?: string | null;
2332
- readonly project_end_date_requested_by?: string;
2453
+ /**
2454
+ * Effective project end date including grace period. After this date, resources will be terminated.
2455
+ */
2456
+ readonly project_effective_end_date?: string | null;
2457
+ readonly project_end_date_requested_by?: string | null;
2333
2458
  readonly customer_uuid?: string;
2334
2459
  readonly customer_name?: string;
2335
2460
  readonly offering_slug?: string;
@@ -2764,6 +2889,25 @@ export type CallManagingOrganisationStat = {
2764
2889
  readonly calls_closing_in_one_week: number;
2765
2890
  readonly offering_requests_pending: number;
2766
2891
  };
2892
+ export type CallPerformanceStat = {
2893
+ readonly call_uuid: string;
2894
+ readonly call_name: string;
2895
+ readonly managing_organization_name: string;
2896
+ readonly state: string;
2897
+ readonly total_proposals: number;
2898
+ readonly proposals_draft: number;
2899
+ readonly proposals_submitted: number;
2900
+ readonly proposals_in_review: number;
2901
+ readonly proposals_accepted: number;
2902
+ readonly proposals_rejected: number;
2903
+ readonly proposals_canceled: number;
2904
+ readonly acceptance_rate: number;
2905
+ readonly total_reviews: number;
2906
+ readonly reviews_completed: number;
2907
+ readonly average_score: number | null;
2908
+ readonly active_rounds: number;
2909
+ readonly last_submission_date: string | null;
2910
+ };
2767
2911
  export type CallResourceTemplate = {
2768
2912
  readonly uuid?: string;
2769
2913
  readonly url?: string;
@@ -2838,7 +2982,7 @@ export type CallReviewerPool = {
2838
2982
  */
2839
2983
  expertise_match_score?: number | null;
2840
2984
  readonly invited_by_name: string;
2841
- readonly invitation_token: string;
2985
+ readonly invitation_link: string | null;
2842
2986
  readonly invitation_expires_at: string | null;
2843
2987
  readonly created: string;
2844
2988
  /**
@@ -2867,6 +3011,12 @@ export type CallReviewerPool = {
2867
3011
  * Count reviews in 'submitted' state.
2868
3012
  */
2869
3013
  readonly reviews_completed: number;
3014
+ /**
3015
+ * Reason for manager override of invitation status.
3016
+ */
3017
+ readonly override_reason: string;
3018
+ readonly overridden_by_name: string;
3019
+ readonly overridden_at: string | null;
2870
3020
  };
2871
3021
  export type CallReviewerPoolUpdate = {
2872
3022
  /**
@@ -3488,6 +3638,10 @@ export type ChatResponse = {
3488
3638
  * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3489
3639
  */
3490
3640
  projects?: Array<unknown>;
3641
+ /**
3642
+ * Available offering options [{uuid, name}]. Present when status='offering_form'.
3643
+ */
3644
+ offerings?: Array<unknown>;
3491
3645
  };
3492
3646
  export type ChatSession = {
3493
3647
  readonly uuid?: string;
@@ -4122,6 +4276,8 @@ export type ConstanceSettings = {
4122
4276
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4123
4277
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4124
4278
  MARKETPLACE_LANDING_PAGE?: string;
4279
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4280
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4125
4281
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4126
4282
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4127
4283
  TELEMETRY_URL?: string;
@@ -4298,17 +4454,20 @@ export type ConstanceSettings = {
4298
4454
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4299
4455
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4300
4456
  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;
4457
+ AI_ASSISTANT_ENABLED?: boolean;
4458
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4459
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4460
+ AI_ASSISTANT_API_URL?: string;
4461
+ AI_ASSISTANT_API_TOKEN?: string;
4462
+ AI_ASSISTANT_MODEL?: string;
4463
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4464
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4465
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4466
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4467
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4468
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4469
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4470
+ AI_ASSISTANT_NAME?: string;
4312
4471
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4313
4472
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4314
4473
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4347,6 +4506,7 @@ export type ConstanceSettings = {
4347
4506
  ENABLE_PROJECT_DIGEST?: boolean;
4348
4507
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4349
4508
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4509
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4350
4510
  };
4351
4511
  export type ConstanceSettingsRequest = {
4352
4512
  SITE_NAME?: string;
@@ -4367,6 +4527,8 @@ export type ConstanceSettingsRequest = {
4367
4527
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4368
4528
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4369
4529
  MARKETPLACE_LANDING_PAGE?: string;
4530
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4531
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4370
4532
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4371
4533
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4372
4534
  TELEMETRY_URL?: string;
@@ -4543,17 +4705,20 @@ export type ConstanceSettingsRequest = {
4543
4705
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4544
4706
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4545
4707
  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;
4708
+ AI_ASSISTANT_ENABLED?: boolean;
4709
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4710
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4711
+ AI_ASSISTANT_API_URL?: string;
4712
+ AI_ASSISTANT_API_TOKEN?: string;
4713
+ AI_ASSISTANT_MODEL?: string;
4714
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4715
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4716
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4717
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4718
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4719
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4720
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4721
+ AI_ASSISTANT_NAME?: string;
4557
4722
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4558
4723
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4559
4724
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4592,6 +4757,7 @@ export type ConstanceSettingsRequest = {
4592
4757
  ENABLE_PROJECT_DIGEST?: boolean;
4593
4758
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4594
4759
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4760
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4595
4761
  };
4596
4762
  export type ConsumptionStatisticsResponse = {
4597
4763
  total_records: number;
@@ -5192,6 +5358,7 @@ export type CustomerComponentUsagePolicy = {
5192
5358
  * Fields for saving actions extra data. Keys are name of actions.
5193
5359
  */
5194
5360
  options?: unknown;
5361
+ readonly affected_resources_count: number;
5195
5362
  component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
5196
5363
  };
5197
5364
  export type CustomerComponentUsagePolicyRequest = {
@@ -5294,6 +5461,7 @@ export type CustomerEstimatedCostPolicy = {
5294
5461
  * Fields for saving actions extra data. Keys are name of actions.
5295
5462
  */
5296
5463
  options?: unknown;
5464
+ readonly affected_resources_count: number;
5297
5465
  limit_cost: number;
5298
5466
  period?: PolicyPeriodEnum;
5299
5467
  readonly period_name: string;
@@ -6240,6 +6408,7 @@ export type DryRunRequest = {
6240
6408
  };
6241
6409
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6242
6410
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
6411
+ 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
6412
  export type EligibilityCheck = {
6244
6413
  is_eligible: boolean;
6245
6414
  restrictions: Array<string>;
@@ -6311,7 +6480,7 @@ export type EventMetadataResponse = {
6311
6480
  * Map of event group keys to lists of event type enums from EventType
6312
6481
  */
6313
6482
  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'>;
6483
+ [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' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_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' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6315
6484
  };
6316
6485
  };
6317
6486
  export type EventStats = {
@@ -6390,7 +6559,7 @@ export type EventSubscriptionRequest = {
6390
6559
  */
6391
6560
  observable_objects?: unknown;
6392
6561
  };
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';
6562
+ export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_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' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6394
6563
  export type ExecuteActionErrorResponse = {
6395
6564
  error: string;
6396
6565
  };
@@ -6871,6 +7040,12 @@ export type FlavorResponse = {
6871
7040
  */
6872
7041
  disk: number;
6873
7042
  };
7043
+ export type ForceAcceptPoolRequest = {
7044
+ override_reason: string;
7045
+ };
7046
+ export type ForceUnblockRequest = {
7047
+ override_reason: string;
7048
+ };
6874
7049
  export type FreeipaProfile = {
6875
7050
  readonly uuid: string;
6876
7051
  /**
@@ -7237,6 +7412,9 @@ export type IsdUserCount = {
7237
7412
  stale_user_count: number;
7238
7413
  oldest_sync: string | null;
7239
7414
  };
7415
+ export type IdentityBridgeAllowedFields = {
7416
+ allowed_fields: Array<string>;
7417
+ };
7240
7418
  export type IdentityBridgeRemoveRequest = {
7241
7419
  /**
7242
7420
  * CUID / username of the user to remove from the ISD.
@@ -8424,6 +8602,8 @@ export type Logout = {
8424
8602
  */
8425
8603
  readonly logout_url: string;
8426
8604
  };
8605
+ export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
8606
+ export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
8427
8607
  export type MaintenanceActionResponse = {
8428
8608
  /**
8429
8609
  * Response message describing the action result
@@ -9857,7 +10037,9 @@ export type Message = {
9857
10037
  readonly uuid: string;
9858
10038
  readonly thread: string;
9859
10039
  role: MessageRoleEnum;
9860
- content: string;
10040
+ content?: string;
10041
+ readonly content_display: string;
10042
+ readonly tool_calls: unknown;
9861
10043
  readonly sequence_index: number;
9862
10044
  readonly replaces: string | null;
9863
10045
  readonly created: string;
@@ -10049,9 +10231,10 @@ export type NestedAgentServiceRequest = {
10049
10231
  statistics?: unknown;
10050
10232
  };
10051
10233
  export type NestedAttribute = {
10234
+ readonly uuid?: string;
10052
10235
  key?: string;
10053
10236
  title?: string;
10054
- type?: NestedAttributeTypeEnum;
10237
+ type?: AttributeTypeEnum;
10055
10238
  options?: Array<NestedAttributeOption>;
10056
10239
  /**
10057
10240
  * A value must be provided for the attribute.
@@ -10060,8 +10243,13 @@ export type NestedAttribute = {
10060
10243
  default?: unknown;
10061
10244
  };
10062
10245
  export type NestedAttributeOption = {
10246
+ readonly uuid?: string;
10063
10247
  key?: string;
10064
10248
  title?: string;
10249
+ /**
10250
+ * Return True if this option is the default for its attribute.
10251
+ */
10252
+ readonly is_default?: boolean;
10065
10253
  };
10066
10254
  export type NestedAttributeOptionRequest = {
10067
10255
  key: string;
@@ -10070,7 +10258,7 @@ export type NestedAttributeOptionRequest = {
10070
10258
  export type NestedAttributeRequest = {
10071
10259
  key: string;
10072
10260
  title: string;
10073
- type: NestedAttributeTypeEnum;
10261
+ type: AttributeTypeEnum;
10074
10262
  options: Array<NestedAttributeOptionRequest>;
10075
10263
  /**
10076
10264
  * A value must be provided for the attribute.
@@ -10078,7 +10266,6 @@ export type NestedAttributeRequest = {
10078
10266
  required?: boolean;
10079
10267
  default?: unknown;
10080
10268
  };
10081
- export type NestedAttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
10082
10269
  export type NestedCampaign = {
10083
10270
  readonly uuid?: string;
10084
10271
  name?: string;
@@ -10958,6 +11145,22 @@ export type OfferingComponent = {
10958
11145
  overage_component?: string | null;
10959
11146
  min_prepaid_duration?: number | null;
10960
11147
  max_prepaid_duration?: number | null;
11148
+ /**
11149
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11150
+ */
11151
+ prepaid_duration_step?: number | null;
11152
+ /**
11153
+ * Minimum number of months allowed for a renewal.
11154
+ */
11155
+ min_renewal_duration?: number | null;
11156
+ /**
11157
+ * Maximum number of months allowed for a renewal.
11158
+ */
11159
+ max_renewal_duration?: number | null;
11160
+ /**
11161
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11162
+ */
11163
+ renewal_duration_step?: number | null;
10961
11164
  };
10962
11165
  export type OfferingComponentLimitRequest = {
10963
11166
  /**
@@ -11004,6 +11207,22 @@ export type OfferingComponentRequest = {
11004
11207
  overage_component?: string | null;
11005
11208
  min_prepaid_duration?: number | null;
11006
11209
  max_prepaid_duration?: number | null;
11210
+ /**
11211
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11212
+ */
11213
+ prepaid_duration_step?: number | null;
11214
+ /**
11215
+ * Minimum number of months allowed for a renewal.
11216
+ */
11217
+ min_renewal_duration?: number | null;
11218
+ /**
11219
+ * Maximum number of months allowed for a renewal.
11220
+ */
11221
+ max_renewal_duration?: number | null;
11222
+ /**
11223
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11224
+ */
11225
+ renewal_duration_step?: number | null;
11007
11226
  };
11008
11227
  export type OfferingComponentStat = {
11009
11228
  readonly period: string;
@@ -11127,6 +11346,7 @@ export type OfferingEstimatedCostPolicy = {
11127
11346
  * Fields for saving actions extra data. Keys are name of actions.
11128
11347
  */
11129
11348
  options?: unknown;
11349
+ readonly affected_resources_count: number;
11130
11350
  limit_cost: number;
11131
11351
  period?: PolicyPeriodEnum;
11132
11352
  readonly period_name: string;
@@ -11876,6 +12096,7 @@ export type OfferingUsagePolicy = {
11876
12096
  * Fields for saving actions extra data. Keys are name of actions.
11877
12097
  */
11878
12098
  options?: unknown;
12099
+ readonly affected_resources_count: number;
11879
12100
  organization_groups?: Array<string>;
11880
12101
  /**
11881
12102
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -15012,6 +15233,22 @@ export type PatchedAssignmentItemRequest = {
15012
15233
  */
15013
15234
  decline_reason?: string;
15014
15235
  };
15236
+ export type PatchedAttributeOptionRequest = {
15237
+ key?: string;
15238
+ title?: string;
15239
+ attribute?: string;
15240
+ };
15241
+ export type PatchedAttributeRequest = {
15242
+ key?: string;
15243
+ title?: string;
15244
+ section?: string;
15245
+ type?: AttributeTypeEnum;
15246
+ /**
15247
+ * A value must be provided for the attribute.
15248
+ */
15249
+ required?: boolean;
15250
+ default?: unknown;
15251
+ };
15015
15252
  export type PatchedAwsInstanceRequest = {
15016
15253
  name?: string;
15017
15254
  description?: string;
@@ -17280,6 +17517,10 @@ export type Project = {
17280
17517
  */
17281
17518
  end_date?: string | null;
17282
17519
  readonly end_date_requested_by?: string | null;
17520
+ /**
17521
+ * Timestamp of the last end_date change.
17522
+ */
17523
+ readonly end_date_updated_at?: string | null;
17283
17524
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17284
17525
  /**
17285
17526
  * Human-readable label for the OECD FOS 2007 classification code
@@ -17312,6 +17553,14 @@ export type Project = {
17312
17553
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17313
17554
  */
17314
17555
  grace_period_days?: number | null;
17556
+ /**
17557
+ * Effective end date including grace period. After this date, project resources will be terminated.
17558
+ */
17559
+ readonly effective_end_date?: string | null;
17560
+ /**
17561
+ * True if the project is past its end date but still within the grace period.
17562
+ */
17563
+ readonly is_in_grace_period?: boolean;
17315
17564
  user_email_patterns?: unknown;
17316
17565
  user_affiliations?: unknown;
17317
17566
  /**
@@ -17372,6 +17621,16 @@ export type ProjectClassificationSummary = {
17372
17621
  */
17373
17622
  industry_projects: number;
17374
17623
  };
17624
+ export type ProjectCreationTrend = {
17625
+ /**
17626
+ * Month in YYYY-MM format
17627
+ */
17628
+ month: string;
17629
+ /**
17630
+ * Number of items created
17631
+ */
17632
+ count: number;
17633
+ };
17375
17634
  export type ProjectCredit = {
17376
17635
  readonly uuid: string;
17377
17636
  readonly url: string;
@@ -17462,6 +17721,61 @@ export type ProjectDigestPreviewResponse = {
17462
17721
  html_body: string;
17463
17722
  text_body: string;
17464
17723
  };
17724
+ export type ProjectEndDateChangeRequest = {
17725
+ readonly url: string;
17726
+ readonly uuid: string;
17727
+ readonly state: string;
17728
+ project: string;
17729
+ readonly project_uuid: string;
17730
+ readonly project_name: string;
17731
+ readonly customer_uuid: string;
17732
+ readonly customer_name: string;
17733
+ /**
17734
+ * The requested new end date for the project
17735
+ */
17736
+ requested_end_date: string;
17737
+ /**
17738
+ * Optional comment from the requester
17739
+ */
17740
+ comment?: string | null;
17741
+ readonly created: string;
17742
+ readonly created_by_uuid: string | null;
17743
+ readonly created_by_full_name: string | null;
17744
+ /**
17745
+ * Timestamp when the review was completed
17746
+ */
17747
+ readonly reviewed_at: string | null;
17748
+ readonly reviewed_by_uuid: string | null;
17749
+ readonly reviewed_by_full_name: string | null;
17750
+ /**
17751
+ * Optional comment provided during review
17752
+ */
17753
+ review_comment?: string | null;
17754
+ };
17755
+ export type ProjectEndDateChangeRequestCreate = {
17756
+ project: string;
17757
+ /**
17758
+ * The requested new end date for the project
17759
+ */
17760
+ requested_end_date: string;
17761
+ /**
17762
+ * Optional comment from the requester
17763
+ */
17764
+ comment?: string | null;
17765
+ readonly uuid: string;
17766
+ readonly state: string;
17767
+ };
17768
+ export type ProjectEndDateChangeRequestCreateRequest = {
17769
+ project: string;
17770
+ /**
17771
+ * The requested new end date for the project
17772
+ */
17773
+ requested_end_date: string;
17774
+ /**
17775
+ * Optional comment from the requester
17776
+ */
17777
+ comment?: string | null;
17778
+ };
17465
17779
  export type ProjectEstimatedCostPolicy = {
17466
17780
  readonly uuid: string;
17467
17781
  readonly url: string;
@@ -17478,6 +17792,7 @@ export type ProjectEstimatedCostPolicy = {
17478
17792
  * Fields for saving actions extra data. Keys are name of actions.
17479
17793
  */
17480
17794
  options?: unknown;
17795
+ readonly affected_resources_count: number;
17481
17796
  limit_cost: number;
17482
17797
  period?: PolicyPeriodEnum;
17483
17798
  readonly period_name: string;
@@ -20539,7 +20854,11 @@ export type Resource = {
20539
20854
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
20540
20855
  */
20541
20856
  readonly project_end_date?: string | null;
20542
- readonly project_end_date_requested_by?: string;
20857
+ /**
20858
+ * Effective project end date including grace period. After this date, resources will be terminated.
20859
+ */
20860
+ readonly project_effective_end_date?: string | null;
20861
+ readonly project_end_date_requested_by?: string | null;
20543
20862
  readonly customer_uuid?: string;
20544
20863
  readonly customer_name?: string;
20545
20864
  readonly offering_slug?: string;
@@ -20613,15 +20932,40 @@ export type ResourceBackendIdRequest = {
20613
20932
  export type ResourceBackendMetadataRequest = {
20614
20933
  backend_metadata: unknown;
20615
20934
  };
20935
+ export type ResourceDemandStat = {
20936
+ readonly offering_uuid: string;
20937
+ readonly offering_name: string;
20938
+ readonly offering_type: string;
20939
+ readonly provider_name: string;
20940
+ readonly proposal_count: number;
20941
+ readonly request_count: number;
20942
+ readonly approved_count: number;
20943
+ readonly pending_count: number;
20944
+ readonly total_requested_limits: {
20945
+ [key: string]: number;
20946
+ };
20947
+ readonly total_approved_limits: {
20948
+ [key: string]: number;
20949
+ };
20950
+ };
20616
20951
  export type ResourceDownscaledRequest = {
20617
20952
  downscaled?: boolean;
20618
20953
  };
20954
+ export type ResourceEffectiveIdRequest = {
20955
+ effective_id?: string;
20956
+ };
20619
20957
  export type ResourceEndDateByProviderRequest = {
20620
20958
  /**
20621
20959
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
20622
20960
  */
20623
20961
  end_date?: string | null;
20624
20962
  };
20963
+ export type ResourceEndDateRequest = {
20964
+ /**
20965
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
20966
+ */
20967
+ end_date?: string | null;
20968
+ };
20625
20969
  export type ResourceKeycloakScopesRequest = {
20626
20970
  /**
20627
20971
  * Pre-configured scope options for this resource.
@@ -21046,6 +21390,19 @@ export type ReviewCommentRequest = {
21046
21390
  */
21047
21391
  comment?: string;
21048
21392
  };
21393
+ export type ReviewProgressStat = {
21394
+ readonly reviewer_uuid: string;
21395
+ readonly reviewer_name: string;
21396
+ readonly reviewer_email: string;
21397
+ readonly total_assigned: number;
21398
+ readonly pending: number;
21399
+ readonly in_progress: number;
21400
+ readonly completed: number;
21401
+ readonly declined: number;
21402
+ readonly average_score: number | null;
21403
+ readonly average_review_time_days: number | null;
21404
+ readonly completion_rate: number;
21405
+ };
21049
21406
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
21050
21407
  export type ReviewSubmitRequest = {
21051
21408
  summary_score?: number;
@@ -22715,6 +23072,7 @@ export type SlurmPeriodicUsagePolicy = {
22715
23072
  * Fields for saving actions extra data. Keys are name of actions.
22716
23073
  */
22717
23074
  options?: unknown;
23075
+ readonly affected_resources_count: number;
22718
23076
  organization_groups?: Array<string>;
22719
23077
  /**
22720
23078
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -23759,6 +24117,24 @@ export type TopQueue = {
23759
24117
  */
23760
24118
  readonly consumers: number;
23761
24119
  };
24120
+ export type TopServiceProviderByResources = {
24121
+ /**
24122
+ * UUID of the service provider
24123
+ */
24124
+ customer_uuid: string;
24125
+ /**
24126
+ * Name of the service provider
24127
+ */
24128
+ customer_name: string;
24129
+ /**
24130
+ * Number of active resources
24131
+ */
24132
+ resources_count: number;
24133
+ /**
24134
+ * Number of distinct projects
24135
+ */
24136
+ projects_count: number;
24137
+ };
23762
24138
  export type TotalCustomerCost = {
23763
24139
  readonly total: number;
23764
24140
  readonly price: number;
@@ -23869,6 +24245,22 @@ export type UpdateOfferingComponentRequest = {
23869
24245
  overage_component?: string | null;
23870
24246
  min_prepaid_duration?: number | null;
23871
24247
  max_prepaid_duration?: number | null;
24248
+ /**
24249
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
24250
+ */
24251
+ prepaid_duration_step?: number | null;
24252
+ /**
24253
+ * Minimum number of months allowed for a renewal.
24254
+ */
24255
+ min_renewal_duration?: number | null;
24256
+ /**
24257
+ * Maximum number of months allowed for a renewal.
24258
+ */
24259
+ max_renewal_duration?: number | null;
24260
+ /**
24261
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
24262
+ */
24263
+ renewal_duration_step?: number | null;
23872
24264
  };
23873
24265
  export type UpdatePoolMember = {
23874
24266
  name?: string;
@@ -24234,6 +24626,16 @@ export type UserLanguageCount = {
24234
24626
  language: string;
24235
24627
  count: number;
24236
24628
  };
24629
+ export type UserNationalityStats = {
24630
+ /**
24631
+ * Nationality code
24632
+ */
24633
+ nationality: string;
24634
+ /**
24635
+ * Number of users
24636
+ */
24637
+ count: number;
24638
+ };
24237
24639
  export type UserOfferingConsent = {
24238
24640
  readonly uuid: string;
24239
24641
  readonly user_uuid: string;
@@ -24382,6 +24784,16 @@ export type UserRequest = {
24382
24784
  */
24383
24785
  managed_isds?: unknown;
24384
24786
  };
24787
+ export type UserResidenceCountryStats = {
24788
+ /**
24789
+ * Country of residence code
24790
+ */
24791
+ country_of_residence: string;
24792
+ /**
24793
+ * Number of users
24794
+ */
24795
+ count: number;
24796
+ };
24385
24797
  export type UserRoleCreateRequest = {
24386
24798
  role: string;
24387
24799
  user: string;
@@ -24977,6 +25389,10 @@ export type OpenStackCreateInstancePortRequest = {
24977
25389
  */
24978
25390
  subnet?: string | null;
24979
25391
  port?: string;
25392
+ /**
25393
+ * If True, security groups and rules will be applied to this port
25394
+ */
25395
+ port_security_enabled?: boolean;
24980
25396
  };
24981
25397
  export type OpenStackDataVolumeRequest = {
24982
25398
  size: number;
@@ -26016,6 +26432,8 @@ export type ConstanceSettingsRequestForm = {
26016
26432
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26017
26433
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26018
26434
  MARKETPLACE_LANDING_PAGE?: string;
26435
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26436
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26019
26437
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26020
26438
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26021
26439
  TELEMETRY_URL?: string;
@@ -26192,17 +26610,20 @@ export type ConstanceSettingsRequestForm = {
26192
26610
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26193
26611
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26194
26612
  ONBOARDING_BREG_API_URL?: string;
26195
- LLM_CHAT_ENABLED?: boolean;
26196
- LLM_INFERENCES_BACKEND_TYPE?: string;
26197
- LLM_INFERENCES_API_URL?: string;
26198
- LLM_INFERENCES_API_TOKEN?: string;
26199
- LLM_INFERENCES_MODEL?: string;
26200
- LLM_TOKEN_LIMIT_DAILY?: number;
26201
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26202
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26203
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26204
- LLM_CHAT_HISTORY_LIMIT?: number;
26205
- LLM_INJECTION_ALLOWLIST?: string;
26613
+ AI_ASSISTANT_ENABLED?: boolean;
26614
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26615
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26616
+ AI_ASSISTANT_API_URL?: string;
26617
+ AI_ASSISTANT_API_TOKEN?: string;
26618
+ AI_ASSISTANT_MODEL?: string;
26619
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26620
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26621
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26622
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26623
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26624
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26625
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26626
+ AI_ASSISTANT_NAME?: string;
26206
26627
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26207
26628
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26208
26629
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26241,6 +26662,7 @@ export type ConstanceSettingsRequestForm = {
26241
26662
  ENABLE_PROJECT_DIGEST?: boolean;
26242
26663
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26243
26664
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26665
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26244
26666
  };
26245
26667
  export type ConstanceSettingsRequestMultipart = {
26246
26668
  SITE_NAME?: string;
@@ -26261,6 +26683,8 @@ export type ConstanceSettingsRequestMultipart = {
26261
26683
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26262
26684
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26263
26685
  MARKETPLACE_LANDING_PAGE?: string;
26686
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26687
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26264
26688
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26265
26689
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26266
26690
  TELEMETRY_URL?: string;
@@ -26437,17 +26861,20 @@ export type ConstanceSettingsRequestMultipart = {
26437
26861
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26438
26862
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26439
26863
  ONBOARDING_BREG_API_URL?: string;
26440
- LLM_CHAT_ENABLED?: boolean;
26441
- LLM_INFERENCES_BACKEND_TYPE?: string;
26442
- LLM_INFERENCES_API_URL?: string;
26443
- LLM_INFERENCES_API_TOKEN?: string;
26444
- LLM_INFERENCES_MODEL?: string;
26445
- LLM_TOKEN_LIMIT_DAILY?: number;
26446
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26447
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26448
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26449
- LLM_CHAT_HISTORY_LIMIT?: number;
26450
- LLM_INJECTION_ALLOWLIST?: string;
26864
+ AI_ASSISTANT_ENABLED?: boolean;
26865
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26866
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26867
+ AI_ASSISTANT_API_URL?: string;
26868
+ AI_ASSISTANT_API_TOKEN?: string;
26869
+ AI_ASSISTANT_MODEL?: string;
26870
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26871
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26872
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26873
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26874
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26875
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26876
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26877
+ AI_ASSISTANT_NAME?: string;
26451
26878
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26452
26879
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26453
26880
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26486,6 +26913,7 @@ export type ConstanceSettingsRequestMultipart = {
26486
26913
  ENABLE_PROJECT_DIGEST?: boolean;
26487
26914
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26488
26915
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26916
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26489
26917
  };
26490
26918
  export type PaymentRequestForm = {
26491
26919
  profile: string;
@@ -26912,7 +27340,7 @@ export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' |
26912
27340
  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';
26913
27341
  export type BackendResourceReqOEnum = '-created' | 'created';
26914
27342
  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';
26915
- 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';
27343
+ 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';
26916
27344
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
26917
27345
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
26918
27346
  export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
@@ -26947,7 +27375,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
26947
27375
  export type SshKeyOEnum = '-name' | 'name';
26948
27376
  export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
26949
27377
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
26950
- 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';
27378
+ 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';
26951
27379
  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';
26952
27380
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
26953
27381
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
@@ -26971,7 +27399,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
26971
27399
  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';
26972
27400
  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';
26973
27401
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
26974
- 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';
27402
+ 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';
26975
27403
  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';
26976
27404
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26977
27405
  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';
@@ -26987,7 +27415,7 @@ export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-
26987
27415
  export type AgentServiceStateEnum = 1 | 2 | 3;
26988
27416
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
26989
27417
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
26990
- export type SoftwareTargetOEnum = '-cpu_family' | '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_family' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
27418
+ export type SoftwareTargetOEnum = '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
26991
27419
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
26992
27420
  export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
26993
27421
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
@@ -28777,6 +29205,18 @@ export type AssignmentItemsDeclineResponses = {
28777
29205
  200: AssignmentItemResponse;
28778
29206
  };
28779
29207
  export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
29208
+ export type AssignmentItemsForceUnblockData = {
29209
+ body: ForceUnblockRequest;
29210
+ path: {
29211
+ uuid: string;
29212
+ };
29213
+ query?: never;
29214
+ url: '/api/assignment-items/{uuid}/force-unblock/';
29215
+ };
29216
+ export type AssignmentItemsForceUnblockResponses = {
29217
+ 200: AssignmentItem;
29218
+ };
29219
+ export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
28780
29220
  export type AssignmentItemsReassignData = {
28781
29221
  body: ReassignItemRequest;
28782
29222
  path: {
@@ -31366,6 +31806,10 @@ export type BackendResourceRequestsListData = {
31366
31806
  * Created after
31367
31807
  */
31368
31808
  created?: string;
31809
+ /**
31810
+ * Created before
31811
+ */
31812
+ created_before?: string;
31369
31813
  /**
31370
31814
  * Modified after
31371
31815
  */
@@ -31374,6 +31818,10 @@ export type BackendResourceRequestsListData = {
31374
31818
  * Modified after
31375
31819
  */
31376
31820
  modified?: string;
31821
+ /**
31822
+ * Modified before
31823
+ */
31824
+ modified_before?: string;
31377
31825
  /**
31378
31826
  * Ordering
31379
31827
  *
@@ -31417,6 +31865,10 @@ export type BackendResourceRequestsCountData = {
31417
31865
  * Created after
31418
31866
  */
31419
31867
  created?: string;
31868
+ /**
31869
+ * Created before
31870
+ */
31871
+ created_before?: string;
31420
31872
  /**
31421
31873
  * Modified after
31422
31874
  */
@@ -31425,6 +31877,10 @@ export type BackendResourceRequestsCountData = {
31425
31877
  * Modified after
31426
31878
  */
31427
31879
  modified?: string;
31880
+ /**
31881
+ * Modified before
31882
+ */
31883
+ modified_before?: string;
31428
31884
  /**
31429
31885
  * Ordering
31430
31886
  *
@@ -31538,10 +31994,18 @@ export type BackendResourcesListData = {
31538
31994
  * Created after
31539
31995
  */
31540
31996
  created?: string;
31997
+ /**
31998
+ * Created before
31999
+ */
32000
+ created_before?: string;
31541
32001
  /**
31542
32002
  * Modified after
31543
32003
  */
31544
32004
  modified?: string;
32005
+ /**
32006
+ * Modified before
32007
+ */
32008
+ modified_before?: string;
31545
32009
  /**
31546
32010
  * Name
31547
32011
  */
@@ -31591,10 +32055,18 @@ export type BackendResourcesCountData = {
31591
32055
  * Created after
31592
32056
  */
31593
32057
  created?: string;
32058
+ /**
32059
+ * Created before
32060
+ */
32061
+ created_before?: string;
31594
32062
  /**
31595
32063
  * Modified after
31596
32064
  */
31597
32065
  modified?: string;
32066
+ /**
32067
+ * Modified before
32068
+ */
32069
+ modified_before?: string;
31598
32070
  /**
31599
32071
  * Name
31600
32072
  */
@@ -31817,6 +32289,10 @@ export type BookingResourcesListData = {
31817
32289
  * Created after
31818
32290
  */
31819
32291
  created?: string;
32292
+ /**
32293
+ * Created before
32294
+ */
32295
+ created_before?: string;
31820
32296
  /**
31821
32297
  * Customer URL
31822
32298
  */
@@ -31854,6 +32330,10 @@ export type BookingResourcesListData = {
31854
32330
  * Modified after
31855
32331
  */
31856
32332
  modified?: string;
32333
+ /**
32334
+ * Modified before
32335
+ */
32336
+ modified_before?: string;
31857
32337
  /**
31858
32338
  * Name
31859
32339
  */
@@ -31994,6 +32474,10 @@ export type BookingResourcesCountData = {
31994
32474
  * Created after
31995
32475
  */
31996
32476
  created?: string;
32477
+ /**
32478
+ * Created before
32479
+ */
32480
+ created_before?: string;
31997
32481
  /**
31998
32482
  * Customer URL
31999
32483
  */
@@ -32030,6 +32514,10 @@ export type BookingResourcesCountData = {
32030
32514
  * Modified after
32031
32515
  */
32032
32516
  modified?: string;
32517
+ /**
32518
+ * Modified before
32519
+ */
32520
+ modified_before?: string;
32033
32521
  /**
32034
32522
  * Name
32035
32523
  */
@@ -32805,6 +33293,180 @@ export type CallManagingOrganisationsUpdateUserResponses = {
32805
33293
  200: UserRoleExpirationTime;
32806
33294
  };
32807
33295
  export type CallManagingOrganisationsUpdateUserResponse = CallManagingOrganisationsUpdateUserResponses[keyof CallManagingOrganisationsUpdateUserResponses];
33296
+ export type CallManagingOrganisationsGlobalStatsPerformanceListData = {
33297
+ body?: never;
33298
+ path?: never;
33299
+ query?: {
33300
+ customer?: string;
33301
+ customer_keyword?: string;
33302
+ customer_uuid?: string;
33303
+ /**
33304
+ * Ordering
33305
+ *
33306
+ *
33307
+ */
33308
+ o?: Array<CallManagingOrganisationOEnum>;
33309
+ /**
33310
+ * A page number within the paginated result set.
33311
+ */
33312
+ page?: number;
33313
+ /**
33314
+ * Number of results to return per page.
33315
+ */
33316
+ page_size?: number;
33317
+ };
33318
+ url: '/api/call-managing-organisations/global_stats_performance/';
33319
+ };
33320
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponses = {
33321
+ 200: Array<CallPerformanceStat>;
33322
+ };
33323
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponse = CallManagingOrganisationsGlobalStatsPerformanceListResponses[keyof CallManagingOrganisationsGlobalStatsPerformanceListResponses];
33324
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountData = {
33325
+ body?: never;
33326
+ path?: never;
33327
+ query?: {
33328
+ customer?: string;
33329
+ customer_keyword?: string;
33330
+ customer_uuid?: string;
33331
+ /**
33332
+ * Ordering
33333
+ *
33334
+ *
33335
+ */
33336
+ o?: Array<CallManagingOrganisationOEnum>;
33337
+ /**
33338
+ * A page number within the paginated result set.
33339
+ */
33340
+ page?: number;
33341
+ /**
33342
+ * Number of results to return per page.
33343
+ */
33344
+ page_size?: number;
33345
+ };
33346
+ url: '/api/call-managing-organisations/global_stats_performance/';
33347
+ };
33348
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountResponses = {
33349
+ /**
33350
+ * No response body
33351
+ */
33352
+ 200: unknown;
33353
+ };
33354
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListData = {
33355
+ body?: never;
33356
+ path?: never;
33357
+ query?: {
33358
+ customer?: string;
33359
+ customer_keyword?: string;
33360
+ customer_uuid?: string;
33361
+ /**
33362
+ * Ordering
33363
+ *
33364
+ *
33365
+ */
33366
+ o?: Array<CallManagingOrganisationOEnum>;
33367
+ /**
33368
+ * A page number within the paginated result set.
33369
+ */
33370
+ page?: number;
33371
+ /**
33372
+ * Number of results to return per page.
33373
+ */
33374
+ page_size?: number;
33375
+ };
33376
+ url: '/api/call-managing-organisations/global_stats_resource_demand/';
33377
+ };
33378
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponses = {
33379
+ 200: Array<ResourceDemandStat>;
33380
+ };
33381
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponse = CallManagingOrganisationsGlobalStatsResourceDemandListResponses[keyof CallManagingOrganisationsGlobalStatsResourceDemandListResponses];
33382
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountData = {
33383
+ body?: never;
33384
+ path?: never;
33385
+ query?: {
33386
+ customer?: string;
33387
+ customer_keyword?: string;
33388
+ customer_uuid?: string;
33389
+ /**
33390
+ * Ordering
33391
+ *
33392
+ *
33393
+ */
33394
+ o?: Array<CallManagingOrganisationOEnum>;
33395
+ /**
33396
+ * A page number within the paginated result set.
33397
+ */
33398
+ page?: number;
33399
+ /**
33400
+ * Number of results to return per page.
33401
+ */
33402
+ page_size?: number;
33403
+ };
33404
+ url: '/api/call-managing-organisations/global_stats_resource_demand/';
33405
+ };
33406
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountResponses = {
33407
+ /**
33408
+ * No response body
33409
+ */
33410
+ 200: unknown;
33411
+ };
33412
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListData = {
33413
+ body?: never;
33414
+ path?: never;
33415
+ query?: {
33416
+ customer?: string;
33417
+ customer_keyword?: string;
33418
+ customer_uuid?: string;
33419
+ /**
33420
+ * Ordering
33421
+ *
33422
+ *
33423
+ */
33424
+ o?: Array<CallManagingOrganisationOEnum>;
33425
+ /**
33426
+ * A page number within the paginated result set.
33427
+ */
33428
+ page?: number;
33429
+ /**
33430
+ * Number of results to return per page.
33431
+ */
33432
+ page_size?: number;
33433
+ };
33434
+ url: '/api/call-managing-organisations/global_stats_review_progress/';
33435
+ };
33436
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponses = {
33437
+ 200: Array<ReviewProgressStat>;
33438
+ };
33439
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponse = CallManagingOrganisationsGlobalStatsReviewProgressListResponses[keyof CallManagingOrganisationsGlobalStatsReviewProgressListResponses];
33440
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountData = {
33441
+ body?: never;
33442
+ path?: never;
33443
+ query?: {
33444
+ customer?: string;
33445
+ customer_keyword?: string;
33446
+ customer_uuid?: string;
33447
+ /**
33448
+ * Ordering
33449
+ *
33450
+ *
33451
+ */
33452
+ o?: Array<CallManagingOrganisationOEnum>;
33453
+ /**
33454
+ * A page number within the paginated result set.
33455
+ */
33456
+ page?: number;
33457
+ /**
33458
+ * Number of results to return per page.
33459
+ */
33460
+ page_size?: number;
33461
+ };
33462
+ url: '/api/call-managing-organisations/global_stats_review_progress/';
33463
+ };
33464
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountResponses = {
33465
+ /**
33466
+ * No response body
33467
+ */
33468
+ 200: unknown;
33469
+ };
32808
33470
  export type CallProposalProjectRoleMappingsListData = {
32809
33471
  body?: never;
32810
33472
  path?: never;
@@ -33020,6 +33682,18 @@ export type CallReviewerPoolsDeclineResponses = {
33020
33682
  200: InvitationDeclineResponse;
33021
33683
  };
33022
33684
  export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
33685
+ export type CallReviewerPoolsForceAcceptData = {
33686
+ body: ForceAcceptPoolRequest;
33687
+ path: {
33688
+ uuid: string;
33689
+ };
33690
+ query?: never;
33691
+ url: '/api/call-reviewer-pools/{uuid}/force-accept/';
33692
+ };
33693
+ export type CallReviewerPoolsForceAcceptResponses = {
33694
+ 200: CallReviewerPool;
33695
+ };
33696
+ export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
33023
33697
  export type CallRoundsListData = {
33024
33698
  body?: never;
33025
33699
  path?: never;
@@ -33250,6 +33924,20 @@ export type ChatThreadsArchiveResponses = {
33250
33924
  204: void;
33251
33925
  };
33252
33926
  export type ChatThreadsArchiveResponse = ChatThreadsArchiveResponses[keyof ChatThreadsArchiveResponses];
33927
+ export type ChatThreadsCancelData = {
33928
+ body?: ThreadSessionRequest;
33929
+ path: {
33930
+ uuid: string;
33931
+ };
33932
+ query?: never;
33933
+ url: '/api/chat-threads/{uuid}/cancel/';
33934
+ };
33935
+ export type ChatThreadsCancelResponses = {
33936
+ /**
33937
+ * No response body
33938
+ */
33939
+ 200: unknown;
33940
+ };
33253
33941
  export type ChatThreadsUnarchiveData = {
33254
33942
  body?: ThreadSessionRequest;
33255
33943
  path: {
@@ -37771,6 +38459,16 @@ export type IdentityBridgeResponses = {
37771
38459
  200: IdentityBridgeResult;
37772
38460
  };
37773
38461
  export type IdentityBridgeResponse = IdentityBridgeResponses[keyof IdentityBridgeResponses];
38462
+ export type IdentityBridgeAllowedFieldsRetrieveData = {
38463
+ body?: never;
38464
+ path?: never;
38465
+ query?: never;
38466
+ url: '/api/identity-bridge/allowed-fields/';
38467
+ };
38468
+ export type IdentityBridgeAllowedFieldsRetrieveResponses = {
38469
+ 200: IdentityBridgeAllowedFields;
38470
+ };
38471
+ export type IdentityBridgeAllowedFieldsRetrieveResponse = IdentityBridgeAllowedFieldsRetrieveResponses[keyof IdentityBridgeAllowedFieldsRetrieveResponses];
37774
38472
  export type IdentityBridgeRemoveData = {
37775
38473
  body: IdentityBridgeRemoveRequest;
37776
38474
  path?: never;
@@ -38796,6 +39494,10 @@ export type KeysListData = {
38796
39494
  * Created after
38797
39495
  */
38798
39496
  created?: string;
39497
+ /**
39498
+ * Created before
39499
+ */
39500
+ created_before?: string;
38799
39501
  field?: Array<SshKeyFieldEnum>;
38800
39502
  fingerprint_md5?: string;
38801
39503
  fingerprint_sha256?: string;
@@ -38805,6 +39507,10 @@ export type KeysListData = {
38805
39507
  * Modified after
38806
39508
  */
38807
39509
  modified?: string;
39510
+ /**
39511
+ * Modified before
39512
+ */
39513
+ modified_before?: string;
38808
39514
  /**
38809
39515
  * Name
38810
39516
  */
@@ -38850,6 +39556,10 @@ export type KeysCountData = {
38850
39556
  * Created after
38851
39557
  */
38852
39558
  created?: string;
39559
+ /**
39560
+ * Created before
39561
+ */
39562
+ created_before?: string;
38853
39563
  fingerprint_md5?: string;
38854
39564
  fingerprint_sha256?: string;
38855
39565
  fingerprint_sha512?: string;
@@ -38858,6 +39568,10 @@ export type KeysCountData = {
38858
39568
  * Modified after
38859
39569
  */
38860
39570
  modified?: string;
39571
+ /**
39572
+ * Modified before
39573
+ */
39574
+ modified_before?: string;
38861
39575
  /**
38862
39576
  * Name
38863
39577
  */
@@ -38962,6 +39676,10 @@ export type KeysHistoryListData = {
38962
39676
  * Modified after
38963
39677
  */
38964
39678
  modified?: string;
39679
+ /**
39680
+ * Modified before
39681
+ */
39682
+ modified_before?: string;
38965
39683
  /**
38966
39684
  * Name
38967
39685
  */
@@ -39867,6 +40585,253 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
39867
40585
  200: RancherNode;
39868
40586
  };
39869
40587
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
40588
+ export type MarketplaceArticleCodeUpdateApplyData = {
40589
+ body: ArticleCodeUpdateApplyRequest;
40590
+ path?: never;
40591
+ query?: never;
40592
+ url: '/api/marketplace-article-code-update/apply/';
40593
+ };
40594
+ export type MarketplaceArticleCodeUpdateApplyResponses = {
40595
+ 200: ArticleCodeUpdateApplyResponse;
40596
+ };
40597
+ export type MarketplaceArticleCodeUpdateApplyResponse = MarketplaceArticleCodeUpdateApplyResponses[keyof MarketplaceArticleCodeUpdateApplyResponses];
40598
+ export type MarketplaceArticleCodeUpdatePreviewData = {
40599
+ body: ArticleCodeUpdatePreviewRequest;
40600
+ path?: never;
40601
+ query?: {
40602
+ /**
40603
+ * A page number within the paginated result set.
40604
+ */
40605
+ page?: number;
40606
+ /**
40607
+ * Number of results to return per page.
40608
+ */
40609
+ page_size?: number;
40610
+ };
40611
+ url: '/api/marketplace-article-code-update/preview/';
40612
+ };
40613
+ export type MarketplaceArticleCodeUpdatePreviewResponses = {
40614
+ 200: Array<ArticleCodeUpdatePreviewItem>;
40615
+ };
40616
+ export type MarketplaceArticleCodeUpdatePreviewResponse = MarketplaceArticleCodeUpdatePreviewResponses[keyof MarketplaceArticleCodeUpdatePreviewResponses];
40617
+ export type MarketplaceAttributeOptionsListData = {
40618
+ body?: never;
40619
+ path?: never;
40620
+ query?: {
40621
+ /**
40622
+ * Attribute URL
40623
+ */
40624
+ attribute?: string;
40625
+ /**
40626
+ * A page number within the paginated result set.
40627
+ */
40628
+ page?: number;
40629
+ /**
40630
+ * Number of results to return per page.
40631
+ */
40632
+ page_size?: number;
40633
+ };
40634
+ url: '/api/marketplace-attribute-options/';
40635
+ };
40636
+ export type MarketplaceAttributeOptionsListResponses = {
40637
+ 200: Array<AttributeOption>;
40638
+ };
40639
+ export type MarketplaceAttributeOptionsListResponse = MarketplaceAttributeOptionsListResponses[keyof MarketplaceAttributeOptionsListResponses];
40640
+ export type MarketplaceAttributeOptionsCountData = {
40641
+ body?: never;
40642
+ path?: never;
40643
+ query?: {
40644
+ /**
40645
+ * Attribute URL
40646
+ */
40647
+ attribute?: string;
40648
+ /**
40649
+ * A page number within the paginated result set.
40650
+ */
40651
+ page?: number;
40652
+ /**
40653
+ * Number of results to return per page.
40654
+ */
40655
+ page_size?: number;
40656
+ };
40657
+ url: '/api/marketplace-attribute-options/';
40658
+ };
40659
+ export type MarketplaceAttributeOptionsCountResponses = {
40660
+ /**
40661
+ * No response body
40662
+ */
40663
+ 200: unknown;
40664
+ };
40665
+ export type MarketplaceAttributeOptionsCreateData = {
40666
+ body: AttributeOptionRequest;
40667
+ path?: never;
40668
+ query?: never;
40669
+ url: '/api/marketplace-attribute-options/';
40670
+ };
40671
+ export type MarketplaceAttributeOptionsCreateResponses = {
40672
+ 201: AttributeOption;
40673
+ };
40674
+ export type MarketplaceAttributeOptionsCreateResponse = MarketplaceAttributeOptionsCreateResponses[keyof MarketplaceAttributeOptionsCreateResponses];
40675
+ export type MarketplaceAttributeOptionsDestroyData = {
40676
+ body?: never;
40677
+ path: {
40678
+ uuid: string;
40679
+ };
40680
+ query?: never;
40681
+ url: '/api/marketplace-attribute-options/{uuid}/';
40682
+ };
40683
+ export type MarketplaceAttributeOptionsDestroyResponses = {
40684
+ /**
40685
+ * No response body
40686
+ */
40687
+ 204: void;
40688
+ };
40689
+ export type MarketplaceAttributeOptionsDestroyResponse = MarketplaceAttributeOptionsDestroyResponses[keyof MarketplaceAttributeOptionsDestroyResponses];
40690
+ export type MarketplaceAttributeOptionsRetrieveData = {
40691
+ body?: never;
40692
+ path: {
40693
+ uuid: string;
40694
+ };
40695
+ query?: never;
40696
+ url: '/api/marketplace-attribute-options/{uuid}/';
40697
+ };
40698
+ export type MarketplaceAttributeOptionsRetrieveResponses = {
40699
+ 200: AttributeOption;
40700
+ };
40701
+ export type MarketplaceAttributeOptionsRetrieveResponse = MarketplaceAttributeOptionsRetrieveResponses[keyof MarketplaceAttributeOptionsRetrieveResponses];
40702
+ export type MarketplaceAttributeOptionsPartialUpdateData = {
40703
+ body?: PatchedAttributeOptionRequest;
40704
+ path: {
40705
+ uuid: string;
40706
+ };
40707
+ query?: never;
40708
+ url: '/api/marketplace-attribute-options/{uuid}/';
40709
+ };
40710
+ export type MarketplaceAttributeOptionsPartialUpdateResponses = {
40711
+ 200: AttributeOption;
40712
+ };
40713
+ export type MarketplaceAttributeOptionsPartialUpdateResponse = MarketplaceAttributeOptionsPartialUpdateResponses[keyof MarketplaceAttributeOptionsPartialUpdateResponses];
40714
+ export type MarketplaceAttributeOptionsUpdateData = {
40715
+ body: AttributeOptionRequest;
40716
+ path: {
40717
+ uuid: string;
40718
+ };
40719
+ query?: never;
40720
+ url: '/api/marketplace-attribute-options/{uuid}/';
40721
+ };
40722
+ export type MarketplaceAttributeOptionsUpdateResponses = {
40723
+ 200: AttributeOption;
40724
+ };
40725
+ export type MarketplaceAttributeOptionsUpdateResponse = MarketplaceAttributeOptionsUpdateResponses[keyof MarketplaceAttributeOptionsUpdateResponses];
40726
+ export type MarketplaceAttributesListData = {
40727
+ body?: never;
40728
+ path?: never;
40729
+ query?: {
40730
+ /**
40731
+ * A page number within the paginated result set.
40732
+ */
40733
+ page?: number;
40734
+ /**
40735
+ * Number of results to return per page.
40736
+ */
40737
+ page_size?: number;
40738
+ /**
40739
+ * Section URL
40740
+ */
40741
+ section?: string;
40742
+ };
40743
+ url: '/api/marketplace-attributes/';
40744
+ };
40745
+ export type MarketplaceAttributesListResponses = {
40746
+ 200: Array<Attribute>;
40747
+ };
40748
+ export type MarketplaceAttributesListResponse = MarketplaceAttributesListResponses[keyof MarketplaceAttributesListResponses];
40749
+ export type MarketplaceAttributesCountData = {
40750
+ body?: never;
40751
+ path?: never;
40752
+ query?: {
40753
+ /**
40754
+ * A page number within the paginated result set.
40755
+ */
40756
+ page?: number;
40757
+ /**
40758
+ * Number of results to return per page.
40759
+ */
40760
+ page_size?: number;
40761
+ /**
40762
+ * Section URL
40763
+ */
40764
+ section?: string;
40765
+ };
40766
+ url: '/api/marketplace-attributes/';
40767
+ };
40768
+ export type MarketplaceAttributesCountResponses = {
40769
+ /**
40770
+ * No response body
40771
+ */
40772
+ 200: unknown;
40773
+ };
40774
+ export type MarketplaceAttributesCreateData = {
40775
+ body: AttributeRequest;
40776
+ path?: never;
40777
+ query?: never;
40778
+ url: '/api/marketplace-attributes/';
40779
+ };
40780
+ export type MarketplaceAttributesCreateResponses = {
40781
+ 201: Attribute;
40782
+ };
40783
+ export type MarketplaceAttributesCreateResponse = MarketplaceAttributesCreateResponses[keyof MarketplaceAttributesCreateResponses];
40784
+ export type MarketplaceAttributesDestroyData = {
40785
+ body?: never;
40786
+ path: {
40787
+ uuid: string;
40788
+ };
40789
+ query?: never;
40790
+ url: '/api/marketplace-attributes/{uuid}/';
40791
+ };
40792
+ export type MarketplaceAttributesDestroyResponses = {
40793
+ /**
40794
+ * No response body
40795
+ */
40796
+ 204: void;
40797
+ };
40798
+ export type MarketplaceAttributesDestroyResponse = MarketplaceAttributesDestroyResponses[keyof MarketplaceAttributesDestroyResponses];
40799
+ export type MarketplaceAttributesRetrieveData = {
40800
+ body?: never;
40801
+ path: {
40802
+ uuid: string;
40803
+ };
40804
+ query?: never;
40805
+ url: '/api/marketplace-attributes/{uuid}/';
40806
+ };
40807
+ export type MarketplaceAttributesRetrieveResponses = {
40808
+ 200: Attribute;
40809
+ };
40810
+ export type MarketplaceAttributesRetrieveResponse = MarketplaceAttributesRetrieveResponses[keyof MarketplaceAttributesRetrieveResponses];
40811
+ export type MarketplaceAttributesPartialUpdateData = {
40812
+ body?: PatchedAttributeRequest;
40813
+ path: {
40814
+ uuid: string;
40815
+ };
40816
+ query?: never;
40817
+ url: '/api/marketplace-attributes/{uuid}/';
40818
+ };
40819
+ export type MarketplaceAttributesPartialUpdateResponses = {
40820
+ 200: Attribute;
40821
+ };
40822
+ export type MarketplaceAttributesPartialUpdateResponse = MarketplaceAttributesPartialUpdateResponses[keyof MarketplaceAttributesPartialUpdateResponses];
40823
+ export type MarketplaceAttributesUpdateData = {
40824
+ body: AttributeRequest;
40825
+ path: {
40826
+ uuid: string;
40827
+ };
40828
+ query?: never;
40829
+ url: '/api/marketplace-attributes/{uuid}/';
40830
+ };
40831
+ export type MarketplaceAttributesUpdateResponses = {
40832
+ 200: Attribute;
40833
+ };
40834
+ export type MarketplaceAttributesUpdateResponse = MarketplaceAttributesUpdateResponses[keyof MarketplaceAttributesUpdateResponses];
39870
40835
  export type MarketplaceBookingsListData = {
39871
40836
  body?: never;
39872
40837
  path: {
@@ -41085,6 +42050,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
41085
42050
  200: CourseAccount;
41086
42051
  };
41087
42052
  export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
42053
+ export type MarketplaceCourseAccountsRetryData = {
42054
+ body?: never;
42055
+ path: {
42056
+ uuid: string;
42057
+ };
42058
+ query?: never;
42059
+ url: '/api/marketplace-course-accounts/{uuid}/retry/';
42060
+ };
42061
+ export type MarketplaceCourseAccountsRetryResponses = {
42062
+ 202: CourseAccount;
42063
+ };
42064
+ export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
41088
42065
  export type MarketplaceCourseAccountsCreateBulkData = {
41089
42066
  body: CourseAccountsBulkCreateRequest;
41090
42067
  path?: never;
@@ -42046,6 +43023,10 @@ export type MarketplaceOfferingPermissionsListData = {
42046
43023
  * Created after
42047
43024
  */
42048
43025
  created?: string;
43026
+ /**
43027
+ * Created before
43028
+ */
43029
+ created_before?: string;
42049
43030
  customer?: string;
42050
43031
  /**
42051
43032
  * User full name contains
@@ -42055,6 +43036,10 @@ export type MarketplaceOfferingPermissionsListData = {
42055
43036
  * Modified after
42056
43037
  */
42057
43038
  modified?: string;
43039
+ /**
43040
+ * Modified before
43041
+ */
43042
+ modified_before?: string;
42058
43043
  native_name?: string;
42059
43044
  /**
42060
43045
  * Ordering
@@ -42113,6 +43098,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42113
43098
  * Created after
42114
43099
  */
42115
43100
  created?: string;
43101
+ /**
43102
+ * Created before
43103
+ */
43104
+ created_before?: string;
42116
43105
  customer?: string;
42117
43106
  /**
42118
43107
  * User full name contains
@@ -42122,6 +43111,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42122
43111
  * Modified after
42123
43112
  */
42124
43113
  modified?: string;
43114
+ /**
43115
+ * Modified before
43116
+ */
43117
+ modified_before?: string;
42125
43118
  native_name?: string;
42126
43119
  /**
42127
43120
  * Ordering
@@ -42182,6 +43175,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42182
43175
  * Created after
42183
43176
  */
42184
43177
  created?: string;
43178
+ /**
43179
+ * Created before
43180
+ */
43181
+ created_before?: string;
42185
43182
  customer?: string;
42186
43183
  /**
42187
43184
  * User full name contains
@@ -42191,6 +43188,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42191
43188
  * Modified after
42192
43189
  */
42193
43190
  modified?: string;
43191
+ /**
43192
+ * Modified before
43193
+ */
43194
+ modified_before?: string;
42194
43195
  native_name?: string;
42195
43196
  /**
42196
43197
  * Ordering
@@ -42249,6 +43250,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42249
43250
  * Created after
42250
43251
  */
42251
43252
  created?: string;
43253
+ /**
43254
+ * Created before
43255
+ */
43256
+ created_before?: string;
42252
43257
  customer?: string;
42253
43258
  /**
42254
43259
  * User full name contains
@@ -42258,6 +43263,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42258
43263
  * Modified after
42259
43264
  */
42260
43265
  modified?: string;
43266
+ /**
43267
+ * Modified before
43268
+ */
43269
+ modified_before?: string;
42261
43270
  native_name?: string;
42262
43271
  /**
42263
43272
  * Ordering
@@ -42700,11 +43709,19 @@ export type MarketplaceOfferingUserChecklistCompletionsListData = {
42700
43709
  * Created after
42701
43710
  */
42702
43711
  created?: string;
43712
+ /**
43713
+ * Created before
43714
+ */
43715
+ created_before?: string;
42703
43716
  is_completed?: boolean;
42704
43717
  /**
42705
43718
  * Modified after
42706
43719
  */
42707
43720
  modified?: string;
43721
+ /**
43722
+ * Modified before
43723
+ */
43724
+ modified_before?: string;
42708
43725
  /**
42709
43726
  * Ordering
42710
43727
  *
@@ -42742,11 +43759,19 @@ export type MarketplaceOfferingUserChecklistCompletionsCountData = {
42742
43759
  * Created after
42743
43760
  */
42744
43761
  created?: string;
43762
+ /**
43763
+ * Created before
43764
+ */
43765
+ created_before?: string;
42745
43766
  is_completed?: boolean;
42746
43767
  /**
42747
43768
  * Modified after
42748
43769
  */
42749
43770
  modified?: string;
43771
+ /**
43772
+ * Modified before
43773
+ */
43774
+ modified_before?: string;
42750
43775
  /**
42751
43776
  * Ordering
42752
43777
  *
@@ -42922,6 +43947,10 @@ export type MarketplaceOfferingUsersListData = {
42922
43947
  * Created after
42923
43948
  */
42924
43949
  created?: string;
43950
+ /**
43951
+ * Created before
43952
+ */
43953
+ created_before?: string;
42925
43954
  field?: Array<OfferingUserFieldEnum>;
42926
43955
  /**
42927
43956
  * User has complete profile for the offering
@@ -42939,6 +43968,10 @@ export type MarketplaceOfferingUsersListData = {
42939
43968
  * Modified after
42940
43969
  */
42941
43970
  modified?: string;
43971
+ /**
43972
+ * Modified before
43973
+ */
43974
+ modified_before?: string;
42942
43975
  /**
42943
43976
  * Ordering
42944
43977
  *
@@ -43000,6 +44033,10 @@ export type MarketplaceOfferingUsersCountData = {
43000
44033
  * Created after
43001
44034
  */
43002
44035
  created?: string;
44036
+ /**
44037
+ * Created before
44038
+ */
44039
+ created_before?: string;
43003
44040
  /**
43004
44041
  * User has complete profile for the offering
43005
44042
  */
@@ -43016,6 +44053,10 @@ export type MarketplaceOfferingUsersCountData = {
43016
44053
  * Modified after
43017
44054
  */
43018
44055
  modified?: string;
44056
+ /**
44057
+ * Modified before
44058
+ */
44059
+ modified_before?: string;
43019
44060
  /**
43020
44061
  * Ordering
43021
44062
  *
@@ -43501,6 +44542,10 @@ export type MarketplaceOrdersListData = {
43501
44542
  * Created after
43502
44543
  */
43503
44544
  created?: string;
44545
+ /**
44546
+ * Created before
44547
+ */
44548
+ created_before?: string;
43504
44549
  /**
43505
44550
  * Customer UUID
43506
44551
  */
@@ -43510,6 +44555,10 @@ export type MarketplaceOrdersListData = {
43510
44555
  * Modified after
43511
44556
  */
43512
44557
  modified?: string;
44558
+ /**
44559
+ * Modified before
44560
+ */
44561
+ modified_before?: string;
43513
44562
  /**
43514
44563
  * Ordering
43515
44564
  *
@@ -43605,6 +44654,10 @@ export type MarketplaceOrdersCountData = {
43605
44654
  * Created after
43606
44655
  */
43607
44656
  created?: string;
44657
+ /**
44658
+ * Created before
44659
+ */
44660
+ created_before?: string;
43608
44661
  /**
43609
44662
  * Customer UUID
43610
44663
  */
@@ -43613,6 +44666,10 @@ export type MarketplaceOrdersCountData = {
43613
44666
  * Modified after
43614
44667
  */
43615
44668
  modified?: string;
44669
+ /**
44670
+ * Modified before
44671
+ */
44672
+ modified_before?: string;
43616
44673
  /**
43617
44674
  * Ordering
43618
44675
  *
@@ -43846,6 +44903,20 @@ export type MarketplaceOrdersRejectByProviderResponses = {
43846
44903
  */
43847
44904
  200: unknown;
43848
44905
  };
44906
+ export type MarketplaceOrdersRetryData = {
44907
+ body?: never;
44908
+ path: {
44909
+ uuid: string;
44910
+ };
44911
+ query?: never;
44912
+ url: '/api/marketplace-orders/{uuid}/retry/';
44913
+ };
44914
+ export type MarketplaceOrdersRetryResponses = {
44915
+ /**
44916
+ * No response body
44917
+ */
44918
+ 200: unknown;
44919
+ };
43849
44920
  export type MarketplaceOrdersSetBackendIdData = {
43850
44921
  body: OrderBackendIdRequest;
43851
44922
  path: {
@@ -44419,6 +45490,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListData = {
44419
45490
  page_size?: number;
44420
45491
  project?: string;
44421
45492
  project_uuid?: string;
45493
+ query?: string;
44422
45494
  scope?: string;
44423
45495
  scope_uuid?: string;
44424
45496
  };
@@ -44444,6 +45516,7 @@ export type MarketplaceProjectEstimatedCostPoliciesCountData = {
44444
45516
  page_size?: number;
44445
45517
  project?: string;
44446
45518
  project_uuid?: string;
45519
+ query?: string;
44447
45520
  scope?: string;
44448
45521
  scope_uuid?: string;
44449
45522
  };
@@ -44818,6 +45891,10 @@ export type MarketplaceProviderOfferingsListData = {
44818
45891
  * Created after
44819
45892
  */
44820
45893
  created?: string;
45894
+ /**
45895
+ * Created before
45896
+ */
45897
+ created_before?: string;
44821
45898
  /**
44822
45899
  * Customer URL
44823
45900
  */
@@ -44851,6 +45928,10 @@ export type MarketplaceProviderOfferingsListData = {
44851
45928
  * Modified after
44852
45929
  */
44853
45930
  modified?: string;
45931
+ /**
45932
+ * Modified before
45933
+ */
45934
+ modified_before?: string;
44854
45935
  /**
44855
45936
  * Name
44856
45937
  */
@@ -44987,6 +46068,10 @@ export type MarketplaceProviderOfferingsCountData = {
44987
46068
  * Created after
44988
46069
  */
44989
46070
  created?: string;
46071
+ /**
46072
+ * Created before
46073
+ */
46074
+ created_before?: string;
44990
46075
  /**
44991
46076
  * Customer URL
44992
46077
  */
@@ -45019,6 +46104,10 @@ export type MarketplaceProviderOfferingsCountData = {
45019
46104
  * Modified after
45020
46105
  */
45021
46106
  modified?: string;
46107
+ /**
46108
+ * Modified before
46109
+ */
46110
+ modified_before?: string;
45022
46111
  /**
45023
46112
  * Name
45024
46113
  */
@@ -45288,6 +46377,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45288
46377
  * Created after
45289
46378
  */
45290
46379
  created?: string;
46380
+ /**
46381
+ * Created before
46382
+ */
46383
+ created_before?: string;
45291
46384
  /**
45292
46385
  * Customer URL
45293
46386
  */
@@ -45324,6 +46417,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45324
46417
  * Modified after
45325
46418
  */
45326
46419
  modified?: string;
46420
+ /**
46421
+ * Modified before
46422
+ */
46423
+ modified_before?: string;
45327
46424
  /**
45328
46425
  * Name
45329
46426
  */
@@ -45467,6 +46564,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45467
46564
  * Created after
45468
46565
  */
45469
46566
  created?: string;
46567
+ /**
46568
+ * Created before
46569
+ */
46570
+ created_before?: string;
45470
46571
  /**
45471
46572
  * Customer URL
45472
46573
  */
@@ -45503,6 +46604,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45503
46604
  * Modified after
45504
46605
  */
45505
46606
  modified?: string;
46607
+ /**
46608
+ * Modified before
46609
+ */
46610
+ modified_before?: string;
45506
46611
  /**
45507
46612
  * Name
45508
46613
  */
@@ -45659,6 +46764,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45659
46764
  * Created after
45660
46765
  */
45661
46766
  created?: string;
46767
+ /**
46768
+ * Created before
46769
+ */
46770
+ created_before?: string;
45662
46771
  /**
45663
46772
  * Customer URL
45664
46773
  */
@@ -45692,6 +46801,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45692
46801
  * Modified after
45693
46802
  */
45694
46803
  modified?: string;
46804
+ /**
46805
+ * Modified before
46806
+ */
46807
+ modified_before?: string;
45695
46808
  /**
45696
46809
  * Name
45697
46810
  */
@@ -46010,6 +47123,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
46010
47123
  * Modified after
46011
47124
  */
46012
47125
  modified?: string;
47126
+ /**
47127
+ * Modified before
47128
+ */
47129
+ modified_before?: string;
46013
47130
  /**
46014
47131
  * Name
46015
47132
  */
@@ -46207,6 +47324,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46207
47324
  * Created after
46208
47325
  */
46209
47326
  created?: string;
47327
+ /**
47328
+ * Created before
47329
+ */
47330
+ created_before?: string;
46210
47331
  /**
46211
47332
  * Customer URL
46212
47333
  */
@@ -46239,6 +47360,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46239
47360
  * Modified after
46240
47361
  */
46241
47362
  modified?: string;
47363
+ /**
47364
+ * Modified before
47365
+ */
47366
+ modified_before?: string;
46242
47367
  /**
46243
47368
  * Name
46244
47369
  */
@@ -46399,6 +47524,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46399
47524
  * Created after
46400
47525
  */
46401
47526
  created?: string;
47527
+ /**
47528
+ * Created before
47529
+ */
47530
+ created_before?: string;
46402
47531
  /**
46403
47532
  * Customer URL
46404
47533
  */
@@ -46431,6 +47560,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46431
47560
  * Modified after
46432
47561
  */
46433
47562
  modified?: string;
47563
+ /**
47564
+ * Modified before
47565
+ */
47566
+ modified_before?: string;
46434
47567
  /**
46435
47568
  * Name
46436
47569
  */
@@ -46591,6 +47724,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46591
47724
  * Created after
46592
47725
  */
46593
47726
  created?: string;
47727
+ /**
47728
+ * Created before
47729
+ */
47730
+ created_before?: string;
46594
47731
  /**
46595
47732
  * Customer URL
46596
47733
  */
@@ -46623,6 +47760,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46623
47760
  * Modified after
46624
47761
  */
46625
47762
  modified?: string;
47763
+ /**
47764
+ * Modified before
47765
+ */
47766
+ modified_before?: string;
46626
47767
  /**
46627
47768
  * Name
46628
47769
  */
@@ -47326,6 +48467,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47326
48467
  * Created after
47327
48468
  */
47328
48469
  created?: string;
48470
+ /**
48471
+ * Created before
48472
+ */
48473
+ created_before?: string;
47329
48474
  /**
47330
48475
  * Customer URL
47331
48476
  */
@@ -47354,6 +48499,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47354
48499
  * Modified after
47355
48500
  */
47356
48501
  modified?: string;
48502
+ /**
48503
+ * Modified before
48504
+ */
48505
+ modified_before?: string;
47357
48506
  /**
47358
48507
  * Name
47359
48508
  */
@@ -47490,6 +48639,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47490
48639
  * Created after
47491
48640
  */
47492
48641
  created?: string;
48642
+ /**
48643
+ * Created before
48644
+ */
48645
+ created_before?: string;
47493
48646
  /**
47494
48647
  * Customer URL
47495
48648
  */
@@ -47518,6 +48671,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47518
48671
  * Modified after
47519
48672
  */
47520
48673
  modified?: string;
48674
+ /**
48675
+ * Modified before
48676
+ */
48677
+ modified_before?: string;
47521
48678
  /**
47522
48679
  * Name
47523
48680
  */
@@ -47653,6 +48810,10 @@ export type MarketplaceProviderResourcesListData = {
47653
48810
  * Created after
47654
48811
  */
47655
48812
  created?: string;
48813
+ /**
48814
+ * Created before
48815
+ */
48816
+ created_before?: string;
47656
48817
  /**
47657
48818
  * Customer URL
47658
48819
  */
@@ -47690,6 +48851,10 @@ export type MarketplaceProviderResourcesListData = {
47690
48851
  * Modified after
47691
48852
  */
47692
48853
  modified?: string;
48854
+ /**
48855
+ * Modified before
48856
+ */
48857
+ modified_before?: string;
47693
48858
  /**
47694
48859
  * Name
47695
48860
  */
@@ -47833,6 +48998,10 @@ export type MarketplaceProviderResourcesCountData = {
47833
48998
  * Created after
47834
48999
  */
47835
49000
  created?: string;
49001
+ /**
49002
+ * Created before
49003
+ */
49004
+ created_before?: string;
47836
49005
  /**
47837
49006
  * Customer URL
47838
49007
  */
@@ -47869,6 +49038,10 @@ export type MarketplaceProviderResourcesCountData = {
47869
49038
  * Modified after
47870
49039
  */
47871
49040
  modified?: string;
49041
+ /**
49042
+ * Modified before
49043
+ */
49044
+ modified_before?: string;
47872
49045
  /**
47873
49046
  * Name
47874
49047
  */
@@ -48128,6 +49301,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48128
49301
  * Modified after
48129
49302
  */
48130
49303
  modified?: string;
49304
+ /**
49305
+ * Modified before
49306
+ */
49307
+ modified_before?: string;
48131
49308
  /**
48132
49309
  * Name
48133
49310
  */
@@ -48431,6 +49608,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
48431
49608
  };
48432
49609
  };
48433
49610
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
49611
+ export type MarketplaceProviderResourcesSetEffectiveIdData = {
49612
+ body?: ResourceEffectiveIdRequest;
49613
+ path: {
49614
+ uuid: string;
49615
+ };
49616
+ query?: never;
49617
+ url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
49618
+ };
49619
+ export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
49620
+ 200: ResourceResponseStatus;
49621
+ };
49622
+ export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
49623
+ export type MarketplaceProviderResourcesSetEndDateData = {
49624
+ body?: ResourceEndDateRequest;
49625
+ path: {
49626
+ uuid: string;
49627
+ };
49628
+ query?: never;
49629
+ url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
49630
+ };
49631
+ export type MarketplaceProviderResourcesSetEndDateResponses = {
49632
+ /**
49633
+ * No response body
49634
+ */
49635
+ 200: unknown;
49636
+ };
48434
49637
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
48435
49638
  body?: ResourceEndDateByProviderRequest;
48436
49639
  path: {
@@ -48682,6 +49885,10 @@ export type MarketplacePublicOfferingsListData = {
48682
49885
  * Created after
48683
49886
  */
48684
49887
  created?: string;
49888
+ /**
49889
+ * Created before
49890
+ */
49891
+ created_before?: string;
48685
49892
  /**
48686
49893
  * Customer URL
48687
49894
  */
@@ -48711,6 +49918,10 @@ export type MarketplacePublicOfferingsListData = {
48711
49918
  * Modified after
48712
49919
  */
48713
49920
  modified?: string;
49921
+ /**
49922
+ * Modified before
49923
+ */
49924
+ modified_before?: string;
48714
49925
  /**
48715
49926
  * Name
48716
49927
  */
@@ -48847,6 +50058,10 @@ export type MarketplacePublicOfferingsCountData = {
48847
50058
  * Created after
48848
50059
  */
48849
50060
  created?: string;
50061
+ /**
50062
+ * Created before
50063
+ */
50064
+ created_before?: string;
48850
50065
  /**
48851
50066
  * Customer URL
48852
50067
  */
@@ -48875,6 +50090,10 @@ export type MarketplacePublicOfferingsCountData = {
48875
50090
  * Modified after
48876
50091
  */
48877
50092
  modified?: string;
50093
+ /**
50094
+ * Modified before
50095
+ */
50096
+ modified_before?: string;
48878
50097
  /**
48879
50098
  * Name
48880
50099
  */
@@ -49327,6 +50546,10 @@ export type MarketplaceResourcesListData = {
49327
50546
  * Created after
49328
50547
  */
49329
50548
  created?: string;
50549
+ /**
50550
+ * Created before
50551
+ */
50552
+ created_before?: string;
49330
50553
  /**
49331
50554
  * Customer URL
49332
50555
  */
@@ -49364,6 +50587,10 @@ export type MarketplaceResourcesListData = {
49364
50587
  * Modified after
49365
50588
  */
49366
50589
  modified?: string;
50590
+ /**
50591
+ * Modified before
50592
+ */
50593
+ modified_before?: string;
49367
50594
  /**
49368
50595
  * Name
49369
50596
  */
@@ -49507,6 +50734,10 @@ export type MarketplaceResourcesCountData = {
49507
50734
  * Created after
49508
50735
  */
49509
50736
  created?: string;
50737
+ /**
50738
+ * Created before
50739
+ */
50740
+ created_before?: string;
49510
50741
  /**
49511
50742
  * Customer URL
49512
50743
  */
@@ -49543,6 +50774,10 @@ export type MarketplaceResourcesCountData = {
49543
50774
  * Modified after
49544
50775
  */
49545
50776
  modified?: string;
50777
+ /**
50778
+ * Modified before
50779
+ */
50780
+ modified_before?: string;
49546
50781
  /**
49547
50782
  * Name
49548
50783
  */
@@ -49814,6 +51049,10 @@ export type MarketplaceResourcesHistoryListData = {
49814
51049
  * Modified after
49815
51050
  */
49816
51051
  modified?: string;
51052
+ /**
51053
+ * Modified before
51054
+ */
51055
+ modified_before?: string;
49817
51056
  /**
49818
51057
  * Name
49819
51058
  */
@@ -50075,6 +51314,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
50075
51314
  };
50076
51315
  };
50077
51316
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
51317
+ export type MarketplaceResourcesSetEndDateData = {
51318
+ body?: ResourceEndDateRequest;
51319
+ path: {
51320
+ uuid: string;
51321
+ };
51322
+ query?: never;
51323
+ url: '/api/marketplace-resources/{uuid}/set_end_date/';
51324
+ };
51325
+ export type MarketplaceResourcesSetEndDateResponses = {
51326
+ /**
51327
+ * No response body
51328
+ */
51329
+ 200: unknown;
51330
+ };
50078
51331
  export type MarketplaceResourcesSetEndDateByStaffData = {
50079
51332
  body?: ResourceEndDateByProviderRequest;
50080
51333
  path: {
@@ -50239,6 +51492,10 @@ export type MarketplaceRobotAccountsListData = {
50239
51492
  * Created after
50240
51493
  */
50241
51494
  created?: string;
51495
+ /**
51496
+ * Created before
51497
+ */
51498
+ created_before?: string;
50242
51499
  /**
50243
51500
  * Customer UUID
50244
51501
  */
@@ -50248,6 +51505,10 @@ export type MarketplaceRobotAccountsListData = {
50248
51505
  * Modified after
50249
51506
  */
50250
51507
  modified?: string;
51508
+ /**
51509
+ * Modified before
51510
+ */
51511
+ modified_before?: string;
50251
51512
  /**
50252
51513
  * A page number within the paginated result set.
50253
51514
  */
@@ -50306,6 +51567,10 @@ export type MarketplaceRobotAccountsCountData = {
50306
51567
  * Created after
50307
51568
  */
50308
51569
  created?: string;
51570
+ /**
51571
+ * Created before
51572
+ */
51573
+ created_before?: string;
50309
51574
  /**
50310
51575
  * Customer UUID
50311
51576
  */
@@ -50314,6 +51579,10 @@ export type MarketplaceRobotAccountsCountData = {
50314
51579
  * Modified after
50315
51580
  */
50316
51581
  modified?: string;
51582
+ /**
51583
+ * Modified before
51584
+ */
51585
+ modified_before?: string;
50317
51586
  /**
50318
51587
  * A page number within the paginated result set.
50319
51588
  */
@@ -51110,6 +52379,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51110
52379
  * Created after
51111
52380
  */
51112
52381
  created?: string;
52382
+ /**
52383
+ * Created before
52384
+ */
52385
+ created_before?: string;
51113
52386
  /**
51114
52387
  * Multiple values may be separated by commas.
51115
52388
  */
@@ -51139,6 +52412,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51139
52412
  * Modified after
51140
52413
  */
51141
52414
  modified?: string;
52415
+ /**
52416
+ * Modified before
52417
+ */
52418
+ modified_before?: string;
51142
52419
  /**
51143
52420
  * Name
51144
52421
  */
@@ -51260,6 +52537,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51260
52537
  * Created after
51261
52538
  */
51262
52539
  created?: string;
52540
+ /**
52541
+ * Created before
52542
+ */
52543
+ created_before?: string;
51263
52544
  field?: Array<SshKeyFieldEnum>;
51264
52545
  fingerprint_md5?: string;
51265
52546
  fingerprint_sha256?: string;
@@ -51269,6 +52550,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51269
52550
  * Modified after
51270
52551
  */
51271
52552
  modified?: string;
52553
+ /**
52554
+ * Modified before
52555
+ */
52556
+ modified_before?: string;
51272
52557
  /**
51273
52558
  * Name
51274
52559
  */
@@ -51341,6 +52626,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51341
52626
  * Created after
51342
52627
  */
51343
52628
  created?: string;
52629
+ /**
52630
+ * Created before
52631
+ */
52632
+ created_before?: string;
51344
52633
  /**
51345
52634
  * Customer URL
51346
52635
  */
@@ -51370,6 +52659,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51370
52659
  * Modified after
51371
52660
  */
51372
52661
  modified?: string;
52662
+ /**
52663
+ * Modified before
52664
+ */
52665
+ modified_before?: string;
51373
52666
  /**
51374
52667
  * Name
51375
52668
  */
@@ -51483,6 +52776,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51483
52776
  * Created after
51484
52777
  */
51485
52778
  created?: string;
52779
+ /**
52780
+ * Created before
52781
+ */
52782
+ created_before?: string;
51486
52783
  expiration_time?: string;
51487
52784
  field?: Array<ProjectPermissionLogFieldEnum>;
51488
52785
  /**
@@ -51493,6 +52790,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51493
52790
  * Modified after
51494
52791
  */
51495
52792
  modified?: string;
52793
+ /**
52794
+ * Modified before
52795
+ */
52796
+ modified_before?: string;
51496
52797
  native_name?: string;
51497
52798
  /**
51498
52799
  * Ordering
@@ -51608,6 +52909,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51608
52909
  * Created after
51609
52910
  */
51610
52911
  created?: string;
52912
+ /**
52913
+ * Created before
52914
+ */
52915
+ created_before?: string;
51611
52916
  /**
51612
52917
  * Multiple values may be separated by commas.
51613
52918
  */
@@ -51637,6 +52942,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51637
52942
  * Modified after
51638
52943
  */
51639
52944
  modified?: string;
52945
+ /**
52946
+ * Modified before
52947
+ */
52948
+ modified_before?: string;
51640
52949
  /**
51641
52950
  * Name
51642
52951
  */
@@ -53371,6 +54680,9 @@ export type MarketplaceSoftwareTargetsListData = {
53371
54680
  * Number of results to return per page.
53372
54681
  */
53373
54682
  page_size?: number;
54683
+ /**
54684
+ * Filter targets by location/path (case-insensitive partial match)
54685
+ */
53374
54686
  path?: string;
53375
54687
  /**
53376
54688
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -53423,6 +54735,9 @@ export type MarketplaceSoftwareTargetsCountData = {
53423
54735
  * Number of results to return per page.
53424
54736
  */
53425
54737
  page_size?: number;
54738
+ /**
54739
+ * Filter targets by location/path (case-insensitive partial match)
54740
+ */
53426
54741
  path?: string;
53427
54742
  /**
53428
54743
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -53874,6 +55189,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
53874
55189
  body?: never;
53875
55190
  path?: never;
53876
55191
  query?: {
55192
+ /**
55193
+ * Limit number of results (e.g. top N offerings). No limit by default.
55194
+ */
55195
+ limit?: number;
53877
55196
  /**
53878
55197
  * A page number within the paginated result set.
53879
55198
  */
@@ -53893,6 +55212,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
53893
55212
  body?: never;
53894
55213
  path?: never;
53895
55214
  query?: {
55215
+ /**
55216
+ * Limit number of results (e.g. top N offerings). No limit by default.
55217
+ */
55218
+ limit?: number;
53896
55219
  /**
53897
55220
  * A page number within the paginated result set.
53898
55221
  */
@@ -54824,6 +56147,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
54824
56147
  */
54825
56148
  200: unknown;
54826
56149
  };
56150
+ export type MarketplaceStatsProjectCreationTrendListData = {
56151
+ body?: never;
56152
+ path?: never;
56153
+ query?: {
56154
+ /**
56155
+ * A page number within the paginated result set.
56156
+ */
56157
+ page?: number;
56158
+ /**
56159
+ * Number of results to return per page.
56160
+ */
56161
+ page_size?: number;
56162
+ };
56163
+ url: '/api/marketplace-stats/project_creation_trend/';
56164
+ };
56165
+ export type MarketplaceStatsProjectCreationTrendListResponses = {
56166
+ 200: Array<ProjectCreationTrend>;
56167
+ };
56168
+ export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
56169
+ export type MarketplaceStatsProjectCreationTrendCountData = {
56170
+ body?: never;
56171
+ path?: never;
56172
+ query?: {
56173
+ /**
56174
+ * A page number within the paginated result set.
56175
+ */
56176
+ page?: number;
56177
+ /**
56178
+ * Number of results to return per page.
56179
+ */
56180
+ page_size?: number;
56181
+ };
56182
+ url: '/api/marketplace-stats/project_creation_trend/';
56183
+ };
56184
+ export type MarketplaceStatsProjectCreationTrendCountResponses = {
56185
+ /**
56186
+ * No response body
56187
+ */
56188
+ 200: unknown;
56189
+ };
54827
56190
  export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
54828
56191
  body?: never;
54829
56192
  path?: never;
@@ -55008,6 +56371,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
55008
56371
  */
55009
56372
  200: unknown;
55010
56373
  };
56374
+ export type MarketplaceStatsResourceCreationTrendListData = {
56375
+ body?: never;
56376
+ path?: never;
56377
+ query?: {
56378
+ /**
56379
+ * A page number within the paginated result set.
56380
+ */
56381
+ page?: number;
56382
+ /**
56383
+ * Number of results to return per page.
56384
+ */
56385
+ page_size?: number;
56386
+ };
56387
+ url: '/api/marketplace-stats/resource_creation_trend/';
56388
+ };
56389
+ export type MarketplaceStatsResourceCreationTrendListResponses = {
56390
+ 200: Array<ProjectCreationTrend>;
56391
+ };
56392
+ export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
56393
+ export type MarketplaceStatsResourceCreationTrendCountData = {
56394
+ body?: never;
56395
+ path?: never;
56396
+ query?: {
56397
+ /**
56398
+ * A page number within the paginated result set.
56399
+ */
56400
+ page?: number;
56401
+ /**
56402
+ * Number of results to return per page.
56403
+ */
56404
+ page_size?: number;
56405
+ };
56406
+ url: '/api/marketplace-stats/resource_creation_trend/';
56407
+ };
56408
+ export type MarketplaceStatsResourceCreationTrendCountResponses = {
56409
+ /**
56410
+ * No response body
56411
+ */
56412
+ 200: unknown;
56413
+ };
55011
56414
  export type MarketplaceStatsResourceProvisioningStatsListData = {
55012
56415
  body?: never;
55013
56416
  path?: never;
@@ -55294,6 +56697,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
55294
56697
  */
55295
56698
  200: unknown;
55296
56699
  };
56700
+ export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
56701
+ body?: never;
56702
+ path?: never;
56703
+ query?: {
56704
+ /**
56705
+ * Number of top providers to return. Default is 5.
56706
+ */
56707
+ limit?: number;
56708
+ /**
56709
+ * A page number within the paginated result set.
56710
+ */
56711
+ page?: number;
56712
+ /**
56713
+ * Number of results to return per page.
56714
+ */
56715
+ page_size?: number;
56716
+ };
56717
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56718
+ };
56719
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
56720
+ 200: Array<TopServiceProviderByResources>;
56721
+ };
56722
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
56723
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
56724
+ body?: never;
56725
+ path?: never;
56726
+ query?: {
56727
+ /**
56728
+ * Number of top providers to return. Default is 5.
56729
+ */
56730
+ limit?: number;
56731
+ /**
56732
+ * A page number within the paginated result set.
56733
+ */
56734
+ page?: number;
56735
+ /**
56736
+ * Number of results to return per page.
56737
+ */
56738
+ page_size?: number;
56739
+ };
56740
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56741
+ };
56742
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
56743
+ /**
56744
+ * No response body
56745
+ */
56746
+ 200: unknown;
56747
+ };
55297
56748
  export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
55298
56749
  body?: never;
55299
56750
  path?: never;
@@ -55494,6 +56945,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
55494
56945
  */
55495
56946
  200: unknown;
55496
56947
  };
56948
+ export type MarketplaceStatsUserNationalityListData = {
56949
+ body?: never;
56950
+ path?: never;
56951
+ query?: {
56952
+ /**
56953
+ * A page number within the paginated result set.
56954
+ */
56955
+ page?: number;
56956
+ /**
56957
+ * Number of results to return per page.
56958
+ */
56959
+ page_size?: number;
56960
+ };
56961
+ url: '/api/marketplace-stats/user_nationality/';
56962
+ };
56963
+ export type MarketplaceStatsUserNationalityListResponses = {
56964
+ 200: Array<UserNationalityStats>;
56965
+ };
56966
+ export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
56967
+ export type MarketplaceStatsUserNationalityCountData = {
56968
+ body?: never;
56969
+ path?: never;
56970
+ query?: {
56971
+ /**
56972
+ * A page number within the paginated result set.
56973
+ */
56974
+ page?: number;
56975
+ /**
56976
+ * Number of results to return per page.
56977
+ */
56978
+ page_size?: number;
56979
+ };
56980
+ url: '/api/marketplace-stats/user_nationality/';
56981
+ };
56982
+ export type MarketplaceStatsUserNationalityCountResponses = {
56983
+ /**
56984
+ * No response body
56985
+ */
56986
+ 200: unknown;
56987
+ };
55497
56988
  export type MarketplaceStatsUserOrganizationCountListData = {
55498
56989
  body?: never;
55499
56990
  path?: never;
@@ -55574,6 +57065,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
55574
57065
  */
55575
57066
  200: unknown;
55576
57067
  };
57068
+ export type MarketplaceStatsUserResidenceCountryListData = {
57069
+ body?: never;
57070
+ path?: never;
57071
+ query?: {
57072
+ /**
57073
+ * A page number within the paginated result set.
57074
+ */
57075
+ page?: number;
57076
+ /**
57077
+ * Number of results to return per page.
57078
+ */
57079
+ page_size?: number;
57080
+ };
57081
+ url: '/api/marketplace-stats/user_residence_country/';
57082
+ };
57083
+ export type MarketplaceStatsUserResidenceCountryListResponses = {
57084
+ 200: Array<UserResidenceCountryStats>;
57085
+ };
57086
+ export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
57087
+ export type MarketplaceStatsUserResidenceCountryCountData = {
57088
+ body?: never;
57089
+ path?: never;
57090
+ query?: {
57091
+ /**
57092
+ * A page number within the paginated result set.
57093
+ */
57094
+ page?: number;
57095
+ /**
57096
+ * Number of results to return per page.
57097
+ */
57098
+ page_size?: number;
57099
+ };
57100
+ url: '/api/marketplace-stats/user_residence_country/';
57101
+ };
57102
+ export type MarketplaceStatsUserResidenceCountryCountResponses = {
57103
+ /**
57104
+ * No response body
57105
+ */
57106
+ 200: unknown;
57107
+ };
55577
57108
  export type MarketplaceTagsListData = {
55578
57109
  body?: never;
55579
57110
  path?: never;
@@ -58636,6 +60167,10 @@ export type OpenportalUnmanagedProjectsListData = {
58636
60167
  * Created after
58637
60168
  */
58638
60169
  created?: string;
60170
+ /**
60171
+ * Created before
60172
+ */
60173
+ created_before?: string;
58639
60174
  /**
58640
60175
  * Multiple values may be separated by commas.
58641
60176
  */
@@ -58669,6 +60204,10 @@ export type OpenportalUnmanagedProjectsListData = {
58669
60204
  * Modified after
58670
60205
  */
58671
60206
  modified?: string;
60207
+ /**
60208
+ * Modified before
60209
+ */
60210
+ modified_before?: string;
58672
60211
  /**
58673
60212
  * Name
58674
60213
  */
@@ -58739,6 +60278,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58739
60278
  * Created after
58740
60279
  */
58741
60280
  created?: string;
60281
+ /**
60282
+ * Created before
60283
+ */
60284
+ created_before?: string;
58742
60285
  /**
58743
60286
  * Multiple values may be separated by commas.
58744
60287
  */
@@ -58771,6 +60314,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58771
60314
  * Modified after
58772
60315
  */
58773
60316
  modified?: string;
60317
+ /**
60318
+ * Modified before
60319
+ */
60320
+ modified_before?: string;
58774
60321
  /**
58775
60322
  * Name
58776
60323
  */
@@ -66643,6 +68190,136 @@ export type ProjectCreditsUpdateResponses = {
66643
68190
  200: ProjectCredit;
66644
68191
  };
66645
68192
  export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
68193
+ export type ProjectEndDateChangeRequestsListData = {
68194
+ body?: never;
68195
+ path?: never;
68196
+ query?: {
68197
+ /**
68198
+ * Created by UUID
68199
+ */
68200
+ created_by_uuid?: string;
68201
+ /**
68202
+ * Customer UUID
68203
+ */
68204
+ customer_uuid?: string;
68205
+ /**
68206
+ * A page number within the paginated result set.
68207
+ */
68208
+ page?: number;
68209
+ /**
68210
+ * Number of results to return per page.
68211
+ */
68212
+ page_size?: number;
68213
+ /**
68214
+ * Project UUID
68215
+ */
68216
+ project_uuid?: string;
68217
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68218
+ };
68219
+ url: '/api/project-end-date-change-requests/';
68220
+ };
68221
+ export type ProjectEndDateChangeRequestsListResponses = {
68222
+ 200: Array<ProjectEndDateChangeRequest>;
68223
+ };
68224
+ export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
68225
+ export type ProjectEndDateChangeRequestsCountData = {
68226
+ body?: never;
68227
+ path?: never;
68228
+ query?: {
68229
+ /**
68230
+ * Created by UUID
68231
+ */
68232
+ created_by_uuid?: string;
68233
+ /**
68234
+ * Customer UUID
68235
+ */
68236
+ customer_uuid?: string;
68237
+ /**
68238
+ * A page number within the paginated result set.
68239
+ */
68240
+ page?: number;
68241
+ /**
68242
+ * Number of results to return per page.
68243
+ */
68244
+ page_size?: number;
68245
+ /**
68246
+ * Project UUID
68247
+ */
68248
+ project_uuid?: string;
68249
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68250
+ };
68251
+ url: '/api/project-end-date-change-requests/';
68252
+ };
68253
+ export type ProjectEndDateChangeRequestsCountResponses = {
68254
+ /**
68255
+ * No response body
68256
+ */
68257
+ 200: unknown;
68258
+ };
68259
+ export type ProjectEndDateChangeRequestsCreateData = {
68260
+ body: ProjectEndDateChangeRequestCreateRequest;
68261
+ path?: never;
68262
+ query?: never;
68263
+ url: '/api/project-end-date-change-requests/';
68264
+ };
68265
+ export type ProjectEndDateChangeRequestsCreateResponses = {
68266
+ 201: ProjectEndDateChangeRequestCreate;
68267
+ };
68268
+ export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
68269
+ export type ProjectEndDateChangeRequestsRetrieveData = {
68270
+ body?: never;
68271
+ path: {
68272
+ uuid: string;
68273
+ };
68274
+ query?: never;
68275
+ url: '/api/project-end-date-change-requests/{uuid}/';
68276
+ };
68277
+ export type ProjectEndDateChangeRequestsRetrieveResponses = {
68278
+ 200: ProjectEndDateChangeRequest;
68279
+ };
68280
+ export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
68281
+ export type ProjectEndDateChangeRequestsApproveData = {
68282
+ body?: ReviewCommentRequest;
68283
+ path: {
68284
+ uuid: string;
68285
+ };
68286
+ query?: never;
68287
+ url: '/api/project-end-date-change-requests/{uuid}/approve/';
68288
+ };
68289
+ export type ProjectEndDateChangeRequestsApproveResponses = {
68290
+ /**
68291
+ * No response body
68292
+ */
68293
+ 200: unknown;
68294
+ };
68295
+ export type ProjectEndDateChangeRequestsCancelData = {
68296
+ body?: never;
68297
+ path: {
68298
+ uuid: string;
68299
+ };
68300
+ query?: never;
68301
+ url: '/api/project-end-date-change-requests/{uuid}/cancel/';
68302
+ };
68303
+ export type ProjectEndDateChangeRequestsCancelResponses = {
68304
+ /**
68305
+ * No response body
68306
+ */
68307
+ 200: unknown;
68308
+ };
68309
+ export type ProjectEndDateChangeRequestsRejectData = {
68310
+ body?: ReviewCommentRequest;
68311
+ path: {
68312
+ uuid: string;
68313
+ };
68314
+ query?: never;
68315
+ url: '/api/project-end-date-change-requests/{uuid}/reject/';
68316
+ };
68317
+ export type ProjectEndDateChangeRequestsRejectResponses = {
68318
+ /**
68319
+ * No response body
68320
+ */
68321
+ 200: unknown;
68322
+ };
66646
68323
  export type ProjectPermissionsReviewsListData = {
66647
68324
  body?: never;
66648
68325
  path?: never;
@@ -66888,6 +68565,10 @@ export type ProjectsListData = {
66888
68565
  * Created after
66889
68566
  */
66890
68567
  created?: string;
68568
+ /**
68569
+ * Created before
68570
+ */
68571
+ created_before?: string;
66891
68572
  /**
66892
68573
  * Multiple values may be separated by commas.
66893
68574
  */
@@ -66921,6 +68602,10 @@ export type ProjectsListData = {
66921
68602
  * Modified after
66922
68603
  */
66923
68604
  modified?: string;
68605
+ /**
68606
+ * Modified before
68607
+ */
68608
+ modified_before?: string;
66924
68609
  /**
66925
68610
  * Name
66926
68611
  */
@@ -66991,6 +68676,10 @@ export type ProjectsCountData = {
66991
68676
  * Created after
66992
68677
  */
66993
68678
  created?: string;
68679
+ /**
68680
+ * Created before
68681
+ */
68682
+ created_before?: string;
66994
68683
  /**
66995
68684
  * Multiple values may be separated by commas.
66996
68685
  */
@@ -67023,6 +68712,10 @@ export type ProjectsCountData = {
67023
68712
  * Modified after
67024
68713
  */
67025
68714
  modified?: string;
68715
+ /**
68716
+ * Modified before
68717
+ */
68718
+ modified_before?: string;
67026
68719
  /**
67027
68720
  * Name
67028
68721
  */
@@ -77482,6 +79175,10 @@ export type UserPermissionsListData = {
77482
79175
  * Created after
77483
79176
  */
77484
79177
  created?: string;
79178
+ /**
79179
+ * Created before
79180
+ */
79181
+ created_before?: string;
77485
79182
  expiration_time?: string;
77486
79183
  /**
77487
79184
  * User full name contains
@@ -77491,6 +79188,10 @@ export type UserPermissionsListData = {
77491
79188
  * Modified after
77492
79189
  */
77493
79190
  modified?: string;
79191
+ /**
79192
+ * Modified before
79193
+ */
79194
+ modified_before?: string;
77494
79195
  native_name?: string;
77495
79196
  /**
77496
79197
  * Ordering
@@ -77548,6 +79249,10 @@ export type UserPermissionsCountData = {
77548
79249
  * Created after
77549
79250
  */
77550
79251
  created?: string;
79252
+ /**
79253
+ * Created before
79254
+ */
79255
+ created_before?: string;
77551
79256
  expiration_time?: string;
77552
79257
  /**
77553
79258
  * User full name contains
@@ -77557,6 +79262,10 @@ export type UserPermissionsCountData = {
77557
79262
  * Modified after
77558
79263
  */
77559
79264
  modified?: string;
79265
+ /**
79266
+ * Modified before
79267
+ */
79268
+ modified_before?: string;
77560
79269
  native_name?: string;
77561
79270
  /**
77562
79271
  * Ordering