waldur-js-client 7.8.2-dev.4 → 7.8.2-dev.6
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 +11 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1095,6 +1095,7 @@ export type CallResourceTemplateRequest = {
|
|
|
1095
1095
|
export type CallRound = {
|
|
1096
1096
|
readonly url: string;
|
|
1097
1097
|
readonly uuid: string;
|
|
1098
|
+
slug?: string;
|
|
1098
1099
|
start_time: string;
|
|
1099
1100
|
cutoff_time: string;
|
|
1100
1101
|
readonly call_uuid: string;
|
|
@@ -1752,6 +1753,7 @@ export type ConstanceSettings = {
|
|
|
1752
1753
|
OIDC_CLIENT_SECRET?: string;
|
|
1753
1754
|
OIDC_USER_FIELD?: string;
|
|
1754
1755
|
OIDC_CACHE_TIMEOUT?: number;
|
|
1756
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
1755
1757
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
1756
1758
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1757
1759
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
@@ -1888,6 +1890,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1888
1890
|
OIDC_CLIENT_SECRET?: string;
|
|
1889
1891
|
OIDC_USER_FIELD?: string;
|
|
1890
1892
|
OIDC_CACHE_TIMEOUT?: number;
|
|
1893
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
1891
1894
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
1892
1895
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1893
1896
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
@@ -4635,6 +4638,7 @@ export type NestedRoleRequest = {
|
|
|
4635
4638
|
};
|
|
4636
4639
|
export type NestedRound = {
|
|
4637
4640
|
readonly uuid?: string;
|
|
4641
|
+
slug?: string;
|
|
4638
4642
|
readonly name?: string;
|
|
4639
4643
|
start_time?: string;
|
|
4640
4644
|
cutoff_time?: string;
|
|
@@ -4648,6 +4652,7 @@ export type NestedRound = {
|
|
|
4648
4652
|
minimum_number_of_reviewers?: number | null;
|
|
4649
4653
|
};
|
|
4650
4654
|
export type NestedRoundRequest = {
|
|
4655
|
+
slug?: string;
|
|
4651
4656
|
start_time: string;
|
|
4652
4657
|
cutoff_time: string;
|
|
4653
4658
|
review_strategy?: ReviewStrategyEnum;
|
|
@@ -8786,6 +8791,7 @@ export type ProjectsUsagesGroupedByOecd = {
|
|
|
8786
8791
|
export type Proposal = {
|
|
8787
8792
|
readonly uuid: string;
|
|
8788
8793
|
readonly url: string;
|
|
8794
|
+
readonly slug: string;
|
|
8789
8795
|
name: string;
|
|
8790
8796
|
description?: string;
|
|
8791
8797
|
readonly project_name: string;
|
|
@@ -8993,6 +8999,7 @@ export type ProtectedCallRequest = {
|
|
|
8993
8999
|
};
|
|
8994
9000
|
export type ProtectedProposalList = {
|
|
8995
9001
|
readonly uuid: string;
|
|
9002
|
+
slug: string;
|
|
8996
9003
|
name: string;
|
|
8997
9004
|
state: ProposalStates;
|
|
8998
9005
|
/**
|
|
@@ -9006,10 +9013,12 @@ export type ProtectedProposalList = {
|
|
|
9006
9013
|
readonly created: string;
|
|
9007
9014
|
};
|
|
9008
9015
|
export type ProtectedProposalListRequest = {
|
|
9016
|
+
slug: string;
|
|
9009
9017
|
name: string;
|
|
9010
9018
|
};
|
|
9011
9019
|
export type ProtectedRound = {
|
|
9012
9020
|
readonly uuid: string;
|
|
9021
|
+
readonly slug: string;
|
|
9013
9022
|
readonly name: string;
|
|
9014
9023
|
start_time: string;
|
|
9015
9024
|
cutoff_time: string;
|
|
@@ -12887,6 +12896,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
12887
12896
|
OIDC_CLIENT_SECRET?: string;
|
|
12888
12897
|
OIDC_USER_FIELD?: string;
|
|
12889
12898
|
OIDC_CACHE_TIMEOUT?: number;
|
|
12899
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
12890
12900
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
12891
12901
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
12892
12902
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
@@ -13023,6 +13033,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
13023
13033
|
OIDC_CLIENT_SECRET?: string;
|
|
13024
13034
|
OIDC_USER_FIELD?: string;
|
|
13025
13035
|
OIDC_CACHE_TIMEOUT?: number;
|
|
13036
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
13026
13037
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
13027
13038
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
13028
13039
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|