waldur-js-client 8.0.7-dev.24 → 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.
- package/dist/types.gen.d.ts +10 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|