@aristid/leav-types 0.0.7-e0c1773 → 0.0.7-e275df8

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.
@@ -41,6 +41,7 @@ export declare namespace auth {
41
41
  let wellKnownEndpoint: string;
42
42
  let clientId: string;
43
43
  let postLogoutRedirectUri: string;
44
+ let skipLogoutConfirmationPage: string | boolean;
44
45
  }
45
46
  let testApiKey: string;
46
47
  }
@@ -16,6 +16,7 @@ export declare const mockAttrTree: {
16
16
  system?: boolean;
17
17
  readonly?: boolean;
18
18
  required?: boolean;
19
+ character_limit?: number;
19
20
  format?: AttributeFormats;
20
21
  linked_library?: string;
21
22
  embedded_fields?: import("../../_types/attribute").IEmbeddedAttribute[];
@@ -27,7 +28,6 @@ export declare const mockAttrTree: {
27
28
  values_list?: import("../../_types/attribute").IValuesListConf;
28
29
  reverse_link?: string | IAttribute;
29
30
  unique?: boolean;
30
- maxLength?: number;
31
31
  description?: import("../../_types/systemTranslation").ISystemTranslation;
32
32
  label?: import("../../_types/systemTranslation").ISystemTranslation | string;
33
33
  };
@@ -9,6 +9,7 @@ export interface IAttribute extends ICoreEntity {
9
9
  system?: boolean;
10
10
  readonly?: boolean;
11
11
  required?: boolean;
12
+ character_limit?: number;
12
13
  type: AttributeTypes;
13
14
  format?: AttributeFormats;
14
15
  linked_library?: string;
@@ -22,7 +23,6 @@ export interface IAttribute extends ICoreEntity {
22
23
  values_list?: IValuesListConf;
23
24
  reverse_link?: string | IAttribute;
24
25
  unique?: boolean;
25
- maxLength?: number;
26
26
  description?: ISystemTranslation;
27
27
  }
28
28
  export declare enum ValueVersionMode {
@@ -75,11 +75,13 @@ export interface IAuth {
75
75
  wellKnownEndpoint?: string;
76
76
  clientId?: string;
77
77
  postLogoutRedirectUri?: string;
78
+ skipLogoutConfirmationPage?: boolean;
78
79
  } | {
79
80
  enable: true;
80
81
  wellKnownEndpoint: string;
81
82
  clientId: string;
82
83
  postLogoutRedirectUri: string;
84
+ skipLogoutConfirmationPage?: boolean;
83
85
  };
84
86
  testApiKey?: string;
85
87
  }
@@ -97,7 +97,8 @@ export declare enum Errors {
97
97
  UNKNOWN_VERSION_TREE = "UNKNOWN_VERSION_TREE",
98
98
  UNKNOWN_VIEW = "UNKNOWN_VIEW",
99
99
  USER_IS_NOT_VIEW_OWNER = "USER_IS_NOT_VIEW_OWNER",
100
- VALUE_NOT_UNIQUE = "VALUE_NOT_UNIQUE"
100
+ VALUE_NOT_UNIQUE = "VALUE_NOT_UNIQUE",
101
+ VALUE_EXCEEDS_CHARACTER_LIMIT = "VALUE_EXCEEDS_CHARACTER_LIMIT"
101
102
  }
102
103
  export interface IExtendedErrorMsg {
103
104
  msg: Errors | string;
@@ -1,12 +1,13 @@
1
1
  import { ActionsListValueType, IActionsListContext } from '_types/actionsList';
2
2
  import { IVariableFunctions } from '../calculationsVariableFunctions';
3
+ import { ITreeNode } from '../../../_types/tree';
3
4
  interface IDeps {
4
5
  'core.domain.helpers.calculationsVariableFunctions': IVariableFunctions;
5
6
  }
6
7
  export interface IVariableValue {
7
8
  recordId: string;
8
9
  library: string;
9
- payload: string | number | boolean | Record<string, any>;
10
+ payload: string | number | boolean | ITreeNode | Record<string, any>;
10
11
  raw_payload?: string | number | boolean | Record<string, any>;
11
12
  }
12
13
  export interface ICalculationVariable {
@@ -12,7 +12,9 @@ export interface IOIDCClientService {
12
12
  redirectUri: string;
13
13
  queryId: string;
14
14
  }) => Promise<string>;
15
- getLogoutUrl: () => string;
15
+ getLogoutUrl: (params: {
16
+ userId: string;
17
+ }) => Promise<string>;
16
18
  saveOIDCTokens: (params: {
17
19
  userId: string;
18
20
  tokens: TokenSet;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-e0c1773",
3
+ "version": "0.0.7-e275df8",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",