waldur-js-client 7.9.6-dev.8 → 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;
@@ -2610,6 +2946,12 @@ export type Customer = {
2610
2946
  * Number of extra days after project end date before resources are terminated
2611
2947
  */
2612
2948
  grace_period_days?: number | null;
2949
+ user_email_patterns?: unknown;
2950
+ user_affiliations?: unknown;
2951
+ /**
2952
+ * List of allowed identity sources (identity providers).
2953
+ */
2954
+ user_identity_sources?: unknown;
2613
2955
  name?: string;
2614
2956
  /**
2615
2957
  * URL-friendly identifier. Only editable by staff users.
@@ -2876,6 +3218,12 @@ export type CustomerRequest = {
2876
3218
  * Number of extra days after project end date before resources are terminated
2877
3219
  */
2878
3220
  grace_period_days?: number | null;
3221
+ user_email_patterns?: unknown;
3222
+ user_affiliations?: unknown;
3223
+ /**
3224
+ * List of allowed identity sources (identity providers).
3225
+ */
3226
+ user_identity_sources?: unknown;
2879
3227
  name: string;
2880
3228
  /**
2881
3229
  * URL-friendly identifier. Only editable by staff users.
@@ -2976,6 +3324,47 @@ export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
2976
3324
  export type DeleteAttachmentsRequest = {
2977
3325
  attachment_ids: Array<string>;
2978
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
+ };
2979
3368
  export type DependencyLogicOperatorEnum = 'and' | 'or';
2980
3369
  export type DeploymentModeEnum = 'self_managed' | 'managed';
2981
3370
  export type DeprecatedNetworkRbacPolicy = {
@@ -3161,6 +3550,79 @@ export type DiscountsUpdateRequest = {
3161
3550
  [key: string]: DiscountConfigRequest;
3162
3551
  };
3163
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
+ };
3164
3626
  export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
3165
3627
  export type DryRun = {
3166
3628
  readonly url: string;
@@ -3685,10 +4147,6 @@ export type GroupInvitation = {
3685
4147
  */
3686
4148
  role: string;
3687
4149
  readonly created: string;
3688
- /**
3689
- * Expiration date and time of the invitation
3690
- */
3691
- readonly expires: string;
3692
4150
  readonly is_active: boolean;
3693
4151
  /**
3694
4152
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -3712,6 +4170,10 @@ export type GroupInvitation = {
3712
4170
  project_role?: string | null;
3713
4171
  user_affiliations?: unknown;
3714
4172
  user_email_patterns?: unknown;
4173
+ /**
4174
+ * List of allowed identity sources (identity providers).
4175
+ */
4176
+ user_identity_sources?: unknown;
3715
4177
  /**
3716
4178
  * Image URL of the invitation scope (Customer or Project)
3717
4179
  */
@@ -3748,6 +4210,10 @@ export type GroupInvitationRequest = {
3748
4210
  project_role?: string | null;
3749
4211
  user_affiliations?: unknown;
3750
4212
  user_email_patterns?: unknown;
4213
+ /**
4214
+ * List of allowed identity sources (identity providers).
4215
+ */
4216
+ user_identity_sources?: unknown;
3751
4217
  };
3752
4218
  export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
3753
4219
  export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
@@ -4356,6 +4822,26 @@ export type Issue = {
4356
4822
  readonly destroy_is_available: boolean;
4357
4823
  readonly add_comment_is_available: boolean;
4358
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;
4359
4845
  };
4360
4846
  export type IssueReference = {
4361
4847
  readonly key?: string;
@@ -4388,17 +4874,24 @@ export type IssueStatus = {
4388
4874
  * Status name in Jira.
4389
4875
  */
4390
4876
  name: string;
4391
- type?: IssueStatusTypeEnum;
4877
+ type?: IssueStatusType;
4392
4878
  readonly type_display: string;
4393
4879
  };
4394
- export type IssueStatusRequest = {
4880
+ export type IssueStatusCreate = {
4395
4881
  /**
4396
4882
  * Status name in Jira.
4397
4883
  */
4398
4884
  name: string;
4399
- type?: IssueStatusTypeEnum;
4885
+ type?: IssueStatusType;
4400
4886
  };
4401
- export type IssueStatusTypeEnum = 0 | 1;
4887
+ export type IssueStatusCreateRequest = {
4888
+ /**
4889
+ * Status name in Jira.
4890
+ */
4891
+ name: string;
4892
+ type?: IssueStatusType;
4893
+ };
4894
+ export type IssueStatusType = 0 | 1;
4402
4895
  export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
4403
4896
  export type JiraChangelog = {
4404
4897
  /**
@@ -4992,6 +5485,10 @@ export type MergedPluginOptions = {
4992
5485
  * Skip approval of public offering belonging to the same organization under which the request is done
4993
5486
  */
4994
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;
4995
5492
  /**
4996
5493
  * If set to True, it will be possible to downscale resources
4997
5494
  */
@@ -5189,7 +5686,7 @@ export type MergedPluginOptions = {
5189
5686
  */
5190
5687
  enable_display_of_order_actions_for_service_provider?: boolean;
5191
5688
  /**
5192
- * 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
5193
5690
  */
5194
5691
  auto_approve_marketplace_script?: boolean;
5195
5692
  /**
@@ -5230,6 +5727,10 @@ export type MergedPluginOptionsRequest = {
5230
5727
  * Skip approval of public offering belonging to the same organization under which the request is done
5231
5728
  */
5232
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;
5233
5734
  /**
5234
5735
  * If set to True, it will be possible to downscale resources
5235
5736
  */
@@ -5427,7 +5928,7 @@ export type MergedPluginOptionsRequest = {
5427
5928
  */
5428
5929
  enable_display_of_order_actions_for_service_provider?: boolean;
5429
5930
  /**
5430
- * 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
5431
5932
  */
5432
5933
  auto_approve_marketplace_script?: boolean;
5433
5934
  /**
@@ -9339,6 +9840,7 @@ export type OpenStackTenant = {
9339
9840
  * Volume type name to use when creating volumes.
9340
9841
  */
9341
9842
  default_volume_type_name?: string;
9843
+ skip_creation_of_default_router?: boolean;
9342
9844
  readonly marketplace_offering_uuid?: string | null;
9343
9845
  readonly marketplace_offering_name?: string | null;
9344
9846
  readonly marketplace_offering_plugin_options?: {
@@ -9390,6 +9892,8 @@ export type OpenStackTenantRequest = {
9390
9892
  */
9391
9893
  default_volume_type_name?: string;
9392
9894
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
9895
+ skip_creation_of_default_subnet?: boolean;
9896
+ skip_creation_of_default_router?: boolean;
9393
9897
  };
9394
9898
  export type OpenStackTenantSecurityGroup = {
9395
9899
  name: string;
@@ -9928,6 +10432,12 @@ export type PatchedCustomerRequest = {
9928
10432
  * Number of extra days after project end date before resources are terminated
9929
10433
  */
9930
10434
  grace_period_days?: number | null;
10435
+ user_email_patterns?: unknown;
10436
+ user_affiliations?: unknown;
10437
+ /**
10438
+ * List of allowed identity sources (identity providers).
10439
+ */
10440
+ user_identity_sources?: unknown;
9931
10441
  name?: string;
9932
10442
  /**
9933
10443
  * URL-friendly identifier. Only editable by staff users.
@@ -10083,7 +10593,7 @@ export type PatchedIssueStatusRequest = {
10083
10593
  * Status name in Jira.
10084
10594
  */
10085
10595
  name?: string;
10086
- type?: IssueStatusTypeEnum;
10596
+ type?: IssueStatusType;
10087
10597
  };
10088
10598
  export type PatchedKeycloakUserGroupMembershipRequest = {
10089
10599
  /**
@@ -10491,6 +11001,8 @@ export type PatchedOpenStackTenantRequest = {
10491
11001
  */
10492
11002
  default_volume_type_name?: string;
10493
11003
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
11004
+ skip_creation_of_default_subnet?: boolean;
11005
+ skip_creation_of_default_router?: boolean;
10494
11006
  };
10495
11007
  export type PatchedOpenStackVolumeRequest = {
10496
11008
  name?: string;
@@ -10590,6 +11102,12 @@ export type PatchedProjectRequest = {
10590
11102
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
10591
11103
  */
10592
11104
  grace_period_days?: number | null;
11105
+ user_email_patterns?: unknown;
11106
+ user_affiliations?: unknown;
11107
+ /**
11108
+ * List of allowed identity sources (identity providers).
11109
+ */
11110
+ user_identity_sources?: unknown;
10593
11111
  };
10594
11112
  export type PatchedProjectServiceAccountRequest = {
10595
11113
  username?: string;
@@ -10675,6 +11193,10 @@ export type PatchedProtectedCallRequest = {
10675
11193
  * Compliance checklist that proposals must complete before submission
10676
11194
  */
10677
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;
10678
11200
  };
10679
11201
  export type PatchedProtectedRoundRequest = {
10680
11202
  start_time?: string;
@@ -10716,11 +11238,11 @@ export type PatchedQuestionAdminRequest = {
10716
11238
  question_type?: QuestionTypeEnum;
10717
11239
  order?: number;
10718
11240
  /**
10719
- * Minimum value allowed for NUMBER type questions
11241
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
10720
11242
  */
10721
11243
  min_value?: string | null;
10722
11244
  /**
10723
- * Maximum value allowed for NUMBER type questions
11245
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
10724
11246
  */
10725
11247
  max_value?: string | null;
10726
11248
  /**
@@ -10877,6 +11399,18 @@ export type PatchedRemoteSynchronisationRequest = {
10877
11399
  is_active?: boolean;
10878
11400
  remotelocalcategory_set?: Array<NestedRemoteLocalCategoryRequest>;
10879
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
+ };
10880
11414
  export type PatchedRequestedOfferingRequest = {
10881
11415
  attributes?: unknown;
10882
11416
  plan?: string | null;
@@ -11120,6 +11654,10 @@ export type PatchedTemplateRequest = {
11120
11654
  export type PatchedUserAgreementRequest = {
11121
11655
  content?: string;
11122
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;
11123
11661
  };
11124
11662
  export type PatchedUserInfoRequest = {
11125
11663
  /**
@@ -11489,6 +12027,12 @@ export type Project = {
11489
12027
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11490
12028
  */
11491
12029
  grace_period_days?: number | null;
12030
+ user_email_patterns?: unknown;
12031
+ user_affiliations?: unknown;
12032
+ /**
12033
+ * List of allowed identity sources (identity providers).
12034
+ */
12035
+ user_identity_sources?: unknown;
11492
12036
  readonly project_credit?: number | null;
11493
12037
  readonly marketplace_resource_count?: {
11494
12038
  [key: string]: number;
@@ -11742,6 +12286,12 @@ export type ProjectRequest = {
11742
12286
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11743
12287
  */
11744
12288
  grace_period_days?: number | null;
12289
+ user_email_patterns?: unknown;
12290
+ user_affiliations?: unknown;
12291
+ /**
12292
+ * List of allowed identity sources (identity providers).
12293
+ */
12294
+ user_identity_sources?: unknown;
11745
12295
  };
11746
12296
  export type ProjectServiceAccount = {
11747
12297
  readonly url: string;
@@ -11956,7 +12506,11 @@ export type ProposalChecklistAnswerSubmitResponse = {
11956
12506
  detail: string;
11957
12507
  completion: ChecklistCompletionReviewer;
11958
12508
  };
12509
+ export type ProposalDetachDocumentsRequest = {
12510
+ documents: Array<string>;
12511
+ };
11959
12512
  export type ProposalDocumentation = {
12513
+ readonly uuid: string;
11960
12514
  /**
11961
12515
  * Upload supporting documentation in PDF format.
11962
12516
  */
@@ -12108,6 +12662,10 @@ export type ProtectedCall = {
12108
12662
  */
12109
12663
  compliance_checklist?: string | null;
12110
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;
12111
12669
  };
12112
12670
  export type ProtectedCallRequest = {
12113
12671
  /**
@@ -12134,6 +12692,10 @@ export type ProtectedCallRequest = {
12134
12692
  * Compliance checklist that proposals must complete before submission
12135
12693
  */
12136
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;
12137
12699
  };
12138
12700
  export type ProtectedProposalList = {
12139
12701
  readonly uuid: string;
@@ -12683,11 +13245,11 @@ export type Question = {
12683
13245
  question_type?: QuestionTypeEnum;
12684
13246
  order?: number;
12685
13247
  /**
12686
- * Minimum value allowed for NUMBER type questions
13248
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12687
13249
  */
12688
13250
  min_value?: string | null;
12689
13251
  /**
12690
- * Maximum value allowed for NUMBER type questions
13252
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12691
13253
  */
12692
13254
  max_value?: string | null;
12693
13255
  /**
@@ -12747,11 +13309,11 @@ export type QuestionAdmin = {
12747
13309
  question_type?: QuestionTypeEnum;
12748
13310
  order?: number;
12749
13311
  /**
12750
- * Minimum value allowed for NUMBER type questions
13312
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12751
13313
  */
12752
13314
  min_value?: string | null;
12753
13315
  /**
12754
- * Maximum value allowed for NUMBER type questions
13316
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12755
13317
  */
12756
13318
  max_value?: string | null;
12757
13319
  /**
@@ -12813,11 +13375,11 @@ export type QuestionAdminRequest = {
12813
13375
  question_type?: QuestionTypeEnum;
12814
13376
  order?: number;
12815
13377
  /**
12816
- * Minimum value allowed for NUMBER type questions
13378
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12817
13379
  */
12818
13380
  min_value?: string | null;
12819
13381
  /**
12820
- * Maximum value allowed for NUMBER type questions
13382
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12821
13383
  */
12822
13384
  max_value?: string | null;
12823
13385
  /**
@@ -12932,7 +13494,7 @@ export type QuestionOptionsAdminRequest = {
12932
13494
  order?: number;
12933
13495
  question: string;
12934
13496
  };
12935
- 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';
12936
13498
  export type QuestionWithAnswer = {
12937
13499
  readonly uuid: string;
12938
13500
  readonly description: string;
@@ -12948,11 +13510,11 @@ export type QuestionWithAnswer = {
12948
13510
  } | null;
12949
13511
  readonly question_options: Array<unknown> | null;
12950
13512
  /**
12951
- * Minimum value allowed for NUMBER type questions
13513
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12952
13514
  */
12953
13515
  readonly min_value: string | null;
12954
13516
  /**
12955
- * Maximum value allowed for NUMBER type questions
13517
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12956
13518
  */
12957
13519
  readonly max_value: string | null;
12958
13520
  /**
@@ -12971,6 +13533,9 @@ export type QuestionWithAnswer = {
12971
13533
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
12972
13534
  */
12973
13535
  readonly max_files_count: number | null;
13536
+ readonly dependencies_info: {
13537
+ [key: string]: unknown;
13538
+ } | null;
12974
13539
  };
12975
13540
  export type QuestionWithAnswerReviewer = {
12976
13541
  readonly uuid: string;
@@ -12987,11 +13552,11 @@ export type QuestionWithAnswerReviewer = {
12987
13552
  } | null;
12988
13553
  readonly question_options: Array<unknown> | null;
12989
13554
  /**
12990
- * Minimum value allowed for NUMBER type questions
13555
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12991
13556
  */
12992
13557
  readonly min_value: string | null;
12993
13558
  /**
12994
- * Maximum value allowed for NUMBER type questions
13559
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12995
13560
  */
12996
13561
  readonly max_value: string | null;
12997
13562
  /**
@@ -13010,6 +13575,9 @@ export type QuestionWithAnswerReviewer = {
13010
13575
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
13011
13576
  */
13012
13577
  readonly max_files_count: number | null;
13578
+ readonly dependencies_info: {
13579
+ [key: string]: unknown;
13580
+ } | null;
13013
13581
  operator?: ChecklistOperators | BlankEnum;
13014
13582
  /**
13015
13583
  * Answer value that trigger review.
@@ -14076,6 +14644,51 @@ export type ReportSectionRequest = {
14076
14644
  */
14077
14645
  body: string;
14078
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
+ };
14079
14692
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
14080
14693
  export type RequestedOffering = {
14081
14694
  readonly uuid: string;
@@ -15950,12 +16563,20 @@ export type UserAgreement = {
15950
16563
  readonly uuid: string;
15951
16564
  content: string;
15952
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;
15953
16570
  readonly created: string;
15954
16571
  readonly modified: string;
15955
16572
  };
15956
16573
  export type UserAgreementRequest = {
15957
16574
  content: string;
15958
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;
15959
16580
  };
15960
16581
  export type UserAuthMethodCount = {
15961
16582
  /**
@@ -16602,14 +17223,14 @@ export type WebHook = {
16602
17223
  };
16603
17224
  export type WebHookContentTypeEnum = 'json' | 'form';
16604
17225
  export type WebHookReceiver = {
16605
- webhookEvent: WebhookEventEnum;
17226
+ webhookEvent: string;
16606
17227
  issue: JiraIssue;
16607
17228
  comment?: JiraComment;
16608
17229
  changelog?: JiraChangelog;
16609
17230
  issue_event_type_name?: string;
16610
17231
  };
16611
17232
  export type WebHookReceiverRequest = {
16612
- webhookEvent: WebhookEventEnum;
17233
+ webhookEvent: string;
16613
17234
  issue: JiraIssueRequest;
16614
17235
  comment?: JiraCommentRequest;
16615
17236
  changelog?: JiraChangelogRequest;
@@ -16622,7 +17243,6 @@ export type WebHookRequest = {
16622
17243
  destination_url: string;
16623
17244
  content_type?: WebHookContentTypeEnum;
16624
17245
  };
16625
- export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
16626
17246
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
16627
17247
  export type AzureVirtualMachineCreateOrderAttributes = {
16628
17248
  name: string;
@@ -16650,6 +17270,7 @@ export type OpenStackTenantCreateOrderAttributes = {
16650
17270
  subnet_cidr?: string;
16651
17271
  skip_connection_extnet?: boolean;
16652
17272
  skip_creation_of_default_router?: boolean;
17273
+ skip_creation_of_default_subnet?: boolean;
16653
17274
  /**
16654
17275
  * Optional availability group. Will be used for all instances provisioned in this tenant
16655
17276
  */
@@ -16847,6 +17468,12 @@ export type CustomerRequestForm = {
16847
17468
  * Number of extra days after project end date before resources are terminated
16848
17469
  */
16849
17470
  grace_period_days?: number | null;
17471
+ user_email_patterns?: unknown;
17472
+ user_affiliations?: unknown;
17473
+ /**
17474
+ * List of allowed identity sources (identity providers).
17475
+ */
17476
+ user_identity_sources?: unknown;
16850
17477
  name: string;
16851
17478
  /**
16852
17479
  * URL-friendly identifier. Only editable by staff users.
@@ -16918,6 +17545,12 @@ export type CustomerRequestMultipart = {
16918
17545
  * Number of extra days after project end date before resources are terminated
16919
17546
  */
16920
17547
  grace_period_days?: number | null;
17548
+ user_email_patterns?: unknown;
17549
+ user_affiliations?: unknown;
17550
+ /**
17551
+ * List of allowed identity sources (identity providers).
17552
+ */
17553
+ user_identity_sources?: unknown;
16921
17554
  name: string;
16922
17555
  /**
16923
17556
  * URL-friendly identifier. Only editable by staff users.
@@ -16989,6 +17622,12 @@ export type PatchedCustomerRequestForm = {
16989
17622
  * Number of extra days after project end date before resources are terminated
16990
17623
  */
16991
17624
  grace_period_days?: number | null;
17625
+ user_email_patterns?: unknown;
17626
+ user_affiliations?: unknown;
17627
+ /**
17628
+ * List of allowed identity sources (identity providers).
17629
+ */
17630
+ user_identity_sources?: unknown;
16992
17631
  name?: string;
16993
17632
  /**
16994
17633
  * URL-friendly identifier. Only editable by staff users.
@@ -17060,6 +17699,12 @@ export type PatchedCustomerRequestMultipart = {
17060
17699
  * Number of extra days after project end date before resources are terminated
17061
17700
  */
17062
17701
  grace_period_days?: number | null;
17702
+ user_email_patterns?: unknown;
17703
+ user_affiliations?: unknown;
17704
+ /**
17705
+ * List of allowed identity sources (identity providers).
17706
+ */
17707
+ user_identity_sources?: unknown;
17063
17708
  name?: string;
17064
17709
  /**
17065
17710
  * URL-friendly identifier. Only editable by staff users.
@@ -17477,6 +18122,12 @@ export type ProjectRequestForm = {
17477
18122
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17478
18123
  */
17479
18124
  grace_period_days?: number | null;
18125
+ user_email_patterns?: unknown;
18126
+ user_affiliations?: unknown;
18127
+ /**
18128
+ * List of allowed identity sources (identity providers).
18129
+ */
18130
+ user_identity_sources?: unknown;
17480
18131
  };
17481
18132
  export type ProjectRequestMultipart = {
17482
18133
  name: string;
@@ -17520,6 +18171,12 @@ export type ProjectRequestMultipart = {
17520
18171
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17521
18172
  */
17522
18173
  grace_period_days?: number | null;
18174
+ user_email_patterns?: unknown;
18175
+ user_affiliations?: unknown;
18176
+ /**
18177
+ * List of allowed identity sources (identity providers).
18178
+ */
18179
+ user_identity_sources?: unknown;
17523
18180
  };
17524
18181
  export type PatchedProjectRequestForm = {
17525
18182
  name?: string;
@@ -17563,6 +18220,12 @@ export type PatchedProjectRequestForm = {
17563
18220
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17564
18221
  */
17565
18222
  grace_period_days?: number | null;
18223
+ user_email_patterns?: unknown;
18224
+ user_affiliations?: unknown;
18225
+ /**
18226
+ * List of allowed identity sources (identity providers).
18227
+ */
18228
+ user_identity_sources?: unknown;
17566
18229
  };
17567
18230
  export type PatchedProjectRequestMultipart = {
17568
18231
  name?: string;
@@ -17606,6 +18269,12 @@ export type PatchedProjectRequestMultipart = {
17606
18269
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17607
18270
  */
17608
18271
  grace_period_days?: number | null;
18272
+ user_email_patterns?: unknown;
18273
+ user_affiliations?: unknown;
18274
+ /**
18275
+ * List of allowed identity sources (identity providers).
18276
+ */
18277
+ user_identity_sources?: unknown;
17609
18278
  };
17610
18279
  export type ConstanceSettingsRequestForm = {
17611
18280
  SITE_NAME?: string;
@@ -17662,6 +18331,14 @@ export type ConstanceSettingsRequestForm = {
17662
18331
  SIDEBAR_STYLE?: string;
17663
18332
  SITE_LOGO?: (Blob | File) | null;
17664
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>;
17665
18342
  FAVICON?: (Blob | File) | null;
17666
18343
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17667
18344
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17684,8 +18361,6 @@ export type ConstanceSettingsRequestForm = {
17684
18361
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17685
18362
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17686
18363
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17687
- ATLASSIAN_ISSUE_TYPES?: string;
17688
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17689
18364
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17690
18365
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17691
18366
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -17834,6 +18509,14 @@ export type ConstanceSettingsRequestMultipart = {
17834
18509
  SIDEBAR_STYLE?: string;
17835
18510
  SITE_LOGO?: (Blob | File) | null;
17836
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>;
17837
18520
  FAVICON?: (Blob | File) | null;
17838
18521
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17839
18522
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17856,8 +18539,6 @@ export type ConstanceSettingsRequestMultipart = {
17856
18539
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17857
18540
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17858
18541
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17859
- ATLASSIAN_ISSUE_TYPES?: string;
17860
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17861
18542
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17862
18543
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17863
18544
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -21566,6 +22247,10 @@ export type BookingResourcesListData = {
21566
22247
  * Has termination date
21567
22248
  */
21568
22249
  has_terminate_date?: boolean;
22250
+ /**
22251
+ * Filter by attached state
22252
+ */
22253
+ is_attached?: boolean;
21569
22254
  /**
21570
22255
  * LEXIS links supported
21571
22256
  */
@@ -21738,6 +22423,10 @@ export type BookingResourcesCountData = {
21738
22423
  * Has termination date
21739
22424
  */
21740
22425
  has_terminate_date?: boolean;
22426
+ /**
22427
+ * Filter by attached state
22428
+ */
22429
+ is_attached?: boolean;
21741
22430
  /**
21742
22431
  * LEXIS links supported
21743
22432
  */
@@ -22611,9 +23300,7 @@ export type CeleryStatsRetrieveData = {
22611
23300
  url: '/api/celery-stats/';
22612
23301
  };
22613
23302
  export type CeleryStatsRetrieveResponses = {
22614
- 200: {
22615
- [key: string]: unknown;
22616
- };
23303
+ 200: CeleryStatsResponse;
22617
23304
  };
22618
23305
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
22619
23306
  export type ChatInvokeData = {
@@ -23032,6 +23719,10 @@ export type ChecklistsAdminQuestionsListData = {
23032
23719
  */
23033
23720
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
23034
23721
  checklist_uuid?: string;
23722
+ /**
23723
+ * Filter questions that have onboarding metadata mapping
23724
+ */
23725
+ has_onboarding_mapping?: boolean;
23035
23726
  /**
23036
23727
  * A page number within the paginated result set.
23037
23728
  */
@@ -23058,6 +23749,10 @@ export type ChecklistsAdminQuestionsCountData = {
23058
23749
  */
23059
23750
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
23060
23751
  checklist_uuid?: string;
23752
+ /**
23753
+ * Filter questions that have onboarding metadata mapping
23754
+ */
23755
+ has_onboarding_mapping?: boolean;
23061
23756
  /**
23062
23757
  * A page number within the paginated result set.
23063
23758
  */
@@ -23708,7 +24403,7 @@ export type CustomersListData = {
23708
24403
  * Contact details
23709
24404
  */
23710
24405
  contact_details?: string;
23711
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
24406
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code'>;
23712
24407
  /**
23713
24408
  * Name
23714
24409
  */
@@ -24034,7 +24729,7 @@ export type CustomersRetrieveData = {
24034
24729
  uuid: string;
24035
24730
  };
24036
24731
  query?: {
24037
- field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
24732
+ field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code'>;
24038
24733
  };
24039
24734
  url: '/api/customers/{uuid}/';
24040
24735
  };
@@ -29594,6 +30289,109 @@ export type MarketplaceCustomerServiceAccountsRotateApiKeyResponses = {
29594
30289
  200: CustomerServiceAccount;
29595
30290
  };
29596
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];
29597
30395
  export type MarketplaceGlobalCategoriesRetrieveData = {
29598
30396
  body?: never;
29599
30397
  path?: never;
@@ -31065,7 +31863,12 @@ export type MarketplaceOfferingUsersChecklistRetrieveData = {
31065
31863
  path: {
31066
31864
  uuid: string;
31067
31865
  };
31068
- 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
+ };
31069
31872
  url: '/api/marketplace-offering-users/{uuid}/checklist/';
31070
31873
  };
31071
31874
  export type MarketplaceOfferingUsersChecklistRetrieveErrors = {
@@ -33764,7 +34567,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
33764
34567
  uuid: string;
33765
34568
  };
33766
34569
  query?: {
33767
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
34570
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
33768
34571
  /**
33769
34572
  * A page number within the paginated result set.
33770
34573
  */
@@ -34938,6 +35741,10 @@ export type MarketplaceProviderResourcesListData = {
34938
35741
  * Has termination date
34939
35742
  */
34940
35743
  has_terminate_date?: boolean;
35744
+ /**
35745
+ * Filter by attached state
35746
+ */
35747
+ is_attached?: boolean;
34941
35748
  /**
34942
35749
  * LEXIS links supported
34943
35750
  */
@@ -35109,6 +35916,10 @@ export type MarketplaceProviderResourcesCountData = {
35109
35916
  * Has termination date
35110
35917
  */
35111
35918
  has_terminate_date?: boolean;
35919
+ /**
35920
+ * Filter by attached state
35921
+ */
35922
+ is_attached?: boolean;
35112
35923
  /**
35113
35924
  * LEXIS links supported
35114
35925
  */
@@ -36319,6 +37130,10 @@ export type MarketplaceResourcesListData = {
36319
37130
  * Has termination date
36320
37131
  */
36321
37132
  has_terminate_date?: boolean;
37133
+ /**
37134
+ * Filter by attached state
37135
+ */
37136
+ is_attached?: boolean;
36322
37137
  /**
36323
37138
  * LEXIS links supported
36324
37139
  */
@@ -36490,6 +37305,10 @@ export type MarketplaceResourcesCountData = {
36490
37305
  * Has termination date
36491
37306
  */
36492
37307
  has_terminate_date?: boolean;
37308
+ /**
37309
+ * Filter by attached state
37310
+ */
37311
+ is_attached?: boolean;
36493
37312
  /**
36494
37313
  * LEXIS links supported
36495
37314
  */
@@ -38306,7 +39125,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
38306
39125
  * Description
38307
39126
  */
38308
39127
  description?: string;
38309
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
39128
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
38310
39129
  /**
38311
39130
  * Is removed
38312
39131
  */
@@ -41850,7 +42669,12 @@ export type OnboardingVerificationsChecklistRetrieveData = {
41850
42669
  path: {
41851
42670
  uuid: string;
41852
42671
  };
41853
- 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
+ };
41854
42678
  url: '/api/onboarding-verifications/{uuid}/checklist/';
41855
42679
  };
41856
42680
  export type OnboardingVerificationsChecklistRetrieveErrors = {
@@ -43270,7 +44094,7 @@ export type OpenportalUnmanagedProjectsListData = {
43270
44094
  * Description
43271
44095
  */
43272
44096
  description?: string;
43273
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
44097
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
43274
44098
  /**
43275
44099
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
43276
44100
  */
@@ -43443,7 +44267,7 @@ export type OpenportalUnmanagedProjectsRetrieveData = {
43443
44267
  uuid: string;
43444
44268
  };
43445
44269
  query?: {
43446
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
44270
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
43447
44271
  };
43448
44272
  url: '/api/openportal-unmanaged-projects/{uuid}/';
43449
44273
  };
@@ -43498,7 +44322,12 @@ export type OpenportalUnmanagedProjectsChecklistRetrieveData = {
43498
44322
  path: {
43499
44323
  uuid: string;
43500
44324
  };
43501
- 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
+ };
43502
44331
  url: '/api/openportal-unmanaged-projects/{uuid}/checklist/';
43503
44332
  };
43504
44333
  export type OpenportalUnmanagedProjectsChecklistRetrieveErrors = {
@@ -48133,7 +48962,7 @@ export type OpenstackTenantsListData = {
48133
48962
  * External IP
48134
48963
  */
48135
48964
  external_ip?: string;
48136
- 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'>;
48137
48966
  /**
48138
48967
  * Name
48139
48968
  */
@@ -48288,7 +49117,7 @@ export type OpenstackTenantsRetrieveData = {
48288
49117
  uuid: string;
48289
49118
  };
48290
49119
  query?: {
48291
- 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'>;
48292
49121
  };
48293
49122
  url: '/api/openstack-tenants/{uuid}/';
48294
49123
  };
@@ -50112,7 +50941,7 @@ export type ProjectsListData = {
50112
50941
  * Description
50113
50942
  */
50114
50943
  description?: string;
50115
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
50944
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
50116
50945
  /**
50117
50946
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
50118
50947
  */
@@ -50361,7 +51190,7 @@ export type ProjectsRetrieveData = {
50361
51190
  uuid: string;
50362
51191
  };
50363
51192
  query?: {
50364
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
51193
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid'>;
50365
51194
  };
50366
51195
  url: '/api/projects/{uuid}/';
50367
51196
  };
@@ -50416,7 +51245,12 @@ export type ProjectsChecklistRetrieveData = {
50416
51245
  path: {
50417
51246
  uuid: string;
50418
51247
  };
50419
- 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
+ };
50420
51254
  url: '/api/projects/{uuid}/checklist/';
50421
51255
  };
50422
51256
  export type ProjectsChecklistRetrieveErrors = {
@@ -51033,7 +51867,12 @@ export type ProposalProposalsChecklistRetrieveData = {
51033
51867
  path: {
51034
51868
  uuid: string;
51035
51869
  };
51036
- 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
+ };
51037
51876
  url: '/api/proposal-proposals/{uuid}/checklist/';
51038
51877
  };
51039
51878
  export type ProposalProposalsChecklistRetrieveErrors = {
@@ -51130,6 +51969,20 @@ export type ProposalProposalsDeleteUserResponses = {
51130
51969
  */
51131
51970
  200: unknown;
51132
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
+ };
51133
51986
  export type ProposalProposalsListUsersListData = {
51134
51987
  body?: never;
51135
51988
  path: {
@@ -51404,7 +52257,7 @@ export type ProposalProtectedCallsListData = {
51404
52257
  customer?: string;
51405
52258
  customer_keyword?: string;
51406
52259
  customer_uuid?: string;
51407
- 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'>;
51408
52261
  has_active_round?: boolean;
51409
52262
  name?: string;
51410
52263
  /**
@@ -51497,7 +52350,7 @@ export type ProposalProtectedCallsRetrieveData = {
51497
52350
  uuid: string;
51498
52351
  };
51499
52352
  query?: {
51500
- 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'>;
51501
52354
  };
51502
52355
  url: '/api/proposal-protected-calls/{uuid}/';
51503
52356
  };
@@ -56855,13 +57708,13 @@ export type SupportIssueStatusesCountResponses = {
56855
57708
  200: unknown;
56856
57709
  };
56857
57710
  export type SupportIssueStatusesCreateData = {
56858
- body: IssueStatusRequest;
57711
+ body: IssueStatusCreateRequest;
56859
57712
  path?: never;
56860
57713
  query?: never;
56861
57714
  url: '/api/support-issue-statuses/';
56862
57715
  };
56863
57716
  export type SupportIssueStatusesCreateResponses = {
56864
- 201: IssueStatus;
57717
+ 201: IssueStatusCreate;
56865
57718
  };
56866
57719
  export type SupportIssueStatusesCreateResponse = SupportIssueStatusesCreateResponses[keyof SupportIssueStatusesCreateResponses];
56867
57720
  export type SupportIssueStatusesDestroyData = {
@@ -56904,7 +57757,7 @@ export type SupportIssueStatusesPartialUpdateResponses = {
56904
57757
  };
56905
57758
  export type SupportIssueStatusesPartialUpdateResponse = SupportIssueStatusesPartialUpdateResponses[keyof SupportIssueStatusesPartialUpdateResponses];
56906
57759
  export type SupportIssueStatusesUpdateData = {
56907
- body: IssueStatusRequest;
57760
+ body: IssueStatusCreateRequest;
56908
57761
  path: {
56909
57762
  uuid: string;
56910
57763
  };
@@ -56912,7 +57765,7 @@ export type SupportIssueStatusesUpdateData = {
56912
57765
  url: '/api/support-issue-statuses/{uuid}/';
56913
57766
  };
56914
57767
  export type SupportIssueStatusesUpdateResponses = {
56915
- 200: IssueStatus;
57768
+ 200: IssueStatusCreate;
56916
57769
  };
56917
57770
  export type SupportIssueStatusesUpdateResponse = SupportIssueStatusesUpdateResponses[keyof SupportIssueStatusesUpdateResponses];
56918
57771
  export type SupportIssuesListData = {
@@ -57200,6 +58053,197 @@ export type SupportPrioritiesRetrieveResponses = {
57200
58053
  200: Priority;
57201
58054
  };
57202
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];
57203
58247
  export type SupportSmaxWebhookData = {
57204
58248
  body: SmaxWebHookReceiverRequest;
57205
58249
  path?: never;
@@ -57425,6 +58469,232 @@ export type SupportZammadWebhookResponses = {
57425
58469
  */
57426
58470
  200: unknown;
57427
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
+ };
57428
58698
  export type SyncIssuesRetrieveData = {
57429
58699
  body?: never;
57430
58700
  path?: never;
@@ -57743,6 +59013,10 @@ export type UserAgreementsListData = {
57743
59013
  path?: never;
57744
59014
  query?: {
57745
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;
57746
59020
  /**
57747
59021
  * A page number within the paginated result set.
57748
59022
  */
@@ -57763,6 +59037,10 @@ export type UserAgreementsCountData = {
57763
59037
  path?: never;
57764
59038
  query?: {
57765
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;
57766
59044
  /**
57767
59045
  * A page number within the paginated result set.
57768
59046
  */
@@ -57915,6 +59193,21 @@ export type UserGroupInvitationsCreateResponses = {
57915
59193
  201: GroupInvitation;
57916
59194
  };
57917
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];
57918
59211
  export type UserGroupInvitationsRetrieveData = {
57919
59212
  body?: never;
57920
59213
  path: {