@cellaware/utils 5.5.2 → 5.6.0
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.
|
@@ -24,6 +24,7 @@ export interface ChatWMSProduct extends ChatWMSProductBase {
|
|
|
24
24
|
examples: ChatWMSProductExample[];
|
|
25
25
|
columnDescriptions: ChatWMSProductColumnDescription[];
|
|
26
26
|
columnComments: ChatWMSProductColumnComment[];
|
|
27
|
+
valueQueries: ChatWMSProductValueQuery[];
|
|
27
28
|
valueDescriptionQueries: ChatWMSProductValueDescriptionQuery[];
|
|
28
29
|
}
|
|
29
30
|
export declare function initChatWMSProduct(): ChatWMSProduct;
|
|
@@ -62,6 +63,11 @@ export interface ChatWMSProductColumnComment {
|
|
|
62
63
|
tableName?: string;
|
|
63
64
|
comment: string;
|
|
64
65
|
}
|
|
66
|
+
export interface ChatWMSProductValueQuery {
|
|
67
|
+
columnName: string;
|
|
68
|
+
tableName?: string;
|
|
69
|
+
query: string;
|
|
70
|
+
}
|
|
65
71
|
export interface ChatWMSProductValueDescriptionQuery {
|
|
66
72
|
columnName: string;
|
|
67
73
|
tableName?: string;
|
package/dist/chatwms/product.js
CHANGED