waldur-js-client 7.9.7-dev.1 → 7.9.7-dev.10

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.
@@ -10,6 +10,46 @@ export type AccessSubnetRequest = {
10
10
  customer: string;
11
11
  };
12
12
  export type AccountNameGenerationPolicyEnum = 'project_slug';
13
+ export type ActiveQueriesStats = {
14
+ /**
15
+ * Number of currently active queries
16
+ */
17
+ readonly count: number;
18
+ /**
19
+ * Duration of the longest running query in seconds
20
+ */
21
+ readonly longest_duration_seconds: number;
22
+ /**
23
+ * Number of queries waiting on locks
24
+ */
25
+ readonly waiting_on_locks: number;
26
+ /**
27
+ * List of active queries
28
+ */
29
+ readonly queries: Array<ActiveQuery>;
30
+ };
31
+ export type ActiveQuery = {
32
+ /**
33
+ * Process ID
34
+ */
35
+ readonly pid: number;
36
+ /**
37
+ * Query duration in seconds
38
+ */
39
+ readonly duration_seconds: number;
40
+ /**
41
+ * Query state
42
+ */
43
+ readonly state: string;
44
+ /**
45
+ * Type of event the query is waiting for
46
+ */
47
+ readonly wait_event_type: string | null;
48
+ /**
49
+ * First 100 characters of the query
50
+ */
51
+ readonly query_preview: string;
52
+ };
13
53
  export type AdminAnnouncement = {
14
54
  readonly uuid?: string;
15
55
  description?: string;
@@ -62,6 +102,72 @@ export type AffinityMatrixResponse = {
62
102
  results: Array<AffinityMatrixEntry>;
63
103
  };
64
104
  export type AffinityMethodEnum = 'keyword' | 'tfidf' | 'combined';
105
+ export type AgentConnectionInfo = {
106
+ /**
107
+ * Agent identity UUID
108
+ */
109
+ readonly uuid: string;
110
+ /**
111
+ * Agent name
112
+ */
113
+ readonly name: string;
114
+ /**
115
+ * Associated offering UUID
116
+ */
117
+ readonly offering_uuid: string;
118
+ /**
119
+ * Associated offering name
120
+ */
121
+ readonly offering_name: string;
122
+ /**
123
+ * Agent version
124
+ */
125
+ readonly version: string | null;
126
+ /**
127
+ * When the agent was last restarted
128
+ */
129
+ readonly last_restarted: string;
130
+ /**
131
+ * Services running within this agent
132
+ */
133
+ readonly services: Array<AgentServiceStatus>;
134
+ /**
135
+ * Event subscriptions with connection status
136
+ */
137
+ readonly event_subscriptions: Array<AgentEventSubscriptionWithConnection>;
138
+ /**
139
+ * RabbitMQ queues for this agent's offering
140
+ */
141
+ readonly queues: Array<AgentQueueInfo>;
142
+ };
143
+ export type AgentConnectionStatsResponse = {
144
+ /**
145
+ * List of agents with connection status
146
+ */
147
+ readonly agents: Array<AgentConnectionInfo>;
148
+ /**
149
+ * Summary statistics
150
+ */
151
+ summary: AgentConnectionSummary;
152
+ };
153
+ export type AgentConnectionSummary = {
154
+ /**
155
+ * Total number of registered agents
156
+ */
157
+ readonly total_agents: number;
158
+ /**
159
+ * Number of agents with active RMQ connections
160
+ */
161
+ readonly connected_agents: number;
162
+ /**
163
+ * Number of agents without active connections
164
+ */
165
+ readonly disconnected_agents: number;
166
+ /**
167
+ * Total messages across all agent queues
168
+ */
169
+ readonly total_queued_messages: number;
170
+ };
65
171
  export type AgentEventSubscriptionCreateRequest = {
66
172
  /**
67
173
  * The type of object to observe for events
@@ -72,9 +178,30 @@ export type AgentEventSubscriptionCreateRequest = {
72
178
  */
73
179
  description?: string;
74
180
  };
181
+ export type AgentEventSubscriptionWithConnection = {
182
+ /**
183
+ * Event subscription UUID
184
+ */
185
+ readonly uuid: string;
186
+ /**
187
+ * When the subscription was created
188
+ */
189
+ readonly created: string;
190
+ /**
191
+ * List of observable object configurations
192
+ */
193
+ readonly observable_objects: unknown;
194
+ /**
195
+ * RabbitMQ connection status for this subscription
196
+ */
197
+ rmq_connection: AgentRmqConnection | null;
198
+ };
75
199
  export type AgentIdentity = {
76
200
  readonly uuid: string;
77
201
  readonly url: string;
202
+ /**
203
+ * UUID of an offering with type 'Marketplace.Slurm'. Only site-agent offerings are accepted.
204
+ */
78
205
  offering: string;
79
206
  name: string;
80
207
  version?: string | null;
@@ -93,6 +220,9 @@ export type AgentIdentity = {
93
220
  readonly services: Array<NestedAgentService>;
94
221
  };
95
222
  export type AgentIdentityRequest = {
223
+ /**
224
+ * UUID of an offering with type 'Marketplace.Slurm'. Only site-agent offerings are accepted.
225
+ */
96
226
  offering: string;
97
227
  name: string;
98
228
  version?: string | null;
@@ -130,6 +260,50 @@ export type AgentProcessorCreateRequest = {
130
260
  backend_type: string;
131
261
  backend_version?: string | null;
132
262
  };
263
+ export type AgentQueueInfo = {
264
+ /**
265
+ * Queue name
266
+ */
267
+ readonly name: string;
268
+ /**
269
+ * Number of messages in queue
270
+ */
271
+ readonly messages: number;
272
+ /**
273
+ * Number of active consumers
274
+ */
275
+ readonly consumers: number;
276
+ /**
277
+ * Parsed object type from queue name
278
+ */
279
+ readonly object_type: string | null;
280
+ };
281
+ export type AgentRmqConnection = {
282
+ /**
283
+ * Whether the agent has an active connection
284
+ */
285
+ readonly connected: boolean;
286
+ /**
287
+ * Client IP address of active connection
288
+ */
289
+ readonly source_ip: string | null;
290
+ /**
291
+ * Connection establishment timestamp
292
+ */
293
+ readonly connected_at: string | null;
294
+ /**
295
+ * Connection state: 'running', 'blocked', 'blocking'
296
+ */
297
+ readonly state: string | null;
298
+ /**
299
+ * Bytes received on this connection
300
+ */
301
+ readonly recv_oct: number | null;
302
+ /**
303
+ * Bytes sent on this connection
304
+ */
305
+ readonly send_oct: number | null;
306
+ };
133
307
  export type AgentService = {
134
308
  readonly uuid: string;
135
309
  readonly url: string;
@@ -154,6 +328,68 @@ export type AgentServiceStatisticsRequest = {
154
328
  */
155
329
  statistics: unknown;
156
330
  };
331
+ export type AgentServiceStatus = {
332
+ /**
333
+ * Service UUID
334
+ */
335
+ readonly uuid: string;
336
+ /**
337
+ * Service name
338
+ */
339
+ readonly name: string;
340
+ /**
341
+ * Service state: ACTIVE, IDLE, or ERROR
342
+ */
343
+ readonly state: string;
344
+ /**
345
+ * Last modification timestamp
346
+ */
347
+ readonly modified: string;
348
+ };
349
+ export type AgentStatsResponse = {
350
+ /**
351
+ * Statistics about agent identities
352
+ */
353
+ identities: {
354
+ [key: string]: unknown;
355
+ };
356
+ /**
357
+ * Statistics about agent services
358
+ */
359
+ services: {
360
+ [key: string]: unknown;
361
+ };
362
+ /**
363
+ * Statistics about agent processors
364
+ */
365
+ processors: {
366
+ [key: string]: unknown;
367
+ };
368
+ };
369
+ export type AgentTaskStatsResponse = {
370
+ /**
371
+ * Currently running agent-related tasks
372
+ */
373
+ active_tasks: Array<{
374
+ [key: string]: unknown;
375
+ }>;
376
+ /**
377
+ * Scheduled agent-related tasks
378
+ */
379
+ scheduled_tasks: Array<{
380
+ [key: string]: unknown;
381
+ }>;
382
+ /**
383
+ * Reserved agent-related tasks
384
+ */
385
+ reserved_tasks: Array<{
386
+ [key: string]: unknown;
387
+ }>;
388
+ /**
389
+ * Error message if task inspection failed
390
+ */
391
+ error?: string;
392
+ };
157
393
  export type AgentTypeEnum = 'Order processing' | 'Usage reporting' | 'Glauth sync' | 'Resource sync' | 'Event processing' | 'unknown';
158
394
  export type AgreementTypeEnum = 'TOS' | 'PP';
159
395
  export type Allocation = {
@@ -641,6 +877,14 @@ export type AvailableChecklist = {
641
877
  readonly category_name: string | null;
642
878
  readonly category_uuid: string | null;
643
879
  };
880
+ export type AvailableChecklistsResponse = {
881
+ customer_checklist: {
882
+ [key: string]: unknown;
883
+ } | null;
884
+ intent_checklist: {
885
+ [key: string]: unknown;
886
+ } | null;
887
+ };
644
888
  export type AwsImage = {
645
889
  readonly url: string;
646
890
  readonly uuid: string;
@@ -1641,6 +1885,24 @@ export type CoiStatusUpdateRequest = {
1641
1885
  management_plan?: string;
1642
1886
  };
1643
1887
  export type CoiStatusUpdateStatusEnum = 'dismissed' | 'waived' | 'recused';
1888
+ export type CachePerformance = {
1889
+ /**
1890
+ * Buffer cache hit ratio percentage (should be >99%)
1891
+ */
1892
+ readonly buffer_cache_hit_ratio: number | null;
1893
+ /**
1894
+ * Index cache hit ratio percentage
1895
+ */
1896
+ readonly index_hit_ratio: number | null;
1897
+ /**
1898
+ * Configured shared_buffers setting
1899
+ */
1900
+ readonly shared_buffers: string;
1901
+ /**
1902
+ * Configured effective_cache_size setting
1903
+ */
1904
+ readonly effective_cache_size: string;
1905
+ };
1644
1906
  export type CallAssignmentConfiguration = {
1645
1907
  readonly uuid: string;
1646
1908
  readonly call: string;
@@ -2396,6 +2658,30 @@ export type ChatRequestRequest = {
2396
2658
  */
2397
2659
  input: string;
2398
2660
  };
2661
+ export type ChatResponse = {
2662
+ /**
2663
+ * Component Alias (e.g. 'markdown', 'code').
2664
+ */
2665
+ k?: string;
2666
+ /**
2667
+ * Content payload.
2668
+ */
2669
+ c?: string;
2670
+ /**
2671
+ * Tag or language for dynamic blocks.
2672
+ */
2673
+ t?: string;
2674
+ /**
2675
+ * System metadata.
2676
+ */
2677
+ m?: {
2678
+ [key: string]: unknown;
2679
+ };
2680
+ /**
2681
+ * Error message.
2682
+ */
2683
+ e?: string;
2684
+ };
2399
2685
  export type CheckUniqueBackendIdRequest = {
2400
2686
  /**
2401
2687
  * Backend identifier to check
@@ -2522,7 +2808,33 @@ export type ChecklistTemplate = {
2522
2808
  questions: Array<Question>;
2523
2809
  initial_visible_questions: Array<Question>;
2524
2810
  };
2525
- export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'customer_onboarding';
2811
+ export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
2812
+ export type CleanupRequestRequest = {
2813
+ /**
2814
+ * If true, only return what would be deleted without actually deleting
2815
+ */
2816
+ dry_run?: boolean;
2817
+ /**
2818
+ * Delete entries older than this many hours
2819
+ */
2820
+ older_than_hours?: number;
2821
+ };
2822
+ export type CleanupResponse = {
2823
+ /**
2824
+ * Number of items deleted (or would be deleted in dry run)
2825
+ */
2826
+ deleted_count: number;
2827
+ /**
2828
+ * Whether this was a dry run
2829
+ */
2830
+ dry_run: boolean;
2831
+ /**
2832
+ * List of deleted (or to-be-deleted) items
2833
+ */
2834
+ items: Array<{
2835
+ [key: string]: unknown;
2836
+ }>;
2837
+ };
2526
2838
  export type ClusterSecurityGroup = {
2527
2839
  readonly uuid: string;
2528
2840
  readonly name: string;
@@ -2862,6 +3174,32 @@ export type ConflictSummaryResponse = {
2862
3174
  [key: string]: number;
2863
3175
  };
2864
3176
  };
3177
+ export type ConnectionStats = {
3178
+ /**
3179
+ * Number of active connections
3180
+ */
3181
+ readonly active: number;
3182
+ /**
3183
+ * Number of idle connections
3184
+ */
3185
+ readonly idle: number;
3186
+ /**
3187
+ * Number of connections idle in transaction
3188
+ */
3189
+ readonly idle_in_transaction: number;
3190
+ /**
3191
+ * Number of connections waiting for a lock
3192
+ */
3193
+ readonly waiting: number;
3194
+ /**
3195
+ * Maximum allowed connections
3196
+ */
3197
+ readonly max_connections: number;
3198
+ /**
3199
+ * Percentage of max connections in use
3200
+ */
3201
+ readonly utilization_percent: number;
3202
+ };
2865
3203
  export type ConsoleUrl = {
2866
3204
  readonly url: string;
2867
3205
  };
@@ -3029,7 +3367,7 @@ export type ConstanceSettings = {
3029
3367
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
3030
3368
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
3031
3369
  DISABLED_OFFERING_TYPES?: Array<string>;
3032
- ONBOARDING_COUNTRY?: string;
3370
+ ONBOARDING_VALIDATION_METHODS?: Array<string>;
3033
3371
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
3034
3372
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
3035
3373
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -3057,6 +3395,12 @@ export type ConstanceSettings = {
3057
3395
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
3058
3396
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
3059
3397
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
3398
+ USER_ACTIONS_ENABLED?: boolean;
3399
+ USER_ACTIONS_PENDING_ORDER_HOURS?: number;
3400
+ USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
3401
+ USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
3402
+ USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
3403
+ USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
3060
3404
  };
3061
3405
  export type ConstanceSettingsRequest = {
3062
3406
  SITE_NAME?: string;
@@ -3222,7 +3566,7 @@ export type ConstanceSettingsRequest = {
3222
3566
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
3223
3567
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
3224
3568
  DISABLED_OFFERING_TYPES?: Array<string>;
3225
- ONBOARDING_COUNTRY?: string;
3569
+ ONBOARDING_VALIDATION_METHODS?: Array<string>;
3226
3570
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
3227
3571
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
3228
3572
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -3250,6 +3594,12 @@ export type ConstanceSettingsRequest = {
3250
3594
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
3251
3595
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
3252
3596
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
3597
+ USER_ACTIONS_ENABLED?: boolean;
3598
+ USER_ACTIONS_PENDING_ORDER_HOURS?: number;
3599
+ USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
3600
+ USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
3601
+ USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
3602
+ USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
3253
3603
  };
3254
3604
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
3255
3605
  export type CoreAuthToken = {
@@ -3941,6 +4291,66 @@ export type DataVolumeRequest = {
3941
4291
  filesystem?: string;
3942
4292
  mount_point: string;
3943
4293
  };
4294
+ export type DatabaseSizeStats = {
4295
+ /**
4296
+ * Name of the database
4297
+ */
4298
+ readonly database_name: string;
4299
+ /**
4300
+ * Total database size in bytes
4301
+ */
4302
+ readonly total_size_bytes: number;
4303
+ /**
4304
+ * Size of data excluding indexes in bytes
4305
+ */
4306
+ readonly data_size_bytes: number;
4307
+ /**
4308
+ * Total size of all indexes in bytes
4309
+ */
4310
+ readonly index_size_bytes: number;
4311
+ };
4312
+ export type DatabaseStatsResponse = {
4313
+ /**
4314
+ * Top largest tables by size
4315
+ */
4316
+ readonly table_stats: Array<TableSize>;
4317
+ /**
4318
+ * Connection statistics
4319
+ */
4320
+ connections: ConnectionStats;
4321
+ /**
4322
+ * Database size information
4323
+ */
4324
+ database_size: DatabaseSizeStats;
4325
+ /**
4326
+ * Cache hit ratios and memory settings
4327
+ */
4328
+ cache_performance: CachePerformance;
4329
+ /**
4330
+ * Transaction commit/rollback statistics
4331
+ */
4332
+ transactions: TransactionStats;
4333
+ /**
4334
+ * Current lock statistics
4335
+ */
4336
+ locks: LockStats;
4337
+ /**
4338
+ * Vacuum and maintenance statistics
4339
+ */
4340
+ maintenance: MaintenanceStats;
4341
+ /**
4342
+ * Currently running queries
4343
+ */
4344
+ active_queries: ActiveQueriesStats;
4345
+ /**
4346
+ * Query performance indicators
4347
+ */
4348
+ query_performance: QueryPerformance;
4349
+ /**
4350
+ * Replication status (if applicable)
4351
+ */
4352
+ replication: ReplicationStats;
4353
+ };
3944
4354
  export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
3945
4355
  export type DeleteAttachmentsRequest = {
3946
4356
  attachment_ids: Array<string>;
@@ -4351,6 +4761,9 @@ export type EventSubscription = {
4351
4761
  */
4352
4762
  readonly user_username: string;
4353
4763
  readonly user_full_name: string;
4764
+ /**
4765
+ * List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
4766
+ */
4354
4767
  observable_objects?: unknown;
4355
4768
  readonly created: string;
4356
4769
  readonly modified: string;
@@ -4361,6 +4774,9 @@ export type EventSubscription = {
4361
4774
  };
4362
4775
  export type EventSubscriptionRequest = {
4363
4776
  description?: string;
4777
+ /**
4778
+ * List of objects to observe. Each item must have 'object_type' (one of: order, user_role, resource, offering_user, importable_resources, service_account, course_account, resource_periodic_limits) and optionally 'object_id' (integer). Example: [{"object_type": "resource"}, {"object_type": "order", "object_id": 123}]
4779
+ */
4364
4780
  observable_objects?: unknown;
4365
4781
  };
4366
4782
  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' | '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_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_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
@@ -5012,6 +5428,10 @@ export type IdentityProvider = {
5012
5428
  * Space-separated list of extra fields to persist.
5013
5429
  */
5014
5430
  extra_fields?: string | null;
5431
+ /**
5432
+ * List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
5433
+ */
5434
+ allowed_redirects?: unknown;
5015
5435
  };
5016
5436
  export type IdentityProviderRequest = {
5017
5437
  provider: string;
@@ -5060,6 +5480,10 @@ export type IdentityProviderRequest = {
5060
5480
  * Space-separated list of extra fields to persist.
5061
5481
  */
5062
5482
  extra_fields?: string | null;
5483
+ /**
5484
+ * List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
5485
+ */
5486
+ allowed_redirects?: unknown;
5063
5487
  };
5064
5488
  export type ImageCreateRequest = {
5065
5489
  name: string;
@@ -5891,6 +6315,20 @@ export type LinkToInvoice = {
5891
6315
  export type LinkToInvoiceRequest = {
5892
6316
  invoice: string;
5893
6317
  };
6318
+ export type LockStats = {
6319
+ /**
6320
+ * Total number of locks currently held
6321
+ */
6322
+ readonly total_locks: number;
6323
+ /**
6324
+ * Number of locks being waited for
6325
+ */
6326
+ readonly waiting_locks: number;
6327
+ /**
6328
+ * Number of AccessExclusive locks (blocks all access)
6329
+ */
6330
+ readonly access_exclusive_locks: number;
6331
+ };
5894
6332
  export type Logout = {
5895
6333
  /**
5896
6334
  * URL to redirect to after logout
@@ -6052,6 +6490,28 @@ export type MaintenanceAnnouncementTemplateRequest = {
6052
6490
  */
6053
6491
  service_provider: string;
6054
6492
  };
6493
+ export type MaintenanceStats = {
6494
+ /**
6495
+ * Age of the oldest transaction in transactions
6496
+ */
6497
+ readonly oldest_transaction_age: number | null;
6498
+ /**
6499
+ * Number of tables with high dead tuple ratio
6500
+ */
6501
+ readonly tables_needing_vacuum: number;
6502
+ /**
6503
+ * Total estimated dead tuples across all tables
6504
+ */
6505
+ readonly total_dead_tuples: number;
6506
+ /**
6507
+ * Total estimated live tuples across all tables
6508
+ */
6509
+ readonly total_live_tuples: number;
6510
+ /**
6511
+ * Ratio of dead tuples to total tuples
6512
+ */
6513
+ readonly dead_tuple_ratio_percent: number | null;
6514
+ };
6055
6515
  export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
6056
6516
  export type ManagedProject = {
6057
6517
  readonly state: string;
@@ -6262,6 +6722,10 @@ export type MergedPluginOptions = {
6262
6722
  * If set to True, an order can be processed without approval
6263
6723
  */
6264
6724
  auto_approve_remote_orders?: boolean;
6725
+ /**
6726
+ * Resource expiration threshold in days.
6727
+ */
6728
+ resource_expiration_threshold?: number;
6265
6729
  /**
6266
6730
  * Service provider can create offering user
6267
6731
  */
@@ -6306,6 +6770,10 @@ export type MergedPluginOptions = {
6306
6770
  * Maximal number of offering resources allowed per project
6307
6771
  */
6308
6772
  maximal_resource_count_per_project?: number;
6773
+ /**
6774
+ * Attribute name to enforce uniqueness per value. E.g., 'storage_data_type' ensures only one resource per storage type per project.
6775
+ */
6776
+ unique_resource_per_attribute?: string;
6309
6777
  /**
6310
6778
  * Required user role in a project for provisioning of resources
6311
6779
  */
@@ -6504,6 +6972,10 @@ export type MergedPluginOptionsRequest = {
6504
6972
  * If set to True, an order can be processed without approval
6505
6973
  */
6506
6974
  auto_approve_remote_orders?: boolean;
6975
+ /**
6976
+ * Resource expiration threshold in days.
6977
+ */
6978
+ resource_expiration_threshold?: number;
6507
6979
  /**
6508
6980
  * Service provider can create offering user
6509
6981
  */
@@ -6548,6 +7020,10 @@ export type MergedPluginOptionsRequest = {
6548
7020
  * Maximal number of offering resources allowed per project
6549
7021
  */
6550
7022
  maximal_resource_count_per_project?: number;
7023
+ /**
7024
+ * Attribute name to enforce uniqueness per value. E.g., 'storage_data_type' ensures only one resource per storage type per project.
7025
+ */
7026
+ unique_resource_per_attribute?: string;
6551
7027
  /**
6552
7028
  * Required user role in a project for provisioning of resources
6553
7029
  */
@@ -8939,6 +9415,12 @@ export type OfferingUser = {
8939
9415
  * Check if the offering user has a connected compliance checklist completion.
8940
9416
  */
8941
9417
  readonly has_compliance_checklist?: boolean;
9418
+ /**
9419
+ * User consent data including uuid, version, and agreement_date
9420
+ */
9421
+ readonly consent_data?: {
9422
+ [key: string]: string;
9423
+ } | null;
8942
9424
  };
8943
9425
  export type OfferingUserRequest = {
8944
9426
  user?: string;
@@ -8984,9 +9466,13 @@ export type OfferingUserUpdateRestrictionRequest = {
8984
9466
  };
8985
9467
  export type OnboardingCompanyValidationRequestRequest = {
8986
9468
  /**
8987
- * ISO country code (e.g., 'EE' for Estonia)
9469
+ * Automatic validation method (e.g., 'ariregister', 'wirtschaftscompass', 'bolagsverket'). Leave empty for manual validation.
8988
9470
  */
8989
- country: string;
9471
+ validation_method?: ValidationMethodEnum | BlankEnum;
9472
+ /**
9473
+ * ISO country code (e.g., 'EE', 'AT') - optional, for display context
9474
+ */
9475
+ country?: string;
8990
9476
  /**
8991
9477
  * Official company registration code
8992
9478
  */
@@ -8995,45 +9481,6 @@ export type OnboardingCompanyValidationRequestRequest = {
8995
9481
  * Company name (optional)
8996
9482
  */
8997
9483
  legal_name?: string;
8998
- /**
8999
- * Indicates if the validation is to be performed manually
9000
- */
9001
- is_manual_validation?: boolean;
9002
- };
9003
- export type OnboardingCountryChecklistConfiguration = {
9004
- readonly url: string;
9005
- readonly uuid: string;
9006
- /**
9007
- * ISO country code (e.g., 'EE' for Estonia)
9008
- */
9009
- country: string;
9010
- /**
9011
- * Checklist to use for this country's onboarding
9012
- */
9013
- checklist: string;
9014
- readonly checklist_name: string;
9015
- readonly checklist_uuid: string;
9016
- readonly questions: Array<QuestionAdmin>;
9017
- /**
9018
- * Whether this country configuration is active
9019
- */
9020
- is_active?: boolean;
9021
- readonly created: string;
9022
- readonly modified: string;
9023
- };
9024
- export type OnboardingCountryChecklistConfigurationRequest = {
9025
- /**
9026
- * ISO country code (e.g., 'EE' for Estonia)
9027
- */
9028
- country: string;
9029
- /**
9030
- * Checklist to use for this country's onboarding
9031
- */
9032
- checklist: string;
9033
- /**
9034
- * Whether this country configuration is active
9035
- */
9036
- is_active?: boolean;
9037
9484
  };
9038
9485
  export type OnboardingJustification = {
9039
9486
  readonly uuid: string;
@@ -9145,7 +9592,7 @@ export type OnboardingRunValidationRequestRequest = {
9145
9592
  /**
9146
9593
  * Personal identifier (temporary workaround for Estonian civil_number)
9147
9594
  */
9148
- person_identifier?: string;
9595
+ civil_number?: string;
9149
9596
  /**
9150
9597
  * User's first name (temporary workaround for Austrian validation)
9151
9598
  */
@@ -9167,9 +9614,9 @@ export type OnboardingVerification = {
9167
9614
  readonly user: string;
9168
9615
  readonly user_full_name: string;
9169
9616
  /**
9170
- * ISO country code (e.g., 'EE' for Estonia)
9617
+ * ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
9171
9618
  */
9172
- country: string;
9619
+ country?: string;
9173
9620
  /**
9174
9621
  * Official company registration code (required for automatic validation)
9175
9622
  */
@@ -9235,9 +9682,9 @@ export type OnboardingVerification = {
9235
9682
  };
9236
9683
  export type OnboardingVerificationRequest = {
9237
9684
  /**
9238
- * ISO country code (e.g., 'EE' for Estonia)
9685
+ * ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
9239
9686
  */
9240
- country: string;
9687
+ country?: string;
9241
9688
  /**
9242
9689
  * Official company registration code (required for automatic validation)
9243
9690
  */
@@ -11516,6 +11963,10 @@ export type PatchedIdentityProviderRequest = {
11516
11963
  * Space-separated list of extra fields to persist.
11517
11964
  */
11518
11965
  extra_fields?: string | null;
11966
+ /**
11967
+ * List of allowed redirect URLs for OAuth authentication. URLs must be exact matches (origin only: scheme + domain + port). HTTPS required except for localhost. No wildcards, paths, query params, or fragments. Example: ["https://portal1.example.com", "https://portal2.example.com:8443"]. If empty, falls back to HOMEPORT_URL setting.
11968
+ */
11969
+ allowed_redirects?: unknown;
11519
11970
  };
11520
11971
  export type PatchedInvitationUpdateRequest = {
11521
11972
  /**
@@ -11851,20 +12302,6 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
11851
12302
  */
11852
12303
  service_provider_comment_url?: string;
11853
12304
  };
11854
- export type PatchedOnboardingCountryChecklistConfigurationRequest = {
11855
- /**
11856
- * ISO country code (e.g., 'EE' for Estonia)
11857
- */
11858
- country?: string;
11859
- /**
11860
- * Checklist to use for this country's onboarding
11861
- */
11862
- checklist?: string;
11863
- /**
11864
- * Whether this country configuration is active
11865
- */
11866
- is_active?: boolean;
11867
- };
11868
12305
  export type PatchedOnboardingJustificationRequest = {
11869
12306
  verification?: string;
11870
12307
  /**
@@ -11885,7 +12322,7 @@ export type PatchedOnboardingQuestionMetadataRequest = {
11885
12322
  };
11886
12323
  export type PatchedOnboardingVerificationRequest = {
11887
12324
  /**
11888
- * ISO country code (e.g., 'EE' for Estonia)
12325
+ * ISO country code (e.g., 'EE', 'AT') for context. Can be inferred from validation_method.
11889
12326
  */
11890
12327
  country?: string;
11891
12328
  /**
@@ -12945,6 +13382,18 @@ export type PermissionRequest = {
12945
13382
  readonly role_description: string;
12946
13383
  readonly project_name_template: string;
12947
13384
  };
13385
+ export type PersonIdentifierFieldsResponse = {
13386
+ /**
13387
+ * The validation method identifier
13388
+ */
13389
+ validation_method: string;
13390
+ /**
13391
+ * Field specification for person identification. For simple identifiers: {type: 'string', field: 'civil_number', ...}. For composite identifiers: {type: 'object', fields: {...}}
13392
+ */
13393
+ person_identifier_fields: {
13394
+ [key: string]: unknown;
13395
+ };
13396
+ };
12948
13397
  export type PlanComponent = {
12949
13398
  readonly offering_name: string;
12950
13399
  readonly plan_name: string;
@@ -14362,6 +14811,32 @@ export type PullMarketplaceScriptResourceRequest = {
14362
14811
  resource_uuid: string;
14363
14812
  };
14364
14813
  export type QosStrategyEnum = 'threshold' | 'progressive';
14814
+ export type QueryPerformance = {
14815
+ /**
14816
+ * Total sequential scans (potentially expensive)
14817
+ */
14818
+ readonly seq_scan_count: number;
14819
+ /**
14820
+ * Total rows fetched by sequential scans
14821
+ */
14822
+ readonly seq_scan_rows: number;
14823
+ /**
14824
+ * Total index scans
14825
+ */
14826
+ readonly index_scan_count: number;
14827
+ /**
14828
+ * Total rows fetched by index scans
14829
+ */
14830
+ readonly index_scan_rows: number;
14831
+ /**
14832
+ * Number of temporary files created
14833
+ */
14834
+ readonly temp_files_count: number;
14835
+ /**
14836
+ * Total size of temporary files in bytes
14837
+ */
14838
+ readonly temp_files_bytes: number;
14839
+ };
14365
14840
  export type QueryRequest = {
14366
14841
  /**
14367
14842
  * Search query string
@@ -14498,6 +14973,7 @@ export type QuestionAdmin = {
14498
14973
  readonly url: string;
14499
14974
  readonly checklist_name: string;
14500
14975
  readonly checklist_uuid: string;
14976
+ readonly checklist_type: string;
14501
14977
  checklist: string;
14502
14978
  };
14503
14979
  export type QuestionAdminRequest = {
@@ -15778,6 +16254,20 @@ export type RemoveSoftwareCatalogRequest = {
15778
16254
  */
15779
16255
  offering_catalog_uuid: string;
15780
16256
  };
16257
+ export type ReplicationStats = {
16258
+ /**
16259
+ * Whether this database is a replica
16260
+ */
16261
+ readonly is_replica: boolean;
16262
+ /**
16263
+ * Write-ahead log size in bytes
16264
+ */
16265
+ readonly wal_bytes: number | null;
16266
+ /**
16267
+ * Replication lag in bytes (only for replicas)
16268
+ */
16269
+ readonly replication_lag_bytes: number | null;
16270
+ };
15781
16271
  export type ReportSection = {
15782
16272
  /**
15783
16273
  * Section header text
@@ -16620,12 +17110,329 @@ export type ReviewerSuggestionRequest = {
16620
17110
  rejection_reason?: string;
16621
17111
  };
16622
17112
  export type ReviewerSuggestionStatusEnum = 'pending' | 'confirmed' | 'rejected' | 'invited';
16623
- export type RmqConnection = {
17113
+ export type RmqClientProperties = {
16624
17114
  /**
16625
- * An IPv4 or IPv6 address.
17115
+ * Client product name (e.g., 'pika', 'amqp-client')
17116
+ */
17117
+ readonly product: string | null;
17118
+ /**
17119
+ * Client library version
17120
+ */
17121
+ readonly version: string | null;
17122
+ /**
17123
+ * Client platform (e.g., 'Python 3.11')
17124
+ */
17125
+ readonly platform: string | null;
17126
+ };
17127
+ export type RmqEnrichedConnection = {
17128
+ /**
17129
+ * Client IP address
17130
+ */
17131
+ readonly source_ip: string;
17132
+ /**
17133
+ * Virtual host name
16626
17134
  */
16627
- source_ip: string;
16628
17135
  readonly vhost: string;
17136
+ /**
17137
+ * Connection establishment timestamp
17138
+ */
17139
+ readonly connected_at: string | null;
17140
+ /**
17141
+ * Connection state: 'running', 'blocked', 'blocking'
17142
+ */
17143
+ readonly state: string;
17144
+ /**
17145
+ * Bytes received on this connection
17146
+ */
17147
+ readonly recv_oct: number;
17148
+ /**
17149
+ * Bytes sent on this connection
17150
+ */
17151
+ readonly send_oct: number;
17152
+ /**
17153
+ * Number of channels on this connection
17154
+ */
17155
+ readonly channels: number;
17156
+ /**
17157
+ * Heartbeat timeout in seconds
17158
+ */
17159
+ readonly timeout: number | null;
17160
+ /**
17161
+ * Client identification properties
17162
+ */
17163
+ client_properties: RmqClientProperties | null;
17164
+ };
17165
+ export type RmqEnrichedUserStatsItem = {
17166
+ /**
17167
+ * RabbitMQ username (corresponds to EventSubscription UUID)
17168
+ */
17169
+ readonly username: string;
17170
+ /**
17171
+ * List of active connections with detailed statistics
17172
+ */
17173
+ readonly connections: Array<RmqEnrichedConnection>;
17174
+ };
17175
+ export type RmqListener = {
17176
+ /**
17177
+ * Protocol name (e.g., 'amqp', 'http', 'clustering')
17178
+ */
17179
+ readonly protocol: string;
17180
+ /**
17181
+ * Listening port number
17182
+ */
17183
+ readonly port: number;
17184
+ };
17185
+ export type RmqMessageStats = {
17186
+ /**
17187
+ * Total messages published
17188
+ */
17189
+ readonly publish: number;
17190
+ /**
17191
+ * Messages published per second
17192
+ */
17193
+ readonly publish_rate: number;
17194
+ /**
17195
+ * Total messages delivered to consumers
17196
+ */
17197
+ readonly deliver: number;
17198
+ /**
17199
+ * Messages delivered per second
17200
+ */
17201
+ readonly deliver_rate: number;
17202
+ /**
17203
+ * Total messages confirmed by broker
17204
+ */
17205
+ readonly confirm: number;
17206
+ /**
17207
+ * Messages confirmed per second
17208
+ */
17209
+ readonly confirm_rate: number;
17210
+ /**
17211
+ * Total messages acknowledged by consumers
17212
+ */
17213
+ readonly ack: number;
17214
+ /**
17215
+ * Messages acknowledged per second
17216
+ */
17217
+ readonly ack_rate: number;
17218
+ };
17219
+ export type RmqObjectTotals = {
17220
+ /**
17221
+ * Total active connections
17222
+ */
17223
+ readonly connections: number;
17224
+ /**
17225
+ * Total active channels
17226
+ */
17227
+ readonly channels: number;
17228
+ /**
17229
+ * Total exchanges
17230
+ */
17231
+ readonly exchanges: number;
17232
+ /**
17233
+ * Total queues
17234
+ */
17235
+ readonly queues: number;
17236
+ /**
17237
+ * Total active consumers
17238
+ */
17239
+ readonly consumers: number;
17240
+ };
17241
+ export type RmqOverview = {
17242
+ /**
17243
+ * Name of the RabbitMQ cluster
17244
+ */
17245
+ readonly cluster_name: string;
17246
+ /**
17247
+ * RabbitMQ server version
17248
+ */
17249
+ readonly rabbitmq_version: string;
17250
+ /**
17251
+ * Erlang/OTP runtime version
17252
+ */
17253
+ readonly erlang_version: string;
17254
+ /**
17255
+ * Message throughput statistics with rates
17256
+ */
17257
+ message_stats: RmqMessageStats;
17258
+ /**
17259
+ * Global queue message counts
17260
+ */
17261
+ queue_totals: RmqQueueTotals;
17262
+ /**
17263
+ * Counts of connections, channels, queues, etc.
17264
+ */
17265
+ object_totals: RmqObjectTotals;
17266
+ /**
17267
+ * Current RabbitMQ node name
17268
+ */
17269
+ readonly node: string;
17270
+ /**
17271
+ * Active protocol listeners
17272
+ */
17273
+ readonly listeners: Array<RmqListener>;
17274
+ };
17275
+ export type RmqPurgeRequestRequest = {
17276
+ /**
17277
+ * Virtual host name containing the queue(s)
17278
+ */
17279
+ vhost?: string;
17280
+ /**
17281
+ * Specific queue name (requires vhost)
17282
+ */
17283
+ queue_name?: string;
17284
+ /**
17285
+ * Glob pattern to match queue names (e.g., '*_resource'). Requires vhost.
17286
+ */
17287
+ queue_pattern?: string;
17288
+ /**
17289
+ * If true, purge all subscription queues across all vhosts
17290
+ */
17291
+ purge_all_subscription_queues?: boolean;
17292
+ /**
17293
+ * If true, delete the queue(s) entirely instead of just purging messages
17294
+ */
17295
+ delete_queue?: boolean;
17296
+ /**
17297
+ * If true, delete all subscription queues across all vhosts
17298
+ */
17299
+ delete_all_subscription_queues?: boolean;
17300
+ };
17301
+ export type RmqPurgeResponse = {
17302
+ /**
17303
+ * Number of queues that were purged
17304
+ */
17305
+ readonly purged_queues: number;
17306
+ /**
17307
+ * Total number of messages that were purged
17308
+ */
17309
+ readonly purged_messages: number;
17310
+ /**
17311
+ * Number of queues that were deleted
17312
+ */
17313
+ readonly deleted_queues: number;
17314
+ };
17315
+ export type RmqQueueStats = {
17316
+ /**
17317
+ * Queue name (e.g., 'subscription_{uuid}_offering_{uuid}_{type}')
17318
+ */
17319
+ readonly name: string;
17320
+ /**
17321
+ * Total number of messages in the queue
17322
+ */
17323
+ readonly messages: number;
17324
+ /**
17325
+ * Number of messages ready for delivery
17326
+ */
17327
+ readonly messages_ready: number;
17328
+ /**
17329
+ * Number of messages awaiting acknowledgement
17330
+ */
17331
+ readonly messages_unacknowledged: number;
17332
+ /**
17333
+ * Number of active consumers for this queue
17334
+ */
17335
+ readonly consumers: number;
17336
+ /**
17337
+ * Parsed subscription UUID from queue name
17338
+ */
17339
+ readonly subscription_uuid: string | null;
17340
+ /**
17341
+ * Parsed offering UUID from queue name
17342
+ */
17343
+ readonly offering_uuid: string | null;
17344
+ /**
17345
+ * Parsed object type from queue name (e.g., 'resource', 'order')
17346
+ */
17347
+ readonly object_type: string | null;
17348
+ /**
17349
+ * Message TTL in milliseconds
17350
+ */
17351
+ readonly message_ttl: number | null;
17352
+ /**
17353
+ * Maximum number of messages in queue
17354
+ */
17355
+ readonly max_length: number | null;
17356
+ /**
17357
+ * Maximum total size of messages in bytes
17358
+ */
17359
+ readonly max_length_bytes: number | null;
17360
+ /**
17361
+ * Queue TTL - auto-delete after idle in milliseconds
17362
+ */
17363
+ readonly expires: number | null;
17364
+ /**
17365
+ * Behavior when full: 'drop-head', 'reject-publish', or 'reject-publish-dlx'
17366
+ */
17367
+ readonly overflow: string | null;
17368
+ /**
17369
+ * Dead letter exchange name
17370
+ */
17371
+ readonly dead_letter_exchange: string | null;
17372
+ /**
17373
+ * Dead letter routing key
17374
+ */
17375
+ readonly dead_letter_routing_key: string | null;
17376
+ /**
17377
+ * Maximum priority level (1-255)
17378
+ */
17379
+ readonly max_priority: number | null;
17380
+ /**
17381
+ * Queue mode: 'default' or 'lazy'
17382
+ */
17383
+ readonly queue_mode: string | null;
17384
+ /**
17385
+ * Queue type: 'classic', 'quorum', or 'stream'
17386
+ */
17387
+ readonly queue_type: string | null;
17388
+ };
17389
+ export type RmqQueueTotals = {
17390
+ /**
17391
+ * Total messages across all queues
17392
+ */
17393
+ readonly messages: number;
17394
+ /**
17395
+ * Messages ready for delivery
17396
+ */
17397
+ readonly messages_ready: number;
17398
+ /**
17399
+ * Messages awaiting acknowledgement
17400
+ */
17401
+ readonly messages_unacknowledged: number;
17402
+ };
17403
+ export type RmqStatsError = {
17404
+ /**
17405
+ * Error message describing what went wrong
17406
+ */
17407
+ readonly error: string;
17408
+ };
17409
+ export type RmqStatsResponse = {
17410
+ /**
17411
+ * List of vhosts with their subscription queues
17412
+ */
17413
+ readonly vhosts: Array<RmqVhostStats>;
17414
+ /**
17415
+ * Total messages across all subscription queues
17416
+ */
17417
+ readonly total_messages: number;
17418
+ /**
17419
+ * Total number of subscription queues
17420
+ */
17421
+ readonly total_queues: number;
17422
+ };
17423
+ export type RmqStatsUser = {
17424
+ /**
17425
+ * Waldur user UUID
17426
+ */
17427
+ readonly uuid: string;
17428
+ /**
17429
+ * Waldur username
17430
+ */
17431
+ readonly username: string;
17432
+ /**
17433
+ * User's full name
17434
+ */
17435
+ readonly full_name: string;
16629
17436
  };
16630
17437
  export type RmqSubscription = {
16631
17438
  readonly created: string;
@@ -16635,15 +17442,29 @@ export type RmqSubscription = {
16635
17442
  */
16636
17443
  source_ip: string;
16637
17444
  };
16638
- export type RmqUserStatsItem = {
16639
- readonly username: string;
16640
- readonly connections: Array<RmqConnection>;
16641
- };
16642
17445
  export type RmqVHostStatsItem = {
16643
17446
  readonly name: string;
16644
17447
  waldur_user: RmqWaldurUser;
16645
17448
  readonly subscriptions: Array<RmqSubscription>;
16646
17449
  };
17450
+ export type RmqVhostStats = {
17451
+ /**
17452
+ * Virtual host name (corresponds to Waldur user UUID)
17453
+ */
17454
+ readonly name: string;
17455
+ /**
17456
+ * Waldur user associated with this vhost
17457
+ */
17458
+ user: RmqStatsUser | null;
17459
+ /**
17460
+ * List of subscription queues in this vhost
17461
+ */
17462
+ readonly queues: Array<RmqQueueStats>;
17463
+ /**
17464
+ * Total messages across all queues in this vhost
17465
+ */
17466
+ readonly total_messages: number;
17467
+ };
16647
17468
  export type RmqWaldurUser = {
16648
17469
  readonly full_name: string;
16649
17470
  readonly username: string;
@@ -17882,6 +18703,7 @@ export type ToSConsentDashboard = {
17882
18703
  readonly revoked_consents_over_time: Array<TimeSeriesToSData>;
17883
18704
  readonly tos_version_adoption: Array<VersionAdoption>;
17884
18705
  readonly active_users_over_time: Array<TimeSeriesToSData>;
18706
+ readonly accepted_consents_over_time: Array<TimeSeriesToSData>;
17885
18707
  };
17886
18708
  export type TokenRequest = {
17887
18709
  /**
@@ -17889,10 +18711,38 @@ export type TokenRequest = {
17889
18711
  */
17890
18712
  token: string;
17891
18713
  };
18714
+ export type ToolExecuteRequest = {
18715
+ /**
18716
+ * Name of the tool to execute.
18717
+ */
18718
+ tool: string;
18719
+ /**
18720
+ * Tool arguments.
18721
+ */
18722
+ arguments?: unknown;
18723
+ };
17892
18724
  export type TotalCustomerCost = {
17893
18725
  readonly total: number;
17894
18726
  readonly price: number;
17895
18727
  };
18728
+ export type TransactionStats = {
18729
+ /**
18730
+ * Total committed transactions
18731
+ */
18732
+ readonly committed: number;
18733
+ /**
18734
+ * Total rolled back transactions
18735
+ */
18736
+ readonly rolled_back: number;
18737
+ /**
18738
+ * Percentage of transactions that were rolled back
18739
+ */
18740
+ readonly rollback_ratio_percent: number;
18741
+ /**
18742
+ * Total number of deadlocks detected
18743
+ */
18744
+ readonly deadlocks: number;
18745
+ };
17896
18746
  export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
17897
18747
  export type TriggerCoiDetectionRequest = {
17898
18748
  job_type?: TriggerCoiDetectionJobTypeEnum;
@@ -18045,16 +18895,19 @@ export type UserAction = {
18045
18895
  * UI-Router state name for navigation
18046
18896
  */
18047
18897
  route_name?: string;
18048
- /**
18049
- * Parameters for route navigation
18050
- */
18051
- route_params?: string;
18898
+ readonly route_params: {
18899
+ [key: string]: unknown;
18900
+ };
18052
18901
  project_name?: string;
18053
18902
  project_uuid?: string | null;
18054
18903
  organization_name?: string;
18055
18904
  organization_uuid?: string | null;
18056
18905
  offering_name?: string;
18906
+ offering_uuid?: string | null;
18057
18907
  offering_type?: string;
18908
+ resource_name?: string;
18909
+ resource_uuid?: string | null;
18910
+ order_type?: string;
18058
18911
  };
18059
18912
  export type UserActionExecution = {
18060
18913
  readonly id: number;
@@ -19977,7 +20830,7 @@ export type ConstanceSettingsRequestForm = {
19977
20830
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
19978
20831
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
19979
20832
  DISABLED_OFFERING_TYPES?: Array<string>;
19980
- ONBOARDING_COUNTRY?: string;
20833
+ ONBOARDING_VALIDATION_METHODS?: Array<string>;
19981
20834
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
19982
20835
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
19983
20836
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -20005,6 +20858,12 @@ export type ConstanceSettingsRequestForm = {
20005
20858
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
20006
20859
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
20007
20860
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
20861
+ USER_ACTIONS_ENABLED?: boolean;
20862
+ USER_ACTIONS_PENDING_ORDER_HOURS?: number;
20863
+ USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
20864
+ USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
20865
+ USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
20866
+ USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
20008
20867
  };
20009
20868
  export type ConstanceSettingsRequestMultipart = {
20010
20869
  SITE_NAME?: string;
@@ -20170,7 +21029,7 @@ export type ConstanceSettingsRequestMultipart = {
20170
21029
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
20171
21030
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
20172
21031
  DISABLED_OFFERING_TYPES?: Array<string>;
20173
- ONBOARDING_COUNTRY?: string;
21032
+ ONBOARDING_VALIDATION_METHODS?: Array<string>;
20174
21033
  ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
20175
21034
  ONBOARDING_ARIREGISTER_BASE_URL?: string;
20176
21035
  ONBOARDING_ARIREGISTER_USERNAME?: string;
@@ -20198,6 +21057,12 @@ export type ConstanceSettingsRequestMultipart = {
20198
21057
  SOFTWARE_CATALOG_UPDATE_EXISTING_PACKAGES?: boolean;
20199
21058
  SOFTWARE_CATALOG_CLEANUP_ENABLED?: boolean;
20200
21059
  SOFTWARE_CATALOG_RETENTION_DAYS?: number;
21060
+ USER_ACTIONS_ENABLED?: boolean;
21061
+ USER_ACTIONS_PENDING_ORDER_HOURS?: number;
21062
+ USER_ACTIONS_HIGH_URGENCY_NOTIFICATION?: boolean;
21063
+ USER_ACTIONS_NOTIFICATION_THRESHOLD?: number;
21064
+ USER_ACTIONS_EXECUTION_RETENTION_DAYS?: number;
21065
+ USER_ACTIONS_DEFAULT_EXPIRATION_REMINDERS?: Array<string>;
20201
21066
  };
20202
21067
  export type PaymentRequestForm = {
20203
21068
  profile: string;
@@ -25421,6 +26286,18 @@ export type CeleryStatsRetrieveResponses = {
25421
26286
  200: CeleryStatsResponse;
25422
26287
  };
25423
26288
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
26289
+ export type ChatToolsExecuteData = {
26290
+ body: ToolExecuteRequest;
26291
+ path?: never;
26292
+ query?: never;
26293
+ url: '/api/chat-tools/execute/';
26294
+ };
26295
+ export type ChatToolsExecuteResponses = {
26296
+ 200: {
26297
+ [key: string]: unknown;
26298
+ };
26299
+ };
26300
+ export type ChatToolsExecuteResponse = ChatToolsExecuteResponses[keyof ChatToolsExecuteResponses];
25424
26301
  export type ChatInvokeData = {
25425
26302
  body?: never;
25426
26303
  path?: never;
@@ -25438,11 +26315,9 @@ export type ChatStreamData = {
25438
26315
  url: '/api/chat/stream/';
25439
26316
  };
25440
26317
  export type ChatStreamResponses = {
25441
- /**
25442
- * LLM chat streamed response.
25443
- */
25444
- 200: unknown;
26318
+ 200: ChatResponse;
25445
26319
  };
26320
+ export type ChatStreamResponse = ChatStreamResponses[keyof ChatStreamResponses];
25446
26321
  export type ChecklistsAdminListData = {
25447
26322
  body?: never;
25448
26323
  path?: never;
@@ -25452,13 +26327,13 @@ export type ChecklistsAdminListData = {
25452
26327
  *
25453
26328
  *
25454
26329
  */
25455
- checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
26330
+ checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
25456
26331
  /**
25457
26332
  * Filter by multiple checklist types
25458
26333
  *
25459
26334
  *
25460
26335
  */
25461
- checklist_type__in?: Array<'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
26336
+ checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
25462
26337
  /**
25463
26338
  * A page number within the paginated result set.
25464
26339
  */
@@ -25483,13 +26358,13 @@ export type ChecklistsAdminCountData = {
25483
26358
  *
25484
26359
  *
25485
26360
  */
25486
- checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
26361
+ checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
25487
26362
  /**
25488
26363
  * Filter by multiple checklist types
25489
26364
  *
25490
26365
  *
25491
26366
  */
25492
- checklist_type__in?: Array<'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
26367
+ checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
25493
26368
  /**
25494
26369
  * A page number within the paginated result set.
25495
26370
  */
@@ -25835,7 +26710,7 @@ export type ChecklistsAdminQuestionsListData = {
25835
26710
  *
25836
26711
  *
25837
26712
  */
25838
- checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
26713
+ checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
25839
26714
  checklist_uuid?: string;
25840
26715
  /**
25841
26716
  * Filter questions that have onboarding metadata mapping
@@ -25865,7 +26740,7 @@ export type ChecklistsAdminQuestionsCountData = {
25865
26740
  *
25866
26741
  *
25867
26742
  */
25868
- checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
26743
+ checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
25869
26744
  checklist_uuid?: string;
25870
26745
  /**
25871
26746
  * Filter questions that have onboarding metadata mapping
@@ -26011,13 +26886,13 @@ export type ChecklistsAdminChecklistQuestionsData = {
26011
26886
  *
26012
26887
  *
26013
26888
  */
26014
- checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
26889
+ checklist_type?: 'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
26015
26890
  /**
26016
26891
  * Filter by multiple checklist types
26017
26892
  *
26018
26893
  *
26019
26894
  */
26020
- checklist_type__in?: Array<'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
26895
+ checklist_type__in?: Array<'offering_compliance' | 'onboarding_customer' | 'onboarding_intent' | 'project_compliance' | 'project_metadata' | 'proposal_compliance'>;
26021
26896
  /**
26022
26897
  * A page number within the paginated result set.
26023
26898
  */
@@ -27466,16 +28341,16 @@ export type DailyQuotasRetrieveResponses = {
27466
28341
  };
27467
28342
  };
27468
28343
  export type DailyQuotasRetrieveResponse = DailyQuotasRetrieveResponses[keyof DailyQuotasRetrieveResponses];
27469
- export type DatabaseStatsListData = {
28344
+ export type DatabaseStatsRetrieveData = {
27470
28345
  body?: never;
27471
28346
  path?: never;
27472
28347
  query?: never;
27473
28348
  url: '/api/database-stats/';
27474
28349
  };
27475
- export type DatabaseStatsListResponses = {
27476
- 200: Array<TableSize>;
28350
+ export type DatabaseStatsRetrieveResponses = {
28351
+ 200: DatabaseStatsResponse;
27477
28352
  };
27478
- export type DatabaseStatsListResponse = DatabaseStatsListResponses[keyof DatabaseStatsListResponses];
28353
+ export type DatabaseStatsRetrieveResponse = DatabaseStatsRetrieveResponses[keyof DatabaseStatsRetrieveResponses];
27479
28354
  export type DigitaloceanDropletsListData = {
27480
28355
  body?: never;
27481
28356
  path?: never;
@@ -34124,7 +34999,7 @@ export type MarketplaceOfferingUsersListData = {
34124
34999
  * Created after
34125
35000
  */
34126
35001
  created?: string;
34127
- field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
35002
+ field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
34128
35003
  /**
34129
35004
  * User Has Consent
34130
35005
  */
@@ -34296,7 +35171,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
34296
35171
  uuid: string;
34297
35172
  };
34298
35173
  query?: {
34299
- field?: Array<'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
35174
+ field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_restricted' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_email' | 'user_full_name' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
34300
35175
  };
34301
35176
  url: '/api/marketplace-offering-users/{uuid}/';
34302
35177
  };
@@ -42108,6 +42983,22 @@ export type MarketplaceServiceProvidersUpdateUserResponses = {
42108
42983
  200: UserRoleExpirationTime;
42109
42984
  };
42110
42985
  export type MarketplaceServiceProvidersUpdateUserResponse = MarketplaceServiceProvidersUpdateUserResponses[keyof MarketplaceServiceProvidersUpdateUserResponses];
42986
+ export type MarketplaceSiteAgentConnectionStatsRetrieveData = {
42987
+ body?: never;
42988
+ path?: never;
42989
+ query?: never;
42990
+ url: '/api/marketplace-site-agent-connection-stats/';
42991
+ };
42992
+ export type MarketplaceSiteAgentConnectionStatsRetrieveErrors = {
42993
+ /**
42994
+ * RabbitMQ unavailable
42995
+ */
42996
+ 503: unknown;
42997
+ };
42998
+ export type MarketplaceSiteAgentConnectionStatsRetrieveResponses = {
42999
+ 200: AgentConnectionStatsResponse;
43000
+ };
43001
+ export type MarketplaceSiteAgentConnectionStatsRetrieveResponse = MarketplaceSiteAgentConnectionStatsRetrieveResponses[keyof MarketplaceSiteAgentConnectionStatsRetrieveResponses];
42111
43002
  export type MarketplaceSiteAgentIdentitiesListData = {
42112
43003
  body?: never;
42113
43004
  path?: never;
@@ -42118,6 +43009,10 @@ export type MarketplaceSiteAgentIdentitiesListData = {
42118
43009
  last_restarted?: string;
42119
43010
  name?: string;
42120
43011
  offering_uuid?: string;
43012
+ /**
43013
+ * Has no services
43014
+ */
43015
+ orphaned?: boolean;
42121
43016
  /**
42122
43017
  * A page number within the paginated result set.
42123
43018
  */
@@ -42144,6 +43039,10 @@ export type MarketplaceSiteAgentIdentitiesCountData = {
42144
43039
  last_restarted?: string;
42145
43040
  name?: string;
42146
43041
  offering_uuid?: string;
43042
+ /**
43043
+ * Has no services
43044
+ */
43045
+ orphaned?: boolean;
42147
43046
  /**
42148
43047
  * A page number within the paginated result set.
42149
43048
  */
@@ -42237,6 +43136,16 @@ export type MarketplaceSiteAgentIdentitiesRegisterServiceResponses = {
42237
43136
  201: AgentService;
42238
43137
  };
42239
43138
  export type MarketplaceSiteAgentIdentitiesRegisterServiceResponse = MarketplaceSiteAgentIdentitiesRegisterServiceResponses[keyof MarketplaceSiteAgentIdentitiesRegisterServiceResponses];
43139
+ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedData = {
43140
+ body?: CleanupRequestRequest;
43141
+ path?: never;
43142
+ query?: never;
43143
+ url: '/api/marketplace-site-agent-identities/cleanup_orphaned/';
43144
+ };
43145
+ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
43146
+ 200: CleanupResponse;
43147
+ };
43148
+ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
42240
43149
  export type MarketplaceSiteAgentProcessorsListData = {
42241
43150
  body?: never;
42242
43151
  path?: never;
@@ -42247,6 +43156,10 @@ export type MarketplaceSiteAgentProcessorsListData = {
42247
43156
  * Last run after
42248
43157
  */
42249
43158
  last_run?: string;
43159
+ /**
43160
+ * Last run before
43161
+ */
43162
+ last_run_before?: string;
42250
43163
  /**
42251
43164
  * A page number within the paginated result set.
42252
43165
  */
@@ -42256,6 +43169,10 @@ export type MarketplaceSiteAgentProcessorsListData = {
42256
43169
  */
42257
43170
  page_size?: number;
42258
43171
  service_uuid?: string;
43172
+ /**
43173
+ * Last run more than 1 hour ago
43174
+ */
43175
+ stale?: boolean;
42259
43176
  };
42260
43177
  url: '/api/marketplace-site-agent-processors/';
42261
43178
  };
@@ -42273,6 +43190,10 @@ export type MarketplaceSiteAgentProcessorsCountData = {
42273
43190
  * Last run after
42274
43191
  */
42275
43192
  last_run?: string;
43193
+ /**
43194
+ * Last run before
43195
+ */
43196
+ last_run_before?: string;
42276
43197
  /**
42277
43198
  * A page number within the paginated result set.
42278
43199
  */
@@ -42282,6 +43203,10 @@ export type MarketplaceSiteAgentProcessorsCountData = {
42282
43203
  */
42283
43204
  page_size?: number;
42284
43205
  service_uuid?: string;
43206
+ /**
43207
+ * Last run more than 1 hour ago
43208
+ */
43209
+ stale?: boolean;
42285
43210
  };
42286
43211
  url: '/api/marketplace-site-agent-processors/';
42287
43212
  };
@@ -42291,6 +43216,21 @@ export type MarketplaceSiteAgentProcessorsCountResponses = {
42291
43216
  */
42292
43217
  200: unknown;
42293
43218
  };
43219
+ export type MarketplaceSiteAgentProcessorsDestroyData = {
43220
+ body?: never;
43221
+ path: {
43222
+ uuid: string;
43223
+ };
43224
+ query?: never;
43225
+ url: '/api/marketplace-site-agent-processors/{uuid}/';
43226
+ };
43227
+ export type MarketplaceSiteAgentProcessorsDestroyResponses = {
43228
+ /**
43229
+ * No response body
43230
+ */
43231
+ 204: void;
43232
+ };
43233
+ export type MarketplaceSiteAgentProcessorsDestroyResponse = MarketplaceSiteAgentProcessorsDestroyResponses[keyof MarketplaceSiteAgentProcessorsDestroyResponses];
42294
43234
  export type MarketplaceSiteAgentProcessorsRetrieveData = {
42295
43235
  body?: never;
42296
43236
  path: {
@@ -42309,6 +43249,14 @@ export type MarketplaceSiteAgentServicesListData = {
42309
43249
  query?: {
42310
43250
  identity_uuid?: string;
42311
43251
  mode?: string;
43252
+ /**
43253
+ * Modified after
43254
+ */
43255
+ modified_after?: string;
43256
+ /**
43257
+ * Modified before
43258
+ */
43259
+ modified_before?: string;
42312
43260
  /**
42313
43261
  * A page number within the paginated result set.
42314
43262
  */
@@ -42317,6 +43265,10 @@ export type MarketplaceSiteAgentServicesListData = {
42317
43265
  * Number of results to return per page.
42318
43266
  */
42319
43267
  page_size?: number;
43268
+ /**
43269
+ * Inactive for more than 24 hours
43270
+ */
43271
+ stale?: boolean;
42320
43272
  state?: Array<1 | 2 | 3>;
42321
43273
  };
42322
43274
  url: '/api/marketplace-site-agent-services/';
@@ -42331,6 +43283,14 @@ export type MarketplaceSiteAgentServicesCountData = {
42331
43283
  query?: {
42332
43284
  identity_uuid?: string;
42333
43285
  mode?: string;
43286
+ /**
43287
+ * Modified after
43288
+ */
43289
+ modified_after?: string;
43290
+ /**
43291
+ * Modified before
43292
+ */
43293
+ modified_before?: string;
42334
43294
  /**
42335
43295
  * A page number within the paginated result set.
42336
43296
  */
@@ -42339,6 +43299,10 @@ export type MarketplaceSiteAgentServicesCountData = {
42339
43299
  * Number of results to return per page.
42340
43300
  */
42341
43301
  page_size?: number;
43302
+ /**
43303
+ * Inactive for more than 24 hours
43304
+ */
43305
+ stale?: boolean;
42342
43306
  state?: Array<1 | 2 | 3>;
42343
43307
  };
42344
43308
  url: '/api/marketplace-site-agent-services/';
@@ -42349,6 +43313,21 @@ export type MarketplaceSiteAgentServicesCountResponses = {
42349
43313
  */
42350
43314
  200: unknown;
42351
43315
  };
43316
+ export type MarketplaceSiteAgentServicesDestroyData = {
43317
+ body?: never;
43318
+ path: {
43319
+ uuid: string;
43320
+ };
43321
+ query?: never;
43322
+ url: '/api/marketplace-site-agent-services/{uuid}/';
43323
+ };
43324
+ export type MarketplaceSiteAgentServicesDestroyResponses = {
43325
+ /**
43326
+ * No response body
43327
+ */
43328
+ 204: void;
43329
+ };
43330
+ export type MarketplaceSiteAgentServicesDestroyResponse = MarketplaceSiteAgentServicesDestroyResponses[keyof MarketplaceSiteAgentServicesDestroyResponses];
42352
43331
  export type MarketplaceSiteAgentServicesRetrieveData = {
42353
43332
  body?: never;
42354
43333
  path: {
@@ -42386,6 +43365,36 @@ export type MarketplaceSiteAgentServicesSetStatisticsResponses = {
42386
43365
  200: AgentService;
42387
43366
  };
42388
43367
  export type MarketplaceSiteAgentServicesSetStatisticsResponse = MarketplaceSiteAgentServicesSetStatisticsResponses[keyof MarketplaceSiteAgentServicesSetStatisticsResponses];
43368
+ export type MarketplaceSiteAgentServicesCleanupStaleData = {
43369
+ body?: CleanupRequestRequest;
43370
+ path?: never;
43371
+ query?: never;
43372
+ url: '/api/marketplace-site-agent-services/cleanup_stale/';
43373
+ };
43374
+ export type MarketplaceSiteAgentServicesCleanupStaleResponses = {
43375
+ 200: CleanupResponse;
43376
+ };
43377
+ export type MarketplaceSiteAgentServicesCleanupStaleResponse = MarketplaceSiteAgentServicesCleanupStaleResponses[keyof MarketplaceSiteAgentServicesCleanupStaleResponses];
43378
+ export type MarketplaceSiteAgentStatsRetrieveData = {
43379
+ body?: never;
43380
+ path?: never;
43381
+ query?: never;
43382
+ url: '/api/marketplace-site-agent-stats/';
43383
+ };
43384
+ export type MarketplaceSiteAgentStatsRetrieveResponses = {
43385
+ 200: AgentStatsResponse;
43386
+ };
43387
+ export type MarketplaceSiteAgentStatsRetrieveResponse = MarketplaceSiteAgentStatsRetrieveResponses[keyof MarketplaceSiteAgentStatsRetrieveResponses];
43388
+ export type MarketplaceSiteAgentTaskStatsRetrieveData = {
43389
+ body?: never;
43390
+ path?: never;
43391
+ query?: never;
43392
+ url: '/api/marketplace-site-agent-task-stats/';
43393
+ };
43394
+ export type MarketplaceSiteAgentTaskStatsRetrieveResponses = {
43395
+ 200: AgentTaskStatsResponse;
43396
+ };
43397
+ export type MarketplaceSiteAgentTaskStatsRetrieveResponse = MarketplaceSiteAgentTaskStatsRetrieveResponses[keyof MarketplaceSiteAgentTaskStatsRetrieveResponses];
42389
43398
  export type MarketplaceSlurmPeriodicUsagePoliciesListData = {
42390
43399
  body?: never;
42391
43400
  path?: never;
@@ -44683,111 +45692,6 @@ export type NotificationMessagesEnableResponses = {
44683
45692
  */
44684
45693
  200: unknown;
44685
45694
  };
44686
- export type OnboardingCountryConfigsListData = {
44687
- body?: never;
44688
- path?: never;
44689
- query?: {
44690
- country?: string;
44691
- is_active?: boolean;
44692
- /**
44693
- * A page number within the paginated result set.
44694
- */
44695
- page?: number;
44696
- /**
44697
- * Number of results to return per page.
44698
- */
44699
- page_size?: number;
44700
- };
44701
- url: '/api/onboarding-country-configs/';
44702
- };
44703
- export type OnboardingCountryConfigsListResponses = {
44704
- 200: Array<OnboardingCountryChecklistConfiguration>;
44705
- };
44706
- export type OnboardingCountryConfigsListResponse = OnboardingCountryConfigsListResponses[keyof OnboardingCountryConfigsListResponses];
44707
- export type OnboardingCountryConfigsCountData = {
44708
- body?: never;
44709
- path?: never;
44710
- query?: {
44711
- country?: string;
44712
- is_active?: boolean;
44713
- /**
44714
- * A page number within the paginated result set.
44715
- */
44716
- page?: number;
44717
- /**
44718
- * Number of results to return per page.
44719
- */
44720
- page_size?: number;
44721
- };
44722
- url: '/api/onboarding-country-configs/';
44723
- };
44724
- export type OnboardingCountryConfigsCountResponses = {
44725
- /**
44726
- * No response body
44727
- */
44728
- 200: unknown;
44729
- };
44730
- export type OnboardingCountryConfigsCreateData = {
44731
- body: OnboardingCountryChecklistConfigurationRequest;
44732
- path?: never;
44733
- query?: never;
44734
- url: '/api/onboarding-country-configs/';
44735
- };
44736
- export type OnboardingCountryConfigsCreateResponses = {
44737
- 201: OnboardingCountryChecklistConfiguration;
44738
- };
44739
- export type OnboardingCountryConfigsCreateResponse = OnboardingCountryConfigsCreateResponses[keyof OnboardingCountryConfigsCreateResponses];
44740
- export type OnboardingCountryConfigsDestroyData = {
44741
- body?: never;
44742
- path: {
44743
- uuid: string;
44744
- };
44745
- query?: never;
44746
- url: '/api/onboarding-country-configs/{uuid}/';
44747
- };
44748
- export type OnboardingCountryConfigsDestroyResponses = {
44749
- /**
44750
- * No response body
44751
- */
44752
- 204: void;
44753
- };
44754
- export type OnboardingCountryConfigsDestroyResponse = OnboardingCountryConfigsDestroyResponses[keyof OnboardingCountryConfigsDestroyResponses];
44755
- export type OnboardingCountryConfigsRetrieveData = {
44756
- body?: never;
44757
- path: {
44758
- uuid: string;
44759
- };
44760
- query?: never;
44761
- url: '/api/onboarding-country-configs/{uuid}/';
44762
- };
44763
- export type OnboardingCountryConfigsRetrieveResponses = {
44764
- 200: OnboardingCountryChecklistConfiguration;
44765
- };
44766
- export type OnboardingCountryConfigsRetrieveResponse = OnboardingCountryConfigsRetrieveResponses[keyof OnboardingCountryConfigsRetrieveResponses];
44767
- export type OnboardingCountryConfigsPartialUpdateData = {
44768
- body?: PatchedOnboardingCountryChecklistConfigurationRequest;
44769
- path: {
44770
- uuid: string;
44771
- };
44772
- query?: never;
44773
- url: '/api/onboarding-country-configs/{uuid}/';
44774
- };
44775
- export type OnboardingCountryConfigsPartialUpdateResponses = {
44776
- 200: OnboardingCountryChecklistConfiguration;
44777
- };
44778
- export type OnboardingCountryConfigsPartialUpdateResponse = OnboardingCountryConfigsPartialUpdateResponses[keyof OnboardingCountryConfigsPartialUpdateResponses];
44779
- export type OnboardingCountryConfigsUpdateData = {
44780
- body: OnboardingCountryChecklistConfigurationRequest;
44781
- path: {
44782
- uuid: string;
44783
- };
44784
- query?: never;
44785
- url: '/api/onboarding-country-configs/{uuid}/';
44786
- };
44787
- export type OnboardingCountryConfigsUpdateResponses = {
44788
- 200: OnboardingCountryChecklistConfiguration;
44789
- };
44790
- export type OnboardingCountryConfigsUpdateResponse = OnboardingCountryConfigsUpdateResponses[keyof OnboardingCountryConfigsUpdateResponses];
44791
45695
  export type OnboardingJustificationsListData = {
44792
45696
  body?: never;
44793
45697
  path?: never;
@@ -45125,7 +46029,7 @@ export type OnboardingVerificationsCountResponses = {
45125
46029
  200: unknown;
45126
46030
  };
45127
46031
  export type OnboardingVerificationsCreateData = {
45128
- body: OnboardingVerificationRequest;
46032
+ body?: OnboardingVerificationRequest;
45129
46033
  path?: never;
45130
46034
  query?: never;
45131
46035
  url: '/api/onboarding-verifications/';
@@ -45174,7 +46078,7 @@ export type OnboardingVerificationsPartialUpdateResponses = {
45174
46078
  };
45175
46079
  export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
45176
46080
  export type OnboardingVerificationsUpdateData = {
45177
- body: OnboardingVerificationRequest;
46081
+ body?: OnboardingVerificationRequest;
45178
46082
  path: {
45179
46083
  uuid: string;
45180
46084
  };
@@ -45192,22 +46096,16 @@ export type OnboardingVerificationsChecklistRetrieveData = {
45192
46096
  };
45193
46097
  query?: {
45194
46098
  /**
45195
- * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
46099
+ * Type of checklist to retrieve (customer or intent). Defaults to intent.
46100
+ */
46101
+ checklist_type?: 'customer' | 'intent';
46102
+ /**
46103
+ * If true, returns all questions including hidden ones.
45196
46104
  */
45197
46105
  include_all?: boolean;
45198
46106
  };
45199
46107
  url: '/api/onboarding-verifications/{uuid}/checklist/';
45200
46108
  };
45201
- export type OnboardingVerificationsChecklistRetrieveErrors = {
45202
- /**
45203
- * No checklist configured
45204
- */
45205
- 400: unknown;
45206
- /**
45207
- * Object not found
45208
- */
45209
- 404: unknown;
45210
- };
45211
46109
  export type OnboardingVerificationsChecklistRetrieveResponses = {
45212
46110
  200: ChecklistResponse;
45213
46111
  };
@@ -45217,19 +46115,14 @@ export type OnboardingVerificationsCompletionStatusRetrieveData = {
45217
46115
  path: {
45218
46116
  uuid: string;
45219
46117
  };
45220
- query?: never;
46118
+ query?: {
46119
+ /**
46120
+ * Type of checklist to retrieve (customer or intent). Defaults to intent.
46121
+ */
46122
+ checklist_type?: 'customer' | 'intent';
46123
+ };
45221
46124
  url: '/api/onboarding-verifications/{uuid}/completion_status/';
45222
46125
  };
45223
- export type OnboardingVerificationsCompletionStatusRetrieveErrors = {
45224
- /**
45225
- * No checklist configured
45226
- */
45227
- 400: unknown;
45228
- /**
45229
- * Object not found
45230
- */
45231
- 404: unknown;
45232
- };
45233
46126
  export type OnboardingVerificationsCompletionStatusRetrieveResponses = {
45234
46127
  200: ChecklistCompletion;
45235
46128
  };
@@ -45266,20 +46159,42 @@ export type OnboardingVerificationsSubmitAnswersData = {
45266
46159
  query?: never;
45267
46160
  url: '/api/onboarding-verifications/{uuid}/submit_answers/';
45268
46161
  };
45269
- export type OnboardingVerificationsSubmitAnswersErrors = {
45270
- /**
45271
- * Validation error or no checklist configured
45272
- */
45273
- 400: unknown;
45274
- /**
45275
- * Object not found
45276
- */
45277
- 404: unknown;
45278
- };
45279
46162
  export type OnboardingVerificationsSubmitAnswersResponses = {
45280
- 200: AnswerSubmitResponse;
46163
+ 200: OnboardingVerification;
45281
46164
  };
45282
46165
  export type OnboardingVerificationsSubmitAnswersResponse = OnboardingVerificationsSubmitAnswersResponses[keyof OnboardingVerificationsSubmitAnswersResponses];
46166
+ export type OnboardingVerificationsAvailableChecklistsRetrieveData = {
46167
+ body?: never;
46168
+ path?: never;
46169
+ query?: {
46170
+ /**
46171
+ * Type of checklist to retrieve (customer, intent, or all). Defaults to all.
46172
+ */
46173
+ checklist_type?: 'customer' | 'intent' | 'all';
46174
+ };
46175
+ url: '/api/onboarding-verifications/available_checklists/';
46176
+ };
46177
+ export type OnboardingVerificationsAvailableChecklistsRetrieveResponses = {
46178
+ 200: AvailableChecklistsResponse;
46179
+ };
46180
+ export type OnboardingVerificationsAvailableChecklistsRetrieveResponse = OnboardingVerificationsAvailableChecklistsRetrieveResponses[keyof OnboardingVerificationsAvailableChecklistsRetrieveResponses];
46181
+ export type OnboardingVerificationsAvailableChecklistsCountData = {
46182
+ body?: never;
46183
+ path?: never;
46184
+ query?: {
46185
+ /**
46186
+ * Type of checklist to retrieve (customer, intent, or all). Defaults to all.
46187
+ */
46188
+ checklist_type?: 'customer' | 'intent' | 'all';
46189
+ };
46190
+ url: '/api/onboarding-verifications/available_checklists/';
46191
+ };
46192
+ export type OnboardingVerificationsAvailableChecklistsCountResponses = {
46193
+ /**
46194
+ * No response body
46195
+ */
46196
+ 200: unknown;
46197
+ };
45283
46198
  export type OnboardingVerificationsChecklistTemplateRetrieveData = {
45284
46199
  body?: never;
45285
46200
  path?: never;
@@ -45323,7 +46238,7 @@ export type OnboardingVerificationsChecklistTemplateCountResponses = {
45323
46238
  200: unknown;
45324
46239
  };
45325
46240
  export type OnboardingVerificationsStartVerificationData = {
45326
- body: OnboardingCompanyValidationRequestRequest;
46241
+ body?: OnboardingCompanyValidationRequestRequest;
45327
46242
  path?: never;
45328
46243
  query?: never;
45329
46244
  url: '/api/onboarding-verifications/start_verification/';
@@ -45332,6 +46247,21 @@ export type OnboardingVerificationsStartVerificationResponses = {
45332
46247
  200: OnboardingVerification;
45333
46248
  };
45334
46249
  export type OnboardingVerificationsStartVerificationResponse = OnboardingVerificationsStartVerificationResponses[keyof OnboardingVerificationsStartVerificationResponses];
46250
+ export type OnboardingPersonIdentifierFieldsRetrieveData = {
46251
+ body?: never;
46252
+ path?: never;
46253
+ query: {
46254
+ /**
46255
+ * Validation method identifier
46256
+ */
46257
+ validation_method: 'ariregister' | 'bolagsverket' | 'breg' | 'wirtschaftscompass';
46258
+ };
46259
+ url: '/api/onboarding/person-identifier-fields/';
46260
+ };
46261
+ export type OnboardingPersonIdentifierFieldsRetrieveResponses = {
46262
+ 200: PersonIdentifierFieldsResponse;
46263
+ };
46264
+ export type OnboardingPersonIdentifierFieldsRetrieveResponse = OnboardingPersonIdentifierFieldsRetrieveResponses[keyof OnboardingPersonIdentifierFieldsRetrieveResponses];
45335
46265
  export type OnboardingSupportedCountriesRetrieveData = {
45336
46266
  body?: never;
45337
46267
  path?: never;
@@ -46970,15 +47900,6 @@ export type OpenportalUnmanagedProjectsMoveProjectData = {
46970
47900
  query?: never;
46971
47901
  url: '/api/openportal-unmanaged-projects/{uuid}/move_project/';
46972
47902
  };
46973
- export type OpenportalUnmanagedProjectsMoveProjectErrors = {
46974
- /**
46975
- * Validation error when trying to move a terminated project
46976
- */
46977
- 400: {
46978
- non_field_errors?: Array<string>;
46979
- };
46980
- };
46981
- export type OpenportalUnmanagedProjectsMoveProjectError = OpenportalUnmanagedProjectsMoveProjectErrors[keyof OpenportalUnmanagedProjectsMoveProjectErrors];
46982
47903
  export type OpenportalUnmanagedProjectsMoveProjectResponses = {
46983
47904
  200: Project;
46984
47905
  };
@@ -49977,7 +50898,12 @@ export type OpenstackRoutersListData = {
49977
50898
  * Number of results to return per page.
49978
50899
  */
49979
50900
  page_size?: number;
49980
- state?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
50901
+ /**
50902
+ * State
50903
+ *
50904
+ *
50905
+ */
50906
+ state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
49981
50907
  /**
49982
50908
  * Tenant URL
49983
50909
  */
@@ -50013,7 +50939,12 @@ export type OpenstackRoutersCountData = {
50013
50939
  * Number of results to return per page.
50014
50940
  */
50015
50941
  page_size?: number;
50016
- state?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
50942
+ /**
50943
+ * State
50944
+ *
50945
+ *
50946
+ */
50947
+ state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
50017
50948
  /**
50018
50949
  * Tenant URL
50019
50950
  */
@@ -53895,15 +54826,6 @@ export type ProjectsMoveProjectData = {
53895
54826
  query?: never;
53896
54827
  url: '/api/projects/{uuid}/move_project/';
53897
54828
  };
53898
- export type ProjectsMoveProjectErrors = {
53899
- /**
53900
- * Validation error when trying to move a terminated project
53901
- */
53902
- 400: {
53903
- non_field_errors?: Array<string>;
53904
- };
53905
- };
53906
- export type ProjectsMoveProjectError = ProjectsMoveProjectErrors[keyof ProjectsMoveProjectErrors];
53907
54829
  export type ProjectsMoveProjectResponses = {
53908
54830
  200: Project;
53909
54831
  };
@@ -56537,6 +57459,50 @@ export type QueryResponses = {
56537
57459
  200: Array<unknown>;
56538
57460
  };
56539
57461
  export type QueryResponse = QueryResponses[keyof QueryResponses];
57462
+ export type RabbitmqOverviewRetrieveData = {
57463
+ body?: never;
57464
+ path?: never;
57465
+ query?: never;
57466
+ url: '/api/rabbitmq-overview/';
57467
+ };
57468
+ export type RabbitmqOverviewRetrieveErrors = {
57469
+ 503: RmqStatsError;
57470
+ };
57471
+ export type RabbitmqOverviewRetrieveError = RabbitmqOverviewRetrieveErrors[keyof RabbitmqOverviewRetrieveErrors];
57472
+ export type RabbitmqOverviewRetrieveResponses = {
57473
+ 200: RmqOverview;
57474
+ };
57475
+ export type RabbitmqOverviewRetrieveResponse = RabbitmqOverviewRetrieveResponses[keyof RabbitmqOverviewRetrieveResponses];
57476
+ export type RabbitmqStatsRetrieveData = {
57477
+ body?: never;
57478
+ path?: never;
57479
+ query?: never;
57480
+ url: '/api/rabbitmq-stats/';
57481
+ };
57482
+ export type RabbitmqStatsRetrieveErrors = {
57483
+ 503: RmqStatsError;
57484
+ };
57485
+ export type RabbitmqStatsRetrieveError = RabbitmqStatsRetrieveErrors[keyof RabbitmqStatsRetrieveErrors];
57486
+ export type RabbitmqStatsRetrieveResponses = {
57487
+ 200: RmqStatsResponse;
57488
+ };
57489
+ export type RabbitmqStatsRetrieveResponse = RabbitmqStatsRetrieveResponses[keyof RabbitmqStatsRetrieveResponses];
57490
+ export type RabbitmqStatsData = {
57491
+ body?: RmqPurgeRequestRequest;
57492
+ path?: never;
57493
+ query?: never;
57494
+ url: '/api/rabbitmq-stats/';
57495
+ };
57496
+ export type RabbitmqStatsErrors = {
57497
+ 400: RmqStatsError;
57498
+ 404: RmqStatsError;
57499
+ 503: RmqStatsError;
57500
+ };
57501
+ export type RabbitmqStatsError = RabbitmqStatsErrors[keyof RabbitmqStatsErrors];
57502
+ export type RabbitmqStatsResponses = {
57503
+ 200: RmqPurgeResponse;
57504
+ };
57505
+ export type RabbitmqStatsResponse = RabbitmqStatsResponses[keyof RabbitmqStatsResponses];
56540
57506
  export type RabbitmqUserStatsListData = {
56541
57507
  body?: never;
56542
57508
  path?: never;
@@ -56553,7 +57519,7 @@ export type RabbitmqUserStatsListData = {
56553
57519
  url: '/api/rabbitmq-user-stats/';
56554
57520
  };
56555
57521
  export type RabbitmqUserStatsListResponses = {
56556
- 200: Array<RmqUserStatsItem>;
57522
+ 200: Array<RmqEnrichedUserStatsItem>;
56557
57523
  };
56558
57524
  export type RabbitmqUserStatsListResponse = RabbitmqUserStatsListResponses[keyof RabbitmqUserStatsListResponses];
56559
57525
  export type RabbitmqVhostStatsListData = {