@aristid/leav-types 0.0.7-071b653 → 0.0.7-08547db

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
  }
@@ -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
  }
@@ -40,6 +40,10 @@ export interface IViewValuesVersionForGraphql {
40
40
  export type ViewFromGraphQL = Omit<IView, 'valuesVersions' | 'settings'> & {
41
41
  valuesVersions: IViewValuesVersionForGraphql[];
42
42
  };
43
+ export type PartialViewFromGraphQL = Omit<IView, 'id' | 'valuesVersions' | 'settings'> & {
44
+ id: string;
45
+ valuesVersions: IViewValuesVersionForGraphql[];
46
+ };
43
47
  export interface IViewFilterOptions extends ICoreEntityFilterOptions {
44
48
  created_by?: string;
45
49
  library?: 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 {
@@ -20,6 +20,7 @@ import { IRecordPermissionDomain } from '../permission/recordPermissionDomain';
20
20
  import { SendRecordUpdateEventHelper } from './helpers/sendRecordUpdateEvent';
21
21
  import { ICreateRecordResult, IFindRecordParams } from './_types';
22
22
  import { IFormRepo } from 'infra/form/formRepo';
23
+ import { IRecordAttributePermissionDomain } from 'domain/permission/recordAttributePermissionDomain';
23
24
  export interface IRecordDomain {
24
25
  createRecord(params: {
25
26
  library: string;
@@ -90,6 +91,7 @@ export interface IRecordDomainDeps {
90
91
  'core.domain.value': IValueDomain;
91
92
  'core.domain.permission.record': IRecordPermissionDomain;
92
93
  'core.domain.permission.library': ILibraryPermissionDomain;
94
+ 'core.domain.permission.recordAttribute': IRecordAttributePermissionDomain;
93
95
  'core.domain.helpers.getCoreEntityById': GetCoreEntityByIdFunc;
94
96
  'core.domain.helpers.validate': IValidateHelper;
95
97
  'core.domain.record.helpers.sendRecordUpdateEvent': SendRecordUpdateEventHelper;
@@ -102,4 +104,4 @@ export interface IRecordDomainDeps {
102
104
  'core.utils': IUtils;
103
105
  translator: i18n;
104
106
  }
105
- export default function ({ config, 'core.infra.record': recordRepo, 'core.domain.attribute': attributeDomain, 'core.domain.value': valueDomain, 'core.domain.permission.record': recordPermissionDomain, 'core.domain.permission.library': libraryPermissionDomain, 'core.domain.helpers.getCoreEntityById': getCoreEntityById, 'core.domain.helpers.validate': validateHelper, 'core.domain.record.helpers.sendRecordUpdateEvent': sendRecordUpdateEvent, 'core.infra.library': libraryRepo, 'core.infra.tree': treeRepo, 'core.infra.value': valueRepo, 'core.infra.form': formRepo, 'core.domain.eventsManager': eventsManager, 'core.infra.cache.cacheService': cacheService, 'core.utils': utils, translator }: IRecordDomainDeps): IRecordDomain;
107
+ export default function ({ config, 'core.infra.record': recordRepo, 'core.domain.attribute': attributeDomain, 'core.domain.value': valueDomain, 'core.domain.permission.record': recordPermissionDomain, 'core.domain.permission.library': libraryPermissionDomain, 'core.domain.permission.recordAttribute': recordAttributePermissionDomain, 'core.domain.helpers.getCoreEntityById': getCoreEntityById, 'core.domain.helpers.validate': validateHelper, 'core.domain.record.helpers.sendRecordUpdateEvent': sendRecordUpdateEvent, 'core.infra.library': libraryRepo, 'core.infra.tree': treeRepo, 'core.infra.value': valueRepo, 'core.infra.form': formRepo, 'core.domain.eventsManager': eventsManager, 'core.infra.cache.cacheService': cacheService, 'core.utils': utils, translator }: IRecordDomainDeps): IRecordDomain;
@@ -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;
@@ -4,7 +4,8 @@ export declare enum FormUIElementTypes {
4
4
  FIELDS_CONTAINER = "fields_container",
5
5
  TAB_FIELDS_CONTAINER = "tab_fields_container",
6
6
  TEXT_BLOCK = "text_block",
7
- TABS = "tabs"
7
+ TABS = "tabs",
8
+ FRAME = "frame"
8
9
  }
9
10
  export declare enum FormFieldTypes {
10
11
  TEXT_INPUT = "input_field",
@@ -41,6 +42,10 @@ export interface IFormTabsSettings {
41
42
  export interface IFormTextBlockSettings {
42
43
  content?: string;
43
44
  }
45
+ export interface IFormFrameSettings {
46
+ url: string;
47
+ height?: string;
48
+ }
44
49
  export interface IFormDateFieldSettings extends ICommonFieldsSettings {
45
50
  withTime: boolean;
46
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-071b653",
3
+ "version": "0.0.7-08547db",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",