@aristid/leav-types 1.4.1-ca7c8baf → 1.4.1-cdf9d0c8

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.
Files changed (148) hide show
  1. package/apps/core/config/default.d.ts +36 -15
  2. package/apps/core/config/development.d.ts +7 -4
  3. package/apps/core/config/test.d.ts +43 -9
  4. package/apps/core/src/__tests__/e2e/api/e2eUtils.d.ts +29 -3
  5. package/apps/core/src/__tests__/e2e/api/export/export.test.d.ts +1 -0
  6. package/apps/core/src/__tests__/e2e/api/import/import.test.d.ts +1 -0
  7. package/apps/core/src/__tests__/e2e/api/mailpitUtils.d.ts +21 -0
  8. package/apps/core/src/__tests__/integration/domain/taskManagerDomain.test.d.ts +1 -0
  9. package/apps/core/src/__tests__/integration/infra/integrationTestRepoUtils.d.ts +1 -1
  10. package/apps/core/src/__tests__/integration/integrationTestUtils.d.ts +7 -0
  11. package/apps/core/src/_types/config.d.ts +39 -5
  12. package/apps/core/src/_types/errors.d.ts +1 -1
  13. package/apps/core/src/_types/eventsManager.d.ts +13 -1
  14. package/apps/core/src/_types/forms.d.ts +2 -2
  15. package/apps/core/src/_types/notification.d.ts +51 -0
  16. package/apps/core/src/_types/userData.d.ts +10 -0
  17. package/apps/core/src/app/application/applicationApp.d.ts +1 -1
  18. package/apps/core/src/app/auth/authApp.d.ts +3 -3
  19. package/apps/core/src/app/core/apiKeyApp/apiKeyApp.d.ts +1 -1
  20. package/apps/core/src/app/core/coreApp.d.ts +1 -1
  21. package/apps/core/src/app/core/eventsManagerApp.d.ts +1 -1
  22. package/apps/core/src/app/core/filesManagerApp.d.ts +1 -1
  23. package/apps/core/src/app/core/formApp/formApp.d.ts +1 -1
  24. package/apps/core/src/app/core/globalSettingsApp.d.ts +1 -1
  25. package/apps/core/src/app/core/importApp.d.ts +1 -1
  26. package/apps/core/src/app/core/index.d.ts +1 -0
  27. package/apps/core/src/app/core/libraryApp/libraryApp.d.ts +1 -1
  28. package/apps/core/src/app/core/logApp.d.ts +1 -1
  29. package/apps/core/src/app/core/notificationApp.d.ts +10 -0
  30. package/apps/core/src/app/core/permissionApp/permissionApp.d.ts +1 -1
  31. package/apps/core/src/app/core/recordApp/_types.d.ts +1 -0
  32. package/apps/core/src/app/core/recordApp/recordApp.d.ts +1 -1
  33. package/apps/core/src/app/core/tasksManagerApp.d.ts +2 -2
  34. package/apps/core/src/app/core/treeApp/treeApp.d.ts +1 -1
  35. package/apps/core/src/app/core/valueApp.d.ts +1 -1
  36. package/apps/core/src/app/core/versionProfileApp/versionProfileApp.d.ts +1 -1
  37. package/apps/core/src/app/core/viewApp.d.ts +1 -1
  38. package/apps/core/src/app/endpoint/endpointApp.d.ts +1 -1
  39. package/apps/core/src/app/graphql/graphqlApp.d.ts +1 -1
  40. package/apps/core/src/domain/actions/excelCalculationAction.d.ts +6 -4
  41. package/apps/core/src/domain/actions/inheritanceCalculationAction.d.ts +1 -1
  42. package/apps/core/src/domain/apiKey/apiKeyDomain.d.ts +1 -1
  43. package/apps/core/src/domain/application/applicationDomain.d.ts +1 -1
  44. package/apps/core/src/domain/attribute/attributeDomain.d.ts +1 -1
  45. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.d.ts +1 -1
  46. package/apps/core/src/domain/eventsManager/eventsManagerDomain.d.ts +1 -1
  47. package/apps/core/src/domain/export/exportDomain.d.ts +6 -2
  48. package/apps/core/src/domain/export/exportProfileDomain.d.ts +23 -0
  49. package/apps/core/src/domain/export/exportProfileDomain.spec.d.ts +1 -0
  50. package/apps/core/src/domain/export/index.d.ts +1 -0
  51. package/apps/core/src/domain/filesManager/filesManagerDomain.d.ts +1 -1
  52. package/apps/core/src/domain/filesManager/helpers/handlePreview.d.ts +1 -1
  53. package/apps/core/src/domain/filesManager/helpers/messagesHandler/messagesHandler.d.ts +1 -1
  54. package/apps/core/src/domain/form/formDomain.d.ts +1 -1
  55. package/apps/core/src/domain/form/helpers/mustIncludeElement.d.ts +1 -1
  56. package/apps/core/src/domain/globalSettings/globalSettingsDomain.d.ts +1 -1
  57. package/apps/core/src/domain/helpers/calculationsVariableFunctions/index.d.ts +1 -1
  58. package/apps/core/src/domain/helpers/getCoreEntityById.d.ts +1 -1
  59. package/apps/core/src/domain/helpers/updateRecordLastModif.d.ts +1 -1
  60. package/apps/core/src/domain/helpers/updateTaskProgress.d.ts +1 -1
  61. package/apps/core/src/domain/helpers/validate.d.ts +1 -1
  62. package/apps/core/src/domain/import/importDomain.d.ts +1 -1
  63. package/apps/core/src/domain/indexationManager/indexationManagerDomain.d.ts +1 -1
  64. package/apps/core/src/domain/library/helpers/deleteAssociatedValues.d.ts +1 -1
  65. package/apps/core/src/domain/library/helpers/runPreDelete.d.ts +1 -1
  66. package/apps/core/src/domain/library/libraryDomain.d.ts +1 -1
  67. package/apps/core/src/domain/log/logDomain.d.ts +1 -1
  68. package/apps/core/src/domain/logsCollector/logsCollectorDomain.d.ts +1 -1
  69. package/apps/core/src/domain/notification/channels/emailChannel.d.ts +12 -0
  70. package/apps/core/src/domain/notification/channels/webSocketChannel.d.ts +6 -0
  71. package/apps/core/src/domain/notification/index.d.ts +3 -0
  72. package/apps/core/src/domain/notification/notificationDomain.d.ts +12 -0
  73. package/apps/core/src/domain/permission/adminPermissionDomain.d.ts +1 -1
  74. package/apps/core/src/domain/permission/applicationPermissionDomain.d.ts +1 -1
  75. package/apps/core/src/domain/permission/helpers/getPermissionCachePatternKey.d.ts +1 -1
  76. package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +1 -1
  77. package/apps/core/src/domain/permission/helpers/recordInCreationBypass.d.ts +1 -1
  78. package/apps/core/src/domain/permission/helpers/simplePermission.d.ts +1 -1
  79. package/apps/core/src/domain/permission/libraryPermissionDomain.d.ts +1 -1
  80. package/apps/core/src/domain/permission/permissionDomain.d.ts +2 -2
  81. package/apps/core/src/domain/permission/treeLibraryPermissionDomain.d.ts +1 -1
  82. package/apps/core/src/domain/permission/treePermissionDomain.d.ts +1 -1
  83. package/apps/core/src/domain/record/_types.d.ts +1 -0
  84. package/apps/core/src/domain/record/helpers/createRecord.d.ts +1 -1
  85. package/apps/core/src/domain/record/helpers/deleteRecord.d.ts +1 -1
  86. package/apps/core/src/domain/record/helpers/getAccessPermissionFilters.d.ts +7 -1
  87. package/apps/core/src/domain/record/recordDomain.d.ts +3 -3
  88. package/apps/core/src/domain/tasksManager/tasksManagerDomain.d.ts +2 -2
  89. package/apps/core/src/domain/tree/helpers/elementAncestors.d.ts +1 -1
  90. package/apps/core/src/domain/tree/helpers/getDefaultElement.d.ts +1 -1
  91. package/apps/core/src/domain/tree/treeDomain.d.ts +1 -1
  92. package/apps/core/src/domain/user/userDomain.d.ts +5 -2
  93. package/apps/core/src/domain/value/helpers/formatLogValue.d.ts +1 -1
  94. package/apps/core/src/domain/value/valueDomain.d.ts +3 -8
  95. package/apps/core/src/domain/versionProfile/versionProfileDomain.d.ts +1 -1
  96. package/apps/core/src/domain/view/viewDomain.d.ts +1 -1
  97. package/apps/core/src/infra/apiKey/apiKeyRepo.d.ts +1 -1
  98. package/apps/core/src/infra/application/applicationRepo.d.ts +1 -1
  99. package/apps/core/src/infra/attribute/attributeRepo.d.ts +1 -1
  100. package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.d.ts +1 -1
  101. package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.d.ts +1 -1
  102. package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.d.ts +1 -1
  103. package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.d.ts +1 -1
  104. package/apps/core/src/infra/attributeTypes/attributeTreeRepo.d.ts +1 -1
  105. package/apps/core/src/infra/attributeTypes/attributeTypesRepo.d.ts +10 -10
  106. package/apps/core/src/infra/cache/cacheService.d.ts +4 -3
  107. package/apps/core/src/infra/cache/index.d.ts +1 -2
  108. package/apps/core/src/infra/cache/ramService.d.ts +1 -7
  109. package/apps/core/src/infra/cache/redis.d.ts +5 -1
  110. package/apps/core/src/infra/db/dbUtils.d.ts +1 -1
  111. package/apps/core/src/infra/db/migrations/000-init/index.d.ts +1 -1
  112. package/apps/core/src/infra/db/migrations/002-previewsSettings.d.ts +1 -1
  113. package/apps/core/src/infra/db/migrations/003-filesMetadata.d.ts +1 -1
  114. package/apps/core/src/infra/db/migrations/007-updateHexColor.d.ts +1 -1
  115. package/apps/core/src/infra/filesManager/filesManagerRepo.d.ts +1 -1
  116. package/apps/core/src/infra/form/formRepo.d.ts +1 -1
  117. package/apps/core/src/infra/indexation/indexationService.d.ts +1 -1
  118. package/apps/core/src/infra/library/libraryRepo.d.ts +2 -2
  119. package/apps/core/src/infra/mailer/mailerService.d.ts +1 -1
  120. package/apps/core/src/infra/oidc/oidcClientService.d.ts +3 -3
  121. package/apps/core/src/infra/permission/permissionRepo.d.ts +3 -3
  122. package/apps/core/src/infra/record/helpers/getClassifyingFiltersVariableQueryPart.d.ts +1 -1
  123. package/apps/core/src/infra/record/helpers/getSearchVariableName.d.ts +1 -1
  124. package/apps/core/src/infra/record/helpers/getSearchVariablesQueryPart.d.ts +1 -1
  125. package/apps/core/src/infra/record/recordRepo.d.ts +3 -3
  126. package/apps/core/src/infra/session/index.d.ts +1 -0
  127. package/apps/core/src/infra/session/sessionRepo.d.ts +8 -0
  128. package/apps/core/src/infra/task/taskRepo.d.ts +1 -1
  129. package/apps/core/src/infra/tree/treeRepo.d.ts +1 -1
  130. package/apps/core/src/infra/value/valueRepo.d.ts +7 -7
  131. package/apps/core/src/infra/versionProfile/versionProfileRepo.d.ts +1 -1
  132. package/apps/core/src/infra/view/viewRepo.d.ts +1 -1
  133. package/apps/core/src/interface/helpers/handleGraphqlError.d.ts +1 -1
  134. package/apps/core/src/interface/plugins/apolloTracerPlugin.d.ts +5 -0
  135. package/apps/core/src/interface/server.d.ts +1 -1
  136. package/apps/core/src/interface/tasksManager.d.ts +1 -1
  137. package/apps/core/src/utils/helpers/getExcelData.d.ts +3 -0
  138. package/apps/core/src/utils/helpers/getFileDataBuffer.d.ts +2 -0
  139. package/libs/config-manager/src/envTo.d.ts +4 -0
  140. package/libs/logger/src/LoggerCallStack.d.ts +14 -0
  141. package/libs/logger/src/catchErrorFormatter.d.ts +2 -0
  142. package/libs/logger/src/config.d.ts +32 -3
  143. package/libs/logger/src/locationInfoFormatter.d.ts +2 -0
  144. package/libs/message-broker/src/amqpService.d.ts +2 -2
  145. package/libs/message-broker/src/types/amqp.d.ts +1 -1
  146. package/package.json +1 -1
  147. package/apps/core/src/__tests__/e2e/api/import/import.test-draft.d.ts +0 -0
  148. package/libs/logger/src/locationInfoFormatters.d.ts +0 -10
