waldur-js-client 7.8.3-dev.7 → 7.8.3-dev.9

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.
@@ -1098,7 +1098,7 @@ export type CallRound = {
1098
1098
  cutoff_time: string;
1099
1099
  readonly call_uuid: string;
1100
1100
  readonly call_name: string;
1101
- status: StatusEnum;
1101
+ status: RoundStatus;
1102
1102
  };
1103
1103
  export type CallStates = 'draft' | 'active' | 'archived';
1104
1104
  export type Campaign = {
@@ -1757,6 +1757,11 @@ export type ConstanceSettings = {
1757
1757
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
1758
1758
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
1759
1759
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
1760
+ ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
1761
+ ONBOARDING_ARIREGISTER_BASE_URL?: string;
1762
+ ONBOARDING_ARIREGISTER_USERNAME?: string;
1763
+ ONBOARDING_ARIREGISTER_PASSWORD?: string;
1764
+ ONBOARDING_ARIREGISTER_TIMEOUT?: number;
1760
1765
  };
1761
1766
  export type ConstanceSettingsRequest = {
1762
1767
  SITE_NAME?: string;
@@ -1895,6 +1900,11 @@ export type ConstanceSettingsRequest = {
1895
1900
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
1896
1901
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
1897
1902
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
1903
+ ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
1904
+ ONBOARDING_ARIREGISTER_BASE_URL?: string;
1905
+ ONBOARDING_ARIREGISTER_USERNAME?: string;
1906
+ ONBOARDING_ARIREGISTER_PASSWORD?: string;
1907
+ ONBOARDING_ARIREGISTER_TIMEOUT?: number;
1898
1908
  };
1899
1909
  export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
1900
1910
  export type CoreAuthToken = {
@@ -2062,6 +2072,7 @@ export type Customer = {
2062
2072
  image?: string | null;
2063
2073
  readonly blocked?: boolean;
2064
2074
  readonly archived?: boolean;
2075
+ readonly display_billing_info_in_projects?: boolean;
2065
2076
  readonly default_tax_percent?: string;
2066
2077
  /**
2067
2078
  * Start date of accounting
@@ -3867,6 +3878,14 @@ export type MergedPluginOptions = {
3867
3878
  * GLAuth homedir prefix
3868
3879
  */
3869
3880
  homedir_prefix?: string;
3881
+ /**
3882
+ * HEAppE scratch project directory
3883
+ */
3884
+ scratch_project_directory?: string;
3885
+ /**
3886
+ * HEAppE project permanent directory
3887
+ */
3888
+ project_permanent_directory?: string;
3870
3889
  /**
3871
3890
  * GLAuth initial primary group number
3872
3891
  */
@@ -4029,6 +4048,14 @@ export type MergedPluginOptionsRequest = {
4029
4048
  * GLAuth homedir prefix
4030
4049
  */
4031
4050
  homedir_prefix?: string;
4051
+ /**
4052
+ * HEAppE scratch project directory
4053
+ */
4054
+ scratch_project_directory?: string;
4055
+ /**
4056
+ * HEAppE project permanent directory
4057
+ */
4058
+ project_permanent_directory?: string;
4032
4059
  /**
4033
4060
  * GLAuth initial primary group number
4034
4061
  */
@@ -4674,7 +4701,7 @@ export type NestedRound = {
4674
4701
  readonly name?: string;
4675
4702
  start_time?: string;
4676
4703
  cutoff_time?: string;
4677
- status?: StatusEnum;
4704
+ status?: RoundStatus;
4678
4705
  review_strategy?: ReviewStrategyEnum;
4679
4706
  deciding_entity?: DecidingEntityEnum;
4680
4707
  allocation_time?: AllocationTimeEnum;
@@ -4818,9 +4845,9 @@ export type Notification = {
4818
4845
  readonly templates: Array<NotificationTemplateDetailSerializers>;
4819
4846
  /**
4820
4847
  * Finds the notification definition in the global NOTIFICATIONS
4821
- * dictionary and returns its 'context' fields.
4848
+ * dictionary and returns its 'context' schema.
4822
4849
  */
4823
- readonly context_fields: {
4850
+ readonly context_schema: {
4824
4851
  [key: string]: unknown;
4825
4852
  };
4826
4853
  };
@@ -4971,6 +4998,10 @@ export type OfferingComponent = {
4971
4998
  default_limit?: number | null;
4972
4999
  readonly factor?: number | null;
4973
5000
  readonly is_builtin?: boolean;
5001
+ is_prepaid?: boolean;
5002
+ overage_component?: string | null;
5003
+ min_prepaid_duration?: number | null;
5004
+ max_prepaid_duration?: number | null;
4974
5005
  };
4975
5006
  export type OfferingComponentLimit = {
4976
5007
  min: number;
@@ -5009,6 +5040,10 @@ export type OfferingComponentRequest = {
5009
5040
  max_available_limit?: number | null;
5010
5041
  is_boolean?: boolean;
5011
5042
  default_limit?: number | null;
5043
+ is_prepaid?: boolean;
5044
+ overage_component?: string | null;
5045
+ min_prepaid_duration?: number | null;
5046
+ max_prepaid_duration?: number | null;
5012
5047
  };
5013
5048
  export type OfferingComponentStat = {
5014
5049
  readonly period: string;
@@ -5470,6 +5505,160 @@ export type OfferingUserStateTransitionRequest = {
5470
5505
  export type OfferingUserUpdateRestrictionRequest = {
5471
5506
  is_restricted: boolean;
5472
5507
  };
5508
+ export type OnboardingCompanyValidationRequestRequest = {
5509
+ /**
5510
+ * ISO country code (e.g., 'EE' for Estonia)
5511
+ */
5512
+ country: string;
5513
+ /**
5514
+ * Official company registration code
5515
+ */
5516
+ legal_person_identifier: string;
5517
+ /**
5518
+ * Company name (optional, for reference)
5519
+ */
5520
+ legal_name?: string;
5521
+ /**
5522
+ * Optional customer metadata for manual verification cases. Should contain valid Customer model fields.
5523
+ */
5524
+ user_submitted_customer_metadata?: unknown;
5525
+ };
5526
+ export type OnboardingJustification = {
5527
+ readonly uuid: string;
5528
+ verification: number;
5529
+ user: number;
5530
+ /**
5531
+ * User's explanation for why they should be authorized
5532
+ */
5533
+ user_justification: string;
5534
+ readonly validated_by: number | null;
5535
+ readonly validated_at: string | null;
5536
+ validation_decision: ValidationDecisionEnum;
5537
+ /**
5538
+ * Administrator notes on the review decision
5539
+ */
5540
+ readonly staff_notes: string;
5541
+ readonly supporting_documentation: Array<OnboardingJustificationDocumentation>;
5542
+ readonly created: string;
5543
+ readonly modified: string;
5544
+ };
5545
+ export type OnboardingJustificationCreateRequest = {
5546
+ /**
5547
+ * UUID of the OnboardingVerification to justify
5548
+ */
5549
+ verification_uuid: string;
5550
+ /**
5551
+ * User's explanation for why they should be authorized
5552
+ */
5553
+ user_justification: string;
5554
+ };
5555
+ export type OnboardingJustificationDocumentation = {
5556
+ readonly uuid: string;
5557
+ /**
5558
+ * Upload supporting documentation.
5559
+ */
5560
+ file?: string | null;
5561
+ readonly file_name: string;
5562
+ readonly file_size: number;
5563
+ readonly created: string;
5564
+ };
5565
+ export type OnboardingJustificationDocumentationRequest = {
5566
+ /**
5567
+ * Upload supporting documentation.
5568
+ */
5569
+ file?: (Blob | File) | null;
5570
+ };
5571
+ export type OnboardingJustificationRequest = {
5572
+ verification: number;
5573
+ user: number;
5574
+ /**
5575
+ * User's explanation for why they should be authorized
5576
+ */
5577
+ user_justification: string;
5578
+ };
5579
+ export type OnboardingVerification = {
5580
+ readonly uuid: string;
5581
+ /**
5582
+ * User requesting company onboarding
5583
+ */
5584
+ user: number;
5585
+ /**
5586
+ * ISO country code (e.g., 'EE' for Estonia)
5587
+ */
5588
+ country: string;
5589
+ /**
5590
+ * Official company registration code
5591
+ */
5592
+ legal_person_identifier: string;
5593
+ /**
5594
+ * Claimed company name (optional, for reference)
5595
+ */
5596
+ legal_name?: string;
5597
+ /**
5598
+ * Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
5599
+ */
5600
+ user_submitted_customer_metadata?: unknown;
5601
+ status: OnboardingVerificationStatusEnum;
5602
+ /**
5603
+ * Method used for validation
5604
+ */
5605
+ validation_method: ValidationMethodEnum;
5606
+ /**
5607
+ * Roles the user has in the company
5608
+ */
5609
+ readonly verified_user_roles: unknown;
5610
+ /**
5611
+ * Company information retrieved during validation
5612
+ */
5613
+ readonly verified_company_data: unknown;
5614
+ /**
5615
+ * Raw API response for debugging and auditing
5616
+ */
5617
+ readonly raw_response: unknown;
5618
+ readonly error_traceback: string;
5619
+ readonly error_message: string;
5620
+ /**
5621
+ * When validation was completed
5622
+ */
5623
+ readonly validated_at: string | null;
5624
+ /**
5625
+ * When this verification expires
5626
+ */
5627
+ expires_at?: string | null;
5628
+ /**
5629
+ * Customer created after successful validation
5630
+ */
5631
+ readonly customer: number | null;
5632
+ readonly created: string;
5633
+ readonly modified: string;
5634
+ };
5635
+ export type OnboardingVerificationRequest = {
5636
+ /**
5637
+ * User requesting company onboarding
5638
+ */
5639
+ user: number;
5640
+ /**
5641
+ * ISO country code (e.g., 'EE' for Estonia)
5642
+ */
5643
+ country: string;
5644
+ /**
5645
+ * Official company registration code
5646
+ */
5647
+ legal_person_identifier: string;
5648
+ /**
5649
+ * Claimed company name (optional, for reference)
5650
+ */
5651
+ legal_name?: string;
5652
+ /**
5653
+ * Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
5654
+ */
5655
+ user_submitted_customer_metadata?: unknown;
5656
+ /**
5657
+ * When this verification expires
5658
+ */
5659
+ expires_at?: string | null;
5660
+ };
5661
+ export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
5473
5662
  export type OpenStackAllowedAddressPair = {
5474
5663
  mac_address?: string;
5475
5664
  };
@@ -7751,6 +7940,40 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
7751
7940
  */
7752
7941
  service_provider_comment_url?: string;
7753
7942
  };
7943
+ export type PatchedOnboardingJustificationRequest = {
7944
+ verification?: number;
7945
+ user?: number;
7946
+ /**
7947
+ * User's explanation for why they should be authorized
7948
+ */
7949
+ user_justification?: string;
7950
+ };
7951
+ export type PatchedOnboardingVerificationRequest = {
7952
+ /**
7953
+ * User requesting company onboarding
7954
+ */
7955
+ user?: number;
7956
+ /**
7957
+ * ISO country code (e.g., 'EE' for Estonia)
7958
+ */
7959
+ country?: string;
7960
+ /**
7961
+ * Official company registration code
7962
+ */
7963
+ legal_person_identifier?: string;
7964
+ /**
7965
+ * Claimed company name (optional, for reference)
7966
+ */
7967
+ legal_name?: string;
7968
+ /**
7969
+ * Additional customer metadata submitted by user for manual verification cases. Should contain valid Customer model fields.
7970
+ */
7971
+ user_submitted_customer_metadata?: unknown;
7972
+ /**
7973
+ * When this verification expires
7974
+ */
7975
+ expires_at?: string | null;
7976
+ };
7754
7977
  export type PatchedOpenStackBackupRequest = {
7755
7978
  name?: string;
7756
7979
  description?: string;
@@ -8513,6 +8736,7 @@ export type Project = {
8513
8736
  readonly customer_native_name?: string;
8514
8737
  readonly customer_abbreviation?: string;
8515
8738
  description?: string;
8739
+ readonly customer_display_billing_info_in_projects?: boolean;
8516
8740
  readonly created?: string;
8517
8741
  /**
8518
8742
  * Project type
@@ -9052,7 +9276,7 @@ export type ProtectedRound = {
9052
9276
  readonly name: string;
9053
9277
  start_time: string;
9054
9278
  cutoff_time: string;
9055
- status: StatusEnum;
9279
+ status: RoundStatus;
9056
9280
  review_strategy?: ReviewStrategyEnum;
9057
9281
  deciding_entity?: DecidingEntityEnum;
9058
9282
  allocation_time?: AllocationTimeEnum;
@@ -10832,6 +11056,18 @@ export type ResourcePlanPeriod = {
10832
11056
  end?: string | null;
10833
11057
  components: Array<BaseComponentUsage>;
10834
11058
  };
11059
+ export type ResourceRenewRequest = {
11060
+ /**
11061
+ * Number of months to extend the subscription by.
11062
+ */
11063
+ extension_months: number;
11064
+ /**
11065
+ * Optional new limits for the resource. Supports upgrades only.
11066
+ */
11067
+ limits?: {
11068
+ [key: string]: number;
11069
+ };
11070
+ };
10835
11071
  export type ResourceReportRequest = {
10836
11072
  report: Array<ReportSectionRequest>;
10837
11073
  };
@@ -11305,6 +11541,7 @@ export type RoundReviewer = {
11305
11541
  rejected_proposals: number;
11306
11542
  in_review_proposals: number;
11307
11543
  };
11544
+ export type RoundStatus = 'scheduled' | 'open' | 'ended';
11308
11545
  export type Rule = {
11309
11546
  name: string;
11310
11547
  readonly uuid: string;
@@ -11642,7 +11879,6 @@ export type StateTransitionError = {
11642
11879
  */
11643
11880
  detail: string;
11644
11881
  };
11645
- export type StatusEnum = 'scheduled' | 'open' | 'ended';
11646
11882
  export type StorageModeEnum = 'fixed' | 'dynamic';
11647
11883
  export type SubNetMapping = {
11648
11884
  src_cidr: string;
@@ -11775,6 +12011,10 @@ export type UpdateOfferingComponentRequest = {
11775
12011
  max_available_limit?: number | null;
11776
12012
  is_boolean?: boolean;
11777
12013
  default_limit?: number | null;
12014
+ is_prepaid?: boolean;
12015
+ overage_component?: string | null;
12016
+ min_prepaid_duration?: number | null;
12017
+ max_prepaid_duration?: number | null;
11778
12018
  };
11779
12019
  export type User = {
11780
12020
  readonly url?: string;
@@ -12036,6 +12276,8 @@ export type UserRoleUpdateRequest = {
12036
12276
  expiration_time?: string | null;
12037
12277
  };
12038
12278
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
12279
+ export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
12280
+ export type ValidationMethodEnum = 'ariregister';
12039
12281
  export type Version = {
12040
12282
  /**
12041
12283
  * Current installed version of the application
@@ -13021,6 +13263,18 @@ export type PatchedServiceProviderRequestMultipart = {
13021
13263
  enable_notifications?: boolean;
13022
13264
  image?: (Blob | File) | null;
13023
13265
  };
13266
+ export type OnboardingJustificationDocumentationRequestForm = {
13267
+ /**
13268
+ * Upload supporting documentation.
13269
+ */
13270
+ file?: (Blob | File) | null;
13271
+ };
13272
+ export type OnboardingJustificationDocumentationRequestMultipart = {
13273
+ /**
13274
+ * Upload supporting documentation.
13275
+ */
13276
+ file?: (Blob | File) | null;
13277
+ };
13024
13278
  export type ConstanceSettingsRequestForm = {
13025
13279
  SITE_NAME?: string;
13026
13280
  SITE_DESCRIPTION?: string;
@@ -13158,6 +13412,11 @@ export type ConstanceSettingsRequestForm = {
13158
13412
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
13159
13413
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
13160
13414
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
13415
+ ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
13416
+ ONBOARDING_ARIREGISTER_BASE_URL?: string;
13417
+ ONBOARDING_ARIREGISTER_USERNAME?: string;
13418
+ ONBOARDING_ARIREGISTER_PASSWORD?: string;
13419
+ ONBOARDING_ARIREGISTER_TIMEOUT?: number;
13161
13420
  };
13162
13421
  export type ConstanceSettingsRequestMultipart = {
13163
13422
  SITE_NAME?: string;
@@ -13296,6 +13555,11 @@ export type ConstanceSettingsRequestMultipart = {
13296
13555
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
13297
13556
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
13298
13557
  ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
13558
+ ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
13559
+ ONBOARDING_ARIREGISTER_BASE_URL?: string;
13560
+ ONBOARDING_ARIREGISTER_USERNAME?: string;
13561
+ ONBOARDING_ARIREGISTER_PASSWORD?: string;
13562
+ ONBOARDING_ARIREGISTER_TIMEOUT?: number;
13299
13563
  };
13300
13564
  export type PaymentRequestForm = {
13301
13565
  profile: string;
@@ -18169,7 +18433,7 @@ export type CustomersListData = {
18169
18433
  archived?: boolean;
18170
18434
  backend_id?: string;
18171
18435
  contact_details?: string;
18172
- 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_name' | 'domain' | 'email' | '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' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18436
+ 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' | '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' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18173
18437
  name?: string;
18174
18438
  name_exact?: string;
18175
18439
  native_name?: string;
@@ -18447,7 +18711,7 @@ export type CustomersRetrieveData = {
18447
18711
  uuid: string;
18448
18712
  };
18449
18713
  query?: {
18450
- 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_name' | 'domain' | 'email' | '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' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18714
+ 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' | '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' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
18451
18715
  };
18452
18716
  url: '/api/customers/{uuid}/';
18453
18717
  };
@@ -28577,6 +28841,18 @@ export type MarketplaceResourcesPullResponses = {
28577
28841
  };
28578
28842
  };
28579
28843
  export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
28844
+ export type MarketplaceResourcesRenewData = {
28845
+ body: ResourceRenewRequest;
28846
+ path: {
28847
+ uuid: string;
28848
+ };
28849
+ query?: never;
28850
+ url: '/api/marketplace-resources/{uuid}/renew/';
28851
+ };
28852
+ export type MarketplaceResourcesRenewResponses = {
28853
+ 200: OrderUuid;
28854
+ };
28855
+ export type MarketplaceResourcesRenewResponse = MarketplaceResourcesRenewResponses[keyof MarketplaceResourcesRenewResponses];
28580
28856
  export type MarketplaceResourcesSetEndDateByStaffData = {
28581
28857
  body?: ResourceEndDateByProviderRequest;
28582
28858
  path: {
@@ -29797,7 +30073,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
29797
30073
  customer_name?: string;
29798
30074
  customer_native_name?: string;
29799
30075
  description?: string;
29800
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
30076
+ 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' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
29801
30077
  /**
29802
30078
  * Modified after
29803
30079
  */
@@ -31452,6 +31728,258 @@ export type NotificationMessagesEnableResponses = {
31452
31728
  */
31453
31729
  200: unknown;
31454
31730
  };
31731
+ export type OnboardingJustificationsListData = {
31732
+ body?: never;
31733
+ path?: never;
31734
+ query?: {
31735
+ /**
31736
+ * A page number within the paginated result set.
31737
+ */
31738
+ page?: number;
31739
+ /**
31740
+ * Number of results to return per page.
31741
+ */
31742
+ page_size?: number;
31743
+ };
31744
+ url: '/api/onboarding-justifications/';
31745
+ };
31746
+ export type OnboardingJustificationsListResponses = {
31747
+ 200: Array<OnboardingJustification>;
31748
+ };
31749
+ export type OnboardingJustificationsListResponse = OnboardingJustificationsListResponses[keyof OnboardingJustificationsListResponses];
31750
+ export type OnboardingJustificationsCountData = {
31751
+ body?: never;
31752
+ path?: never;
31753
+ query?: {
31754
+ /**
31755
+ * A page number within the paginated result set.
31756
+ */
31757
+ page?: number;
31758
+ /**
31759
+ * Number of results to return per page.
31760
+ */
31761
+ page_size?: number;
31762
+ };
31763
+ url: '/api/onboarding-justifications/';
31764
+ };
31765
+ export type OnboardingJustificationsCountResponses = {
31766
+ /**
31767
+ * No response body
31768
+ */
31769
+ 200: unknown;
31770
+ };
31771
+ export type OnboardingJustificationsCreateData = {
31772
+ body: OnboardingJustificationRequest;
31773
+ path?: never;
31774
+ query?: never;
31775
+ url: '/api/onboarding-justifications/';
31776
+ };
31777
+ export type OnboardingJustificationsCreateResponses = {
31778
+ 201: OnboardingJustification;
31779
+ };
31780
+ export type OnboardingJustificationsCreateResponse = OnboardingJustificationsCreateResponses[keyof OnboardingJustificationsCreateResponses];
31781
+ export type OnboardingJustificationsDestroyData = {
31782
+ body?: never;
31783
+ path: {
31784
+ uuid: string;
31785
+ };
31786
+ query?: never;
31787
+ url: '/api/onboarding-justifications/{uuid}/';
31788
+ };
31789
+ export type OnboardingJustificationsDestroyResponses = {
31790
+ /**
31791
+ * No response body
31792
+ */
31793
+ 204: void;
31794
+ };
31795
+ export type OnboardingJustificationsDestroyResponse = OnboardingJustificationsDestroyResponses[keyof OnboardingJustificationsDestroyResponses];
31796
+ export type OnboardingJustificationsRetrieveData = {
31797
+ body?: never;
31798
+ path: {
31799
+ uuid: string;
31800
+ };
31801
+ query?: never;
31802
+ url: '/api/onboarding-justifications/{uuid}/';
31803
+ };
31804
+ export type OnboardingJustificationsRetrieveResponses = {
31805
+ 200: OnboardingJustification;
31806
+ };
31807
+ export type OnboardingJustificationsRetrieveResponse = OnboardingJustificationsRetrieveResponses[keyof OnboardingJustificationsRetrieveResponses];
31808
+ export type OnboardingJustificationsPartialUpdateData = {
31809
+ body?: PatchedOnboardingJustificationRequest;
31810
+ path: {
31811
+ uuid: string;
31812
+ };
31813
+ query?: never;
31814
+ url: '/api/onboarding-justifications/{uuid}/';
31815
+ };
31816
+ export type OnboardingJustificationsPartialUpdateResponses = {
31817
+ 200: OnboardingJustification;
31818
+ };
31819
+ export type OnboardingJustificationsPartialUpdateResponse = OnboardingJustificationsPartialUpdateResponses[keyof OnboardingJustificationsPartialUpdateResponses];
31820
+ export type OnboardingJustificationsUpdateData = {
31821
+ body: OnboardingJustificationRequest;
31822
+ path: {
31823
+ uuid: string;
31824
+ };
31825
+ query?: never;
31826
+ url: '/api/onboarding-justifications/{uuid}/';
31827
+ };
31828
+ export type OnboardingJustificationsUpdateResponses = {
31829
+ 200: OnboardingJustification;
31830
+ };
31831
+ export type OnboardingJustificationsUpdateResponse = OnboardingJustificationsUpdateResponses[keyof OnboardingJustificationsUpdateResponses];
31832
+ export type OnboardingJustificationsAttachDocumentData = {
31833
+ body?: OnboardingJustificationDocumentationRequest;
31834
+ path: {
31835
+ uuid: string;
31836
+ };
31837
+ query?: never;
31838
+ url: '/api/onboarding-justifications/{uuid}/attach_document/';
31839
+ };
31840
+ export type OnboardingJustificationsAttachDocumentResponses = {
31841
+ 200: OnboardingJustificationDocumentation;
31842
+ };
31843
+ export type OnboardingJustificationsAttachDocumentResponse = OnboardingJustificationsAttachDocumentResponses[keyof OnboardingJustificationsAttachDocumentResponses];
31844
+ export type OnboardingJustificationsCreateJustificationData = {
31845
+ body: OnboardingJustificationCreateRequest;
31846
+ path?: never;
31847
+ query?: never;
31848
+ url: '/api/onboarding-justifications/create_justification/';
31849
+ };
31850
+ export type OnboardingJustificationsCreateJustificationResponses = {
31851
+ 200: OnboardingJustification;
31852
+ };
31853
+ export type OnboardingJustificationsCreateJustificationResponse = OnboardingJustificationsCreateJustificationResponses[keyof OnboardingJustificationsCreateJustificationResponses];
31854
+ export type OnboardingVerificationsListData = {
31855
+ body?: never;
31856
+ path?: never;
31857
+ query?: {
31858
+ /**
31859
+ * A page number within the paginated result set.
31860
+ */
31861
+ page?: number;
31862
+ /**
31863
+ * Number of results to return per page.
31864
+ */
31865
+ page_size?: number;
31866
+ };
31867
+ url: '/api/onboarding-verifications/';
31868
+ };
31869
+ export type OnboardingVerificationsListResponses = {
31870
+ 200: Array<OnboardingVerification>;
31871
+ };
31872
+ export type OnboardingVerificationsListResponse = OnboardingVerificationsListResponses[keyof OnboardingVerificationsListResponses];
31873
+ export type OnboardingVerificationsCountData = {
31874
+ body?: never;
31875
+ path?: never;
31876
+ query?: {
31877
+ /**
31878
+ * A page number within the paginated result set.
31879
+ */
31880
+ page?: number;
31881
+ /**
31882
+ * Number of results to return per page.
31883
+ */
31884
+ page_size?: number;
31885
+ };
31886
+ url: '/api/onboarding-verifications/';
31887
+ };
31888
+ export type OnboardingVerificationsCountResponses = {
31889
+ /**
31890
+ * No response body
31891
+ */
31892
+ 200: unknown;
31893
+ };
31894
+ export type OnboardingVerificationsCreateData = {
31895
+ body: OnboardingVerificationRequest;
31896
+ path?: never;
31897
+ query?: never;
31898
+ url: '/api/onboarding-verifications/';
31899
+ };
31900
+ export type OnboardingVerificationsCreateResponses = {
31901
+ 201: OnboardingVerification;
31902
+ };
31903
+ export type OnboardingVerificationsCreateResponse = OnboardingVerificationsCreateResponses[keyof OnboardingVerificationsCreateResponses];
31904
+ export type OnboardingVerificationsDestroyData = {
31905
+ body?: never;
31906
+ path: {
31907
+ uuid: string;
31908
+ };
31909
+ query?: never;
31910
+ url: '/api/onboarding-verifications/{uuid}/';
31911
+ };
31912
+ export type OnboardingVerificationsDestroyResponses = {
31913
+ /**
31914
+ * No response body
31915
+ */
31916
+ 204: void;
31917
+ };
31918
+ export type OnboardingVerificationsDestroyResponse = OnboardingVerificationsDestroyResponses[keyof OnboardingVerificationsDestroyResponses];
31919
+ export type OnboardingVerificationsRetrieveData = {
31920
+ body?: never;
31921
+ path: {
31922
+ uuid: string;
31923
+ };
31924
+ query?: never;
31925
+ url: '/api/onboarding-verifications/{uuid}/';
31926
+ };
31927
+ export type OnboardingVerificationsRetrieveResponses = {
31928
+ 200: OnboardingVerification;
31929
+ };
31930
+ export type OnboardingVerificationsRetrieveResponse = OnboardingVerificationsRetrieveResponses[keyof OnboardingVerificationsRetrieveResponses];
31931
+ export type OnboardingVerificationsPartialUpdateData = {
31932
+ body?: PatchedOnboardingVerificationRequest;
31933
+ path: {
31934
+ uuid: string;
31935
+ };
31936
+ query?: never;
31937
+ url: '/api/onboarding-verifications/{uuid}/';
31938
+ };
31939
+ export type OnboardingVerificationsPartialUpdateResponses = {
31940
+ 200: OnboardingVerification;
31941
+ };
31942
+ export type OnboardingVerificationsPartialUpdateResponse = OnboardingVerificationsPartialUpdateResponses[keyof OnboardingVerificationsPartialUpdateResponses];
31943
+ export type OnboardingVerificationsUpdateData = {
31944
+ body: OnboardingVerificationRequest;
31945
+ path: {
31946
+ uuid: string;
31947
+ };
31948
+ query?: never;
31949
+ url: '/api/onboarding-verifications/{uuid}/';
31950
+ };
31951
+ export type OnboardingVerificationsUpdateResponses = {
31952
+ 200: OnboardingVerification;
31953
+ };
31954
+ export type OnboardingVerificationsUpdateResponse = OnboardingVerificationsUpdateResponses[keyof OnboardingVerificationsUpdateResponses];
31955
+ export type OnboardingVerificationsCreateCustomerData = {
31956
+ body?: never;
31957
+ path: {
31958
+ uuid: string;
31959
+ };
31960
+ query?: never;
31961
+ url: '/api/onboarding-verifications/{uuid}/create_customer/';
31962
+ };
31963
+ export type OnboardingVerificationsCreateCustomerResponses = {
31964
+ 201: Customer;
31965
+ };
31966
+ export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
31967
+ export type OnboardingVerificationsValidateCompanyData = {
31968
+ body: OnboardingCompanyValidationRequestRequest;
31969
+ path?: never;
31970
+ query?: never;
31971
+ url: '/api/onboarding-verifications/validate_company/';
31972
+ };
31973
+ export type OnboardingVerificationsValidateCompanyResponses = {
31974
+ 200: OnboardingVerification;
31975
+ };
31976
+ export type OnboardingVerificationsValidateCompanyResponse = OnboardingVerificationsValidateCompanyResponses[keyof OnboardingVerificationsValidateCompanyResponses];
31977
+ export type OnboardingSupportedCountriesRetrieveData = {
31978
+ body?: never;
31979
+ path?: never;
31980
+ query?: never;
31981
+ url: '/api/onboarding/supported-countries/';
31982
+ };
31455
31983
  export type OpenstackBackupsListData = {
31456
31984
  body?: never;
31457
31985
  path?: never;
@@ -32710,6 +33238,8 @@ export type OpenstackNetworkRbacPoliciesListData = {
32710
33238
  policy_type?: 'access_as_external' | 'access_as_shared';
32711
33239
  target_tenant?: string;
32712
33240
  target_tenant_uuid?: string;
33241
+ tenant?: string;
33242
+ tenant_uuid?: string;
32713
33243
  };
32714
33244
  url: '/api/openstack-network-rbac-policies/';
32715
33245
  };
@@ -32739,6 +33269,8 @@ export type OpenstackNetworkRbacPoliciesCountData = {
32739
33269
  policy_type?: 'access_as_external' | 'access_as_shared';
32740
33270
  target_tenant?: string;
32741
33271
  target_tenant_uuid?: string;
33272
+ tenant?: string;
33273
+ tenant_uuid?: string;
32742
33274
  };
32743
33275
  url: '/api/openstack-network-rbac-policies/';
32744
33276
  };
@@ -35803,7 +36335,7 @@ export type ProjectsListData = {
35803
36335
  customer_name?: string;
35804
36336
  customer_native_name?: string;
35805
36337
  description?: string;
35806
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
36338
+ 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' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
35807
36339
  /**
35808
36340
  * Modified after
35809
36341
  */
@@ -35988,7 +36520,7 @@ export type ProjectsRetrieveData = {
35988
36520
  uuid: string;
35989
36521
  };
35990
36522
  query?: {
35991
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
36523
+ 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' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
35992
36524
  };
35993
36525
  url: '/api/projects/{uuid}/';
35994
36526
  };