waldur-js-client 7.7.9-dev.0 → 7.7.9-dev.2
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 -4
- 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;
|
|
@@ -1954,7 +1956,7 @@ export type CourseAccount = {
|
|
|
1954
1956
|
email?: string;
|
|
1955
1957
|
description?: string;
|
|
1956
1958
|
readonly error_message: string;
|
|
1957
|
-
error_traceback
|
|
1959
|
+
readonly error_traceback: string;
|
|
1958
1960
|
};
|
|
1959
1961
|
export type CourseAccountCreateNested = {
|
|
1960
1962
|
email?: string;
|
|
@@ -1968,7 +1970,6 @@ export type CourseAccountRequest = {
|
|
|
1968
1970
|
project: string;
|
|
1969
1971
|
email?: string;
|
|
1970
1972
|
description?: string;
|
|
1971
|
-
error_traceback?: string;
|
|
1972
1973
|
};
|
|
1973
1974
|
export type CourseAccountsBulkCreate = {
|
|
1974
1975
|
course_accounts: Array<CourseAccountCreateNested>;
|
|
@@ -10727,7 +10728,7 @@ export type RobotAccount = {
|
|
|
10727
10728
|
description?: string;
|
|
10728
10729
|
readonly error_message?: string;
|
|
10729
10730
|
readonly error_traceback?: string;
|
|
10730
|
-
|
|
10731
|
+
state?: RobotAccountStates;
|
|
10731
10732
|
resource: string;
|
|
10732
10733
|
/**
|
|
10733
10734
|
* Type of the robot account.
|
|
@@ -10751,7 +10752,7 @@ export type RobotAccountDetails = {
|
|
|
10751
10752
|
description?: string;
|
|
10752
10753
|
readonly error_message?: string;
|
|
10753
10754
|
readonly error_traceback?: string;
|
|
10754
|
-
|
|
10755
|
+
state?: RobotAccountStates;
|
|
10755
10756
|
resource?: string;
|
|
10756
10757
|
/**
|
|
10757
10758
|
* Type of the robot account.
|
|
@@ -10793,6 +10794,7 @@ export type RobotAccountRequest = {
|
|
|
10793
10794
|
keys?: unknown;
|
|
10794
10795
|
responsible_user?: string | null;
|
|
10795
10796
|
};
|
|
10797
|
+
export type RobotAccountStates = 1 | 2 | 3 | 4 | 5 | 6;
|
|
10796
10798
|
export type RoleDescription = {
|
|
10797
10799
|
description?: string;
|
|
10798
10800
|
/**
|
|
@@ -24430,6 +24432,14 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
24430
24432
|
customer_uuid?: string;
|
|
24431
24433
|
description?: string;
|
|
24432
24434
|
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'>;
|
|
24435
|
+
/**
|
|
24436
|
+
* Has Active Terms of Service
|
|
24437
|
+
*/
|
|
24438
|
+
has_active_terms_of_service?: boolean;
|
|
24439
|
+
/**
|
|
24440
|
+
* Has Terms of Service
|
|
24441
|
+
*/
|
|
24442
|
+
has_terms_of_service?: boolean;
|
|
24433
24443
|
/**
|
|
24434
24444
|
* Keyword
|
|
24435
24445
|
*/
|
|
@@ -24513,6 +24523,14 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
24513
24523
|
customer?: string;
|
|
24514
24524
|
customer_uuid?: string;
|
|
24515
24525
|
description?: string;
|
|
24526
|
+
/**
|
|
24527
|
+
* Has Active Terms of Service
|
|
24528
|
+
*/
|
|
24529
|
+
has_active_terms_of_service?: boolean;
|
|
24530
|
+
/**
|
|
24531
|
+
* Has Terms of Service
|
|
24532
|
+
*/
|
|
24533
|
+
has_terms_of_service?: boolean;
|
|
24516
24534
|
/**
|
|
24517
24535
|
* Keyword
|
|
24518
24536
|
*/
|
|
@@ -24691,6 +24709,14 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
24691
24709
|
* End date in format YYYY-MM.
|
|
24692
24710
|
*/
|
|
24693
24711
|
end?: string;
|
|
24712
|
+
/**
|
|
24713
|
+
* Has Active Terms of Service
|
|
24714
|
+
*/
|
|
24715
|
+
has_active_terms_of_service?: boolean;
|
|
24716
|
+
/**
|
|
24717
|
+
* Has Terms of Service
|
|
24718
|
+
*/
|
|
24719
|
+
has_terms_of_service?: boolean;
|
|
24694
24720
|
/**
|
|
24695
24721
|
* Keyword
|
|
24696
24722
|
*/
|
|
@@ -24785,6 +24811,14 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
24785
24811
|
* End date in format YYYY-MM.
|
|
24786
24812
|
*/
|
|
24787
24813
|
end?: string;
|
|
24814
|
+
/**
|
|
24815
|
+
* Has Active Terms of Service
|
|
24816
|
+
*/
|
|
24817
|
+
has_active_terms_of_service?: boolean;
|
|
24818
|
+
/**
|
|
24819
|
+
* Has Terms of Service
|
|
24820
|
+
*/
|
|
24821
|
+
has_terms_of_service?: boolean;
|
|
24788
24822
|
/**
|
|
24789
24823
|
* Keyword
|
|
24790
24824
|
*/
|
|
@@ -24888,6 +24922,14 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
24888
24922
|
customer?: string;
|
|
24889
24923
|
customer_uuid?: string;
|
|
24890
24924
|
description?: string;
|
|
24925
|
+
/**
|
|
24926
|
+
* Has Active Terms of Service
|
|
24927
|
+
*/
|
|
24928
|
+
has_active_terms_of_service?: boolean;
|
|
24929
|
+
/**
|
|
24930
|
+
* Has Terms of Service
|
|
24931
|
+
*/
|
|
24932
|
+
has_terms_of_service?: boolean;
|
|
24891
24933
|
/**
|
|
24892
24934
|
* Keyword
|
|
24893
24935
|
*/
|
|
@@ -25553,6 +25595,14 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
25553
25595
|
customer?: string;
|
|
25554
25596
|
customer_uuid?: string;
|
|
25555
25597
|
description?: string;
|
|
25598
|
+
/**
|
|
25599
|
+
* Has Active Terms of Service
|
|
25600
|
+
*/
|
|
25601
|
+
has_active_terms_of_service?: boolean;
|
|
25602
|
+
/**
|
|
25603
|
+
* Has Terms of Service
|
|
25604
|
+
*/
|
|
25605
|
+
has_terms_of_service?: boolean;
|
|
25556
25606
|
/**
|
|
25557
25607
|
* Keyword
|
|
25558
25608
|
*/
|
|
@@ -25636,6 +25686,14 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
25636
25686
|
customer?: string;
|
|
25637
25687
|
customer_uuid?: string;
|
|
25638
25688
|
description?: string;
|
|
25689
|
+
/**
|
|
25690
|
+
* Has Active Terms of Service
|
|
25691
|
+
*/
|
|
25692
|
+
has_active_terms_of_service?: boolean;
|
|
25693
|
+
/**
|
|
25694
|
+
* Has Terms of Service
|
|
25695
|
+
*/
|
|
25696
|
+
has_terms_of_service?: boolean;
|
|
25639
25697
|
/**
|
|
25640
25698
|
* Keyword
|
|
25641
25699
|
*/
|
|
@@ -26217,6 +26275,14 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
26217
26275
|
customer_uuid?: string;
|
|
26218
26276
|
description?: string;
|
|
26219
26277
|
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'>;
|
|
26278
|
+
/**
|
|
26279
|
+
* Has Active Terms of Service
|
|
26280
|
+
*/
|
|
26281
|
+
has_active_terms_of_service?: boolean;
|
|
26282
|
+
/**
|
|
26283
|
+
* Has Terms of Service
|
|
26284
|
+
*/
|
|
26285
|
+
has_terms_of_service?: boolean;
|
|
26220
26286
|
/**
|
|
26221
26287
|
* Keyword
|
|
26222
26288
|
*/
|
|
@@ -26300,6 +26366,14 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
26300
26366
|
customer?: string;
|
|
26301
26367
|
customer_uuid?: string;
|
|
26302
26368
|
description?: string;
|
|
26369
|
+
/**
|
|
26370
|
+
* Has Active Terms of Service
|
|
26371
|
+
*/
|
|
26372
|
+
has_active_terms_of_service?: boolean;
|
|
26373
|
+
/**
|
|
26374
|
+
* Has Terms of Service
|
|
26375
|
+
*/
|
|
26376
|
+
has_terms_of_service?: boolean;
|
|
26303
26377
|
/**
|
|
26304
26378
|
* Keyword
|
|
26305
26379
|
*/
|
|
@@ -27945,6 +28019,14 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
27945
28019
|
customer_uuid?: string;
|
|
27946
28020
|
description?: string;
|
|
27947
28021
|
field?: Array<'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'type' | 'uuid'>;
|
|
28022
|
+
/**
|
|
28023
|
+
* Has Active Terms of Service
|
|
28024
|
+
*/
|
|
28025
|
+
has_active_terms_of_service?: boolean;
|
|
28026
|
+
/**
|
|
28027
|
+
* Has Terms of Service
|
|
28028
|
+
*/
|
|
28029
|
+
has_terms_of_service?: boolean;
|
|
27948
28030
|
/**
|
|
27949
28031
|
* Keyword
|
|
27950
28032
|
*/
|