waldur-js-client 8.0.7-dev.23 → 8.0.7-dev.25

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;
@@ -8506,6 +8510,8 @@ export type Logout = {
8506
8510
  */
8507
8511
  readonly logout_url: string;
8508
8512
  };
8513
+ export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
8514
+ export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
8509
8515
  export type MaintenanceActionResponse = {
8510
8516
  /**
8511
8517
  * Response message describing the action result
@@ -26301,6 +26307,8 @@ export type ConstanceSettingsRequestForm = {
26301
26307
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26302
26308
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26303
26309
  MARKETPLACE_LANDING_PAGE?: string;
26310
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26311
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26304
26312
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26305
26313
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26306
26314
  TELEMETRY_URL?: string;
@@ -26549,6 +26557,8 @@ export type ConstanceSettingsRequestMultipart = {
26549
26557
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26550
26558
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26551
26559
  MARKETPLACE_LANDING_PAGE?: string;
26560
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26561
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26552
26562
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26553
26563
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26554
26564
  TELEMETRY_URL?: string;
@@ -45136,6 +45146,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListData = {
45136
45146
  page_size?: number;
45137
45147
  project?: string;
45138
45148
  project_uuid?: string;
45149
+ query?: string;
45139
45150
  scope?: string;
45140
45151
  scope_uuid?: string;
45141
45152
  };
@@ -45161,6 +45172,7 @@ export type MarketplaceProjectEstimatedCostPoliciesCountData = {
45161
45172
  page_size?: number;
45162
45173
  project?: string;
45163
45174
  project_uuid?: string;
45175
+ query?: string;
45164
45176
  scope?: string;
45165
45177
  scope_uuid?: string;
45166
45178
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.23",
3
+ "version": "8.0.7-dev.25",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",