@memberjunction/core-entities 1.1.3 → 1.2.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.
|
@@ -4776,7 +4776,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
4776
4776
|
* * Schema: __mj
|
|
4777
4777
|
* * Base Table: AIModel
|
|
4778
4778
|
* * Base View: vwAIModels
|
|
4779
|
-
* * @description Catalog of all AI Models configured in the system
|
|
4779
|
+
* * @description Catalog of all AI Models configured in the system
|
|
4780
4780
|
* * Primary Key: ID
|
|
4781
4781
|
* @extends {BaseEntity}
|
|
4782
4782
|
* @class
|
|
@@ -7046,10 +7046,10 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
7046
7046
|
/**
|
|
7047
7047
|
* * Field Name: LinkedRecordID
|
|
7048
7048
|
* * Display Name: Linked Record ID
|
|
7049
|
-
* * SQL Data Type:
|
|
7049
|
+
* * SQL Data Type: nvarchar(500)
|
|
7050
7050
|
*/
|
|
7051
|
-
get LinkedRecordID():
|
|
7052
|
-
set LinkedRecordID(value:
|
|
7051
|
+
get LinkedRecordID(): string | null;
|
|
7052
|
+
set LinkedRecordID(value: string | null);
|
|
7053
7053
|
/**
|
|
7054
7054
|
* * Field Name: DataContextID
|
|
7055
7055
|
* * Display Name: Data Context ID
|
|
@@ -6745,7 +6745,7 @@ exports.EntityFieldValueEntity = EntityFieldValueEntity = __decorate([
|
|
|
6745
6745
|
* * Schema: __mj
|
|
6746
6746
|
* * Base Table: AIModel
|
|
6747
6747
|
* * Base View: vwAIModels
|
|
6748
|
-
* * @description Catalog of all AI Models configured in the system
|
|
6748
|
+
* * @description Catalog of all AI Models configured in the system
|
|
6749
6749
|
* * Primary Key: ID
|
|
6750
6750
|
* @extends {BaseEntity}
|
|
6751
6751
|
* @class
|
|
@@ -9935,7 +9935,7 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
9935
9935
|
/**
|
|
9936
9936
|
* * Field Name: LinkedRecordID
|
|
9937
9937
|
* * Display Name: Linked Record ID
|
|
9938
|
-
* * SQL Data Type:
|
|
9938
|
+
* * SQL Data Type: nvarchar(500)
|
|
9939
9939
|
*/
|
|
9940
9940
|
get LinkedRecordID() {
|
|
9941
9941
|
return this.Get('LinkedRecordID');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/core-entities",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Entity subclasses for the metadata layer of MemberJunction defined in the MJ_CORE schema (usually 'admin'), distributed as part of each release of MemberJunction",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"typescript": "^5.3.3"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@memberjunction/core": "~1.
|
|
23
|
-
"@memberjunction/global": "~1.
|
|
22
|
+
"@memberjunction/core": "~1.2.0",
|
|
23
|
+
"@memberjunction/global": "~1.2.0"
|
|
24
24
|
}
|
|
25
25
|
}
|