waldur-js-client 8.0.10-dev.11 → 8.0.10-dev.13

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.
@@ -2870,7 +2870,7 @@ export type BookingResource = {
2870
2870
  readonly end_date_updated_at: string | null;
2871
2871
  readonly username: string | null;
2872
2872
  /**
2873
- * Dictionary mapping limit-based component types to their consumed usage. For monthly periods, maps from current_usages; for longer periods, aggregates historical usage.
2873
+ * Dictionary mapping limit-based component types to their consumed usage. Sums the ComponentUsage rows of the component's current period (the monthly billing period unless the component defines a longer limit_period), i.e. the period's high-watermark rather than the instantaneous current_usages value.
2874
2874
  */
2875
2875
  readonly limit_usage: {
2876
2876
  [key: string]: number;
@@ -4968,6 +4968,7 @@ export type ConstanceSettings = {
4968
4968
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4969
4969
  TELEMETRY_URL?: string;
4970
4970
  TELEMETRY_VERSION?: number;
4971
+ CHECK_FOR_UPDATES?: boolean;
4971
4972
  SCRIPT_RUN_MODE?: ScriptrunmodeEnum;
4972
4973
  DOCKER_CLIENT?: string;
4973
4974
  DOCKER_RUN_OPTIONS?: string;
@@ -5111,6 +5112,7 @@ export type ConstanceSettings = {
5111
5112
  SCIM_INBOUND_ENABLED?: boolean;
5112
5113
  SCIM_INBOUND_SOURCE_NAME?: string;
5113
5114
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
5115
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
5114
5116
  SCIM_PULL_API_URL?: string;
5115
5117
  SCIM_PULL_API_KEY?: string;
5116
5118
  SCIM_PULL_SOURCE_NAME?: string;
@@ -5272,6 +5274,7 @@ export type ConstanceSettingsRequest = {
5272
5274
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
5273
5275
  TELEMETRY_URL?: string;
5274
5276
  TELEMETRY_VERSION?: number;
5277
+ CHECK_FOR_UPDATES?: boolean;
5275
5278
  SCRIPT_RUN_MODE?: ScriptrunmodeEnum;
5276
5279
  DOCKER_CLIENT?: string;
5277
5280
  DOCKER_RUN_OPTIONS?: string;
@@ -5415,6 +5418,7 @@ export type ConstanceSettingsRequest = {
5415
5418
  SCIM_INBOUND_ENABLED?: boolean;
5416
5419
  SCIM_INBOUND_SOURCE_NAME?: string;
5417
5420
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
5421
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
5418
5422
  SCIM_PULL_API_URL?: string;
5419
5423
  SCIM_PULL_API_KEY?: string;
5420
5424
  SCIM_PULL_SOURCE_NAME?: string;
@@ -23667,7 +23671,7 @@ export type Resource = {
23667
23671
  readonly end_date_updated_at: string | null;
23668
23672
  readonly username: string | null;
23669
23673
  /**
23670
- * Dictionary mapping limit-based component types to their consumed usage. For monthly periods, maps from current_usages; for longer periods, aggregates historical usage.
23674
+ * Dictionary mapping limit-based component types to their consumed usage. Sums the ComponentUsage rows of the component's current period (the monthly billing period unless the component defines a longer limit_period), i.e. the period's high-watermark rather than the instantaneous current_usages value.
23671
23675
  */
23672
23676
  readonly limit_usage: {
23673
23677
  [key: string]: number;
@@ -30078,6 +30082,7 @@ export type ConstanceSettingsRequestForm = {
30078
30082
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
30079
30083
  TELEMETRY_URL?: string;
30080
30084
  TELEMETRY_VERSION?: number;
30085
+ CHECK_FOR_UPDATES?: boolean;
30081
30086
  SCRIPT_RUN_MODE?: ScriptrunmodeEnum;
30082
30087
  DOCKER_CLIENT?: string;
30083
30088
  DOCKER_RUN_OPTIONS?: string;
@@ -30221,6 +30226,7 @@ export type ConstanceSettingsRequestForm = {
30221
30226
  SCIM_INBOUND_ENABLED?: boolean;
30222
30227
  SCIM_INBOUND_SOURCE_NAME?: string;
30223
30228
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
30229
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
30224
30230
  SCIM_PULL_API_URL?: string;
30225
30231
  SCIM_PULL_API_KEY?: string;
30226
30232
  SCIM_PULL_SOURCE_NAME?: string;
@@ -30382,6 +30388,7 @@ export type ConstanceSettingsRequestMultipart = {
30382
30388
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
30383
30389
  TELEMETRY_URL?: string;
30384
30390
  TELEMETRY_VERSION?: number;
30391
+ CHECK_FOR_UPDATES?: boolean;
30385
30392
  SCRIPT_RUN_MODE?: ScriptrunmodeEnum;
30386
30393
  DOCKER_CLIENT?: string;
30387
30394
  DOCKER_RUN_OPTIONS?: string;
@@ -30525,6 +30532,7 @@ export type ConstanceSettingsRequestMultipart = {
30525
30532
  SCIM_INBOUND_ENABLED?: boolean;
30526
30533
  SCIM_INBOUND_SOURCE_NAME?: string;
30527
30534
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
30535
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
30528
30536
  SCIM_PULL_API_URL?: string;
30529
30537
  SCIM_PULL_API_KEY?: string;
30530
30538
  SCIM_PULL_SOURCE_NAME?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.10-dev.11",
3
+ "version": "8.0.10-dev.13",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",