@cellaware/utils 5.4.14 → 5.4.16

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.
@@ -17,6 +17,7 @@ export interface ChatWMSProductBase {
17
17
  }
18
18
  export declare function initChatWMSProductBase(): ChatWMSProductBase;
19
19
  export interface ChatWMSProduct extends ChatWMSProductBase {
20
+ revision: number;
20
21
  variables: ChatWMSProductVariable[];
21
22
  tables: ChatWMSProductTable[];
22
23
  notes: ChatWMSProductNote[];
@@ -26,6 +27,7 @@ export interface ChatWMSProduct extends ChatWMSProductBase {
26
27
  valueDescriptionQueries: ChatWMSProductValueDescriptionQuery[];
27
28
  }
28
29
  export declare function initChatWMSProduct(): ChatWMSProduct;
30
+ export declare function initChatWMSRevision(): number;
29
31
  export interface ChatWMSProductVariable {
30
32
  key: string;
31
33
  exampleValue: string;
@@ -30,6 +30,7 @@ export function initChatWMSProductBase() {
30
30
  export function initChatWMSProduct() {
31
31
  return {
32
32
  ...initChatWMSProductBase(),
33
+ revision: initChatWMSRevision(),
33
34
  variables: [],
34
35
  tables: [],
35
36
  notes: [],
@@ -39,6 +40,9 @@ export function initChatWMSProduct() {
39
40
  valueDescriptionQueries: []
40
41
  };
41
42
  }
43
+ export function initChatWMSRevision() {
44
+ return Date.now();
45
+ }
42
46
  export function chatwmsGetStandardProductVariables(vendor) {
43
47
  let variables = [];
44
48
  const standard = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "5.4.14",
3
+ "version": "5.4.16",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",