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

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.
@@ -1570,6 +1570,212 @@ export type CategorySerializerForForNestedFields = {
1570
1570
  export type CategorySerializerForForNestedFieldsRequest = {
1571
1571
  title: string;
1572
1572
  };
1573
+ export type CeleryBroker = {
1574
+ /**
1575
+ * Broker hostname
1576
+ */
1577
+ readonly hostname: string;
1578
+ /**
1579
+ * Broker user ID
1580
+ */
1581
+ readonly userid: string;
1582
+ /**
1583
+ * Virtual host
1584
+ */
1585
+ readonly virtual_host: string;
1586
+ /**
1587
+ * Broker port
1588
+ */
1589
+ readonly port: number;
1590
+ readonly insist: boolean;
1591
+ readonly ssl: boolean;
1592
+ /**
1593
+ * Transport protocol
1594
+ */
1595
+ readonly transport: string;
1596
+ /**
1597
+ * Connection timeout in seconds
1598
+ */
1599
+ readonly connect_timeout: number;
1600
+ /**
1601
+ * Additional transport options
1602
+ */
1603
+ readonly transport_options: {
1604
+ [key: string]: unknown;
1605
+ };
1606
+ /**
1607
+ * Authentication method
1608
+ */
1609
+ readonly login_method: string;
1610
+ readonly uri_prefix: string;
1611
+ /**
1612
+ * Heartbeat interval
1613
+ */
1614
+ readonly heartbeat: number;
1615
+ readonly failover_strategy: string;
1616
+ readonly alternates: Array<string>;
1617
+ };
1618
+ export type CeleryScheduledTask = {
1619
+ /**
1620
+ * Estimated time of arrival for the task
1621
+ */
1622
+ readonly eta: string;
1623
+ /**
1624
+ * Task priority level
1625
+ */
1626
+ readonly priority: number;
1627
+ /**
1628
+ * Task request details
1629
+ */
1630
+ request: CeleryTask;
1631
+ };
1632
+ export type CeleryStatsResponse = {
1633
+ /**
1634
+ * Currently executing tasks per worker. Keys are worker names, values are lists of active tasks.
1635
+ */
1636
+ readonly active: {
1637
+ [key: string]: Array<CeleryTask>;
1638
+ } | null;
1639
+ /**
1640
+ * Tasks scheduled for future execution per worker. Keys are worker names, values are lists of scheduled tasks with ETA.
1641
+ */
1642
+ readonly scheduled: {
1643
+ [key: string]: Array<CeleryScheduledTask>;
1644
+ } | null;
1645
+ /**
1646
+ * Tasks that have been received but not yet started per worker. Keys are worker names, values are lists of reserved tasks.
1647
+ */
1648
+ readonly reserved: {
1649
+ [key: string]: Array<CeleryTask>;
1650
+ } | null;
1651
+ /**
1652
+ * IDs of revoked (cancelled) tasks per worker. Keys are worker names, values are lists of task IDs.
1653
+ */
1654
+ readonly revoked: {
1655
+ [key: string]: Array<string>;
1656
+ } | null;
1657
+ /**
1658
+ * Query results for specific tasks. May be null if no query was performed.
1659
+ */
1660
+ readonly query_task: {
1661
+ [key: string]: unknown;
1662
+ } | null;
1663
+ /**
1664
+ * Detailed statistics per worker including uptime, pool info, and resource usage. Keys are worker names.
1665
+ */
1666
+ readonly stats: {
1667
+ [key: string]: CeleryWorkerStats;
1668
+ } | null;
1669
+ };
1670
+ export type CeleryTask = {
1671
+ /**
1672
+ * Unique task identifier
1673
+ */
1674
+ readonly id: string;
1675
+ /**
1676
+ * Name of the task
1677
+ */
1678
+ readonly name: string;
1679
+ /**
1680
+ * Positional arguments passed to the task
1681
+ */
1682
+ readonly args: Array<unknown>;
1683
+ /**
1684
+ * Keyword arguments passed to the task
1685
+ */
1686
+ readonly kwargs: {
1687
+ [key: string]: unknown;
1688
+ };
1689
+ /**
1690
+ * Task type
1691
+ */
1692
+ readonly type: string;
1693
+ /**
1694
+ * Worker hostname executing the task
1695
+ */
1696
+ readonly hostname: string;
1697
+ /**
1698
+ * Unix timestamp when task started
1699
+ */
1700
+ readonly time_start: number;
1701
+ /**
1702
+ * Whether task has been acknowledged
1703
+ */
1704
+ readonly acknowledged: boolean;
1705
+ /**
1706
+ * Message delivery information
1707
+ */
1708
+ readonly delivery_info: {
1709
+ [key: string]: unknown;
1710
+ };
1711
+ /**
1712
+ * Worker process ID
1713
+ */
1714
+ readonly worker_pid: number;
1715
+ };
1716
+ export type CeleryWorkerPool = {
1717
+ /**
1718
+ * Maximum number of concurrent processes
1719
+ */
1720
+ readonly max_concurrency: number;
1721
+ /**
1722
+ * List of worker process IDs
1723
+ */
1724
+ readonly processes: Array<number>;
1725
+ /**
1726
+ * Maximum tasks per child process
1727
+ */
1728
+ readonly max_tasks_per_child: number;
1729
+ readonly put_guarded_by_semaphore: boolean;
1730
+ /**
1731
+ * Timeout values
1732
+ */
1733
+ readonly timeouts: Array<number>;
1734
+ /**
1735
+ * Write statistics
1736
+ */
1737
+ readonly writes: {
1738
+ [key: string]: unknown;
1739
+ };
1740
+ };
1741
+ export type CeleryWorkerStats = {
1742
+ /**
1743
+ * Broker connection information
1744
+ */
1745
+ broker: CeleryBroker;
1746
+ /**
1747
+ * Logical clock value
1748
+ */
1749
+ readonly clock: string;
1750
+ /**
1751
+ * Worker uptime in seconds
1752
+ */
1753
+ readonly uptime: number;
1754
+ /**
1755
+ * Worker process ID
1756
+ */
1757
+ readonly pid: number;
1758
+ /**
1759
+ * Worker pool statistics
1760
+ */
1761
+ pool: CeleryWorkerPool;
1762
+ /**
1763
+ * Number of tasks prefetched
1764
+ */
1765
+ readonly prefetch_count: number;
1766
+ /**
1767
+ * Resource usage statistics
1768
+ */
1769
+ readonly rusage: {
1770
+ [key: string]: unknown;
1771
+ };
1772
+ /**
1773
+ * Total task counts by type
1774
+ */
1775
+ readonly total: {
1776
+ [key: string]: unknown;
1777
+ };
1778
+ };
1573
1779
  export type ChatRequestRequest = {
1574
1780
  /**
1575
1781
  * User input text for the chat model.
@@ -2030,6 +2236,14 @@ export type ConstanceSettings = {
2030
2236
  SIDEBAR_STYLE?: string;
2031
2237
  SITE_LOGO?: string | null;
2032
2238
  LOGIN_LOGO?: string | null;
2239
+ LOGIN_LOGO_MULTILINGUAL?: {
2240
+ [key: string]: string | null;
2241
+ };
2242
+ LOGIN_PAGE_LAYOUT?: string;
2243
+ LOGIN_PAGE_VIDEO_URL?: string;
2244
+ LOGIN_PAGE_STATS?: Array<unknown>;
2245
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
2246
+ LOGIN_PAGE_NEWS?: Array<unknown>;
2033
2247
  FAVICON?: string | null;
2034
2248
  OFFERING_LOGO_PLACEHOLDER?: string | null;
2035
2249
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2202,6 +2416,14 @@ export type ConstanceSettingsRequest = {
2202
2416
  SIDEBAR_STYLE?: string;
2203
2417
  SITE_LOGO?: (Blob | File) | null;
2204
2418
  LOGIN_LOGO?: (Blob | File) | null;
2419
+ LOGIN_LOGO_MULTILINGUAL?: {
2420
+ [key: string]: (Blob | File) | null;
2421
+ };
2422
+ LOGIN_PAGE_LAYOUT?: string;
2423
+ LOGIN_PAGE_VIDEO_URL?: string;
2424
+ LOGIN_PAGE_STATS?: Array<unknown>;
2425
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
2426
+ LOGIN_PAGE_NEWS?: Array<unknown>;
2205
2427
  FAVICON?: (Blob | File) | null;
2206
2428
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
2207
2429
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2610,6 +2832,12 @@ export type Customer = {
2610
2832
  * Number of extra days after project end date before resources are terminated
2611
2833
  */
2612
2834
  grace_period_days?: number | null;
2835
+ user_email_patterns?: unknown;
2836
+ user_affiliations?: unknown;
2837
+ /**
2838
+ * List of allowed identity sources (identity providers).
2839
+ */
2840
+ user_identity_sources?: unknown;
2613
2841
  name?: string;
2614
2842
  /**
2615
2843
  * URL-friendly identifier. Only editable by staff users.
@@ -2876,6 +3104,12 @@ export type CustomerRequest = {
2876
3104
  * Number of extra days after project end date before resources are terminated
2877
3105
  */
2878
3106
  grace_period_days?: number | null;
3107
+ user_email_patterns?: unknown;
3108
+ user_affiliations?: unknown;
3109
+ /**
3110
+ * List of allowed identity sources (identity providers).
3111
+ */
3112
+ user_identity_sources?: unknown;
2879
3113
  name: string;
2880
3114
  /**
2881
3115
  * URL-friendly identifier. Only editable by staff users.
@@ -2976,6 +3210,47 @@ export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
2976
3210
  export type DeleteAttachmentsRequest = {
2977
3211
  attachment_ids: Array<string>;
2978
3212
  };
3213
+ export type DemoPreset = {
3214
+ readonly name: string;
3215
+ readonly title: string;
3216
+ readonly description: string;
3217
+ readonly version: string;
3218
+ readonly entity_counts: {
3219
+ [key: string]: number;
3220
+ };
3221
+ readonly scenarios: Array<string>;
3222
+ };
3223
+ export type DemoPresetLoadRequestRequest = {
3224
+ /**
3225
+ * Preview changes without applying them
3226
+ */
3227
+ dry_run?: boolean;
3228
+ /**
3229
+ * Clean up existing data before loading the preset
3230
+ */
3231
+ cleanup_first?: boolean;
3232
+ /**
3233
+ * Skip user import/cleanup
3234
+ */
3235
+ skip_users?: boolean;
3236
+ /**
3237
+ * Skip role import/cleanup
3238
+ */
3239
+ skip_roles?: boolean;
3240
+ };
3241
+ export type DemoPresetLoadResponse = {
3242
+ success: boolean;
3243
+ message: string;
3244
+ output?: string;
3245
+ users?: Array<DemoPresetUser>;
3246
+ };
3247
+ export type DemoPresetUser = {
3248
+ username: string;
3249
+ password: string;
3250
+ email?: string;
3251
+ is_staff?: boolean;
3252
+ is_support?: boolean;
3253
+ };
2979
3254
  export type DependencyLogicOperatorEnum = 'and' | 'or';
2980
3255
  export type DeploymentModeEnum = 'self_managed' | 'managed';
2981
3256
  export type DeprecatedNetworkRbacPolicy = {
@@ -3685,10 +3960,6 @@ export type GroupInvitation = {
3685
3960
  */
3686
3961
  role: string;
3687
3962
  readonly created: string;
3688
- /**
3689
- * Expiration date and time of the invitation
3690
- */
3691
- readonly expires: string;
3692
3963
  readonly is_active: boolean;
3693
3964
  /**
3694
3965
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -3698,6 +3969,10 @@ export type GroupInvitation = {
3698
3969
  * Create project and grant project permissions instead of customer permissions
3699
3970
  */
3700
3971
  auto_create_project?: boolean;
3972
+ /**
3973
+ * Automatically approve permission requests from users matching email patterns or affiliations
3974
+ */
3975
+ auto_approve?: boolean;
3701
3976
  /**
3702
3977
  * Template for project name. Supports {username}, {email}, {full_name} variables
3703
3978
  */
@@ -3708,6 +3983,10 @@ export type GroupInvitation = {
3708
3983
  project_role?: string | null;
3709
3984
  user_affiliations?: unknown;
3710
3985
  user_email_patterns?: unknown;
3986
+ /**
3987
+ * List of allowed identity sources (identity providers).
3988
+ */
3989
+ user_identity_sources?: unknown;
3711
3990
  /**
3712
3991
  * Image URL of the invitation scope (Customer or Project)
3713
3992
  */
@@ -3730,6 +4009,10 @@ export type GroupInvitationRequest = {
3730
4009
  * Create project and grant project permissions instead of customer permissions
3731
4010
  */
3732
4011
  auto_create_project?: boolean;
4012
+ /**
4013
+ * Automatically approve permission requests from users matching email patterns or affiliations
4014
+ */
4015
+ auto_approve?: boolean;
3733
4016
  /**
3734
4017
  * Template for project name. Supports {username}, {email}, {full_name} variables
3735
4018
  */
@@ -3740,6 +4023,10 @@ export type GroupInvitationRequest = {
3740
4023
  project_role?: string | null;
3741
4024
  user_affiliations?: unknown;
3742
4025
  user_email_patterns?: unknown;
4026
+ /**
4027
+ * List of allowed identity sources (identity providers).
4028
+ */
4029
+ user_identity_sources?: unknown;
3743
4030
  };
3744
4031
  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
4032
  export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
@@ -4348,6 +4635,10 @@ export type Issue = {
4348
4635
  readonly destroy_is_available: boolean;
4349
4636
  readonly add_comment_is_available: boolean;
4350
4637
  readonly add_attachment_is_available: boolean;
4638
+ /**
4639
+ * Internal processing log for debugging order lifecycle events. Visible only to staff.
4640
+ */
4641
+ readonly processing_log: unknown;
4351
4642
  };
4352
4643
  export type IssueReference = {
4353
4644
  readonly key?: string;
@@ -5181,7 +5472,7 @@ export type MergedPluginOptions = {
5181
5472
  */
5182
5473
  enable_display_of_order_actions_for_service_provider?: boolean;
5183
5474
  /**
5184
- * If set to False, an order requires manual provider approval
5475
+ * If set to False, all orders require manual provider approval, including for service provider owners and staff
5185
5476
  */
5186
5477
  auto_approve_marketplace_script?: boolean;
5187
5478
  /**
@@ -5419,7 +5710,7 @@ export type MergedPluginOptionsRequest = {
5419
5710
  */
5420
5711
  enable_display_of_order_actions_for_service_provider?: boolean;
5421
5712
  /**
5422
- * If set to False, an order requires manual provider approval
5713
+ * If set to False, all orders require manual provider approval, including for service provider owners and staff
5423
5714
  */
5424
5715
  auto_approve_marketplace_script?: boolean;
5425
5716
  /**
@@ -6786,6 +7077,10 @@ export type OfferingCost = {
6786
7077
  * UUID of the offering
6787
7078
  */
6788
7079
  offering_uuid: string;
7080
+ /**
7081
+ * Name of the offering
7082
+ */
7083
+ offering_name: string;
6789
7084
  /**
6790
7085
  * Total cost for the offering
6791
7086
  */
@@ -7824,6 +8119,7 @@ export type OnboardingVerification = {
7824
8119
  */
7825
8120
  legal_name?: string;
7826
8121
  status: OnboardingVerificationStatusEnum;
8122
+ readonly justifications: Array<OnboardingJustification>;
7827
8123
  /**
7828
8124
  * Method used for validation
7829
8125
  */
@@ -9677,7 +9973,7 @@ export type OrderDetails = {
9677
9973
  readonly order_subtype?: string | null;
9678
9974
  issue?: IssueReference | null;
9679
9975
  };
9680
- export type OrderSetStateErredRequest = {
9976
+ export type OrderErrorDetailsRequest = {
9681
9977
  error_message?: string;
9682
9978
  error_traceback?: string;
9683
9979
  };
@@ -9915,6 +10211,12 @@ export type PatchedCustomerRequest = {
9915
10211
  * Number of extra days after project end date before resources are terminated
9916
10212
  */
9917
10213
  grace_period_days?: number | null;
10214
+ user_email_patterns?: unknown;
10215
+ user_affiliations?: unknown;
10216
+ /**
10217
+ * List of allowed identity sources (identity providers).
10218
+ */
10219
+ user_identity_sources?: unknown;
9918
10220
  name?: string;
9919
10221
  /**
9920
10222
  * URL-friendly identifier. Only editable by staff users.
@@ -10577,6 +10879,12 @@ export type PatchedProjectRequest = {
10577
10879
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
10578
10880
  */
10579
10881
  grace_period_days?: number | null;
10882
+ user_email_patterns?: unknown;
10883
+ user_affiliations?: unknown;
10884
+ /**
10885
+ * List of allowed identity sources (identity providers).
10886
+ */
10887
+ user_identity_sources?: unknown;
10580
10888
  };
10581
10889
  export type PatchedProjectServiceAccountRequest = {
10582
10890
  username?: string;
@@ -10662,6 +10970,10 @@ export type PatchedProtectedCallRequest = {
10662
10970
  * Compliance checklist that proposals must complete before submission
10663
10971
  */
10664
10972
  compliance_checklist?: string | null;
10973
+ /**
10974
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
10975
+ */
10976
+ proposal_slug_template?: string | null;
10665
10977
  };
10666
10978
  export type PatchedProtectedRoundRequest = {
10667
10979
  start_time?: string;
@@ -10703,11 +11015,11 @@ export type PatchedQuestionAdminRequest = {
10703
11015
  question_type?: QuestionTypeEnum;
10704
11016
  order?: number;
10705
11017
  /**
10706
- * Minimum value allowed for NUMBER type questions
11018
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
10707
11019
  */
10708
11020
  min_value?: string | null;
10709
11021
  /**
10710
- * Maximum value allowed for NUMBER type questions
11022
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
10711
11023
  */
10712
11024
  max_value?: string | null;
10713
11025
  /**
@@ -11107,6 +11419,10 @@ export type PatchedTemplateRequest = {
11107
11419
  export type PatchedUserAgreementRequest = {
11108
11420
  content?: string;
11109
11421
  agreement_type?: AgreementTypeEnum;
11422
+ /**
11423
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
11424
+ */
11425
+ language?: string;
11110
11426
  };
11111
11427
  export type PatchedUserInfoRequest = {
11112
11428
  /**
@@ -11476,6 +11792,12 @@ export type Project = {
11476
11792
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11477
11793
  */
11478
11794
  grace_period_days?: number | null;
11795
+ user_email_patterns?: unknown;
11796
+ user_affiliations?: unknown;
11797
+ /**
11798
+ * List of allowed identity sources (identity providers).
11799
+ */
11800
+ user_identity_sources?: unknown;
11479
11801
  readonly project_credit?: number | null;
11480
11802
  readonly marketplace_resource_count?: {
11481
11803
  [key: string]: number;
@@ -11729,6 +12051,12 @@ export type ProjectRequest = {
11729
12051
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11730
12052
  */
11731
12053
  grace_period_days?: number | null;
12054
+ user_email_patterns?: unknown;
12055
+ user_affiliations?: unknown;
12056
+ /**
12057
+ * List of allowed identity sources (identity providers).
12058
+ */
12059
+ user_identity_sources?: unknown;
11732
12060
  };
11733
12061
  export type ProjectServiceAccount = {
11734
12062
  readonly url: string;
@@ -11943,7 +12271,11 @@ export type ProposalChecklistAnswerSubmitResponse = {
11943
12271
  detail: string;
11944
12272
  completion: ChecklistCompletionReviewer;
11945
12273
  };
12274
+ export type ProposalDetachDocumentsRequest = {
12275
+ documents: Array<string>;
12276
+ };
11946
12277
  export type ProposalDocumentation = {
12278
+ readonly uuid: string;
11947
12279
  /**
11948
12280
  * Upload supporting documentation in PDF format.
11949
12281
  */
@@ -12095,6 +12427,10 @@ export type ProtectedCall = {
12095
12427
  */
12096
12428
  compliance_checklist?: string | null;
12097
12429
  readonly compliance_checklist_name?: string;
12430
+ /**
12431
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12432
+ */
12433
+ proposal_slug_template?: string | null;
12098
12434
  };
12099
12435
  export type ProtectedCallRequest = {
12100
12436
  /**
@@ -12121,6 +12457,10 @@ export type ProtectedCallRequest = {
12121
12457
  * Compliance checklist that proposals must complete before submission
12122
12458
  */
12123
12459
  compliance_checklist?: string | null;
12460
+ /**
12461
+ * Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
12462
+ */
12463
+ proposal_slug_template?: string | null;
12124
12464
  };
12125
12465
  export type ProtectedProposalList = {
12126
12466
  readonly uuid: string;
@@ -12670,11 +13010,11 @@ export type Question = {
12670
13010
  question_type?: QuestionTypeEnum;
12671
13011
  order?: number;
12672
13012
  /**
12673
- * Minimum value allowed for NUMBER type questions
13013
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12674
13014
  */
12675
13015
  min_value?: string | null;
12676
13016
  /**
12677
- * Maximum value allowed for NUMBER type questions
13017
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12678
13018
  */
12679
13019
  max_value?: string | null;
12680
13020
  /**
@@ -12734,11 +13074,11 @@ export type QuestionAdmin = {
12734
13074
  question_type?: QuestionTypeEnum;
12735
13075
  order?: number;
12736
13076
  /**
12737
- * Minimum value allowed for NUMBER type questions
13077
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12738
13078
  */
12739
13079
  min_value?: string | null;
12740
13080
  /**
12741
- * Maximum value allowed for NUMBER type questions
13081
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12742
13082
  */
12743
13083
  max_value?: string | null;
12744
13084
  /**
@@ -12800,11 +13140,11 @@ export type QuestionAdminRequest = {
12800
13140
  question_type?: QuestionTypeEnum;
12801
13141
  order?: number;
12802
13142
  /**
12803
- * Minimum value allowed for NUMBER type questions
13143
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12804
13144
  */
12805
13145
  min_value?: string | null;
12806
13146
  /**
12807
- * Maximum value allowed for NUMBER type questions
13147
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12808
13148
  */
12809
13149
  max_value?: string | null;
12810
13150
  /**
@@ -12919,7 +13259,7 @@ export type QuestionOptionsAdminRequest = {
12919
13259
  order?: number;
12920
13260
  question: string;
12921
13261
  };
12922
- export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files';
13262
+ 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
13263
  export type QuestionWithAnswer = {
12924
13264
  readonly uuid: string;
12925
13265
  readonly description: string;
@@ -12935,11 +13275,11 @@ export type QuestionWithAnswer = {
12935
13275
  } | null;
12936
13276
  readonly question_options: Array<unknown> | null;
12937
13277
  /**
12938
- * Minimum value allowed for NUMBER type questions
13278
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12939
13279
  */
12940
13280
  readonly min_value: string | null;
12941
13281
  /**
12942
- * Maximum value allowed for NUMBER type questions
13282
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12943
13283
  */
12944
13284
  readonly max_value: string | null;
12945
13285
  /**
@@ -12958,6 +13298,9 @@ export type QuestionWithAnswer = {
12958
13298
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
12959
13299
  */
12960
13300
  readonly max_files_count: number | null;
13301
+ readonly dependencies_info: {
13302
+ [key: string]: unknown;
13303
+ } | null;
12961
13304
  };
12962
13305
  export type QuestionWithAnswerReviewer = {
12963
13306
  readonly uuid: string;
@@ -12974,11 +13317,11 @@ export type QuestionWithAnswerReviewer = {
12974
13317
  } | null;
12975
13318
  readonly question_options: Array<unknown> | null;
12976
13319
  /**
12977
- * Minimum value allowed for NUMBER type questions
13320
+ * Minimum value allowed for NUMBER, YEAR, and RATING type questions
12978
13321
  */
12979
13322
  readonly min_value: string | null;
12980
13323
  /**
12981
- * Maximum value allowed for NUMBER type questions
13324
+ * Maximum value allowed for NUMBER, YEAR, and RATING type questions
12982
13325
  */
12983
13326
  readonly max_value: string | null;
12984
13327
  /**
@@ -12997,6 +13340,9 @@ export type QuestionWithAnswerReviewer = {
12997
13340
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
12998
13341
  */
12999
13342
  readonly max_files_count: number | null;
13343
+ readonly dependencies_info: {
13344
+ [key: string]: unknown;
13345
+ } | null;
13000
13346
  operator?: ChecklistOperators | BlankEnum;
13001
13347
  /**
13002
13348
  * Answer value that trigger review.
@@ -15595,6 +15941,10 @@ export type SubmitRequestResponse = {
15595
15941
  * UUID of the invitation scope
15596
15942
  */
15597
15943
  scope_uuid: string;
15944
+ /**
15945
+ * Whether the request was automatically approved
15946
+ */
15947
+ auto_approved: boolean;
15598
15948
  };
15599
15949
  export type SubresourceOffering = {
15600
15950
  /**
@@ -15918,17 +16268,45 @@ export type UserActionSummary = {
15918
16268
  };
15919
16269
  overdue: number;
15920
16270
  };
16271
+ export type UserAffiliationCount = {
16272
+ /**
16273
+ * Affiliation name
16274
+ */
16275
+ affiliation: string;
16276
+ /**
16277
+ * Number of users
16278
+ */
16279
+ count: number;
16280
+ };
15921
16281
  export type UserAgreement = {
15922
16282
  readonly url: string;
15923
16283
  readonly uuid: string;
15924
16284
  content: string;
15925
16285
  agreement_type: AgreementTypeEnum;
16286
+ /**
16287
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16288
+ */
16289
+ language: string;
15926
16290
  readonly created: string;
15927
16291
  readonly modified: string;
15928
16292
  };
15929
16293
  export type UserAgreementRequest = {
15930
16294
  content: string;
15931
16295
  agreement_type: AgreementTypeEnum;
16296
+ /**
16297
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
16298
+ */
16299
+ language: string;
16300
+ };
16301
+ export type UserAuthMethodCount = {
16302
+ /**
16303
+ * Authentication method
16304
+ */
16305
+ method: string;
16306
+ /**
16307
+ * Number of users
16308
+ */
16309
+ count: number;
15932
16310
  };
15933
16311
  export type UserAuthToken = {
15934
16312
  readonly created: string;
@@ -15991,6 +16369,16 @@ export type UserConsentInfo = {
15991
16369
  export type UserEmailChangeRequest = {
15992
16370
  email: string;
15993
16371
  };
16372
+ export type UserIdentitySourceCount = {
16373
+ /**
16374
+ * Identity source
16375
+ */
16376
+ identity_source: string;
16377
+ /**
16378
+ * Number of users
16379
+ */
16380
+ count: number;
16381
+ };
15994
16382
  export type UserInfo = {
15995
16383
  /**
15996
16384
  * 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 +16426,16 @@ export type UserOfferingConsentCreateRequest = {
16038
16426
  export type UserOfferingConsentRequest = {
16039
16427
  version?: string;
16040
16428
  };
16429
+ export type UserOrganizationCount = {
16430
+ /**
16431
+ * Organization name
16432
+ */
16433
+ organization: string;
16434
+ /**
16435
+ * Number of users
16436
+ */
16437
+ count: number;
16438
+ };
16041
16439
  export type UserRequest = {
16042
16440
  /**
16043
16441
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -16790,6 +17188,12 @@ export type CustomerRequestForm = {
16790
17188
  * Number of extra days after project end date before resources are terminated
16791
17189
  */
16792
17190
  grace_period_days?: number | null;
17191
+ user_email_patterns?: unknown;
17192
+ user_affiliations?: unknown;
17193
+ /**
17194
+ * List of allowed identity sources (identity providers).
17195
+ */
17196
+ user_identity_sources?: unknown;
16793
17197
  name: string;
16794
17198
  /**
16795
17199
  * URL-friendly identifier. Only editable by staff users.
@@ -16861,6 +17265,12 @@ export type CustomerRequestMultipart = {
16861
17265
  * Number of extra days after project end date before resources are terminated
16862
17266
  */
16863
17267
  grace_period_days?: number | null;
17268
+ user_email_patterns?: unknown;
17269
+ user_affiliations?: unknown;
17270
+ /**
17271
+ * List of allowed identity sources (identity providers).
17272
+ */
17273
+ user_identity_sources?: unknown;
16864
17274
  name: string;
16865
17275
  /**
16866
17276
  * URL-friendly identifier. Only editable by staff users.
@@ -16932,6 +17342,12 @@ export type PatchedCustomerRequestForm = {
16932
17342
  * Number of extra days after project end date before resources are terminated
16933
17343
  */
16934
17344
  grace_period_days?: number | null;
17345
+ user_email_patterns?: unknown;
17346
+ user_affiliations?: unknown;
17347
+ /**
17348
+ * List of allowed identity sources (identity providers).
17349
+ */
17350
+ user_identity_sources?: unknown;
16935
17351
  name?: string;
16936
17352
  /**
16937
17353
  * URL-friendly identifier. Only editable by staff users.
@@ -17003,6 +17419,12 @@ export type PatchedCustomerRequestMultipart = {
17003
17419
  * Number of extra days after project end date before resources are terminated
17004
17420
  */
17005
17421
  grace_period_days?: number | null;
17422
+ user_email_patterns?: unknown;
17423
+ user_affiliations?: unknown;
17424
+ /**
17425
+ * List of allowed identity sources (identity providers).
17426
+ */
17427
+ user_identity_sources?: unknown;
17006
17428
  name?: string;
17007
17429
  /**
17008
17430
  * URL-friendly identifier. Only editable by staff users.
@@ -17420,6 +17842,12 @@ export type ProjectRequestForm = {
17420
17842
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17421
17843
  */
17422
17844
  grace_period_days?: number | null;
17845
+ user_email_patterns?: unknown;
17846
+ user_affiliations?: unknown;
17847
+ /**
17848
+ * List of allowed identity sources (identity providers).
17849
+ */
17850
+ user_identity_sources?: unknown;
17423
17851
  };
17424
17852
  export type ProjectRequestMultipart = {
17425
17853
  name: string;
@@ -17463,6 +17891,12 @@ export type ProjectRequestMultipart = {
17463
17891
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17464
17892
  */
17465
17893
  grace_period_days?: number | null;
17894
+ user_email_patterns?: unknown;
17895
+ user_affiliations?: unknown;
17896
+ /**
17897
+ * List of allowed identity sources (identity providers).
17898
+ */
17899
+ user_identity_sources?: unknown;
17466
17900
  };
17467
17901
  export type PatchedProjectRequestForm = {
17468
17902
  name?: string;
@@ -17506,6 +17940,12 @@ export type PatchedProjectRequestForm = {
17506
17940
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17507
17941
  */
17508
17942
  grace_period_days?: number | null;
17943
+ user_email_patterns?: unknown;
17944
+ user_affiliations?: unknown;
17945
+ /**
17946
+ * List of allowed identity sources (identity providers).
17947
+ */
17948
+ user_identity_sources?: unknown;
17509
17949
  };
17510
17950
  export type PatchedProjectRequestMultipart = {
17511
17951
  name?: string;
@@ -17549,6 +17989,12 @@ export type PatchedProjectRequestMultipart = {
17549
17989
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17550
17990
  */
17551
17991
  grace_period_days?: number | null;
17992
+ user_email_patterns?: unknown;
17993
+ user_affiliations?: unknown;
17994
+ /**
17995
+ * List of allowed identity sources (identity providers).
17996
+ */
17997
+ user_identity_sources?: unknown;
17552
17998
  };
17553
17999
  export type ConstanceSettingsRequestForm = {
17554
18000
  SITE_NAME?: string;
@@ -17605,6 +18051,14 @@ export type ConstanceSettingsRequestForm = {
17605
18051
  SIDEBAR_STYLE?: string;
17606
18052
  SITE_LOGO?: (Blob | File) | null;
17607
18053
  LOGIN_LOGO?: (Blob | File) | null;
18054
+ LOGIN_LOGO_MULTILINGUAL?: {
18055
+ [key: string]: (Blob | File) | null;
18056
+ };
18057
+ LOGIN_PAGE_LAYOUT?: string;
18058
+ LOGIN_PAGE_VIDEO_URL?: string;
18059
+ LOGIN_PAGE_STATS?: Array<unknown>;
18060
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18061
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17608
18062
  FAVICON?: (Blob | File) | null;
17609
18063
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17610
18064
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -17777,6 +18231,14 @@ export type ConstanceSettingsRequestMultipart = {
17777
18231
  SIDEBAR_STYLE?: string;
17778
18232
  SITE_LOGO?: (Blob | File) | null;
17779
18233
  LOGIN_LOGO?: (Blob | File) | null;
18234
+ LOGIN_LOGO_MULTILINGUAL?: {
18235
+ [key: string]: (Blob | File) | null;
18236
+ };
18237
+ LOGIN_PAGE_LAYOUT?: string;
18238
+ LOGIN_PAGE_VIDEO_URL?: string;
18239
+ LOGIN_PAGE_STATS?: Array<unknown>;
18240
+ LOGIN_PAGE_CAROUSEL_SLIDES?: Array<unknown>;
18241
+ LOGIN_PAGE_NEWS?: Array<unknown>;
17780
18242
  FAVICON?: (Blob | File) | null;
17781
18243
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
17782
18244
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -21509,6 +21971,10 @@ export type BookingResourcesListData = {
21509
21971
  * Has termination date
21510
21972
  */
21511
21973
  has_terminate_date?: boolean;
21974
+ /**
21975
+ * Filter by attached state
21976
+ */
21977
+ is_attached?: boolean;
21512
21978
  /**
21513
21979
  * LEXIS links supported
21514
21980
  */
@@ -21681,6 +22147,10 @@ export type BookingResourcesCountData = {
21681
22147
  * Has termination date
21682
22148
  */
21683
22149
  has_terminate_date?: boolean;
22150
+ /**
22151
+ * Filter by attached state
22152
+ */
22153
+ is_attached?: boolean;
21684
22154
  /**
21685
22155
  * LEXIS links supported
21686
22156
  */
@@ -22554,9 +23024,7 @@ export type CeleryStatsRetrieveData = {
22554
23024
  url: '/api/celery-stats/';
22555
23025
  };
22556
23026
  export type CeleryStatsRetrieveResponses = {
22557
- 200: {
22558
- [key: string]: unknown;
22559
- };
23027
+ 200: CeleryStatsResponse;
22560
23028
  };
22561
23029
  export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
22562
23030
  export type ChatInvokeData = {
@@ -22975,6 +23443,10 @@ export type ChecklistsAdminQuestionsListData = {
22975
23443
  */
22976
23444
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
22977
23445
  checklist_uuid?: string;
23446
+ /**
23447
+ * Filter questions that have onboarding metadata mapping
23448
+ */
23449
+ has_onboarding_mapping?: boolean;
22978
23450
  /**
22979
23451
  * A page number within the paginated result set.
22980
23452
  */
@@ -23001,6 +23473,10 @@ export type ChecklistsAdminQuestionsCountData = {
23001
23473
  */
23002
23474
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
23003
23475
  checklist_uuid?: string;
23476
+ /**
23477
+ * Filter questions that have onboarding metadata mapping
23478
+ */
23479
+ has_onboarding_mapping?: boolean;
23004
23480
  /**
23005
23481
  * A page number within the paginated result set.
23006
23482
  */
@@ -23651,7 +24127,7 @@ export type CustomersListData = {
23651
24127
  * Contact details
23652
24128
  */
23653
24129
  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'>;
24130
+ 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
24131
  /**
23656
24132
  * Name
23657
24133
  */
@@ -23977,7 +24453,7 @@ export type CustomersRetrieveData = {
23977
24453
  uuid: string;
23978
24454
  };
23979
24455
  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'>;
24456
+ 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
24457
  };
23982
24458
  url: '/api/customers/{uuid}/';
23983
24459
  };
@@ -29537,6 +30013,109 @@ export type MarketplaceCustomerServiceAccountsRotateApiKeyResponses = {
29537
30013
  200: CustomerServiceAccount;
29538
30014
  };
29539
30015
  export type MarketplaceCustomerServiceAccountsRotateApiKeyResponse = MarketplaceCustomerServiceAccountsRotateApiKeyResponses[keyof MarketplaceCustomerServiceAccountsRotateApiKeyResponses];
30016
+ export type MarketplaceDemoPresetsInfoRetrieveData = {
30017
+ body?: never;
30018
+ path: {
30019
+ /**
30020
+ * Name of the preset
30021
+ */
30022
+ name: string;
30023
+ };
30024
+ query?: never;
30025
+ url: '/api/marketplace-demo-presets/info/{name}/';
30026
+ };
30027
+ export type MarketplaceDemoPresetsInfoRetrieveErrors = {
30028
+ /**
30029
+ * No response body
30030
+ */
30031
+ 404: unknown;
30032
+ };
30033
+ export type MarketplaceDemoPresetsInfoRetrieveResponses = {
30034
+ 200: DemoPreset;
30035
+ };
30036
+ export type MarketplaceDemoPresetsInfoRetrieveResponse = MarketplaceDemoPresetsInfoRetrieveResponses[keyof MarketplaceDemoPresetsInfoRetrieveResponses];
30037
+ export type MarketplaceDemoPresetsInfoCountData = {
30038
+ body?: never;
30039
+ path: {
30040
+ /**
30041
+ * Name of the preset
30042
+ */
30043
+ name: string;
30044
+ };
30045
+ query?: never;
30046
+ url: '/api/marketplace-demo-presets/info/{name}/';
30047
+ };
30048
+ export type MarketplaceDemoPresetsInfoCountResponses = {
30049
+ /**
30050
+ * No response body
30051
+ */
30052
+ 200: unknown;
30053
+ };
30054
+ export type MarketplaceDemoPresetsListListData = {
30055
+ body?: never;
30056
+ path?: never;
30057
+ query?: {
30058
+ /**
30059
+ * A page number within the paginated result set.
30060
+ */
30061
+ page?: number;
30062
+ /**
30063
+ * Number of results to return per page.
30064
+ */
30065
+ page_size?: number;
30066
+ };
30067
+ url: '/api/marketplace-demo-presets/list/';
30068
+ };
30069
+ export type MarketplaceDemoPresetsListListResponses = {
30070
+ 200: Array<DemoPreset>;
30071
+ };
30072
+ export type MarketplaceDemoPresetsListListResponse = MarketplaceDemoPresetsListListResponses[keyof MarketplaceDemoPresetsListListResponses];
30073
+ export type MarketplaceDemoPresetsListCountData = {
30074
+ body?: never;
30075
+ path?: never;
30076
+ query?: {
30077
+ /**
30078
+ * A page number within the paginated result set.
30079
+ */
30080
+ page?: number;
30081
+ /**
30082
+ * Number of results to return per page.
30083
+ */
30084
+ page_size?: number;
30085
+ };
30086
+ url: '/api/marketplace-demo-presets/list/';
30087
+ };
30088
+ export type MarketplaceDemoPresetsListCountResponses = {
30089
+ /**
30090
+ * No response body
30091
+ */
30092
+ 200: unknown;
30093
+ };
30094
+ export type MarketplaceDemoPresetsLoadData = {
30095
+ body?: DemoPresetLoadRequestRequest;
30096
+ path: {
30097
+ /**
30098
+ * Name of the preset to load
30099
+ */
30100
+ name: string;
30101
+ };
30102
+ query?: never;
30103
+ url: '/api/marketplace-demo-presets/load/{name}/';
30104
+ };
30105
+ export type MarketplaceDemoPresetsLoadErrors = {
30106
+ /**
30107
+ * No response body
30108
+ */
30109
+ 400: unknown;
30110
+ /**
30111
+ * No response body
30112
+ */
30113
+ 404: unknown;
30114
+ };
30115
+ export type MarketplaceDemoPresetsLoadResponses = {
30116
+ 200: DemoPresetLoadResponse;
30117
+ };
30118
+ export type MarketplaceDemoPresetsLoadResponse = MarketplaceDemoPresetsLoadResponses[keyof MarketplaceDemoPresetsLoadResponses];
29540
30119
  export type MarketplaceGlobalCategoriesRetrieveData = {
29541
30120
  body?: never;
29542
30121
  path?: never;
@@ -31008,7 +31587,12 @@ export type MarketplaceOfferingUsersChecklistRetrieveData = {
31008
31587
  path: {
31009
31588
  uuid: string;
31010
31589
  };
31011
- query?: never;
31590
+ query?: {
31591
+ /**
31592
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
31593
+ */
31594
+ include_all?: boolean;
31595
+ };
31012
31596
  url: '/api/marketplace-offering-users/{uuid}/checklist/';
31013
31597
  };
31014
31598
  export type MarketplaceOfferingUsersChecklistRetrieveErrors = {
@@ -31621,7 +32205,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
31621
32205
  };
31622
32206
  export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
31623
32207
  export type MarketplaceOrdersRejectByConsumerData = {
31624
- body?: never;
32208
+ body?: OrderErrorDetailsRequest;
31625
32209
  path: {
31626
32210
  uuid: string;
31627
32211
  };
@@ -31677,7 +32261,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
31677
32261
  200: unknown;
31678
32262
  };
31679
32263
  export type MarketplaceOrdersSetStateErredData = {
31680
- body?: OrderSetStateErredRequest;
32264
+ body?: OrderErrorDetailsRequest;
31681
32265
  path: {
31682
32266
  uuid: string;
31683
32267
  };
@@ -33707,7 +34291,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
33707
34291
  uuid: string;
33708
34292
  };
33709
34293
  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'>;
34294
+ 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
34295
  /**
33712
34296
  * A page number within the paginated result set.
33713
34297
  */
@@ -34881,6 +35465,10 @@ export type MarketplaceProviderResourcesListData = {
34881
35465
  * Has termination date
34882
35466
  */
34883
35467
  has_terminate_date?: boolean;
35468
+ /**
35469
+ * Filter by attached state
35470
+ */
35471
+ is_attached?: boolean;
34884
35472
  /**
34885
35473
  * LEXIS links supported
34886
35474
  */
@@ -35052,6 +35640,10 @@ export type MarketplaceProviderResourcesCountData = {
35052
35640
  * Has termination date
35053
35641
  */
35054
35642
  has_terminate_date?: boolean;
35643
+ /**
35644
+ * Filter by attached state
35645
+ */
35646
+ is_attached?: boolean;
35055
35647
  /**
35056
35648
  * LEXIS links supported
35057
35649
  */
@@ -36262,6 +36854,10 @@ export type MarketplaceResourcesListData = {
36262
36854
  * Has termination date
36263
36855
  */
36264
36856
  has_terminate_date?: boolean;
36857
+ /**
36858
+ * Filter by attached state
36859
+ */
36860
+ is_attached?: boolean;
36265
36861
  /**
36266
36862
  * LEXIS links supported
36267
36863
  */
@@ -36433,6 +37029,10 @@ export type MarketplaceResourcesCountData = {
36433
37029
  * Has termination date
36434
37030
  */
36435
37031
  has_terminate_date?: boolean;
37032
+ /**
37033
+ * Filter by attached state
37034
+ */
37035
+ is_attached?: boolean;
36436
37036
  /**
36437
37037
  * LEXIS links supported
36438
37038
  */
@@ -38249,7 +38849,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
38249
38849
  * Description
38250
38850
  */
38251
38851
  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'>;
38852
+ 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
38853
  /**
38254
38854
  * Is removed
38255
38855
  */
@@ -40573,6 +41173,166 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
40573
41173
  */
40574
41174
  200: unknown;
40575
41175
  };
41176
+ export type MarketplaceStatsUserAffiliationCountListData = {
41177
+ body?: never;
41178
+ path?: never;
41179
+ query?: {
41180
+ /**
41181
+ * A page number within the paginated result set.
41182
+ */
41183
+ page?: number;
41184
+ /**
41185
+ * Number of results to return per page.
41186
+ */
41187
+ page_size?: number;
41188
+ };
41189
+ url: '/api/marketplace-stats/user_affiliation_count/';
41190
+ };
41191
+ export type MarketplaceStatsUserAffiliationCountListResponses = {
41192
+ 200: Array<UserAffiliationCount>;
41193
+ };
41194
+ export type MarketplaceStatsUserAffiliationCountListResponse = MarketplaceStatsUserAffiliationCountListResponses[keyof MarketplaceStatsUserAffiliationCountListResponses];
41195
+ export type MarketplaceStatsUserAffiliationCountCountData = {
41196
+ body?: never;
41197
+ path?: never;
41198
+ query?: {
41199
+ /**
41200
+ * A page number within the paginated result set.
41201
+ */
41202
+ page?: number;
41203
+ /**
41204
+ * Number of results to return per page.
41205
+ */
41206
+ page_size?: number;
41207
+ };
41208
+ url: '/api/marketplace-stats/user_affiliation_count/';
41209
+ };
41210
+ export type MarketplaceStatsUserAffiliationCountCountResponses = {
41211
+ /**
41212
+ * No response body
41213
+ */
41214
+ 200: unknown;
41215
+ };
41216
+ export type MarketplaceStatsUserAuthMethodCountListData = {
41217
+ body?: never;
41218
+ path?: never;
41219
+ query?: {
41220
+ /**
41221
+ * A page number within the paginated result set.
41222
+ */
41223
+ page?: number;
41224
+ /**
41225
+ * Number of results to return per page.
41226
+ */
41227
+ page_size?: number;
41228
+ };
41229
+ url: '/api/marketplace-stats/user_auth_method_count/';
41230
+ };
41231
+ export type MarketplaceStatsUserAuthMethodCountListResponses = {
41232
+ 200: Array<UserAuthMethodCount>;
41233
+ };
41234
+ export type MarketplaceStatsUserAuthMethodCountListResponse = MarketplaceStatsUserAuthMethodCountListResponses[keyof MarketplaceStatsUserAuthMethodCountListResponses];
41235
+ export type MarketplaceStatsUserAuthMethodCountCountData = {
41236
+ body?: never;
41237
+ path?: never;
41238
+ query?: {
41239
+ /**
41240
+ * A page number within the paginated result set.
41241
+ */
41242
+ page?: number;
41243
+ /**
41244
+ * Number of results to return per page.
41245
+ */
41246
+ page_size?: number;
41247
+ };
41248
+ url: '/api/marketplace-stats/user_auth_method_count/';
41249
+ };
41250
+ export type MarketplaceStatsUserAuthMethodCountCountResponses = {
41251
+ /**
41252
+ * No response body
41253
+ */
41254
+ 200: unknown;
41255
+ };
41256
+ export type MarketplaceStatsUserIdentitySourceCountListData = {
41257
+ body?: never;
41258
+ path?: never;
41259
+ query?: {
41260
+ /**
41261
+ * A page number within the paginated result set.
41262
+ */
41263
+ page?: number;
41264
+ /**
41265
+ * Number of results to return per page.
41266
+ */
41267
+ page_size?: number;
41268
+ };
41269
+ url: '/api/marketplace-stats/user_identity_source_count/';
41270
+ };
41271
+ export type MarketplaceStatsUserIdentitySourceCountListResponses = {
41272
+ 200: Array<UserIdentitySourceCount>;
41273
+ };
41274
+ export type MarketplaceStatsUserIdentitySourceCountListResponse = MarketplaceStatsUserIdentitySourceCountListResponses[keyof MarketplaceStatsUserIdentitySourceCountListResponses];
41275
+ export type MarketplaceStatsUserIdentitySourceCountCountData = {
41276
+ body?: never;
41277
+ path?: never;
41278
+ query?: {
41279
+ /**
41280
+ * A page number within the paginated result set.
41281
+ */
41282
+ page?: number;
41283
+ /**
41284
+ * Number of results to return per page.
41285
+ */
41286
+ page_size?: number;
41287
+ };
41288
+ url: '/api/marketplace-stats/user_identity_source_count/';
41289
+ };
41290
+ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
41291
+ /**
41292
+ * No response body
41293
+ */
41294
+ 200: unknown;
41295
+ };
41296
+ export type MarketplaceStatsUserOrganizationCountListData = {
41297
+ body?: never;
41298
+ path?: never;
41299
+ query?: {
41300
+ /**
41301
+ * A page number within the paginated result set.
41302
+ */
41303
+ page?: number;
41304
+ /**
41305
+ * Number of results to return per page.
41306
+ */
41307
+ page_size?: number;
41308
+ };
41309
+ url: '/api/marketplace-stats/user_organization_count/';
41310
+ };
41311
+ export type MarketplaceStatsUserOrganizationCountListResponses = {
41312
+ 200: Array<UserOrganizationCount>;
41313
+ };
41314
+ export type MarketplaceStatsUserOrganizationCountListResponse = MarketplaceStatsUserOrganizationCountListResponses[keyof MarketplaceStatsUserOrganizationCountListResponses];
41315
+ export type MarketplaceStatsUserOrganizationCountCountData = {
41316
+ body?: never;
41317
+ path?: never;
41318
+ query?: {
41319
+ /**
41320
+ * A page number within the paginated result set.
41321
+ */
41322
+ page?: number;
41323
+ /**
41324
+ * Number of results to return per page.
41325
+ */
41326
+ page_size?: number;
41327
+ };
41328
+ url: '/api/marketplace-stats/user_organization_count/';
41329
+ };
41330
+ export type MarketplaceStatsUserOrganizationCountCountResponses = {
41331
+ /**
41332
+ * No response body
41333
+ */
41334
+ 200: unknown;
41335
+ };
40576
41336
  export type MarketplaceUserOfferingConsentsListData = {
40577
41337
  body?: never;
40578
41338
  path?: never;
@@ -41633,7 +42393,12 @@ export type OnboardingVerificationsChecklistRetrieveData = {
41633
42393
  path: {
41634
42394
  uuid: string;
41635
42395
  };
41636
- query?: never;
42396
+ query?: {
42397
+ /**
42398
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
42399
+ */
42400
+ include_all?: boolean;
42401
+ };
41637
42402
  url: '/api/onboarding-verifications/{uuid}/checklist/';
41638
42403
  };
41639
42404
  export type OnboardingVerificationsChecklistRetrieveErrors = {
@@ -43053,7 +43818,7 @@ export type OpenportalUnmanagedProjectsListData = {
43053
43818
  * Description
43054
43819
  */
43055
43820
  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'>;
43821
+ 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
43822
  /**
43058
43823
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
43059
43824
  */
@@ -43226,7 +43991,7 @@ export type OpenportalUnmanagedProjectsRetrieveData = {
43226
43991
  uuid: string;
43227
43992
  };
43228
43993
  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'>;
43994
+ 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
43995
  };
43231
43996
  url: '/api/openportal-unmanaged-projects/{uuid}/';
43232
43997
  };
@@ -43281,7 +44046,12 @@ export type OpenportalUnmanagedProjectsChecklistRetrieveData = {
43281
44046
  path: {
43282
44047
  uuid: string;
43283
44048
  };
43284
- query?: never;
44049
+ query?: {
44050
+ /**
44051
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
44052
+ */
44053
+ include_all?: boolean;
44054
+ };
43285
44055
  url: '/api/openportal-unmanaged-projects/{uuid}/checklist/';
43286
44056
  };
43287
44057
  export type OpenportalUnmanagedProjectsChecklistRetrieveErrors = {
@@ -49895,7 +50665,7 @@ export type ProjectsListData = {
49895
50665
  * Description
49896
50666
  */
49897
50667
  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'>;
50668
+ 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
50669
  /**
49900
50670
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
49901
50671
  */
@@ -50144,7 +50914,7 @@ export type ProjectsRetrieveData = {
50144
50914
  uuid: string;
50145
50915
  };
50146
50916
  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'>;
50917
+ 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
50918
  };
50149
50919
  url: '/api/projects/{uuid}/';
50150
50920
  };
@@ -50199,7 +50969,12 @@ export type ProjectsChecklistRetrieveData = {
50199
50969
  path: {
50200
50970
  uuid: string;
50201
50971
  };
50202
- query?: never;
50972
+ query?: {
50973
+ /**
50974
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
50975
+ */
50976
+ include_all?: boolean;
50977
+ };
50203
50978
  url: '/api/projects/{uuid}/checklist/';
50204
50979
  };
50205
50980
  export type ProjectsChecklistRetrieveErrors = {
@@ -50816,7 +51591,12 @@ export type ProposalProposalsChecklistRetrieveData = {
50816
51591
  path: {
50817
51592
  uuid: string;
50818
51593
  };
50819
- query?: never;
51594
+ query?: {
51595
+ /**
51596
+ * If true, returns all questions including hidden ones (for dynamic form visibility). Default: false.
51597
+ */
51598
+ include_all?: boolean;
51599
+ };
50820
51600
  url: '/api/proposal-proposals/{uuid}/checklist/';
50821
51601
  };
50822
51602
  export type ProposalProposalsChecklistRetrieveErrors = {
@@ -50913,6 +51693,20 @@ export type ProposalProposalsDeleteUserResponses = {
50913
51693
  */
50914
51694
  200: unknown;
50915
51695
  };
51696
+ export type ProposalProposalsDetachDocumentsData = {
51697
+ body: ProposalDetachDocumentsRequest;
51698
+ path: {
51699
+ uuid: string;
51700
+ };
51701
+ query?: never;
51702
+ url: '/api/proposal-proposals/{uuid}/detach_documents/';
51703
+ };
51704
+ export type ProposalProposalsDetachDocumentsResponses = {
51705
+ /**
51706
+ * No response body
51707
+ */
51708
+ 200: unknown;
51709
+ };
50916
51710
  export type ProposalProposalsListUsersListData = {
50917
51711
  body?: never;
50918
51712
  path: {
@@ -51187,7 +51981,7 @@ export type ProposalProtectedCallsListData = {
51187
51981
  customer?: string;
51188
51982
  customer_keyword?: string;
51189
51983
  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'>;
51984
+ 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
51985
  has_active_round?: boolean;
51192
51986
  name?: string;
51193
51987
  /**
@@ -51280,7 +52074,7 @@ export type ProposalProtectedCallsRetrieveData = {
51280
52074
  uuid: string;
51281
52075
  };
51282
52076
  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'>;
52077
+ 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
52078
  };
51285
52079
  url: '/api/proposal-protected-calls/{uuid}/';
51286
52080
  };
@@ -57526,6 +58320,10 @@ export type UserAgreementsListData = {
57526
58320
  path?: never;
57527
58321
  query?: {
57528
58322
  agreement_type?: 'PP' | 'TOS';
58323
+ /**
58324
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
58325
+ */
58326
+ language?: string;
57529
58327
  /**
57530
58328
  * A page number within the paginated result set.
57531
58329
  */
@@ -57546,6 +58344,10 @@ export type UserAgreementsCountData = {
57546
58344
  path?: never;
57547
58345
  query?: {
57548
58346
  agreement_type?: 'PP' | 'TOS';
58347
+ /**
58348
+ * ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
58349
+ */
58350
+ language?: string;
57549
58351
  /**
57550
58352
  * A page number within the paginated result set.
57551
58353
  */
@@ -57698,6 +58500,21 @@ export type UserGroupInvitationsCreateResponses = {
57698
58500
  201: GroupInvitation;
57699
58501
  };
57700
58502
  export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
58503
+ export type UserGroupInvitationsDestroyData = {
58504
+ body?: never;
58505
+ path: {
58506
+ uuid: string;
58507
+ };
58508
+ query?: never;
58509
+ url: '/api/user-group-invitations/{uuid}/';
58510
+ };
58511
+ export type UserGroupInvitationsDestroyResponses = {
58512
+ /**
58513
+ * No response body
58514
+ */
58515
+ 204: void;
58516
+ };
58517
+ export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
57701
58518
  export type UserGroupInvitationsRetrieveData = {
57702
58519
  body?: never;
57703
58520
  path: {