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

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;
@@ -5111,6 +5111,7 @@ export type ConstanceSettings = {
5111
5111
  SCIM_INBOUND_ENABLED?: boolean;
5112
5112
  SCIM_INBOUND_SOURCE_NAME?: string;
5113
5113
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
5114
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
5114
5115
  SCIM_PULL_API_URL?: string;
5115
5116
  SCIM_PULL_API_KEY?: string;
5116
5117
  SCIM_PULL_SOURCE_NAME?: string;
@@ -5415,6 +5416,7 @@ export type ConstanceSettingsRequest = {
5415
5416
  SCIM_INBOUND_ENABLED?: boolean;
5416
5417
  SCIM_INBOUND_SOURCE_NAME?: string;
5417
5418
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
5419
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
5418
5420
  SCIM_PULL_API_URL?: string;
5419
5421
  SCIM_PULL_API_KEY?: string;
5420
5422
  SCIM_PULL_SOURCE_NAME?: string;
@@ -23667,7 +23669,7 @@ export type Resource = {
23667
23669
  readonly end_date_updated_at: string | null;
23668
23670
  readonly username: string | null;
23669
23671
  /**
23670
- * Dictionary mapping limit-based component types to their consumed usage. For monthly periods, maps from current_usages; for longer periods, aggregates historical usage.
23672
+ * 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
23673
  */
23672
23674
  readonly limit_usage: {
23673
23675
  [key: string]: number;
@@ -30221,6 +30223,7 @@ export type ConstanceSettingsRequestForm = {
30221
30223
  SCIM_INBOUND_ENABLED?: boolean;
30222
30224
  SCIM_INBOUND_SOURCE_NAME?: string;
30223
30225
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
30226
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
30224
30227
  SCIM_PULL_API_URL?: string;
30225
30228
  SCIM_PULL_API_KEY?: string;
30226
30229
  SCIM_PULL_SOURCE_NAME?: string;
@@ -30525,6 +30528,7 @@ export type ConstanceSettingsRequestMultipart = {
30525
30528
  SCIM_INBOUND_ENABLED?: boolean;
30526
30529
  SCIM_INBOUND_SOURCE_NAME?: string;
30527
30530
  SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
30531
+ SCIM_INBOUND_SSH_KEYS_ENABLED?: boolean;
30528
30532
  SCIM_PULL_API_URL?: string;
30529
30533
  SCIM_PULL_API_KEY?: string;
30530
30534
  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.12",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",