waldur-js-client 7.8.2-dev.3 → 7.8.2-dev.5

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.
@@ -1752,6 +1752,7 @@ export type ConstanceSettings = {
1752
1752
  OIDC_CLIENT_SECRET?: string;
1753
1753
  OIDC_USER_FIELD?: string;
1754
1754
  OIDC_CACHE_TIMEOUT?: number;
1755
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
1755
1756
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
1756
1757
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
1757
1758
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
@@ -1888,6 +1889,7 @@ export type ConstanceSettingsRequest = {
1888
1889
  OIDC_CLIENT_SECRET?: string;
1889
1890
  OIDC_USER_FIELD?: string;
1890
1891
  OIDC_CACHE_TIMEOUT?: number;
1892
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
1891
1893
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
1892
1894
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
1893
1895
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
@@ -8898,6 +8900,8 @@ export type ProposalReview = {
8898
8900
  comment_project_supporting_documentation?: string | null;
8899
8901
  comment_resource_requests?: string | null;
8900
8902
  comment_team?: string | null;
8903
+ readonly created: string;
8904
+ readonly modified: string;
8901
8905
  };
8902
8906
  export type ProposalReviewRequest = {
8903
8907
  proposal: string;
@@ -12885,6 +12889,7 @@ export type ConstanceSettingsRequestForm = {
12885
12889
  OIDC_CLIENT_SECRET?: string;
12886
12890
  OIDC_USER_FIELD?: string;
12887
12891
  OIDC_CACHE_TIMEOUT?: number;
12892
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
12888
12893
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
12889
12894
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
12890
12895
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
@@ -13021,6 +13026,7 @@ export type ConstanceSettingsRequestMultipart = {
13021
13026
  OIDC_CLIENT_SECRET?: string;
13022
13027
  OIDC_USER_FIELD?: string;
13023
13028
  OIDC_CACHE_TIMEOUT?: number;
13029
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
13024
13030
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
13025
13031
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
13026
13032
  MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.2-dev.3",
3
+ "version": "7.8.2-dev.5",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",