eservices-core 1.0.430 → 1.0.431

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.
@@ -6,7 +6,7 @@ export default class Communication extends EventEmitter {
6
6
  id: number;
7
7
  constructor(talkId: number);
8
8
  read: () => any;
9
- sendMessage(text: string): Promise<import("../../../types/communication").IResultCreatingCommunicationMessage>;
9
+ sendMessage(text: string): Promise<import("../../../backend/src/types/communication").IResultCreatingCommunicationMessage>;
10
10
  static checkAndGenerate(data: any): Promise<{
11
11
  id: number;
12
12
  }>;
@@ -1,4 +1,4 @@
1
- import { IResultCreatingCommunication, IResultCreatingCommunicationMessage, IResultReadCommunication, IResultReadCommunicationMessage } from "../../../types/communication";
1
+ import { IResultCreatingCommunication, IResultCreatingCommunicationMessage, IResultReadCommunication, IResultReadCommunicationMessage } from "../../../backend/src/types/communication";
2
2
  export default class communicationService {
3
3
  static url: string;
4
4
  static create(data: CommunicationCreateParams): Promise<IResultCreatingCommunication>;
@@ -1,5 +1,5 @@
1
1
  import { ValuesInterface } from "../types";
2
- import { IRequestCreateResult, IRequestUpdateResult } from "../../../types/main";
2
+ import { IRequestCreateResult, IRequestUpdateResult } from "../../../backend/src/types/main";
3
3
  export default class dataService {
4
4
  static anonymousGetList<T>(entity: string): Promise<T[]>;
5
5
  /**
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.430
2
+ * eservices-core v1.0.431
3
3
  * (c) 2022 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -3554,6 +3554,10 @@ class List extends EventEmitter {
3554
3554
  cellValue = prettyDate(typeof cellValue === "string" ? cellValue : null);
3555
3555
  break;
3556
3556
  }
3557
+ case "dateWithTime": {
3558
+ cellValue = prettyDateWithTime(typeof cellValue === "string" ? cellValue : null);
3559
+ break;
3560
+ }
3557
3561
  }
3558
3562
  /**
3559
3563
  * Установка обычного значения
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.430",
3
+ "version": "1.0.431",
4
4
  "description": "Core library",
5
5
  "author": "",
6
6
  "scripts": {