@memberjunction/skip-types 3.3.0 → 4.0.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/agent-types.d.ts +4 -4
- package/dist/agent-types.js +7 -17
- package/dist/agent-types.js.map +1 -1
- package/dist/api-types.d.ts +6 -6
- package/dist/api-types.js +6 -13
- package/dist/api-types.js.map +1 -1
- package/dist/artifact-types.js +1 -2
- package/dist/artifact-types.js.map +1 -1
- package/dist/auth-types.js +1 -5
- package/dist/auth-types.js.map +1 -1
- package/dist/child-spec.d.ts +72 -0
- package/dist/child-spec.d.ts.map +1 -0
- package/dist/child-spec.js +3 -0
- package/dist/child-spec.js.map +1 -0
- package/dist/component-option.d.ts +32 -0
- package/dist/component-option.d.ts.map +1 -0
- package/dist/component-option.js +3 -0
- package/dist/component-option.js.map +1 -0
- package/dist/component-props-events.d.ts +66 -0
- package/dist/component-props-events.d.ts.map +1 -0
- package/dist/component-props-events.js +3 -0
- package/dist/component-props-events.js.map +1 -0
- package/dist/conversation-types.d.ts +1 -1
- package/dist/conversation-types.js +3 -9
- package/dist/conversation-types.js.map +1 -1
- package/dist/data-requirements.d.ts +77 -0
- package/dist/data-requirements.d.ts.map +1 -0
- package/dist/data-requirements.js +3 -0
- package/dist/data-requirements.js.map +1 -0
- package/dist/entity-metadata-types.js +1 -2
- package/dist/index.d.ts +9 -9
- package/dist/index.js +9 -25
- package/dist/index.js.map +1 -1
- package/dist/query-types.js +7 -16
- package/dist/query-types.js.map +1 -1
- package/dist/response-types.d.ts +5 -5
- package/dist/response-types.js +7 -16
- package/dist/response-types.js.map +1 -1
- package/dist/root-spec.d.ts +72 -0
- package/dist/root-spec.d.ts.map +1 -0
- package/dist/root-spec.js +3 -0
- package/dist/root-spec.js.map +1 -0
- package/dist/runtime-types.d.ts +211 -0
- package/dist/runtime-types.d.ts.map +1 -0
- package/dist/runtime-types.js +3 -0
- package/dist/runtime-types.js.map +1 -0
- package/dist/shared.d.ts +44 -0
- package/dist/shared.d.ts.map +1 -0
- package/dist/shared.js +3 -0
- package/dist/shared.js.map +1 -0
- package/dist/util.d.ts +1 -1
- package/dist/util.js +18 -36
- package/dist/util.js.map +1 -1
- package/package.json +8 -7
package/dist/util.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.skipEntityGetFieldNameSet = exports.skipEntityGetField = exports.skipEntityHasField = exports.MapSkipEntityFieldInfoToSimpleEntityFieldInfo = exports.MapSimpleEntityFieldInfoToSkipEntityFieldInfo = exports.MapSkipEntityInfoToSimpleEntityInfo = exports.MapSimpleEntityInfoArrayToSkipEntityInfoArray = exports.MapSimpleEntityInfoToSkipEntityInfo = exports.MapEntityRelationshipInfoToSkipEntityRelationshipInfo = exports.MapEntityFieldValueInfoToSkipEntityFieldValueInfo = exports.MapSkipEntityFieldInfoToEntityFieldInfo = exports.MapEntityFieldInfoToSkipEntityFieldInfo = exports.MapSkipEntityInfoToEntityInfo = exports.MapEntityInfoArrayToSkipEntityInfoArray = exports.MapEntityInfoToSkipEntityInfo = void 0;
|
|
4
|
-
const interactive_component_types_1 = require("@memberjunction/interactive-component-types");
|
|
1
|
+
import { SimpleEntityInfo, SimpleEntityFieldInfo } from "@memberjunction/interactive-component-types";
|
|
5
2
|
// ============================================================================
|
|
6
3
|
// EntityInfo <-> SkipEntityInfo conversions
|
|
7
4
|
// ============================================================================
|
|
@@ -14,7 +11,7 @@ const interactive_component_types_1 = require("@memberjunction/interactive-compo
|
|
|
14
11
|
* @param e - The source EntityInfo object from MemberJunction core
|
|
15
12
|
* @returns A SkipEntityInfo object with mapped fields and relationships
|
|
16
13
|
*/
|
|
17
|
-
function MapEntityInfoToSkipEntityInfo(e) {
|
|
14
|
+
export function MapEntityInfoToSkipEntityInfo(e) {
|
|
18
15
|
return {
|
|
19
16
|
id: e.ID,
|
|
20
17
|
name: e.Name,
|
|
@@ -27,17 +24,15 @@ function MapEntityInfoToSkipEntityInfo(e) {
|
|
|
27
24
|
rowsSampleMethod: e.RowsToPackSampleMethod
|
|
28
25
|
};
|
|
29
26
|
}
|
|
30
|
-
exports.MapEntityInfoToSkipEntityInfo = MapEntityInfoToSkipEntityInfo;
|
|
31
27
|
/**
|
|
32
28
|
* Maps an array of MemberJunction EntityInfo objects to SkipEntityInfo objects.
|
|
33
29
|
*
|
|
34
30
|
* @param entities - Array of EntityInfo from @memberjunction/core
|
|
35
31
|
* @returns Array of SkipEntityInfo objects
|
|
36
32
|
*/
|
|
37
|
-
function MapEntityInfoArrayToSkipEntityInfoArray(entities) {
|
|
33
|
+
export function MapEntityInfoArrayToSkipEntityInfoArray(entities) {
|
|
38
34
|
return entities.map(e => MapEntityInfoToSkipEntityInfo(e));
|
|
39
35
|
}
|
|
40
|
-
exports.MapEntityInfoArrayToSkipEntityInfoArray = MapEntityInfoArrayToSkipEntityInfoArray;
|
|
41
36
|
/**
|
|
42
37
|
* Converts a SkipEntityInfo to a partial EntityInfo object.
|
|
43
38
|
* Note: This creates a plain object with EntityInfo-compatible properties,
|
|
@@ -46,7 +41,7 @@ exports.MapEntityInfoArrayToSkipEntityInfoArray = MapEntityInfoArrayToSkipEntity
|
|
|
46
41
|
* @param skipEntity - The SkipEntityInfo to convert
|
|
47
42
|
* @returns A partial EntityInfo-compatible object
|
|
48
43
|
*/
|
|
49
|
-
function MapSkipEntityInfoToEntityInfo(skipEntity) {
|
|
44
|
+
export function MapSkipEntityInfoToEntityInfo(skipEntity) {
|
|
50
45
|
return {
|
|
51
46
|
ID: skipEntity.id,
|
|
52
47
|
Name: skipEntity.name,
|
|
@@ -57,7 +52,6 @@ function MapSkipEntityInfoToEntityInfo(skipEntity) {
|
|
|
57
52
|
RowsToPackSampleMethod: skipEntity.rowsSampleMethod
|
|
58
53
|
};
|
|
59
54
|
}
|
|
60
|
-
exports.MapSkipEntityInfoToEntityInfo = MapSkipEntityInfoToEntityInfo;
|
|
61
55
|
// ============================================================================
|
|
62
56
|
// EntityFieldInfo <-> SkipEntityFieldInfo conversions
|
|
63
57
|
// ============================================================================
|
|
@@ -71,7 +65,7 @@ exports.MapSkipEntityInfoToEntityInfo = MapSkipEntityInfoToEntityInfo;
|
|
|
71
65
|
* @param f - The EntityFieldInfo object to be mapped
|
|
72
66
|
* @returns A SkipEntityFieldInfo object with all field properties mapped
|
|
73
67
|
*/
|
|
74
|
-
function MapEntityFieldInfoToSkipEntityFieldInfo(f) {
|
|
68
|
+
export function MapEntityFieldInfoToSkipEntityFieldInfo(f) {
|
|
75
69
|
return {
|
|
76
70
|
entityID: f.EntityID,
|
|
77
71
|
sequence: f.Sequence,
|
|
@@ -106,7 +100,6 @@ function MapEntityFieldInfoToSkipEntityFieldInfo(f) {
|
|
|
106
100
|
}))
|
|
107
101
|
};
|
|
108
102
|
}
|
|
109
|
-
exports.MapEntityFieldInfoToSkipEntityFieldInfo = MapEntityFieldInfoToSkipEntityFieldInfo;
|
|
110
103
|
/**
|
|
111
104
|
* Converts a SkipEntityFieldInfo to a partial EntityFieldInfo object.
|
|
112
105
|
* Note: This creates a plain object with EntityFieldInfo-compatible properties,
|
|
@@ -115,7 +108,7 @@ exports.MapEntityFieldInfoToSkipEntityFieldInfo = MapEntityFieldInfoToSkipEntity
|
|
|
115
108
|
* @param skipField - The SkipEntityFieldInfo to convert
|
|
116
109
|
* @returns A partial EntityFieldInfo-compatible object
|
|
117
110
|
*/
|
|
118
|
-
function MapSkipEntityFieldInfoToEntityFieldInfo(skipField) {
|
|
111
|
+
export function MapSkipEntityFieldInfoToEntityFieldInfo(skipField) {
|
|
119
112
|
return {
|
|
120
113
|
EntityID: skipField.entityID,
|
|
121
114
|
Sequence: skipField.sequence,
|
|
@@ -142,7 +135,6 @@ function MapSkipEntityFieldInfoToEntityFieldInfo(skipField) {
|
|
|
142
135
|
RelatedEntityFieldName: skipField.relatedEntityFieldName
|
|
143
136
|
};
|
|
144
137
|
}
|
|
145
|
-
exports.MapSkipEntityFieldInfoToEntityFieldInfo = MapSkipEntityFieldInfoToEntityFieldInfo;
|
|
146
138
|
// ============================================================================
|
|
147
139
|
// EntityFieldValueInfo <-> SkipEntityFieldValueInfo conversions
|
|
148
140
|
// ============================================================================
|
|
@@ -156,13 +148,12 @@ exports.MapSkipEntityFieldInfoToEntityFieldInfo = MapSkipEntityFieldInfoToEntity
|
|
|
156
148
|
* @param pv - The EntityFieldValueInfo object representing a possible value
|
|
157
149
|
* @returns A SkipEntityFieldValueInfo object with mapped value information
|
|
158
150
|
*/
|
|
159
|
-
function MapEntityFieldValueInfoToSkipEntityFieldValueInfo(pv) {
|
|
151
|
+
export function MapEntityFieldValueInfoToSkipEntityFieldValueInfo(pv) {
|
|
160
152
|
return {
|
|
161
153
|
value: pv.Value,
|
|
162
154
|
displayValue: pv.Value
|
|
163
155
|
};
|
|
164
156
|
}
|
|
165
|
-
exports.MapEntityFieldValueInfoToSkipEntityFieldValueInfo = MapEntityFieldValueInfoToSkipEntityFieldValueInfo;
|
|
166
157
|
// ============================================================================
|
|
167
158
|
// EntityRelationshipInfo <-> SkipEntityRelationshipInfo conversions
|
|
168
159
|
// ============================================================================
|
|
@@ -176,7 +167,7 @@ exports.MapEntityFieldValueInfoToSkipEntityFieldValueInfo = MapEntityFieldValueI
|
|
|
176
167
|
* @param re - The EntityRelationshipInfo object to be mapped
|
|
177
168
|
* @returns A SkipEntityRelationshipInfo object with all relationship properties mapped
|
|
178
169
|
*/
|
|
179
|
-
function MapEntityRelationshipInfoToSkipEntityRelationshipInfo(re) {
|
|
170
|
+
export function MapEntityRelationshipInfoToSkipEntityRelationshipInfo(re) {
|
|
180
171
|
return {
|
|
181
172
|
entityID: re.EntityID,
|
|
182
173
|
entity: re.Entity,
|
|
@@ -192,7 +183,6 @@ function MapEntityRelationshipInfoToSkipEntityRelationshipInfo(re) {
|
|
|
192
183
|
joinEntityJoinField: re.JoinEntityJoinField,
|
|
193
184
|
};
|
|
194
185
|
}
|
|
195
|
-
exports.MapEntityRelationshipInfoToSkipEntityRelationshipInfo = MapEntityRelationshipInfoToSkipEntityRelationshipInfo;
|
|
196
186
|
// ============================================================================
|
|
197
187
|
// SimpleEntityInfo <-> SkipEntityInfo conversions
|
|
198
188
|
// ============================================================================
|
|
@@ -202,7 +192,7 @@ exports.MapEntityRelationshipInfoToSkipEntityRelationshipInfo = MapEntityRelatio
|
|
|
202
192
|
* @param simpleEntity - The SimpleEntityInfo from @memberjunction/interactive-component-types
|
|
203
193
|
* @returns A SkipEntityInfo object
|
|
204
194
|
*/
|
|
205
|
-
function MapSimpleEntityInfoToSkipEntityInfo(simpleEntity) {
|
|
195
|
+
export function MapSimpleEntityInfoToSkipEntityInfo(simpleEntity) {
|
|
206
196
|
return {
|
|
207
197
|
id: '',
|
|
208
198
|
name: simpleEntity.name,
|
|
@@ -213,31 +203,28 @@ function MapSimpleEntityInfoToSkipEntityInfo(simpleEntity) {
|
|
|
213
203
|
relatedEntities: []
|
|
214
204
|
};
|
|
215
205
|
}
|
|
216
|
-
exports.MapSimpleEntityInfoToSkipEntityInfo = MapSimpleEntityInfoToSkipEntityInfo;
|
|
217
206
|
/**
|
|
218
207
|
* Maps an array of SimpleEntityInfo objects to SkipEntityInfo objects.
|
|
219
208
|
*
|
|
220
209
|
* @param entities - Array of SimpleEntityInfo from @memberjunction/interactive-component-types
|
|
221
210
|
* @returns Array of SkipEntityInfo objects
|
|
222
211
|
*/
|
|
223
|
-
function MapSimpleEntityInfoArrayToSkipEntityInfoArray(entities) {
|
|
212
|
+
export function MapSimpleEntityInfoArrayToSkipEntityInfoArray(entities) {
|
|
224
213
|
return entities.map(e => MapSimpleEntityInfoToSkipEntityInfo(e));
|
|
225
214
|
}
|
|
226
|
-
exports.MapSimpleEntityInfoArrayToSkipEntityInfoArray = MapSimpleEntityInfoArrayToSkipEntityInfoArray;
|
|
227
215
|
/**
|
|
228
216
|
* Converts a SkipEntityInfo to a SimpleEntityInfo object.
|
|
229
217
|
*
|
|
230
218
|
* @param skipEntity - The SkipEntityInfo to convert
|
|
231
219
|
* @returns A new SimpleEntityInfo instance
|
|
232
220
|
*/
|
|
233
|
-
function MapSkipEntityInfoToSimpleEntityInfo(skipEntity) {
|
|
234
|
-
return new
|
|
221
|
+
export function MapSkipEntityInfoToSimpleEntityInfo(skipEntity) {
|
|
222
|
+
return new SimpleEntityInfo({
|
|
235
223
|
name: skipEntity.name,
|
|
236
224
|
description: skipEntity.description,
|
|
237
225
|
fields: skipEntity.fields.map(f => MapSkipEntityFieldInfoToSimpleEntityFieldInfo(f))
|
|
238
226
|
});
|
|
239
227
|
}
|
|
240
|
-
exports.MapSkipEntityInfoToSimpleEntityInfo = MapSkipEntityInfoToSimpleEntityInfo;
|
|
241
228
|
// ============================================================================
|
|
242
229
|
// SimpleEntityFieldInfo <-> SkipEntityFieldInfo conversions
|
|
243
230
|
// ============================================================================
|
|
@@ -247,7 +234,7 @@ exports.MapSkipEntityInfoToSimpleEntityInfo = MapSkipEntityInfoToSimpleEntityInf
|
|
|
247
234
|
* @param simpleField - The SimpleEntityFieldInfo from @memberjunction/interactive-component-types
|
|
248
235
|
* @returns A SkipEntityFieldInfo object
|
|
249
236
|
*/
|
|
250
|
-
function MapSimpleEntityFieldInfoToSkipEntityFieldInfo(simpleField) {
|
|
237
|
+
export function MapSimpleEntityFieldInfoToSkipEntityFieldInfo(simpleField) {
|
|
251
238
|
return {
|
|
252
239
|
entityID: '',
|
|
253
240
|
sequence: simpleField.sequence,
|
|
@@ -279,15 +266,14 @@ function MapSimpleEntityFieldInfoToSkipEntityFieldInfo(simpleField) {
|
|
|
279
266
|
possibleValues: simpleField.possibleValues?.map(v => ({ value: v }))
|
|
280
267
|
};
|
|
281
268
|
}
|
|
282
|
-
exports.MapSimpleEntityFieldInfoToSkipEntityFieldInfo = MapSimpleEntityFieldInfoToSkipEntityFieldInfo;
|
|
283
269
|
/**
|
|
284
270
|
* Converts a SkipEntityFieldInfo to a SimpleEntityFieldInfo object.
|
|
285
271
|
*
|
|
286
272
|
* @param skipField - The SkipEntityFieldInfo to convert
|
|
287
273
|
* @returns A new SimpleEntityFieldInfo instance
|
|
288
274
|
*/
|
|
289
|
-
function MapSkipEntityFieldInfoToSimpleEntityFieldInfo(skipField) {
|
|
290
|
-
return new
|
|
275
|
+
export function MapSkipEntityFieldInfoToSimpleEntityFieldInfo(skipField) {
|
|
276
|
+
return new SimpleEntityFieldInfo({
|
|
291
277
|
name: skipField.name,
|
|
292
278
|
sequence: skipField.sequence,
|
|
293
279
|
defaultInView: skipField.defaultInView,
|
|
@@ -298,7 +284,6 @@ function MapSkipEntityFieldInfoToSimpleEntityFieldInfo(skipField) {
|
|
|
298
284
|
possibleValues: skipField.possibleValues?.map(v => v.value)
|
|
299
285
|
});
|
|
300
286
|
}
|
|
301
|
-
exports.MapSkipEntityFieldInfoToSimpleEntityFieldInfo = MapSkipEntityFieldInfoToSimpleEntityFieldInfo;
|
|
302
287
|
// ============================================================================
|
|
303
288
|
// Helper functions for working with SkipEntityInfo
|
|
304
289
|
// ============================================================================
|
|
@@ -309,10 +294,9 @@ exports.MapSkipEntityFieldInfoToSimpleEntityFieldInfo = MapSkipEntityFieldInfoTo
|
|
|
309
294
|
* @param fieldName - The field name to check
|
|
310
295
|
* @returns True if the field exists, false otherwise
|
|
311
296
|
*/
|
|
312
|
-
function skipEntityHasField(entity, fieldName) {
|
|
297
|
+
export function skipEntityHasField(entity, fieldName) {
|
|
313
298
|
return entity.fields.some(f => f.name === fieldName);
|
|
314
299
|
}
|
|
315
|
-
exports.skipEntityHasField = skipEntityHasField;
|
|
316
300
|
/**
|
|
317
301
|
* Helper function to get a field by name from a SkipEntityInfo
|
|
318
302
|
*
|
|
@@ -320,18 +304,16 @@ exports.skipEntityHasField = skipEntityHasField;
|
|
|
320
304
|
* @param fieldName - The field name to find
|
|
321
305
|
* @returns The SkipEntityFieldInfo if found, undefined otherwise
|
|
322
306
|
*/
|
|
323
|
-
function skipEntityGetField(entity, fieldName) {
|
|
307
|
+
export function skipEntityGetField(entity, fieldName) {
|
|
324
308
|
return entity.fields.find(f => f.name === fieldName);
|
|
325
309
|
}
|
|
326
|
-
exports.skipEntityGetField = skipEntityGetField;
|
|
327
310
|
/**
|
|
328
311
|
* Helper function to get all field names as a Set for efficient lookup
|
|
329
312
|
*
|
|
330
313
|
* @param entity - The SkipEntityInfo to get field names from
|
|
331
314
|
* @returns Set of all field names in the entity
|
|
332
315
|
*/
|
|
333
|
-
function skipEntityGetFieldNameSet(entity) {
|
|
316
|
+
export function skipEntityGetFieldNameSet(entity) {
|
|
334
317
|
return new Set(entity.fields.map(f => f.name));
|
|
335
318
|
}
|
|
336
|
-
exports.skipEntityGetFieldNameSet = skipEntityGetFieldNameSet;
|
|
337
319
|
//# sourceMappingURL=util.js.map
|
package/dist/util.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.js","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"util.js","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/skip-types",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "4.0.0",
|
|
4
5
|
"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
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
@@ -9,20 +10,20 @@
|
|
|
9
10
|
],
|
|
10
11
|
"scripts": {
|
|
11
12
|
"start": "ts-node-dev src/index.ts",
|
|
12
|
-
"build": "tsc",
|
|
13
|
+
"build": "tsc && tsc-alias -f",
|
|
13
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
15
|
},
|
|
15
16
|
"author": "MemberJunction.com",
|
|
16
17
|
"license": "ISC",
|
|
17
18
|
"devDependencies": {
|
|
18
19
|
"ts-node-dev": "^2.0.0",
|
|
19
|
-
"typescript": "^5.
|
|
20
|
+
"typescript": "^5.9.3"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@memberjunction/core": "
|
|
23
|
-
"@memberjunction/interactive-component-types": "
|
|
24
|
-
"@memberjunction/ai-core-plus": "
|
|
25
|
-
"@memberjunction/data-context": "
|
|
23
|
+
"@memberjunction/core": "4.0.0",
|
|
24
|
+
"@memberjunction/interactive-component-types": "4.0.0",
|
|
25
|
+
"@memberjunction/ai-core-plus": "4.0.0",
|
|
26
|
+
"@memberjunction/data-context": "4.0.0"
|
|
26
27
|
},
|
|
27
28
|
"repository": {
|
|
28
29
|
"type": "git",
|