waldur-js-client 7.7.8 → 7.7.9-dev.1
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.
- package/dist/types.gen.d.ts +86 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1728,6 +1728,7 @@ export type ConstanceSettings = {
|
|
|
1728
1728
|
SMAX_REQUESTS_OFFERING?: string;
|
|
1729
1729
|
SMAX_VERIFY_SSL?: boolean;
|
|
1730
1730
|
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
1731
|
+
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
1731
1732
|
PROPOSAL_REVIEW_DURATION?: number;
|
|
1732
1733
|
USER_TABLE_COLUMNS?: string;
|
|
1733
1734
|
AUTO_APPROVE_USER_TOS?: boolean;
|
|
@@ -1863,6 +1864,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1863
1864
|
SMAX_REQUESTS_OFFERING?: string;
|
|
1864
1865
|
SMAX_VERIFY_SSL?: boolean;
|
|
1865
1866
|
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
1867
|
+
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
1866
1868
|
PROPOSAL_REVIEW_DURATION?: number;
|
|
1867
1869
|
USER_TABLE_COLUMNS?: string;
|
|
1868
1870
|
AUTO_APPROVE_USER_TOS?: boolean;
|
|
@@ -1947,7 +1949,7 @@ export type CourseAccount = {
|
|
|
1947
1949
|
readonly project_uuid: string;
|
|
1948
1950
|
readonly project_name: string;
|
|
1949
1951
|
readonly user_uuid: string;
|
|
1950
|
-
readonly
|
|
1952
|
+
readonly username: string;
|
|
1951
1953
|
readonly customer_uuid: string;
|
|
1952
1954
|
readonly customer_name: string;
|
|
1953
1955
|
state: ServiceAccountState;
|
|
@@ -10727,7 +10729,7 @@ export type RobotAccount = {
|
|
|
10727
10729
|
description?: string;
|
|
10728
10730
|
readonly error_message?: string;
|
|
10729
10731
|
readonly error_traceback?: string;
|
|
10730
|
-
|
|
10732
|
+
state?: RobotAccountStates;
|
|
10731
10733
|
resource: string;
|
|
10732
10734
|
/**
|
|
10733
10735
|
* Type of the robot account.
|
|
@@ -10751,7 +10753,7 @@ export type RobotAccountDetails = {
|
|
|
10751
10753
|
description?: string;
|
|
10752
10754
|
readonly error_message?: string;
|
|
10753
10755
|
readonly error_traceback?: string;
|
|
10754
|
-
|
|
10756
|
+
state?: RobotAccountStates;
|
|
10755
10757
|
resource?: string;
|
|
10756
10758
|
/**
|
|
10757
10759
|
* Type of the robot account.
|
|
@@ -10793,6 +10795,7 @@ export type RobotAccountRequest = {
|
|
|
10793
10795
|
keys?: unknown;
|
|
10794
10796
|
responsible_user?: string | null;
|
|
10795
10797
|
};
|
|
10798
|
+
export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
|
|
10796
10799
|
export type RoleDescription = {
|
|
10797
10800
|
description?: string;
|
|
10798
10801
|
/**
|
|
@@ -24430,6 +24433,14 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
24430
24433
|
customer_uuid?: string;
|
|
24431
24434
|
description?: string;
|
|
24432
24435
|
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24436
|
+
/**
|
|
24437
|
+
* Has Active Terms of Service
|
|
24438
|
+
*/
|
|
24439
|
+
has_active_terms_of_service?: boolean;
|
|
24440
|
+
/**
|
|
24441
|
+
* Has Terms of Service
|
|
24442
|
+
*/
|
|
24443
|
+
has_terms_of_service?: boolean;
|
|
24433
24444
|
/**
|
|
24434
24445
|
* Keyword
|
|
24435
24446
|
*/
|
|
@@ -24513,6 +24524,14 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
24513
24524
|
customer?: string;
|
|
24514
24525
|
customer_uuid?: string;
|
|
24515
24526
|
description?: string;
|
|
24527
|
+
/**
|
|
24528
|
+
* Has Active Terms of Service
|
|
24529
|
+
*/
|
|
24530
|
+
has_active_terms_of_service?: boolean;
|
|
24531
|
+
/**
|
|
24532
|
+
* Has Terms of Service
|
|
24533
|
+
*/
|
|
24534
|
+
has_terms_of_service?: boolean;
|
|
24516
24535
|
/**
|
|
24517
24536
|
* Keyword
|
|
24518
24537
|
*/
|
|
@@ -24691,6 +24710,14 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
24691
24710
|
* End date in format YYYY-MM.
|
|
24692
24711
|
*/
|
|
24693
24712
|
end?: string;
|
|
24713
|
+
/**
|
|
24714
|
+
* Has Active Terms of Service
|
|
24715
|
+
*/
|
|
24716
|
+
has_active_terms_of_service?: boolean;
|
|
24717
|
+
/**
|
|
24718
|
+
* Has Terms of Service
|
|
24719
|
+
*/
|
|
24720
|
+
has_terms_of_service?: boolean;
|
|
24694
24721
|
/**
|
|
24695
24722
|
* Keyword
|
|
24696
24723
|
*/
|
|
@@ -24785,6 +24812,14 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
24785
24812
|
* End date in format YYYY-MM.
|
|
24786
24813
|
*/
|
|
24787
24814
|
end?: string;
|
|
24815
|
+
/**
|
|
24816
|
+
* Has Active Terms of Service
|
|
24817
|
+
*/
|
|
24818
|
+
has_active_terms_of_service?: boolean;
|
|
24819
|
+
/**
|
|
24820
|
+
* Has Terms of Service
|
|
24821
|
+
*/
|
|
24822
|
+
has_terms_of_service?: boolean;
|
|
24788
24823
|
/**
|
|
24789
24824
|
* Keyword
|
|
24790
24825
|
*/
|
|
@@ -24888,6 +24923,14 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
24888
24923
|
customer?: string;
|
|
24889
24924
|
customer_uuid?: string;
|
|
24890
24925
|
description?: string;
|
|
24926
|
+
/**
|
|
24927
|
+
* Has Active Terms of Service
|
|
24928
|
+
*/
|
|
24929
|
+
has_active_terms_of_service?: boolean;
|
|
24930
|
+
/**
|
|
24931
|
+
* Has Terms of Service
|
|
24932
|
+
*/
|
|
24933
|
+
has_terms_of_service?: boolean;
|
|
24891
24934
|
/**
|
|
24892
24935
|
* Keyword
|
|
24893
24936
|
*/
|
|
@@ -25553,6 +25596,14 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
25553
25596
|
customer?: string;
|
|
25554
25597
|
customer_uuid?: string;
|
|
25555
25598
|
description?: string;
|
|
25599
|
+
/**
|
|
25600
|
+
* Has Active Terms of Service
|
|
25601
|
+
*/
|
|
25602
|
+
has_active_terms_of_service?: boolean;
|
|
25603
|
+
/**
|
|
25604
|
+
* Has Terms of Service
|
|
25605
|
+
*/
|
|
25606
|
+
has_terms_of_service?: boolean;
|
|
25556
25607
|
/**
|
|
25557
25608
|
* Keyword
|
|
25558
25609
|
*/
|
|
@@ -25636,6 +25687,14 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
25636
25687
|
customer?: string;
|
|
25637
25688
|
customer_uuid?: string;
|
|
25638
25689
|
description?: string;
|
|
25690
|
+
/**
|
|
25691
|
+
* Has Active Terms of Service
|
|
25692
|
+
*/
|
|
25693
|
+
has_active_terms_of_service?: boolean;
|
|
25694
|
+
/**
|
|
25695
|
+
* Has Terms of Service
|
|
25696
|
+
*/
|
|
25697
|
+
has_terms_of_service?: boolean;
|
|
25639
25698
|
/**
|
|
25640
25699
|
* Keyword
|
|
25641
25700
|
*/
|
|
@@ -26217,6 +26276,14 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
26217
26276
|
customer_uuid?: string;
|
|
26218
26277
|
description?: string;
|
|
26219
26278
|
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
26279
|
+
/**
|
|
26280
|
+
* Has Active Terms of Service
|
|
26281
|
+
*/
|
|
26282
|
+
has_active_terms_of_service?: boolean;
|
|
26283
|
+
/**
|
|
26284
|
+
* Has Terms of Service
|
|
26285
|
+
*/
|
|
26286
|
+
has_terms_of_service?: boolean;
|
|
26220
26287
|
/**
|
|
26221
26288
|
* Keyword
|
|
26222
26289
|
*/
|
|
@@ -26300,6 +26367,14 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
26300
26367
|
customer?: string;
|
|
26301
26368
|
customer_uuid?: string;
|
|
26302
26369
|
description?: string;
|
|
26370
|
+
/**
|
|
26371
|
+
* Has Active Terms of Service
|
|
26372
|
+
*/
|
|
26373
|
+
has_active_terms_of_service?: boolean;
|
|
26374
|
+
/**
|
|
26375
|
+
* Has Terms of Service
|
|
26376
|
+
*/
|
|
26377
|
+
has_terms_of_service?: boolean;
|
|
26303
26378
|
/**
|
|
26304
26379
|
* Keyword
|
|
26305
26380
|
*/
|
|
@@ -27945,6 +28020,14 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
27945
28020
|
customer_uuid?: string;
|
|
27946
28021
|
description?: string;
|
|
27947
28022
|
field?: Array<'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'type' | 'uuid'>;
|
|
28023
|
+
/**
|
|
28024
|
+
* Has Active Terms of Service
|
|
28025
|
+
*/
|
|
28026
|
+
has_active_terms_of_service?: boolean;
|
|
28027
|
+
/**
|
|
28028
|
+
* Has Terms of Service
|
|
28029
|
+
*/
|
|
28030
|
+
has_terms_of_service?: boolean;
|
|
27948
28031
|
/**
|
|
27949
28032
|
* Keyword
|
|
27950
28033
|
*/
|