@memberjunction/skip-types 2.121.0 → 2.122.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/query-types.d.ts +176 -71
- package/dist/query-types.d.ts.map +1 -1
- package/dist/query-types.js +17 -3
- package/dist/query-types.js.map +1 -1
- package/package.json +4 -4
package/dist/query-types.d.ts
CHANGED
|
@@ -14,7 +14,11 @@
|
|
|
14
14
|
* Data requests allow Skip to ask for additional data beyond what was initially provided,
|
|
15
15
|
* either through custom SQL statements or by referencing stored queries. This capability
|
|
16
16
|
* enables Skip to iteratively refine its analysis by gathering the exact data it needs.
|
|
17
|
+
*
|
|
18
|
+
* IMPORTANT: These types implement interfaces from @memberjunction/core to ensure
|
|
19
|
+
* consistency between MJ and Skip. Property names use PascalCase to match MJ conventions.
|
|
17
20
|
*/
|
|
21
|
+
import { IQueryInfoBase, IQueryFieldInfoBase, IQueryParameterInfoBase, IQueryEntityInfoBase } from '@memberjunction/core';
|
|
18
22
|
/**
|
|
19
23
|
* Describes the different types of data requests the Skip API server can make for additional data.
|
|
20
24
|
* * sql: The Skip API server is asking for additional data to be gathered using a fully executable SQL statement
|
|
@@ -51,102 +55,203 @@ export declare class SkipDataRequest {
|
|
|
51
55
|
* Metadata about individual fields within a stored query, including their data types,
|
|
52
56
|
* source entity mappings, and computed field information. This helps Skip understand
|
|
53
57
|
* the structure and meaning of query results.
|
|
58
|
+
*
|
|
59
|
+
* Implements IQueryFieldInfoBase for consistency with MJCore types.
|
|
54
60
|
*/
|
|
55
|
-
export declare class SkipQueryFieldInfo {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
61
|
+
export declare class SkipQueryFieldInfo implements IQueryFieldInfoBase {
|
|
62
|
+
/**
|
|
63
|
+
* Unique identifier for this field record
|
|
64
|
+
*/
|
|
65
|
+
ID: string;
|
|
66
|
+
/**
|
|
67
|
+
* Foreign key to the parent query
|
|
68
|
+
*/
|
|
69
|
+
QueryID: string;
|
|
70
|
+
/**
|
|
71
|
+
* Name of the field as it appears in query results
|
|
72
|
+
*/
|
|
73
|
+
Name: string;
|
|
74
|
+
/**
|
|
75
|
+
* Description of what this field represents
|
|
76
|
+
*/
|
|
77
|
+
Description: string;
|
|
78
|
+
/**
|
|
79
|
+
* Display order of this field in query results
|
|
80
|
+
*/
|
|
81
|
+
Sequence: number;
|
|
60
82
|
/**
|
|
61
83
|
* The base type, not including parameters, in SQL. For example this field would be nvarchar or decimal, and wouldn't include type parameters. The SQLFullType field provides that information.
|
|
62
84
|
*/
|
|
63
|
-
|
|
85
|
+
SQLBaseType: string;
|
|
64
86
|
/**
|
|
65
87
|
* The full SQL type for the field, for example datetime or nvarchar(10) etc.
|
|
66
88
|
*/
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
89
|
+
SQLFullType: string;
|
|
90
|
+
/**
|
|
91
|
+
* Foreign key to the source entity this field comes from
|
|
92
|
+
*/
|
|
93
|
+
SourceEntityID: string;
|
|
94
|
+
/**
|
|
95
|
+
* Name of the source entity
|
|
96
|
+
*/
|
|
97
|
+
SourceEntity: string;
|
|
98
|
+
/**
|
|
99
|
+
* Name of the field in the source entity
|
|
100
|
+
*/
|
|
101
|
+
SourceFieldName: string;
|
|
102
|
+
/**
|
|
103
|
+
* Whether this field is computed rather than directly selected
|
|
104
|
+
*/
|
|
105
|
+
IsComputed: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Explanation of how this computed field is calculated
|
|
108
|
+
*/
|
|
109
|
+
ComputationDescription: string;
|
|
110
|
+
/**
|
|
111
|
+
* Whether this field represents a summary/aggregate value
|
|
112
|
+
*/
|
|
113
|
+
IsSummary: boolean;
|
|
114
|
+
/**
|
|
115
|
+
* Description of the summary calculation
|
|
116
|
+
*/
|
|
117
|
+
SummaryDescription: string;
|
|
77
118
|
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
119
|
+
/**
|
|
120
|
+
* Parameter definitions for parameterized queries that use Nunjucks templates.
|
|
121
|
+
* Each parameter represents a dynamic value that can be passed when executing the query.
|
|
122
|
+
*
|
|
123
|
+
* Implements IQueryParameterInfoBase for consistency with MJCore types.
|
|
124
|
+
*/
|
|
125
|
+
export declare class SkipQueryParamInfo implements IQueryParameterInfoBase {
|
|
126
|
+
/**
|
|
127
|
+
* Unique identifier for this parameter record
|
|
128
|
+
*/
|
|
129
|
+
ID: string;
|
|
130
|
+
/**
|
|
131
|
+
* Foreign key to the parent query
|
|
132
|
+
*/
|
|
133
|
+
QueryID: string;
|
|
134
|
+
/**
|
|
135
|
+
* The name of the parameter as it appears in the template (e.g., {{parameterName}})
|
|
136
|
+
*/
|
|
137
|
+
Name: string;
|
|
138
|
+
/**
|
|
139
|
+
* Human-readable description of what this parameter is for
|
|
140
|
+
*/
|
|
141
|
+
Description: string;
|
|
142
|
+
/**
|
|
143
|
+
* Data type of the parameter for validation and type casting
|
|
144
|
+
*/
|
|
145
|
+
Type: string;
|
|
146
|
+
/**
|
|
147
|
+
* Whether this parameter must be provided when executing the query
|
|
148
|
+
*/
|
|
149
|
+
IsRequired: boolean;
|
|
150
|
+
/**
|
|
151
|
+
* Default value to use when parameter is not provided
|
|
152
|
+
*/
|
|
153
|
+
DefaultValue: string;
|
|
154
|
+
/**
|
|
155
|
+
* Example value demonstrating the proper format for this parameter
|
|
156
|
+
*/
|
|
157
|
+
SampleValue: string;
|
|
158
|
+
/**
|
|
159
|
+
* JSON array of Nunjucks filter definitions for value transformation
|
|
160
|
+
*/
|
|
161
|
+
ValidationFilters: string;
|
|
86
162
|
}
|
|
87
163
|
/**
|
|
88
|
-
* Metadata about entities referenced by a query
|
|
89
|
-
*
|
|
90
|
-
*
|
|
164
|
+
* Metadata about entities referenced by a query. This helps Skip understand which
|
|
165
|
+
* entities are involved in each query and how they are being used.
|
|
166
|
+
*
|
|
167
|
+
* Implements IQueryEntityInfoBase for consistency with MJCore types.
|
|
91
168
|
*/
|
|
92
|
-
export declare class SkipQueryEntityInfo {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
*
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
autoDetectConfidenceScore?: number;
|
|
110
|
-
createdAt: Date;
|
|
111
|
-
updatedAt: Date;
|
|
169
|
+
export declare class SkipQueryEntityInfo implements IQueryEntityInfoBase {
|
|
170
|
+
/**
|
|
171
|
+
* Unique identifier for this entity reference record
|
|
172
|
+
*/
|
|
173
|
+
ID: string;
|
|
174
|
+
/**
|
|
175
|
+
* Foreign key to the parent query
|
|
176
|
+
*/
|
|
177
|
+
QueryID: string;
|
|
178
|
+
/**
|
|
179
|
+
* Foreign key to the referenced entity
|
|
180
|
+
*/
|
|
181
|
+
EntityID: string;
|
|
182
|
+
/**
|
|
183
|
+
* Name of the referenced entity
|
|
184
|
+
*/
|
|
185
|
+
Entity: string;
|
|
112
186
|
}
|
|
113
187
|
/**
|
|
114
188
|
* Complete metadata about a stored query, including its SQL, approval status, quality ranking,
|
|
115
189
|
* and field definitions. This information allows Skip to understand and utilize pre-built
|
|
116
190
|
* queries for analysis and reporting.
|
|
191
|
+
*
|
|
192
|
+
* Implements IQueryInfoBase for consistency with MJCore types.
|
|
117
193
|
*/
|
|
118
|
-
export declare class SkipQueryInfo {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
194
|
+
export declare class SkipQueryInfo implements IQueryInfoBase {
|
|
195
|
+
/**
|
|
196
|
+
* Unique identifier for the query record
|
|
197
|
+
*/
|
|
198
|
+
ID: string;
|
|
199
|
+
/**
|
|
200
|
+
* Name of the query for display and reference
|
|
201
|
+
*/
|
|
202
|
+
Name: string;
|
|
203
|
+
/**
|
|
204
|
+
* Detailed description of what the query does and what data it returns
|
|
205
|
+
*/
|
|
206
|
+
Description: string;
|
|
207
|
+
/**
|
|
208
|
+
* Foreign key reference to the Query Categories entity
|
|
209
|
+
*/
|
|
210
|
+
CategoryID: string;
|
|
211
|
+
/**
|
|
212
|
+
* Category name from the related Query Categories entity
|
|
213
|
+
*/
|
|
214
|
+
Category: string;
|
|
215
|
+
/**
|
|
216
|
+
* Full hierarchical path of the category (e.g., "/MJ/AI/Agents/")
|
|
217
|
+
*/
|
|
218
|
+
CategoryPath: string;
|
|
219
|
+
/**
|
|
220
|
+
* The actual SQL query text to execute, may include Nunjucks template parameters
|
|
221
|
+
*/
|
|
222
|
+
SQL: string;
|
|
223
|
+
/**
|
|
224
|
+
* Current status of the query in the approval workflow
|
|
225
|
+
*/
|
|
226
|
+
Status: 'Pending' | 'In-Review' | 'Approved' | 'Rejected' | 'Obsolete';
|
|
227
|
+
/**
|
|
228
|
+
* Value indicating the quality of the query, higher values mean better quality
|
|
229
|
+
*/
|
|
230
|
+
QualityRank: number;
|
|
138
231
|
/**
|
|
139
232
|
* Optional JSON-serialized embedding vector for the query, used for similarity search and query analysis
|
|
140
233
|
*/
|
|
141
|
-
|
|
234
|
+
EmbeddingVector?: string;
|
|
142
235
|
/**
|
|
143
|
-
* The AI Model used to generate the embedding vector for this query. Required for vector similarity comparisons.
|
|
236
|
+
* The AI Model ID used to generate the embedding vector for this query. Required for vector similarity comparisons.
|
|
144
237
|
*/
|
|
145
|
-
|
|
238
|
+
EmbeddingModelID?: string;
|
|
146
239
|
/**
|
|
147
240
|
* The name of the AI Model used to generate the embedding vector for this query.
|
|
148
241
|
*/
|
|
149
|
-
|
|
242
|
+
EmbeddingModelName?: string;
|
|
243
|
+
/**
|
|
244
|
+
* Field metadata for this query
|
|
245
|
+
*/
|
|
246
|
+
Fields: SkipQueryFieldInfo[];
|
|
247
|
+
/**
|
|
248
|
+
* Parameter definitions for this parameterized query
|
|
249
|
+
*/
|
|
250
|
+
Parameters: SkipQueryParamInfo[];
|
|
251
|
+
/**
|
|
252
|
+
* Entities referenced by this query
|
|
253
|
+
*/
|
|
254
|
+
Entities?: SkipQueryEntityInfo[];
|
|
150
255
|
}
|
|
151
256
|
/**
|
|
152
257
|
* Represents a change to a query during the learning cycle process, allowing Skip
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-types.d.ts","sourceRoot":"","sources":["../src/query-types.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"query-types.d.ts","sourceRoot":"","sources":["../src/query-types.ts"],"names":[],"mappings":"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"}
|
package/dist/query-types.js
CHANGED
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
* Data requests allow Skip to ask for additional data beyond what was initially provided,
|
|
16
16
|
* either through custom SQL statements or by referencing stored queries. This capability
|
|
17
17
|
* enables Skip to iteratively refine its analysis by gathering the exact data it needs.
|
|
18
|
+
*
|
|
19
|
+
* IMPORTANT: These types implement interfaces from @memberjunction/core to ensure
|
|
20
|
+
* consistency between MJ and Skip. Property names use PascalCase to match MJ conventions.
|
|
18
21
|
*/
|
|
19
22
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
23
|
exports.SkipLearningCycleQueryChange = exports.SkipQueryInfo = exports.SkipQueryEntityInfo = exports.SkipQueryParamInfo = exports.SkipQueryFieldInfo = exports.SkipDataRequest = exports.SkipDataRequestType = void 0;
|
|
@@ -37,17 +40,26 @@ exports.SkipDataRequest = SkipDataRequest;
|
|
|
37
40
|
* Metadata about individual fields within a stored query, including their data types,
|
|
38
41
|
* source entity mappings, and computed field information. This helps Skip understand
|
|
39
42
|
* the structure and meaning of query results.
|
|
43
|
+
*
|
|
44
|
+
* Implements IQueryFieldInfoBase for consistency with MJCore types.
|
|
40
45
|
*/
|
|
41
46
|
class SkipQueryFieldInfo {
|
|
42
47
|
}
|
|
43
48
|
exports.SkipQueryFieldInfo = SkipQueryFieldInfo;
|
|
49
|
+
/**
|
|
50
|
+
* Parameter definitions for parameterized queries that use Nunjucks templates.
|
|
51
|
+
* Each parameter represents a dynamic value that can be passed when executing the query.
|
|
52
|
+
*
|
|
53
|
+
* Implements IQueryParameterInfoBase for consistency with MJCore types.
|
|
54
|
+
*/
|
|
44
55
|
class SkipQueryParamInfo {
|
|
45
56
|
}
|
|
46
57
|
exports.SkipQueryParamInfo = SkipQueryParamInfo;
|
|
47
58
|
/**
|
|
48
|
-
* Metadata about entities referenced by a query
|
|
49
|
-
*
|
|
50
|
-
*
|
|
59
|
+
* Metadata about entities referenced by a query. This helps Skip understand which
|
|
60
|
+
* entities are involved in each query and how they are being used.
|
|
61
|
+
*
|
|
62
|
+
* Implements IQueryEntityInfoBase for consistency with MJCore types.
|
|
51
63
|
*/
|
|
52
64
|
class SkipQueryEntityInfo {
|
|
53
65
|
}
|
|
@@ -56,6 +68,8 @@ exports.SkipQueryEntityInfo = SkipQueryEntityInfo;
|
|
|
56
68
|
* Complete metadata about a stored query, including its SQL, approval status, quality ranking,
|
|
57
69
|
* and field definitions. This information allows Skip to understand and utilize pre-built
|
|
58
70
|
* queries for analysis and reporting.
|
|
71
|
+
*
|
|
72
|
+
* Implements IQueryInfoBase for consistency with MJCore types.
|
|
59
73
|
*/
|
|
60
74
|
class SkipQueryInfo {
|
|
61
75
|
}
|
package/dist/query-types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-types.js","sourceRoot":"","sources":["../src/query-types.ts"],"names":[],"mappings":";AAAA
|
|
1
|
+
{"version":3,"file":"query-types.js","sourceRoot":"","sources":["../src/query-types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;GAmBG;;;AASH;;;;GAIG;AACU,QAAA,mBAAmB,GAAG;IAC/B,GAAG,EAAE,KAAK;IACV,YAAY,EAAE,cAAc;CACtB,CAAC;AAGX;;GAEG;AACH,MAAa,eAAe;CAmB3B;AAnBD,0CAmBC;AAED;;;;;;GAMG;AACH,MAAa,kBAAkB;CAyD9B;AAzDD,gDAyDC;AAED;;;;;GAKG;AACH,MAAa,kBAAkB;CAqC9B;AArCD,gDAqCC;AAED;;;;;GAKG;AACH,MAAa,mBAAmB;CAiB/B;AAjBD,kDAiBC;AAED;;;;;;GAMG;AACH,MAAa,aAAa;CA6DzB;AA7DD,sCA6DC;AAED;;;;GAIG;AACH,MAAa,4BAA4B;CAGxC;AAHD,oEAGC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/skip-types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.122.0",
|
|
4
4
|
"description": "MemberJunction: Skip AI Assistant - Types that are used between the MJAPI and the Skip API as well as the UI within MemberJunction Explorer",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"typescript": "^5.4.5"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@memberjunction/core": "2.
|
|
23
|
-
"@memberjunction/interactive-component-types": "2.
|
|
24
|
-
"@memberjunction/data-context": "2.
|
|
22
|
+
"@memberjunction/core": "2.122.0",
|
|
23
|
+
"@memberjunction/interactive-component-types": "2.122.0",
|
|
24
|
+
"@memberjunction/data-context": "2.122.0"
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|