@memberjunction/skip-types 2.38.0 → 2.39.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/types.d.ts +2 -2
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -848,8 +848,8 @@ export interface SkipHTMLReportCallbacks {
|
|
|
848
848
|
/**
|
|
849
849
|
* If an action occurs inside an HTML Report where it would be desirable for the containing UI to open a specific
|
|
850
850
|
* record, if supported, this event can be listened to and the container UI can then open the record.
|
|
851
|
-
* @param entityName
|
|
852
|
-
* @param key
|
|
851
|
+
* @param entityName - this is the Entity NAME from the Entity metadata, not the table name or base view name. Use Entity Metadata to provide the entity name here
|
|
852
|
+
* @param key - this is an array of key/value pairs representing the primary key. The format of a Composite Key is an array of KeyValuePair objects and KeyValuePair objects simply have FieldName and Value properties. In most cases entities have single-valued primary keys but this structure is here for complex entity types that have composite primary keys
|
|
853
853
|
* @returns
|
|
854
854
|
*/
|
|
855
855
|
OpenEntityRecord: (entityName: string, key: CompositeKey) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/skip-types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.39.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,7 +19,7 @@
|
|
|
19
19
|
"typescript": "^5.4.5"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@memberjunction/core-entities": "2.
|
|
23
|
-
"@memberjunction/data-context": "2.
|
|
22
|
+
"@memberjunction/core-entities": "2.39.0",
|
|
23
|
+
"@memberjunction/data-context": "2.39.0"
|
|
24
24
|
}
|
|
25
25
|
}
|