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

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
  /**
@@ -9359,6 +9840,7 @@ export type OpenStackTenant = {
9359
9840
  * Volume type name to use when creating volumes.
9360
9841
  */
9361
9842
  default_volume_type_name?: string;
9843
+ skip_creation_of_default_router?: boolean;
9362
9844
  readonly marketplace_offering_uuid?: string | null;
9363
9845
  readonly marketplace_offering_name?: string | null;
9364
9846
  readonly marketplace_offering_plugin_options?: {
@@ -9410,6 +9892,8 @@ export type OpenStackTenantRequest = {
9410
9892
  */
9411
9893
  default_volume_type_name?: string;
9412
9894
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
9895
+ skip_creation_of_default_subnet?: boolean;
9896
+ skip_creation_of_default_router?: boolean;
9413
9897
  };
9414
9898
  export type OpenStackTenantSecurityGroup = {
9415
9899
  name: string;
@@ -10109,7 +10593,7 @@ export type PatchedIssueStatusRequest = {
10109
10593
  * Status name in Jira.
10110
10594
  */
10111
10595
  name?: string;
10112
- type?: IssueStatusTypeEnum;
10596
+ type?: IssueStatusType;
10113
10597
  };
10114
10598
  export type PatchedKeycloakUserGroupMembershipRequest = {
10115
10599
  /**
@@ -10517,6 +11001,8 @@ export type PatchedOpenStackTenantRequest = {
10517
11001
  */
10518
11002
  default_volume_type_name?: string;
10519
11003
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
11004
+ skip_creation_of_default_subnet?: boolean;
11005
+ skip_creation_of_default_router?: boolean;
10520
11006
  };
10521
11007
  export type PatchedOpenStackVolumeRequest = {
10522
11008
  name?: string;
@@ -10707,6 +11193,10 @@ export type PatchedProtectedCallRequest = {
10707
11193
  * Compliance checklist that proposals must complete before submission
10708
11194
  */
10709
11195
  compliance_checklist?: string | null;
11196
+ /**
11197
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
11198
+ */
11199
+ proposal_slug_template?: string | null;
10710
11200
  };
10711
11201
  export type PatchedProtectedRoundRequest = {
10712
11202
  start_time?: string;
@@ -10748,11 +11238,11 @@ export type PatchedQuestionAdminRequest = {
10748
11238
  question_type?: QuestionTypeEnum;
10749
11239
  order?: number;
10750
11240
  /**
10751
- * Minimum value allowed for NUMBER type questions
11241
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
10752
11242
  */
10753
11243
  min_value?: string | null;
10754
11244
  /**
10755
- * Maximum value allowed for NUMBER type questions
11245
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
10756
11246
  */
10757
11247
  max_value?: string | null;
10758
11248
  /**
@@ -10909,6 +11399,18 @@ export type PatchedRemoteSynchronisationRequest = {
10909
11399
  is_active?: boolean;
10910
11400
  remotelocalcategory_set?: Array<NestedRemoteLocalCategoryRequest>;
10911
11401
  };
11402
+ export type PatchedRequestTypeAdminRequest = {
11403
+ name?: string;
11404
+ issue_type_name?: string;
11405
+ /**
11406
+ * Whether this request type is available for issue creation.
11407
+ */
11408
+ is_active?: boolean;
11409
+ /**
11410
+ * Display order. First type (lowest order) is the default.
11411
+ */
11412
+ order?: number;
11413
+ };
10912
11414
  export type PatchedRequestedOfferingRequest = {
10913
11415
  attributes?: unknown;
10914
11416
  plan?: string | null;
@@ -11152,6 +11654,10 @@ export type PatchedTemplateRequest = {
11152
11654
  export type PatchedUserAgreementRequest = {
11153
11655
  content?: string;
11154
11656
  agreement_type?: AgreementTypeEnum;
11657
+ /**
11658
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
11659
+ */
11660
+ language?: string;
11155
11661
  };
11156
11662
  export type PatchedUserInfoRequest = {
11157
11663
  /**
@@ -12000,7 +12506,11 @@ export type ProposalChecklistAnswerSubmitResponse = {
12000
12506
  detail: string;
12001
12507
  completion: ChecklistCompletionReviewer;
12002
12508
  };
12509
+ export type ProposalDetachDocumentsRequest = {
12510
+ documents: Array<string>;
12511
+ };
12003
12512
  export type ProposalDocumentation = {
12513
+ readonly uuid: string;
12004
12514
  /**
12005
12515
  * Upload supporting documentation in PDF format.
12006
12516
  */
@@ -12152,6 +12662,10 @@ export type ProtectedCall = {
12152
12662
  */
12153
12663
  compliance_checklist?: string | null;
12154
12664
  readonly compliance_checklist_name?: string;
12665
+ /**
12666
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12667
+ */
12668
+ proposal_slug_template?: string | null;
12155
12669
  };
12156
12670
  export type ProtectedCallRequest = {
12157
12671
  /**
@@ -12178,6 +12692,10 @@ export type ProtectedCallRequest = {
12178
12692
  * Compliance checklist that proposals must complete before submission
12179
12693
  */
12180
12694
  compliance_checklist?: string | null;
12695
+ /**
12696
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12697
+ */
12698
+ proposal_slug_template?: string | null;
12181
12699
  };
12182
12700
  export type ProtectedProposalList = {
12183
12701
  readonly uuid: string;
@@ -12727,11 +13245,11 @@ export type Question = {
12727
13245
  question_type?: QuestionTypeEnum;
12728
13246
  order?: number;
12729
13247
  /**
12730
- * Minimum value allowed for NUMBER type questions
13248
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12731
13249
  */
12732
13250
  min_value?: string | null;
12733
13251
  /**
12734
- * Maximum value allowed for NUMBER type questions
13252
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12735
13253
  */
12736
13254
  max_value?: string | null;
12737
13255
  /**
@@ -12791,11 +13309,11 @@ export type QuestionAdmin = {
12791
13309
  question_type?: QuestionTypeEnum;
12792
13310
  order?: number;
12793
13311
  /**
12794
- * Minimum value allowed for NUMBER type questions
13312
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12795
13313
  */
12796
13314
  min_value?: string | null;
12797
13315
  /**
12798
- * Maximum value allowed for NUMBER type questions
13316
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12799
13317
  */
12800
13318
  max_value?: string | null;
12801
13319
  /**
@@ -12857,11 +13375,11 @@ export type QuestionAdminRequest = {
12857
13375
  question_type?: QuestionTypeEnum;
12858
13376
  order?: number;
12859
13377
  /**
12860
- * Minimum value allowed for NUMBER type questions
13378
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12861
13379
  */
12862
13380
  min_value?: string | null;
12863
13381
  /**
12864
- * Maximum value allowed for NUMBER type questions
13382
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12865
13383
  */
12866
13384
  max_value?: string | null;
12867
13385
  /**
@@ -12976,7 +13494,7 @@ export type QuestionOptionsAdminRequest = {
12976
13494
  order?: number;
12977
13495
  question: string;
12978
13496
  };
12979
- export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files';
13497
+ 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
13498
  export type QuestionWithAnswer = {
12981
13499
  readonly uuid: string;
12982
13500
  readonly description: string;
@@ -12992,11 +13510,11 @@ export type QuestionWithAnswer = {
12992
13510
  } | null;
12993
13511
  readonly question_options: Array<unknown> | null;
12994
13512
  /**
12995
- * Minimum value allowed for NUMBER type questions
13513
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12996
13514
  */
12997
13515
  readonly min_value: string | null;
12998
13516
  /**
12999
- * Maximum value allowed for NUMBER type questions
13517
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
13000
13518
  */
13001
13519
  readonly max_value: string | null;
13002
13520
  /**
@@ -13015,6 +13533,9 @@ export type QuestionWithAnswer = {
13015
13533
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
13016
13534
  */
13017
13535
  readonly max_files_count: number | null;
13536
+ readonly dependencies_info: {
13537
+ [key: string]: unknown;
13538
+ } | null;
13018
13539
  };
13019
13540
  export type QuestionWithAnswerReviewer = {
13020
13541
  readonly uuid: string;
@@ -13031,11 +13552,11 @@ export type QuestionWithAnswerReviewer = {
13031
13552
  } | null;
13032
13553
  readonly question_options: Array<unknown> | null;
13033
13554
  /**
13034
- * Minimum value allowed for NUMBER type questions
13555
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
13035
13556
  */
13036
13557
  readonly min_value: string | null;
13037
13558
  /**
13038
- * Maximum value allowed for NUMBER type questions
13559
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
13039
13560
  */
13040
13561
  readonly max_value: string | null;
13041
13562
  /**
@@ -13054,6 +13575,9 @@ export type QuestionWithAnswerReviewer = {
13054
13575
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
13055
13576
  */
13056
13577
  readonly max_files_count: number | null;
13578
+ readonly dependencies_info: {
13579
+ [key: string]: unknown;
13580
+ } | null;
13057
13581
  operator?: ChecklistOperators | BlankEnum;
13058
13582
  /**
13059
13583
  * Answer value that trigger review.
@@ -14120,6 +14644,51 @@ export type ReportSectionRequest = {
14120
14644
  */
14121
14645
  body: string;
14122
14646
  };
14647
+ export type RequestType = {
14648
+ readonly url: string;
14649
+ readonly uuid: string;
14650
+ name: string;
14651
+ issue_type_name: string;
14652
+ /**
14653
+ * Display order. First type (lowest order) is the default.
14654
+ */
14655
+ order?: number;
14656
+ };
14657
+ export type RequestTypeAdmin = {
14658
+ readonly url: string;
14659
+ readonly uuid: string;
14660
+ name: string;
14661
+ issue_type_name: string;
14662
+ /**
14663
+ * Backend ID for synced types. Null for manually created types.
14664
+ */
14665
+ readonly backend_id: number | null;
14666
+ readonly backend_name: string | null;
14667
+ /**
14668
+ * Whether this request type is available for issue creation.
14669
+ */
14670
+ is_active?: boolean;
14671
+ /**
14672
+ * Display order. First type (lowest order) is the default.
14673
+ */
14674
+ order?: number;
14675
+ /**
14676
+ * Returns True if the request type was synced from a backend.
14677
+ */
14678
+ readonly is_synced: boolean;
14679
+ };
14680
+ export type RequestTypeAdminRequest = {
14681
+ name: string;
14682
+ issue_type_name: string;
14683
+ /**
14684
+ * Whether this request type is available for issue creation.
14685
+ */
14686
+ is_active?: boolean;
14687
+ /**
14688
+ * Display order. First type (lowest order) is the default.
14689
+ */
14690
+ order?: number;
14691
+ };
14123
14692
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
14124
14693
  export type RequestedOffering = {
14125
14694
  readonly uuid: string;
@@ -15994,12 +16563,20 @@ export type UserAgreement = {
15994
16563
  readonly uuid: string;
15995
16564
  content: string;
15996
16565
  agreement_type: AgreementTypeEnum;
16566
+ /**
16567
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16568
+ */
16569
+ language: string;
15997
16570
  readonly created: string;
15998
16571
  readonly modified: string;
15999
16572
  };
16000
16573
  export type UserAgreementRequest = {
16001
16574
  content: string;
16002
16575
  agreement_type: AgreementTypeEnum;
16576
+ /**
16577
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16578
+ */
16579
+ language: string;
16003
16580
  };
16004
16581
  export type UserAuthMethodCount = {
16005
16582
  /**
@@ -16646,14 +17223,14 @@ export type WebHook = {
16646
17223
  };
16647
17224
  export type WebHookContentTypeEnum = 'json' | 'form';
16648
17225
  export type WebHookReceiver = {
16649
- webhookEvent: WebhookEventEnum;
17226
+ webhookEvent: string;
16650
17227
  issue: JiraIssue;
16651
17228
  comment?: JiraComment;
16652
17229
  changelog?: JiraChangelog;
16653
17230
  issue_event_type_name?: string;
16654
17231
  };
16655
17232
  export type WebHookReceiverRequest = {
16656
- webhookEvent: WebhookEventEnum;
17233
+ webhookEvent: string;
16657
17234
  issue: JiraIssueRequest;
16658
17235
  comment?: JiraCommentRequest;
16659
17236
  changelog?: JiraChangelogRequest;
@@ -16666,7 +17243,6 @@ export type WebHookRequest = {
16666
17243
  destination_url: string;
16667
17244
  content_type?: WebHookContentTypeEnum;
16668
17245
  };
16669
- export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
16670
17246
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
16671
17247
  export type AzureVirtualMachineCreateOrderAttributes = {
16672
17248
  name: string;
@@ -16694,6 +17270,7 @@ export type OpenStackTenantCreateOrderAttributes = {
16694
17270
  subnet_cidr?: string;
16695
17271
  skip_connection_extnet?: boolean;
16696
17272
  skip_creation_of_default_router?: boolean;
17273
+ skip_creation_of_default_subnet?: boolean;
16697
17274
  /**
16698
17275
  * Optional availability group. Will be used for all instances provisioned in this tenant
16699
17276
  */
@@ -17754,6 +18331,14 @@ export type ConstanceSettingsRequestForm = {
17754
18331
  SIDEBAR_STYLE?: string;
17755
18332
  SITE_LOGO?: (Blob | File) | null;
17756
18333
  LOGIN_LOGO?: (Blob | File) | null;
18334
+ LOGIN_LOGO_MULTILINGUAL?: {
18335
+ [key: string]: (Blob | File) | null;
18336
+ };
18337
+ LOGIN_PAGE_LAYOUT?: string;
18338
+ LOGIN_PAGE_VIDEO_URL?: string;
18339
+ LOGIN_PAGE_STATS?: Array<unknown>;
18340
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18341
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17757
18342
  FAVICON?: (Blob | File) | null;
17758
18343
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17759
18344
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17776,8 +18361,6 @@ export type ConstanceSettingsRequestForm = {
17776
18361
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17777
18362
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17778
18363
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17779
- ATLASSIAN_ISSUE_TYPES?: string;
17780
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17781
18364
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17782
18365
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17783
18366
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -17926,6 +18509,14 @@ export type ConstanceSettingsRequestMultipart = {
17926
18509
  SIDEBAR_STYLE?: string;
17927
18510
  SITE_LOGO?: (Blob | File) | null;
17928
18511
  LOGIN_LOGO?: (Blob | File) | null;
18512
+ LOGIN_LOGO_MULTILINGUAL?: {
18513
+ [key: string]: (Blob | File) | null;
18514
+ };
18515
+ LOGIN_PAGE_LAYOUT?: string;
18516
+ LOGIN_PAGE_VIDEO_URL?: string;
18517
+ LOGIN_PAGE_STATS?: Array<unknown>;
18518
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18519
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17929
18520
  FAVICON?: (Blob | File) | null;
17930
18521
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17931
18522
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17948,8 +18539,6 @@ export type ConstanceSettingsRequestMultipart = {
17948
18539
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17949
18540
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17950
18541
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17951
- ATLASSIAN_ISSUE_TYPES?: string;
17952
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17953
18542
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17954
18543
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17955
18544
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -21658,6 +22247,10 @@ export type BookingResourcesListData = {
21658
22247
  * Has termination date
21659
22248
  */
21660
22249
  has_terminate_date?: boolean;
22250
+ /**
22251
+ * Filter by attached state
22252
+ */
22253
+ is_attached?: boolean;
21661
22254
  /**
21662
22255
  * LEXIS links supported
21663
22256
  */
@@ -21830,6 +22423,10 @@ export type BookingResourcesCountData = {
21830
22423
  * Has termination date
21831
22424
  */
21832
22425
  has_terminate_date?: boolean;
22426
+ /**
22427
+ * Filter by attached state
22428
+ */
22429
+ is_attached?: boolean;
21833
22430
  /**
21834
22431
  * LEXIS links supported
21835
22432
  */
@@ -22703,9 +23300,7 @@ export type CeleryStatsRetrieveData = {
22703
23300
  url: '/api/celery-stats/';
22704
23301
  };
22705
23302
  export type CeleryStatsRetrieveResponses = {
22706
- 200: {
22707
- [key: string]: unknown;
22708
- };
23303
+ 200: CeleryStatsResponse;
22709
23304
  };
22710
23305
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
22711
23306
  export type ChatInvokeData = {
@@ -29694,6 +30289,109 @@ export type MarketplaceCustomerServiceAccountsRotateApiKeyResponses = {
29694
30289
  200: CustomerServiceAccount;
29695
30290
  };
29696
30291
  export type MarketplaceCustomerServiceAccountsRotateApiKeyResponse = MarketplaceCustomerServiceAccountsRotateApiKeyResponses[keyof MarketplaceCustomerServiceAccountsRotateApiKeyResponses];
30292
+ export type MarketplaceDemoPresetsInfoRetrieveData = {
30293
+ body?: never;
30294
+ path: {
30295
+ /**
30296
+ * Name of the preset
30297
+ */
30298
+ name: string;
30299
+ };
30300
+ query?: never;
30301
+ url: '/api/marketplace-demo-presets/info/{name}/';
30302
+ };
30303
+ export type MarketplaceDemoPresetsInfoRetrieveErrors = {
30304
+ /**
30305
+ * No response body
30306
+ */
30307
+ 404: unknown;
30308
+ };
30309
+ export type MarketplaceDemoPresetsInfoRetrieveResponses = {
30310
+ 200: DemoPreset;
30311
+ };
30312
+ export type MarketplaceDemoPresetsInfoRetrieveResponse = MarketplaceDemoPresetsInfoRetrieveResponses[keyof MarketplaceDemoPresetsInfoRetrieveResponses];
30313
+ export type MarketplaceDemoPresetsInfoCountData = {
30314
+ body?: never;
30315
+ path: {
30316
+ /**
30317
+ * Name of the preset
30318
+ */
30319
+ name: string;
30320
+ };
30321
+ query?: never;
30322
+ url: '/api/marketplace-demo-presets/info/{name}/';
30323
+ };
30324
+ export type MarketplaceDemoPresetsInfoCountResponses = {
30325
+ /**
30326
+ * No response body
30327
+ */
30328
+ 200: unknown;
30329
+ };
30330
+ export type MarketplaceDemoPresetsListListData = {
30331
+ body?: never;
30332
+ path?: never;
30333
+ query?: {
30334
+ /**
30335
+ * A page number within the paginated result set.
30336
+ */
30337
+ page?: number;
30338
+ /**
30339
+ * Number of results to return per page.
30340
+ */
30341
+ page_size?: number;
30342
+ };
30343
+ url: '/api/marketplace-demo-presets/list/';
30344
+ };
30345
+ export type MarketplaceDemoPresetsListListResponses = {
30346
+ 200: Array<DemoPreset>;
30347
+ };
30348
+ export type MarketplaceDemoPresetsListListResponse = MarketplaceDemoPresetsListListResponses[keyof MarketplaceDemoPresetsListListResponses];
30349
+ export type MarketplaceDemoPresetsListCountData = {
30350
+ body?: never;
30351
+ path?: never;
30352
+ query?: {
30353
+ /**
30354
+ * A page number within the paginated result set.
30355
+ */
30356
+ page?: number;
30357
+ /**
30358
+ * Number of results to return per page.
30359
+ */
30360
+ page_size?: number;
30361
+ };
30362
+ url: '/api/marketplace-demo-presets/list/';
30363
+ };
30364
+ export type MarketplaceDemoPresetsListCountResponses = {
30365
+ /**
30366
+ * No response body
30367
+ */
30368
+ 200: unknown;
30369
+ };
30370
+ export type MarketplaceDemoPresetsLoadData = {
30371
+ body?: DemoPresetLoadRequestRequest;
30372
+ path: {
30373
+ /**
30374
+ * Name of the preset to load
30375
+ */
30376
+ name: string;
30377
+ };
30378
+ query?: never;
30379
+ url: '/api/marketplace-demo-presets/load/{name}/';
30380
+ };
30381
+ export type MarketplaceDemoPresetsLoadErrors = {
30382
+ /**
30383
+ * No response body
30384
+ */
30385
+ 400: unknown;
30386
+ /**
30387
+ * No response body
30388
+ */
30389
+ 404: unknown;
30390
+ };
30391
+ export type MarketplaceDemoPresetsLoadResponses = {
30392
+ 200: DemoPresetLoadResponse;
30393
+ };
30394
+ export type MarketplaceDemoPresetsLoadResponse = MarketplaceDemoPresetsLoadResponses[keyof MarketplaceDemoPresetsLoadResponses];
29697
30395
  export type MarketplaceGlobalCategoriesRetrieveData = {
29698
30396
  body?: never;
29699
30397
  path?: never;
@@ -31165,7 +31863,12 @@ export type MarketplaceOfferingUsersChecklistRetrieveData = {
31165
31863
  path: {
31166
31864
  uuid: string;
31167
31865
  };
31168
- query?: never;
31866
+ query?: {
31867
+ /**
31868
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
31869
+ */
31870
+ include_all?: boolean;
31871
+ };
31169
31872
  url: '/api/marketplace-offering-users/{uuid}/checklist/';
31170
31873
  };
31171
31874
  export type MarketplaceOfferingUsersChecklistRetrieveErrors = {
@@ -35038,6 +35741,10 @@ export type MarketplaceProviderResourcesListData = {
35038
35741
  * Has termination date
35039
35742
  */
35040
35743
  has_terminate_date?: boolean;
35744
+ /**
35745
+ * Filter by attached state
35746
+ */
35747
+ is_attached?: boolean;
35041
35748
  /**
35042
35749
  * LEXIS links supported
35043
35750
  */
@@ -35209,6 +35916,10 @@ export type MarketplaceProviderResourcesCountData = {
35209
35916
  * Has termination date
35210
35917
  */
35211
35918
  has_terminate_date?: boolean;
35919
+ /**
35920
+ * Filter by attached state
35921
+ */
35922
+ is_attached?: boolean;
35212
35923
  /**
35213
35924
  * LEXIS links supported
35214
35925
  */
@@ -36419,6 +37130,10 @@ export type MarketplaceResourcesListData = {
36419
37130
  * Has termination date
36420
37131
  */
36421
37132
  has_terminate_date?: boolean;
37133
+ /**
37134
+ * Filter by attached state
37135
+ */
37136
+ is_attached?: boolean;
36422
37137
  /**
36423
37138
  * LEXIS links supported
36424
37139
  */
@@ -36590,6 +37305,10 @@ export type MarketplaceResourcesCountData = {
36590
37305
  * Has termination date
36591
37306
  */
36592
37307
  has_terminate_date?: boolean;
37308
+ /**
37309
+ * Filter by attached state
37310
+ */
37311
+ is_attached?: boolean;
36593
37312
  /**
36594
37313
  * LEXIS links supported
36595
37314
  */
@@ -41950,7 +42669,12 @@ export type OnboardingVerificationsChecklistRetrieveData = {
41950
42669
  path: {
41951
42670
  uuid: string;
41952
42671
  };
41953
- query?: never;
42672
+ query?: {
42673
+ /**
42674
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
42675
+ */
42676
+ include_all?: boolean;
42677
+ };
41954
42678
  url: '/api/onboarding-verifications/{uuid}/checklist/';
41955
42679
  };
41956
42680
  export type OnboardingVerificationsChecklistRetrieveErrors = {
@@ -43598,7 +44322,12 @@ export type OpenportalUnmanagedProjectsChecklistRetrieveData = {
43598
44322
  path: {
43599
44323
  uuid: string;
43600
44324
  };
43601
- query?: never;
44325
+ query?: {
44326
+ /**
44327
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
44328
+ */
44329
+ include_all?: boolean;
44330
+ };
43602
44331
  url: '/api/openportal-unmanaged-projects/{uuid}/checklist/';
43603
44332
  };
43604
44333
  export type OpenportalUnmanagedProjectsChecklistRetrieveErrors = {
@@ -48233,7 +48962,7 @@ export type OpenstackTenantsListData = {
48233
48962
  * External IP
48234
48963
  */
48235
48964
  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'>;
48965
+ 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
48966
  /**
48238
48967
  * Name
48239
48968
  */
@@ -48388,7 +49117,7 @@ export type OpenstackTenantsRetrieveData = {
48388
49117
  uuid: string;
48389
49118
  };
48390
49119
  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'>;
49120
+ 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
49121
  };
48393
49122
  url: '/api/openstack-tenants/{uuid}/';
48394
49123
  };
@@ -50516,7 +51245,12 @@ export type ProjectsChecklistRetrieveData = {
50516
51245
  path: {
50517
51246
  uuid: string;
50518
51247
  };
50519
- query?: never;
51248
+ query?: {
51249
+ /**
51250
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51251
+ */
51252
+ include_all?: boolean;
51253
+ };
50520
51254
  url: '/api/projects/{uuid}/checklist/';
50521
51255
  };
50522
51256
  export type ProjectsChecklistRetrieveErrors = {
@@ -51133,7 +51867,12 @@ export type ProposalProposalsChecklistRetrieveData = {
51133
51867
  path: {
51134
51868
  uuid: string;
51135
51869
  };
51136
- query?: never;
51870
+ query?: {
51871
+ /**
51872
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51873
+ */
51874
+ include_all?: boolean;
51875
+ };
51137
51876
  url: '/api/proposal-proposals/{uuid}/checklist/';
51138
51877
  };
51139
51878
  export type ProposalProposalsChecklistRetrieveErrors = {
@@ -51230,6 +51969,20 @@ export type ProposalProposalsDeleteUserResponses = {
51230
51969
  */
51231
51970
  200: unknown;
51232
51971
  };
51972
+ export type ProposalProposalsDetachDocumentsData = {
51973
+ body: ProposalDetachDocumentsRequest;
51974
+ path: {
51975
+ uuid: string;
51976
+ };
51977
+ query?: never;
51978
+ url: '/api/proposal-proposals/{uuid}/detach_documents/';
51979
+ };
51980
+ export type ProposalProposalsDetachDocumentsResponses = {
51981
+ /**
51982
+ * No response body
51983
+ */
51984
+ 200: unknown;
51985
+ };
51233
51986
  export type ProposalProposalsListUsersListData = {
51234
51987
  body?: never;
51235
51988
  path: {
@@ -51504,7 +52257,7 @@ export type ProposalProtectedCallsListData = {
51504
52257
  customer?: string;
51505
52258
  customer_keyword?: string;
51506
52259
  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'>;
52260
+ 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
52261
  has_active_round?: boolean;
51509
52262
  name?: string;
51510
52263
  /**
@@ -51597,7 +52350,7 @@ export type ProposalProtectedCallsRetrieveData = {
51597
52350
  uuid: string;
51598
52351
  };
51599
52352
  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'>;
52353
+ 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
52354
  };
51602
52355
  url: '/api/proposal-protected-calls/{uuid}/';
51603
52356
  };
@@ -56955,13 +57708,13 @@ export type SupportIssueStatusesCountResponses = {
56955
57708
  200: unknown;
56956
57709
  };
56957
57710
  export type SupportIssueStatusesCreateData = {
56958
- body: IssueStatusRequest;
57711
+ body: IssueStatusCreateRequest;
56959
57712
  path?: never;
56960
57713
  query?: never;
56961
57714
  url: '/api/support-issue-statuses/';
56962
57715
  };
56963
57716
  export type SupportIssueStatusesCreateResponses = {
56964
- 201: IssueStatus;
57717
+ 201: IssueStatusCreate;
56965
57718
  };
56966
57719
  export type SupportIssueStatusesCreateResponse = SupportIssueStatusesCreateResponses[keyof SupportIssueStatusesCreateResponses];
56967
57720
  export type SupportIssueStatusesDestroyData = {
@@ -57004,7 +57757,7 @@ export type SupportIssueStatusesPartialUpdateResponses = {
57004
57757
  };
57005
57758
  export type SupportIssueStatusesPartialUpdateResponse = SupportIssueStatusesPartialUpdateResponses[keyof SupportIssueStatusesPartialUpdateResponses];
57006
57759
  export type SupportIssueStatusesUpdateData = {
57007
- body: IssueStatusRequest;
57760
+ body: IssueStatusCreateRequest;
57008
57761
  path: {
57009
57762
  uuid: string;
57010
57763
  };
@@ -57012,7 +57765,7 @@ export type SupportIssueStatusesUpdateData = {
57012
57765
  url: '/api/support-issue-statuses/{uuid}/';
57013
57766
  };
57014
57767
  export type SupportIssueStatusesUpdateResponses = {
57015
- 200: IssueStatus;
57768
+ 200: IssueStatusCreate;
57016
57769
  };
57017
57770
  export type SupportIssueStatusesUpdateResponse = SupportIssueStatusesUpdateResponses[keyof SupportIssueStatusesUpdateResponses];
57018
57771
  export type SupportIssuesListData = {
@@ -57300,6 +58053,197 @@ export type SupportPrioritiesRetrieveResponses = {
57300
58053
  200: Priority;
57301
58054
  };
57302
58055
  export type SupportPrioritiesRetrieveResponse = SupportPrioritiesRetrieveResponses[keyof SupportPrioritiesRetrieveResponses];
58056
+ export type SupportRequestTypesListData = {
58057
+ body?: never;
58058
+ path?: never;
58059
+ query?: {
58060
+ /**
58061
+ * A page number within the paginated result set.
58062
+ */
58063
+ page?: number;
58064
+ /**
58065
+ * Number of results to return per page.
58066
+ */
58067
+ page_size?: number;
58068
+ };
58069
+ url: '/api/support-request-types/';
58070
+ };
58071
+ export type SupportRequestTypesListResponses = {
58072
+ 200: Array<RequestType>;
58073
+ };
58074
+ export type SupportRequestTypesListResponse = SupportRequestTypesListResponses[keyof SupportRequestTypesListResponses];
58075
+ export type SupportRequestTypesCountData = {
58076
+ body?: never;
58077
+ path?: never;
58078
+ query?: {
58079
+ /**
58080
+ * A page number within the paginated result set.
58081
+ */
58082
+ page?: number;
58083
+ /**
58084
+ * Number of results to return per page.
58085
+ */
58086
+ page_size?: number;
58087
+ };
58088
+ url: '/api/support-request-types/';
58089
+ };
58090
+ export type SupportRequestTypesCountResponses = {
58091
+ /**
58092
+ * No response body
58093
+ */
58094
+ 200: unknown;
58095
+ };
58096
+ export type SupportRequestTypesAdminListData = {
58097
+ body?: never;
58098
+ path?: never;
58099
+ query?: {
58100
+ is_active?: boolean;
58101
+ name?: string;
58102
+ /**
58103
+ * A page number within the paginated result set.
58104
+ */
58105
+ page?: number;
58106
+ /**
58107
+ * Number of results to return per page.
58108
+ */
58109
+ page_size?: number;
58110
+ };
58111
+ url: '/api/support-request-types-admin/';
58112
+ };
58113
+ export type SupportRequestTypesAdminListResponses = {
58114
+ 200: Array<RequestTypeAdmin>;
58115
+ };
58116
+ export type SupportRequestTypesAdminListResponse = SupportRequestTypesAdminListResponses[keyof SupportRequestTypesAdminListResponses];
58117
+ export type SupportRequestTypesAdminCountData = {
58118
+ body?: never;
58119
+ path?: never;
58120
+ query?: {
58121
+ is_active?: boolean;
58122
+ name?: string;
58123
+ /**
58124
+ * A page number within the paginated result set.
58125
+ */
58126
+ page?: number;
58127
+ /**
58128
+ * Number of results to return per page.
58129
+ */
58130
+ page_size?: number;
58131
+ };
58132
+ url: '/api/support-request-types-admin/';
58133
+ };
58134
+ export type SupportRequestTypesAdminCountResponses = {
58135
+ /**
58136
+ * No response body
58137
+ */
58138
+ 200: unknown;
58139
+ };
58140
+ export type SupportRequestTypesAdminCreateData = {
58141
+ body: RequestTypeAdminRequest;
58142
+ path?: never;
58143
+ query?: never;
58144
+ url: '/api/support-request-types-admin/';
58145
+ };
58146
+ export type SupportRequestTypesAdminCreateResponses = {
58147
+ 201: RequestTypeAdmin;
58148
+ };
58149
+ export type SupportRequestTypesAdminCreateResponse = SupportRequestTypesAdminCreateResponses[keyof SupportRequestTypesAdminCreateResponses];
58150
+ export type SupportRequestTypesAdminDestroyData = {
58151
+ body?: never;
58152
+ path: {
58153
+ uuid: string;
58154
+ };
58155
+ query?: never;
58156
+ url: '/api/support-request-types-admin/{uuid}/';
58157
+ };
58158
+ export type SupportRequestTypesAdminDestroyResponses = {
58159
+ /**
58160
+ * No response body
58161
+ */
58162
+ 204: void;
58163
+ };
58164
+ export type SupportRequestTypesAdminDestroyResponse = SupportRequestTypesAdminDestroyResponses[keyof SupportRequestTypesAdminDestroyResponses];
58165
+ export type SupportRequestTypesAdminRetrieveData = {
58166
+ body?: never;
58167
+ path: {
58168
+ uuid: string;
58169
+ };
58170
+ query?: never;
58171
+ url: '/api/support-request-types-admin/{uuid}/';
58172
+ };
58173
+ export type SupportRequestTypesAdminRetrieveResponses = {
58174
+ 200: RequestTypeAdmin;
58175
+ };
58176
+ export type SupportRequestTypesAdminRetrieveResponse = SupportRequestTypesAdminRetrieveResponses[keyof SupportRequestTypesAdminRetrieveResponses];
58177
+ export type SupportRequestTypesAdminPartialUpdateData = {
58178
+ body?: PatchedRequestTypeAdminRequest;
58179
+ path: {
58180
+ uuid: string;
58181
+ };
58182
+ query?: never;
58183
+ url: '/api/support-request-types-admin/{uuid}/';
58184
+ };
58185
+ export type SupportRequestTypesAdminPartialUpdateResponses = {
58186
+ 200: RequestTypeAdmin;
58187
+ };
58188
+ export type SupportRequestTypesAdminPartialUpdateResponse = SupportRequestTypesAdminPartialUpdateResponses[keyof SupportRequestTypesAdminPartialUpdateResponses];
58189
+ export type SupportRequestTypesAdminUpdateData = {
58190
+ body: RequestTypeAdminRequest;
58191
+ path: {
58192
+ uuid: string;
58193
+ };
58194
+ query?: never;
58195
+ url: '/api/support-request-types-admin/{uuid}/';
58196
+ };
58197
+ export type SupportRequestTypesAdminUpdateResponses = {
58198
+ 200: RequestTypeAdmin;
58199
+ };
58200
+ export type SupportRequestTypesAdminUpdateResponse = SupportRequestTypesAdminUpdateResponses[keyof SupportRequestTypesAdminUpdateResponses];
58201
+ export type SupportRequestTypesAdminActivateData = {
58202
+ body: RequestTypeAdminRequest;
58203
+ path: {
58204
+ uuid: string;
58205
+ };
58206
+ query?: never;
58207
+ url: '/api/support-request-types-admin/{uuid}/activate/';
58208
+ };
58209
+ export type SupportRequestTypesAdminActivateResponses = {
58210
+ 200: RequestTypeAdmin;
58211
+ };
58212
+ export type SupportRequestTypesAdminActivateResponse = SupportRequestTypesAdminActivateResponses[keyof SupportRequestTypesAdminActivateResponses];
58213
+ export type SupportRequestTypesAdminDeactivateData = {
58214
+ body: RequestTypeAdminRequest;
58215
+ path: {
58216
+ uuid: string;
58217
+ };
58218
+ query?: never;
58219
+ url: '/api/support-request-types-admin/{uuid}/deactivate/';
58220
+ };
58221
+ export type SupportRequestTypesAdminDeactivateResponses = {
58222
+ 200: RequestTypeAdmin;
58223
+ };
58224
+ export type SupportRequestTypesAdminDeactivateResponse = SupportRequestTypesAdminDeactivateResponses[keyof SupportRequestTypesAdminDeactivateResponses];
58225
+ export type SupportRequestTypesAdminReorderData = {
58226
+ body: RequestTypeAdminRequest;
58227
+ path?: never;
58228
+ query?: never;
58229
+ url: '/api/support-request-types-admin/reorder/';
58230
+ };
58231
+ export type SupportRequestTypesAdminReorderResponses = {
58232
+ 200: RequestTypeAdmin;
58233
+ };
58234
+ export type SupportRequestTypesAdminReorderResponse = SupportRequestTypesAdminReorderResponses[keyof SupportRequestTypesAdminReorderResponses];
58235
+ export type SupportRequestTypesRetrieveData = {
58236
+ body?: never;
58237
+ path: {
58238
+ uuid: string;
58239
+ };
58240
+ query?: never;
58241
+ url: '/api/support-request-types/{uuid}/';
58242
+ };
58243
+ export type SupportRequestTypesRetrieveResponses = {
58244
+ 200: RequestType;
58245
+ };
58246
+ export type SupportRequestTypesRetrieveResponse = SupportRequestTypesRetrieveResponses[keyof SupportRequestTypesRetrieveResponses];
57303
58247
  export type SupportSmaxWebhookData = {
57304
58248
  body: SmaxWebHookReceiverRequest;
57305
58249
  path?: never;
@@ -57525,6 +58469,232 @@ export type SupportZammadWebhookResponses = {
57525
58469
  */
57526
58470
  200: unknown;
57527
58471
  };
58472
+ export type SupportSettingsAtlassianListData = {
58473
+ body?: never;
58474
+ path?: never;
58475
+ query?: {
58476
+ /**
58477
+ * A page number within the paginated result set.
58478
+ */
58479
+ page?: number;
58480
+ /**
58481
+ * Number of results to return per page.
58482
+ */
58483
+ page_size?: number;
58484
+ };
58485
+ url: '/api/support/settings/atlassian/';
58486
+ };
58487
+ export type SupportSettingsAtlassianListResponses = {
58488
+ /**
58489
+ * No response body
58490
+ */
58491
+ 200: unknown;
58492
+ };
58493
+ export type SupportSettingsAtlassianCreateData = {
58494
+ body?: never;
58495
+ path?: never;
58496
+ query?: never;
58497
+ url: '/api/support/settings/atlassian/';
58498
+ };
58499
+ export type SupportSettingsAtlassianCreateResponses = {
58500
+ /**
58501
+ * No response body
58502
+ */
58503
+ 201: unknown;
58504
+ };
58505
+ export type SupportSettingsAtlassianDestroyData = {
58506
+ body?: never;
58507
+ path: {
58508
+ /**
58509
+ * A unique integer value identifying this issue.
58510
+ */
58511
+ id: number;
58512
+ };
58513
+ query?: never;
58514
+ url: '/api/support/settings/atlassian/{id}/';
58515
+ };
58516
+ export type SupportSettingsAtlassianDestroyResponses = {
58517
+ /**
58518
+ * No response body
58519
+ */
58520
+ 204: void;
58521
+ };
58522
+ export type SupportSettingsAtlassianDestroyResponse = SupportSettingsAtlassianDestroyResponses[keyof SupportSettingsAtlassianDestroyResponses];
58523
+ export type SupportSettingsAtlassianRetrieveData = {
58524
+ body?: never;
58525
+ path: {
58526
+ /**
58527
+ * A unique integer value identifying this issue.
58528
+ */
58529
+ id: number;
58530
+ };
58531
+ query?: never;
58532
+ url: '/api/support/settings/atlassian/{id}/';
58533
+ };
58534
+ export type SupportSettingsAtlassianRetrieveResponses = {
58535
+ /**
58536
+ * No response body
58537
+ */
58538
+ 200: unknown;
58539
+ };
58540
+ export type SupportSettingsAtlassianPartialUpdateData = {
58541
+ body?: never;
58542
+ path: {
58543
+ /**
58544
+ * A unique integer value identifying this issue.
58545
+ */
58546
+ id: number;
58547
+ };
58548
+ query?: never;
58549
+ url: '/api/support/settings/atlassian/{id}/';
58550
+ };
58551
+ export type SupportSettingsAtlassianPartialUpdateResponses = {
58552
+ /**
58553
+ * No response body
58554
+ */
58555
+ 200: unknown;
58556
+ };
58557
+ export type SupportSettingsAtlassianUpdateData = {
58558
+ body?: never;
58559
+ path: {
58560
+ /**
58561
+ * A unique integer value identifying this issue.
58562
+ */
58563
+ id: number;
58564
+ };
58565
+ query?: never;
58566
+ url: '/api/support/settings/atlassian/{id}/';
58567
+ };
58568
+ export type SupportSettingsAtlassianUpdateResponses = {
58569
+ /**
58570
+ * No response body
58571
+ */
58572
+ 200: unknown;
58573
+ };
58574
+ export type SupportSettingsAtlassianCurrentSettingsRetrieveData = {
58575
+ body?: never;
58576
+ path?: never;
58577
+ query?: never;
58578
+ url: '/api/support/settings/atlassian/current_settings/';
58579
+ };
58580
+ export type SupportSettingsAtlassianCurrentSettingsRetrieveResponses = {
58581
+ /**
58582
+ * No response body
58583
+ */
58584
+ 200: unknown;
58585
+ };
58586
+ export type SupportSettingsAtlassianDiscoverCustomFieldsData = {
58587
+ body: DiscoverCustomFieldsRequestRequest;
58588
+ path?: never;
58589
+ query?: {
58590
+ /**
58591
+ * A page number within the paginated result set.
58592
+ */
58593
+ page?: number;
58594
+ /**
58595
+ * Number of results to return per page.
58596
+ */
58597
+ page_size?: number;
58598
+ };
58599
+ url: '/api/support/settings/atlassian/discover_custom_fields/';
58600
+ };
58601
+ export type SupportSettingsAtlassianDiscoverCustomFieldsResponses = {
58602
+ 200: Array<AtlassianCustomFieldResponse>;
58603
+ };
58604
+ export type SupportSettingsAtlassianDiscoverCustomFieldsResponse = SupportSettingsAtlassianDiscoverCustomFieldsResponses[keyof SupportSettingsAtlassianDiscoverCustomFieldsResponses];
58605
+ export type SupportSettingsAtlassianDiscoverPrioritiesData = {
58606
+ body: DiscoverPrioritiesRequestRequest;
58607
+ path?: never;
58608
+ query?: {
58609
+ /**
58610
+ * A page number within the paginated result set.
58611
+ */
58612
+ page?: number;
58613
+ /**
58614
+ * Number of results to return per page.
58615
+ */
58616
+ page_size?: number;
58617
+ };
58618
+ url: '/api/support/settings/atlassian/discover_priorities/';
58619
+ };
58620
+ export type SupportSettingsAtlassianDiscoverPrioritiesResponses = {
58621
+ 200: Array<AtlassianPriorityResponse>;
58622
+ };
58623
+ export type SupportSettingsAtlassianDiscoverPrioritiesResponse = SupportSettingsAtlassianDiscoverPrioritiesResponses[keyof SupportSettingsAtlassianDiscoverPrioritiesResponses];
58624
+ export type SupportSettingsAtlassianDiscoverProjectsData = {
58625
+ body: DiscoverProjectsRequestRequest;
58626
+ path?: never;
58627
+ query?: {
58628
+ /**
58629
+ * A page number within the paginated result set.
58630
+ */
58631
+ page?: number;
58632
+ /**
58633
+ * Number of results to return per page.
58634
+ */
58635
+ page_size?: number;
58636
+ };
58637
+ url: '/api/support/settings/atlassian/discover_projects/';
58638
+ };
58639
+ export type SupportSettingsAtlassianDiscoverProjectsResponses = {
58640
+ 200: Array<AtlassianProjectResponse>;
58641
+ };
58642
+ export type SupportSettingsAtlassianDiscoverProjectsResponse = SupportSettingsAtlassianDiscoverProjectsResponses[keyof SupportSettingsAtlassianDiscoverProjectsResponses];
58643
+ export type SupportSettingsAtlassianDiscoverRequestTypesData = {
58644
+ body: DiscoverRequestTypesRequestRequest;
58645
+ path?: never;
58646
+ query?: {
58647
+ /**
58648
+ * A page number within the paginated result set.
58649
+ */
58650
+ page?: number;
58651
+ /**
58652
+ * Number of results to return per page.
58653
+ */
58654
+ page_size?: number;
58655
+ };
58656
+ url: '/api/support/settings/atlassian/discover_request_types/';
58657
+ };
58658
+ export type SupportSettingsAtlassianDiscoverRequestTypesResponses = {
58659
+ 200: Array<AtlassianRequestTypeResponse>;
58660
+ };
58661
+ export type SupportSettingsAtlassianDiscoverRequestTypesResponse = SupportSettingsAtlassianDiscoverRequestTypesResponses[keyof SupportSettingsAtlassianDiscoverRequestTypesResponses];
58662
+ export type SupportSettingsAtlassianPreviewSettingsData = {
58663
+ body: AtlassianSettingsPreviewRequest;
58664
+ path?: never;
58665
+ query?: never;
58666
+ url: '/api/support/settings/atlassian/preview_settings/';
58667
+ };
58668
+ export type SupportSettingsAtlassianPreviewSettingsResponses = {
58669
+ /**
58670
+ * No response body
58671
+ */
58672
+ 200: unknown;
58673
+ };
58674
+ export type SupportSettingsAtlassianSaveSettingsData = {
58675
+ body: AtlassianSettingsSaveRequest;
58676
+ path?: never;
58677
+ query?: never;
58678
+ url: '/api/support/settings/atlassian/save_settings/';
58679
+ };
58680
+ export type SupportSettingsAtlassianSaveSettingsResponses = {
58681
+ /**
58682
+ * No response body
58683
+ */
58684
+ 200: unknown;
58685
+ };
58686
+ export type SupportSettingsAtlassianValidateCredentialsData = {
58687
+ body: AtlassianCredentialsRequest;
58688
+ path?: never;
58689
+ query?: never;
58690
+ url: '/api/support/settings/atlassian/validate_credentials/';
58691
+ };
58692
+ export type SupportSettingsAtlassianValidateCredentialsResponses = {
58693
+ /**
58694
+ * No response body
58695
+ */
58696
+ 200: unknown;
58697
+ };
57528
58698
  export type SyncIssuesRetrieveData = {
57529
58699
  body?: never;
57530
58700
  path?: never;
@@ -57843,6 +59013,10 @@ export type UserAgreementsListData = {
57843
59013
  path?: never;
57844
59014
  query?: {
57845
59015
  agreement_type?: 'PP' | 'TOS';
59016
+ /**
59017
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
59018
+ */
59019
+ language?: string;
57846
59020
  /**
57847
59021
  * A page number within the paginated result set.
57848
59022
  */
@@ -57863,6 +59037,10 @@ export type UserAgreementsCountData = {
57863
59037
  path?: never;
57864
59038
  query?: {
57865
59039
  agreement_type?: 'PP' | 'TOS';
59040
+ /**
59041
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
59042
+ */
59043
+ language?: string;
57866
59044
  /**
57867
59045
  * A page number within the paginated result set.
57868
59046
  */
@@ -58015,6 +59193,21 @@ export type UserGroupInvitationsCreateResponses = {
58015
59193
  201: GroupInvitation;
58016
59194
  };
58017
59195
  export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
59196
+ export type UserGroupInvitationsDestroyData = {
59197
+ body?: never;
59198
+ path: {
59199
+ uuid: string;
59200
+ };
59201
+ query?: never;
59202
+ url: '/api/user-group-invitations/{uuid}/';
59203
+ };
59204
+ export type UserGroupInvitationsDestroyResponses = {
59205
+ /**
59206
+ * No response body
59207
+ */
59208
+ 204: void;
59209
+ };
59210
+ export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
58018
59211
  export type UserGroupInvitationsRetrieveData = {
58019
59212
  body?: never;
58020
59213
  path: {