@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.
@@ -34,9 +34,9 @@ let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
34
34
  * @override
35
35
  */
36
36
  async Load(ID, EntityRelationshipsToLoad = null) {
37
- const pkeyValues = [];
38
- pkeyValues.push({ FieldName: 'ID', Value: ID });
39
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
37
+ const compositeKey = new core_1.CompositeKey();
38
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
39
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
40
40
  }
41
41
  /**
42
42
  * * Field Name: ID
@@ -144,9 +144,9 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
144
144
  * @override
145
145
  */
146
146
  async Load(ID, EntityRelationshipsToLoad = null) {
147
- const pkeyValues = [];
148
- pkeyValues.push({ FieldName: 'ID', Value: ID });
149
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
147
+ const compositeKey = new core_1.CompositeKey();
148
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
149
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
150
150
  }
151
151
  /**
152
152
  * * Field Name: ID
@@ -338,9 +338,9 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
338
338
  * @override
339
339
  */
340
340
  async Load(ID, EntityRelationshipsToLoad = null) {
341
- const pkeyValues = [];
342
- pkeyValues.push({ FieldName: 'ID', Value: ID });
343
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
341
+ const compositeKey = new core_1.CompositeKey();
342
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
343
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
344
344
  }
345
345
  /**
346
346
  * * Field Name: ID
@@ -453,9 +453,9 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
453
453
  * @override
454
454
  */
455
455
  async Load(ID, EntityRelationshipsToLoad = null) {
456
- const pkeyValues = [];
457
- pkeyValues.push({ FieldName: 'ID', Value: ID });
458
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
456
+ const compositeKey = new core_1.CompositeKey();
457
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
458
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
459
459
  }
460
460
  /**
461
461
  * Employee Company Integrations - 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.
@@ -568,9 +568,9 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
568
568
  * @override
569
569
  */
570
570
  async Load(ID, EntityRelationshipsToLoad = null) {
571
- const pkeyValues = [];
572
- pkeyValues.push({ FieldName: 'ID', Value: ID });
573
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
571
+ const compositeKey = new core_1.CompositeKey();
572
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
573
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
574
574
  }
575
575
  /**
576
576
  * Employee Roles - 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.
@@ -669,9 +669,9 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
669
669
  * @override
670
670
  */
671
671
  async Load(ID, EntityRelationshipsToLoad = null) {
672
- const pkeyValues = [];
673
- pkeyValues.push({ FieldName: 'ID', Value: ID });
674
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
672
+ const compositeKey = new core_1.CompositeKey();
673
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
674
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
675
675
  }
676
676
  /**
677
677
  * Employee Skills - 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.
@@ -771,9 +771,9 @@ let RoleEntity = class RoleEntity extends core_1.BaseEntity {
771
771
  * @override
772
772
  */
773
773
  async Load(ID, EntityRelationshipsToLoad = null) {
774
- const pkeyValues = [];
775
- pkeyValues.push({ FieldName: 'ID', Value: ID });
776
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
774
+ const compositeKey = new core_1.CompositeKey();
775
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
776
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
777
777
  }
778
778
  /**
779
779
  * * Field Name: ID
@@ -873,9 +873,9 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
873
873
  * @override
874
874
  */
875
875
  async Load(ID, EntityRelationshipsToLoad = null) {
876
- const pkeyValues = [];
877
- pkeyValues.push({ FieldName: 'ID', Value: ID });
878
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
876
+ const compositeKey = new core_1.CompositeKey();
877
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
878
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
879
879
  }
880
880
  /**
881
881
  * Skills - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -983,9 +983,9 @@ let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1
983
983
  * @override
984
984
  */
985
985
  async Load(ID, EntityRelationshipsToLoad = null) {
986
- const pkeyValues = [];
987
- pkeyValues.push({ FieldName: 'ID', Value: ID });
988
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
986
+ const compositeKey = new core_1.CompositeKey();
987
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
988
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
989
989
  }
990
990
  /**
991
991
  * Integration URL Formats - 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.
@@ -1100,9 +1100,9 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
1100
1100
  * @override
1101
1101
  */
1102
1102
  async Load(ID, EntityRelationshipsToLoad = null) {
1103
- const pkeyValues = [];
1104
- pkeyValues.push({ FieldName: 'ID', Value: ID });
1105
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
1103
+ const compositeKey = new core_1.CompositeKey();
1104
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
1105
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
1106
1106
  }
1107
1107
  /**
1108
1108
  * Integrations - 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.
@@ -1246,9 +1246,9 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
1246
1246
  * @override
1247
1247
  */
1248
1248
  async Load(ID, EntityRelationshipsToLoad = null) {
1249
- const pkeyValues = [];
1250
- pkeyValues.push({ FieldName: 'ID', Value: ID });
1251
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
1249
+ const compositeKey = new core_1.CompositeKey();
1250
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
1251
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
1252
1252
  }
1253
1253
  /**
1254
1254
  * Company Integrations - 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.
@@ -1519,9 +1519,9 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1519
1519
  * @override
1520
1520
  */
1521
1521
  async Load(ID, EntityRelationshipsToLoad = null) {
1522
- const pkeyValues = [];
1523
- pkeyValues.push({ FieldName: 'ID', Value: ID });
1524
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
1522
+ const compositeKey = new core_1.CompositeKey();
1523
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
1524
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
1525
1525
  }
1526
1526
  /**
1527
1527
  * * Field Name: ID
@@ -1941,7 +1941,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1941
1941
  /**
1942
1942
  * * Field Name: EntityCodeName
1943
1943
  * * Display Name: Entity Code Name
1944
- * * SQL Data Type: nvarchar(4000)
1944
+ * * SQL Data Type: nvarchar(MAX)
1945
1945
  */
