waldur-js-client 7.8.3-dev.8 → 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 = {
@@ -3868,6 +3878,14 @@ export type MergedPluginOptions = {
3868
3878
  * GLAuth homedir prefix
3869
3879
  */
3870
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;
3871
3889
  /**
3872
3890
  * GLAuth initial primary group number
3873
3891
  */
@@ -4030,6 +4048,14 @@ export type MergedPluginOptionsRequest = {
4030
4048
  * GLAuth homedir prefix
4031
4049
  */
4032
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;
4033
4059
  /**
4034
4060
  * GLAuth initial primary group number
4035
4061
  */
@@ -4675,7 +4701,7 @@ export type NestedRound = {
4675
4701
  readonly name?: string;
4676
4702
  start_time?: string;
4677
4703
  cutoff_time?: string;
4678
- status?: StatusEnum;
4704
+ status?: RoundStatus;
4679
4705
  review_strategy?: ReviewStrategyEnum;
4680
4706
  deciding_entity?: DecidingEntityEnum;
4681
4707
  allocation_time?: AllocationTimeEnum;
@@ -4819,9 +4845,9 @@ export type Notification = {
4819
4845
  readonly templates: Array<NotificationTemplateDetailSerializers>;
4820
4846
  /**
4821
4847
  * Finds the notification definition in the global NOTIFICATIONS
4822
- * dictionary and returns its 'context' fields.
4848
+ * dictionary and returns its 'context' schema.
4823
4849
  */
4824
- readonly context_fields: {
4850
+ readonly context_schema: {
4825
4851
  [key: string]: unknown;
4826
4852
  };
4827
4853
  };
@@ -4972,6 +4998,10 @@ export type OfferingComponent = {
4972
4998
  default_limit?: number | null;
4973
4999
  readonly factor?: number | null;
4974
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;
4975
5005
  };
4976
5006
  export type OfferingComponentLimit = {
4977
5007
  min: number;
@@ -5010,6 +5040,10 @@ export type OfferingComponentRequest = {
5010
5040
  max_available_limit?: number | null;
5011
5041
  is_boolean?: boolean;
5012
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;
5013
5047
  };
5014
5048
  export type OfferingComponentStat = {
5015
5049
  readonly period: string;
@@ -5471,6 +5505,160 @@ export type OfferingUserStateTransitionRequest = {
5471
5505
  export type OfferingUserUpdateRestrictionRequest = {
5472
5506
  is_restricted: boolean;
5473
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';
5474
5662
  export type OpenStackAllowedAddressPair = {
5475
5663
  mac_address?: string;
5476
5664
  };
@@ -7752,6 +7940,40 @@ export type PatchedOfferingUserServiceProviderCommentRequest = {
7752
7940
  */
7753
7941
  service_provider_comment_url?: string;
7754
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
+ };
7755
7977
  export type PatchedOpenStackBackupRequest = {
7756
7978
  name?: string;
7757
7979
  description?: string;
@@ -9054,7 +9276,7 @@ export type ProtectedRound = {
9054
9276
  readonly name: string;
9055
9277
  start_time: string;
9056
9278
  cutoff_time: string;
9057
- status: StatusEnum;
9279
+ status: RoundStatus;
9058
9280
  review_strategy?: ReviewStrategyEnum;
9059
9281
  deciding_entity?: DecidingEntityEnum;
9060
9282
  allocation_time?: AllocationTimeEnum;
@@ -10834,6 +11056,18 @@ export type ResourcePlanPeriod = {
10834
11056
  end?: string | null;
10835
11057
  components: Array<BaseComponentUsage>;
10836
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
+ };
10837
11071
  export type ResourceReportRequest = {
10838
11072
  report: Array<ReportSectionRequest>;
10839
11073
  };
@@ -11307,6 +11541,7 @@ export type RoundReviewer = {
11307
11541
  rejected_proposals: number;
11308
11542
  in_review_proposals: number;
11309
11543
  };
11544
+ export type RoundStatus = 'scheduled' | 'open' | 'ended';
11310
11545
  export type Rule = {
11311
11546
  name: string;
11312
11547
  readonly uuid: string;
@@ -11644,7 +11879,6 @@ export type StateTransitionError = {
11644
11879
  */
11645
11880
  detail: string;
11646
11881
  };
11647
- export type StatusEnum = 'scheduled' | 'open' | 'ended';
11648
11882
  export type StorageModeEnum = 'fixed' | 'dynamic';
11649
11883
  export type SubNetMapping = {
11650
11884
  src_cidr: string;
@@ -11777,6 +12011,10 @@ export type UpdateOfferingComponentRequest = {
11777
12011
  max_available_limit?: number | null;
11778
12012
  is_boolean?: boolean;
11779
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;
11780
12018
  };
11781
12019
  export type User = {
11782
12020
  readonly url?: string;
@@ -12038,6 +12276,8 @@ export type UserRoleUpdateRequest = {
12038
12276
  expiration_time?: string | null;
12039
12277
  };
12040
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';
12041
12281
  export type Version = {
12042
12282
  /**
12043
12283
  * Current installed version of the application
@@ -13023,6 +13263,18 @@ export type PatchedServiceProviderRequestMultipart = {
13023
13263
  enable_notifications?: boolean;
13024
13264
  image?: (Blob | File) | null;
13025
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
+ };
13026
13278
  export type ConstanceSettingsRequestForm = {
13027
13279
  SITE_NAME?: string;
13028
13280
  SITE_DESCRIPTION?: string;
@@ -13160,6 +13412,11 @@ export type ConstanceSettingsRequestForm = {
13160
13412
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
13161
13413
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
13162
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;
13163
13420
  };
13164
13421
  export type ConstanceSettingsRequestMultipart = {
13165
13422
  SITE_NAME?: string;
@@ -13298,6 +13555,11 @@ export type ConstanceSettingsRequestMultipart = {
13298
13555
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
13299
13556
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
13300
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;
13301
13563
  };
13302
13564
  export type PaymentRequestForm = {
13303
13565
  profile: string;
@@ -28579,6 +28841,18 @@ export type MarketplaceResourcesPullResponses = {
28579
28841
  };
28580
28842
  };
28581
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];
28582
28856
  export type MarketplaceResourcesSetEndDateByStaffData = {
28583
28857
  body?: ResourceEndDateByProviderRequest;
28584
28858
  path: {
@@ -31454,6 +31728,258 @@ export type NotificationMessagesEnableResponses = {
31454
31728
  */
31455
31729
  200: unknown;
31456
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
+ };
31457
31983
  export type OpenstackBackupsListData = {
31458
31984
  body?: never;
31459
31985
  path?: never;
@@ -32712,6 +33238,8 @@ export type OpenstackNetworkRbacPoliciesListData = {
32712
33238
  policy_type?: 'access_as_external' | 'access_as_shared';
32713
33239
  target_tenant?: string;
32714
33240
  target_tenant_uuid?: string;
33241
+ tenant?: string;
33242
+ tenant_uuid?: string;
32715
33243
  };
32716
33244
  url: '/api/openstack-network-rbac-policies/';
32717
33245
  };
@@ -32741,6 +33269,8 @@ export type OpenstackNetworkRbacPoliciesCountData = {
32741
33269
  policy_type?: 'access_as_external' | 'access_as_shared';
32742
33270
  target_tenant?: string;
32743
33271
  target_tenant_uuid?: string;
33272
+ tenant?: string;
33273
+ tenant_uuid?: string;
32744
33274
  };
32745
33275
  url: '/api/openstack-network-rbac-policies/';
32746
33276
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.3-dev.8",
3
+ "version": "7.8.3-dev.9",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",