waldur-js-client 7.9.6-dev.2 → 7.9.6-dev.21

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,115 @@ 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
+ use_old_api?: boolean;
309
+ custom_field_mapping_enabled?: boolean;
310
+ };
311
+ export type AtlassianSettingsSaveRequest = {
312
+ api_url: string;
313
+ auth_method: AuthMethodEnum;
314
+ email?: string;
315
+ token?: string;
316
+ personal_access_token?: string;
317
+ username?: string;
318
+ password?: string;
319
+ verify_ssl?: boolean;
320
+ project_id: string;
321
+ issue_types?: Array<string>;
322
+ /**
323
+ * Mapping from frontend types to backend request types
324
+ */
325
+ support_type_mapping?: {
326
+ [key: string]: string;
327
+ };
328
+ reporter_field?: string;
329
+ impact_field?: string;
330
+ organisation_field?: string;
331
+ project_field?: string;
332
+ affected_resource_field?: string;
333
+ caller_field?: string;
334
+ template_field?: string;
335
+ sla_field?: string;
336
+ resolution_sla_field?: string;
337
+ satisfaction_field?: string;
338
+ request_feedback_field?: string;
339
+ waldur_backend_id_field?: string;
340
+ use_old_api?: boolean;
341
+ custom_field_mapping_enabled?: boolean;
342
+ /**
343
+ * Must be True to confirm saving settings
344
+ */
345
+ confirm_save: boolean;
346
+ };
238
347
  export type Attachment = {
239
348
  readonly url?: string;
240
349
  readonly uuid?: string;
@@ -252,6 +361,7 @@ export type AttachmentRequest = {
252
361
  issue: string;
253
362
  file: Blob | File;
254
363
  };
364
+ export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
255
365
  export type AuthResult = {
256
366
  readonly uuid: string;
257
367
  readonly token: string;
@@ -1570,6 +1680,212 @@ export type CategorySerializerForForNestedFields = {
1570
1680
  export type CategorySerializerForForNestedFieldsRequest = {
1571
1681
  title: string;
1572
1682
  };
1683
+ export type CeleryBroker = {
1684
+ /**
1685
+ * Broker hostname
1686
+ */
1687
+ readonly hostname: string;
1688
+ /**
1689
+ * Broker user ID
1690
+ */
1691
+ readonly userid: string;
1692
+ /**
1693
+ * Virtual host
1694
+ */
1695
+ readonly virtual_host: string;
1696
+ /**
1697
+ * Broker port
1698
+ */
1699
+ readonly port: number;
1700
+ readonly insist: boolean;
1701
+ readonly ssl: boolean;
1702
+ /**
1703
+ * Transport protocol
1704
+ */
1705
+ readonly transport: string;
1706
+ /**
1707
+ * Connection timeout in seconds
1708
+ */
1709
+ readonly connect_timeout: number;
1710
+ /**
1711
+ * Additional transport options
1712
+ */
1713
+ readonly transport_options: {
1714
+ [key: string]: unknown;
1715
+ };
1716
+ /**
1717
+ * Authentication method
1718
+ */
1719
+ readonly login_method: string;
1720
+ readonly uri_prefix: string;
1721
+ /**
1722
+ * Heartbeat interval
1723
+ */
1724
+ readonly heartbeat: number;
1725
+ readonly failover_strategy: string;
1726
+ readonly alternates: Array<string>;
1727
+ };
1728
+ export type CeleryScheduledTask = {
1729
+ /**
1730
+ * Estimated time of arrival for the task
1731
+ */
1732
+ readonly eta: string;
1733
+ /**
1734
+ * Task priority level
1735
+ */
1736
+ readonly priority: number;
1737
+ /**
1738
+ * Task request details
1739
+ */
1740
+ request: CeleryTask;
1741
+ };
1742
+ export type CeleryStatsResponse = {
1743
+ /**
1744
+ * Currently executing tasks per worker. Keys are worker names, values are lists of active tasks.
1745
+ */
1746
+ readonly active: {
1747
+ [key: string]: Array<CeleryTask>;
1748
+ } | null;
1749
+ /**
1750
+ * Tasks scheduled for future execution per worker. Keys are worker names, values are lists of scheduled tasks with ETA.
1751
+ */
1752
+ readonly scheduled: {
1753
+ [key: string]: Array<CeleryScheduledTask>;
1754
+ } | null;
1755
+ /**
1756
+ * Tasks that have been received but not yet started per worker. Keys are worker names, values are lists of reserved tasks.
1757
+ */
1758
+ readonly reserved: {
1759
+ [key: string]: Array<CeleryTask>;
1760
+ } | null;
1761
+ /**
1762
+ * IDs of revoked (cancelled) tasks per worker. Keys are worker names, values are lists of task IDs.
1763
+ */
1764
+ readonly revoked: {
1765
+ [key: string]: Array<string>;
1766
+ } | null;
1767
+ /**
1768
+ * Query results for specific tasks. May be null if no query was performed.
1769
+ */
1770
+ readonly query_task: {
1771
+ [key: string]: unknown;
1772
+ } | null;
1773
+ /**
1774
+ * Detailed statistics per worker including uptime, pool info, and resource usage. Keys are worker names.
1775
+ */
1776
+ readonly stats: {
1777
+ [key: string]: CeleryWorkerStats;
1778
+ } | null;
1779
+ };
1780
+ export type CeleryTask = {
1781
+ /**
1782
+ * Unique task identifier
1783
+ */
1784
+ readonly id: string;
1785
+ /**
1786
+ * Name of the task
1787
+ */
1788
+ readonly name: string;
1789
+ /**
1790
+ * Positional arguments passed to the task
1791
+ */
1792
+ readonly args: Array<unknown>;
1793
+ /**
1794
+ * Keyword arguments passed to the task
1795
+ */
1796
+ readonly kwargs: {
1797
+ [key: string]: unknown;
1798
+ };
1799
+ /**
1800
+ * Task type
1801
+ */
1802
+ readonly type: string;
1803
+ /**
1804
+ * Worker hostname executing the task
1805
+ */
1806
+ readonly hostname: string;
1807
+ /**
1808
+ * Unix timestamp when task started
1809
+ */
1810
+ readonly time_start: number;
1811
+ /**
1812
+ * Whether task has been acknowledged
1813
+ */
1814
+ readonly acknowledged: boolean;
1815
+ /**
1816
+ * Message delivery information
1817
+ */
1818
+ readonly delivery_info: {
1819
+ [key: string]: unknown;
1820
+ };
1821
+ /**
1822
+ * Worker process ID
1823
+ */
1824
+ readonly worker_pid: number;
1825
+ };
1826
+ export type CeleryWorkerPool = {
1827
+ /**
1828
+ * Maximum number of concurrent processes
1829
+ */
1830
+ readonly max_concurrency: number;
1831
+ /**
1832
+ * List of worker process IDs
1833
+ */
1834
+ readonly processes: Array<number>;
1835
+ /**
1836
+ * Maximum tasks per child process
1837
+ */
1838
+ readonly max_tasks_per_child: number;
1839
+ readonly put_guarded_by_semaphore: boolean;
1840
+ /**
1841
+ * Timeout values
1842
+ */
1843
+ readonly timeouts: Array<number>;
1844
+ /**
1845
+ * Write statistics
1846
+ */
1847
+ readonly writes: {
1848
+ [key: string]: unknown;
1849
+ };
1850
+ };
1851
+ export type CeleryWorkerStats = {
1852
+ /**
1853
+ * Broker connection information
1854
+ */
1855
+ broker: CeleryBroker;
1856
+ /**
1857
+ * Logical clock value
1858
+ */
1859
+ readonly clock: string;
1860
+ /**
1861
+ * Worker uptime in seconds
1862
+ */
1863
+ readonly uptime: number;
1864
+ /**
1865
+ * Worker process ID
1866
+ */
1867
+ readonly pid: number;
1868
+ /**
1869
+ * Worker pool statistics
1870
+ */
1871
+ pool: CeleryWorkerPool;
1872
+ /**
1873
+ * Number of tasks prefetched
1874
+ */
1875
+ readonly prefetch_count: number;
1876
+ /**
1877
+ * Resource usage statistics
1878
+ */
1879
+ readonly rusage: {
1880
+ [key: string]: unknown;
1881
+ };
1882
+ /**
1883
+ * Total task counts by type
1884
+ */
1885
+ readonly total: {
1886
+ [key: string]: unknown;
1887
+ };
1888
+ };
1573
1889
  export type ChatRequestRequest = {
1574
1890
  /**
1575
1891
  * User input text for the chat model.
@@ -2030,6 +2346,14 @@ export type ConstanceSettings = {
2030
2346
  SIDEBAR_STYLE?: string;
2031
2347
  SITE_LOGO?: string | null;
2032
2348
  LOGIN_LOGO?: string | null;
2349
+ LOGIN_LOGO_MULTILINGUAL?: {
2350
+ [key: string]: string | null;
2351
+ };
2352
+ LOGIN_PAGE_LAYOUT?: string;
2353
+ LOGIN_PAGE_VIDEO_URL?: string;
2354
+ LOGIN_PAGE_STATS?: Array<unknown>;
2355
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
2356
+ LOGIN_PAGE_NEWS?: Array<unknown>;
2033
2357
  FAVICON?: string | null;
2034
2358
  OFFERING_LOGO_PLACEHOLDER?: string | null;
2035
2359
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2052,8 +2376,6 @@ export type ConstanceSettings = {
2052
2376
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
2053
2377
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
2054
2378
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
2055
- ATLASSIAN_ISSUE_TYPES?: string;
2056
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
2057
2379
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
2058
2380
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
2059
2381
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -2202,6 +2524,14 @@ export type ConstanceSettingsRequest = {
2202
2524
  SIDEBAR_STYLE?: string;
2203
2525
  SITE_LOGO?: (Blob | File) | null;
2204
2526
  LOGIN_LOGO?: (Blob | File) | null;
2527
+ LOGIN_LOGO_MULTILINGUAL?: {
2528
+ [key: string]: (Blob | File) | null;
2529
+ };
2530
+ LOGIN_PAGE_LAYOUT?: string;
2531
+ LOGIN_PAGE_VIDEO_URL?: string;
2532
+ LOGIN_PAGE_STATS?: Array<unknown>;
2533
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
2534
+ LOGIN_PAGE_NEWS?: Array<unknown>;
2205
2535
  FAVICON?: (Blob | File) | null;
2206
2536
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
2207
2537
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2224,8 +2554,6 @@ export type ConstanceSettingsRequest = {
2224
2554
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
2225
2555
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
2226
2556
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
2227
- ATLASSIAN_ISSUE_TYPES?: string;
2228
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
2229
2557
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
2230
2558
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
2231
2559
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -2610,6 +2938,12 @@ export type Customer = {
2610
2938
  * Number of extra days after project end date before resources are terminated
2611
2939
  */
2612
2940
  grace_period_days?: number | null;
2941
+ user_email_patterns?: unknown;
2942
+ user_affiliations?: unknown;
2943
+ /**
2944
+ * List of allowed identity sources (identity providers).
2945
+ */
2946
+ user_identity_sources?: unknown;
2613
2947
  name?: string;
2614
2948
  /**
2615
2949
  * URL-friendly identifier. Only editable by staff users.
@@ -2876,6 +3210,12 @@ export type CustomerRequest = {
2876
3210
  * Number of extra days after project end date before resources are terminated
2877
3211
  */
2878
3212
  grace_period_days?: number | null;
3213
+ user_email_patterns?: unknown;
3214
+ user_affiliations?: unknown;
3215
+ /**
3216
+ * List of allowed identity sources (identity providers).
3217
+ */
3218
+ user_identity_sources?: unknown;
2879
3219
  name: string;
2880
3220
  /**
2881
3221
  * URL-friendly identifier. Only editable by staff users.
@@ -2976,6 +3316,47 @@ export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
2976
3316
  export type DeleteAttachmentsRequest = {
2977
3317
  attachment_ids: Array<string>;
2978
3318
  };
3319
+ export type DemoPreset = {
3320
+ readonly name: string;
3321
+ readonly title: string;
3322
+ readonly description: string;
3323
+ readonly version: string;
3324
+ readonly entity_counts: {
3325
+ [key: string]: number;
3326
+ };
3327
+ readonly scenarios: Array<string>;
3328
+ };
3329
+ export type DemoPresetLoadRequestRequest = {
3330
+ /**
3331
+ * Preview changes without applying them
3332
+ */
3333
+ dry_run?: boolean;
3334
+ /**
3335
+ * Clean up existing data before loading the preset
3336
+ */
3337
+ cleanup_first?: boolean;
3338
+ /**
3339
+ * Skip user import/cleanup
3340
+ */
3341
+ skip_users?: boolean;
3342
+ /**
3343
+ * Skip role import/cleanup
3344
+ */
3345
+ skip_roles?: boolean;
3346
+ };
3347
+ export type DemoPresetLoadResponse = {
3348
+ success: boolean;
3349
+ message: string;
3350
+ output?: string;
3351
+ users?: Array<DemoPresetUser>;
3352
+ };
3353
+ export type DemoPresetUser = {
3354
+ username: string;
3355
+ password: string;
3356
+ email?: string;
3357
+ is_staff?: boolean;
3358
+ is_support?: boolean;
3359
+ };
2979
3360
  export type DependencyLogicOperatorEnum = 'and' | 'or';
2980
3361
  export type DeploymentModeEnum = 'self_managed' | 'managed';
2981
3362
  export type DeprecatedNetworkRbacPolicy = {
@@ -3161,6 +3542,79 @@ export type DiscountsUpdateRequest = {
3161
3542
  [key: string]: DiscountConfigRequest;
3162
3543
  };
3163
3544
  };
3545
+ export type DiscoverCustomFieldsRequestRequest = {
3546
+ /**
3547
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3548
+ */
3549
+ api_url: string;
3550
+ /**
3551
+ * Authentication method to use
3552
+ */
3553
+ auth_method: AuthMethodEnum;
3554
+ email?: string;
3555
+ token?: string;
3556
+ personal_access_token?: string;
3557
+ username?: string;
3558
+ password?: string;
3559
+ verify_ssl?: boolean;
3560
+ project_id?: string;
3561
+ /**
3562
+ * Optional: Filter fields by request type
3563
+ */
3564
+ request_type_id?: string;
3565
+ };
3566
+ export type DiscoverPrioritiesRequestRequest = {
3567
+ /**
3568
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3569
+ */
3570
+ api_url: string;
3571
+ /**
3572
+ * Authentication method to use
3573
+ */
3574
+ auth_method: AuthMethodEnum;
3575
+ email?: string;
3576
+ token?: string;
3577
+ personal_access_token?: string;
3578
+ username?: string;
3579
+ password?: string;
3580
+ verify_ssl?: boolean;
3581
+ };
3582
+ export type DiscoverProjectsRequestRequest = {
3583
+ /**
3584
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3585
+ */
3586
+ api_url: string;
3587
+ /**
3588
+ * Authentication method to use
3589
+ */
3590
+ auth_method: AuthMethodEnum;
3591
+ email?: string;
3592
+ token?: string;
3593
+ personal_access_token?: string;
3594
+ username?: string;
3595
+ password?: string;
3596
+ verify_ssl?: boolean;
3597
+ };
3598
+ export type DiscoverRequestTypesRequestRequest = {
3599
+ /**
3600
+ * Atlassian API URL (e.g., https://your-domain.atlassian.net)
3601
+ */
3602
+ api_url: string;
3603
+ /**
3604
+ * Authentication method to use
3605
+ */
3606
+ auth_method: AuthMethodEnum;
3607
+ email?: string;
3608
+ token?: string;
3609
+ personal_access_token?: string;
3610
+ username?: string;
3611
+ password?: string;
3612
+ verify_ssl?: boolean;
3613
+ /**
3614
+ * Service Desk project ID or key
3615
+ */
3616
+ project_id: string;
3617
+ };
3164
3618
  export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
3165
3619
  export type DryRun = {
3166
3620
  readonly url: string;
@@ -3685,10 +4139,6 @@ export type GroupInvitation = {
3685
4139
  */
3686
4140
  role: string;
3687
4141
  readonly created: string;
3688
- /**
3689
- * Expiration date and time of the invitation
3690
- */
3691
- readonly expires: string;
3692
4142
  readonly is_active: boolean;
3693
4143
  /**
3694
4144
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -3698,6 +4148,10 @@ export type GroupInvitation = {
3698
4148
  * Create project and grant project permissions instead of customer permissions
3699
4149
  */
3700
4150
  auto_create_project?: boolean;
4151
+ /**
4152
+ * Automatically approve permission requests from users matching email patterns or affiliations
4153
+ */
4154
+ auto_approve?: boolean;
3701
4155
  /**
3702
4156
  * Template for project name. Supports {username}, {email}, {full_name} variables
3703
4157
  */
@@ -3708,6 +4162,10 @@ export type GroupInvitation = {
3708
4162
  project_role?: string | null;
3709
4163
  user_affiliations?: unknown;
3710
4164
  user_email_patterns?: unknown;
4165
+ /**
4166
+ * List of allowed identity sources (identity providers).
4167
+ */
4168
+ user_identity_sources?: unknown;
3711
4169
  /**
3712
4170
  * Image URL of the invitation scope (Customer or Project)
3713
4171
  */
@@ -3730,6 +4188,10 @@ export type GroupInvitationRequest = {
3730
4188
  * Create project and grant project permissions instead of customer permissions
3731
4189
  */
3732
4190
  auto_create_project?: boolean;
4191
+ /**
4192
+ * Automatically approve permission requests from users matching email patterns or affiliations
4193
+ */
4194
+ auto_approve?: boolean;
3733
4195
  /**
3734
4196
  * Template for project name. Supports {username}, {email}, {full_name} variables
3735
4197
  */
@@ -3740,6 +4202,10 @@ export type GroupInvitationRequest = {
3740
4202
  project_role?: string | null;
3741
4203
  user_affiliations?: unknown;
3742
4204
  user_email_patterns?: unknown;
4205
+ /**
4206
+ * List of allowed identity sources (identity providers).
4207
+ */
4208
+ user_identity_sources?: unknown;
3743
4209
  };
3744
4210
  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';
3745
4211
  export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
@@ -4348,6 +4814,10 @@ export type Issue = {
4348
4814
  readonly destroy_is_available: boolean;
4349
4815
  readonly add_comment_is_available: boolean;
4350
4816
  readonly add_attachment_is_available: boolean;
4817
+ /**
4818
+ * Internal processing log for debugging order lifecycle events. Visible only to staff.
4819
+ */
4820
+ readonly processing_log: unknown;
4351
4821
  };
4352
4822
  export type IssueReference = {
4353
4823
  readonly key?: string;
@@ -5181,7 +5651,7 @@ export type MergedPluginOptions = {
5181
5651
  */
5182
5652
  enable_display_of_order_actions_for_service_provider?: boolean;
5183
5653
  /**
5184
- * If set to False, an order requires manual provider approval
5654
+ * If set to False, all orders require manual provider approval, including for service provider owners and staff
5185
5655
  */
5186
5656
  auto_approve_marketplace_script?: boolean;
5187
5657
  /**
@@ -5419,7 +5889,7 @@ export type MergedPluginOptionsRequest = {
5419
5889
  */
5420
5890
  enable_display_of_order_actions_for_service_provider?: boolean;
5421
5891
  /**
5422
- * If set to False, an order requires manual provider approval
5892
+ * If set to False, all orders require manual provider approval, including for service provider owners and staff
5423
5893
  */
5424
5894
  auto_approve_marketplace_script?: boolean;
5425
5895
  /**
@@ -6786,6 +7256,10 @@ export type OfferingCost = {
6786
7256
  * UUID of the offering
6787
7257
  */
6788
7258
  offering_uuid: string;
7259
+ /**
7260
+ * Name of the offering
7261
+ */
7262
+ offering_name: string;
6789
7263
  /**
6790
7264
  * Total cost for the offering
6791
7265
  */
@@ -7824,6 +8298,7 @@ export type OnboardingVerification = {
7824
8298
  */
7825
8299
  legal_name?: string;
7826
8300
  status: OnboardingVerificationStatusEnum;
8301
+ readonly justifications: Array<OnboardingJustification>;
7827
8302
  /**
7828
8303
  * Method used for validation
7829
8304
  */
@@ -9377,6 +9852,7 @@ export type OpenStackTenantRequest = {
9377
9852
  */
9378
9853
  default_volume_type_name?: string;
9379
9854
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
9855
+ skip_creation_of_default_subnet?: boolean;
9380
9856
  };
9381
9857
  export type OpenStackTenantSecurityGroup = {
9382
9858
  name: string;
@@ -9677,7 +10153,7 @@ export type OrderDetails = {
9677
10153
  readonly order_subtype?: string | null;
9678
10154
  issue?: IssueReference | null;
9679
10155
  };
9680
- export type OrderSetStateErredRequest = {
10156
+ export type OrderErrorDetailsRequest = {
9681
10157
  error_message?: string;
9682
10158
  error_traceback?: string;
9683
10159
  };
@@ -9915,6 +10391,12 @@ export type PatchedCustomerRequest = {
9915
10391
  * Number of extra days after project end date before resources are terminated
9916
10392
  */
9917
10393
  grace_period_days?: number | null;
10394
+ user_email_patterns?: unknown;
10395
+ user_affiliations?: unknown;
10396
+ /**
10397
+ * List of allowed identity sources (identity providers).
10398
+ */
10399
+ user_identity_sources?: unknown;
9918
10400
  name?: string;
9919
10401
  /**
9920
10402
  * URL-friendly identifier. Only editable by staff users.
@@ -10478,6 +10960,7 @@ export type PatchedOpenStackTenantRequest = {
10478
10960
  */
10479
10961
  default_volume_type_name?: string;
10480
10962
  security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
10963
+ skip_creation_of_default_subnet?: boolean;
10481
10964
  };
10482
10965
  export type PatchedOpenStackVolumeRequest = {
10483
10966
  name?: string;
@@ -10577,6 +11060,12 @@ export type PatchedProjectRequest = {
10577
11060
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
10578
11061
  */
10579
11062
  grace_period_days?: number | null;
11063
+ user_email_patterns?: unknown;
11064
+ user_affiliations?: unknown;
11065
+ /**
11066
+ * List of allowed identity sources (identity providers).
11067
+ */
11068
+ user_identity_sources?: unknown;
10580
11069
  };
10581
11070
  export type PatchedProjectServiceAccountRequest = {
10582
11071
  username?: string;
@@ -10662,6 +11151,10 @@ export type PatchedProtectedCallRequest = {
10662
11151
  * Compliance checklist that proposals must complete before submission
10663
11152
  */
10664
11153
  compliance_checklist?: string | null;
11154
+ /**
11155
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
11156
+ */
11157
+ proposal_slug_template?: string | null;
10665
11158
  };
10666
11159
  export type PatchedProtectedRoundRequest = {
10667
11160
  start_time?: string;
@@ -10703,11 +11196,11 @@ export type PatchedQuestionAdminRequest = {
10703
11196
  question_type?: QuestionTypeEnum;
10704
11197
  order?: number;
10705
11198
  /**
10706
- * Minimum value allowed for NUMBER type questions
11199
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
10707
11200
  */
10708
11201
  min_value?: string | null;
10709
11202
  /**
10710
- * Maximum value allowed for NUMBER type questions
11203
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
10711
11204
  */
10712
11205
  max_value?: string | null;
10713
11206
  /**
@@ -10864,6 +11357,18 @@ export type PatchedRemoteSynchronisationRequest = {
10864
11357
  is_active?: boolean;
10865
11358
  remotelocalcategory_set?: Array<NestedRemoteLocalCategoryRequest>;
10866
11359
  };
11360
+ export type PatchedRequestTypeAdminRequest = {
11361
+ name?: string;
11362
+ issue_type_name?: string;
11363
+ /**
11364
+ * Whether this request type is available for issue creation.
11365
+ */
11366
+ is_active?: boolean;
11367
+ /**
11368
+ * Display order. First type (lowest order) is the default.
11369
+ */
11370
+ order?: number;
11371
+ };
10867
11372
  export type PatchedRequestedOfferingRequest = {
10868
11373
  attributes?: unknown;
10869
11374
  plan?: string | null;
@@ -11107,6 +11612,10 @@ export type PatchedTemplateRequest = {
11107
11612
  export type PatchedUserAgreementRequest = {
11108
11613
  content?: string;
11109
11614
  agreement_type?: AgreementTypeEnum;
11615
+ /**
11616
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
11617
+ */
11618
+ language?: string;
11110
11619
  };
11111
11620
  export type PatchedUserInfoRequest = {
11112
11621
  /**
@@ -11476,6 +11985,12 @@ export type Project = {
11476
11985
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11477
11986
  */
11478
11987
  grace_period_days?: number | null;
11988
+ user_email_patterns?: unknown;
11989
+ user_affiliations?: unknown;
11990
+ /**
11991
+ * List of allowed identity sources (identity providers).
11992
+ */
11993
+ user_identity_sources?: unknown;
11479
11994
  readonly project_credit?: number | null;
11480
11995
  readonly marketplace_resource_count?: {
11481
11996
  [key: string]: number;
@@ -11729,6 +12244,12 @@ export type ProjectRequest = {
11729
12244
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11730
12245
  */
11731
12246
  grace_period_days?: number | null;
12247
+ user_email_patterns?: unknown;
12248
+ user_affiliations?: unknown;
12249
+ /**
12250
+ * List of allowed identity sources (identity providers).
12251
+ */
12252
+ user_identity_sources?: unknown;
11732
12253
  };
11733
12254
  export type ProjectServiceAccount = {
11734
12255
  readonly url: string;
@@ -11943,7 +12464,11 @@ export type ProposalChecklistAnswerSubmitResponse = {
11943
12464
  detail: string;
11944
12465
  completion: ChecklistCompletionReviewer;
11945
12466
  };
12467
+ export type ProposalDetachDocumentsRequest = {
12468
+ documents: Array<string>;
12469
+ };
11946
12470
  export type ProposalDocumentation = {
12471
+ readonly uuid: string;
11947
12472
  /**
11948
12473
  * Upload supporting documentation in PDF format.
11949
12474
  */
@@ -12095,6 +12620,10 @@ export type ProtectedCall = {
12095
12620
  */
12096
12621
  compliance_checklist?: string | null;
12097
12622
  readonly compliance_checklist_name?: string;
12623
+ /**
12624
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12625
+ */
12626
+ proposal_slug_template?: string | null;
12098
12627
  };
12099
12628
  export type ProtectedCallRequest = {
12100
12629
  /**
@@ -12121,6 +12650,10 @@ export type ProtectedCallRequest = {
12121
12650
  * Compliance checklist that proposals must complete before submission
12122
12651
  */
12123
12652
  compliance_checklist?: string | null;
12653
+ /**
12654
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12655
+ */
12656
+ proposal_slug_template?: string | null;
12124
12657
  };
12125
12658
  export type ProtectedProposalList = {
12126
12659
  readonly uuid: string;
@@ -12670,11 +13203,11 @@ export type Question = {
12670
13203
  question_type?: QuestionTypeEnum;
12671
13204
  order?: number;
12672
13205
  /**
12673
- * Minimum value allowed for NUMBER type questions
13206
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12674
13207
  */
12675
13208
  min_value?: string | null;
12676
13209
  /**
12677
- * Maximum value allowed for NUMBER type questions
13210
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12678
13211
  */
12679
13212
  max_value?: string | null;
12680
13213
  /**
@@ -12734,11 +13267,11 @@ export type QuestionAdmin = {
12734
13267
  question_type?: QuestionTypeEnum;
12735
13268
  order?: number;
12736
13269
  /**
12737
- * Minimum value allowed for NUMBER type questions
13270
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12738
13271
  */
12739
13272
  min_value?: string | null;
12740
13273
  /**
12741
- * Maximum value allowed for NUMBER type questions
13274
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12742
13275
  */
12743
13276
  max_value?: string | null;
12744
13277
  /**
@@ -12800,11 +13333,11 @@ export type QuestionAdminRequest = {
12800
13333
  question_type?: QuestionTypeEnum;
12801
13334
  order?: number;
12802
13335
  /**
12803
- * Minimum value allowed for NUMBER type questions
13336
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12804
13337
  */
12805
13338
  min_value?: string | null;
12806
13339
  /**
12807
- * Maximum value allowed for NUMBER type questions
13340
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12808
13341
  */
12809
13342
  max_value?: string | null;
12810
13343
  /**
@@ -12919,7 +13452,7 @@ export type QuestionOptionsAdminRequest = {
12919
13452
  order?: number;
12920
13453
  question: string;
12921
13454
  };
12922
- export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files';
13455
+ 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';
12923
13456
  export type QuestionWithAnswer = {
12924
13457
  readonly uuid: string;
12925
13458
  readonly description: string;
@@ -12935,11 +13468,11 @@ export type QuestionWithAnswer = {
12935
13468
  } | null;
12936
13469
  readonly question_options: Array<unknown> | null;
12937
13470
  /**
12938
- * Minimum value allowed for NUMBER type questions
13471
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12939
13472
  */
12940
13473
  readonly min_value: string | null;
12941
13474
  /**
12942
- * Maximum value allowed for NUMBER type questions
13475
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12943
13476
  */
12944
13477
  readonly max_value: string | null;
12945
13478
  /**
@@ -12958,6 +13491,9 @@ export type QuestionWithAnswer = {
12958
13491
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
12959
13492
  */
12960
13493
  readonly max_files_count: number | null;
13494
+ readonly dependencies_info: {
13495
+ [key: string]: unknown;
13496
+ } | null;
12961
13497
  };
12962
13498
  export type QuestionWithAnswerReviewer = {
12963
13499
  readonly uuid: string;
@@ -12974,11 +13510,11 @@ export type QuestionWithAnswerReviewer = {
12974
13510
  } | null;
12975
13511
  readonly question_options: Array<unknown> | null;
12976
13512
  /**
12977
- * Minimum value allowed for NUMBER type questions
13513
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12978
13514
  */
12979
13515
  readonly min_value: string | null;
12980
13516
  /**
12981
- * Maximum value allowed for NUMBER type questions
13517
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12982
13518
  */
12983
13519
  readonly max_value: string | null;
12984
13520
  /**
@@ -12997,6 +13533,9 @@ export type QuestionWithAnswerReviewer = {
12997
13533
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
12998
13534
  */
12999
13535
  readonly max_files_count: number | null;
13536
+ readonly dependencies_info: {
13537
+ [key: string]: unknown;
13538
+ } | null;
13000
13539
  operator?: ChecklistOperators | BlankEnum;
13001
13540
  /**
13002
13541
  * Answer value that trigger review.
@@ -14063,6 +14602,51 @@ export type ReportSectionRequest = {
14063
14602
  */
14064
14603
  body: string;
14065
14604
  };
14605
+ export type RequestType = {
14606
+ readonly url: string;
14607
+ readonly uuid: string;
14608
+ name: string;
14609
+ issue_type_name: string;
14610
+ /**
14611
+ * Display order. First type (lowest order) is the default.
14612
+ */
14613
+ order?: number;
14614
+ };
14615
+ export type RequestTypeAdmin = {
14616
+ readonly url: string;
14617
+ readonly uuid: string;
14618
+ name: string;
14619
+ issue_type_name: string;
14620
+ /**
14621
+ * Backend ID for synced types. Null for manually created types.
14622
+ */
14623
+ readonly backend_id: number | null;
14624
+ readonly backend_name: string | null;
14625
+ /**
14626
+ * Whether this request type is available for issue creation.
14627
+ */
14628
+ is_active?: boolean;
14629
+ /**
14630
+ * Display order. First type (lowest order) is the default.
14631
+ */
14632
+ order?: number;
14633
+ /**
14634
+ * Returns True if the request type was synced from a backend.
14635
+ */
14636
+ readonly is_synced: boolean;
14637
+ };
14638
+ export type RequestTypeAdminRequest = {
14639
+ name: string;
14640
+ issue_type_name: string;
14641
+ /**
14642
+ * Whether this request type is available for issue creation.
14643
+ */
14644
+ is_active?: boolean;
14645
+ /**
14646
+ * Display order. First type (lowest order) is the default.
14647
+ */
14648
+ order?: number;
14649
+ };
14066
14650
  export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
14067
14651
  export type RequestedOffering = {
14068
14652
  readonly uuid: string;
@@ -15595,6 +16179,10 @@ export type SubmitRequestResponse = {
15595
16179
  * UUID of the invitation scope
15596
16180
  */
15597
16181
  scope_uuid: string;
16182
+ /**
16183
+ * Whether the request was automatically approved
16184
+ */
16185
+ auto_approved: boolean;
15598
16186
  };
15599
16187
  export type SubresourceOffering = {
15600
16188
  /**
@@ -15918,17 +16506,45 @@ export type UserActionSummary = {
15918
16506
  };
15919
16507
  overdue: number;
15920
16508
  };
16509
+ export type UserAffiliationCount = {
16510
+ /**
16511
+ * Affiliation name
16512
+ */
16513
+ affiliation: string;
16514
+ /**
16515
+ * Number of users
16516
+ */
16517
+ count: number;
16518
+ };
15921
16519
  export type UserAgreement = {
15922
16520
  readonly url: string;
15923
16521
  readonly uuid: string;
15924
16522
  content: string;
15925
16523
  agreement_type: AgreementTypeEnum;
16524
+ /**
16525
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16526
+ */
16527
+ language: string;
15926
16528
  readonly created: string;
15927
16529
  readonly modified: string;
15928
16530
  };
15929
16531
  export type UserAgreementRequest = {
15930
16532
  content: string;
15931
16533
  agreement_type: AgreementTypeEnum;
16534
+ /**
16535
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16536
+ */
16537
+ language: string;
16538
+ };
16539
+ export type UserAuthMethodCount = {
16540
+ /**
16541
+ * Authentication method
16542
+ */
16543
+ method: string;
16544
+ /**
16545
+ * Number of users
16546
+ */
16547
+ count: number;
15932
16548
  };
15933
16549
  export type UserAuthToken = {
15934
16550
  readonly created: string;
@@ -15991,6 +16607,16 @@ export type UserConsentInfo = {
15991
16607
  export type UserEmailChangeRequest = {
15992
16608
  email: string;
15993
16609
  };
16610
+ export type UserIdentitySourceCount = {
16611
+ /**
16612
+ * Identity source
16613
+ */
16614
+ identity_source: string;
16615
+ /**
16616
+ * Number of users
16617
+ */
16618
+ count: number;
16619
+ };
15994
16620
  export type UserInfo = {
15995
16621
  /**
15996
16622
  * A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter.
@@ -16038,6 +16664,16 @@ export type UserOfferingConsentCreateRequest = {
16038
16664
  export type UserOfferingConsentRequest = {
16039
16665
  version?: string;
16040
16666
  };
16667
+ export type UserOrganizationCount = {
16668
+ /**
16669
+ * Organization name
16670
+ */
16671
+ organization: string;
16672
+ /**
16673
+ * Number of users
16674
+ */
16675
+ count: number;
16676
+ };
16041
16677
  export type UserRequest = {
16042
16678
  /**
16043
16679
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -16593,6 +17229,7 @@ export type OpenStackTenantCreateOrderAttributes = {
16593
17229
  subnet_cidr?: string;
16594
17230
  skip_connection_extnet?: boolean;
16595
17231
  skip_creation_of_default_router?: boolean;
17232
+ skip_creation_of_default_subnet?: boolean;
16596
17233
  /**
16597
17234
  * Optional availability group. Will be used for all instances provisioned in this tenant
16598
17235
  */
@@ -16790,6 +17427,12 @@ export type CustomerRequestForm = {
16790
17427
  * Number of extra days after project end date before resources are terminated
16791
17428
  */
16792
17429
  grace_period_days?: number | null;
17430
+ user_email_patterns?: unknown;
17431
+ user_affiliations?: unknown;
17432
+ /**
17433
+ * List of allowed identity sources (identity providers).
17434
+ */
17435
+ user_identity_sources?: unknown;
16793
17436
  name: string;
16794
17437
  /**
16795
17438
  * URL-friendly identifier. Only editable by staff users.
@@ -16861,6 +17504,12 @@ export type CustomerRequestMultipart = {
16861
17504
  * Number of extra days after project end date before resources are terminated
16862
17505
  */
16863
17506
  grace_period_days?: number | null;
17507
+ user_email_patterns?: unknown;
17508
+ user_affiliations?: unknown;
17509
+ /**
17510
+ * List of allowed identity sources (identity providers).
17511
+ */
17512
+ user_identity_sources?: unknown;
16864
17513
  name: string;
16865
17514
  /**
16866
17515
  * URL-friendly identifier. Only editable by staff users.
@@ -16932,6 +17581,12 @@ export type PatchedCustomerRequestForm = {
16932
17581
  * Number of extra days after project end date before resources are terminated
16933
17582
  */
16934
17583
  grace_period_days?: number | null;
17584
+ user_email_patterns?: unknown;
17585
+ user_affiliations?: unknown;
17586
+ /**
17587
+ * List of allowed identity sources (identity providers).
17588
+ */
17589
+ user_identity_sources?: unknown;
16935
17590
  name?: string;
16936
17591
  /**
16937
17592
  * URL-friendly identifier. Only editable by staff users.
@@ -17003,6 +17658,12 @@ export type PatchedCustomerRequestMultipart = {
17003
17658
  * Number of extra days after project end date before resources are terminated
17004
17659
  */
17005
17660
  grace_period_days?: number | null;
17661
+ user_email_patterns?: unknown;
17662
+ user_affiliations?: unknown;
17663
+ /**
17664
+ * List of allowed identity sources (identity providers).
17665
+ */
17666
+ user_identity_sources?: unknown;
17006
17667
  name?: string;
17007
17668
  /**
17008
17669
  * URL-friendly identifier. Only editable by staff users.
@@ -17420,6 +18081,12 @@ export type ProjectRequestForm = {
17420
18081
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17421
18082
  */
17422
18083
  grace_period_days?: number | null;
18084
+ user_email_patterns?: unknown;
18085
+ user_affiliations?: unknown;
18086
+ /**
18087
+ * List of allowed identity sources (identity providers).
18088
+ */
18089
+ user_identity_sources?: unknown;
17423
18090
  };
17424
18091
  export type ProjectRequestMultipart = {
17425
18092
  name: string;
@@ -17463,6 +18130,12 @@ export type ProjectRequestMultipart = {
17463
18130
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17464
18131
  */
17465
18132
  grace_period_days?: number | null;
18133
+ user_email_patterns?: unknown;
18134
+ user_affiliations?: unknown;
18135
+ /**
18136
+ * List of allowed identity sources (identity providers).
18137
+ */
18138
+ user_identity_sources?: unknown;
17466
18139
  };
17467
18140
  export type PatchedProjectRequestForm = {
17468
18141
  name?: string;
@@ -17506,6 +18179,12 @@ export type PatchedProjectRequestForm = {
17506
18179
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17507
18180
  */
17508
18181
  grace_period_days?: number | null;
18182
+ user_email_patterns?: unknown;
18183
+ user_affiliations?: unknown;
18184
+ /**
18185
+ * List of allowed identity sources (identity providers).
18186
+ */
18187
+ user_identity_sources?: unknown;
17509
18188
  };
17510
18189
  export type PatchedProjectRequestMultipart = {
17511
18190
  name?: string;
@@ -17549,6 +18228,12 @@ export type PatchedProjectRequestMultipart = {
17549
18228
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17550
18229
  */
17551
18230
  grace_period_days?: number | null;
18231
+ user_email_patterns?: unknown;
18232
+ user_affiliations?: unknown;
18233
+ /**
18234
+ * List of allowed identity sources (identity providers).
18235
+ */
18236
+ user_identity_sources?: unknown;
17552
18237
  };
17553
18238
  export type ConstanceSettingsRequestForm = {
17554
18239
  SITE_NAME?: string;
@@ -17605,6 +18290,14 @@ export type ConstanceSettingsRequestForm = {
17605
18290
  SIDEBAR_STYLE?: string;
17606
18291
  SITE_LOGO?: (Blob | File) | null;
17607
18292
  LOGIN_LOGO?: (Blob | File) | null;
18293
+ LOGIN_LOGO_MULTILINGUAL?: {
18294
+ [key: string]: (Blob | File) | null;
18295
+ };
18296
+ LOGIN_PAGE_LAYOUT?: string;
18297
+ LOGIN_PAGE_VIDEO_URL?: string;
18298
+ LOGIN_PAGE_STATS?: Array<unknown>;
18299
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18300
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17608
18301
  FAVICON?: (Blob | File) | null;
17609
18302
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17610
18303
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17627,8 +18320,6 @@ export type ConstanceSettingsRequestForm = {
17627
18320
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17628
18321
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17629
18322
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17630
- ATLASSIAN_ISSUE_TYPES?: string;
17631
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17632
18323
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17633
18324
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17634
18325
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -17777,6 +18468,14 @@ export type ConstanceSettingsRequestMultipart = {
17777
18468
  SIDEBAR_STYLE?: string;
17778
18469
  SITE_LOGO?: (Blob | File) | null;
17779
18470
  LOGIN_LOGO?: (Blob | File) | null;
18471
+ LOGIN_LOGO_MULTILINGUAL?: {
18472
+ [key: string]: (Blob | File) | null;
18473
+ };
18474
+ LOGIN_PAGE_LAYOUT?: string;
18475
+ LOGIN_PAGE_VIDEO_URL?: string;
18476
+ LOGIN_PAGE_STATS?: Array<unknown>;
18477
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18478
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17780
18479
  FAVICON?: (Blob | File) | null;
17781
18480
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17782
18481
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17799,8 +18498,6 @@ export type ConstanceSettingsRequestMultipart = {
17799
18498
  ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
17800
18499
  ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
17801
18500
  ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
17802
- ATLASSIAN_ISSUE_TYPES?: string;
17803
- ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
17804
18501
  ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
17805
18502
  ATLASSIAN_SUMMARY_TEMPLATE?: string;
17806
18503
  ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
@@ -21510,177 +22207,185 @@ export type BookingResourcesListData = {
21510
22207
  */
21511
22208
  has_terminate_date?: boolean;
21512
22209
  /**
21513
- * LEXIS links supported
21514
- */
21515
- lexis_links_supported?: boolean;
21516
- /**
21517
- * Filter by limit-based offerings
22210
+ * Filter by attached state
21518
22211
  */
21519
- limit_based?: boolean;
21520
- /**
21521
- * Filter by exact number of limit-based components
21522
- */
21523
- limit_component_count?: number;
21524
- /**
21525
- * Modified after
21526
- */
21527
- modified?: string;
21528
- /**
21529
- * Name
21530
- */
21531
- name?: string;
21532
- /**
21533
- * Name (exact)
21534
- */
21535
- name_exact?: string;
21536
- /**
21537
- * Ordering
21538
- *
21539
- *
21540
- */
21541
- o?: Array<'-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type'>;
21542
- offering?: string;
21543
- /**
21544
- * Offering billable
21545
- */
21546
- offering_billable?: boolean;
21547
- /**
21548
- * Offering shared
21549
- */
21550
- offering_shared?: boolean;
21551
- /**
21552
- * Multiple values may be separated by commas.
21553
- */
21554
- offering_slug?: Array<string>;
21555
- /**
21556
- * Offering type
21557
- */
21558
- offering_type?: string;
21559
- /**
21560
- * Multiple values may be separated by commas.
21561
- */
21562
- offering_uuid?: Array<string>;
21563
- /**
21564
- * Filter resources with only limit-based components
21565
- */
21566
- only_limit_based?: boolean;
21567
- /**
21568
- * Filter resources with only usage-based components
21569
- */
21570
- only_usage_based?: boolean;
21571
- /**
21572
- * Order state
21573
- *
21574
- *
21575
- */
21576
- order_state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
21577
- /**
21578
- * A page number within the paginated result set.
21579
- */
21580
- page?: number;
21581
- /**
21582
- * Number of results to return per page.
21583
- */
21584
- page_size?: number;
21585
- parent_offering_uuid?: string;
21586
- /**
21587
- * Paused
21588
- */
21589
- paused?: boolean;
21590
- /**
21591
- * Plan UUID
21592
- */
21593
- plan_uuid?: string;
21594
- /**
21595
- * Project name
21596
- */
21597
- project_name?: string;
21598
- /**
21599
- * Project UUID
21600
- */
21601
- project_uuid?: string;
21602
- /**
21603
- * Provider UUID
21604
- */
21605
- provider_uuid?: string;
21606
- /**
21607
- * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
21608
- */
21609
- query?: string;
21610
- /**
21611
- * Restrict member access
21612
- */
21613
- restrict_member_access?: boolean;
21614
- /**
21615
- * Runtime state
21616
- */
21617
- runtime_state?: string;
21618
- /**
21619
- * Service manager UUID
21620
- */
21621
- service_manager_uuid?: string;
21622
- /**
21623
- * Resource state
21624
- *
21625
- *
21626
- */
21627
- state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
21628
- /**
21629
- * Filter by usage-based offerings
21630
- */
21631
- usage_based?: boolean;
21632
- /**
21633
- * Include only resources visible to service providers
21634
- */
21635
- visible_to_providers?: boolean;
21636
- /**
21637
- * Visible to username
21638
- */
21639
- visible_to_username?: string;
21640
- };
21641
- url: '/api/booking-resources/';
21642
- };
21643
- export type BookingResourcesListResponses = {
21644
- 200: Array<BookingResource>;
21645
- };
21646
- export type BookingResourcesListResponse = BookingResourcesListResponses[keyof BookingResourcesListResponses];
21647
- export type BookingResourcesCountData = {
21648
- body?: never;
21649
- path?: never;
21650
- query?: {
21651
- /**
21652
- * Backend ID
21653
- */
21654
- backend_id?: string;
21655
- /**
21656
- * Category UUID
21657
- */
21658
- category_uuid?: string;
21659
- /**
21660
- * Filter by exact number of components
21661
- */
21662
- component_count?: number;
21663
- connected_customer_uuid?: string;
21664
- /**
21665
- * Created after
21666
- */
21667
- created?: string;
21668
- /**
21669
- * Customer URL
21670
- */
21671
- customer?: string;
21672
- /**
21673
- * Customer UUID
21674
- */
21675
- customer_uuid?: string;
21676
- /**
21677
- * Downscaled
21678
- */
21679
- downscaled?: boolean;
21680
- /**
21681
- * Has termination date
21682
- */
21683
- has_terminate_date?: boolean;
22212
+ is_attached?: boolean;
22213
+ /**
22214
+ * LEXIS links supported
22215
+ */
22216
+ lexis_links_supported?: boolean;
22217
+ /**
22218
+ * Filter by limit-based offerings
22219
+ */
22220
+ limit_based?: boolean;
22221
+ /**
22222
+ * Filter by exact number of limit-based components
22223
+ */
22224
+ limit_component_count?: number;
22225
+ /**
22226
+ * Modified after
22227
+ */
22228
+ modified?: string;
22229
+ /**
22230
+ * Name
22231
+ */
22232
+ name?: string;
22233
+ /**
22234
+ * Name (exact)
22235
+ */
22236
+ name_exact?: string;
22237
+ /**
22238
+ * Ordering
22239
+ *
22240
+ *
22241
+ */
22242
+ o?: Array<'-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type'>;
22243
+ offering?: string;
22244
+ /**
22245
+ * Offering billable
22246
+ */
22247
+ offering_billable?: boolean;
22248
+ /**
22249
+ * Offering shared
22250
+ */
22251
+ offering_shared?: boolean;
22252
+ /**
22253
+ * Multiple values may be separated by commas.
22254
+ */
22255
+ offering_slug?: Array<string>;
22256
+ /**
22257
+ * Offering type
22258
+ */
22259
+ offering_type?: string;
22260
+ /**
22261
+ * Multiple values may be separated by commas.
22262
+ */
22263
+ offering_uuid?: Array<string>;
22264
+ /**
22265
+ * Filter resources with only limit-based components
22266
+ */
22267
+ only_limit_based?: boolean;
22268
+ /**
22269
+ * Filter resources with only usage-based components
22270
+ */
22271
+ only_usage_based?: boolean;
22272
+ /**
22273
+ * Order state
22274
+ *
22275
+ *
22276
+ */
22277
+ order_state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
22278
+ /**
22279
+ * A page number within the paginated result set.
22280
+ */
22281
+ page?: number;
22282
+ /**
22283
+ * Number of results to return per page.
22284
+ */
22285
+ page_size?: number;
22286
+ parent_offering_uuid?: string;
22287
+ /**
22288
+ * Paused
22289
+ */
22290
+ paused?: boolean;
22291
+ /**
22292
+ * Plan UUID
22293
+ */
22294
+ plan_uuid?: string;
22295
+ /**
22296
+ * Project name
22297
+ */
22298
+ project_name?: string;
22299
+ /**
22300
+ * Project UUID
22301
+ */
22302
+ project_uuid?: string;
22303
+ /**
22304
+ * Provider UUID
22305
+ */
22306
+ provider_uuid?: string;
22307
+ /**
22308
+ * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
22309
+ */
22310
+ query?: string;
22311
+ /**
22312
+ * Restrict member access
22313
+ */
22314
+ restrict_member_access?: boolean;
22315
+ /**
22316
+ * Runtime state
22317
+ */
22318
+ runtime_state?: string;
22319
+ /**
22320
+ * Service manager UUID
22321
+ */
22322
+ service_manager_uuid?: string;
22323
+ /**
22324
+ * Resource state
22325
+ *
22326
+ *
22327
+ */
22328
+ state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
22329
+ /**
22330
+ * Filter by usage-based offerings
22331
+ */
22332
+ usage_based?: boolean;
22333
+ /**
22334
+ * Include only resources visible to service providers
22335
+ */
22336
+ visible_to_providers?: boolean;
22337
+ /**
22338
+ * Visible to username
22339
+ */
22340
+ visible_to_username?: string;
22341
+ };
22342
+ url: '/api/booking-resources/';
22343
+ };
22344
+ export type BookingResourcesListResponses = {
22345
+ 200: Array<BookingResource>;
22346
+ };
22347
+ export type BookingResourcesListResponse = BookingResourcesListResponses[keyof BookingResourcesListResponses];
22348
+ export type BookingResourcesCountData = {
22349
+ body?: never;
22350
+ path?: never;
22351
+ query?: {
22352
+ /**
22353
+ * Backend ID
22354
+ */
22355
+ backend_id?: string;
22356
+ /**
22357
+ * Category UUID
22358
+ */
22359
+ category_uuid?: string;
22360
+ /**
22361
+ * Filter by exact number of components
22362
+ */
22363
+ component_count?: number;
22364
+ connected_customer_uuid?: string;
22365
+ /**
22366
+ * Created after
22367
+ */
22368
+ created?: string;
22369
+ /**
22370
+ * Customer URL
22371
+ */
22372
+ customer?: string;
22373
+ /**
22374
+ * Customer UUID
22375
+ */
22376
+ customer_uuid?: string;
22377
+ /**
22378
+ * Downscaled
22379
+ */
22380
+ downscaled?: boolean;
22381
+ /**
22382
+ * Has termination date
22383
+ */
22384
+ has_terminate_date?: boolean;
22385
+ /**
22386
+ * Filter by attached state
22387
+ */
22388
+ is_attached?: boolean;
21684
22389
  /**
21685
22390
  * LEXIS links supported
21686
22391
  */
@@ -22554,9 +23259,7 @@ export type CeleryStatsRetrieveData = {
22554
23259
  url: '/api/celery-stats/';
22555
23260
  };
22556
23261
  export type CeleryStatsRetrieveResponses = {
22557
- 200: {
22558
- [key: string]: unknown;
22559
- };
23262
+ 200: CeleryStatsResponse;
22560
23263
  };
22561
23264
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
22562
23265
  export type ChatInvokeData = {
@@ -22975,6 +23678,10 @@ export type ChecklistsAdminQuestionsListData = {
22975
23678
  */
22976
23679
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
22977
23680
  checklist_uuid?: string;
23681
+ /**
23682
+ * Filter questions that have onboarding metadata mapping
23683
+ */
23684
+ has_onboarding_mapping?: boolean;
22978
23685
  /**
22979
23686
  * A page number within the paginated result set.
22980
23687
  */
@@ -23001,6 +23708,10 @@ export type ChecklistsAdminQuestionsCountData = {
23001
23708
  */
23002
23709
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
23003
23710
  checklist_uuid?: string;
23711
+ /**
23712
+ * Filter questions that have onboarding metadata mapping
23713
+ */
23714
+ has_onboarding_mapping?: boolean;
23004
23715
  /**
23005
23716
  * A page number within the paginated result set.
23006
23717
  */
@@ -23651,7 +24362,7 @@ export type CustomersListData = {
23651
24362
  * Contact details
23652
24363
  */
23653
24364
  contact_details?: string;
23654
- 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'>;
24365
+ 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'>;
23655
24366
  /**
23656
24367
  * Name
23657
24368
  */
@@ -23977,7 +24688,7 @@ export type CustomersRetrieveData = {
23977
24688
  uuid: string;
23978
24689
  };
23979
24690
  query?: {
23980
- 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'>;
24691
+ 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'>;
23981
24692
  };
23982
24693
  url: '/api/customers/{uuid}/';
23983
24694
  };
@@ -29537,6 +30248,109 @@ export type MarketplaceCustomerServiceAccountsRotateApiKeyResponses = {
29537
30248
  200: CustomerServiceAccount;
29538
30249
  };
29539
30250
  export type MarketplaceCustomerServiceAccountsRotateApiKeyResponse = MarketplaceCustomerServiceAccountsRotateApiKeyResponses[keyof MarketplaceCustomerServiceAccountsRotateApiKeyResponses];
30251
+ export type MarketplaceDemoPresetsInfoRetrieveData = {
30252
+ body?: never;
30253
+ path: {
30254
+ /**
30255
+ * Name of the preset
30256
+ */
30257
+ name: string;
30258
+ };
30259
+ query?: never;
30260
+ url: '/api/marketplace-demo-presets/info/{name}/';
30261
+ };
30262
+ export type MarketplaceDemoPresetsInfoRetrieveErrors = {
30263
+ /**
30264
+ * No response body
30265
+ */
30266
+ 404: unknown;
30267
+ };
30268
+ export type MarketplaceDemoPresetsInfoRetrieveResponses = {
30269
+ 200: DemoPreset;
30270
+ };
30271
+ export type MarketplaceDemoPresetsInfoRetrieveResponse = MarketplaceDemoPresetsInfoRetrieveResponses[keyof MarketplaceDemoPresetsInfoRetrieveResponses];
30272
+ export type MarketplaceDemoPresetsInfoCountData = {
30273
+ body?: never;
30274
+ path: {
30275
+ /**
30276
+ * Name of the preset
30277
+ */
30278
+ name: string;
30279
+ };
30280
+ query?: never;
30281
+ url: '/api/marketplace-demo-presets/info/{name}/';
30282
+ };
30283
+ export type MarketplaceDemoPresetsInfoCountResponses = {
30284
+ /**
30285
+ * No response body
30286
+ */
30287
+ 200: unknown;
30288
+ };
30289
+ export type MarketplaceDemoPresetsListListData = {
30290
+ body?: never;
30291
+ path?: never;
30292
+ query?: {
30293
+ /**
30294
+ * A page number within the paginated result set.
30295
+ */
30296
+ page?: number;
30297
+ /**
30298
+ * Number of results to return per page.
30299
+ */
30300
+ page_size?: number;
30301
+ };
30302
+ url: '/api/marketplace-demo-presets/list/';
30303
+ };
30304
+ export type MarketplaceDemoPresetsListListResponses = {
30305
+ 200: Array<DemoPreset>;
30306
+ };
30307
+ export type MarketplaceDemoPresetsListListResponse = MarketplaceDemoPresetsListListResponses[keyof MarketplaceDemoPresetsListListResponses];
30308
+ export type MarketplaceDemoPresetsListCountData = {
30309
+ body?: never;
30310
+ path?: never;
30311
+ query?: {
30312
+ /**
30313
+ * A page number within the paginated result set.
30314
+ */
30315
+ page?: number;
30316
+ /**
30317
+ * Number of results to return per page.
30318
+ */
30319
+ page_size?: number;
30320
+ };
30321
+ url: '/api/marketplace-demo-presets/list/';
30322
+ };
30323
+ export type MarketplaceDemoPresetsListCountResponses = {
30324
+ /**
30325
+ * No response body
30326
+ */
30327
+ 200: unknown;
30328
+ };
30329
+ export type MarketplaceDemoPresetsLoadData = {
30330
+ body?: DemoPresetLoadRequestRequest;
30331
+ path: {
30332
+ /**
30333
+ * Name of the preset to load
30334
+ */
30335
+ name: string;
30336
+ };
30337
+ query?: never;
30338
+ url: '/api/marketplace-demo-presets/load/{name}/';
30339
+ };
30340
+ export type MarketplaceDemoPresetsLoadErrors = {
30341
+ /**
30342
+ * No response body
30343
+ */
30344
+ 400: unknown;
30345
+ /**
30346
+ * No response body
30347
+ */
30348
+ 404: unknown;
30349
+ };
30350
+ export type MarketplaceDemoPresetsLoadResponses = {
30351
+ 200: DemoPresetLoadResponse;
30352
+ };
30353
+ export type MarketplaceDemoPresetsLoadResponse = MarketplaceDemoPresetsLoadResponses[keyof MarketplaceDemoPresetsLoadResponses];
29540
30354
  export type MarketplaceGlobalCategoriesRetrieveData = {
29541
30355
  body?: never;
29542
30356
  path?: never;
@@ -31008,7 +31822,12 @@ export type MarketplaceOfferingUsersChecklistRetrieveData = {
31008
31822
  path: {
31009
31823
  uuid: string;
31010
31824
  };
31011
- query?: never;
31825
+ query?: {
31826
+ /**
31827
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
31828
+ */
31829
+ include_all?: boolean;
31830
+ };
31012
31831
  url: '/api/marketplace-offering-users/{uuid}/checklist/';
31013
31832
  };
31014
31833
  export type MarketplaceOfferingUsersChecklistRetrieveErrors = {
@@ -31621,7 +32440,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
31621
32440
  };
31622
32441
  export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
31623
32442
  export type MarketplaceOrdersRejectByConsumerData = {
31624
- body?: never;
32443
+ body?: OrderErrorDetailsRequest;
31625
32444
  path: {
31626
32445
  uuid: string;
31627
32446
  };
@@ -31677,7 +32496,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
31677
32496
  200: unknown;
31678
32497
  };
31679
32498
  export type MarketplaceOrdersSetStateErredData = {
31680
- body?: OrderSetStateErredRequest;
32499
+ body?: OrderErrorDetailsRequest;
31681
32500
  path: {
31682
32501
  uuid: string;
31683
32502
  };
@@ -33707,7 +34526,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
33707
34526
  uuid: string;
33708
34527
  };
33709
34528
  query?: {
33710
- 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'>;
34529
+ 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'>;
33711
34530
  /**
33712
34531
  * A page number within the paginated result set.
33713
34532
  */
@@ -34881,6 +35700,10 @@ export type MarketplaceProviderResourcesListData = {
34881
35700
  * Has termination date
34882
35701
  */
34883
35702
  has_terminate_date?: boolean;
35703
+ /**
35704
+ * Filter by attached state
35705
+ */
35706
+ is_attached?: boolean;
34884
35707
  /**
34885
35708
  * LEXIS links supported
34886
35709
  */
@@ -35052,6 +35875,10 @@ export type MarketplaceProviderResourcesCountData = {
35052
35875
  * Has termination date
35053
35876
  */
35054
35877
  has_terminate_date?: boolean;
35878
+ /**
35879
+ * Filter by attached state
35880
+ */
35881
+ is_attached?: boolean;
35055
35882
  /**
35056
35883
  * LEXIS links supported
35057
35884
  */
@@ -36262,6 +37089,10 @@ export type MarketplaceResourcesListData = {
36262
37089
  * Has termination date
36263
37090
  */
36264
37091
  has_terminate_date?: boolean;
37092
+ /**
37093
+ * Filter by attached state
37094
+ */
37095
+ is_attached?: boolean;
36265
37096
  /**
36266
37097
  * LEXIS links supported
36267
37098
  */
@@ -36433,6 +37264,10 @@ export type MarketplaceResourcesCountData = {
36433
37264
  * Has termination date
36434
37265
  */
36435
37266
  has_terminate_date?: boolean;
37267
+ /**
37268
+ * Filter by attached state
37269
+ */
37270
+ is_attached?: boolean;
36436
37271
  /**
36437
37272
  * LEXIS links supported
36438
37273
  */
@@ -38249,7 +39084,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
38249
39084
  * Description
38250
39085
  */
38251
39086
  description?: string;
38252
- 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'>;
39087
+ 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'>;
38253
39088
  /**
38254
39089
  * Is removed
38255
39090
  */
@@ -40573,6 +41408,166 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
40573
41408
  */
40574
41409
  200: unknown;
40575
41410
  };
41411
+ export type MarketplaceStatsUserAffiliationCountListData = {
41412
+ body?: never;
41413
+ path?: never;
41414
+ query?: {
41415
+ /**
41416
+ * A page number within the paginated result set.
41417
+ */
41418
+ page?: number;
41419
+ /**
41420
+ * Number of results to return per page.
41421
+ */
41422
+ page_size?: number;
41423
+ };
41424
+ url: '/api/marketplace-stats/user_affiliation_count/';
41425
+ };
41426
+ export type MarketplaceStatsUserAffiliationCountListResponses = {
41427
+ 200: Array<UserAffiliationCount>;
41428
+ };
41429
+ export type MarketplaceStatsUserAffiliationCountListResponse = MarketplaceStatsUserAffiliationCountListResponses[keyof MarketplaceStatsUserAffiliationCountListResponses];
41430
+ export type MarketplaceStatsUserAffiliationCountCountData = {
41431
+ body?: never;
41432
+ path?: never;
41433
+ query?: {
41434
+ /**
41435
+ * A page number within the paginated result set.
41436
+ */
41437
+ page?: number;
41438
+ /**
41439
+ * Number of results to return per page.
41440
+ */
41441
+ page_size?: number;
41442
+ };
41443
+ url: '/api/marketplace-stats/user_affiliation_count/';
41444
+ };
41445
+ export type MarketplaceStatsUserAffiliationCountCountResponses = {
41446
+ /**
41447
+ * No response body
41448
+ */
41449
+ 200: unknown;
41450
+ };
41451
+ export type MarketplaceStatsUserAuthMethodCountListData = {
41452
+ body?: never;
41453
+ path?: never;
41454
+ query?: {
41455
+ /**
41456
+ * A page number within the paginated result set.
41457
+ */
41458
+ page?: number;
41459
+ /**
41460
+ * Number of results to return per page.
41461
+ */
41462
+ page_size?: number;
41463
+ };
41464
+ url: '/api/marketplace-stats/user_auth_method_count/';
41465
+ };
41466
+ export type MarketplaceStatsUserAuthMethodCountListResponses = {
41467
+ 200: Array<UserAuthMethodCount>;
41468
+ };
41469
+ export type MarketplaceStatsUserAuthMethodCountListResponse = MarketplaceStatsUserAuthMethodCountListResponses[keyof MarketplaceStatsUserAuthMethodCountListResponses];
41470
+ export type MarketplaceStatsUserAuthMethodCountCountData = {
41471
+ body?: never;
41472
+ path?: never;
41473
+ query?: {
41474
+ /**
41475
+ * A page number within the paginated result set.
41476
+ */
41477
+ page?: number;
41478
+ /**
41479
+ * Number of results to return per page.
41480
+ */
41481
+ page_size?: number;
41482
+ };
41483
+ url: '/api/marketplace-stats/user_auth_method_count/';
41484
+ };
41485
+ export type MarketplaceStatsUserAuthMethodCountCountResponses = {
41486
+ /**
41487
+ * No response body
41488
+ */
41489
+ 200: unknown;
41490
+ };
41491
+ export type MarketplaceStatsUserIdentitySourceCountListData = {
41492
+ body?: never;
41493
+ path?: never;
41494
+ query?: {
41495
+ /**
41496
+ * A page number within the paginated result set.
41497
+ */
41498
+ page?: number;
41499
+ /**
41500
+ * Number of results to return per page.
41501
+ */
41502
+ page_size?: number;
41503
+ };
41504
+ url: '/api/marketplace-stats/user_identity_source_count/';
41505
+ };
41506
+ export type MarketplaceStatsUserIdentitySourceCountListResponses = {
41507
+ 200: Array<UserIdentitySourceCount>;
41508
+ };
41509
+ export type MarketplaceStatsUserIdentitySourceCountListResponse = MarketplaceStatsUserIdentitySourceCountListResponses[keyof MarketplaceStatsUserIdentitySourceCountListResponses];
41510
+ export type MarketplaceStatsUserIdentitySourceCountCountData = {
41511
+ body?: never;
41512
+ path?: never;
41513
+ query?: {
41514
+ /**
41515
+ * A page number within the paginated result set.
41516
+ */
41517
+ page?: number;
41518
+ /**
41519
+ * Number of results to return per page.
41520
+ */
41521
+ page_size?: number;
41522
+ };
41523
+ url: '/api/marketplace-stats/user_identity_source_count/';
41524
+ };
41525
+ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
41526
+ /**
41527
+ * No response body
41528
+ */
41529
+ 200: unknown;
41530
+ };
41531
+ export type MarketplaceStatsUserOrganizationCountListData = {
41532
+ body?: never;
41533
+ path?: never;
41534
+ query?: {
41535
+ /**
41536
+ * A page number within the paginated result set.
41537
+ */
41538
+ page?: number;
41539
+ /**
41540
+ * Number of results to return per page.
41541
+ */
41542
+ page_size?: number;
41543
+ };
41544
+ url: '/api/marketplace-stats/user_organization_count/';
41545
+ };
41546
+ export type MarketplaceStatsUserOrganizationCountListResponses = {
41547
+ 200: Array<UserOrganizationCount>;
41548
+ };
41549
+ export type MarketplaceStatsUserOrganizationCountListResponse = MarketplaceStatsUserOrganizationCountListResponses[keyof MarketplaceStatsUserOrganizationCountListResponses];
41550
+ export type MarketplaceStatsUserOrganizationCountCountData = {
41551
+ body?: never;
41552
+ path?: never;
41553
+ query?: {
41554
+ /**
41555
+ * A page number within the paginated result set.
41556
+ */
41557
+ page?: number;
41558
+ /**
41559
+ * Number of results to return per page.
41560
+ */
41561
+ page_size?: number;
41562
+ };
41563
+ url: '/api/marketplace-stats/user_organization_count/';
41564
+ };
41565
+ export type MarketplaceStatsUserOrganizationCountCountResponses = {
41566
+ /**
41567
+ * No response body
41568
+ */
41569
+ 200: unknown;
41570
+ };
40576
41571
  export type MarketplaceUserOfferingConsentsListData = {
40577
41572
  body?: never;
40578
41573
  path?: never;
@@ -41633,7 +42628,12 @@ export type OnboardingVerificationsChecklistRetrieveData = {
41633
42628
  path: {
41634
42629
  uuid: string;
41635
42630
  };
41636
- query?: never;
42631
+ query?: {
42632
+ /**
42633
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
42634
+ */
42635
+ include_all?: boolean;
42636
+ };
41637
42637
  url: '/api/onboarding-verifications/{uuid}/checklist/';
41638
42638
  };
41639
42639
  export type OnboardingVerificationsChecklistRetrieveErrors = {
@@ -43053,7 +44053,7 @@ export type OpenportalUnmanagedProjectsListData = {
43053
44053
  * Description
43054
44054
  */
43055
44055
  description?: string;
43056
- 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'>;
44056
+ 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'>;
43057
44057
  /**
43058
44058
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
43059
44059
  */
@@ -43226,7 +44226,7 @@ export type OpenportalUnmanagedProjectsRetrieveData = {
43226
44226
  uuid: string;
43227
44227
  };
43228
44228
  query?: {
43229
- 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'>;
44229
+ 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'>;
43230
44230
  };
43231
44231
  url: '/api/openportal-unmanaged-projects/{uuid}/';
43232
44232
  };
@@ -43281,7 +44281,12 @@ export type OpenportalUnmanagedProjectsChecklistRetrieveData = {
43281
44281
  path: {
43282
44282
  uuid: string;
43283
44283
  };
43284
- query?: never;
44284
+ query?: {
44285
+ /**
44286
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
44287
+ */
44288
+ include_all?: boolean;
44289
+ };
43285
44290
  url: '/api/openportal-unmanaged-projects/{uuid}/checklist/';
43286
44291
  };
43287
44292
  export type OpenportalUnmanagedProjectsChecklistRetrieveErrors = {
@@ -47916,7 +48921,7 @@ export type OpenstackTenantsListData = {
47916
48921
  * External IP
47917
48922
  */
47918
48923
  external_ip?: string;
47919
- 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'>;
48924
+ 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_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
47920
48925
  /**
47921
48926
  * Name
47922
48927
  */
@@ -48071,7 +49076,7 @@ export type OpenstackTenantsRetrieveData = {
48071
49076
  uuid: string;
48072
49077
  };
48073
49078
  query?: {
48074
- 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'>;
49079
+ 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_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
48075
49080
  };
48076
49081
  url: '/api/openstack-tenants/{uuid}/';
48077
49082
  };
@@ -49895,7 +50900,7 @@ export type ProjectsListData = {
49895
50900
  * Description
49896
50901
  */
49897
50902
  description?: string;
49898
- 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'>;
50903
+ 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'>;
49899
50904
  /**
49900
50905
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
49901
50906
  */
@@ -50144,7 +51149,7 @@ export type ProjectsRetrieveData = {
50144
51149
  uuid: string;
50145
51150
  };
50146
51151
  query?: {
50147
- 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'>;
51152
+ 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'>;
50148
51153
  };
50149
51154
  url: '/api/projects/{uuid}/';
50150
51155
  };
@@ -50199,7 +51204,12 @@ export type ProjectsChecklistRetrieveData = {
50199
51204
  path: {
50200
51205
  uuid: string;
50201
51206
  };
50202
- query?: never;
51207
+ query?: {
51208
+ /**
51209
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51210
+ */
51211
+ include_all?: boolean;
51212
+ };
50203
51213
  url: '/api/projects/{uuid}/checklist/';
50204
51214
  };
50205
51215
  export type ProjectsChecklistRetrieveErrors = {
@@ -50816,7 +51826,12 @@ export type ProposalProposalsChecklistRetrieveData = {
50816
51826
  path: {
50817
51827
  uuid: string;
50818
51828
  };
50819
- query?: never;
51829
+ query?: {
51830
+ /**
51831
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51832
+ */
51833
+ include_all?: boolean;
51834
+ };
50820
51835
  url: '/api/proposal-proposals/{uuid}/checklist/';
50821
51836
  };
50822
51837
  export type ProposalProposalsChecklistRetrieveErrors = {
@@ -50913,6 +51928,20 @@ export type ProposalProposalsDeleteUserResponses = {
50913
51928
  */
50914
51929
  200: unknown;
50915
51930
  };
51931
+ export type ProposalProposalsDetachDocumentsData = {
51932
+ body: ProposalDetachDocumentsRequest;
51933
+ path: {
51934
+ uuid: string;
51935
+ };
51936
+ query?: never;
51937
+ url: '/api/proposal-proposals/{uuid}/detach_documents/';
51938
+ };
51939
+ export type ProposalProposalsDetachDocumentsResponses = {
51940
+ /**
51941
+ * No response body
51942
+ */
51943
+ 200: unknown;
51944
+ };
50916
51945
  export type ProposalProposalsListUsersListData = {
50917
51946
  body?: never;
50918
51947
  path: {
@@ -51187,7 +52216,7 @@ export type ProposalProtectedCallsListData = {
51187
52216
  customer?: string;
51188
52217
  customer_keyword?: string;
51189
52218
  customer_uuid?: string;
51190
- 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'>;
52219
+ 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'>;
51191
52220
  has_active_round?: boolean;
51192
52221
  name?: string;
51193
52222
  /**
@@ -51280,7 +52309,7 @@ export type ProposalProtectedCallsRetrieveData = {
51280
52309
  uuid: string;
51281
52310
  };
51282
52311
  query?: {
51283
- 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'>;
52312
+ 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'>;
51284
52313
  };
51285
52314
  url: '/api/proposal-protected-calls/{uuid}/';
51286
52315
  };
@@ -56983,6 +58012,197 @@ export type SupportPrioritiesRetrieveResponses = {
56983
58012
  200: Priority;
56984
58013
  };
56985
58014
  export type SupportPrioritiesRetrieveResponse = SupportPrioritiesRetrieveResponses[keyof SupportPrioritiesRetrieveResponses];
58015
+ export type SupportRequestTypesListData = {
58016
+ body?: never;
58017
+ path?: never;
58018
+ query?: {
58019
+ /**
58020
+ * A page number within the paginated result set.
58021
+ */
58022
+ page?: number;
58023
+ /**
58024
+ * Number of results to return per page.
58025
+ */
58026
+ page_size?: number;
58027
+ };
58028
+ url: '/api/support-request-types/';
58029
+ };
58030
+ export type SupportRequestTypesListResponses = {
58031
+ 200: Array<RequestType>;
58032
+ };
58033
+ export type SupportRequestTypesListResponse = SupportRequestTypesListResponses[keyof SupportRequestTypesListResponses];
58034
+ export type SupportRequestTypesCountData = {
58035
+ body?: never;
58036
+ path?: never;
58037
+ query?: {
58038
+ /**
58039
+ * A page number within the paginated result set.
58040
+ */
58041
+ page?: number;
58042
+ /**
58043
+ * Number of results to return per page.
58044
+ */
58045
+ page_size?: number;
58046
+ };
58047
+ url: '/api/support-request-types/';
58048
+ };
58049
+ export type SupportRequestTypesCountResponses = {
58050
+ /**
58051
+ * No response body
58052
+ */
58053
+ 200: unknown;
58054
+ };
58055
+ export type SupportRequestTypesAdminListData = {
58056
+ body?: never;
58057
+ path?: never;
58058
+ query?: {
58059
+ is_active?: boolean;
58060
+ name?: string;
58061
+ /**
58062
+ * A page number within the paginated result set.
58063
+ */
58064
+ page?: number;
58065
+ /**
58066
+ * Number of results to return per page.
58067
+ */
58068
+ page_size?: number;
58069
+ };
58070
+ url: '/api/support-request-types-admin/';
58071
+ };
58072
+ export type SupportRequestTypesAdminListResponses = {
58073
+ 200: Array<RequestTypeAdmin>;
58074
+ };
58075
+ export type SupportRequestTypesAdminListResponse = SupportRequestTypesAdminListResponses[keyof SupportRequestTypesAdminListResponses];
58076
+ export type SupportRequestTypesAdminCountData = {
58077
+ body?: never;
58078
+ path?: never;
58079
+ query?: {
58080
+ is_active?: boolean;
58081
+ name?: string;
58082
+ /**
58083
+ * A page number within the paginated result set.
58084
+ */
58085
+ page?: number;
58086
+ /**
58087
+ * Number of results to return per page.
58088
+ */
58089
+ page_size?: number;
58090
+ };
58091
+ url: '/api/support-request-types-admin/';
58092
+ };
58093
+ export type SupportRequestTypesAdminCountResponses = {
58094
+ /**
58095
+ * No response body
58096
+ */
58097
+ 200: unknown;
58098
+ };
58099
+ export type SupportRequestTypesAdminCreateData = {
58100
+ body: RequestTypeAdminRequest;
58101
+ path?: never;
58102
+ query?: never;
58103
+ url: '/api/support-request-types-admin/';
58104
+ };
58105
+ export type SupportRequestTypesAdminCreateResponses = {
58106
+ 201: RequestTypeAdmin;
58107
+ };
58108
+ export type SupportRequestTypesAdminCreateResponse = SupportRequestTypesAdminCreateResponses[keyof SupportRequestTypesAdminCreateResponses];
58109
+ export type SupportRequestTypesAdminDestroyData = {
58110
+ body?: never;
58111
+ path: {
58112
+ uuid: string;
58113
+ };
58114
+ query?: never;
58115
+ url: '/api/support-request-types-admin/{uuid}/';
58116
+ };
58117
+ export type SupportRequestTypesAdminDestroyResponses = {
58118
+ /**
58119
+ * No response body
58120
+ */
58121
+ 204: void;
58122
+ };
58123
+ export type SupportRequestTypesAdminDestroyResponse = SupportRequestTypesAdminDestroyResponses[keyof SupportRequestTypesAdminDestroyResponses];
58124
+ export type SupportRequestTypesAdminRetrieveData = {
58125
+ body?: never;
58126
+ path: {
58127
+ uuid: string;
58128
+ };
58129
+ query?: never;
58130
+ url: '/api/support-request-types-admin/{uuid}/';
58131
+ };
58132
+ export type SupportRequestTypesAdminRetrieveResponses = {
58133
+ 200: RequestTypeAdmin;
58134
+ };
58135
+ export type SupportRequestTypesAdminRetrieveResponse = SupportRequestTypesAdminRetrieveResponses[keyof SupportRequestTypesAdminRetrieveResponses];
58136
+ export type SupportRequestTypesAdminPartialUpdateData = {
58137
+ body?: PatchedRequestTypeAdminRequest;
58138
+ path: {
58139
+ uuid: string;
58140
+ };
58141
+ query?: never;
58142
+ url: '/api/support-request-types-admin/{uuid}/';
58143
+ };
58144
+ export type SupportRequestTypesAdminPartialUpdateResponses = {
58145
+ 200: RequestTypeAdmin;
58146
+ };
58147
+ export type SupportRequestTypesAdminPartialUpdateResponse = SupportRequestTypesAdminPartialUpdateResponses[keyof SupportRequestTypesAdminPartialUpdateResponses];
58148
+ export type SupportRequestTypesAdminUpdateData = {
58149
+ body: RequestTypeAdminRequest;
58150
+ path: {
58151
+ uuid: string;
58152
+ };
58153
+ query?: never;
58154
+ url: '/api/support-request-types-admin/{uuid}/';
58155
+ };
58156
+ export type SupportRequestTypesAdminUpdateResponses = {
58157
+ 200: RequestTypeAdmin;
58158
+ };
58159
+ export type SupportRequestTypesAdminUpdateResponse = SupportRequestTypesAdminUpdateResponses[keyof SupportRequestTypesAdminUpdateResponses];
58160
+ export type SupportRequestTypesAdminActivateData = {
58161
+ body: RequestTypeAdminRequest;
58162
+ path: {
58163
+ uuid: string;
58164
+ };
58165
+ query?: never;
58166
+ url: '/api/support-request-types-admin/{uuid}/activate/';
58167
+ };
58168
+ export type SupportRequestTypesAdminActivateResponses = {
58169
+ 200: RequestTypeAdmin;
58170
+ };
58171
+ export type SupportRequestTypesAdminActivateResponse = SupportRequestTypesAdminActivateResponses[keyof SupportRequestTypesAdminActivateResponses];
58172
+ export type SupportRequestTypesAdminDeactivateData = {
58173
+ body: RequestTypeAdminRequest;
58174
+ path: {
58175
+ uuid: string;
58176
+ };
58177
+ query?: never;
58178
+ url: '/api/support-request-types-admin/{uuid}/deactivate/';
58179
+ };
58180
+ export type SupportRequestTypesAdminDeactivateResponses = {
58181
+ 200: RequestTypeAdmin;
58182
+ };
58183
+ export type SupportRequestTypesAdminDeactivateResponse = SupportRequestTypesAdminDeactivateResponses[keyof SupportRequestTypesAdminDeactivateResponses];
58184
+ export type SupportRequestTypesAdminReorderData = {
58185
+ body: RequestTypeAdminRequest;
58186
+ path?: never;
58187
+ query?: never;
58188
+ url: '/api/support-request-types-admin/reorder/';
58189
+ };
58190
+ export type SupportRequestTypesAdminReorderResponses = {
58191
+ 200: RequestTypeAdmin;
58192
+ };
58193
+ export type SupportRequestTypesAdminReorderResponse = SupportRequestTypesAdminReorderResponses[keyof SupportRequestTypesAdminReorderResponses];
58194
+ export type SupportRequestTypesRetrieveData = {
58195
+ body?: never;
58196
+ path: {
58197
+ uuid: string;
58198
+ };
58199
+ query?: never;
58200
+ url: '/api/support-request-types/{uuid}/';
58201
+ };
58202
+ export type SupportRequestTypesRetrieveResponses = {
58203
+ 200: RequestType;
58204
+ };
58205
+ export type SupportRequestTypesRetrieveResponse = SupportRequestTypesRetrieveResponses[keyof SupportRequestTypesRetrieveResponses];
56986
58206
  export type SupportSmaxWebhookData = {
56987
58207
  body: SmaxWebHookReceiverRequest;
56988
58208
  path?: never;
@@ -57208,6 +58428,232 @@ export type SupportZammadWebhookResponses = {
57208
58428
  */
57209
58429
  200: unknown;
57210
58430
  };
58431
+ export type SupportSettingsAtlassianListData = {
58432
+ body?: never;
58433
+ path?: never;
58434
+ query?: {
58435
+ /**
58436
+ * A page number within the paginated result set.
58437
+ */
58438
+ page?: number;
58439
+ /**
58440
+ * Number of results to return per page.
58441
+ */
58442
+ page_size?: number;
58443
+ };
58444
+ url: '/api/support/settings/atlassian/';
58445
+ };
58446
+ export type SupportSettingsAtlassianListResponses = {
58447
+ /**
58448
+ * No response body
58449
+ */
58450
+ 200: unknown;
58451
+ };
58452
+ export type SupportSettingsAtlassianCreateData = {
58453
+ body?: never;
58454
+ path?: never;
58455
+ query?: never;
58456
+ url: '/api/support/settings/atlassian/';
58457
+ };
58458
+ export type SupportSettingsAtlassianCreateResponses = {
58459
+ /**
58460
+ * No response body
58461
+ */
58462
+ 201: unknown;
58463
+ };
58464
+ export type SupportSettingsAtlassianDestroyData = {
58465
+ body?: never;
58466
+ path: {
58467
+ /**
58468
+ * A unique integer value identifying this issue.
58469
+ */
58470
+ id: number;
58471
+ };
58472
+ query?: never;
58473
+ url: '/api/support/settings/atlassian/{id}/';
58474
+ };
58475
+ export type SupportSettingsAtlassianDestroyResponses = {
58476
+ /**
58477
+ * No response body
58478
+ */
58479
+ 204: void;
58480
+ };
58481
+ export type SupportSettingsAtlassianDestroyResponse = SupportSettingsAtlassianDestroyResponses[keyof SupportSettingsAtlassianDestroyResponses];
58482
+ export type SupportSettingsAtlassianRetrieveData = {
58483
+ body?: never;
58484
+ path: {
58485
+ /**
58486
+ * A unique integer value identifying this issue.
58487
+ */
58488
+ id: number;
58489
+ };
58490
+ query?: never;
58491
+ url: '/api/support/settings/atlassian/{id}/';
58492
+ };
58493
+ export type SupportSettingsAtlassianRetrieveResponses = {
58494
+ /**
58495
+ * No response body
58496
+ */
58497
+ 200: unknown;
58498
+ };
58499
+ export type SupportSettingsAtlassianPartialUpdateData = {
58500
+ body?: never;
58501
+ path: {
58502
+ /**
58503
+ * A unique integer value identifying this issue.
58504
+ */
58505
+ id: number;
58506
+ };
58507
+ query?: never;
58508
+ url: '/api/support/settings/atlassian/{id}/';
58509
+ };
58510
+ export type SupportSettingsAtlassianPartialUpdateResponses = {
58511
+ /**
58512
+ * No response body
58513
+ */
58514
+ 200: unknown;
58515
+ };
58516
+ export type SupportSettingsAtlassianUpdateData = {
58517
+ body?: never;
58518
+ path: {
58519
+ /**
58520
+ * A unique integer value identifying this issue.
58521
+ */
58522
+ id: number;
58523
+ };
58524
+ query?: never;
58525
+ url: '/api/support/settings/atlassian/{id}/';
58526
+ };
58527
+ export type SupportSettingsAtlassianUpdateResponses = {
58528
+ /**
58529
+ * No response body
58530
+ */
58531
+ 200: unknown;
58532
+ };
58533
+ export type SupportSettingsAtlassianCurrentSettingsRetrieveData = {
58534
+ body?: never;
58535
+ path?: never;
58536
+ query?: never;
58537
+ url: '/api/support/settings/atlassian/current_settings/';
58538
+ };
58539
+ export type SupportSettingsAtlassianCurrentSettingsRetrieveResponses = {
58540
+ /**
58541
+ * No response body
58542
+ */
58543
+ 200: unknown;
58544
+ };
58545
+ export type SupportSettingsAtlassianDiscoverCustomFieldsData = {
58546
+ body: DiscoverCustomFieldsRequestRequest;
58547
+ path?: never;
58548
+ query?: {
58549
+ /**
58550
+ * A page number within the paginated result set.
58551
+ */
58552
+ page?: number;
58553
+ /**
58554
+ * Number of results to return per page.
58555
+ */
58556
+ page_size?: number;
58557
+ };
58558
+ url: '/api/support/settings/atlassian/discover_custom_fields/';
58559
+ };
58560
+ export type SupportSettingsAtlassianDiscoverCustomFieldsResponses = {
58561
+ 200: Array<AtlassianCustomFieldResponse>;
58562
+ };
58563
+ export type SupportSettingsAtlassianDiscoverCustomFieldsResponse = SupportSettingsAtlassianDiscoverCustomFieldsResponses[keyof SupportSettingsAtlassianDiscoverCustomFieldsResponses];
58564
+ export type SupportSettingsAtlassianDiscoverPrioritiesData = {
58565
+ body: DiscoverPrioritiesRequestRequest;
58566
+ path?: never;
58567
+ query?: {
58568
+ /**
58569
+ * A page number within the paginated result set.
58570
+ */
58571
+ page?: number;
58572
+ /**
58573
+ * Number of results to return per page.
58574
+ */
58575
+ page_size?: number;
58576
+ };
58577
+ url: '/api/support/settings/atlassian/discover_priorities/';
58578
+ };
58579
+ export type SupportSettingsAtlassianDiscoverPrioritiesResponses = {
58580
+ 200: Array<AtlassianPriorityResponse>;
58581
+ };
58582
+ export type SupportSettingsAtlassianDiscoverPrioritiesResponse = SupportSettingsAtlassianDiscoverPrioritiesResponses[keyof SupportSettingsAtlassianDiscoverPrioritiesResponses];
58583
+ export type SupportSettingsAtlassianDiscoverProjectsData = {
58584
+ body: DiscoverProjectsRequestRequest;
58585
+ path?: never;
58586
+ query?: {
58587
+ /**
58588
+ * A page number within the paginated result set.
58589
+ */
58590
+ page?: number;
58591
+ /**
58592
+ * Number of results to return per page.
58593
+ */
58594
+ page_size?: number;
58595
+ };
58596
+ url: '/api/support/settings/atlassian/discover_projects/';
58597
+ };
58598
+ export type SupportSettingsAtlassianDiscoverProjectsResponses = {
58599
+ 200: Array<AtlassianProjectResponse>;
58600
+ };
58601
+ export type SupportSettingsAtlassianDiscoverProjectsResponse = SupportSettingsAtlassianDiscoverProjectsResponses[keyof SupportSettingsAtlassianDiscoverProjectsResponses];
58602
+ export type SupportSettingsAtlassianDiscoverRequestTypesData = {
58603
+ body: DiscoverRequestTypesRequestRequest;
58604
+ path?: never;
58605
+ query?: {
58606
+ /**
58607
+ * A page number within the paginated result set.
58608
+ */
58609
+ page?: number;
58610
+ /**
58611
+ * Number of results to return per page.
58612
+ */
58613
+ page_size?: number;
58614
+ };
58615
+ url: '/api/support/settings/atlassian/discover_request_types/';
58616
+ };
58617
+ export type SupportSettingsAtlassianDiscoverRequestTypesResponses = {
58618
+ 200: Array<AtlassianRequestTypeResponse>;
58619
+ };
58620
+ export type SupportSettingsAtlassianDiscoverRequestTypesResponse = SupportSettingsAtlassianDiscoverRequestTypesResponses[keyof SupportSettingsAtlassianDiscoverRequestTypesResponses];
58621
+ export type SupportSettingsAtlassianPreviewSettingsData = {
58622
+ body: AtlassianSettingsPreviewRequest;
58623
+ path?: never;
58624
+ query?: never;
58625
+ url: '/api/support/settings/atlassian/preview_settings/';
58626
+ };
58627
+ export type SupportSettingsAtlassianPreviewSettingsResponses = {
58628
+ /**
58629
+ * No response body
58630
+ */
58631
+ 200: unknown;
58632
+ };
58633
+ export type SupportSettingsAtlassianSaveSettingsData = {
58634
+ body: AtlassianSettingsSaveRequest;
58635
+ path?: never;
58636
+ query?: never;
58637
+ url: '/api/support/settings/atlassian/save_settings/';
58638
+ };
58639
+ export type SupportSettingsAtlassianSaveSettingsResponses = {
58640
+ /**
58641
+ * No response body
58642
+ */
58643
+ 200: unknown;
58644
+ };
58645
+ export type SupportSettingsAtlassianValidateCredentialsData = {
58646
+ body: AtlassianCredentialsRequest;
58647
+ path?: never;
58648
+ query?: never;
58649
+ url: '/api/support/settings/atlassian/validate_credentials/';
58650
+ };
58651
+ export type SupportSettingsAtlassianValidateCredentialsResponses = {
58652
+ /**
58653
+ * No response body
58654
+ */
58655
+ 200: unknown;
58656
+ };
57211
58657
  export type SyncIssuesRetrieveData = {
57212
58658
  body?: never;
57213
58659
  path?: never;
@@ -57526,6 +58972,10 @@ export type UserAgreementsListData = {
57526
58972
  path?: never;
57527
58973
  query?: {
57528
58974
  agreement_type?: 'PP' | 'TOS';
58975
+ /**
58976
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
58977
+ */
58978
+ language?: string;
57529
58979
  /**
57530
58980
  * A page number within the paginated result set.
57531
58981
  */
@@ -57546,6 +58996,10 @@ export type UserAgreementsCountData = {
57546
58996
  path?: never;
57547
58997
  query?: {
57548
58998
  agreement_type?: 'PP' | 'TOS';
58999
+ /**
59000
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
59001
+ */
59002
+ language?: string;
57549
59003
  /**
57550
59004
  * A page number within the paginated result set.
57551
59005
  */
@@ -57698,6 +59152,21 @@ export type UserGroupInvitationsCreateResponses = {
57698
59152
  201: GroupInvitation;
57699
59153
  };
57700
59154
  export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
59155
+ export type UserGroupInvitationsDestroyData = {
59156
+ body?: never;
59157
+ path: {
59158
+ uuid: string;
59159
+ };
59160
+ query?: never;
59161
+ url: '/api/user-group-invitations/{uuid}/';
59162
+ };
59163
+ export type UserGroupInvitationsDestroyResponses = {
59164
+ /**
59165
+ * No response body
59166
+ */
59167
+ 204: void;
59168
+ };
59169
+ export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
57701
59170
  export type UserGroupInvitationsRetrieveData = {
57702
59171
  body?: never;
57703
59172
  path: {