1946
1946
  get EntityCodeName() {
1947
1947
  return this.Get('EntityCodeName');
@@ -1949,7 +1949,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1949
1949
  /**
1950
1950
  * * Field Name: EntityClassName
1951
1951
  * * Display Name: Entity Class Name
1952
- * * SQL Data Type: nvarchar(4000)
1952
+ * * SQL Data Type: nvarchar(MAX)
1953
1953
  */
1954
1954
  get EntityClassName() {
1955
1955
  return this.Get('EntityClassName');
@@ -1989,7 +1989,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1989
1989
  /**
1990
1990
  * * Field Name: RelatedEntityCodeName
1991
1991
  * * Display Name: Related Entity Code Name
1992
- * * SQL Data Type: nvarchar(4000)
1992
+ * * SQL Data Type: nvarchar(MAX)
1993
1993
  */
1994
1994
  get RelatedEntityCodeName() {
1995
1995
  return this.Get('RelatedEntityCodeName');
@@ -1997,7 +1997,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1997
1997
  /**
1998
1998
  * * Field Name: RelatedEntityClassName
1999
1999
  * * Display Name: Related Entity Class Name
2000
- * * SQL Data Type: nvarchar(4000)
2000
+ * * SQL Data Type: nvarchar(MAX)
2001
2001
  */
2002
2002
  get RelatedEntityClassName() {
2003
2003
  return this.Get('RelatedEntityClassName');
@@ -2031,9 +2031,9 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2031
2031
  * @override
2032
2032
  */
2033
2033
  async Load(ID, EntityRelationshipsToLoad = null) {
2034
- const pkeyValues = [];
2035
- pkeyValues.push({ FieldName: 'ID', Value: ID });
2036
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
2034
+ const compositeKey = new core_1.CompositeKey();
2035
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
2036
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
2037
2037
  }
2038
2038
  /**
2039
2039
  * * Field Name: ID
@@ -2448,6 +2448,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2448
2448
  * * Display Name: Cascade Deletes
2449
2449
  * * SQL Data Type: bit
2450
2450
  * * Default Value: 0
2451
+ * * 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
2451
2452
  */
2452
2453
  get CascadeDeletes() {
2453
2454
  return this.Get('CascadeDeletes');
@@ -2456,6 +2457,18 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2456
2457
  this.Set('CascadeDeletes', value);
2457
2458
  }
2458
2459
  /**
2460
+ * * Field Name: spMatch
2461
+ * * Display Name: sp Match
2462
+ * * SQL Data Type: nvarchar(255)
2463
+ * * 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.
2464
+ */
2465
+ get spMatch() {
2466
+ return this.Get('spMatch');
2467
+ }
2468
+ set spMatch(value) {
2469
+ this.Set('spMatch', value);
2470
+ }
2471
+ /**
2459
2472
  * * Field Name: UserFormGenerated
2460
2473
  * * Display Name: User Form Generated
2461
2474
  * * SQL Data Type: bit
@@ -2510,7 +2523,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2510
2523
  /**
2511
2524
  * * Field Name: CodeName
2512
2525
  * * Display Name: Code Name
2513
- * * SQL Data Type: nvarchar(4000)
2526
+ * * SQL Data Type: nvarchar(MAX)
2514
2527
  */
2515
2528
  get CodeName() {
2516
2529
  return this.Get('CodeName');
@@ -2518,7 +2531,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2518
2531
  /**
2519
2532
  * * Field Name: ClassName
2520
2533
  * * Display Name: Class Name
2521
- * * SQL Data Type: nvarchar(4000)
2534
+ * * SQL Data Type: nvarchar(MAX)
2522
2535
  */
2523
2536
  get ClassName() {
2524
2537
  return this.Get('ClassName');
@@ -2526,7 +2539,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2526
2539
  /**
2527
2540
  * * Field Name: BaseTableCodeName
2528
2541
  * * Display Name: Base Table Code Name
2529
- * * SQL Data Type: nvarchar(4000)
2542
+ * * SQL Data Type: nvarchar(MAX)
2530
2543
  */
2531
2544
  get BaseTableCodeName() {
2532
2545
  return this.Get('BaseTableCodeName');
@@ -2584,9 +2597,9 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
2584
2597
  * @override
2585
2598
  */
2586
2599
  async Load(ID, EntityRelationshipsToLoad = null) {
2587
- const pkeyValues = [];
2588
- pkeyValues.push({ FieldName: 'ID', Value: ID });
2589
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
2600
+ const compositeKey = new core_1.CompositeKey();
2601
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
2602
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
2590
2603
  }
2591
2604
  /**
2592
2605
  * * Field Name: ID
@@ -2816,9 +2829,9 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
2816
2829
  * @override
2817
2830
  */
2818
2831
  async Load(ID, EntityRelationshipsToLoad = null) {
2819
- const pkeyValues = [];
2820
- pkeyValues.push({ FieldName: 'ID', Value: ID });
2821
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
2832
+ const compositeKey = new core_1.CompositeKey();
2833
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
2834
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
2822
2835
  }
2823
2836
  /**
2824
2837
  * * Field Name: ID
@@ -3058,7 +3071,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
3058
3071
  /**
3059
3072
  * * Field Name: RelatedEntityClassName
3060
3073
  * * Display Name: Related Entity Class Name
3061
- * * SQL Data Type: nvarchar(4000)
3074
+ * * SQL Data Type: nvarchar(MAX)
3062
3075
  */
3063
3076
  get RelatedEntityClassName() {
3064
3077
  return this.Get('RelatedEntityClassName');
@@ -3066,7 +3079,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
3066
3079
  /**
3067
3080
  * * Field Name: RelatedEntityCodeName
3068
3081
  * * Display Name: Related Entity Code Name
3069
- * * SQL Data Type: nvarchar(4000)
3082
+ * * SQL Data Type: nvarchar(MAX)
3070
3083
  */
3071
3084
  get RelatedEntityCodeName() {
3072
3085
  return this.Get('RelatedEntityCodeName');
@@ -3074,7 +3087,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
3074
3087
  /**
3075
3088
  * * Field Name: RelatedEntityBaseTableCodeName
3076
3089
  * * Display Name: Related Entity Base Table Code Name
3077
- * * SQL Data Type: nvarchar(4000)
3090
+ * * SQL Data Type: nvarchar(MAX)
3078
3091
  */
3079
3092
  get RelatedEntityBaseTableCodeName() {
3080
3093
  return this.Get('RelatedEntityBaseTableCodeName');
@@ -3123,9 +3136,9 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
3123
3136
  * @override
3124
3137
  */
3125
3138
  async Load(ID, EntityRelationshipsToLoad = null) {
3126
- const pkeyValues = [];
3127
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3128
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3139
+ const compositeKey = new core_1.CompositeKey();
3140
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3141
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3129
3142
  }
3130
3143
  /**
3131
3144
  * User Record Logs - 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.
@@ -3293,9 +3306,9 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
3293
3306
  * @override
3294
3307
  */
3295
3308
  async Load(ID, EntityRelationshipsToLoad = null) {
3296
- const pkeyValues = [];
3297
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3298
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3309
+ const compositeKey = new core_1.CompositeKey();
3310
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3311
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3299
3312
  }
3300
3313
  /**
3301
3314
  * * Field Name: ID
@@ -3600,9 +3613,9 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
3600
3613
  * @override
3601
3614
  */
3602
3615
  async Load(ID, EntityRelationshipsToLoad = null) {
3603
- const pkeyValues = [];
3604
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3605
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3616
+ const compositeKey = new core_1.CompositeKey();
3617
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3618
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3606
3619
  }
3607
3620
  /**
3608
3621
  * Company Integration Runs - 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.
@@ -3725,9 +3738,9 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
3725
3738
  * @override
3726
3739
  */
3727
3740
  async Load(ID, EntityRelationshipsToLoad = null) {
3728
- const pkeyValues = [];
3729
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3730
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3741
+ const compositeKey = new core_1.CompositeKey();
3742
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3743
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3731
3744
  }
3732
3745
  /**
3733
3746
  * Company Integration Run Details - 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.
@@ -3867,9 +3880,9 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
3867
3880
  * @override
3868
3881
  */
3869
3882
  async Load(ID, EntityRelationshipsToLoad = null) {
3870
- const pkeyValues = [];
3871
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3872
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3883
+ const compositeKey = new core_1.CompositeKey();
3884
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3885
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3873
3886
  }
3874
3887
  /**
3875
3888
  * Error Logs - 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.
@@ -4013,9 +4026,9 @@ let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
4013
4026
  * @override
4014
4027
  */
4015
4028
  async Load(ID, EntityRelationshipsToLoad = null) {
4016
- const pkeyValues = [];
4017
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4018
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4029
+ const compositeKey = new core_1.CompositeKey();
4030
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4031
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4019
4032
  }
4020
4033
  /**
4021
4034
  * * Field Name: ID
@@ -4091,9 +4104,9 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
4091
4104
  * @override
4092
4105
  */
4093
4106
  async Load(ID, EntityRelationshipsToLoad = null) {
4094
- const pkeyValues = [];
4095
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4096
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4107
+ const compositeKey = new core_1.CompositeKey();
4108
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4109
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4097
4110
  }
4098
4111
  /**
4099
4112
  * * Field Name: ID
@@ -4191,7 +4204,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
4191
4204
  /**
4192
4205
  * * Field Name: EntityCodeName
4193
4206
  * * Display Name: Entity Code Name
4194
- * * SQL Data Type: nvarchar(4000)
4207
+ * * SQL Data Type: nvarchar(MAX)
4195
4208
  */
4196
4209
  get EntityCodeName() {
4197
4210
  return this.Get('EntityCodeName');
@@ -4199,7 +4212,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
4199
4212
  /**
4200
4213
  * * Field Name: EntityClassName
4201
4214
  * * Display Name: Entity Class Name
4202
- * * SQL Data Type: nvarchar(4000)
4215
+ * * SQL Data Type: nvarchar(MAX)
4203
4216
  */
4204
4217
  get EntityClassName() {
4205
4218
  return this.Get('EntityClassName');
@@ -4207,7 +4220,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
4207
4220
  /**
4208
4221
  * * Field Name: EntityBaseTableCodeName
4209
4222
  * * Display Name: Entity Base Table Code Name
4210
- * * SQL Data Type: nvarchar(4000)
4223
+ * * SQL Data Type: nvarchar(MAX)
4211
4224
  */
4212
4225
  get EntityBaseTableCodeName() {
4213
4226
  return this.Get('EntityBaseTableCodeName');
@@ -4241,9 +4254,9 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
4241
4254
  * @override
4242
4255
  */
4243
4256
  async Load(ID, EntityRelationshipsToLoad = null) {
4244
- const pkeyValues = [];
4245
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4246
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4257
+ const compositeKey = new core_1.CompositeKey();
4258
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4259
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4247
4260
  }
4248
4261
  /**
4249
4262
  * * Field Name: ID
@@ -4465,9 +4478,9 @@ let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core
4465
4478
  * @override
4466
4479
  */
4467
4480
  async Load(ID, EntityRelationshipsToLoad = null) {
4468
- const pkeyValues = [];
4469
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4470
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4481
+ const compositeKey = new core_1.CompositeKey();
4482
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4483
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4471
4484
  }
4472
4485
  /**
4473
4486
  * * Field Name: ID
@@ -4563,9 +4576,9 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
4563
4576
  * @override
4564
4577
  */
4565
4578
  async Load(ID, EntityRelationshipsToLoad = null) {
4566
- const pkeyValues = [];
4567
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4568
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4579
+ const compositeKey = new core_1.CompositeKey();
4580
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4581
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4569
4582
  }
4570
4583
  /**
4571
4584
  * * Field Name: ID
@@ -4665,9 +4678,9 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
4665
4678
  * @override
4666
4679
  */
4667
4680
  async Load(ID, EntityRelationshipsToLoad = null) {
4668
- const pkeyValues = [];
4669
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4670
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4681
+ const compositeKey = new core_1.CompositeKey();
4682
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4683
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4671
4684
  }
4672
4685
  /**
4673
4686
  * Company Integration Run API Logs - 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.
@@ -4792,9 +4805,9 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
4792
4805
  * @override
4793
4806
  */
4794
4807
  async Load(ID, EntityRelationshipsToLoad = null) {
4795
- const pkeyValues = [];
4796
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4797
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4808
+ const compositeKey = new core_1.CompositeKey();
4809
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4810
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4798
4811
  }
4799
4812
  /**
4800
4813
  * * Field Name: ID
@@ -4933,9 +4946,9 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
4933
4946
  * @override
4934
4947
  */
4935
4948
  async Load(ID, EntityRelationshipsToLoad = null) {
4936
- const pkeyValues = [];
4937
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4938
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4949
+ const compositeKey = new core_1.CompositeKey();
4950
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4951
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4939
4952
  }
4940
4953
  /**
4941
4954
  * * Field Name: ID
@@ -5015,9 +5028,9 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
5015
5028
  * @override
5016
5029
  */
5017
5030
  async Load(ID, EntityRelationshipsToLoad = null) {
5018
- const pkeyValues = [];
5019
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5020
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5031
+ const compositeKey = new core_1.CompositeKey();
5032
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5033
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5021
5034
  }
5022
5035
  /**
5023
5036
  * User View Runs - 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.
@@ -5117,9 +5130,9 @@ let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseE
5117
5130
  * @override
5118
5131
  */
5119
5132
  async Load(ID, EntityRelationshipsToLoad = null) {
5120
- const pkeyValues = [];
5121
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5122
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5133
+ const compositeKey = new core_1.CompositeKey();
5134
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5135
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5123
5136
  }
5124
5137
  /**
5125
5138
  * User View Run Details - 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.
@@ -5206,9 +5219,9 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
5206
5219
  * @override
5207
5220
  */
5208
5221
  async Load(ID, EntityRelationshipsToLoad = null) {
5209
- const pkeyValues = [];
5210
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5211
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5222
+ const compositeKey = new core_1.CompositeKey();
5223
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5224
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5212
5225
  }
5213
5226
  /**
5214
5227
  * Workflow Runs - 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.
@@ -5344,9 +5357,9 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
5344
5357
  * @override
5345
5358
  */
5346
5359
  async Load(ID, EntityRelationshipsToLoad = null) {
5347
- const pkeyValues = [];
5348
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5349
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5360
+ const compositeKey = new core_1.CompositeKey();
5361
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5362
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5350
5363
  }
5351
5364
  /**
5352
5365
  * Workflows - 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.
@@ -5532,9 +5545,9 @@ let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity
5532
5545
  * @override
5533
5546
  */
5534
5547
  async Load(ID, EntityRelationshipsToLoad = null) {
5535
- const pkeyValues = [];
5536
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5537
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5548
+ const compositeKey = new core_1.CompositeKey();
5549
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5550
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5538
5551
  }
5539
5552
  /**
5540
5553
  * Workflow Engines - 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.
@@ -5643,9 +5656,9 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
5643
5656
  * @override
5644
5657
  */
5645
5658
  async Load(ID, EntityRelationshipsToLoad = null) {
5646
- const pkeyValues = [];
5647
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5648
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5659
+ const compositeKey = new core_1.CompositeKey();
5660
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5661
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5649
5662
  }
5650
5663
  /**
5651
5664
  * Record Changes - 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.
@@ -5814,9 +5827,9 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
5814
5827
  * @override
5815
5828
  */
5816
5829
  async Load(ID, EntityRelationshipsToLoad = null) {
5817
- const pkeyValues = [];
5818
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5819
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5830
+ const compositeKey = new core_1.CompositeKey();
5831
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5832
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5820
5833
  }
5821
5834
  /**
5822
5835
  * * Field Name: ID
@@ -5904,9 +5917,9 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
5904
5917
  * @override
5905
5918
  */
5906
5919
  async Load(ID, EntityRelationshipsToLoad = null) {
5907
- const pkeyValues = [];
5908
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5909
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5920
+ const compositeKey = new core_1.CompositeKey();
5921
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5922
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5910
5923
  }
5911
5924
  /**
5912
5925
  * Row Level Security Filters - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -6017,9 +6030,9 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
6017
6030
  * @override
6018
6031
  */
6019
6032
  async Load(ID, EntityRelationshipsToLoad = null) {
6020
- const pkeyValues = [];
6021
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6022
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6033
+ const compositeKey = new core_1.CompositeKey();
6034
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6035
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6023
6036
  }
6024
6037
  /**
6025
6038
  * Audit Logs - 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.
@@ -6199,9 +6212,9 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
6199
6212
  * @override
6200
6213
  */
6201
6214
  async Load(ID, EntityRelationshipsToLoad = null) {
6202
- const pkeyValues = [];
6203
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6204
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6215
+ const compositeKey = new core_1.CompositeKey();
6216
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6217
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6205
6218
  }
6206
6219
  /**
6207
6220
  * Authorizations - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -6345,9 +6358,9 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
6345
6358
  * @override
6346
6359
  */
6347
6360
  async Load(ID, EntityRelationshipsToLoad = null) {
6348
- const pkeyValues = [];
6349
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6350
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6361
+ const compositeKey = new core_1.CompositeKey();
6362
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6363
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6351
6364
  }
6352
6365
  /**
6353
6366
  * Authorization Roles - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -6465,9 +6478,9 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
6465
6478
  * @override
6466
6479
  */
6467
6480
  async Load(ID, EntityRelationshipsToLoad = null) {
6468
- const pkeyValues = [];
6469
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6470
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6481
+ const compositeKey = new core_1.CompositeKey();
6482
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6483
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6471
6484
  }
6472
6485
  /**
6473
6486
  * Audit Log Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -6599,9 +6612,9 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
6599
6612
  * @override
6600
6613
  */
6601
6614
  async Load(ID, EntityRelationshipsToLoad = null) {
6602
- const pkeyValues = [];
6603
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6604
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6615
+ const compositeKey = new core_1.CompositeKey();
6616
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6617
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6605
6618
  }
6606
6619
  /**
6607
6620
  * Entity Field Values - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -6764,9 +6777,9 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
6764
6777
  * @override
6765
6778
  */
6766
6779
  async Load(ID, EntityRelationshipsToLoad = null) {
6767
- const pkeyValues = [];
6768
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6769
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6780
+ const compositeKey = new core_1.CompositeKey();
6781
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6782
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6770
6783
  }
6771
6784
  /**
6772
6785
  * AI Models - 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.
@@ -6945,9 +6958,9 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
6945
6958
  * @override
6946
6959
  */
6947
6960
  async Load(ID, EntityRelationshipsToLoad = null) {
6948
- const pkeyValues = [];
6949
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6950
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6961
+ const compositeKey = new core_1.CompositeKey();
6962
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6963
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6951
6964
  }
6952
6965
  /**
6953
6966
  * AI Actions - 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.
@@ -7080,9 +7093,9 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
7080
7093
  * @override
7081
7094
  */
7082
7095
  async Load(ID, EntityRelationshipsToLoad = null) {
7083
- const pkeyValues = [];
7084
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7085
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7096
+ const compositeKey = new core_1.CompositeKey();
7097
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7098
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7086
7099
  }
7087
7100
  /**
7088
7101
  * AI Model Actions - 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.
@@ -7202,9 +7215,9 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
7202
7215
  * @override
7203
7216
  */
7204
7217
  async Load(ID, EntityRelationshipsToLoad = null) {
7205
- const pkeyValues = [];
7206
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7207
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7218
+ const compositeKey = new core_1.CompositeKey();
7219
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7220
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7208
7221
  }
7209
7222
  /**
7210
7223
  * Entity AI Actions - 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.
@@ -7433,9 +7446,9 @@ let AIModelTypeEntity = class AIModelTypeEntity extends core_1.BaseEntity {
7433
7446
  * @override
7434
7447
  */
7435
7448
  async Load(ID, EntityRelationshipsToLoad = null) {
7436
- const pkeyValues = [];
7437
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7438
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7449
+ const compositeKey = new core_1.CompositeKey();
7450
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7451
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7439
7452
  }
7440
7453
  /**
7441
7454
  * AI Model Types - 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.
@@ -7506,9 +7519,9 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
7506
7519
  * @override
7507
7520
  */
7508
7521
  async Load(ID, EntityRelationshipsToLoad = null) {
7509
- const pkeyValues = [];
7510
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7511
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7522
+ const compositeKey = new core_1.CompositeKey();
7523
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7524
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7512
7525
  }
7513
7526
  /**
7514
7527
  * Queue Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -7625,9 +7638,9 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
7625
7638
  * @override
7626
7639
  */
7627
7640
  async Load(ID, EntityRelationshipsToLoad = null) {
7628
- const pkeyValues = [];
7629
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7630
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7641
+ const compositeKey = new core_1.CompositeKey();
7642
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7643
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7631
7644
  }
7632
7645
  /**
7633
7646
  * Queues - 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.
@@ -7881,9 +7894,9 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
7881
7894
  * @override
7882
7895
  */
7883
7896
  async Load(ID, EntityRelationshipsToLoad = null) {
7884
- const pkeyValues = [];
7885
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7886
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7897
+ const compositeKey = new core_1.CompositeKey();
7898
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7899
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7887
7900
  }
7888
7901
  /**
7889
7902
  * Queue Tasks - 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.
@@ -8047,9 +8060,9 @@ let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
8047
8060
  * @override
8048
8061
  */
8049
8062
  async Load(ID, EntityRelationshipsToLoad = null) {
8050
- const pkeyValues = [];
8051
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8052
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8063
+ const compositeKey = new core_1.CompositeKey();
8064
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8065
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8053
8066
  }
8054
8067
  /**
8055
8068
  * * Field Name: ID
@@ -8160,9 +8173,9 @@ let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseE
8160
8173
  * @override
8161
8174
  */
8162
8175
  async Load(ID, EntityRelationshipsToLoad = null) {
8163
- const pkeyValues = [];
8164
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8165
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8176
+ const compositeKey = new core_1.CompositeKey();
8177
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8178
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8166
8179
  }
8167
8180
  /**
8168
8181
  * Output Trigger Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -8244,9 +8257,9 @@ let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEnt
8244
8257
  * @override
8245
8258
  */
8246
8259
  async Load(ID, EntityRelationshipsToLoad = null) {
8247
- const pkeyValues = [];
8248
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8249
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8260
+ const compositeKey = new core_1.CompositeKey();
8261
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8262
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8250
8263
  }
8251
8264
  /**
8252
8265
  * Output Format Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -8339,9 +8352,9 @@ let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.Bas
8339
8352
  * @override
8340
8353
  */
8341
8354
  async Load(ID, EntityRelationshipsToLoad = null) {
8342
- const pkeyValues = [];
8343
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8344
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8355
+ const compositeKey = new core_1.CompositeKey();
8356
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8357
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8345
8358
  }
8346
8359
  /**
8347
8360
  * Output Delivery Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -8423,9 +8436,9 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
8423
8436
  * @override
8424
8437
  */
8425
8438
  async Load(ID, EntityRelationshipsToLoad = null) {
8426
- const pkeyValues = [];
8427
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8428
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8439
+ const compositeKey = new core_1.CompositeKey();
8440
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8441
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8429
8442
  }
8430
8443
  /**
8431
8444
  * * Field Name: ID
@@ -8745,9 +8758,9 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
8745
8758
  * @override
8746
8759
  */
8747
8760
  async Load(ID, EntityRelationshipsToLoad = null) {
8748
- const pkeyValues = [];
8749
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8750
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8761
+ const compositeKey = new core_1.CompositeKey();
8762
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8763
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8751
8764
  }
8752
8765
  /**
8753
8766
  * * Field Name: ID
@@ -8845,9 +8858,9 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
8845
8858
  * @override
8846
8859
  */
8847
8860
  async Load(ID, EntityRelationshipsToLoad = null) {
8848
- const pkeyValues = [];
8849
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8850
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8861
+ const compositeKey = new core_1.CompositeKey();
8862
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8863
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8851
8864
  }
8852
8865
  /**
8853
8866
  * Resource Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -8990,9 +9003,9 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
8990
9003
  * @override
8991
9004
  */
8992
9005
  async Load(ID, EntityRelationshipsToLoad = null) {
8993
- const pkeyValues = [];
8994
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8995
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9006
+ const compositeKey = new core_1.CompositeKey();
9007
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9008
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8996
9009
  }
8997
9010
  /**
8998
9011
  * Tags - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -9106,9 +9119,9 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
9106
9119
  * @override
9107
9120
  */
9108
9121
  async Load(ID, EntityRelationshipsToLoad = null) {
9109
- const pkeyValues = [];
9110
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9111
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9122
+ const compositeKey = new core_1.CompositeKey();
9123
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9124
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9112
9125
  }
9113
9126
  /**
9114
9127
  * Tagged Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -9209,9 +9222,9 @@ let WorkspaceEntity = class WorkspaceEntity extends core_1.BaseEntity {
9209
9222
  * @override
9210
9223
  */
9211
9224
  async Load(ID, EntityRelationshipsToLoad = null) {
9212
- const pkeyValues = [];
9213
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9214
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9225
+ const compositeKey = new core_1.CompositeKey();
9226
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9227
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9215
9228
  }
9216
9229
  /**
9217
9230
  * * Field Name: ID
@@ -9292,9 +9305,9 @@ let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
9292
9305
  * @override
9293
9306
  */
9294
9307
  async Load(ID, EntityRelationshipsToLoad = null) {
9295
- const pkeyValues = [];
9296
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9297
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9308
+ const compositeKey = new core_1.CompositeKey();
9309
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9310
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9298
9311
  }
9299
9312
  /**
9300
9313
  * * Field Name: ID
@@ -9428,9 +9441,9 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
9428
9441
  * @override
9429
9442
  */
9430
9443
  async Load(ID, EntityRelationshipsToLoad = null) {
9431
- const pkeyValues = [];
9432
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9433
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9444
+ const compositeKey = new core_1.CompositeKey();
9445
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9446
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9434
9447
  }
9435
9448
  /**
9436
9449
  * Datasets - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -9531,9 +9544,9 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
9531
9544
  * @override
9532
9545
  */
9533
9546
  async Load(ID, EntityRelationshipsToLoad = null) {
9534
- const pkeyValues = [];
9535
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9536
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9547
+ const compositeKey = new core_1.CompositeKey();
9548
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9549
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9537
9550
  }
9538
9551
  /**
9539
9552
  * Dataset Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
@@ -9699,9 +9712,9 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
9699
9712
  * @override
9700
9713
  */
9701
9714
  async Load(ID, EntityRelationshipsToLoad = null) {
9702
- const pkeyValues = [];
9703
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9704
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9715
+ const compositeKey = new core_1.CompositeKey();
9716
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9717
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9705
9718
  }
9706
9719
  /**
9707
9720
  * * Field Name: ID
@@ -9839,9 +9852,9 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
9839
9852
  * @override
9840
9853
  */
9841
9854
  async Load(ID, EntityRelationshipsToLoad = null) {
9842
- const pkeyValues = [];
9843
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9844
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9855
+ const compositeKey = new core_1.CompositeKey();
9856
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9857
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9845
9858
  }
9846
9859
  /**
9847
9860
  * * Field Name: ID
@@ -10016,9 +10029,9 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
10016
10029
  * @override
10017
10030
  */
10018
10031
  async Load(ID, EntityRelationshipsToLoad = null) {
10019
- const pkeyValues = [];
10020
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10021
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10032
+ const compositeKey = new core_1.CompositeKey();
10033
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10034
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10022
10035
  }
10023
10036
  /**
10024
10037
  * * Field Name: ID
@@ -10173,9 +10186,9 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
10173
10186
  * @override
10174
10187
  */
10175
10188
  async Load(ID, EntityRelationshipsToLoad = null) {
10176
- const pkeyValues = [];
10177
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10178
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10189
+ const compositeKey = new core_1.CompositeKey();
10190
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10191
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10179
10192
  }
10180
10193
  /**
10181
10194
  * Schema Info - 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.
@@ -10286,9 +10299,9 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
10286
10299
  * @override
10287
10300
  */
10288
10301
  async Load(ID, EntityRelationshipsToLoad = null) {
10289
- const pkeyValues = [];
10290
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10291
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10302
+ const compositeKey = new core_1.CompositeKey();
10303
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10304
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10292
10305
  }
10293
10306
  /**
10294
10307
  * Company Integration Record Maps - 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.
@@ -10409,9 +10422,9 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
10409
10422
  * @override
10410
10423
  */
10411
10424
  async Load(ID, EntityRelationshipsToLoad = null) {
10412
- const pkeyValues = [];
10413
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10414
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10425
+ const compositeKey = new core_1.CompositeKey();
10426
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10427
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10415
10428
  }
10416
10429
  /**
10417
10430
  * Record Merge Logs - 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.
@@ -10619,9 +10632,9 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
10619
10632
  * @override
10620
10633
  */
10621
10634
  async Load(ID, EntityRelationshipsToLoad = null) {
10622
- const pkeyValues = [];
10623
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10624
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10635
+ const compositeKey = new core_1.CompositeKey();
10636
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10637
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10625
10638
  }
10626
10639
  /**
10627
10640
  * Record Merge Deletion Logs - 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.
@@ -10739,9 +10752,9 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
10739
10752
  * @override
10740
10753
  */
10741
10754
  async Load(ID, EntityRelationshipsToLoad = null) {
10742
- const pkeyValues = [];
10743
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10744
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10755
+ const compositeKey = new core_1.CompositeKey();
10756
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10757
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10745
10758
  }
10746
10759
  /**
10747
10760
  * Query Fields - 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.
@@ -10962,9 +10975,9 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
10962
10975
  * @override
10963
10976
  */
10964
10977
  async Load(ID, EntityRelationshipsToLoad = null) {
10965
- const pkeyValues = [];
10966
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10967
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10978
+ const compositeKey = new core_1.CompositeKey();
10979
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10980
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10968
10981
  }
10969
10982
  /**
10970
10983
  * * Field Name: ID
@@ -11083,9 +11096,9 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
11083
11096
  * @override
11084
11097
  */
11085
11098
  async Load(ID, EntityRelationshipsToLoad = null) {
11086
- const pkeyValues = [];
11087
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11088
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11099
+ const compositeKey = new core_1.CompositeKey();
11100
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11101
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11089
11102
  }
11090
11103
  /**
11091
11104
  * Queries - 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.
@@ -11257,9 +11270,9 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
11257
11270
  * @override
11258
11271
  */
11259
11272
  async Load(ID, EntityRelationshipsToLoad = null) {
11260
- const pkeyValues = [];
11261
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11262
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11273
+ const compositeKey = new core_1.CompositeKey();
11274
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11275
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11263
11276
  }
11264
11277
  /**
11265
11278
  * Query Permissions - 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.
@@ -11350,9 +11363,9 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
11350
11363
  * @override
11351
11364
  */
11352
11365
  async Load(ID, EntityRelationshipsToLoad = null) {
11353
- const pkeyValues = [];
11354
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11355
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11366
+ const compositeKey = new core_1.CompositeKey();
11367
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11368
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11356
11369
  }
11357
11370
  /**
11358
11371
  * Vector Indexes - 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.
@@ -11481,9 +11494,9 @@ let EntityDocumentTypeEntity = class EntityDocumentTypeEntity extends core_1.Bas
11481
11494
  * @override
11482
11495
  */
11483
11496
  async Load(ID, EntityRelationshipsToLoad = null) {
11484
- const pkeyValues = [];
11485
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11486
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11497
+ const compositeKey = new core_1.CompositeKey();
11498
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11499
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11487
11500
  }
11488
11501
  /**
11489
11502
  * Entity Document Types - 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.
@@ -11572,9 +11585,9 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
11572
11585
  * @override
11573
11586
  */
11574
11587
  async Load(ID, EntityRelationshipsToLoad = null) {
11575
- const pkeyValues = [];
11576
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11577
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11588
+ const compositeKey = new core_1.CompositeKey();
11589
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11590
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11578
11591
  }
11579
11592
  /**
11580
11593
  * Entity Document Runs - 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.
@@ -11701,9 +11714,9 @@ let VectorDatabaseEntity = class VectorDatabaseEntity extends core_1.BaseEntity
11701
11714
  * @override
11702
11715
  */
11703
11716
  async Load(ID, EntityRelationshipsToLoad = null) {
11704
- const pkeyValues = [];
11705
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11706
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11717
+ const compositeKey = new core_1.CompositeKey();
11718
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11719
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11707
11720
  }
11708
11721
  /**
11709
11722
  * Vector Databases - 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.
@@ -11814,9 +11827,9 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
11814
11827
  * @override
11815
11828
  */
11816
11829
  async Load(ID, EntityRelationshipsToLoad = null) {
11817
- const pkeyValues = [];
11818
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11819
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11830
+ const compositeKey = new core_1.CompositeKey();
11831
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11832
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11820
11833
  }
11821
11834
  /**
11822
11835
  * Entity Record Documents - 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.
@@ -11972,9 +11985,9 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
11972
11985
  * @override
11973
11986
  */
11974
11987
  async Load(ID, EntityRelationshipsToLoad = null) {
11975
- const pkeyValues = [];
11976
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11977
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11988
+ const compositeKey = new core_1.CompositeKey();
11989
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11990
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11978
11991
  }
11979
11992
  /**
11980
11993
  * Entity Documents - 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.
@@ -12170,20 +12183,9 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
12170
12183
  * @override
12171
12184
  */
12172
12185
  async Load(ID, EntityRelationshipsToLoad = null) {
12173
- const pkeyValues = [];
12174
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12175
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12176
- }
12177
- /**
12178
- * 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.
12179
- * @public
12180
- * @method
12181
- * @override
12182
- * @memberof DataContextItemEntity
12183
- * @throws {Error} - Delete is not allowed for Data Context Items, to enable it set AllowDeleteAPI to 1 in the database.
12184
- */
12185
- async Delete() {
12186
- throw new Error('Delete is not allowed for Data Context Items, to enable it set AllowDeleteAPI to 1 in the database.');
12186
+ const compositeKey = new core_1.CompositeKey();
12187
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12188
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12187
12189
  }
12188
12190
  /**
12189
12191
  * * Field Name: ID
@@ -12391,20 +12393,9 @@ let DataContextEntity = class DataContextEntity extends core_1.BaseEntity {
12391
12393
  * @override
12392
12394
  */
12393
12395
  async Load(ID, EntityRelationshipsToLoad = null) {
12394
- const pkeyValues = [];
12395
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12396
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12397
- }
12398
- /**
12399
- * 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.
12400
- * @public
12401
- * @method
12402
- * @override
12403
- * @memberof DataContextEntity
12404
- * @throws {Error} - Delete is not allowed for Data Contexts, to enable it set AllowDeleteAPI to 1 in the database.
12405
- */
12406
- async Delete() {
12407
- throw new Error('Delete is not allowed for Data Contexts, to enable it set AllowDeleteAPI to 1 in the database.');
12396
+ const compositeKey = new core_1.CompositeKey();
12397
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12398
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12408
12399
  }
12409
12400
  /**
12410
12401
  * * Field Name: ID
@@ -12513,9 +12504,9 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
12513
12504
  * @override
12514
12505
  */
12515
12506
  async Load(ID, EntityRelationshipsToLoad = null) {
12516
- const pkeyValues = [];
12517
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12518
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12507
+ const compositeKey = new core_1.CompositeKey();
12508
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12509
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12519
12510
  }
12520
12511
  /**
12521
12512
  * * Field Name: ID
@@ -12645,9 +12636,9 @@ let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseE
12645
12636
  * @override
12646
12637
  */
12647
12638
  async Load(ID, EntityRelationshipsToLoad = null) {
12648
- const pkeyValues = [];
12649
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12650
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12639
+ const compositeKey = new core_1.CompositeKey();
12640
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12641
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12651
12642
  }
12652
12643
  /**
12653
12644
  * * Field Name: ID
@@ -12765,9 +12756,9 @@ let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity
12765
12756
  * @override
12766
12757
  */
12767
12758
  async Load(ID, EntityRelationshipsToLoad = null) {
12768
- const pkeyValues = [];
12769
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12770
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12759
+ const compositeKey = new core_1.CompositeKey();
12760
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12761
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12771
12762
  }
12772
12763
  /**
12773
12764
  * * Field Name: ID
@@ -12885,9 +12876,9 @@ let FileStorageProviderEntity = class FileStorageProviderEntity extends core_1.B
12885
12876
  * @override
12886
12877
  */
12887
12878
  async Load(ID, EntityRelationshipsToLoad = null) {
12888
- const pkeyValues = [];
12889
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12890
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12879
+ const compositeKey = new core_1.CompositeKey();
12880
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12881
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12891
12882
  }
12892
12883
  /**
12893
12884
  * File Storage Providers - 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.
@@ -13022,9 +13013,9 @@ let FileEntity = class FileEntity extends core_1.BaseEntity {
13022
13013
  * @override
13023
13014
  */
13024
13015
  async Load(ID, EntityRelationshipsToLoad = null) {
13025
- const pkeyValues = [];
13026
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13027
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13016
+ const compositeKey = new core_1.CompositeKey();
13017
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13018
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13028
13019
  }
13029
13020
  /**
13030
13021
  * * Field Name: ID
@@ -13177,9 +13168,9 @@ let FileCategoryEntity = class FileCategoryEntity extends core_1.BaseEntity {
13177
13168
  * @override
13178
13169
  */
13179
13170
  async Load(ID, EntityRelationshipsToLoad = null) {
13180
- const pkeyValues = [];
13181
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13182
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13171
+ const compositeKey = new core_1.CompositeKey();
13172
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13173
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13183
13174
  }
13184
13175
  /**
13185
13176
  * * Field Name: ID
@@ -13277,9 +13268,9 @@ let FileEntityRecordLinkEntity = class FileEntityRecordLinkEntity extends core_1
13277
13268
  * @override
13278
13269
  */
13279
13270
  async Load(ID, EntityRelationshipsToLoad = null) {
13280
- const pkeyValues = [];
13281
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13282
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13271
+ const compositeKey = new core_1.CompositeKey();
13272
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13273
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13283
13274
  }
13284
13275
  /**
13285
13276
  * File Entity Record Links - 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.
@@ -13397,9 +13388,9 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
13397
13388
  * @override
13398
13389
  */
13399
13390
  async Load(ID, EntityRelationshipsToLoad = null) {
13400
- const pkeyValues = [];
13401
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13402
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13391
+ const compositeKey = new core_1.CompositeKey();
13392
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13393
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13403
13394
  }
13404
13395
  /**
13405
13396
  * Version Installations - 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.
@@ -13578,9 +13569,9 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
13578
13569
  * @override
13579
13570
  */
13580
13571
  async Load(ID, EntityRelationshipsToLoad = null) {
13581
- const pkeyValues = [];
13582
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13583
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13572
+ const compositeKey = new core_1.CompositeKey();
13573
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13574
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13584
13575
  }
13585
13576
  /**
13586
13577
  * Duplicate Run Detail Matches - 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.
@@ -13614,6 +13605,23 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
13614
13605
  this.Set('DuplicateRunDetailID', value);
13615
13606
  }
13616
13607
  /**
13608
+ * * Field Name: MatchSource
13609
+ * * Display Name: Match Source
13610
+ * * SQL Data Type: nvarchar(20)
13611
+ * * Default Value: N'Vector'
13612
+ * * Value List Type: List
13613
+ * * Possible Values
13614
+ * * SP
13615
+ * * Vector
13616
+ * * Description: Either Vector or SP
13617
+ */
13618
+ get MatchSource() {
13619
+ return this.Get('MatchSource');
13620
+ }
13621
+ set MatchSource(value) {
13622
+ this.Set('MatchSource', value);
13623
+ }
13624
+ /**
13617
13625
  * * Field Name: MatchRecordID
13618
13626
  * * Display Name: Match Record ID
13619
13627
  * * SQL Data Type: nvarchar(500)
@@ -13765,9 +13773,9 @@ let EntityDocumentSettingEntity = class EntityDocumentSettingEntity extends core
13765
13773
  * @override
13766
13774
  */
13767
13775
  async Load(ID, EntityRelationshipsToLoad = null) {
13768
- const pkeyValues = [];
13769
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13770
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13776
+ const compositeKey = new core_1.CompositeKey();
13777
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13778
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13771
13779
  }
13772
13780
  /**
13773
13781
  * Entity Document Settings - 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.
@@ -13855,7 +13863,6 @@ let EntityDocumentSettingEntity = class EntityDocumentSettingEntity extends core
13855
13863
  * * Field Name: EntityDocument
13856
13864
  * * Display Name: Entity Document
13857
13865
  * * SQL Data Type: nvarchar(250)
13858
- * * Default Value: null
13859
13866
  */
13860
13867
  get EntityDocument() {
13861
13868
  return this.Get('EntityDocument');
@@ -13888,9 +13895,9 @@ let EntitySettingEntity = class EntitySettingEntity extends core_1.BaseEntity {
13888
13895
  * @override
13889
13896
  */
13890
13897
  async Load(ID, EntityRelationshipsToLoad = null) {
13891
- const pkeyValues = [];
13892
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13893
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13898
+ const compositeKey = new core_1.CompositeKey();
13899
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13900
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13894
13901
  }
13895
13902
  /**
13896
13903
  * Entity Settings - 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.
@@ -13978,7 +13985,6 @@ let EntitySettingEntity = class EntitySettingEntity extends core_1.BaseEntity {
13978
13985
  * * Field Name: Entity
13979
13986
  * * Display Name: Entity
13980
13987
  * * SQL Data Type: nvarchar(255)
13981
- * * Default Value: null
13982
13988
  */
13983
13989
  get Entity() {
13984
13990
  return this.Get('Entity');
@@ -14011,9 +14017,9 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14011
14017
  * @override
14012
14018
  */
14013
14019
  async Load(ID, EntityRelationshipsToLoad = null) {
14014
- const pkeyValues = [];
14015
- pkeyValues.push({ FieldName: 'ID', Value: ID });
14016
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
14020
+ const compositeKey = new core_1.CompositeKey();
14021
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
14022
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
14017
14023
  }
14018
14024
  /**
14019
14025
  * Duplicate Runs - 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.
@@ -14184,7 +14190,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14184
14190
  * * Field Name: Entity
14185
14191
  * * Display Name: Entity
14186
14192
  * * SQL Data Type: nvarchar(255)
14187
- * * Default Value: null
14188
14193
  */
14189
14194
  get Entity() {
14190
14195
  return this.Get('Entity');
@@ -14193,7 +14198,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14193
14198
  * * Field Name: StartedByUser
14194
14199
  * * Display Name: Started By User
14195
14200
  * * SQL Data Type: nvarchar(100)
14196
- * * Default Value: null
14197
14201
  */
14198
14202
  get StartedByUser() {
14199
14203
  return this.Get('StartedByUser');
@@ -14202,7 +14206,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14202
14206
  * * Field Name: ApprovedByUser
14203
14207
  * * Display Name: Approved By User
14204
14208
  * * SQL Data Type: nvarchar(100)
14205
- * * Default Value: null
14206
14209
  */
14207
14210
  get ApprovedByUser() {
14208
14211
  return this.Get('ApprovedByUser');
@@ -14211,7 +14214,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14211
14214
  * * Field Name: SourceList
14212
14215
  * * Display Name: Source List
14213
14216
  * * SQL Data Type: nvarchar(100)
14214
- * * Default Value: null
14215
14217
  */
14216
14218
  get SourceList() {
14217
14219
  return this.Get('SourceList');
@@ -14244,9 +14246,9 @@ let DuplicateRunDetailEntity = class DuplicateRunDetailEntity extends core_1.Bas
14244
14246
  * @override
14245
14247
  */
14246
14248
  async Load(ID, EntityRelationshipsToLoad = null) {
14247
- const pkeyValues = [];
14248
- pkeyValues.push({ FieldName: 'ID', Value: ID });
14249
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
14249
+ const compositeKey = new core_1.CompositeKey();
14250
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
14251
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
14250
14252
  }
14251
14253
  /**
14252
14254
  * Duplicate Run Details - 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.