@memberjunction/core-entities 1.2.2 → 1.3.1

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.
@@ -1374,13 +1374,13 @@ export declare class EntityFieldEntity extends BaseEntity {
1374
1374
  /**
1375
1375
  * * Field Name: EntityCodeName
1376
1376
  * * Display Name: Entity Code Name
1377
- * * SQL Data Type: nvarchar(4000)
1377
+ * * SQL Data Type: nvarchar(MAX)
1378
1378
  */
1379
1379
  get EntityCodeName(): string | null;
1380
1380
  /**
1381
1381
  * * Field Name: EntityClassName
1382
1382
  * * Display Name: Entity Class Name
1383
- * * SQL Data Type: nvarchar(4000)
1383
+ * * SQL Data Type: nvarchar(MAX)
1384
1384
  */
1385
1385
  get EntityClassName(): string | null;
1386
1386
  /**
@@ -1410,13 +1410,13 @@ export declare class EntityFieldEntity extends BaseEntity {
1410
1410
  /**
1411
1411
  * * Field Name: RelatedEntityCodeName
1412
1412
  * * Display Name: Related Entity Code Name
1413
- * * SQL Data Type: nvarchar(4000)
1413
+ * * SQL Data Type: nvarchar(MAX)
1414
1414
  */
1415
1415
  get RelatedEntityCodeName(): string | null;
1416
1416
  /**
1417
1417
  * * Field Name: RelatedEntityClassName
1418
1418
  * * Display Name: Related Entity Class Name
1419
- * * SQL Data Type: nvarchar(4000)
1419
+ * * SQL Data Type: nvarchar(MAX)
1420
1420
  */
1421
1421
  get RelatedEntityClassName(): string | null;
1422
1422
  }
@@ -1723,10 +1723,19 @@ export declare class EntityEntity extends BaseEntity {
1723
1723
  * * Display Name: Cascade Deletes
1724
1724
  * * SQL Data Type: bit
1725
1725
  * * Default Value: 0
1726
+ * * Description: When set to 1, the deleted spDelete will pre-process deletion to related entities that have 1:M cardinality with this entity. This does not have effect if spDeleteGenerated = 0
1726
1727
  */
1727
1728
  get CascadeDeletes(): boolean;
1728
1729
  set CascadeDeletes(value: boolean);
1729
1730
  /**
1731
+ * * Field Name: spMatch
1732
+ * * Display Name: sp Match
1733
+ * * SQL Data Type: nvarchar(255)
1734
+ * * Description: When specified, this stored procedure is used to find matching records in this particular entity. The convention is to pass in the primary key(s) columns for the given entity to the procedure and the return will be zero to many rows where there is a column for each primary key field(s) and a ProbabilityScore (numeric(1,12)) column that has a 0 to 1 value of the probability of a match.
1735
+ */
1736
+ get spMatch(): string | null;
1737
+ set spMatch(value: string | null);
1738
+ /**
1730
1739
  * * Field Name: UserFormGenerated
1731
1740
  * * Display Name: User Form Generated
1732
1741
  * * SQL Data Type: bit
@@ -1765,19 +1774,19 @@ export declare class EntityEntity extends BaseEntity {
1765
1774
  /**
1766
1775
  * * Field Name: CodeName
1767
1776
  * * Display Name: Code Name
1768
- * * SQL Data Type: nvarchar(4000)
1777
+ * * SQL Data Type: nvarchar(MAX)
1769
1778
  */
1770
1779
  get CodeName(): string | null;
1771
1780
  /**
1772
1781
  * * Field Name: ClassName
1773
1782
  * * Display Name: Class Name
1774
- * * SQL Data Type: nvarchar(4000)
1783
+ * * SQL Data Type: nvarchar(MAX)
1775
1784
  */
1776
1785
  get ClassName(): string | null;
1777
1786
  /**
1778
1787
  * * Field Name: BaseTableCodeName
1779
1788
  * * Display Name: Base Table Code Name
1780
- * * SQL Data Type: nvarchar(4000)
1789
+ * * SQL Data Type: nvarchar(MAX)
1781
1790
  */
1782
1791
  get BaseTableCodeName(): string | null;
1783
1792
  /**
@@ -2151,19 +2160,19 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2151
2160
  /**
2152
2161
  * * Field Name: RelatedEntityClassName
2153
2162
  * * Display Name: Related Entity Class Name
2154
- * * SQL Data Type: nvarchar(4000)
2163
+ * * SQL Data Type: nvarchar(MAX)
2155
2164
  */
2156
2165
  get RelatedEntityClassName(): string | null;
2157
2166
  /**
2158
2167
  * * Field Name: RelatedEntityCodeName
2159
2168
  * * Display Name: Related Entity Code Name
2160
- * * SQL Data Type: nvarchar(4000)
2169
+ * * SQL Data Type: nvarchar(MAX)
2161
2170
  */
2162
2171
  get RelatedEntityCodeName(): string | null;
2163
2172
  /**
2164
2173
  * * Field Name: RelatedEntityBaseTableCodeName
2165
2174
  * * Display Name: Related Entity Base Table Code Name
2166
- * * SQL Data Type: nvarchar(4000)
2175
+ * * SQL Data Type: nvarchar(MAX)
2167
2176
  */
2168
2177
  get RelatedEntityBaseTableCodeName(): string | null;
2169
2178
  /**
@@ -2946,19 +2955,19 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2946
2955
  /**
2947
2956
  * * Field Name: EntityCodeName
2948
2957
  * * Display Name: Entity Code Name
2949
- * * SQL Data Type: nvarchar(4000)
2958
+ * * SQL Data Type: nvarchar(MAX)
2950
2959
  */
2951
2960
  get EntityCodeName(): string | null;
2952
2961
  /**
2953
2962
  * * Field Name: EntityClassName
2954
2963
  * * Display Name: Entity Class Name
2955
- * * SQL Data Type: nvarchar(4000)
2964
+ * * SQL Data Type: nvarchar(MAX)
2956
2965
  */
2957
2966
  get EntityClassName(): string | null;
2958
2967
  /**
2959
2968
  * * Field Name: EntityBaseTableCodeName
2960
2969
  * * Display Name: Entity Base Table Code Name
2961
- * * SQL Data Type: nvarchar(4000)
2970
+ * * SQL Data Type: nvarchar(MAX)
2962
2971
  */
2963
2972
  get EntityBaseTableCodeName(): string | null;
2964
2973
  }
