@memberjunction/skip-types 0.9.20 → 0.9.21

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/types.d.ts CHANGED
@@ -1,5 +1,56 @@
1
1
  import { DataContext } from '@memberjunction/data-context';
2
- export declare class SubProcessResponse {
2
+ /**
3
+ * This type defines the shape of data that is passed back from the MJ API server to callers, typically the MJ Explorer UI
4
+ */
5
+ export declare class MJAPISkipResult {
6
+ /**
7
+ * Indicates if the API request was successful or not, true if successful, false if not
8
+ */
9
+ Success: boolean;
10
+ /**
11
+ * Contains a more detailed status of the API request. This is typically used to provide additional information about the request, such as an error message if the request was not successful
12
+ */
13
+ Status: string;
14
+ /**
15
+ * The phase of the conversation, defined in the SkipResponsePhase type
16
+ */
17
+ ResponsePhase: SkipResponsePhase;
18
+ /**
19
+ * Contains the JSON data that is returned from the Skip API server.
20
+ * This can be a SkipAPIAnalysisCompleteResponse, SkipAPIClarifyingQuestionResponse, or SkipAPIDataRequestResponse.
21
+ * To determine which type it is and to access the properties of the response, you will need to typecast
22
+ * this property to the appropriate type. For example:
23
+ *
24
+ * if (result.ResponsePhase === 'analysis_complete') {
25
+ * // typecast the MJAPISkipResult object Result property
26
+ * const resultData = <SkipAPIAnalysisCompleteResponse>JSON.parse(result.Result);
27
+ * // now you can access the properties of the SkipAPIAnalysisCompleteResponse type in a strongly typed manner
28
+ * // and do whatever you want to do.
29
+ * }
30
+ */
31
+ Result: string;
32
+ /**
33
+ * The MemberJunction Conversation ID assigned to this conversation. This is used to track the
34
+ * conversation in the database, used for conversation history, and will be generated by the MJ API server if
35
+ * no existing Conversation ID was passed in with the request.
36
+ */
37
+ ConversationId: number;
38
+ /**
39
+ * The Conversation Detail ID for the inbound user message that was passed in with the request.
40
+ */
41
+ UserMessageConversationDetailId: number;
42
+ /**
43
+ * The Conversation Detail ID for the outbound system message that was generated by the Skip API server, stored in the database by the MJ API server,
44
+ * and is being passed back here.
45
+ */
46
+ AIMessageConversationDetailId: number;
47
+ }
48
+ /**
49
+ * Whenever Skip executes it's analysis phase, it uses a sandboxed sub-process to execute code securely and
50
+ * this shape of data is used to communicate the results of that sub-process back to the Skip API server.
51
+ * This data type is in turn used within the SkipAPIAnalysisCompleteResponse type.
52
+ */
53
+ export declare class SkipSubProcessResponse {
3
54
  status: "success" | "error";
4
55
  resultType: "data" | "plot" | "html" | null;
5
56
  tableData: any[] | null;
@@ -8,11 +59,11 @@ export declare class SubProcessResponse {
8
59
  layout: any;
9
60
  } | null;
10
61
  htmlReport: string | null;
11
- analysis: string | null;
12
62
  errorMessage: string | null;
13
63
  }
14
64
  /**
15
- * Defines the shape of the individual message that makes up the messages array that is passed back and forth with the Skip API Server
65
+ * Defines the shape of the individual message that makes up the messages array that is passed back and
66
+ * forth with the Skip API Server
16
67
  */
17
68
  export declare class SkipMessage {
18
69
  /**
@@ -24,6 +75,81 @@ export declare class SkipMessage {
24
75
  */
25
76
  content: string;
26
77
  }
78
+ /**
79
+ * For each Skip API Analysis result, it is possible for Skip to provide a set of tableDataColumns that describe the data that is being returned in this shape.
80
+ */
81
+ export declare class SkipColumnInfo {
82
+ fieldName: string;
83
+ displayName: string;
84
+ simpleDataType: 'string' | 'number' | 'date' | 'boolean';
85
+ description: string;
86
+ }
87
+ /**
88
+ * Describes the different request phases that are used to communicate with the Skip API Server
89
+ * The phase of the conversation, defined as follows:
90
+ * * initial_request: The initial request from the user - when a new conversation gets started or after a report is created, pass in this value
91
+ * * clarify_question_response: Sometimes the Skip API server responds back to your request with a responsePhase of 'clarifying_question' - in this situation, the MJAPI server needs to communicate with the UI to ask the follow up question to the user. When you have that feedback from the user gathered and are providing the response to the clarifying question back to Skip API, use this requestPhase
92
+ * * data_gathering_response: Sometimes the Skip API server responds back to your request with a responsePhase of 'data_request' - in this situation, the MJAPI server needs to process the data request, gather whatever additional data the Skip API has asked for, and then return it in the dataContext property of the SkipAPIRequest object. When you are finished gathering data and returning it to the Skip API server, use this requestPhase
93
+ * * data_gathering_failure: When you send an API request to the Skip API server saying there was a data_gathering_failure that means that you attempted to retrieve data Skip requested but there was (typically) an error in the SQL statement that Skip generated and it needs to be regenerated. The MJAPI server code handles this scenario automatically.
94
+ */
95
+ export declare const SkipRequestPhase: {
96
+ readonly initial_request: "initial_request";
97
+ readonly clarify_question_response: "clarify_question_response";
98
+ readonly data_gathering_response: "data_gathering_response";
99
+ readonly data_gathering_failure: "data_gathering_failure";
100
+ };
101
+ export type SkipRequestPhase = typeof SkipRequestPhase[keyof typeof SkipRequestPhase];
102
+ export declare class SkipFieldInfo {
103
+ entityID: number;
104
+ sequence: number;
105
+ name: string;
106
+ displayName?: string;
107
+ description?: string;
108
+ isPrimaryKey: boolean;
109
+ isUnique: boolean;
110
+ category?: string;
111
+ type: string;
112
+ length: number;
113
+ precision: number;
114
+ scale: number;
115
+ allowsNull: boolean;
116
+ defaultValue: string;
117
+ autoIncrement: boolean;
118
+ valueListType?: string;
119
+ extendedType?: string;
120
+ defaultInView: boolean;
121
+ defaultColumnWidth: number;
122
+ isVirtual: boolean;
123
+ isNameField: boolean;
124
+ relatedEntityID?: number;
125
+ relatedEntityFieldName?: string;
126
+ relatedEntity?: string;
127
+ relatedEntitySchemaName?: string;
128
+ relatedEntityBaseView?: string;
129
+ }
130
+ export declare class SkipEntityRelationshipInfo {
131
+ entityID: number;
132
+ relatedEntityID: number;
133
+ type: string;
134
+ entityKeyField: string;
135
+ relatedEntityJoinField: string;
136
+ joinView: string;
137
+ joinEntityJoinField: string;
138
+ joinEntityInverseJoinField: string;
139
+ entity: string;
140
+ entityBaseView: string;
141
+ relatedEntity: string;
142
+ relatedEntityBaseView: string;
143
+ }
144
+ export declare class SkipEntityInfo {
145
+ id: number;
146
+ name: string;
147
+ description?: string;
148
+ schemaName: string;
149
+ baseView: string;
150
+ fields: SkipFieldInfo[];
151
+ relatedEntities: SkipEntityRelationshipInfo[];
152
+ }
27
153
  /**
28
154
  * Defines the shape of the data that is expected by the Skip API Server when making a request
29
155
  */
@@ -38,6 +164,10 @@ export declare class SkipAPIRequest {
38
164
  * The data context, use this to provide all of the data you have in a data context to Skip. You should provide this from cache or refreshed based on the parameters provided by the user.
39
165
  */
40
166
  dataContext: DataContext;
167
+ /**
168
+ * Summary entity metadata that is passed into the Skip Server so that Skip has knowledge of the schema of the calling MJAPI environment
169
+ */
170
+ entityInfo: SkipEntityInfo[];
41
171
  /**
42
172
  * The conversation ID
43
173
  */
@@ -47,14 +177,23 @@ export declare class SkipAPIRequest {
47
177
  */
48
178
  organizationID: number;
49
179
  /**
50
- * The phase of the conversation, defined as follows:
51
- * * initial_request: The initial request from the user - when a new conversation gets started or after a report is created, pass in this value
52
- * * clarify_question_response: Sometimes the Skip API server responds back to your request with a responsePhase of 'clarifying_question' - in this situation, the MJAPI server needs to communicate with the UI to ask the follow up question to the user. When you have that feedback from the user gathered and are providing the response to the clarifying question back to Skip API, use this requestPhase
53
- * * data_gathering_response: Sometimes the Skip API server responds back to your request with a responsePhase of 'data_request' - in this situation, the MJAPI server needs to process the data request, gather whatever additional data the Skip API has asked for, and then return it in the dataContext property of the SkipAPIRequest object. When you are finished gathering data and returning it to the Skip API server, use this requestPhase
54
- * * data_gathering_failure: When you send an API request to the Skip API server saying there was a data_gathering_failure that means that you attempted to retrieve data Skip requested but there was (typically) an error in the SQL statement that Skip generated and it needs to be regenerated. The MJAPI server code handles this scenario automatically.
180
+ * The request phase, defined within the SkipRequestPhase type
55
181
  */
56
- requestPhase: 'initial_request' | 'clarify_question_response' | 'data_gathering_response' | 'data_gathering_failure';
182
+ requestPhase: SkipRequestPhase;
57
183
  }
184
+ /**
185
+ * Describes the different response phases that are used by the Skip API Server to respond back to the caller (usually the MJAPI server but can be anyone)
186
+ * The response phase indicates if the Skip API server is asking for additional data, a clarifying question, or if the analysis is complete and the information has been provided
187
+ * * clarifying_question: The Skip API server is asking for a clarifying question to be asked to the user - typecast the response to SkipAPIClarifyingQuestionResponse for all of the additional properties that are available in this response phase
188
+ * * data_request: The Skip API server is asking for additional data to be gathered - typecast the response to SkipAPIDataRequestResponse for all of the additional properties that are available in this response phase
189
+ * * analysis_complete: The Skip API server has completed the analysis and is providing the results - typecast the response to SkipAPIAnalysisCompleteResponse for all of the additional properties that are available in this response phase
190
+ */
191
+ export declare const SkipResponsePhase: {
192
+ readonly clarifying_question: "clarifying_question";
193
+ readonly data_request: "data_request";
194
+ readonly analysis_complete: "analysis_complete";
195
+ };
196
+ export type SkipResponsePhase = typeof SkipResponsePhase[keyof typeof SkipResponsePhase];
58
197
  /**
59
198
  * Defines the shape of the data that is returned by the Skip API Server
60
199
  */
@@ -64,21 +203,23 @@ export declare class SkipAPIResponse {
64
203
  */
65
204
  success: boolean;
66
205
  /**
67
- * The response phase indicates if the Skip API server is asking for additional data, a clarifying question, or if the analysis is complete and the information has been provided
68
- * * clarifying_question: The Skip API server is asking for a clarifying question to be asked to the user - typecast the response to SkipAPIClarifyingQuestionResponse for all of the additional properties that are available in this response phase
69
- * * data_request: The Skip API server is asking for additional data to be gathered - typecast the response to SkipAPIDataRequestResponse for all of the additional properties that are available in this response phase
70
- * * analysis_complete: The Skip API server has completed the analysis and is providing the results - typecast the response to SkipAPIAnalysisCompleteResponse for all of the additional properties that are available in this response phase
206
+ * The Skip API server response phase, defined within the SkipResponsePhase type
207
+ */
208
+ responsePhase: SkipResponsePhase;
209
+ /**
210
+ * An array of messages including the messaged passed in with the SkipAPIRequest object as well as
211
+ * any additional messages that Skip generates as part of the conversation.
71
212
  */
72
- responsePhase: "clarifying_question" | "data_request" | "analysis_complete";
73
213
  messages: SkipMessage[];
74
214
  }
75
215
  /**
76
216
  * Defines the shape of the data that is returned by the Skip API Server when the responsePhase is 'analysis_complete'
77
217
  */
78
218
  export declare class SkipAPIAnalysisCompleteResponse extends SkipAPIResponse {
79
- executionResults?: SubProcessResponse | null;
219
+ executionResults?: SkipSubProcessResponse | null;
80
220
  userExplanation?: string;
81
221
  techExplanation?: string;
222
+ tableDataColumns?: SkipColumnInfo[];
82
223
  suggestedQuestions?: string[] | null;
83
224
  reportTitle?: string | null;
84
225
  analysis?: string | null;
@@ -96,14 +237,24 @@ export declare class SkipAPIClarifyingQuestionResponse extends SkipAPIResponse {
96
237
  export declare class SkipAPIDataRequestResponse extends SkipAPIResponse {
97
238
  dataRequest: SkipDataRequest[];
98
239
  }
240
+ /**
241
+ * Describes the different types of data requests the Skip API server can make for additional data.
242
+ * * sql: The Skip API server is asking for additional data to be gathered using a fully executable SQL statement
243
+ * * stored_query: The Skip API server is asking for additional data to be gathered using a stored query that is defined in the system within the Queries entity.
244
+ */
245
+ export declare const SkipDataRequestType: {
246
+ readonly sql: "sql";
247
+ readonly stored_query: "stored_query";
248
+ };
249
+ export type SkipDataRequestType = typeof SkipDataRequestType[keyof typeof SkipDataRequestType];
99
250
  /**
100
251
  * This type is used to define the requested data whenever the Skip API server asks for additional data to be gathered
101
252
  */
102
253
  export declare class SkipDataRequest {
103
254
  /**
104
- * The type of request, either "sql" or "stored_query". Stored query refers to the name of a query that is stored in the system and can be executed to gather data. SQL refers to a fully executable SQL statement that can be executed to gather data.
255
+ * The type of request, as defined in the `SkipDataRequestType` type
105
256
  */
106
- type: "sql" | "stored_query";
257
+ type: SkipDataRequestType;
107
258
  /**
108
259
  * The text of the request - either a fully executable SQL statement or the name of a stored query
109
260
  */
package/dist/types.js CHANGED
@@ -1,21 +1,78 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SkipDataRequest = exports.SkipAPIDataRequestResponse = exports.SkipAPIClarifyingQuestionResponse = exports.SkipAPIAnalysisCompleteResponse = exports.SkipAPIResponse = exports.SkipAPIRequest = exports.SkipMessage = exports.SubProcessResponse = void 0;
4
- class SubProcessResponse {
3
+ exports.SkipDataRequest = exports.SkipDataRequestType = exports.SkipAPIDataRequestResponse = exports.SkipAPIClarifyingQuestionResponse = exports.SkipAPIAnalysisCompleteResponse = exports.SkipAPIResponse = exports.SkipResponsePhase = exports.SkipAPIRequest = exports.SkipEntityInfo = exports.SkipEntityRelationshipInfo = exports.SkipFieldInfo = exports.SkipRequestPhase = exports.SkipColumnInfo = exports.SkipMessage = exports.SkipSubProcessResponse = exports.MJAPISkipResult = void 0;
4
+ /**
5
+ * This type defines the shape of data that is passed back from the MJ API server to callers, typically the MJ Explorer UI
6
+ */
7
+ class MJAPISkipResult {
8
+ }
9
+ exports.MJAPISkipResult = MJAPISkipResult;
10
+ /**
11
+ * Whenever Skip executes it's analysis phase, it uses a sandboxed sub-process to execute code securely and
12
+ * this shape of data is used to communicate the results of that sub-process back to the Skip API server.
13
+ * This data type is in turn used within the SkipAPIAnalysisCompleteResponse type.
14
+ */
15
+ class SkipSubProcessResponse {
5
16
  }
6
- exports.SubProcessResponse = SubProcessResponse;
17
+ exports.SkipSubProcessResponse = SkipSubProcessResponse;
7
18
  /**
8
- * Defines the shape of the individual message that makes up the messages array that is passed back and forth with the Skip API Server
19
+ * Defines the shape of the individual message that makes up the messages array that is passed back and
20
+ * forth with the Skip API Server
9
21
  */
10
22
  class SkipMessage {
11
23
  }
12
24
  exports.SkipMessage = SkipMessage;
25
+ /**
26
+ * For each Skip API Analysis result, it is possible for Skip to provide a set of tableDataColumns that describe the data that is being returned in this shape.
27
+ */
28
+ class SkipColumnInfo {
29
+ }
30
+ exports.SkipColumnInfo = SkipColumnInfo;
31
+ /**
32
+ * Describes the different request phases that are used to communicate with the Skip API Server
33
+ * The phase of the conversation, defined as follows:
34
+ * * initial_request: The initial request from the user - when a new conversation gets started or after a report is created, pass in this value
35
+ * * clarify_question_response: Sometimes the Skip API server responds back to your request with a responsePhase of 'clarifying_question' - in this situation, the MJAPI server needs to communicate with the UI to ask the follow up question to the user. When you have that feedback from the user gathered and are providing the response to the clarifying question back to Skip API, use this requestPhase
36
+ * * data_gathering_response: Sometimes the Skip API server responds back to your request with a responsePhase of 'data_request' - in this situation, the MJAPI server needs to process the data request, gather whatever additional data the Skip API has asked for, and then return it in the dataContext property of the SkipAPIRequest object. When you are finished gathering data and returning it to the Skip API server, use this requestPhase
37
+ * * data_gathering_failure: When you send an API request to the Skip API server saying there was a data_gathering_failure that means that you attempted to retrieve data Skip requested but there was (typically) an error in the SQL statement that Skip generated and it needs to be regenerated. The MJAPI server code handles this scenario automatically.
38
+ */
39
+ exports.SkipRequestPhase = {
40
+ initial_request: 'initial_request',
41
+ clarify_question_response: 'clarify_question_response',
42
+ data_gathering_response: 'data_gathering_response',
43
+ data_gathering_failure: 'data_gathering_failure'
44
+ };
45
+ class SkipFieldInfo {
46
+ }
47
+ exports.SkipFieldInfo = SkipFieldInfo;
48
+ class SkipEntityRelationshipInfo {
49
+ }
50
+ exports.SkipEntityRelationshipInfo = SkipEntityRelationshipInfo;
51
+ class SkipEntityInfo {
52
+ constructor() {
53
+ this.fields = [];
54
+ this.relatedEntities = [];
55
+ }
56
+ }
57
+ exports.SkipEntityInfo = SkipEntityInfo;
13
58
  /**
14
59
  * Defines the shape of the data that is expected by the Skip API Server when making a request
15
60
  */
16
61
  class SkipAPIRequest {
17
62
  }
18
63
  exports.SkipAPIRequest = SkipAPIRequest;
64
+ /**
65
+ * Describes the different response phases that are used by the Skip API Server to respond back to the caller (usually the MJAPI server but can be anyone)
66
+ * The response phase indicates if the Skip API server is asking for additional data, a clarifying question, or if the analysis is complete and the information has been provided
67
+ * * clarifying_question: The Skip API server is asking for a clarifying question to be asked to the user - typecast the response to SkipAPIClarifyingQuestionResponse for all of the additional properties that are available in this response phase
68
+ * * data_request: The Skip API server is asking for additional data to be gathered - typecast the response to SkipAPIDataRequestResponse for all of the additional properties that are available in this response phase
69
+ * * analysis_complete: The Skip API server has completed the analysis and is providing the results - typecast the response to SkipAPIAnalysisCompleteResponse for all of the additional properties that are available in this response phase
70
+ */
71
+ exports.SkipResponsePhase = {
72
+ clarifying_question: "clarifying_question",
73
+ data_request: "data_request",
74
+ analysis_complete: "analysis_complete"
75
+ };
19
76
  /**
20
77
  * Defines the shape of the data that is returned by the Skip API Server
21
78
  */
@@ -40,6 +97,15 @@ exports.SkipAPIClarifyingQuestionResponse = SkipAPIClarifyingQuestionResponse;
40
97
  class SkipAPIDataRequestResponse extends SkipAPIResponse {
41
98
  }
42
99
  exports.SkipAPIDataRequestResponse = SkipAPIDataRequestResponse;
100
+ /**
101
+ * Describes the different types of data requests the Skip API server can make for additional data.
102
+ * * sql: The Skip API server is asking for additional data to be gathered using a fully executable SQL statement
103
+ * * stored_query: The Skip API server is asking for additional data to be gathered using a stored query that is defined in the system within the Queries entity.
104
+ */
105
+ exports.SkipDataRequestType = {
106
+ sql: "sql",
107
+ stored_query: "stored_query"
108
+ };
43
109
  /**
44
110
  * This type is used to define the requested data whenever the Skip API server asks for additional data to be gathered
45
111
  */
package/dist/types.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;AAIA,MAAa,kBAAkB;CAQ9B;AARD,gDAQC;AAGD;;GAEG;AACH,MAAa,WAAW;CASvB;AATD,kCASC;AAED;;GAEG;AACH,MAAa,cAAc;CA4B1B;AA5BD,wCA4BC;AAED;;GAEG;AACH,MAAa,eAAe;CAa3B;AAbD,0CAaC;AAED;;GAEG;AACH,MAAa,+BAAgC,SAAQ,eAAe;CAQnE;AARD,0EAQC;AAED;;GAEG;AACH,MAAa,iCAAkC,SAAQ,eAAe;CAErE;AAFD,8EAEC;AAED;;GAEG;AACH,MAAa,0BAA2B,SAAQ,eAAe;CAE9D;AAFD,gEAEC;AAED;;GAEG;AACH,MAAa,eAAe;CAa3B;AAbD,0CAaC"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;AAIA;;GAEG;AACH,MAAa,eAAe;CAgD3B;AAhDD,0CAgDC;AAGD;;;;GAIG;AACH,MAAa,sBAAsB;CAOlC;AAPD,wDAOC;AAGD;;;GAGG;AACH,MAAa,WAAW;CASvB;AATD,kCASC;AAID;;GAEG;AACH,MAAa,cAAc;CAK1B;AALD,wCAKC;AAGD;;;;;;;GAOG;AACU,QAAA,gBAAgB,GAAG;IAC5B,eAAe,EAAE,iBAAiB;IAClC,yBAAyB,EAAE,2BAA2B;IACtD,uBAAuB,EAAE,yBAAyB;IAClD,sBAAsB,EAAE,wBAAwB;CAC1C,CAAC;AAGX,MAAa,aAAa;CA2BzB;AA3BD,sCA2BC;AAED,MAAa,0BAA0B;CAatC;AAbD,gEAaC;AAED,MAAa,cAAc;IAA3B;QAMI,WAAM,GAAmB,EAAE,CAAC;QAC5B,oBAAe,GAAiC,EAAE,CAAC;IACvD,CAAC;CAAA;AARD,wCAQC;AACD;;GAEG;AACH,MAAa,cAAc;CA4B1B;AA5BD,wCA4BC;AAGD;;;;;;GAMG;AACU,QAAA,iBAAiB,GAAG;IAC7B,mBAAmB,EAAE,qBAAqB;IAC1C,YAAY,EAAE,cAAc;IAC5B,iBAAiB,EAAE,mBAAmB;CAChC,CAAC;AAIX;;GAEG;AACH,MAAa,eAAe;CAc3B;AAdD,0CAcC;AAED;;GAEG;AACH,MAAa,+BAAgC,SAAQ,eAAe;CASnE;AATD,0EASC;AAED;;GAEG;AACH,MAAa,iCAAkC,SAAQ,eAAe;CAErE;AAFD,8EAEC;AAED;;GAEG;AACH,MAAa,0BAA2B,SAAQ,eAAe;CAE9D;AAFD,gEAEC;AAGD;;;;GAIG;AACU,QAAA,mBAAmB,GAAG;IAC/B,GAAG,EAAE,KAAK;IACV,YAAY,EAAE,cAAc;CACtB,CAAC;AAIX;;GAEG;AACH,MAAa,eAAe;CAa3B;AAbD,0CAaC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/skip-types",
3
- "version": "0.9.20",
3
+ "version": "0.9.21",
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",
@@ -20,6 +20,6 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@memberjunction/core-entities": "^0.9.125",
23
- "@memberjunction/data-context": "^0.9.4"
23
+ "@memberjunction/data-context": "^0.9.5"
24
24
  }
25
25
  }