waldur-js-client 7.9.6-dev.1 → 7.9.6-dev.10

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.
@@ -2610,6 +2610,12 @@ export type Customer = {
2610
2610
  * Number of extra days after project end date before resources are terminated
2611
2611
  */
2612
2612
  grace_period_days?: number | null;
2613
+ user_email_patterns?: unknown;
2614
+ user_affiliations?: unknown;
2615
+ /**
2616
+ * List of allowed identity sources (identity providers).
2617
+ */
2618
+ user_identity_sources?: unknown;
2613
2619
  name?: string;
2614
2620
  /**
2615
2621
  * URL-friendly identifier. Only editable by staff users.
@@ -2876,6 +2882,12 @@ export type CustomerRequest = {
2876
2882
  * Number of extra days after project end date before resources are terminated
2877
2883
  */
2878
2884
  grace_period_days?: number | null;
2885
+ user_email_patterns?: unknown;
2886
+ user_affiliations?: unknown;
2887
+ /**
2888
+ * List of allowed identity sources (identity providers).
2889
+ */
2890
+ user_identity_sources?: unknown;
2879
2891
  name: string;
2880
2892
  /**
2881
2893
  * URL-friendly identifier. Only editable by staff users.
@@ -3685,10 +3697,6 @@ export type GroupInvitation = {
3685
3697
  */
3686
3698
  role: string;
3687
3699
  readonly created: string;
3688
- /**
3689
- * Expiration date and time of the invitation
3690
- */
3691
- readonly expires: string;
3692
3700
  readonly is_active: boolean;
3693
3701
  /**
3694
3702
  * Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
@@ -3698,6 +3706,10 @@ export type GroupInvitation = {
3698
3706
  * Create project and grant project permissions instead of customer permissions
3699
3707
  */
3700
3708
  auto_create_project?: boolean;
3709
+ /**
3710
+ * Automatically approve permission requests from users matching email patterns or affiliations
3711
+ */
3712
+ auto_approve?: boolean;
3701
3713
  /**
3702
3714
  * Template for project name. Supports {username}, {email}, {full_name} variables
3703
3715
  */
@@ -3708,6 +3720,10 @@ export type GroupInvitation = {
3708
3720
  project_role?: string | null;
3709
3721
  user_affiliations?: unknown;
3710
3722
  user_email_patterns?: unknown;
3723
+ /**
3724
+ * List of allowed identity sources (identity providers).
3725
+ */
3726
+ user_identity_sources?: unknown;
3711
3727
  /**
3712
3728
  * Image URL of the invitation scope (Customer or Project)
3713
3729
  */
@@ -3730,6 +3746,10 @@ export type GroupInvitationRequest = {
3730
3746
  * Create project and grant project permissions instead of customer permissions
3731
3747
  */
3732
3748
  auto_create_project?: boolean;
3749
+ /**
3750
+ * Automatically approve permission requests from users matching email patterns or affiliations
3751
+ */
3752
+ auto_approve?: boolean;
3733
3753
  /**
3734
3754
  * Template for project name. Supports {username}, {email}, {full_name} variables
3735
3755
  */
@@ -3740,6 +3760,10 @@ export type GroupInvitationRequest = {
3740
3760
  project_role?: string | null;
3741
3761
  user_affiliations?: unknown;
3742
3762
  user_email_patterns?: unknown;
3763
+ /**
3764
+ * List of allowed identity sources (identity providers).
3765
+ */
3766
+ user_identity_sources?: unknown;
3743
3767
  };
3744
3768
  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
3769
  export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
@@ -6786,6 +6810,10 @@ export type OfferingCost = {
6786
6810
  * UUID of the offering
6787
6811
  */
6788
6812
  offering_uuid: string;
6813
+ /**
6814
+ * Name of the offering
6815
+ */
6816
+ offering_name: string;
6789
6817
  /**
6790
6818
  * Total cost for the offering
6791
6819
  */
@@ -7824,6 +7852,7 @@ export type OnboardingVerification = {
7824
7852
  */
7825
7853
  legal_name?: string;
7826
7854
  status: OnboardingVerificationStatusEnum;
7855
+ readonly justifications: Array<OnboardingJustification>;
7827
7856
  /**
7828
7857
  * Method used for validation
7829
7858
  */
@@ -9677,7 +9706,7 @@ export type OrderDetails = {
9677
9706
  readonly order_subtype?: string | null;
9678
9707
  issue?: IssueReference | null;
9679
9708
  };
9680
- export type OrderSetStateErredRequest = {
9709
+ export type OrderErrorDetailsRequest = {
9681
9710
  error_message?: string;
9682
9711
  error_traceback?: string;
9683
9712
  };
@@ -9915,6 +9944,12 @@ export type PatchedCustomerRequest = {
9915
9944
  * Number of extra days after project end date before resources are terminated
9916
9945
  */
9917
9946
  grace_period_days?: number | null;
9947
+ user_email_patterns?: unknown;
9948
+ user_affiliations?: unknown;
9949
+ /**
9950
+ * List of allowed identity sources (identity providers).
9951
+ */
9952
+ user_identity_sources?: unknown;
9918
9953
  name?: string;
9919
9954
  /**
9920
9955
  * URL-friendly identifier. Only editable by staff users.
@@ -10577,6 +10612,12 @@ export type PatchedProjectRequest = {
10577
10612
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
10578
10613
  */
10579
10614
  grace_period_days?: number | null;
10615
+ user_email_patterns?: unknown;
10616
+ user_affiliations?: unknown;
10617
+ /**
10618
+ * List of allowed identity sources (identity providers).
10619
+ */
10620
+ user_identity_sources?: unknown;
10580
10621
  };
10581
10622
  export type PatchedProjectServiceAccountRequest = {
10582
10623
  username?: string;
@@ -11476,6 +11517,12 @@ export type Project = {
11476
11517
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11477
11518
  */
11478
11519
  grace_period_days?: number | null;
11520
+ user_email_patterns?: unknown;
11521
+ user_affiliations?: unknown;
11522
+ /**
11523
+ * List of allowed identity sources (identity providers).
11524
+ */
11525
+ user_identity_sources?: unknown;
11479
11526
  readonly project_credit?: number | null;
11480
11527
  readonly marketplace_resource_count?: {
11481
11528
  [key: string]: number;
@@ -11729,6 +11776,12 @@ export type ProjectRequest = {
11729
11776
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
11730
11777
  */
11731
11778
  grace_period_days?: number | null;
11779
+ user_email_patterns?: unknown;
11780
+ user_affiliations?: unknown;
11781
+ /**
11782
+ * List of allowed identity sources (identity providers).
11783
+ */
11784
+ user_identity_sources?: unknown;
11732
11785
  };
11733
11786
  export type ProjectServiceAccount = {
11734
11787
  readonly url: string;
@@ -14281,6 +14334,52 @@ export type ResourcePlanPeriod = {
14281
14334
  end?: string | null;
14282
14335
  components: Array<BaseComponentUsage>;
14283
14336
  };
14337
+ export type ResourceProvisioningStats = {
14338
+ /**
14339
+ * UUID of the offering
14340
+ */
14341
+ readonly offering_uuid: string;
14342
+ /**
14343
+ * Name of the offering
14344
+ */
14345
+ readonly offering_name: string;
14346
+ /**
14347
+ * UUID of the service provider
14348
+ */
14349
+ readonly service_provider_uuid: string;
14350
+ /**
14351
+ * Name of the service provider
14352
+ */
14353
+ readonly service_provider_name: string;
14354
+ /**
14355
+ * Total finished provisioning attempts (DONE + ERRED)
14356
+ */
14357
+ readonly provisioning_count: number;
14358
+ /**
14359
+ * Total successful provisioning attempts (DONE)
14360
+ */
14361
+ readonly provisioning_success_count: number;
14362
+ /**
14363
+ * Total failed provisioning attempts (ERRED)
14364
+ */
14365
+ readonly provisioning_error_count: number;
14366
+ /**
14367
+ * Total currently in-progress provisioning attempts
14368
+ */
14369
+ readonly provisioning_in_progress_count: number;
14370
+ /**
14371
+ * Rate of successful provisioning (0.0 to 1.0)
14372
+ */
14373
+ readonly provisioning_success_rate: number;
14374
+ /**
14375
+ * Average duration in seconds from Executing to Terminal state
14376
+ */
14377
+ readonly avg_provisioning_duration: number;
14378
+ /**
14379
+ * Average duration in seconds from Creation to Executing state
14380
+ */
14381
+ readonly avg_pending_duration: number;
14382
+ };
14284
14383
  export type ResourceReallocateLimitsRequest = {
14285
14384
  limits: {
14286
14385
  [key: string]: number;
@@ -15549,6 +15648,10 @@ export type SubmitRequestResponse = {
15549
15648
  * UUID of the invitation scope
15550
15649
  */
15551
15650
  scope_uuid: string;
15651
+ /**
15652
+ * Whether the request was automatically approved
15653
+ */
15654
+ auto_approved: boolean;
15552
15655
  };
15553
15656
  export type SubresourceOffering = {
15554
15657
  /**
@@ -15872,6 +15975,16 @@ export type UserActionSummary = {
15872
15975
  };
15873
15976
  overdue: number;
15874
15977
  };
15978
+ export type UserAffiliationCount = {
15979
+ /**
15980
+ * Affiliation name
15981
+ */
15982
+ affiliation: string;
15983
+ /**
15984
+ * Number of users
15985
+ */
15986
+ count: number;
15987
+ };
15875
15988
  export type UserAgreement = {
15876
15989
  readonly url: string;
15877
15990
  readonly uuid: string;
@@ -15884,6 +15997,16 @@ export type UserAgreementRequest = {
15884
15997
  content: string;
15885
15998
  agreement_type: AgreementTypeEnum;
15886
15999
  };
16000
+ export type UserAuthMethodCount = {
16001
+ /**
16002
+ * Authentication method
16003
+ */
16004
+ method: string;
16005
+ /**
16006
+ * Number of users
16007
+ */
16008
+ count: number;
16009
+ };
15887
16010
  export type UserAuthToken = {
15888
16011
  readonly created: string;
15889
16012
  readonly user_first_name: string;
@@ -15945,6 +16068,16 @@ export type UserConsentInfo = {
15945
16068
  export type UserEmailChangeRequest = {
15946
16069
  email: string;
15947
16070
  };
16071
+ export type UserIdentitySourceCount = {
16072
+ /**
16073
+ * Identity source
16074
+ */
16075
+ identity_source: string;
16076
+ /**
16077
+ * Number of users
16078
+ */
16079
+ count: number;
16080
+ };
15948
16081
  export type UserInfo = {
15949
16082
  /**
15950
16083
  * 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.
@@ -15992,6 +16125,16 @@ export type UserOfferingConsentCreateRequest = {
15992
16125
  export type UserOfferingConsentRequest = {
15993
16126
  version?: string;
15994
16127
  };
16128
+ export type UserOrganizationCount = {
16129
+ /**
16130
+ * Organization name
16131
+ */
16132
+ organization: string;
16133
+ /**
16134
+ * Number of users
16135
+ */
16136
+ count: number;
16137
+ };
15995
16138
  export type UserRequest = {
15996
16139
  /**
15997
16140
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -16744,6 +16887,12 @@ export type CustomerRequestForm = {
16744
16887
  * Number of extra days after project end date before resources are terminated
16745
16888
  */
16746
16889
  grace_period_days?: number | null;
16890
+ user_email_patterns?: unknown;
16891
+ user_affiliations?: unknown;
16892
+ /**
16893
+ * List of allowed identity sources (identity providers).
16894
+ */
16895
+ user_identity_sources?: unknown;
16747
16896
  name: string;
16748
16897
  /**
16749
16898
  * URL-friendly identifier. Only editable by staff users.
@@ -16815,6 +16964,12 @@ export type CustomerRequestMultipart = {
16815
16964
  * Number of extra days after project end date before resources are terminated
16816
16965
  */
16817
16966
  grace_period_days?: number | null;
16967
+ user_email_patterns?: unknown;
16968
+ user_affiliations?: unknown;
16969
+ /**
16970
+ * List of allowed identity sources (identity providers).
16971
+ */
16972
+ user_identity_sources?: unknown;
16818
16973
  name: string;
16819
16974
  /**
16820
16975
  * URL-friendly identifier. Only editable by staff users.
@@ -16886,6 +17041,12 @@ export type PatchedCustomerRequestForm = {
16886
17041
  * Number of extra days after project end date before resources are terminated
16887
17042
  */
16888
17043
  grace_period_days?: number | null;
17044
+ user_email_patterns?: unknown;
17045
+ user_affiliations?: unknown;
17046
+ /**
17047
+ * List of allowed identity sources (identity providers).
17048
+ */
17049
+ user_identity_sources?: unknown;
16889
17050
  name?: string;
16890
17051
  /**
16891
17052
  * URL-friendly identifier. Only editable by staff users.
@@ -16957,6 +17118,12 @@ export type PatchedCustomerRequestMultipart = {
16957
17118
  * Number of extra days after project end date before resources are terminated
16958
17119
  */
16959
17120
  grace_period_days?: number | null;
17121
+ user_email_patterns?: unknown;
17122
+ user_affiliations?: unknown;
17123
+ /**
17124
+ * List of allowed identity sources (identity providers).
17125
+ */
17126
+ user_identity_sources?: unknown;
16960
17127
  name?: string;
16961
17128
  /**
16962
17129
  * URL-friendly identifier. Only editable by staff users.
@@ -17374,6 +17541,12 @@ export type ProjectRequestForm = {
17374
17541
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17375
17542
  */
17376
17543
  grace_period_days?: number | null;
17544
+ user_email_patterns?: unknown;
17545
+ user_affiliations?: unknown;
17546
+ /**
17547
+ * List of allowed identity sources (identity providers).
17548
+ */
17549
+ user_identity_sources?: unknown;
17377
17550
  };
17378
17551
  export type ProjectRequestMultipart = {
17379
17552
  name: string;
@@ -17417,6 +17590,12 @@ export type ProjectRequestMultipart = {
17417
17590
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17418
17591
  */
17419
17592
  grace_period_days?: number | null;
17593
+ user_email_patterns?: unknown;
17594
+ user_affiliations?: unknown;
17595
+ /**
17596
+ * List of allowed identity sources (identity providers).
17597
+ */
17598
+ user_identity_sources?: unknown;
17420
17599
  };
17421
17600
  export type PatchedProjectRequestForm = {
17422
17601
  name?: string;
@@ -17460,6 +17639,12 @@ export type PatchedProjectRequestForm = {
17460
17639
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17461
17640
  */
17462
17641
  grace_period_days?: number | null;
17642
+ user_email_patterns?: unknown;
17643
+ user_affiliations?: unknown;
17644
+ /**
17645
+ * List of allowed identity sources (identity providers).
17646
+ */
17647
+ user_identity_sources?: unknown;
17463
17648
  };
17464
17649
  export type PatchedProjectRequestMultipart = {
17465
17650
  name?: string;
@@ -17503,6 +17688,12 @@ export type PatchedProjectRequestMultipart = {
17503
17688
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17504
17689
  */
17505
17690
  grace_period_days?: number | null;
17691
+ user_email_patterns?: unknown;
17692
+ user_affiliations?: unknown;
17693
+ /**
17694
+ * List of allowed identity sources (identity providers).
17695
+ */
17696
+ user_identity_sources?: unknown;
17506
17697
  };
17507
17698
  export type ConstanceSettingsRequestForm = {
17508
17699
  SITE_NAME?: string;
@@ -21463,6 +21654,10 @@ export type BookingResourcesListData = {
21463
21654
  * Has termination date
21464
21655
  */
21465
21656
  has_terminate_date?: boolean;
21657
+ /**
21658
+ * Filter by attached state
21659
+ */
21660
+ is_attached?: boolean;
21466
21661
  /**
21467
21662
  * LEXIS links supported
21468
21663
  */
@@ -21635,6 +21830,10 @@ export type BookingResourcesCountData = {
21635
21830
  * Has termination date
21636
21831
  */
21637
21832
  has_terminate_date?: boolean;
21833
+ /**
21834
+ * Filter by attached state
21835
+ */
21836
+ is_attached?: boolean;
21638
21837
  /**
21639
21838
  * LEXIS links supported
21640
21839
  */
@@ -22929,6 +23128,10 @@ export type ChecklistsAdminQuestionsListData = {
22929
23128
  */
22930
23129
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
22931
23130
  checklist_uuid?: string;
23131
+ /**
23132
+ * Filter questions that have onboarding metadata mapping
23133
+ */
23134
+ has_onboarding_mapping?: boolean;
22932
23135
  /**
22933
23136
  * A page number within the paginated result set.
22934
23137
  */
@@ -22955,6 +23158,10 @@ export type ChecklistsAdminQuestionsCountData = {
22955
23158
  */
22956
23159
  checklist_type?: 'customer_onboarding' | 'offering_compliance' | 'project_compliance' | 'project_metadata' | 'proposal_compliance';
22957
23160
  checklist_uuid?: string;
23161
+ /**
23162
+ * Filter questions that have onboarding metadata mapping
23163
+ */
23164
+ has_onboarding_mapping?: boolean;
22958
23165
  /**
22959
23166
  * A page number within the paginated result set.
22960
23167
  */
@@ -23605,7 +23812,7 @@ export type CustomersListData = {
23605
23812
  * Contact details
23606
23813
  */
23607
23814
  contact_details?: string;
23608
- 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'>;
23815
+ 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'>;
23609
23816
  /**
23610
23817
  * Name
23611
23818
  */
@@ -23931,7 +24138,7 @@ export type CustomersRetrieveData = {
23931
24138
  uuid: string;
23932
24139
  };
23933
24140
  query?: {
23934
- 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'>;
24141
+ 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'>;
23935
24142
  };
23936
24143
  url: '/api/customers/{uuid}/';
23937
24144
  };
@@ -31575,7 +31782,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
31575
31782
  };
31576
31783
  export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
31577
31784
  export type MarketplaceOrdersRejectByConsumerData = {
31578
- body?: never;
31785
+ body?: OrderErrorDetailsRequest;
31579
31786
  path: {
31580
31787
  uuid: string;
31581
31788
  };
@@ -31631,7 +31838,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
31631
31838
  200: unknown;
31632
31839
  };
31633
31840
  export type MarketplaceOrdersSetStateErredData = {
31634
- body?: OrderSetStateErredRequest;
31841
+ body?: OrderErrorDetailsRequest;
31635
31842
  path: {
31636
31843
  uuid: string;
31637
31844
  };
@@ -33661,7 +33868,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
33661
33868
  uuid: string;
33662
33869
  };
33663
33870
  query?: {
33664
- 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'>;
33871
+ 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'>;
33665
33872
  /**
33666
33873
  * A page number within the paginated result set.
33667
33874
  */
@@ -34835,6 +35042,10 @@ export type MarketplaceProviderResourcesListData = {
34835
35042
  * Has termination date
34836
35043
  */
34837
35044
  has_terminate_date?: boolean;
35045
+ /**
35046
+ * Filter by attached state
35047
+ */
35048
+ is_attached?: boolean;
34838
35049
  /**
34839
35050
  * LEXIS links supported
34840
35051
  */
@@ -35006,6 +35217,10 @@ export type MarketplaceProviderResourcesCountData = {
35006
35217
  * Has termination date
35007
35218
  */
35008
35219
  has_terminate_date?: boolean;
35220
+ /**
35221
+ * Filter by attached state
35222
+ */
35223
+ is_attached?: boolean;
35009
35224
  /**
35010
35225
  * LEXIS links supported
35011
35226
  */
@@ -36216,6 +36431,10 @@ export type MarketplaceResourcesListData = {
36216
36431
  * Has termination date
36217
36432
  */
36218
36433
  has_terminate_date?: boolean;
36434
+ /**
36435
+ * Filter by attached state
36436
+ */
36437
+ is_attached?: boolean;
36219
36438
  /**
36220
36439
  * LEXIS links supported
36221
36440
  */
@@ -36387,6 +36606,10 @@ export type MarketplaceResourcesCountData = {
36387
36606
  * Has termination date
36388
36607
  */
36389
36608
  has_terminate_date?: boolean;
36609
+ /**
36610
+ * Filter by attached state
36611
+ */
36612
+ is_attached?: boolean;
36390
36613
  /**
36391
36614
  * LEXIS links supported
36392
36615
  */
@@ -38203,7 +38426,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
38203
38426
  * Description
38204
38427
  */
38205
38428
  description?: string;
38206
- 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'>;
38429
+ 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'>;
38207
38430
  /**
38208
38431
  * Is removed
38209
38432
  */
@@ -40399,6 +40622,54 @@ export type MarketplaceStatsProjectsUsagesGroupedByOecdCountResponses = {
40399
40622
  */
40400
40623
  200: unknown;
40401
40624
  };
40625
+ export type MarketplaceStatsResourceProvisioningStatsListData = {
40626
+ body?: never;
40627
+ path?: never;
40628
+ query?: {
40629
+ /**
40630
+ * Filter by last N minutes. Default is 60.
40631
+ */
40632
+ last_minutes?: number;
40633
+ /**
40634
+ * A page number within the paginated result set.
40635
+ */
40636
+ page?: number;
40637
+ /**
40638
+ * Number of results to return per page.
40639
+ */
40640
+ page_size?: number;
40641
+ };
40642
+ url: '/api/marketplace-stats/resource_provisioning_stats/';
40643
+ };
40644
+ export type MarketplaceStatsResourceProvisioningStatsListResponses = {
40645
+ 200: Array<ResourceProvisioningStats>;
40646
+ };
40647
+ export type MarketplaceStatsResourceProvisioningStatsListResponse = MarketplaceStatsResourceProvisioningStatsListResponses[keyof MarketplaceStatsResourceProvisioningStatsListResponses];
40648
+ export type MarketplaceStatsResourceProvisioningStatsCountData = {
40649
+ body?: never;
40650
+ path?: never;
40651
+ query?: {
40652
+ /**
40653
+ * Filter by last N minutes. Default is 60.
40654
+ */
40655
+ last_minutes?: number;
40656
+ /**
40657
+ * A page number within the paginated result set.
40658
+ */
40659
+ page?: number;
40660
+ /**
40661
+ * Number of results to return per page.
40662
+ */
40663
+ page_size?: number;
40664
+ };
40665
+ url: '/api/marketplace-stats/resource_provisioning_stats/';
40666
+ };
40667
+ export type MarketplaceStatsResourceProvisioningStatsCountResponses = {
40668
+ /**
40669
+ * No response body
40670
+ */
40671
+ 200: unknown;
40672
+ };
40402
40673
  export type MarketplaceStatsResourcesLimitsListData = {
40403
40674
  body?: never;
40404
40675
  path?: never;
@@ -40479,6 +40750,166 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
40479
40750
  */
40480
40751
  200: unknown;
40481
40752
  };
40753
+ export type MarketplaceStatsUserAffiliationCountListData = {
40754
+ body?: never;
40755
+ path?: never;
40756
+ query?: {
40757
+ /**
40758
+ * A page number within the paginated result set.
40759
+ */
40760
+ page?: number;
40761
+ /**
40762
+ * Number of results to return per page.
40763
+ */
40764
+ page_size?: number;
40765
+ };
40766
+ url: '/api/marketplace-stats/user_affiliation_count/';
40767
+ };
40768
+ export type MarketplaceStatsUserAffiliationCountListResponses = {
40769
+ 200: Array<UserAffiliationCount>;
40770
+ };
40771
+ export type MarketplaceStatsUserAffiliationCountListResponse = MarketplaceStatsUserAffiliationCountListResponses[keyof MarketplaceStatsUserAffiliationCountListResponses];
40772
+ export type MarketplaceStatsUserAffiliationCountCountData = {
40773
+ body?: never;
40774
+ path?: never;
40775
+ query?: {
40776
+ /**
40777
+ * A page number within the paginated result set.
40778
+ */
40779
+ page?: number;
40780
+ /**
40781
+ * Number of results to return per page.
40782
+ */
40783
+ page_size?: number;
40784
+ };
40785
+ url: '/api/marketplace-stats/user_affiliation_count/';
40786
+ };
40787
+ export type MarketplaceStatsUserAffiliationCountCountResponses = {
40788
+ /**
40789
+ * No response body
40790
+ */
40791
+ 200: unknown;
40792
+ };
40793
+ export type MarketplaceStatsUserAuthMethodCountListData = {
40794
+ body?: never;
40795
+ path?: never;
40796
+ query?: {
40797
+ /**
40798
+ * A page number within the paginated result set.
40799
+ */
40800
+ page?: number;
40801
+ /**
40802
+ * Number of results to return per page.
40803
+ */
40804
+ page_size?: number;
40805
+ };
40806
+ url: '/api/marketplace-stats/user_auth_method_count/';
40807
+ };
40808
+ export type MarketplaceStatsUserAuthMethodCountListResponses = {
40809
+ 200: Array<UserAuthMethodCount>;
40810
+ };
40811
+ export type MarketplaceStatsUserAuthMethodCountListResponse = MarketplaceStatsUserAuthMethodCountListResponses[keyof MarketplaceStatsUserAuthMethodCountListResponses];
40812
+ export type MarketplaceStatsUserAuthMethodCountCountData = {
40813
+ body?: never;
40814
+ path?: never;
40815
+ query?: {
40816
+ /**
40817
+ * A page number within the paginated result set.
40818
+ */
40819
+ page?: number;
40820
+ /**
40821
+ * Number of results to return per page.
40822
+ */
40823
+ page_size?: number;
40824
+ };
40825
+ url: '/api/marketplace-stats/user_auth_method_count/';
40826
+ };
40827
+ export type MarketplaceStatsUserAuthMethodCountCountResponses = {
40828
+ /**
40829
+ * No response body
40830
+ */
40831
+ 200: unknown;
40832
+ };
40833
+ export type MarketplaceStatsUserIdentitySourceCountListData = {
40834
+ body?: never;
40835
+ path?: never;
40836
+ query?: {
40837
+ /**
40838
+ * A page number within the paginated result set.
40839
+ */
40840
+ page?: number;
40841
+ /**
40842
+ * Number of results to return per page.
40843
+ */
40844
+ page_size?: number;
40845
+ };
40846
+ url: '/api/marketplace-stats/user_identity_source_count/';
40847
+ };
40848
+ export type MarketplaceStatsUserIdentitySourceCountListResponses = {
40849
+ 200: Array<UserIdentitySourceCount>;
40850
+ };
40851
+ export type MarketplaceStatsUserIdentitySourceCountListResponse = MarketplaceStatsUserIdentitySourceCountListResponses[keyof MarketplaceStatsUserIdentitySourceCountListResponses];
40852
+ export type MarketplaceStatsUserIdentitySourceCountCountData = {
40853
+ body?: never;
40854
+ path?: never;
40855
+ query?: {
40856
+ /**
40857
+ * A page number within the paginated result set.
40858
+ */
40859
+ page?: number;
40860
+ /**
40861
+ * Number of results to return per page.
40862
+ */
40863
+ page_size?: number;
40864
+ };
40865
+ url: '/api/marketplace-stats/user_identity_source_count/';
40866
+ };
40867
+ export type MarketplaceStatsUserIdentitySourceCountCountResponses = {
40868
+ /**
40869
+ * No response body
40870
+ */
40871
+ 200: unknown;
40872
+ };
40873
+ export type MarketplaceStatsUserOrganizationCountListData = {
40874
+ body?: never;
40875
+ path?: never;
40876
+ query?: {
40877
+ /**
40878
+ * A page number within the paginated result set.
40879
+ */
40880
+ page?: number;
40881
+ /**
40882
+ * Number of results to return per page.
40883
+ */
40884
+ page_size?: number;
40885
+ };
40886
+ url: '/api/marketplace-stats/user_organization_count/';
40887
+ };
40888
+ export type MarketplaceStatsUserOrganizationCountListResponses = {
40889
+ 200: Array<UserOrganizationCount>;
40890
+ };
40891
+ export type MarketplaceStatsUserOrganizationCountListResponse = MarketplaceStatsUserOrganizationCountListResponses[keyof MarketplaceStatsUserOrganizationCountListResponses];
40892
+ export type MarketplaceStatsUserOrganizationCountCountData = {
40893
+ body?: never;
40894
+ path?: never;
40895
+ query?: {
40896
+ /**
40897
+ * A page number within the paginated result set.
40898
+ */
40899
+ page?: number;
40900
+ /**
40901
+ * Number of results to return per page.
40902
+ */
40903
+ page_size?: number;
40904
+ };
40905
+ url: '/api/marketplace-stats/user_organization_count/';
40906
+ };
40907
+ export type MarketplaceStatsUserOrganizationCountCountResponses = {
40908
+ /**
40909
+ * No response body
40910
+ */
40911
+ 200: unknown;
40912
+ };
40482
40913
  export type MarketplaceUserOfferingConsentsListData = {
40483
40914
  body?: never;
40484
40915
  path?: never;
@@ -42959,7 +43390,7 @@ export type OpenportalUnmanagedProjectsListData = {
42959
43390
  * Description
42960
43391
  */
42961
43392
  description?: string;
42962
- 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'>;
43393
+ 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'>;
42963
43394
  /**
42964
43395
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
42965
43396
  */
@@ -43132,7 +43563,7 @@ export type OpenportalUnmanagedProjectsRetrieveData = {
43132
43563
  uuid: string;
43133
43564
  };
43134
43565
  query?: {
43135
- 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'>;
43566
+ 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'>;
43136
43567
  };
43137
43568
  url: '/api/openportal-unmanaged-projects/{uuid}/';
43138
43569
  };
@@ -49801,7 +50232,7 @@ export type ProjectsListData = {
49801
50232
  * Description
49802
50233
  */
49803
50234
  description?: string;
49804
- 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'>;
50235
+ 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'>;
49805
50236
  /**
49806
50237
  * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
49807
50238
  */
@@ -50050,7 +50481,7 @@ export type ProjectsRetrieveData = {
50050
50481
  uuid: string;
50051
50482
  };
50052
50483
  query?: {
50053
- 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'>;
50484
+ 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'>;
50054
50485
  };
50055
50486
  url: '/api/projects/{uuid}/';
50056
50487
  };
@@ -57604,6 +58035,21 @@ export type UserGroupInvitationsCreateResponses = {
57604
58035
  201: GroupInvitation;
57605
58036
  };
57606
58037
  export type UserGroupInvitationsCreateResponse = UserGroupInvitationsCreateResponses[keyof UserGroupInvitationsCreateResponses];
58038
+ export type UserGroupInvitationsDestroyData = {
58039
+ body?: never;
58040
+ path: {
58041
+ uuid: string;
58042
+ };
58043
+ query?: never;
58044
+ url: '/api/user-group-invitations/{uuid}/';
58045
+ };
58046
+ export type UserGroupInvitationsDestroyResponses = {
58047
+ /**
58048
+ * No response body
58049
+ */
58050
+ 204: void;
58051
+ };
58052
+ export type UserGroupInvitationsDestroyResponse = UserGroupInvitationsDestroyResponses[keyof UserGroupInvitationsDestroyResponses];
57607
58053
  export type UserGroupInvitationsRetrieveData = {
57608
58054
  body?: never;
57609
58055
  path: {