@@ -8650,15 +8659,6 @@ export declare class DataContextItemEntity extends BaseEntity {
8650
8659
  */
8651
8660
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8652
8661
  /**
8653
- * Data Context Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8654
- * @public
8655
- * @method
8656
- * @override
8657
- * @memberof DataContextItemEntity
8658
- * @throws {Error} - Delete is not allowed for Data Context Items, to enable it set AllowDeleteAPI to 1 in the database.
8659
- */
8660
- Delete(): Promise<boolean>;
8661
- /**
8662
8662
  * * Field Name: ID
8663
8663
  * * Display Name: ID
8664
8664
  * * SQL Data Type: int
@@ -8811,15 +8811,6 @@ export declare class DataContextEntity extends BaseEntity {
8811
8811
  */
8812
8812
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8813
8813
  /**
8814
- * Data Contexts - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8815
- * @public
8816
- * @method
8817
- * @override
8818
- * @memberof DataContextEntity
8819
- * @throws {Error} - Delete is not allowed for Data Contexts, to enable it set AllowDeleteAPI to 1 in the database.
8820
- */
8821
- Delete(): Promise<boolean>;
8822
- /**
8823
8814
  * * Field Name: ID
8824
8815
  * * Display Name: ID
8825
8816
  * * SQL Data Type: int
@@ -9685,6 +9676,19 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
9685
9676
  get DuplicateRunDetailID(): number;
9686
9677
  set DuplicateRunDetailID(value: number);
9687
9678
  /**
9679
+ * * Field Name: MatchSource
9680
+ * * Display Name: Match Source
9681
+ * * SQL Data Type: nvarchar(20)
9682
+ * * Default Value: N'Vector'
9683
+ * * Value List Type: List
9684
+ * * Possible Values
9685
+ * * SP
9686
+ * * Vector
9687
+ * * Description: Either Vector or SP
9688
+ */
9689
+ get MatchSource(): 'SP' | 'Vector';
9690
+ set MatchSource(value: 'SP' | 'Vector');
9691
+ /**
9688
9692
  * * Field Name: MatchRecordID
9689
9693
  * * Display Name: Match Record ID
9690
9694
  * * SQL Data Type: nvarchar(500)
@@ -9858,7 +9862,6 @@ export declare class EntityDocumentSettingEntity extends BaseEntity {
9858
9862
  * * Field Name: EntityDocument
9859
9863
  * * Display Name: Entity Document
9860
9864
  * * SQL Data Type: nvarchar(250)
9861
- * * Default Value: null
9862
9865
  */
9863
9866
  get EntityDocument(): string;
9864
9867
  }
@@ -9947,7 +9950,6 @@ export declare class EntitySettingEntity extends BaseEntity {
9947
9950
  * * Field Name: Entity
9948
9951
  * * Display Name: Entity
9949
9952
  * * SQL Data Type: nvarchar(255)
9950
- * * Default Value: null
9951
9953
  */
9952
9954
  get Entity(): string;
9953
9955
  }
@@ -10095,28 +10097,24 @@ export declare class DuplicateRunEntity extends BaseEntity {
10095
10097
  * * Field Name: Entity
10096
10098
  * * Display Name: Entity
10097
10099
  * * SQL Data Type: nvarchar(255)
10098
- * * Default Value: null
10099
10100
  */
10100
10101
  get Entity(): string;
10101
10102
  /**
10102
10103
  * * Field Name: StartedByUser
10103
10104
  * * Display Name: Started By User
10104
10105
  * * SQL Data Type: nvarchar(100)
10105
- * * Default Value: null
10106
10106
  */
10107
10107
  get StartedByUser(): string;
10108
10108
  /**
10109
10109
  * * Field Name: ApprovedByUser
10110
10110
  * * Display Name: Approved By User
10111
10111
  * * SQL Data Type: nvarchar(100)
10112
- * * Default Value: null
10113
10112
  */
10114
10113
  get ApprovedByUser(): string | null;
10115
10114
  /**
10116
10115
  * * Field Name: SourceList
10117
10116
  * * Display Name: Source List
10118
10117
  * * SQL Data Type: nvarchar(100)
10119
- * * Default Value: null
10120
10118
  */
10121
10119
  get SourceList(): string;
10122
10120
  }