waldur-js-client 8.0.7-dev.24 → 8.0.7-dev.26

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.
@@ -4188,6 +4188,8 @@ export type ConstanceSettings = {
4188
4188
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4189
4189
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4190
4190
  MARKETPLACE_LANDING_PAGE?: string;
4191
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4192
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4191
4193
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4192
4194
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4193
4195
  TELEMETRY_URL?: string;
@@ -4436,6 +4438,8 @@ export type ConstanceSettingsRequest = {
4436
4438
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4437
4439
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4438
4440
  MARKETPLACE_LANDING_PAGE?: string;
4441
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4442
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4439
4443
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4440
4444
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4441
4445
  TELEMETRY_URL?: string;
@@ -5264,6 +5268,7 @@ export type CustomerComponentUsagePolicy = {
5264
5268
  * Fields for saving actions extra data. Keys are name of actions.
5265
5269
  */
5266
5270
  options?: unknown;
5271
+ readonly affected_resources_count: number;
5267
5272
  component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
5268
5273
  };
5269
5274
  export type CustomerComponentUsagePolicyRequest = {
@@ -5366,6 +5371,7 @@ export type CustomerEstimatedCostPolicy = {
5366
5371
  * Fields for saving actions extra data. Keys are name of actions.
5367
5372
  */
5368
5373
  options?: unknown;
5374
+ readonly affected_resources_count: number;
5369
5375
  limit_cost: number;
5370
5376
  period?: PolicyPeriodEnum;
5371
5377
  readonly period_name: string;
@@ -8506,6 +8512,8 @@ export type Logout = {
8506
8512
  */
8507
8513
  readonly logout_url: string;
8508
8514
  };
8515
+ export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
8516
+ export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
8509
8517
  export type MaintenanceActionResponse = {
8510
8518
  /**
8511
8519
  * Response message describing the action result
@@ -11248,6 +11256,7 @@ export type OfferingEstimatedCostPolicy = {
11248
11256
  * Fields for saving actions extra data. Keys are name of actions.
11249
11257
  */
11250
11258
  options?: unknown;
11259
+ readonly affected_resources_count: number;
11251
11260
  limit_cost: number;
11252
11261
  period?: PolicyPeriodEnum;
11253
11262
  readonly period_name: string;
@@ -11997,6 +12006,7 @@ export type OfferingUsagePolicy = {
11997
12006
  * Fields for saving actions extra data. Keys are name of actions.
11998
12007
  */
11999
12008
  options?: unknown;
12009
+ readonly affected_resources_count: number;
12000
12010
  organization_groups?: Array<string>;
12001
12011
  /**
12002
12012
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -17692,6 +17702,7 @@ export type ProjectEstimatedCostPolicy = {
17692
17702
  * Fields for saving actions extra data. Keys are name of actions.
17693
17703
  */
17694
17704
  options?: unknown;
17705
+ readonly affected_resources_count: number;
17695
17706
  limit_cost: number;
17696
17707
  period?: PolicyPeriodEnum;
17697
17708
  readonly period_name: string;
@@ -22942,6 +22953,7 @@ export type SlurmPeriodicUsagePolicy = {
22942
22953
  * Fields for saving actions extra data. Keys are name of actions.
22943
22954
  */
22944
22955
  options?: unknown;
22956
+ readonly affected_resources_count: number;
22945
22957
  organization_groups?: Array<string>;
22946
22958
  /**
22947
22959
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -26301,6 +26313,8 @@ export type ConstanceSettingsRequestForm = {
26301
26313
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26302
26314
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26303
26315
  MARKETPLACE_LANDING_PAGE?: string;
26316
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26317
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26304
26318
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26305
26319
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26306
26320
  TELEMETRY_URL?: string;
@@ -26549,6 +26563,8 @@ export type ConstanceSettingsRequestMultipart = {
26549
26563
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26550
26564
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26551
26565
  MARKETPLACE_LANDING_PAGE?: string;
26566
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26567
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26552
26568
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26553
26569
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26554
26570
  TELEMETRY_URL?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.24",
3
+ "version": "8.0.7-dev.26",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",