@@ -8,7 +8,7 @@ export declare const VALUES_LINKS_COLLECTION = "core_edge_values_links";
8
8
  export declare const VALUES_COLLECTION = "core_values";
9
9
  export declare const EMPTY_VALUE = "__empty_value__";
10
10
  export interface IValueRepo {
11
- createValue({ library, recordId, attribute, value, ctx }: {
11
+ createValue({ library, recordId, attribute, value, ctx, }: {
12
12
  library: string;
13
13
  recordId: string;
14
14
  attribute: IAttributeWithRevLink;
@@ -18,7 +18,7 @@ export interface IValueRepo {
18
18
  /**
19
19
  * Update an existing value. Field "id" is expected on the value
20
20
  */
21
- updateValue({ library, recordId, attribute, value, ctx }: {
21
+ updateValue({ library, recordId, attribute, value, ctx, }: {
22
22
  library: string;
23
23
  recordId: string;
24
24
  attribute: IAttributeWithRevLink;
@@ -28,7 +28,7 @@ export interface IValueRepo {
28
28
  /**
29
29
  * Delete an existing value. Field "id" is expected on the value
30
30
  */
31
- deleteValue({ library, recordId, attribute, value, ctx }: {
31
+ deleteValue({ library, recordId, attribute, value, ctx, }: {
32
32
  library: string;
33
33
  recordId: string;
34
34
  attribute: IAttributeWithRevLink;
@@ -39,7 +39,7 @@ export interface IValueRepo {
39
39
  * Check if a value is unique expeted for the given record
40
40
  * if recordId is null, it will check for the whole library
41
41
  */
42
- isValueUsed({ library, excludedRecordId, attribute, value, ctx }: {
42
+ isValueUsed({ library, excludedRecordId, attribute, value, ctx, }: {
43
43
  library: string;
44
44
  excludedRecordId?: string;
45
45
  attribute: IAttribute;
@@ -51,7 +51,7 @@ export interface IValueRepo {
51
51
  *
52
52
  * @return Array<{}> Return an empty array if no value found
53
53
  */
54
- getValues({ library, recordId, attribute, forceGetAllValues, options, ctx }: {
54
+ getValues({ library, recordId, attribute, forceGetAllValues, options, ctx, }: {
55
55
  library: string;
56
56
  recordId: string;
57
57
  attribute: IAttributeWithRevLink;
@@ -64,7 +64,7 @@ export interface IValueRepo {
64
64
  *
65
65
  * @return {} Return null if no value found
66
66
  */
67
- getValueById({ library, recordId, attribute, valueId, ctx }: {
67
+ getValueById({ library, recordId, attribute, valueId, ctx, }: {
68
68
  library: string;
69
69
  recordId: string;
70
70
  attribute: IAttribute;
@@ -86,5 +86,5 @@ interface IDeps {
86
86
  'core.infra.attributeTypes': IAttributeTypesRepo;
87
87
  'core.infra.db.dbService': IDbService;
88
88
  }
89
- export default function ({ config, 'core.infra.attributeTypes': attributeTypesRepo, 'core.infra.db.dbService': dbService }: IDeps): IValueRepo;
89
+ export default function ({ config, 'core.infra.attributeTypes': attributeTypesRepo, 'core.infra.db.dbService': dbService, }: IDeps): IValueRepo;
90
90
  export {};
@@ -31,5 +31,5 @@ interface IDeps {
31
31
  'core.infra.db.dbUtils'?: IDbUtils;
32
32
  'core.infra.db.dbService'?: IDbService;
33
33
  }
34
- export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.db.dbUtils': dbUtils }?: IDeps): IVersionProfileRepo;
34
+ export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.db.dbUtils': dbUtils, }?: IDeps): IVersionProfileRepo;
35
35
  export {};
@@ -1,2 +1,2 @@
1
1
  import { type IViewRepo, type IViewRepoDeps } from './_types';
2
- export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.db.dbUtils': dbUtils }: IViewRepoDeps): IViewRepo;
2
+ export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.db.dbUtils': dbUtils, }: IViewRepoDeps): IViewRepo;
@@ -9,5 +9,5 @@ interface IDeps {
9
9
  'core.utils': IUtils;
10
10
  'core.utils.logger'?: ILogger;
11
11
  }
12
- export default function ({ config, 'core.utils': utils, 'core.utils.logger': logger }: IDeps): HandleGraphqlErrorFunc;
12
+ export default function ({ config, 'core.utils': utils, 'core.utils.logger': logger, }: IDeps): HandleGraphqlErrorFunc;
13
13
  export {};
@@ -0,0 +1,5 @@
1
+ import { type ApolloServerPlugin } from '@apollo/server';
2
+ /**
3
+ * Apollo Server plugin for measuring GraphQL operation and resolver performance.
4
+ */
5
+ export declare const apolloTracerPlugin: ApolloServerPlugin;
@@ -33,5 +33,5 @@ interface IDeps {
33
33
  'core.utils'?: IUtils;
34
34
  'core.depsManager'?: AwilixContainer;
35
35
  }
36
- export default function ({ config: config, 'core.interface.helpers.handleGraphqlError': handleGraphqlError, 'core.app.graphql': graphqlApp, 'core.app.auth': authApp, 'core.app.application': applicationApp, 'core.app.core': coreApp, 'core.app.helpers.validateRequestToken': validateRequestToken, 'core.app.helpers.initQueryContext': initQueryContext, 'core.utils.logger': logger, 'core.utils': utils, 'core.depsManager': depsManager }?: IDeps): IServer;
36
+ export default function ({ config: config, 'core.interface.helpers.handleGraphqlError': handleGraphqlError, 'core.app.graphql': graphqlApp, 'core.app.auth': authApp, 'core.app.application': applicationApp, 'core.app.core': coreApp, 'core.app.helpers.validateRequestToken': validateRequestToken, 'core.app.helpers.initQueryContext': initQueryContext, 'core.utils.logger': logger, 'core.utils': utils, 'core.depsManager': depsManager, }?: IDeps): IServer;
37
37
  export {};
@@ -1,6 +1,6 @@
1
1
  import { type ITasksManagerApp } from 'app/core/tasksManagerApp';
2
2
  export interface ITasksManagerInterface {
3
- initMaster(): Promise<NodeJS.Timer>;
3
+ initMaster(): Promise<NodeJS.Timeout>;
4
4
  initWorker(): Promise<void>;
5
5
  }
6
6
  interface IDeps {
@@ -0,0 +1,3 @@
1
+ import ExcelJS from 'exceljs';
2
+ declare const _default: (buffer: ExcelJS.Buffer) => Promise<string[][][]>;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: (filepath: string) => Promise<Buffer>;
2
+ export default _default;
@@ -6,3 +6,7 @@ export declare function envToBool(value: string, defaultValue?: boolean): boolea
6
6
  * To convert process.env string to number
7
7
  */
8
8
  export declare function envToNumber(value: string, defaultValue?: number): number;
9
+ /**
10
+ * To convert process.env string to string array
11
+ */
12
+ export declare function envToStringArray(value: string, separator?: string, defaultValue?: string[]): string[];
@@ -0,0 +1,14 @@
1
+ interface ICallerInfo {
2
+ path: string;
3
+ line: string;
4
+ col: string;
5
+ }
6
+ export declare class LoggerCallStack {
7
+ private callerLineIndexInStack;
8
+ getCallStackTrace(): string | null;
9
+ getLocationInfo(): ICallerInfo | null;
10
+ private getStackLines;
11
+ private detectCallLineIndexInStack;
12
+ private callStackTraceLongEnough;
13
+ }
14
+ export {};
@@ -0,0 +1,2 @@
1
+ import winston from 'winston';
2
+ export declare function catchErrorFormatter(onErrorLog?: (message: string, meta: any, getCallStackTrace: () => string) => void): winston.Logform.FormatWrap | null;
@@ -3,7 +3,7 @@ export interface ILoggerConfig {
3
3
  * Log level (error, warn, info, log, verbose, debug, silly)
4
4
  * @default info
5
5
  */
6
- level: string;
6
+ level?: string;
7
7
  /**
8
8
  * If true, disable all logging
9
9
  * Default: true if TS_JEST=1 (tests), false otherwise
@@ -18,7 +18,36 @@ export interface ILoggerConfig {
18
18
  * Default: false (plain text)
19
19
  */
20
20
  useJsonFormat?: boolean;
21
- onErrorLog?: (message: string, meta: any) => void;
21
+ /**
22
+ * If true, add timestamp to each log line, ISO format
23
+ */
24
+ addTimestamp?: boolean;
25
+ /**
26
+ * If true, add file and line number of the code that called the logger function (error, warn, info, debug, etc.)
27
+ */
28
+ addLocationInfo?: boolean;
29
+ /**
30
+ * Add those metadata to all logs
31
+ */
32
+ additionalMeta?: {
33
+ /**
34
+ * any string to identify the application those logs came from
35
+ */
36
+ app?: string;
37
+ /**
38
+ * any string to identify each client those logs came from
39
+ */
40
+ client?: string;
41
+ /**
42
+ * environment, like production, development, test, integration
43
+ */
44
+ env?: string;
45
+ /**
46
+ * application version, maybe semver format
47
+ */
48
+ version?: string;
49
+ };
50
+ onErrorLog?: (message: string, meta: any, getCallStackTrace: () => string) => void;
22
51
  }
23
52
  export declare function envToBool(value: string, defaultValue?: boolean): boolean;
24
- export declare const defaultLoggerConfig: ILoggerConfig;
53
+ export declare const defaultLoggerConfig: ILoggerConfig & Required<Omit<ILoggerConfig, 'onErrorLog'>>;
@@ -0,0 +1,2 @@
1
+ import winston from 'winston';
2
+ export declare const addLocationInfoInLog: winston.Logform.FormatWrap;
@@ -1,5 +1,5 @@
1
1
  import * as amqp from 'amqplib';
2
- import { type IAmqp, type onMessageFunc } from './types/amqp';
2
+ import { type IAmqp, type OnMessageFunc } from './types/amqp';
3
3
  export interface IAmqpService {
4
4
  publisher: {
5
5
  connection: amqp.ChannelModel;
@@ -10,7 +10,7 @@ export interface IAmqpService {
10
10
  channel: amqp.ConfirmChannel;
11
11
  };
12
12
  publish(exchange: string, routingKey: string, msg: string, priority?: number): Promise<void>;
13
- consume(queue: string, routingKey: string, onMessage: onMessageFunc, consumerTag?: string): Promise<amqp.Replies.Consume>;
13
+ consume(queue: string, routingKey: string, onMessage: OnMessageFunc, consumerTag?: string): Promise<amqp.Replies.Consume>;
14
14
  close(): Promise<void>;
15
15
  }
16
16
  interface IDeps {
@@ -12,4 +12,4 @@ export interface IAmqpConn {
12
12
  export interface IMessageBody {
13
13
  [key: string]: any;
14
14
  }
15
- export type onMessageFunc = (msg: amqp.ConsumeMessage) => Promise<void>;
15
+ export type OnMessageFunc = (msg: amqp.ConsumeMessage) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "1.4.1-ca7c8baf",
3
+ "version": "1.4.1-cdf9d0c8",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",
@@ -1,10 +0,0 @@
1
- import winston from 'winston';
2
- interface ICallerInfo {
3
- path: string;
4
- line: string;
5
- col: string;
6
- }
7
- export declare function getLocationInfo(): ICallerInfo | null;
8
- export declare const addLocationInfoInLog: winston.Logform.FormatWrap;
9
- export declare const mergeLocationInfoInLog: winston.Logform.FormatWrap;
10
- export {};