waldur-js-client 7.9.4-dev.0 → 7.9.4-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 +27 -26
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1161,7 +1161,7 @@ export type BookingResource = {
|
|
|
1161
1161
|
readonly renewal_date?: {
|
|
1162
1162
|
[key: string]: string;
|
|
1163
1163
|
} | null;
|
|
1164
|
-
offering_state?:
|
|
1164
|
+
offering_state?: OfferingStateEnum;
|
|
1165
1165
|
readonly offering_components?: Array<OfferingComponent>;
|
|
1166
1166
|
readonly created_by?: string;
|
|
1167
1167
|
/**
|
|
@@ -7381,6 +7381,7 @@ export type OfferingSoftwareCatalogRequest = {
|
|
|
7381
7381
|
partition?: string | null;
|
|
7382
7382
|
};
|
|
7383
7383
|
export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
|
|
7384
|
+
export type OfferingStateEnum = 1 | 2 | 3 | 4 | 5;
|
|
7384
7385
|
export type OfferingStats = {
|
|
7385
7386
|
/**
|
|
7386
7387
|
* Number of resources for the offering
|
|
@@ -14204,7 +14205,7 @@ export type Resource = {
|
|
|
14204
14205
|
readonly renewal_date?: {
|
|
14205
14206
|
[key: string]: string;
|
|
14206
14207
|
} | null;
|
|
14207
|
-
offering_state?:
|
|
14208
|
+
offering_state?: OfferingStateEnum;
|
|
14208
14209
|
readonly offering_components?: Array<OfferingComponent>;
|
|
14209
14210
|
};
|
|
14210
14211
|
export type ResourceBackendIdRequest = {
|
|
@@ -21425,10 +21426,6 @@ export type BookingResourcesListData = {
|
|
|
21425
21426
|
* Downscaled
|
|
21426
21427
|
*/
|
|
21427
21428
|
downscaled?: boolean;
|
|
21428
|
-
/**
|
|
21429
|
-
* Exclude transitional resources with early pending orders
|
|
21430
|
-
*/
|
|
21431
|
-
exclude_pending_transitional?: boolean;
|
|
21432
21429
|
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
21433
21430
|
/**
|
|
21434
21431
|
* Has termination date
|
|
@@ -21554,6 +21551,10 @@ export type BookingResourcesListData = {
|
|
|
21554
21551
|
* Filter by usage-based offerings
|
|
21555
21552
|
*/
|
|
21556
21553
|
usage_based?: boolean;
|
|
21554
|
+
/**
|
|
21555
|
+
* Include only resources visible to service providers
|
|
21556
|
+
*/
|
|
21557
|
+
visible_to_providers?: boolean;
|
|
21557
21558
|
/**
|
|
21558
21559
|
* Visible to username
|
|
21559
21560
|
*/
|
|
@@ -21598,10 +21599,6 @@ export type BookingResourcesCountData = {
|
|
|
21598
21599
|
* Downscaled
|
|
21599
21600
|
*/
|
|
21600
21601
|
downscaled?: boolean;
|
|
21601
|
-
/**
|
|
21602
|
-
* Exclude transitional resources with early pending orders
|
|
21603
|
-
*/
|
|
21604
|
-
exclude_pending_transitional?: boolean;
|
|
21605
21602
|
/**
|
|
21606
21603
|
* Has termination date
|
|
21607
21604
|
*/
|
|
@@ -21726,6 +21723,10 @@ export type BookingResourcesCountData = {
|
|
|
21726
21723
|
* Filter by usage-based offerings
|
|
21727
21724
|
*/
|
|
21728
21725
|
usage_based?: boolean;
|
|
21726
|
+
/**
|
|
21727
|
+
* Include only resources visible to service providers
|
|
21728
|
+
*/
|
|
21729
|
+
visible_to_providers?: boolean;
|
|
21729
21730
|
/**
|
|
21730
21731
|
* Visible to username
|
|
21731
21732
|
*/
|
|
@@ -34789,10 +34790,6 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
34789
34790
|
* Downscaled
|
|
34790
34791
|
*/
|
|
34791
34792
|
downscaled?: boolean;
|
|
34792
|
-
/**
|
|
34793
|
-
* Exclude transitional resources with early pending orders
|
|
34794
|
-
*/
|
|
34795
|
-
exclude_pending_transitional?: boolean;
|
|
34796
34793
|
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
34797
34794
|
/**
|
|
34798
34795
|
* Has termination date
|
|
@@ -34918,6 +34915,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
34918
34915
|
* Filter by usage-based offerings
|
|
34919
34916
|
*/
|
|
34920
34917
|
usage_based?: boolean;
|
|
34918
|
+
/**
|
|
34919
|
+
* Include only resources visible to service providers
|
|
34920
|
+
*/
|
|
34921
|
+
visible_to_providers?: boolean;
|
|
34921
34922
|
/**
|
|
34922
34923
|
* Visible to username
|
|
34923
34924
|
*/
|
|
@@ -34961,10 +34962,6 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
34961
34962
|
* Downscaled
|
|
34962
34963
|
*/
|
|
34963
34964
|
downscaled?: boolean;
|
|
34964
|
-
/**
|
|
34965
|
-
* Exclude transitional resources with early pending orders
|
|
34966
|
-
*/
|
|
34967
|
-
exclude_pending_transitional?: boolean;
|
|
34968
34965
|
/**
|
|
34969
34966
|
* Has termination date
|
|
34970
34967
|
*/
|
|
@@ -35089,6 +35086,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
35089
35086
|
* Filter by usage-based offerings
|
|
35090
35087
|
*/
|
|
35091
35088
|
usage_based?: boolean;
|
|
35089
|
+
/**
|
|
35090
|
+
* Include only resources visible to service providers
|
|
35091
|
+
*/
|
|
35092
|
+
visible_to_providers?: boolean;
|
|
35092
35093
|
/**
|
|
35093
35094
|
* Visible to username
|
|
35094
35095
|
*/
|
|
@@ -36170,10 +36171,6 @@ export type MarketplaceResourcesListData = {
|
|
|
36170
36171
|
* Downscaled
|
|
36171
36172
|
*/
|
|
36172
36173
|
downscaled?: boolean;
|
|
36173
|
-
/**
|
|
36174
|
-
* Exclude transitional resources with early pending orders
|
|
36175
|
-
*/
|
|
36176
|
-
exclude_pending_transitional?: boolean;
|
|
36177
36174
|
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
36178
36175
|
/**
|
|
36179
36176
|
* Has termination date
|
|
@@ -36299,6 +36296,10 @@ export type MarketplaceResourcesListData = {
|
|
|
36299
36296
|
* Filter by usage-based offerings
|
|
36300
36297
|
*/
|
|
36301
36298
|
usage_based?: boolean;
|
|
36299
|
+
/**
|
|
36300
|
+
* Include only resources visible to service providers
|
|
36301
|
+
*/
|
|
36302
|
+
visible_to_providers?: boolean;
|
|
36302
36303
|
/**
|
|
36303
36304
|
* Visible to username
|
|
36304
36305
|
*/
|
|
@@ -36342,10 +36343,6 @@ export type MarketplaceResourcesCountData = {
|
|
|
36342
36343
|
* Downscaled
|
|
36343
36344
|
*/
|
|
36344
36345
|
downscaled?: boolean;
|
|
36345
|
-
/**
|
|
36346
|
-
* Exclude transitional resources with early pending orders
|
|
36347
|
-
*/
|
|
36348
|
-
exclude_pending_transitional?: boolean;
|
|
36349
36346
|
/**
|
|
36350
36347
|
* Has termination date
|
|
36351
36348
|
*/
|
|
@@ -36470,6 +36467,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
36470
36467
|
* Filter by usage-based offerings
|
|
36471
36468
|
*/
|
|
36472
36469
|
usage_based?: boolean;
|
|
36470
|
+
/**
|
|
36471
|
+
* Include only resources visible to service providers
|
|
36472
|
+
*/
|
|
36473
|
+
visible_to_providers?: boolean;
|
|
36473
36474
|
/**
|
|
36474
36475
|
* Visible to username
|
|
36475
36476
|
*/
|