@cellaware/utils 8.13.2 → 8.14.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.
- package/dist/chatwms/alert.d.ts +2 -0
- package/dist/chatwms/dashboard.d.ts +2 -0
- package/dist/chatwms/report.d.ts +2 -0
- package/dist/util.d.ts +1 -0
- package/dist/util.js +3 -0
- package/package.json +1 -1
package/dist/chatwms/alert.d.ts
CHANGED
|
@@ -49,6 +49,8 @@ export interface AlertContentInfo extends DatagridStateBase {
|
|
|
49
49
|
contextName: DataContext;
|
|
50
50
|
specification: string;
|
|
51
51
|
query: string;
|
|
52
|
+
/** ChatWMS -> Database optimized query via client table extensions. */
|
|
53
|
+
jitQuery?: string;
|
|
52
54
|
summary: string;
|
|
53
55
|
reviewOk?: boolean;
|
|
54
56
|
reviewConfidence?: string;
|
|
@@ -44,6 +44,8 @@ export interface DashboardWidgetContentInfo extends DatagridStateBase {
|
|
|
44
44
|
contextName: DataContext;
|
|
45
45
|
specification: string;
|
|
46
46
|
query: string;
|
|
47
|
+
/** ChatWMS -> Database optimized query via client table extensions. */
|
|
48
|
+
jitQuery?: string;
|
|
47
49
|
summary: string;
|
|
48
50
|
reviewOk?: boolean;
|
|
49
51
|
reviewConfidence?: string;
|
package/dist/chatwms/report.d.ts
CHANGED
|
@@ -54,6 +54,8 @@ export interface ReportLineContentInfo extends DatagridStateBase {
|
|
|
54
54
|
contextName: DataContext;
|
|
55
55
|
specification: string;
|
|
56
56
|
query: string;
|
|
57
|
+
/** ChatWMS -> Database optimized query via client table extensions. */
|
|
58
|
+
jitQuery?: string;
|
|
57
59
|
summary: string;
|
|
58
60
|
reviewOk?: boolean;
|
|
59
61
|
reviewConfidence?: string;
|
package/dist/util.d.ts
CHANGED
|
@@ -43,3 +43,4 @@ export declare function removeQueryMatches(query: string, matches: QueryRegexMat
|
|
|
43
43
|
export declare function replaceQueryMatches(query: string, matches: QueryRegexMatch[], replacement: string, useMatchAsSuffix?: boolean): string;
|
|
44
44
|
export declare function removeMarkdownIndicators(input: string): string;
|
|
45
45
|
export declare function removePrefixIndicators(input: string, prefixes: string[]): string;
|
|
46
|
+
export declare function escapeCurlyBraces(str: string): string;
|
package/dist/util.js
CHANGED