waldur-js-client 8.0.10-dev.10 → 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.
- package/dist/types.gen.d.ts +8 -4
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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.
|
|
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;
|
|
@@ -8220,7 +8222,7 @@ export type GenerateSuggestionsResponse = {
|
|
|
8220
8222
|
source_used: string;
|
|
8221
8223
|
suggestions: Array<string>;
|
|
8222
8224
|
};
|
|
8223
|
-
export type GlauthGroupKind = 'project' | 'resource_role' | 'resource_project_role';
|
|
8225
|
+
export type GlauthGroupKind = 'project' | 'resource_role' | 'resource_project_role' | 'personal';
|
|
8224
8226
|
export type GlauthTree = {
|
|
8225
8227
|
offering: GlauthTreeOffering;
|
|
8226
8228
|
groups: Array<GlauthTreeGroup>;
|
|
@@ -8261,7 +8263,7 @@ export type GlauthTreeScope = {
|
|
|
8261
8263
|
slug?: string | null;
|
|
8262
8264
|
resource_uuid?: string | null;
|
|
8263
8265
|
};
|
|
8264
|
-
export type GlauthTreeScopeTypeEnum = 'resource' | 'resource_project' | 'project';
|
|
8266
|
+
export type GlauthTreeScopeTypeEnum = 'resource' | 'resource_project' | 'project' | 'user';
|
|
8265
8267
|
export type GlauthTreeUser = {
|
|
8266
8268
|
username: string;
|
|
8267
8269
|
uidnumber: number | null;
|
|
@@ -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.
|
|
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;
|