waldur-js-client 7.9.6-dev.9 → 7.9.7-dev.0

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.
@@ -235,6 +235,123 @@ export type Association = {
235
235
  useridentifier?: string | null;
236
236
  allocation: string;
237
237
  };
238
+ export type AtlassianCredentialsRequest = {
239
+ /**
240
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
241
+ */
242
+ api_url: string;
243
+ /**
244
+ * Authentication method to use
245
+ */
246
+ auth_method: AuthMethodEnum;
247
+ email?: string;
248
+ token?: string;
249
+ personal_access_token?: string;
250
+ username?: string;
251
+ password?: string;
252
+ verify_ssl?: boolean;
253
+ };
254
+ export type AtlassianCustomFieldResponse = {
255
+ id: string;
256
+ name: string;
257
+ clause_names?: Array<string>;
258
+ field_type?: string;
259
+ required?: boolean;
260
+ };
261
+ export type AtlassianPriorityResponse = {
262
+ id: string;
263
+ name: string;
264
+ description?: string;
265
+ icon_url?: string;
266
+ };
267
+ export type AtlassianProjectResponse = {
268
+ id: string;
269
+ key: string;
270
+ name: string;
271
+ description?: string;
272
+ };
273
+ export type AtlassianRequestTypeResponse = {
274
+ id: string;
275
+ name: string;
276
+ description?: string;
277
+ issue_type_id?: string;
278
+ };
279
+ export type AtlassianSettingsPreviewRequest = {
280
+ api_url: string;
281
+ auth_method: AuthMethodEnum;
282
+ email?: string;
283
+ token?: string;
284
+ personal_access_token?: string;
285
+ username?: string;
286
+ password?: string;
287
+ verify_ssl?: boolean;
288
+ project_id: string;
289
+ issue_types?: Array<string>;
290
+ /**
291
+ * Mapping from frontend types to backend request types
292
+ */
293
+ support_type_mapping?: {
294
+ [key: string]: string;
295
+ };
296
+ reporter_field?: string;
297
+ impact_field?: string;
298
+ organisation_field?: string;
299
+ project_field?: string;
300
+ affected_resource_field?: string;
301
+ caller_field?: string;
302
+ template_field?: string;
303
+ sla_field?: string;
304
+ resolution_sla_field?: string;
305
+ satisfaction_field?: string;
306
+ request_feedback_field?: string;
307
+ waldur_backend_id_field?: string;
308
+ /**
309
+ * Default issue type for marketplace request-based orders
310
+ */
311
+ default_offering_issue_type?: string;
312
+ use_old_api?: boolean;
313
+ custom_field_mapping_enabled?: boolean;
314
+ };
315
+ export type AtlassianSettingsSaveRequest = {
316
+ api_url: string;
317
+ auth_method: AuthMethodEnum;
318
+ email?: string;
319
+ token?: string;
320
+ personal_access_token?: string;
321
+ username?: string;
322
+ password?: string;
323
+ verify_ssl?: boolean;
324
+ project_id: string;
325
+ issue_types?: Array<string>;
326
+ /**
327
+ * Mapping from frontend types to backend request types
328
+ */
329
+ support_type_mapping?: {
330
+ [key: string]: string;
331
+ };
332
+ reporter_field?: string;
333
+ impact_field?: string;
334
+ organisation_field?: string;
335
+ project_field?: string;
336
+ affected_resource_field?: string;
337
+ caller_field?: string;
338
+ template_field?: string;
339
+ sla_field?: string;
340
+ resolution_sla_field?: string;
341
+ satisfaction_field?: string;
342
+ request_feedback_field?: string;
343
+ waldur_backend_id_field?: string;
344
+ /**
345
+ * Default issue type for marketplace request-based orders
346
+ */
347
+ default_offering_issue_type?: string;
348
+ use_old_api?: boolean;
349
+ custom_field_mapping_enabled?: boolean;
350
+ /**
351
+ * Must be True to confirm saving settings
352
+ */
353
+ confirm_save: boolean;
354
+ };
238
355
  export type Attachment = {
239
356
  readonly url?: string;
240
357
  readonly uuid?: string;
@@ -252,6 +369,7 @@ export type AttachmentRequest = {
252
369
  issue: string;
253
370
  file: Blob | File;
254
371
  };
372
+ export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
255
373
  export type AuthResult = {
256
374
  readonly uuid: string;
257
375
  readonly token: string;
@@ -1570,6 +1688,212 @@ export type CategorySerializerForForNestedFields = {
1570
1688
  export type CategorySerializerForForNestedFieldsRequest = {
1571
1689
  title: string;
1572
1690
  };
1691
+ export type CeleryBroker = {
1692
+ /**
1693
+ * Broker hostname
1694
+ */
1695
+ readonly hostname: string;
1696
+ /**
1697
+ * Broker user ID
1698
+ */
1699
+ readonly userid: string;
1700
+ /**
1701
+ * Virtual host
1702
+ */
1703
+ readonly virtual_host: string;
1704
+ /**
1705
+ * Broker port
1706
+ */
1707
+ readonly port: number;
1708
+ readonly insist: boolean;
1709
+ readonly ssl: boolean;
1710
+ /**
1711
+ * Transport protocol
1712
+ */
1713
+ readonly transport: string;
1714
+ /**
1715
+ * Connection timeout in seconds
1716
+ */
1717
+ readonly connect_timeout: number;
1718
+ /**
1719
+ * Additional transport options
1720
+ */
1721
+ readonly transport_options: {
1722
+ [key: string]: unknown;
1723
+ };
1724
+ /**
1725
+ * Authentication method
1726
+ */
1727
+ readonly login_method: string;
1728
+ readonly uri_prefix: string;
1729
+ /**
1730
+ * Heartbeat interval
1731
+ */
1732
+ readonly heartbeat: number;
1733
+ readonly failover_strategy: string;
1734
+ readonly alternates: Array<string>;
1735
+ };
1736
+ export type CeleryScheduledTask = {
1737
+ /**
1738
+ * Estimated time of arrival for the task
1739
+ */
1740
+ readonly eta: string;
1741
+ /**
1742
+ * Task priority level
1743
+ */
1744
+ readonly priority: number;
1745
+ /**
1746
+ * Task request details
1747
+ */
1748
+ request: CeleryTask;
1749
+ };
1750
+ export type CeleryStatsResponse = {
1751
+ /**
1752
+ * Currently executing tasks per worker. Keys are worker names, values are lists of active tasks.
1753
+ */
1754
+ readonly active: {
1755
+ [key: string]: Array<CeleryTask>;
1756
+ } | null;
1757
+ /**
1758
+ * Tasks scheduled for future execution per worker. Keys are worker names, values are lists of scheduled tasks with ETA.
1759
+ */
1760
+ readonly scheduled: {
1761
+ [key: string]: Array<CeleryScheduledTask>;
1762
+ } | null;
1763
+ /**
1764
+ * Tasks that have been received but not yet started per worker. Keys are worker names, values are lists of reserved tasks.
1765
+ */
1766
+ readonly reserved: {
1767
+ [key: string]: Array<CeleryTask>;
1768
+ } | null;
1769
+ /**
1770
+ * IDs of revoked (cancelled) tasks per worker. Keys are worker names, values are lists of task IDs.
1771
+ */
1772
+ readonly revoked: {
1773
+ [key: string]: Array<string>;
1774
+ } | null;
1775
+ /**
1776
+ * Query results for specific tasks. May be null if no query was performed.
1777
+ */
1778
+ readonly query_task: {
1779
+ [key: string]: unknown;
1780
+ } | null;
1781
+ /**
1782
+ * Detailed statistics per worker including uptime, pool info, and resource usage. Keys are worker names.
1783
+ */
1784
+ readonly stats: {
1785
+ [key: string]: CeleryWorkerStats;
1786
+ } | null;
1787
+ };
1788
+ export type CeleryTask = {
1789
+ /**
1790
+ * Unique task identifier
1791
+ */
1792
+ readonly id: string;
1793
+ /**
1794
+ * Name of the task
1795
+ */
1796
+ readonly name: string;
1797
+ /**
1798
+ * Positional arguments passed to the task
1799
+ */
1800
+ readonly args: Array<unknown>;
1801
+ /**
1802
+ * Keyword arguments passed to the task
1803
+ */
1804
+ readonly kwargs: {
1805
+ [key: string]: unknown;
1806
+ };
1807
+ /**
1808
+ * Task type
1809
+ */
1810
+ readonly type: string;
1811
+ /**
1812
+ * Worker hostname executing the task
1813
+ */
1814
+ readonly hostname: string;
1815
+ /**
1816
+ * Unix timestamp when task started
1817
+ */
1818
+ readonly time_start: number;
1819
+ /**
1820
+ * Whether task has been acknowledged
1821
+ */
1822
+ readonly acknowledged: boolean;
1823
+ /**
1824
+ * Message delivery information
1825
+ */
1826
+ readonly delivery_info: {
1827
+ [key: string]: unknown;
1828
+ };
1829
+ /**
1830
+ * Worker process ID
1831
+ */
1832
+ readonly worker_pid: number;
1833
+ };
1834
+ export type CeleryWorkerPool = {
1835
+ /**
1836
+ * Maximum number of concurrent processes
1837
+ */
1838
+ readonly max_concurrency: number;
1839
+ /**
1840
+ * List of worker process IDs
1841
+ */
1842
+ readonly processes: Array<number>;
1843
+ /**
1844
+ * Maximum tasks per child process
1845
+ */
1846
+ readonly max_tasks_per_child: number;
1847
+ readonly put_guarded_by_semaphore: boolean;
1848
+ /**
1849
+ * Timeout values
1850
+ */
1851
+ readonly timeouts: Array<number>;
1852
+ /**
1853
+ * Write statistics
1854
+ */
1855
+ readonly writes: {
1856
+ [key: string]: unknown;
1857
+ };
1858
+ };
1859
+ export type CeleryWorkerStats = {
1860
+ /**
1861
+ * Broker connection information
1862
+ */
1863
+ broker: CeleryBroker;
1864
+ /**
1865
+ * Logical clock value
1866
+ */
1867
+ readonly clock: string;
1868
+ /**
1869
+ * Worker uptime in seconds
1870
+ */
1871
+ readonly uptime: number;
1872
+ /**
1873
+ * Worker process ID
1874
+ */
1875
+ readonly pid: number;
1876
+ /**
1877
+ * Worker pool statistics
1878
+ */
1879
+ pool: CeleryWorkerPool;
1880
+ /**
1881
+ * Number of tasks prefetched
1882
+ */
1883
+ readonly prefetch_count: number;
1884
+ /**
1885
+ * Resource usage statistics
1886
+ */
1887
+ readonly rusage: {
1888
+ [key: string]: unknown;
1889
+ };
1890
+ /**
1891
+ * Total task counts by type
1892
+ */
1893
+ readonly total: {
1894
+ [key: string]: unknown;
1895
+ };
1896
+ };
1573
1897
  export type ChatRequestRequest = {
1574
1898
  /**
1575
1899
  * User input text for the chat model.
@@ -2030,6 +2354,14 @@ export type ConstanceSettings = {
2030
2354
  SIDEBAR_STYLE?: string;
2031
2355
  SITE_LOGO?: string | null;
2032
2356
  LOGIN_LOGO?: string | null;
2357
+ LOGIN_LOGO_MULTILINGUAL?: {
2358
+ [key: string]: string | null;
2359
+ };
2360
+ LOGIN_PAGE_LAYOUT?: string;
2361
+ LOGIN_PAGE_VIDEO_URL?: string;
2362
+ LOGIN_PAGE_STATS?: Array<unknown>;
2363
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
2364
+ LOGIN_PAGE_NEWS?: Array<unknown>;
2033
2365
  FAVICON?: string | null;
2034
2366
  OFFERING_LOGO_PLACEHOLDER?: string | null;
2035
2367
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2052,8 +2384,6 @@ export type ConstanceSettings = {
2052
2384
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
2053
2385
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
2054
2386
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
2055
- ATLASSIAN_ISSUE_TYPES?: string;
2056
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
2057
2387
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
2058
2388
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
2059
2389
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -2202,6 +2532,14 @@ export type ConstanceSettingsRequest = {
2202
2532
  SIDEBAR_STYLE?: string;
2203
2533
  SITE_LOGO?: (Blob | File) | null;
2204
2534
  LOGIN_LOGO?: (Blob | File) | null;
2535
+ LOGIN_LOGO_MULTILINGUAL?: {
2536
+ [key: string]: (Blob | File) | null;
2537
+ };
2538
+ LOGIN_PAGE_LAYOUT?: string;
2539
+ LOGIN_PAGE_VIDEO_URL?: string;
2540
+ LOGIN_PAGE_STATS?: Array<unknown>;
2541
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
2542
+ LOGIN_PAGE_NEWS?: Array<unknown>;
2205
2543
  FAVICON?: (Blob | File) | null;
2206
2544
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
2207
2545
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2224,8 +2562,6 @@ export type ConstanceSettingsRequest = {
2224
2562
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
2225
2563
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
2226
2564
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
2227
- ATLASSIAN_ISSUE_TYPES?: string;
2228
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
2229
2565
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
2230
2566
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
2231
2567
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -2988,6 +3324,47 @@ export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
2988
3324
  export type DeleteAttachmentsRequest = {
2989
3325
  attachment_ids: Array<string>;
2990
3326
  };
3327
+ export type DemoPreset = {
3328
+ readonly name: string;
3329
+ readonly title: string;
3330
+ readonly description: string;
3331
+ readonly version: string;
3332
+ readonly entity_counts: {
3333
+ [key: string]: number;
3334
+ };
3335
+ readonly scenarios: Array<string>;
3336
+ };
3337
+ export type DemoPresetLoadRequestRequest = {
3338
+ /**
3339
+ * Preview changes without applying them
3340
+ */
3341
+ dry_run?: boolean;
3342
+ /**
3343
+ * Clean up existing data before loading the preset
3344
+ */
3345
+ cleanup_first?: boolean;
3346
+ /**
3347
+ * Skip user import/cleanup
3348
+ */
3349
+ skip_users?: boolean;
3350
+ /**
3351
+ * Skip role import/cleanup
3352
+ */
3353
+ skip_roles?: boolean;
3354
+ };
3355
+ export type DemoPresetLoadResponse = {
3356
+ success: boolean;
3357
+ message: string;
3358
+ output?: string;
3359
+ users?: Array<DemoPresetUser>;
3360
+ };
3361
+ export type DemoPresetUser = {
3362
+ username: string;
3363
+ password: string;
3364
+ email?: string;
3365
+ is_staff?: boolean;
3366
+ is_support?: boolean;
3367
+ };
2991
3368
  export type DependencyLogicOperatorEnum = 'and' | 'or';
2992
3369
  export type DeploymentModeEnum = 'self_managed' | 'managed';
2993
3370
  export type DeprecatedNetworkRbacPolicy = {
@@ -3173,6 +3550,79 @@ export type DiscountsUpdateRequest = {
3173
3550
  [key: string]: DiscountConfigRequest;
3174
3551
  };
3175
3552
  };
3553
+ export type DiscoverCustomFieldsRequestRequest = {
3554
+ /**
3555
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3556
+ */
3557
+ api_url: string;
3558
+ /**
3559
+ * Authentication method to use
3560
+ */
3561
+ auth_method: AuthMethodEnum;
3562
+ email?: string;
3563
+ token?: string;
3564
+ personal_access_token?: string;
3565
+ username?: string;
3566
+ password?: string;
3567
+ verify_ssl?: boolean;
3568
+ project_id?: string;
3569
+ /**
3570
+ * Optional: Filter fields by request type
3571
+ */
3572
+ request_type_id?: string;
3573
+ };
3574
+ export type DiscoverPrioritiesRequestRequest = {
3575
+ /**
3576
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3577
+ */
3578
+ api_url: string;
3579
+ /**
3580
+ * Authentication method to use
3581
+ */
3582
+ auth_method: AuthMethodEnum;
3583
+ email?: string;
3584
+ token?: string;
3585
+ personal_access_token?: string;
3586
+ username?: string;
3587
+ password?: string;
3588
+ verify_ssl?: boolean;
3589
+ };
3590
+ export type DiscoverProjectsRequestRequest = {
3591
+ /**
3592
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3593
+ */
3594
+ api_url: string;
3595
+ /**
3596
+ * Authentication method to use
3597
+ */
3598
+ auth_method: AuthMethodEnum;
3599
+ email?: string;
3600
+ token?: string;
3601
+ personal_access_token?: string;
3602
+ username?: string;
3603
+ password?: string;
3604
+ verify_ssl?: boolean;
3605
+ };
3606
+ export type DiscoverRequestTypesRequestRequest = {
3607
+ /**
3608
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3609
+ */
3610
+ api_url: string;
3611
+ /**
3612
+ * Authentication method to use
3613
+ */
3614
+ auth_method: AuthMethodEnum;
3615
+ email?: string;
3616
+ token?: string;
3617
+ personal_access_token?: string;
3618
+ username?: string;
3619
+ password?: string;
3620
+ verify_ssl?: boolean;
3621
+ /**
3622
+ * Service Desk project ID or key
3623
+ */
3624
+ project_id: string;
3625
+ };
3176
3626
  export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
3177
3627
  export type DryRun = {
3178
3628
  readonly url: string;
@@ -3697,10 +4147,6 @@ export type GroupInvitation = {
3697
4147
  */
3698
4148
  role: string;
3699
4149
  readonly created: string;
3700
- /**
3701
- * Expiration date and time of the invitation
3702
- */
3703
- readonly expires: string;
3704
4150
  readonly is_active: boolean;
3705
4151
  /**
3706
4152
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -4376,6 +4822,26 @@ export type Issue = {
4376
4822
  readonly destroy_is_available: boolean;
4377
4823
  readonly add_comment_is_available: boolean;
4378
4824
  readonly add_attachment_is_available: boolean;
4825
+ /**
4826
+ * Internal processing log for debugging order lifecycle events. Visible only to staff.
4827
+ */
4828
+ readonly processing_log: unknown;
4829
+ /**
4830
+ * Return order UUID if the issue's resource is an Order.
4831
+ */
4832
+ readonly order_uuid: string | null;
4833
+ /**
4834
+ * Return order's project UUID if the issue's resource is an Order.
4835
+ */
4836
+ readonly order_project_uuid: string | null;
4837
+ /**
4838
+ * Return order's customer UUID if the issue's resource is an Order.
4839
+ */
4840
+ readonly order_customer_uuid: string | null;
4841
+ /**
4842
+ * Return order's resource name if the issue's resource is an Order.
4843
+ */
4844
+ readonly order_resource_name: string | null;
4379
4845
  };
4380
4846
  export type IssueReference = {
4381
4847
  readonly key?: string;
@@ -4408,17 +4874,24 @@ export type IssueStatus = {
4408
4874
  * Status name in Jira.
4409
4875
  */
4410
4876
  name: string;
4411
- type?: IssueStatusTypeEnum;
4877
+ type?: IssueStatusType;
4412
4878
  readonly type_display: string;
4413
4879
  };
4414
- export type IssueStatusRequest = {
4880
+ export type IssueStatusCreate = {
4881
+ /**
4882
+ * Status name in Jira.
4883
+ */
4884
+ name: string;
4885
+ type?: IssueStatusType;
4886
+ };
4887
+ export type IssueStatusCreateRequest = {
4415
4888
  /**
4416
4889
  * Status name in Jira.
4417
4890
  */
4418
4891
  name: string;
4419
- type?: IssueStatusTypeEnum;
4892
+ type?: IssueStatusType;
4420
4893
  };
4421
- export type IssueStatusTypeEnum = 0 | 1;
4894
+ export type IssueStatusType = 0 | 1;
4422
4895
  export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
4423
4896
  export type JiraChangelog = {
4424
4897
  /**
@@ -5012,6 +5485,10 @@ export type MergedPluginOptions = {
5012
5485
  * Skip approval of public offering belonging to the same organization under which the request is done
5013
5486
  */
5014
5487
  auto_approve_in_service_provider_projects?: boolean;
5488
+ /**
5489
+ * If set to True, orders for this offering will always require manual approval, overriding auto_approve_in_service_provider_projects
5490
+ */
5491
+ disable_autoapprove?: boolean;
5015
5492
  /**
5016
5493
  * If set to True, it will be possible to downscale resources
5017
5494
  */
@@ -5209,7 +5686,7 @@ export type MergedPluginOptions = {
5209
5686
  */
5210
5687
  enable_display_of_order_actions_for_service_provider?: boolean;
5211
5688
  /**
5212
- * If set to False, an order requires manual provider approval
5689
+ * If set to False, all orders require manual provider approval, including for service provider owners and staff
5213
5690
  */
5214
5691
  auto_approve_marketplace_script?: boolean;
5215
5692
  /**
@@ -5250,6 +5727,10 @@ export type MergedPluginOptionsRequest = {
5250
5727
  * Skip approval of public offering belonging to the same organization under which the request is done
5251
5728
  */
5252
5729
  auto_approve_in_service_provider_projects?: boolean;
5730
+ /**
5731
+ * If set to True, orders for this offering will always require manual approval, overriding auto_approve_in_service_provider_projects
5732
+ */
5733
+ disable_autoapprove?: boolean;
5253
5734
  /**
5254
5735
  * If set to True, it will be possible to downscale resources
5255
5736
  */
@@ -5447,7 +5928,7 @@ export type MergedPluginOptionsRequest = {
5447
5928
  */
5448
5929
  enable_display_of_order_actions_for_service_provider?: boolean;
5449
5930
  /**
5450
- * If set to False, an order requires manual provider approval
5931
+ * If set to False, all orders require manual provider approval, including for service provider owners and staff
5451
5932
  */
5452
5933
  auto_approve_marketplace_script?: boolean;
5453
5934
  /**
@@ -8225,6 +8706,12 @@ export type OpenStackFloatingIpDescriptionUpdateRequest = {
8225
8706
  */
8226
8707
  description?: string;
8227
8708
  };
8709
+ export type OpenStackFloatingIpRequest = {
8710
+ /**
8711
+ * Optional router to use for external network detection
8712
+ */
8713
+ router?: string | null;
8714
+ };
8228
8715
  export type OpenStackImage = {
8229
8716
  readonly url: string;
8230
8717
  readonly uuid: string;
@@ -9359,6 +9846,7 @@ export type OpenStackTenant = {
9359
9846
  * Volume type name to use when creating volumes.
9360
9847
  */
9361
9848
  default_volume_type_name?: string;
9849
+ skip_creation_of_default_router?: boolean;
9362
9850
  readonly marketplace_offering_uuid?: string | null;
9363
9851
  readonly marketplace_offering_name?: string | null;
9364
9852
  readonly marketplace_offering_plugin_options?: {
@@ -9410,6 +9898,8 @@ export type OpenStackTenantRequest = {
9410
9898
  */
9411
9899
  default_volume_type_name?: string;
9412
9900
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
9901
+ skip_creation_of_default_subnet?: boolean;
9902
+ skip_creation_of_default_router?: boolean;
9413
9903
  };
9414
9904
  export type OpenStackTenantSecurityGroup = {
9415
9905
  name: string;
@@ -10109,7 +10599,7 @@ export type PatchedIssueStatusRequest = {
10109
10599
  * Status name in Jira.
10110
10600
  */
10111
10601
  name?: string;
10112
- type?: IssueStatusTypeEnum;
10602
+ type?: IssueStatusType;
10113
10603
  };
10114
10604
  export type PatchedKeycloakUserGroupMembershipRequest = {
10115
10605
  /**
@@ -10517,6 +11007,8 @@ export type PatchedOpenStackTenantRequest = {
10517
11007
  */
10518
11008
  default_volume_type_name?: string;
10519
11009
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
11010
+ skip_creation_of_default_subnet?: boolean;
11011
+ skip_creation_of_default_router?: boolean;
10520
11012
  };
10521
11013
  export type PatchedOpenStackVolumeRequest = {
10522
11014
  name?: string;
@@ -10707,6 +11199,10 @@ export type PatchedProtectedCallRequest = {
10707
11199
  * Compliance checklist that proposals must complete before submission
10708
11200
  */
10709
11201
  compliance_checklist?: string | null;
11202
+ /**
11203
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
11204
+ */
11205
+ proposal_slug_template?: string | null;
10710
11206
  };
10711
11207
  export type PatchedProtectedRoundRequest = {
10712
11208
  start_time?: string;
@@ -10748,11 +11244,11 @@ export type PatchedQuestionAdminRequest = {
10748
11244
  question_type?: QuestionTypeEnum;
10749
11245
  order?: number;
10750
11246
  /**
10751
- * Minimum value allowed for NUMBER type questions
11247
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
10752
11248
  */
10753
11249
  min_value?: string | null;
10754
11250
  /**
10755
- * Maximum value allowed for NUMBER type questions
11251
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
10756
11252
  */
10757
11253
  max_value?: string | null;
10758
11254
  /**
@@ -10909,6 +11405,18 @@ export type PatchedRemoteSynchronisationRequest = {
10909
11405
  is_active?: boolean;
10910
11406
  remotelocalcategory_set?: Array<NestedRemoteLocalCategoryRequest>;
10911
11407
  };
11408
+ export type PatchedRequestTypeAdminRequest = {
11409
+ name?: string;
11410
+ issue_type_name?: string;
11411
+ /**
11412
+ * Whether this request type is available for issue creation.
11413
+ */
11414
+ is_active?: boolean;
11415
+ /**
11416
+ * Display order. First type (lowest order) is the default.
11417
+ */
11418
+ order?: number;
11419
+ };
10912
11420
  export type PatchedRequestedOfferingRequest = {
10913
11421
  attributes?: unknown;
10914
11422
  plan?: string | null;
@@ -11152,6 +11660,10 @@ export type PatchedTemplateRequest = {
11152
11660
  export type PatchedUserAgreementRequest = {
11153
11661
  content?: string;
11154
11662
  agreement_type?: AgreementTypeEnum;
11663
+ /**
11664
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
11665
+ */
11666
+ language?: string;
11155
11667
  };
11156
11668
  export type PatchedUserInfoRequest = {
11157
11669
  /**
@@ -12000,7 +12512,11 @@ export type ProposalChecklistAnswerSubmitResponse = {
12000
12512
  detail: string;
12001
12513
  completion: ChecklistCompletionReviewer;
12002
12514
  };
12515
+ export type ProposalDetachDocumentsRequest = {
12516
+ documents: Array<string>;
12517
+ };
12003
12518
  export type ProposalDocumentation = {
12519
+ readonly uuid: string;
12004
12520
  /**
12005
12521
  * Upload supporting documentation in PDF format.
12006
12522
  */
@@ -12152,6 +12668,10 @@ export type ProtectedCall = {
12152
12668
  */
12153
12669
  compliance_checklist?: string | null;
12154
12670
  readonly compliance_checklist_name?: string;
12671
+ /**
12672
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12673
+ */
12674
+ proposal_slug_template?: string | null;
12155
12675
  };
12156
12676
  export type ProtectedCallRequest = {
12157
12677
  /**
@@ -12178,6 +12698,10 @@ export type ProtectedCallRequest = {
12178
12698
  * Compliance checklist that proposals must complete before submission
12179
12699
  */
12180
12700
  compliance_checklist?: string | null;
12701
+ /**
12702
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12703
+ */
12704
+ proposal_slug_template?: string | null;
12181
12705
  };
12182
12706
  export type ProtectedProposalList = {
12183
12707
  readonly uuid: string;
@@ -12727,11 +13251,11 @@ export type Question = {
12727
13251
  question_type?: QuestionTypeEnum;
12728
13252
  order?: number;
12729
13253
  /**
12730
- * Minimum value allowed for NUMBER type questions
13254
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12731
13255
  */
12732
13256
  min_value?: string | null;
12733
13257
  /**
12734
- * Maximum value allowed for NUMBER type questions
13258
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12735
13259
  */
12736
13260
  max_value?: string | null;
12737
13261
  /**
@@ -12791,11 +13315,11 @@ export type QuestionAdmin = {
12791
13315
  question_type?: QuestionTypeEnum;
12792
13316
  order?: number;
12793
13317
  /**
12794
- * Minimum value allowed for NUMBER type questions
13318
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12795
13319
  */
12796
13320
  min_value?: string | null;
12797
13321
  /**
12798
- * Maximum value allowed for NUMBER type questions
13322
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12799
13323
  */
12800
13324
  max_value?: string | null;
12801
13325
  /**
@@ -12857,11 +13381,11 @@ export type QuestionAdminRequest = {
12857
13381
  question_type?: QuestionTypeEnum;
12858
13382
  order?: number;
12859
13383
  /**
12860
- * Minimum value allowed for NUMBER type questions
13384
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12861
13385
  */
12862
13386
  min_value?: string | null;
12863
13387
  /**
12864
- * Maximum value allowed for NUMBER type questions
13388
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12865
13389
  */
12866
13390
  max_value?: string | null;
12867
13391
  /**
@@ -12976,7 +13500,7 @@ export type QuestionOptionsAdminRequest = {
12976
13500
  order?: number;
12977
13501
  question: string;
12978
13502
  };
12979
- export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files';
13503
+ export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files' | 'phone_number' | 'year' | 'email' | 'url' | 'country' | 'rating' | 'datetime';
12980
13504
  export type QuestionWithAnswer = {
12981
13505
  readonly uuid: string;
12982
13506
  readonly description: string;
@@ -12992,11 +13516,11 @@ export type QuestionWithAnswer = {
12992
13516
  } | null;
12993
13517
  readonly question_options: Array<unknown> | null;
12994
13518
  /**
12995
- * Minimum value allowed for NUMBER type questions
13519
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12996
13520
  */
12997
13521
  readonly min_value: string | null;
12998
13522
  /**
12999
- * Maximum value allowed for NUMBER type questions
13523
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
13000
13524
  */
13001
13525
  readonly max_value: string | null;
13002
13526
  /**
@@ -13015,6 +13539,9 @@ export type QuestionWithAnswer = {
13015
13539
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
13016
13540
  */
13017
13541
  readonly max_files_count: number | null;
13542
+ readonly dependencies_info: {
13543
+ [key: string]: unknown;
13544
+ } | null;
13018
13545
  };
13019
13546
  export type QuestionWithAnswerReviewer = {
13020
13547
  readonly uuid: string;
@@ -13031,11 +13558,11 @@ export type QuestionWithAnswerReviewer = {
13031
13558
  } | null;
13032
13559
  readonly question_options: Array<unknown> | null;
13033
13560
  /**
13034
- * Minimum value allowed for NUMBER type questions
13561
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
13035
13562
  */
13036
13563
  readonly min_value: string | null;
13037
13564
  /**
13038
- * Maximum value allowed for NUMBER type questions
13565
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
13039
13566
  */
13040
13567
  readonly max_value: string | null;
13041
13568
  /**
@@ -13054,6 +13581,9 @@ export type QuestionWithAnswerReviewer = {
13054
13581
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
13055
13582
  */
13056
13583
  readonly max_files_count: number | null;
13584
+ readonly dependencies_info: {
13585
+ [key: string]: unknown;
13586
+ } | null;
13057
13587
  operator?: ChecklistOperators | BlankEnum;
13058
13588
  /**
13059
13589
  * Answer value that trigger review.
@@ -14120,6 +14650,51 @@ export type ReportSectionRequest = {
14120
14650
  */
14121
14651
  body: string;
14122
14652
  };
14653
+ export type RequestType = {
14654
+ readonly url: string;
14655
+ readonly uuid: string;
14656
+ name: string;
14657
+ issue_type_name: string;
14658
+ /**
14659
+ * Display order. First type (lowest order) is the default.
14660
+ */
14661
+ order?: number;
14662
+ };
14663
+ export type RequestTypeAdmin = {
14664
+ readonly url: string;
14665
+ readonly uuid: string;
14666
+ name: string;
14667
+ issue_type_name: string;
14668
+ /**
14669
+ * Backend ID for synced types. Null for manually created types.
14670
+ */
14671
+ readonly backend_id: number | null;
14672
+ readonly backend_name: string | null;
14673
+ /**
14674
+ * Whether this request type is available for issue creation.
14675
+ */
14676
+ is_active?: boolean;
14677
+ /**
14678
+ * Display order. First type (lowest order) is the default.
14679
+ */
14680
+ order?: number;
14681
+ /**
14682
+ * Returns True if the request type was synced from a backend.
14683
+ */
14684
+ readonly is_synced: boolean;
14685
+ };
14686
+ export type RequestTypeAdminRequest = {
14687
+ name: string;
14688
+ issue_type_name: string;
14689
+ /**
14690
+ * Whether this request type is available for issue creation.
14691
+ */
14692
+ is_active?: boolean;
14693
+ /**
14694
+ * Display order. First type (lowest order) is the default.
14695
+ */
14696
+ order?: number;
14697
+ };
14123
14698
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
14124
14699
  export type RequestedOffering = {
14125
14700
  readonly uuid: string;
@@ -15994,12 +16569,20 @@ export type UserAgreement = {
15994
16569
  readonly uuid: string;
15995
16570
  content: string;
15996
16571
  agreement_type: AgreementTypeEnum;
16572
+ /**
16573
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16574
+ */
16575
+ language: string;
15997
16576
  readonly created: string;
15998
16577
  readonly modified: string;
15999
16578
  };
16000
16579
  export type UserAgreementRequest = {
16001
16580
  content: string;
16002
16581
  agreement_type: AgreementTypeEnum;
16582
+ /**
16583
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16584
+ */
16585
+ language: string;
16003
16586
  };
16004
16587
  export type UserAuthMethodCount = {
16005
16588
  /**
@@ -16646,14 +17229,14 @@ export type WebHook = {
16646
17229
  };
16647
17230
  export type WebHookContentTypeEnum = 'json' | 'form';
16648
17231
  export type WebHookReceiver = {
16649
- webhookEvent: WebhookEventEnum;
17232
+ webhookEvent: string;
16650
17233
  issue: JiraIssue;
16651
17234
  comment?: JiraComment;
16652
17235
  changelog?: JiraChangelog;
16653
17236
  issue_event_type_name?: string;
16654
17237
  };
16655
17238
  export type WebHookReceiverRequest = {
16656
- webhookEvent: WebhookEventEnum;
17239
+ webhookEvent: string;
16657
17240
  issue: JiraIssueRequest;
16658
17241
  comment?: JiraCommentRequest;
16659
17242
  changelog?: JiraChangelogRequest;
@@ -16666,7 +17249,6 @@ export type WebHookRequest = {
16666
17249
  destination_url: string;
16667
17250
  content_type?: WebHookContentTypeEnum;
16668
17251
  };
16669
- export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
16670
17252
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
16671
17253
  export type AzureVirtualMachineCreateOrderAttributes = {
16672
17254
  name: string;
@@ -16694,6 +17276,7 @@ export type OpenStackTenantCreateOrderAttributes = {
16694
17276
  subnet_cidr?: string;
16695
17277
  skip_connection_extnet?: boolean;
16696
17278
  skip_creation_of_default_router?: boolean;
17279
+ skip_creation_of_default_subnet?: boolean;
16697
17280
  /**
16698
17281
  * Optional availability group. Will be used for all instances provisioned in this tenant
16699
17282
  */
@@ -17754,6 +18337,14 @@ export type ConstanceSettingsRequestForm = {
17754
18337
  SIDEBAR_STYLE?: string;
17755
18338
  SITE_LOGO?: (Blob | File) | null;
17756
18339
  LOGIN_LOGO?: (Blob | File) | null;
18340
+ LOGIN_LOGO_MULTILINGUAL?: {
18341
+ [key: string]: (Blob | File) | null;
18342
+ };
18343
+ LOGIN_PAGE_LAYOUT?: string;
18344
+ LOGIN_PAGE_VIDEO_URL?: string;
18345
+ LOGIN_PAGE_STATS?: Array<unknown>;
18346
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18347
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17757
18348
  FAVICON?: (Blob | File) | null;
17758
18349
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17759
18350
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17776,8 +18367,6 @@ export type ConstanceSettingsRequestForm = {
17776
18367
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17777
18368
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17778
18369
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17779
- ATLASSIAN_ISSUE_TYPES?: string;
17780
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17781
18370
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17782
18371
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17783
18372
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -17926,6 +18515,14 @@ export type ConstanceSettingsRequestMultipart = {
17926
18515
  SIDEBAR_STYLE?: string;
17927
18516
  SITE_LOGO?: (Blob | File) | null;
17928
18517
  LOGIN_LOGO?: (Blob | File) | null;
18518
+ LOGIN_LOGO_MULTILINGUAL?: {
18519
+ [key: string]: (Blob | File) | null;
18520
+ };
18521
+ LOGIN_PAGE_LAYOUT?: string;
18522
+ LOGIN_PAGE_VIDEO_URL?: string;
18523
+ LOGIN_PAGE_STATS?: Array<unknown>;
18524
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18525
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17929
18526
  FAVICON?: (Blob | File) | null;
17930
18527
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17931
18528
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17948,8 +18545,6 @@ export type ConstanceSettingsRequestMultipart = {
17948
18545
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17949
18546
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17950
18547
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17951
- ATLASSIAN_ISSUE_TYPES?: string;
17952
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17953
18548
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17954
18549
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17955
18550
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -21658,6 +22253,10 @@ export type BookingResourcesListData = {
21658
22253
  * Has termination date
21659
22254
  */
21660
22255
  has_terminate_date?: boolean;
22256
+ /**
22257
+ * Filter by attached state
22258
+ */
22259
+ is_attached?: boolean;
21661
22260
  /**
21662
22261
  * LEXIS links supported
21663
22262
  */
@@ -21830,6 +22429,10 @@ export type BookingResourcesCountData = {
21830
22429
  * Has termination date
21831
22430
  */
21832
22431
  has_terminate_date?: boolean;
22432
+ /**
22433
+ * Filter by attached state
22434
+ */
22435
+ is_attached?: boolean;
21833
22436
  /**
21834
22437
  * LEXIS links supported
21835
22438
  */
@@ -22703,9 +23306,7 @@ export type CeleryStatsRetrieveData = {
22703
23306
  url: '/api/celery-stats/';
22704
23307
  };
22705
23308
  export type CeleryStatsRetrieveResponses = {
22706
- 200: {
22707
- [key: string]: unknown;
22708
- };
23309
+ 200: CeleryStatsResponse;
22709
23310
  };
22710
23311
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
22711
23312
  export type ChatInvokeData = {
@@ -29694,6 +30295,109 @@ export type MarketplaceCustomerServiceAccountsRotateApiKeyResponses = {
29694
30295
  200: CustomerServiceAccount;
29695
30296
  };
29696
30297
  export type MarketplaceCustomerServiceAccountsRotateApiKeyResponse = MarketplaceCustomerServiceAccountsRotateApiKeyResponses[keyof MarketplaceCustomerServiceAccountsRotateApiKeyResponses];
30298
+ export type MarketplaceDemoPresetsInfoRetrieveData = {
30299
+ body?: never;
30300
+ path: {
30301
+ /**
30302
+ * Name of the preset
30303
+ */
30304
+ name: string;
30305
+ };
30306
+ query?: never;
30307
+ url: '/api/marketplace-demo-presets/info/{name}/';
30308
+ };
30309
+ export type MarketplaceDemoPresetsInfoRetrieveErrors = {
30310
+ /**
30311
+ * No response body
30312
+ */
30313
+ 404: unknown;
30314
+ };
30315
+ export type MarketplaceDemoPresetsInfoRetrieveResponses = {
30316
+ 200: DemoPreset;
30317
+ };
30318
+ export type MarketplaceDemoPresetsInfoRetrieveResponse = MarketplaceDemoPresetsInfoRetrieveResponses[keyof MarketplaceDemoPresetsInfoRetrieveResponses];
30319
+ export type MarketplaceDemoPresetsInfoCountData = {
30320
+ body?: never;
30321
+ path: {
30322
+ /**
30323
+ * Name of the preset
30324
+ */
30325
+ name: string;
30326
+ };
30327
+ query?: never;
30328
+ url: '/api/marketplace-demo-presets/info/{name}/';
30329
+ };
30330
+ export type MarketplaceDemoPresetsInfoCountResponses = {
30331
+ /**
30332
+ * No response body
30333
+ */
30334
+ 200: unknown;
30335
+ };
30336
+ export type MarketplaceDemoPresetsListListData = {
30337
+ body?: never;
30338
+ path?: never;
30339
+ query?: {
30340
+ /**
30341
+ * A page number within the paginated result set.
30342
+ */
30343
+ page?: number;
30344
+ /**
30345
+ * Number of results to return per page.
30346
+ */
30347
+ page_size?: number;
30348
+ };
30349
+ url: '/api/marketplace-demo-presets/list/';
30350
+ };
30351
+ export type MarketplaceDemoPresetsListListResponses = {
30352
+ 200: Array<DemoPreset>;
30353
+ };
30354
+ export type MarketplaceDemoPresetsListListResponse = MarketplaceDemoPresetsListListResponses[keyof MarketplaceDemoPresetsListListResponses];
30355
+ export type MarketplaceDemoPresetsListCountData = {
30356
+ body?: never;
30357
+ path?: never;
30358
+ query?: {
30359
+ /**
30360
+ * A page number within the paginated result set.
30361
+ */
30362
+ page?: number;
30363
+ /**
30364
+ * Number of results to return per page.
30365
+ */
30366
+ page_size?: number;
30367
+ };
30368
+ url: '/api/marketplace-demo-presets/list/';
30369
+ };
30370
+ export type MarketplaceDemoPresetsListCountResponses = {
30371
+ /**
30372
+ * No response body
30373
+ */
30374
+ 200: unknown;
30375
+ };
30376
+ export type MarketplaceDemoPresetsLoadData = {
30377
+ body?: DemoPresetLoadRequestRequest;
30378
+ path: {
30379
+ /**
30380
+ * Name of the preset to load
30381
+ */
30382
+ name: string;
30383
+ };
30384
+ query?: never;
30385
+ url: '/api/marketplace-demo-presets/load/{name}/';
30386
+ };
30387
+ export type MarketplaceDemoPresetsLoadErrors = {
30388
+ /**
30389
+ * No response body
30390
+ */
30391
+ 400: unknown;
30392
+ /**
30393
+ * No response body
30394
+ */
30395
+ 404: unknown;
30396
+ };
30397
+ export type MarketplaceDemoPresetsLoadResponses = {
30398
+ 200: DemoPresetLoadResponse;
30399
+ };
30400
+ export type MarketplaceDemoPresetsLoadResponse = MarketplaceDemoPresetsLoadResponses[keyof MarketplaceDemoPresetsLoadResponses];
29697
30401
  export type MarketplaceGlobalCategoriesRetrieveData = {
29698
30402
  body?: never;
29699
30403
  path?: never;
@@ -31165,7 +31869,12 @@ export type MarketplaceOfferingUsersChecklistRetrieveData = {
31165
31869
  path: {
31166
31870
  uuid: string;
31167
31871
  };
31168
- query?: never;
31872
+ query?: {
31873
+ /**
31874
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
31875
+ */
31876
+ include_all?: boolean;
31877
+ };
31169
31878
  url: '/api/marketplace-offering-users/{uuid}/checklist/';
31170
31879
  };
31171
31880
  export type MarketplaceOfferingUsersChecklistRetrieveErrors = {
@@ -35038,6 +35747,10 @@ export type MarketplaceProviderResourcesListData = {
35038
35747
  * Has termination date
35039
35748
  */
35040
35749
  has_terminate_date?: boolean;
35750
+ /**
35751
+ * Filter by attached state
35752
+ */
35753
+ is_attached?: boolean;
35041
35754
  /**
35042
35755
  * LEXIS links supported
35043
35756
  */
@@ -35209,6 +35922,10 @@ export type MarketplaceProviderResourcesCountData = {
35209
35922
  * Has termination date
35210
35923
  */
35211
35924
  has_terminate_date?: boolean;
35925
+ /**
35926
+ * Filter by attached state
35927
+ */
35928
+ is_attached?: boolean;
35212
35929
  /**
35213
35930
  * LEXIS links supported
35214
35931
  */
@@ -36419,6 +37136,10 @@ export type MarketplaceResourcesListData = {
36419
37136
  * Has termination date
36420
37137
  */
36421
37138
  has_terminate_date?: boolean;
37139
+ /**
37140
+ * Filter by attached state
37141
+ */
37142
+ is_attached?: boolean;
36422
37143
  /**
36423
37144
  * LEXIS links supported
36424
37145
  */
@@ -36590,6 +37311,10 @@ export type MarketplaceResourcesCountData = {
36590
37311
  * Has termination date
36591
37312
  */
36592
37313
  has_terminate_date?: boolean;
37314
+ /**
37315
+ * Filter by attached state
37316
+ */
37317
+ is_attached?: boolean;
36593
37318
  /**
36594
37319
  * LEXIS links supported
36595
37320
  */
@@ -41950,7 +42675,12 @@ export type OnboardingVerificationsChecklistRetrieveData = {
41950
42675
  path: {
41951
42676
  uuid: string;
41952
42677
  };
41953
- query?: never;
42678
+ query?: {
42679
+ /**
42680
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
42681
+ */
42682
+ include_all?: boolean;
42683
+ };
41954
42684
  url: '/api/onboarding-verifications/{uuid}/checklist/';
41955
42685
  };
41956
42686
  export type OnboardingVerificationsChecklistRetrieveErrors = {
@@ -43598,7 +44328,12 @@ export type OpenportalUnmanagedProjectsChecklistRetrieveData = {
43598
44328
  path: {
43599
44329
  uuid: string;
43600
44330
  };
43601
- query?: never;
44331
+ query?: {
44332
+ /**
44333
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
44334
+ */
44335
+ include_all?: boolean;
44336
+ };
43602
44337
  url: '/api/openportal-unmanaged-projects/{uuid}/checklist/';
43603
44338
  };
43604
44339
  export type OpenportalUnmanagedProjectsChecklistRetrieveErrors = {
@@ -44512,7 +45247,7 @@ export type OpenstackFloatingIpsListData = {
44512
45247
  * External IP
44513
45248
  */
44514
45249
  external_ip?: string;
44515
- field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
45250
+ field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'router' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
44516
45251
  /**
44517
45252
  * Is free
44518
45253
  */
@@ -44709,7 +45444,7 @@ export type OpenstackFloatingIpsRetrieveData = {
44709
45444
  uuid: string;
44710
45445
  };
44711
45446
  query?: {
44712
- field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
45447
+ field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'router' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
44713
45448
  };
44714
45449
  url: '/api/openstack-floating-ips/{uuid}/';
44715
45450
  };
@@ -46727,6 +47462,7 @@ export type OpenstackRoutersListData = {
46727
47462
  * Number of results to return per page.
46728
47463
  */
46729
47464
  page_size?: number;
47465
+ state?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
46730
47466
  /**
46731
47467
  * Tenant URL
46732
47468
  */
@@ -46762,6 +47498,7 @@ export type OpenstackRoutersCountData = {
46762
47498
  * Number of results to return per page.
46763
47499
  */
46764
47500
  page_size?: number;
47501
+ state?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
46765
47502
  /**
46766
47503
  * Tenant URL
46767
47504
  */
@@ -48233,7 +48970,7 @@ export type OpenstackTenantsListData = {
48233
48970
  * External IP
48234
48971
  */
48235
48972
  external_ip?: string;
48236
- field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
48973
+ field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
48237
48974
  /**
48238
48975
  * Name
48239
48976
  */
@@ -48388,7 +49125,7 @@ export type OpenstackTenantsRetrieveData = {
48388
49125
  uuid: string;
48389
49126
  };
48390
49127
  query?: {
48391
- field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
49128
+ field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
48392
49129
  };
48393
49130
  url: '/api/openstack-tenants/{uuid}/';
48394
49131
  };
@@ -48625,7 +49362,7 @@ export type OpenstackTenantsChangePasswordResponses = {
48625
49362
  200: unknown;
48626
49363
  };
48627
49364
  export type OpenstackTenantsCreateFloatingIpData = {
48628
- body?: never;
49365
+ body?: OpenStackFloatingIpRequest;
48629
49366
  path: {
48630
49367
  uuid: string;
48631
49368
  };
@@ -50516,7 +51253,12 @@ export type ProjectsChecklistRetrieveData = {
50516
51253
  path: {
50517
51254
  uuid: string;
50518
51255
  };
50519
- query?: never;
51256
+ query?: {
51257
+ /**
51258
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51259
+ */
51260
+ include_all?: boolean;
51261
+ };
50520
51262
  url: '/api/projects/{uuid}/checklist/';
50521
51263
  };
50522
51264
  export type ProjectsChecklistRetrieveErrors = {
@@ -51133,7 +51875,12 @@ export type ProposalProposalsChecklistRetrieveData = {
51133
51875
  path: {
51134
51876
  uuid: string;
51135
51877
  };
51136
- query?: never;
51878
+ query?: {
51879
+ /**
51880
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51881
+ */
51882
+ include_all?: boolean;
51883
+ };
51137
51884
  url: '/api/proposal-proposals/{uuid}/checklist/';
51138
51885
  };
51139
51886
  export type ProposalProposalsChecklistRetrieveErrors = {
@@ -51230,6 +51977,20 @@ export type ProposalProposalsDeleteUserResponses = {
51230
51977
  */
51231
51978
  200: unknown;
51232
51979
  };
51980
+ export type ProposalProposalsDetachDocumentsData = {
51981
+ body: ProposalDetachDocumentsRequest;
51982
+ path: {
51983
+ uuid: string;
51984
+ };
51985
+ query?: never;
51986
+ url: '/api/proposal-proposals/{uuid}/detach_documents/';
51987
+ };
51988
+ export type ProposalProposalsDetachDocumentsResponses = {
51989
+ /**
51990
+ * No response body
51991
+ */
51992
+ 200: unknown;
51993
+ };
51233
51994
  export type ProposalProposalsListUsersListData = {
51234
51995
  body?: never;
51235
51996
  path: {
@@ -51504,7 +52265,7 @@ export type ProposalProtectedCallsListData = {
51504
52265
  customer?: string;
51505
52266
  customer_keyword?: string;
51506
52267
  customer_uuid?: string;
51507
- field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
52268
+ field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
51508
52269
  has_active_round?: boolean;
51509
52270
  name?: string;
51510
52271
  /**
@@ -51597,7 +52358,7 @@ export type ProposalProtectedCallsRetrieveData = {
51597
52358
  uuid: string;
51598
52359
  };
51599
52360
  query?: {
51600
- field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
52361
+ field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
51601
52362
  };
51602
52363
  url: '/api/proposal-protected-calls/{uuid}/';
51603
52364
  };
@@ -56955,13 +57716,13 @@ export type SupportIssueStatusesCountResponses = {
56955
57716
  200: unknown;
56956
57717
  };
56957
57718
  export type SupportIssueStatusesCreateData = {
56958
- body: IssueStatusRequest;
57719
+ body: IssueStatusCreateRequest;
56959
57720
  path?: never;
56960
57721
  query?: never;
56961
57722
  url: '/api/support-issue-statuses/';
56962
57723
  };
56963
57724
  export type SupportIssueStatusesCreateResponses = {
56964
- 201: IssueStatus;
57725
+ 201: IssueStatusCreate;
56965
57726
  };
56966
57727
  export type SupportIssueStatusesCreateResponse = SupportIssueStatusesCreateResponses[keyof SupportIssueStatusesCreateResponses];
56967
57728
  export type SupportIssueStatusesDestroyData = {
@@ -57004,7 +57765,7 @@ export type SupportIssueStatusesPartialUpdateResponses = {
57004
57765
  };
57005
57766
  export type SupportIssueStatusesPartialUpdateResponse = SupportIssueStatusesPartialUpdateResponses[keyof SupportIssueStatusesPartialUpdateResponses];
57006
57767
  export type SupportIssueStatusesUpdateData = {
57007
- body: IssueStatusRequest;
57768
+ body: IssueStatusCreateRequest;
57008
57769
  path: {
57009
57770
  uuid: string;
57010
57771
  };
@@ -57012,7 +57773,7 @@ export type SupportIssueStatusesUpdateData = {
57012
57773
  url: '/api/support-issue-statuses/{uuid}/';
57013
57774
  };
57014
57775
  export type SupportIssueStatusesUpdateResponses = {
57015
- 200: IssueStatus;
57776
+ 200: IssueStatusCreate;
57016
57777
  };
57017
57778
  export type SupportIssueStatusesUpdateResponse = SupportIssueStatusesUpdateResponses[keyof SupportIssueStatusesUpdateResponses];
57018
57779
  export type SupportIssuesListData = {
@@ -57300,6 +58061,197 @@ export type SupportPrioritiesRetrieveResponses = {
57300
58061
  200: Priority;
57301
58062
  };
57302
58063
  export type SupportPrioritiesRetrieveResponse = SupportPrioritiesRetrieveResponses[keyof SupportPrioritiesRetrieveResponses];
58064
+ export type SupportRequestTypesListData = {
58065
+ body?: never;
58066
+ path?: never;
58067
+ query?: {
58068
+ /**
58069
+ * A page number within the paginated result set.
58070
+ */
58071
+ page?: number;
58072
+ /**
58073
+ * Number of results to return per page.
58074
+ */
58075
+ page_size?: number;
58076
+ };
58077
+ url: '/api/support-request-types/';
58078
+ };
58079
+ export type SupportRequestTypesListResponses = {
58080
+ 200: Array<RequestType>;
58081
+ };
58082
+ export type SupportRequestTypesListResponse = SupportRequestTypesListResponses[keyof SupportRequestTypesListResponses];
58083
+ export type SupportRequestTypesCountData = {
58084
+ body?: never;
58085
+ path?: never;
58086
+ query?: {
58087
+ /**
58088
+ * A page number within the paginated result set.
58089
+ */
58090
+ page?: number;
58091
+ /**
58092
+ * Number of results to return per page.
58093
+ */
58094
+ page_size?: number;
58095
+ };
58096
+ url: '/api/support-request-types/';
58097
+ };
58098
+ export type SupportRequestTypesCountResponses = {
58099
+ /**
58100
+ * No response body
58101
+ */
58102
+ 200: unknown;
58103
+ };
58104
+ export type SupportRequestTypesAdminListData = {
58105
+ body?: never;
58106
+ path?: never;
58107
+ query?: {
58108
+ is_active?: boolean;
58109
+ name?: string;
58110
+ /**
58111
+ * A page number within the paginated result set.
58112
+ */
58113
+ page?: number;
58114
+ /**
58115
+ * Number of results to return per page.
58116
+ */
58117
+ page_size?: number;
58118
+ };
58119
+ url: '/api/support-request-types-admin/';
58120
+ };
58121
+ export type SupportRequestTypesAdminListResponses = {
58122
+ 200: Array<RequestTypeAdmin>;
58123
+ };
58124
+ export type SupportRequestTypesAdminListResponse = SupportRequestTypesAdminListResponses[keyof SupportRequestTypesAdminListResponses];
58125
+ export type SupportRequestTypesAdminCountData = {
58126
+ body?: never;
58127
+ path?: never;
58128
+ query?: {
58129
+ is_active?: boolean;
58130
+ name?: string;
58131
+ /**
58132
+ * A page number within the paginated result set.
58133
+ */
58134
+ page?: number;
58135
+ /**
58136
+ * Number of results to return per page.
58137
+ */
58138
+ page_size?: number;
58139
+ };
58140
+ url: '/api/support-request-types-admin/';
58141
+ };
58142
+ export type SupportRequestTypesAdminCountResponses = {
58143
+ /**
58144
+ * No response body
58145
+ */
58146
+ 200: unknown;
58147
+ };
58148
+ export type SupportRequestTypesAdminCreateData = {
58149
+ body: RequestTypeAdminRequest;
58150
+ path?: never;
58151
+ query?: never;
58152
+ url: '/api/support-request-types-admin/';
58153
+ };
58154
+ export type SupportRequestTypesAdminCreateResponses = {
58155
+ 201: RequestTypeAdmin;
58156
+ };
58157
+ export type SupportRequestTypesAdminCreateResponse = SupportRequestTypesAdminCreateResponses[keyof SupportRequestTypesAdminCreateResponses];
58158
+ export type SupportRequestTypesAdminDestroyData = {
58159
+ body?: never;
58160
+ path: {
58161
+ uuid: string;
58162
+ };
58163
+ query?: never;
58164
+ url: '/api/support-request-types-admin/{uuid}/';
58165
+ };
58166
+ export type SupportRequestTypesAdminDestroyResponses = {
58167
+ /**
58168
+ * No response body
58169
+ */
58170
+ 204: void;
58171
+ };
58172
+ export type SupportRequestTypesAdminDestroyResponse = SupportRequestTypesAdminDestroyResponses[keyof SupportRequestTypesAdminDestroyResponses];
58173
+ export type SupportRequestTypesAdminRetrieveData = {
58174
+ body?: never;
58175
+ path: {
58176
+ uuid: string;
58177
+ };
58178
+ query?: never;
58179
+ url: '/api/support-request-types-admin/{uuid}/';
58180
+ };
58181
+ export type SupportRequestTypesAdminRetrieveResponses = {
58182
+ 200: RequestTypeAdmin;
58183
+ };
58184
+ export type SupportRequestTypesAdminRetrieveResponse = SupportRequestTypesAdminRetrieveResponses[keyof SupportRequestTypesAdminRetrieveResponses];
58185
+ export type SupportRequestTypesAdminPartialUpdateData = {
58186
+ body?: PatchedRequestTypeAdminRequest;
58187
+ path: {
58188
+ uuid: string;
58189
+ };
58190
+ query?: never;
58191
+ url: '/api/support-request-types-admin/{uuid}/';
58192
+ };
58193
+ export type SupportRequestTypesAdminPartialUpdateResponses = {
58194
+ 200: RequestTypeAdmin;
58195
+ };
58196
+ export type SupportRequestTypesAdminPartialUpdateResponse = SupportRequestTypesAdminPartialUpdateResponses[keyof SupportRequestTypesAdminPartialUpdateResponses];
58197
+ export type SupportRequestTypesAdminUpdateData = {
58198
+ body: RequestTypeAdminRequest;
58199
+ path: {
58200
+ uuid: string;
58201
+ };
58202
+ query?: never;
58203
+ url: '/api/support-request-types-admin/{uuid}/';
58204
+ };
58205
+ export type SupportRequestTypesAdminUpdateResponses = {
58206
+ 200: RequestTypeAdmin;
58207
+ };
58208
+ export type SupportRequestTypesAdminUpdateResponse = SupportRequestTypesAdminUpdateResponses[keyof SupportRequestTypesAdminUpdateResponses];
58209
+ export type SupportRequestTypesAdminActivateData = {
58210
+ body: RequestTypeAdminRequest;
58211
+ path: {
58212
+ uuid: string;
58213
+ };
58214
+ query?: never;
58215
+ url: '/api/support-request-types-admin/{uuid}/activate/';
58216
+ };
58217
+ export type SupportRequestTypesAdminActivateResponses = {
58218
+ 200: RequestTypeAdmin;
58219
+ };
58220
+ export type SupportRequestTypesAdminActivateResponse = SupportRequestTypesAdminActivateResponses[keyof SupportRequestTypesAdminActivateResponses];
58221
+ export type SupportRequestTypesAdminDeactivateData = {
58222
+ body: RequestTypeAdminRequest;
58223
+ path: {
58224
+ uuid: string;
58225
+ };
58226
+ query?: never;
58227
+ url: '/api/support-request-types-admin/{uuid}/deactivate/';
58228
+ };
58229
+ export type SupportRequestTypesAdminDeactivateResponses = {
58230
+ 200: RequestTypeAdmin;
58231
+ };
58232
+ export type SupportRequestTypesAdminDeactivateResponse = SupportRequestTypesAdminDeactivateResponses[keyof SupportRequestTypesAdminDeactivateResponses];
58233
+ export type SupportRequestTypesAdminReorderData = {
58234
+ body: RequestTypeAdminRequest;
58235
+ path?: never;
58236
+ query?: never;
58237
+ url: '/api/support-request-types-admin/reorder/';
58238
+ };
58239
+ export type SupportRequestTypesAdminReorderResponses = {
58240
+ 200: RequestTypeAdmin;
58241
+ };
58242
+ export type SupportRequestTypesAdminReorderResponse = SupportRequestTypesAdminReorderResponses[keyof SupportRequestTypesAdminReorderResponses];
58243
+ export type SupportRequestTypesRetrieveData = {
58244
+ body?: never;
58245
+ path: {
58246
+ uuid: string;
58247
+ };
58248
+ query?: never;
58249
+ url: '/api/support-request-types/{uuid}/';
58250
+ };
58251
+ export type SupportRequestTypesRetrieveResponses = {
58252
+ 200: RequestType;
58253
+ };
58254
+ export type SupportRequestTypesRetrieveResponse = SupportRequestTypesRetrieveResponses[keyof SupportRequestTypesRetrieveResponses];
57303
58255
  export type SupportSmaxWebhookData = {
57304
58256
  body: SmaxWebHookReceiverRequest;
57305
58257
  path?: never;
@@ -57525,6 +58477,232 @@ export type SupportZammadWebhookResponses = {
57525
58477
  */
57526
58478
  200: unknown;
57527
58479
  };
58480
+ export type SupportSettingsAtlassianListData = {
58481
+ body?: never;
58482
+ path?: never;
58483
+ query?: {
58484
+ /**
58485
+ * A page number within the paginated result set.
58486
+ */
58487
+ page?: number;
58488
+ /**
58489
+ * Number of results to return per page.
58490
+ */
58491
+ page_size?: number;
58492
+ };
58493
+ url: '/api/support/settings/atlassian/';
58494
+ };
58495
+ export type SupportSettingsAtlassianListResponses = {
58496
+ /**
58497
+ * No response body
58498
+ */
58499
+ 200: unknown;
58500
+ };
58501
+ export type SupportSettingsAtlassianCreateData = {
58502
+ body?: never;
58503
+ path?: never;
58504
+ query?: never;
58505
+ url: '/api/support/settings/atlassian/';
58506
+ };
58507
+ export type SupportSettingsAtlassianCreateResponses = {
58508
+ /**
58509
+ * No response body
58510
+ */
58511
+ 201: unknown;
58512
+ };
58513
+ export type SupportSettingsAtlassianDestroyData = {
58514
+ body?: never;
58515
+ path: {
58516
+ /**
58517
+ * A unique integer value identifying this issue.
58518
+ */
58519
+ id: number;
58520
+ };
58521
+ query?: never;
58522
+ url: '/api/support/settings/atlassian/{id}/';
58523
+ };
58524
+ export type SupportSettingsAtlassianDestroyResponses = {
58525
+ /**
58526
+ * No response body
58527
+ */
58528
+ 204: void;
58529
+ };
58530
+ export type SupportSettingsAtlassianDestroyResponse = SupportSettingsAtlassianDestroyResponses[keyof SupportSettingsAtlassianDestroyResponses];
58531
+ export type SupportSettingsAtlassianRetrieveData = {
58532
+ body?: never;
58533
+ path: {
58534
+ /**
58535
+ * A unique integer value identifying this issue.
58536
+ */
58537
+ id: number;
58538
+ };
58539
+ query?: never;
58540
+ url: '/api/support/settings/atlassian/{id}/';
58541
+ };
58542
+ export type SupportSettingsAtlassianRetrieveResponses = {
58543
+ /**
58544
+ * No response body
58545
+ */
58546
+ 200: unknown;
58547
+ };
58548
+ export type SupportSettingsAtlassianPartialUpdateData = {
58549
+ body?: never;
58550
+ path: {
58551
+ /**
58552
+ * A unique integer value identifying this issue.
58553
+ */
58554
+ id: number;
58555
+ };
58556
+ query?: never;
58557
+ url: '/api/support/settings/atlassian/{id}/';
58558
+ };
58559
+ export type SupportSettingsAtlassianPartialUpdateResponses = {
58560
+ /**
58561
+ * No response body
58562
+ */
58563
+ 200: unknown;
58564
+ };
58565
+ export type SupportSettingsAtlassianUpdateData = {
58566
+ body?: never;
58567
+ path: {
58568
+ /**
58569
+ * A unique integer value identifying this issue.
58570
+ */
58571
+ id: number;
58572
+ };
58573
+ query?: never;
58574
+ url: '/api/support/settings/atlassian/{id}/';
58575
+ };
58576
+ export type SupportSettingsAtlassianUpdateResponses = {
58577
+ /**
58578
+ * No response body
58579
+ */
58580
+ 200: unknown;
58581
+ };
58582
+ export type SupportSettingsAtlassianCurrentSettingsRetrieveData = {
58583
+ body?: never;
58584
+ path?: never;
58585
+ query?: never;
58586
+ url: '/api/support/settings/atlassian/current_settings/';
58587
+ };
58588
+ export type SupportSettingsAtlassianCurrentSettingsRetrieveResponses = {
58589
+ /**
58590
+ * No response body
58591
+ */
58592
+ 200: unknown;
58593
+ };
58594
+ export type SupportSettingsAtlassianDiscoverCustomFieldsData = {
58595
+ body: DiscoverCustomFieldsRequestRequest;
58596
+ path?: never;
58597
+ query?: {
58598
+ /**
58599
+ * A page number within the paginated result set.
58600
+ */
58601
+ page?: number;
58602
+ /**
58603
+ * Number of results to return per page.
58604
+ */
58605
+ page_size?: number;
58606
+ };
58607
+ url: '/api/support/settings/atlassian/discover_custom_fields/';
58608
+ };
58609
+ export type SupportSettingsAtlassianDiscoverCustomFieldsResponses = {
58610
+ 200: Array<AtlassianCustomFieldResponse>;
58611
+ };
58612
+ export type SupportSettingsAtlassianDiscoverCustomFieldsResponse = SupportSettingsAtlassianDiscoverCustomFieldsResponses[keyof SupportSettingsAtlassianDiscoverCustomFieldsResponses];
58613
+ export type SupportSettingsAtlassianDiscoverPrioritiesData = {
58614
+ body: DiscoverPrioritiesRequestRequest;
58615
+ path?: never;
58616
+ query?: {
58617
+ /**
58618
+ * A page number within the paginated result set.
58619
+ */
58620
+ page?: number;
58621
+ /**
58622
+ * Number of results to return per page.
58623
+ */
58624
+ page_size?: number;
58625
+ };
58626
+ url: '/api/support/settings/atlassian/discover_priorities/';
58627
+ };
58628
+ export type SupportSettingsAtlassianDiscoverPrioritiesResponses = {
58629
+ 200: Array<AtlassianPriorityResponse>;
58630
+ };
58631
+ export type SupportSettingsAtlassianDiscoverPrioritiesResponse = SupportSettingsAtlassianDiscoverPrioritiesResponses[keyof SupportSettingsAtlassianDiscoverPrioritiesResponses];
58632
+ export type SupportSettingsAtlassianDiscoverProjectsData = {
58633
+ body: DiscoverProjectsRequestRequest;
58634
+ path?: never;
58635
+ query?: {
58636
+ /**
58637
+ * A page number within the paginated result set.
58638
+ */
58639
+ page?: number;
58640
+ /**
58641
+ * Number of results to return per page.
58642
+ */
58643
+ page_size?: number;
58644
+ };
58645
+ url: '/api/support/settings/atlassian/discover_projects/';
58646
+ };
58647
+ export type SupportSettingsAtlassianDiscoverProjectsResponses = {
58648
+ 200: Array<AtlassianProjectResponse>;
58649
+ };
58650
+ export type SupportSettingsAtlassianDiscoverProjectsResponse = SupportSettingsAtlassianDiscoverProjectsResponses[keyof SupportSettingsAtlassianDiscoverProjectsResponses];
58651
+ export type SupportSettingsAtlassianDiscoverRequestTypesData = {
58652
+ body: DiscoverRequestTypesRequestRequest;
58653
+ path?: never;
58654
+ query?: {
58655
+ /**
58656
+ * A page number within the paginated result set.
58657
+ */
58658
+ page?: number;
58659
+ /**
58660
+ * Number of results to return per page.
58661
+ */
58662
+ page_size?: number;
58663
+ };
58664
+ url: '/api/support/settings/atlassian/discover_request_types/';
58665
+ };
58666
+ export type SupportSettingsAtlassianDiscoverRequestTypesResponses = {
58667
+ 200: Array<AtlassianRequestTypeResponse>;
58668
+ };
58669
+ export type SupportSettingsAtlassianDiscoverRequestTypesResponse = SupportSettingsAtlassianDiscoverRequestTypesResponses[keyof SupportSettingsAtlassianDiscoverRequestTypesResponses];
58670
+ export type SupportSettingsAtlassianPreviewSettingsData = {
58671
+ body: AtlassianSettingsPreviewRequest;
58672
+ path?: never;
58673
+ query?: never;
58674
+ url: '/api/support/settings/atlassian/preview_settings/';
58675
+ };
58676
+ export type SupportSettingsAtlassianPreviewSettingsResponses = {
58677
+ /**
58678
+ * No response body
58679
+ */
58680
+ 200: unknown;
58681
+ };
58682
+ export type SupportSettingsAtlassianSaveSettingsData = {
58683
+ body: AtlassianSettingsSaveRequest;
58684
+ path?: never;
58685
+ query?: never;
58686
+ url: '/api/support/settings/atlassian/save_settings/';
58687
+ };
58688
+ export type SupportSettingsAtlassianSaveSettingsResponses = {
58689
+ /**
58690
+ * No response body
58691
+ */
58692
+ 200: unknown;
58693
+ };
58694
+ export type SupportSettingsAtlassianValidateCredentialsData = {
58695
+ body: AtlassianCredentialsRequest;
58696
+ path?: never;
58697
+ query?: never;
58698
+ url: '/api/support/settings/atlassian/validate_credentials/';
58699
+ };
58700
+ export type SupportSettingsAtlassianValidateCredentialsResponses = {
58701
+ /**
58702
+ * No response body
58703
+ */
58704
+ 200: unknown;
58705
+ };
57528
58706
  export type SyncIssuesRetrieveData = {
57529
58707
  body?: never;
57530
58708
  path?: never;
@@ -57843,6 +59021,10 @@ export type UserAgreementsListData = {
57843
59021
  path?: never;
57844
59022
  query?: {
57845
59023
  agreement_type?: 'PP' | 'TOS';
59024
+ /**
59025
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
59026
+ */
59027
+ language?: string;
57846
59028
  /**
57847
59029
  * A page number within the paginated result set.
57848
59030
  */
@@ -57863,6 +59045,10 @@ export type UserAgreementsCountData = {
57863
59045
  path?: never;
57864
59046
  query?: {
57865
59047
  agreement_type?: 'PP' | 'TOS';
59048
+ /**
59049
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
59050
+ */
59051
+ language?: string;
57866
59052
  /**
57867
59053
  * A page number within the paginated result set.
57868
59054
  */
@@ -58015,6 +59201,21 @@ export type UserGroupInvitationsCreateResponses = {
58015
59201
  201: GroupInvitation;
58016
59202
  };
58017
59203
  export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
59204
+ export type UserGroupInvitationsDestroyData = {
59205
+ body?: never;
59206
+ path: {
59207
+ uuid: string;
59208
+ };
59209
+ query?: never;
59210
+ url: '/api/user-group-invitations/{uuid}/';
59211
+ };
59212
+ export type UserGroupInvitationsDestroyResponses = {
59213
+ /**
59214
+ * No response body
59215
+ */
59216
+ 204: void;
59217
+ };
59218
+ export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
58018
59219
  export type UserGroupInvitationsRetrieveData = {
58019
59220
  body?: never;
58020
59221
  path: {