waldur-js-client 8.1.0-rc.26.dev.158 → 8.1.2

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.
@@ -5450,6 +5450,8 @@ export type ConstanceSettings = {
5450
5450
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
5451
5451
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
5452
5452
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
5453
+ OIDC_BLOCKED_LOGIN_RESPONSE_MESSAGE?: string;
5454
+ OIDC_ALLOWED_USER_EMAIL_PATTERNS?: Array<string>;
5453
5455
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
5454
5456
  OIDC_DEFAULT_LOGOUT_URL?: string;
5455
5457
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -5777,6 +5779,8 @@ export type ConstanceSettingsRequest = {
5777
5779
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
5778
5780
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
5779
5781
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
5782
+ OIDC_BLOCKED_LOGIN_RESPONSE_MESSAGE?: string;
5783
+ OIDC_ALLOWED_USER_EMAIL_PATTERNS?: Array<string>;
5780
5784
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
5781
5785
  OIDC_DEFAULT_LOGOUT_URL?: string;
5782
5786
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -30470,7 +30474,7 @@ export type VolumeTypeResponse = {
30470
30474
  name: string;
30471
30475
  description?: string;
30472
30476
  };
30473
- export type WaldursupportactivebackendtypeEnum = 'atlassian' | 'zammad' | 'smax';
30477
+ export type WaldursupportactivebackendtypeEnum = 'basic' | 'atlassian' | 'zammad' | 'smax';
30474
30478
  export type WaldurCustomerBrief = {
30475
30479
  uuid: string;
30476
30480
  name: string;
@@ -31915,6 +31919,8 @@ export type ConstanceSettingsRequestForm = {
31915
31919
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
31916
31920
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
31917
31921
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
31922
+ OIDC_BLOCKED_LOGIN_RESPONSE_MESSAGE?: string;
31923
+ OIDC_ALLOWED_USER_EMAIL_PATTERNS?: Array<string>;
31918
31924
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
31919
31925
  OIDC_DEFAULT_LOGOUT_URL?: string;
31920
31926
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -32242,6 +32248,8 @@ export type ConstanceSettingsRequestMultipart = {
32242
32248
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
32243
32249
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
32244
32250
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
32251
+ OIDC_BLOCKED_LOGIN_RESPONSE_MESSAGE?: string;
32252
+ OIDC_ALLOWED_USER_EMAIL_PATTERNS?: Array<string>;
32245
32253
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
32246
32254
  OIDC_DEFAULT_LOGOUT_URL?: string;
32247
32255
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -33012,7 +33020,6 @@ export type FirecrestJobFieldEnum = 'access_url' | 'backend_id' | 'created' | 'c
33012
33020
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
33013
33021
  export type CommentOEnum = '-created' | '-modified' | 'created' | 'modified';
33014
33022
  export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last_name' | '-created' | '-customer_name' | '-key' | '-modified' | '-priority' | '-project_name' | '-remote_id' | '-reporter_name' | '-status' | '-summary' | '-type' | 'assignee_name' | 'caller_first_name' | 'caller_last_name' | 'created' | 'customer_name' | 'key' | 'modified' | 'priority' | 'project_name' | 'remote_id' | 'reporter_name' | 'status' | 'summary' | 'type';
33015
- export type SupportUserBackendNameEnum = 'atlassian' | 'basic' | 'smax' | 'zammad';
33016
33023
  export type SupportUserOEnum = '-backend_id' | '-backend_name' | '-is_active' | '-name' | 'backend_id' | 'backend_name' | 'is_active' | 'name';
33017
33024
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
33018
33025
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
@@ -94366,7 +94373,7 @@ export type SupportUsersListData = {
94366
94373
  *
94367
94374
  *
94368
94375
  */
94369
- backend_name?: SupportUserBackendNameEnum;
94376
+ backend_name?: WaldursupportactivebackendtypeEnum;
94370
94377
  is_active?: boolean;
94371
94378
  name?: string;
94372
94379
  /**
@@ -94405,7 +94412,7 @@ export type SupportUsersCountData = {
94405
94412
  *
94406
94413
  *
94407
94414
  */
94408
- backend_name?: SupportUserBackendNameEnum;
94415
+ backend_name?: WaldursupportactivebackendtypeEnum;
94409
94416
  is_active?: boolean;
94410
94417
  name?: string;
94411
94418
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.1.0-rc.26.dev.158",
3
+ "version": "8.1.2",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",