@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.
@@ -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
- name: string;
57
- queryID: string;
58
- description: string;
59
- sequence: number;
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
- sqlBaseType: string;
85
+ SQLBaseType: string;
64
86
  /**
65
87
  * The full SQL type for the field, for example datetime or nvarchar(10) etc.
66
88
  */
67
- sqlFullType: string;
68
- sourceEntityID: string;
69
- sourceFieldName: string;
70
- isComputed: boolean;
71
- computationDescription: string;
72
- isSummary: boolean;
73
- summaryDescription: string;
74
- createdAt: Date;
75
- updatedAt: Date;
76
- sourceEntity: string;
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
- export declare class SkipQueryParamInfo {
79
- name: string;
80
- description: string;
81
- type: string;
82
- isRequired: boolean;
83
- defaultValue: string;
84
- createdAt: Date;
85
- updatedAt: Date;
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, including how the reference was detected
89
- * and the confidence level. This helps Skip understand which entities are involved in
90
- * each query and how they are being used.
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
- id: string;
94
- queryID: string;
95
- entityID: string;
96
- entityName: string;
97
- /**
98
- * Indicates how this entity-query relationship was identified.
99
- * "AI" means LLM analysis was used to parse the SQL/template and identify which MemberJunction entities are referenced.
100
- * "Manual" means a user explicitly marked this entity as being used by the query.
101
- */
102
- detectionMethod: 'AI' | 'Manual';
103
- /**
104
- * Confidence score (0.00-1.00) indicating how certain the AI was that this entity is actually used in the query.
105
- * Only populated when detectionMethod="AI".
106
- * Considers factors like: direct table references vs indirect joins, clear entity names vs ambiguous aliases,
107
- * and context from the query purpose.
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
- id: string;
120
- name: string;
121
- description: string;
122
- categoryID: string;
123
- sql: string;
124
- originalSQL: string;
125
- feedback: string;
126
- status: 'Pending' | 'In-Review' | 'Approved' | 'Rejected' | 'Obsolete';
127
- qualityRank: number;
128
- createdAt: Date;
129
- updatedAt: Date;
130
- category: string;
131
- categoryPath: string;
132
- fields: SkipQueryFieldInfo[];
133
- params: SkipQueryParamInfo[];
134
- /**
135
- * Entities referenced by this query, including metadata about how the reference was detected
136
- */
137
- entities?: SkipQueryEntityInfo[];
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
- embeddingVector?: string;
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
- embeddingModelID?: string;
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
- embeddingModelName?: string;
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":"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"}
1
+ {"version":3,"file":"query-types.d.ts","sourceRoot":"","sources":["../src/query-types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,OAAO,EACH,cAAc,EACd,mBAAmB,EACnB,uBAAuB,EACvB,oBAAoB,EACvB,MAAM,sBAAsB,CAAC;AAE9B;;;;GAIG;AACH,eAAO,MAAM,mBAAmB;;;CAGtB,CAAC;AACX,MAAM,MAAM,mBAAmB,GAAG,OAAO,mBAAmB,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AAE/F;;GAEG;AACH,qBAAa,eAAe;IACxB;;OAEG;IACH,IAAI,EAAG,mBAAmB,CAAC;IAC3B;;OAEG;IACH,IAAI,EAAG,MAAM,CAAC;IAEd;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;;;;;GAMG;AACH,qBAAa,kBAAmB,YAAW,mBAAmB;IAC1D;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,kBAAkB,EAAE,MAAM,CAAC;CAC9B;AAED;;;;;GAKG;AACH,qBAAa,kBAAmB,YAAW,uBAAuB;IAC9D;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC7B;AAED;;;;;GAKG;AACH,qBAAa,mBAAoB,YAAW,oBAAoB;IAC5D;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAClB;AAED;;;;;;GAMG;AACH,qBAAa,aAAc,YAAW,cAAc;IAChD;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,MAAM,EAAE,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,CAAC;IACvE;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;OAEG;IACH,MAAM,EAAE,kBAAkB,EAAE,CAAC;IAC7B;;OAEG;IACH,UAAU,EAAE,kBAAkB,EAAE,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,EAAE,mBAAmB,EAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,qBAAa,4BAA4B;IACrC,KAAK,EAAE,aAAa,CAAC;IACrB,UAAU,EAAE,KAAK,GAAG,QAAQ,GAAG,QAAQ,CAAC;CAC3C"}
@@ -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, including how the reference was detected
49
- * and the confidence level. This helps Skip understand which entities are involved in
50
- * each query and how they are being used.
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
  }
@@ -1 +1 @@
1
- {"version":3,"file":"query-types.js","sourceRoot":"","sources":["../src/query-types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;GAgBG;;;AAEH;;;;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;;;;GAIG;AACH,MAAa,kBAAkB;CAsB9B;AAtBD,gDAsBC;AAED,MAAa,kBAAkB;CAQ9B;AARD,gDAQC;AAED;;;;GAIG;AACH,MAAa,mBAAmB;CAoB/B;AApBD,kDAoBC;AAED;;;;GAIG;AACH,MAAa,aAAa;CAiCzB;AAjCD,sCAiCC;AAED;;;;GAIG;AACH,MAAa,4BAA4B;CAGxC;AAHD,oEAGC"}
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.121.0",
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.121.0",
23
- "@memberjunction/interactive-component-types": "2.121.0",
24
- "@memberjunction/data-context": "2.121.0"
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",