@memberjunction/core-entities 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
@@ -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
@@ -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
@@ -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.
@@ -3693,6 +3706,7 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
3693
3706
  * * Field Name: RunByUser
3694
3707
  * * Display Name: Run By User
3695
3708
  * * SQL Data Type: nvarchar(100)
3709
+ * * Default Value: null
3696
3710
  */
3697
3711
  get RunByUser() {
3698
3712
  return this.Get('RunByUser');
@@ -3725,9 +3739,9 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
3725
3739
  * @override
3726
3740
  */
3727
3741
  async Load(ID, EntityRelationshipsToLoad = null) {
3728
- const pkeyValues = [];
3729
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3730
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3742
+ const compositeKey = new core_1.CompositeKey();
3743
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3744
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3731
3745
  }
3732
3746
  /**
3733
3747
  * 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 +3881,9 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
3867
3881
  * @override
3868
3882
  */
3869
3883
  async Load(ID, EntityRelationshipsToLoad = null) {
3870
- const pkeyValues = [];
3871
- pkeyValues.push({ FieldName: 'ID', Value: ID });
3872
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
3884
+ const compositeKey = new core_1.CompositeKey();
3885
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
3886
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
3873
3887
  }
3874
3888
  /**
3875
3889
  * 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 +4027,9 @@ let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
4013
4027
  * @override
4014
4028
  */
4015
4029
  async Load(ID, EntityRelationshipsToLoad = null) {
4016
- const pkeyValues = [];
4017
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4018
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4030
+ const compositeKey = new core_1.CompositeKey();
4031
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4032
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4019
4033
  }
4020
4034
  /**
4021
4035
  * * Field Name: ID
@@ -4091,9 +4105,9 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
4091
4105
  * @override
4092
4106
  */
4093
4107
  async Load(ID, EntityRelationshipsToLoad = null) {
4094
- const pkeyValues = [];
4095
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4096
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4108
+ const compositeKey = new core_1.CompositeKey();
4109
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4110
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4097
4111
  }
4098
4112
  /**
4099
4113
  * * Field Name: ID
@@ -4241,9 +4255,9 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
4241
4255
  * @override
4242
4256
  */
4243
4257
  async Load(ID, EntityRelationshipsToLoad = null) {
4244
- const pkeyValues = [];
4245
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4246
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4258
+ const compositeKey = new core_1.CompositeKey();
4259
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4260
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4247
4261
  }
4248
4262
  /**
4249
4263
  * * Field Name: ID
@@ -4465,9 +4479,9 @@ let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core
4465
4479
  * @override
4466
4480
  */
4467
4481
  async Load(ID, EntityRelationshipsToLoad = null) {
4468
- const pkeyValues = [];
4469
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4470
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4482
+ const compositeKey = new core_1.CompositeKey();
4483
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4484
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4471
4485
  }
4472
4486
  /**
4473
4487
  * * Field Name: ID
@@ -4563,9 +4577,9 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
4563
4577
  * @override
4564
4578
  */
4565
4579
  async Load(ID, EntityRelationshipsToLoad = null) {
4566
- const pkeyValues = [];
4567
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4568
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4580
+ const compositeKey = new core_1.CompositeKey();
4581
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4582
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4569
4583
  }
4570
4584
  /**
4571
4585
  * * Field Name: ID
@@ -4665,9 +4679,9 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
4665
4679
  * @override
4666
4680
  */
4667
4681
  async Load(ID, EntityRelationshipsToLoad = null) {
4668
- const pkeyValues = [];
4669
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4670
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4682
+ const compositeKey = new core_1.CompositeKey();
4683
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4684
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4671
4685
  }
4672
4686
  /**
4673
4687
  * 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 +4806,9 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
4792
4806
  * @override
4793
4807
  */
4794
4808
  async Load(ID, EntityRelationshipsToLoad = null) {
4795
- const pkeyValues = [];
4796
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4797
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4809
+ const compositeKey = new core_1.CompositeKey();
4810
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4811
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4798
4812
  }
4799
4813
  /**
4800
4814
  * * Field Name: ID
@@ -4933,9 +4947,9 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
4933
4947
  * @override
4934
4948
  */
4935
4949
  async Load(ID, EntityRelationshipsToLoad = null) {
4936
- const pkeyValues = [];
4937
- pkeyValues.push({ FieldName: 'ID', Value: ID });
4938
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
4950
+ const compositeKey = new core_1.CompositeKey();
4951
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
4952
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
4939
4953
  }
4940
4954
  /**
4941
4955
  * * Field Name: ID
@@ -5015,9 +5029,9 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
5015
5029
  * @override
5016
5030
  */
5017
5031
  async Load(ID, EntityRelationshipsToLoad = null) {
5018
- const pkeyValues = [];
5019
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5020
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5032
+ const compositeKey = new core_1.CompositeKey();
5033
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5034
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5021
5035
  }
5022
5036
  /**
5023
5037
  * 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 +5131,9 @@ let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseE
5117
5131
  * @override
5118
5132
  */
5119
5133
  async Load(ID, EntityRelationshipsToLoad = null) {
5120
- const pkeyValues = [];
5121
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5122
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5134
+ const compositeKey = new core_1.CompositeKey();
5135
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5136
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5123
5137
  }
5124
5138
  /**
5125
5139
  * 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 +5220,9 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
5206
5220
  * @override
5207
5221
  */
5208
5222
  async Load(ID, EntityRelationshipsToLoad = null) {
5209
- const pkeyValues = [];
5210
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5211
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5223
+ const compositeKey = new core_1.CompositeKey();
5224
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5225
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5212
5226
  }
5213
5227
  /**
5214
5228
  * 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 +5358,9 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
5344
5358
  * @override
5345
5359
  */
5346
5360
  async Load(ID, EntityRelationshipsToLoad = null) {
5347
- const pkeyValues = [];
5348
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5349
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5361
+ const compositeKey = new core_1.CompositeKey();
5362
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5363
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5350
5364
  }
5351
5365
  /**
5352
5366
  * 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 +5546,9 @@ let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity
5532
5546
  * @override
5533
5547
  */
5534
5548
  async Load(ID, EntityRelationshipsToLoad = null) {
5535
- const pkeyValues = [];
5536
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5537
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5549
+ const compositeKey = new core_1.CompositeKey();
5550
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5551
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5538
5552
  }
5539
5553
  /**
5540
5554
  * 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 +5657,9 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
5643
5657
  * @override
5644
5658
  */
5645
5659
  async Load(ID, EntityRelationshipsToLoad = null) {
5646
- const pkeyValues = [];
5647
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5648
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5660
+ const compositeKey = new core_1.CompositeKey();
5661
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5662
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5649
5663
  }
5650
5664
  /**
5651
5665
  * 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 +5828,9 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
5814
5828
  * @override
5815
5829
  */
5816
5830
  async Load(ID, EntityRelationshipsToLoad = null) {
5817
- const pkeyValues = [];
5818
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5819
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5831
+ const compositeKey = new core_1.CompositeKey();
5832
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5833
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5820
5834
  }
5821
5835
  /**
5822
5836
  * * Field Name: ID
@@ -5904,9 +5918,9 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
5904
5918
  * @override
5905
5919
  */
5906
5920
  async Load(ID, EntityRelationshipsToLoad = null) {
5907
- const pkeyValues = [];
5908
- pkeyValues.push({ FieldName: 'ID', Value: ID });
5909
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
5921
+ const compositeKey = new core_1.CompositeKey();
5922
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
5923
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
5910
5924
  }
5911
5925
  /**
5912
5926
  * 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 +6031,9 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
6017
6031
  * @override
6018
6032
  */
6019
6033
  async Load(ID, EntityRelationshipsToLoad = null) {
6020
- const pkeyValues = [];
6021
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6022
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6034
+ const compositeKey = new core_1.CompositeKey();
6035
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6036
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6023
6037
  }
6024
6038
  /**
6025
6039
  * 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 +6213,9 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
6199
6213
  * @override
6200
6214
  */
6201
6215
  async Load(ID, EntityRelationshipsToLoad = null) {
6202
- const pkeyValues = [];
6203
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6204
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6216
+ const compositeKey = new core_1.CompositeKey();
6217
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6218
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6205
6219
  }
6206
6220
  /**
6207
6221
  * 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 +6359,9 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
6345
6359
  * @override
6346
6360
  */
6347
6361
  async Load(ID, EntityRelationshipsToLoad = null) {
6348
- const pkeyValues = [];
6349
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6350
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6362
+ const compositeKey = new core_1.CompositeKey();
6363
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6364
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6351
6365
  }
6352
6366
  /**
6353
6367
  * 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 +6479,9 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
6465
6479
  * @override
6466
6480
  */
6467
6481
  async Load(ID, EntityRelationshipsToLoad = null) {
6468
- const pkeyValues = [];
6469
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6470
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6482
+ const compositeKey = new core_1.CompositeKey();
6483
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6484
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6471
6485
  }
6472
6486
  /**
6473
6487
  * 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 +6613,9 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
6599
6613
  * @override
6600
6614
  */
6601
6615
  async Load(ID, EntityRelationshipsToLoad = null) {
6602
- const pkeyValues = [];
6603
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6604
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6616
+ const compositeKey = new core_1.CompositeKey();
6617
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6618
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6605
6619
  }
6606
6620
  /**
6607
6621
  * 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 +6778,9 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
6764
6778
  * @override
6765
6779
  */
6766
6780
  async Load(ID, EntityRelationshipsToLoad = null) {
6767
- const pkeyValues = [];
6768
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6769
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6781
+ const compositeKey = new core_1.CompositeKey();
6782
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6783
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6770
6784
  }
6771
6785
  /**
6772
6786
  * 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 +6959,9 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
6945
6959
  * @override
6946
6960
  */
6947
6961
  async Load(ID, EntityRelationshipsToLoad = null) {
6948
- const pkeyValues = [];
6949
- pkeyValues.push({ FieldName: 'ID', Value: ID });
6950
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
6962
+ const compositeKey = new core_1.CompositeKey();
6963
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
6964
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
6951
6965
  }
6952
6966
  /**
6953
6967
  * 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 +7094,9 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
7080
7094
  * @override
7081
7095
  */
7082
7096
  async Load(ID, EntityRelationshipsToLoad = null) {
7083
- const pkeyValues = [];
7084
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7085
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7097
+ const compositeKey = new core_1.CompositeKey();
7098
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7099
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7086
7100
  }
7087
7101
  /**
7088
7102
  * 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 +7216,9 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
7202
7216
  * @override
7203
7217
  */
7204
7218
  async Load(ID, EntityRelationshipsToLoad = null) {
7205
- const pkeyValues = [];
7206
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7207
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7219
+ const compositeKey = new core_1.CompositeKey();
7220
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7221
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7208
7222
  }
7209
7223
  /**
7210
7224
  * 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 +7447,9 @@ let AIModelTypeEntity = class AIModelTypeEntity extends core_1.BaseEntity {
7433
7447
  * @override
7434
7448
  */
7435
7449
  async Load(ID, EntityRelationshipsToLoad = null) {
7436
- const pkeyValues = [];
7437
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7438
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7450
+ const compositeKey = new core_1.CompositeKey();
7451
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7452
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7439
7453
  }
7440
7454
  /**
7441
7455
  * 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 +7520,9 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
7506
7520
  * @override
7507
7521
  */
7508
7522
  async Load(ID, EntityRelationshipsToLoad = null) {
7509
- const pkeyValues = [];
7510
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7511
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7523
+ const compositeKey = new core_1.CompositeKey();
7524
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7525
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7512
7526
  }
7513
7527
  /**
7514
7528
  * 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 +7639,9 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
7625
7639
  * @override
7626
7640
  */
7627
7641
  async Load(ID, EntityRelationshipsToLoad = null) {
7628
- const pkeyValues = [];
7629
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7630
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7642
+ const compositeKey = new core_1.CompositeKey();
7643
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7644
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7631
7645
  }
7632
7646
  /**
7633
7647
  * 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 +7895,9 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
7881
7895
  * @override
7882
7896
  */
7883
7897
  async Load(ID, EntityRelationshipsToLoad = null) {
7884
- const pkeyValues = [];
7885
- pkeyValues.push({ FieldName: 'ID', Value: ID });
7886
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
7898
+ const compositeKey = new core_1.CompositeKey();
7899
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
7900
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
7887
7901
  }
7888
7902
  /**
7889
7903
  * 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 +8061,9 @@ let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
8047
8061
  * @override
8048
8062
  */
8049
8063
  async Load(ID, EntityRelationshipsToLoad = null) {
8050
- const pkeyValues = [];
8051
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8052
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8064
+ const compositeKey = new core_1.CompositeKey();
8065
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8066
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8053
8067
  }
8054
8068
  /**
8055
8069
  * * Field Name: ID
@@ -8160,9 +8174,9 @@ let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseE
8160
8174
  * @override
8161
8175
  */
8162
8176
  async Load(ID, EntityRelationshipsToLoad = null) {
8163
- const pkeyValues = [];
8164
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8165
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8177
+ const compositeKey = new core_1.CompositeKey();
8178
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8179
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8166
8180
  }
8167
8181
  /**
8168
8182
  * 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 +8258,9 @@ let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEnt
8244
8258
  * @override
8245
8259
  */
8246
8260
  async Load(ID, EntityRelationshipsToLoad = null) {
8247
- const pkeyValues = [];
8248
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8249
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8261
+ const compositeKey = new core_1.CompositeKey();
8262
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8263
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8250
8264
  }
8251
8265
  /**
8252
8266
  * 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 +8353,9 @@ let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.Bas
8339
8353
  * @override
8340
8354
  */
8341
8355
  async Load(ID, EntityRelationshipsToLoad = null) {
8342
- const pkeyValues = [];
8343
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8344
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8356
+ const compositeKey = new core_1.CompositeKey();
8357
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8358
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8345
8359
  }
8346
8360
  /**
8347
8361
  * 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 +8437,9 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
8423
8437
  * @override
8424
8438
  */
8425
8439
  async Load(ID, EntityRelationshipsToLoad = null) {
8426
- const pkeyValues = [];
8427
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8428
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8440
+ const compositeKey = new core_1.CompositeKey();
8441
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8442
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8429
8443
  }
8430
8444
  /**
8431
8445
  * * Field Name: ID
@@ -8745,9 +8759,9 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
8745
8759
  * @override
8746
8760
  */
8747
8761
  async Load(ID, EntityRelationshipsToLoad = null) {
8748
- const pkeyValues = [];
8749
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8750
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8762
+ const compositeKey = new core_1.CompositeKey();
8763
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8764
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8751
8765
  }
8752
8766
  /**
8753
8767
  * * Field Name: ID
@@ -8845,9 +8859,9 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
8845
8859
  * @override
8846
8860
  */
8847
8861
  async Load(ID, EntityRelationshipsToLoad = null) {
8848
- const pkeyValues = [];
8849
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8850
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
8862
+ const compositeKey = new core_1.CompositeKey();
8863
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
8864
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8851
8865
  }
8852
8866
  /**
8853
8867
  * 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 +9004,9 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
8990
9004
  * @override
8991
9005
  */
8992
9006
  async Load(ID, EntityRelationshipsToLoad = null) {
8993
- const pkeyValues = [];
8994
- pkeyValues.push({ FieldName: 'ID', Value: ID });
8995
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9007
+ const compositeKey = new core_1.CompositeKey();
9008
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9009
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
8996
9010
  }
8997
9011
  /**
8998
9012
  * 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 +9120,9 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
9106
9120
  * @override
9107
9121
  */
9108
9122
  async Load(ID, EntityRelationshipsToLoad = null) {
9109
- const pkeyValues = [];
9110
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9111
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9123
+ const compositeKey = new core_1.CompositeKey();
9124
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9125
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9112
9126
  }
9113
9127
  /**
9114
9128
  * 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 +9223,9 @@ let WorkspaceEntity = class WorkspaceEntity extends core_1.BaseEntity {
9209
9223
  * @override
9210
9224
  */
9211
9225
  async Load(ID, EntityRelationshipsToLoad = null) {
9212
- const pkeyValues = [];
9213
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9214
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9226
+ const compositeKey = new core_1.CompositeKey();
9227
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9228
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9215
9229
  }
9216
9230
  /**
9217
9231
  * * Field Name: ID
@@ -9292,9 +9306,9 @@ let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
9292
9306
  * @override
9293
9307
  */
9294
9308
  async Load(ID, EntityRelationshipsToLoad = null) {
9295
- const pkeyValues = [];
9296
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9297
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9309
+ const compositeKey = new core_1.CompositeKey();
9310
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9311
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9298
9312
  }
9299
9313
  /**
9300
9314
  * * Field Name: ID
@@ -9428,9 +9442,9 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
9428
9442
  * @override
9429
9443
  */
9430
9444
  async Load(ID, EntityRelationshipsToLoad = null) {
9431
- const pkeyValues = [];
9432
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9433
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9445
+ const compositeKey = new core_1.CompositeKey();
9446
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9447
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9434
9448
  }
9435
9449
  /**
9436
9450
  * 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 +9545,9 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
9531
9545
  * @override
9532
9546
  */
9533
9547
  async Load(ID, EntityRelationshipsToLoad = null) {
9534
- const pkeyValues = [];
9535
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9536
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9548
+ const compositeKey = new core_1.CompositeKey();
9549
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9550
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9537
9551
  }
9538
9552
  /**
9539
9553
  * 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 +9713,9 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
9699
9713
  * @override
9700
9714
  */
9701
9715
  async Load(ID, EntityRelationshipsToLoad = null) {
9702
- const pkeyValues = [];
9703
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9704
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9716
+ const compositeKey = new core_1.CompositeKey();
9717
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9718
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9705
9719
  }
9706
9720
  /**
9707
9721
  * * Field Name: ID
@@ -9839,9 +9853,9 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
9839
9853
  * @override
9840
9854
  */
9841
9855
  async Load(ID, EntityRelationshipsToLoad = null) {
9842
- const pkeyValues = [];
9843
- pkeyValues.push({ FieldName: 'ID', Value: ID });
9844
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
9856
+ const compositeKey = new core_1.CompositeKey();
9857
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
9858
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
9845
9859
  }
9846
9860
  /**
9847
9861
  * * Field Name: ID
@@ -10016,9 +10030,9 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
10016
10030
  * @override
10017
10031
  */
10018
10032
  async Load(ID, EntityRelationshipsToLoad = null) {
10019
- const pkeyValues = [];
10020
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10021
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10033
+ const compositeKey = new core_1.CompositeKey();
10034
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10035
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10022
10036
  }
10023
10037
  /**
10024
10038
  * * Field Name: ID
@@ -10173,9 +10187,9 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
10173
10187
  * @override
10174
10188
  */
10175
10189
  async Load(ID, EntityRelationshipsToLoad = null) {
10176
- const pkeyValues = [];
10177
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10178
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10190
+ const compositeKey = new core_1.CompositeKey();
10191
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10192
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10179
10193
  }
10180
10194
  /**
10181
10195
  * 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 +10300,9 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
10286
10300
  * @override
10287
10301
  */
10288
10302
  async Load(ID, EntityRelationshipsToLoad = null) {
10289
- const pkeyValues = [];
10290
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10291
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10303
+ const compositeKey = new core_1.CompositeKey();
10304
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10305
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10292
10306
  }
10293
10307
  /**
10294
10308
  * 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 +10423,9 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
10409
10423
  * @override
10410
10424
  */
10411
10425
  async Load(ID, EntityRelationshipsToLoad = null) {
10412
- const pkeyValues = [];
10413
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10414
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10426
+ const compositeKey = new core_1.CompositeKey();
10427
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10428
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10415
10429
  }
10416
10430
  /**
10417
10431
  * 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 +10633,9 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
10619
10633
  * @override
10620
10634
  */
10621
10635
  async Load(ID, EntityRelationshipsToLoad = null) {
10622
- const pkeyValues = [];
10623
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10624
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10636
+ const compositeKey = new core_1.CompositeKey();
10637
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10638
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10625
10639
  }
10626
10640
  /**
10627
10641
  * 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 +10753,9 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
10739
10753
  * @override
10740
10754
  */
10741
10755
  async Load(ID, EntityRelationshipsToLoad = null) {
10742
- const pkeyValues = [];
10743
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10744
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10756
+ const compositeKey = new core_1.CompositeKey();
10757
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10758
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10745
10759
  }
10746
10760
  /**
10747
10761
  * 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 +10976,9 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
10962
10976
  * @override
10963
10977
  */
10964
10978
  async Load(ID, EntityRelationshipsToLoad = null) {
10965
- const pkeyValues = [];
10966
- pkeyValues.push({ FieldName: 'ID', Value: ID });
10967
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
10979
+ const compositeKey = new core_1.CompositeKey();
10980
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
10981
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
10968
10982
  }
10969
10983
  /**
10970
10984
  * * Field Name: ID
@@ -11083,9 +11097,9 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
11083
11097
  * @override
11084
11098
  */
11085
11099
  async Load(ID, EntityRelationshipsToLoad = null) {
11086
- const pkeyValues = [];
11087
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11088
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11100
+ const compositeKey = new core_1.CompositeKey();
11101
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11102
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11089
11103
  }
11090
11104
  /**
11091
11105
  * 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 +11271,9 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
11257
11271
  * @override
11258
11272
  */
11259
11273
  async Load(ID, EntityRelationshipsToLoad = null) {
11260
- const pkeyValues = [];
11261
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11262
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11274
+ const compositeKey = new core_1.CompositeKey();
11275
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11276
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11263
11277
  }
11264
11278
  /**
11265
11279
  * 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 +11364,9 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
11350
11364
  * @override
11351
11365
  */
11352
11366
  async Load(ID, EntityRelationshipsToLoad = null) {
11353
- const pkeyValues = [];
11354
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11355
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11367
+ const compositeKey = new core_1.CompositeKey();
11368
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11369
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11356
11370
  }
11357
11371
  /**
11358
11372
  * 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 +11495,9 @@ let EntityDocumentTypeEntity = class EntityDocumentTypeEntity extends core_1.Bas
11481
11495
  * @override
11482
11496
  */
11483
11497
  async Load(ID, EntityRelationshipsToLoad = null) {
11484
- const pkeyValues = [];
11485
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11486
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11498
+ const compositeKey = new core_1.CompositeKey();
11499
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11500
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11487
11501
  }
11488
11502
  /**
11489
11503
  * 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 +11586,9 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
11572
11586
  * @override
11573
11587
  */
11574
11588
  async Load(ID, EntityRelationshipsToLoad = null) {
11575
- const pkeyValues = [];
11576
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11577
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11589
+ const compositeKey = new core_1.CompositeKey();
11590
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11591
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11578
11592
  }
11579
11593
  /**
11580
11594
  * 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 +11715,9 @@ let VectorDatabaseEntity = class VectorDatabaseEntity extends core_1.BaseEntity
11701
11715
  * @override
11702
11716
  */
11703
11717
  async Load(ID, EntityRelationshipsToLoad = null) {
11704
- const pkeyValues = [];
11705
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11706
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11718
+ const compositeKey = new core_1.CompositeKey();
11719
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11720
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11707
11721
  }
11708
11722
  /**
11709
11723
  * 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 +11828,9 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
11814
11828
  * @override
11815
11829
  */
11816
11830
  async Load(ID, EntityRelationshipsToLoad = null) {
11817
- const pkeyValues = [];
11818
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11819
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11831
+ const compositeKey = new core_1.CompositeKey();
11832
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11833
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11820
11834
  }
11821
11835
  /**
11822
11836
  * 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 +11986,9 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
11972
11986
  * @override
11973
11987
  */
11974
11988
  async Load(ID, EntityRelationshipsToLoad = null) {
11975
- const pkeyValues = [];
11976
- pkeyValues.push({ FieldName: 'ID', Value: ID });
11977
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
11989
+ const compositeKey = new core_1.CompositeKey();
11990
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
11991
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
11978
11992
  }
11979
11993
  /**
11980
11994
  * 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 +12184,9 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
12170
12184
  * @override
12171
12185
  */
12172
12186
  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.');
12187
+ const compositeKey = new core_1.CompositeKey();
12188
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12189
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12187
12190
  }
12188
12191
  /**
12189
12192
  * * Field Name: ID
@@ -12391,20 +12394,9 @@ let DataContextEntity = class DataContextEntity extends core_1.BaseEntity {
12391
12394
  * @override
12392
12395
  */
12393
12396
  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.');
12397
+ const compositeKey = new core_1.CompositeKey();
12398
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12399
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12408
12400
  }
12409
12401
  /**
12410
12402
  * * Field Name: ID
@@ -12513,9 +12505,9 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
12513
12505
  * @override
12514
12506
  */
12515
12507
  async Load(ID, EntityRelationshipsToLoad = null) {
12516
- const pkeyValues = [];
12517
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12518
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12508
+ const compositeKey = new core_1.CompositeKey();
12509
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12510
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12519
12511
  }
12520
12512
  /**
12521
12513
  * * Field Name: ID
@@ -12645,9 +12637,9 @@ let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseE
12645
12637
  * @override
12646
12638
  */
12647
12639
  async Load(ID, EntityRelationshipsToLoad = null) {
12648
- const pkeyValues = [];
12649
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12650
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12640
+ const compositeKey = new core_1.CompositeKey();
12641
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12642
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12651
12643
  }
12652
12644
  /**
12653
12645
  * * Field Name: ID
@@ -12765,9 +12757,9 @@ let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity
12765
12757
  * @override
12766
12758
  */
12767
12759
  async Load(ID, EntityRelationshipsToLoad = null) {
12768
- const pkeyValues = [];
12769
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12770
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12760
+ const compositeKey = new core_1.CompositeKey();
12761
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12762
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12771
12763
  }
12772
12764
  /**
12773
12765
  * * Field Name: ID
@@ -12885,9 +12877,9 @@ let FileStorageProviderEntity = class FileStorageProviderEntity extends core_1.B
12885
12877
  * @override
12886
12878
  */
12887
12879
  async Load(ID, EntityRelationshipsToLoad = null) {
12888
- const pkeyValues = [];
12889
- pkeyValues.push({ FieldName: 'ID', Value: ID });
12890
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
12880
+ const compositeKey = new core_1.CompositeKey();
12881
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
12882
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
12891
12883
  }
12892
12884
  /**
12893
12885
  * 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 +13014,9 @@ let FileEntity = class FileEntity extends core_1.BaseEntity {
13022
13014
  * @override
13023
13015
  */
13024
13016
  async Load(ID, EntityRelationshipsToLoad = null) {
13025
- const pkeyValues = [];
13026
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13027
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13017
+ const compositeKey = new core_1.CompositeKey();
13018
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13019
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13028
13020
  }
13029
13021
  /**
13030
13022
  * * Field Name: ID
@@ -13177,9 +13169,9 @@ let FileCategoryEntity = class FileCategoryEntity extends core_1.BaseEntity {
13177
13169
  * @override
13178
13170
  */
13179
13171
  async Load(ID, EntityRelationshipsToLoad = null) {
13180
- const pkeyValues = [];
13181
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13182
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13172
+ const compositeKey = new core_1.CompositeKey();
13173
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13174
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13183
13175
  }
13184
13176
  /**
13185
13177
  * * Field Name: ID
@@ -13277,9 +13269,9 @@ let FileEntityRecordLinkEntity = class FileEntityRecordLinkEntity extends core_1
13277
13269
  * @override
13278
13270
  */
13279
13271
  async Load(ID, EntityRelationshipsToLoad = null) {
13280
- const pkeyValues = [];
13281
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13282
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13272
+ const compositeKey = new core_1.CompositeKey();
13273
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13274
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13283
13275
  }
13284
13276
  /**
13285
13277
  * 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 +13389,9 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
13397
13389
  * @override
13398
13390
  */
13399
13391
  async Load(ID, EntityRelationshipsToLoad = null) {
13400
- const pkeyValues = [];
13401
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13402
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13392
+ const compositeKey = new core_1.CompositeKey();
13393
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13394
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13403
13395
  }
13404
13396
  /**
13405
13397
  * 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 +13570,9 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
13578
13570
  * @override
13579
13571
  */
13580
13572
  async Load(ID, EntityRelationshipsToLoad = null) {
13581
- const pkeyValues = [];
13582
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13583
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13573
+ const compositeKey = new core_1.CompositeKey();
13574
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13575
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13584
13576
  }
13585
13577
  /**
13586
13578
  * 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 +13606,23 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
13614
13606
  this.Set('DuplicateRunDetailID', value);
13615
13607
  }
13616
13608
  /**
13609
+ * * Field Name: MatchSource
13610
+ * * Display Name: Match Source
13611
+ * * SQL Data Type: nvarchar(20)
13612
+ * * Default Value: N'Vector'
13613
+ * * Value List Type: List
13614
+ * * Possible Values
13615
+ * * SP
13616
+ * * Vector
13617
+ * * Description: Either Vector or SP
13618
+ */
13619
+ get MatchSource() {
13620
+ return this.Get('MatchSource');
13621
+ }
13622
+ set MatchSource(value) {
13623
+ this.Set('MatchSource', value);
13624
+ }
13625
+ /**
13617
13626
  * * Field Name: MatchRecordID
13618
13627
  * * Display Name: Match Record ID
13619
13628
  * * SQL Data Type: nvarchar(500)
@@ -13765,9 +13774,9 @@ let EntityDocumentSettingEntity = class EntityDocumentSettingEntity extends core
13765
13774
  * @override
13766
13775
  */
13767
13776
  async Load(ID, EntityRelationshipsToLoad = null) {
13768
- const pkeyValues = [];
13769
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13770
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13777
+ const compositeKey = new core_1.CompositeKey();
13778
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13779
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13771
13780
  }
13772
13781
  /**
13773
13782
  * 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 +13864,6 @@ let EntityDocumentSettingEntity = class EntityDocumentSettingEntity extends core
13855
13864
  * * Field Name: EntityDocument
13856
13865
  * * Display Name: Entity Document
13857
13866
  * * SQL Data Type: nvarchar(250)
13858
- * * Default Value: null
13859
13867
  */
13860
13868
  get EntityDocument() {
13861
13869
  return this.Get('EntityDocument');
@@ -13888,9 +13896,9 @@ let EntitySettingEntity = class EntitySettingEntity extends core_1.BaseEntity {
13888
13896
  * @override
13889
13897
  */
13890
13898
  async Load(ID, EntityRelationshipsToLoad = null) {
13891
- const pkeyValues = [];
13892
- pkeyValues.push({ FieldName: 'ID', Value: ID });
13893
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
13899
+ const compositeKey = new core_1.CompositeKey();
13900
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
13901
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13894
13902
  }
13895
13903
  /**
13896
13904
  * 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 +13986,6 @@ let EntitySettingEntity = class EntitySettingEntity extends core_1.BaseEntity {
13978
13986
  * * Field Name: Entity
13979
13987
  * * Display Name: Entity
13980
13988
  * * SQL Data Type: nvarchar(255)
13981
- * * Default Value: null
13982
13989
  */
13983
13990
  get Entity() {
13984
13991
  return this.Get('Entity');
@@ -14011,9 +14018,9 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14011
14018
  * @override
14012
14019
  */
14013
14020
  async Load(ID, EntityRelationshipsToLoad = null) {
14014
- const pkeyValues = [];
14015
- pkeyValues.push({ FieldName: 'ID', Value: ID });
14016
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
14021
+ const compositeKey = new core_1.CompositeKey();
14022
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
14023
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
14017
14024
  }
14018
14025
  /**
14019
14026
  * 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 +14191,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14184
14191
  * * Field Name: Entity
14185
14192
  * * Display Name: Entity
14186
14193
  * * SQL Data Type: nvarchar(255)
14187
- * * Default Value: null
14188
14194
  */
14189
14195
  get Entity() {
14190
14196
  return this.Get('Entity');
@@ -14193,7 +14199,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14193
14199
  * * Field Name: StartedByUser
14194
14200
  * * Display Name: Started By User
14195
14201
  * * SQL Data Type: nvarchar(100)
14196
- * * Default Value: null
14197
14202
  */
14198
14203
  get StartedByUser() {
14199
14204
  return this.Get('StartedByUser');
@@ -14202,7 +14207,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14202
14207
  * * Field Name: ApprovedByUser
14203
14208
  * * Display Name: Approved By User
14204
14209
  * * SQL Data Type: nvarchar(100)
14205
- * * Default Value: null
14206
14210
  */
14207
14211
  get ApprovedByUser() {
14208
14212
  return this.Get('ApprovedByUser');
@@ -14211,7 +14215,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
14211
14215
  * * Field Name: SourceList
14212
14216
  * * Display Name: Source List
14213
14217
  * * SQL Data Type: nvarchar(100)
14214
- * * Default Value: null
14215
14218
  */
14216
14219
  get SourceList() {
14217
14220
  return this.Get('SourceList');
@@ -14244,9 +14247,9 @@ let DuplicateRunDetailEntity = class DuplicateRunDetailEntity extends core_1.Bas
14244
14247
  * @override
14245
14248
  */
14246
14249
  async Load(ID, EntityRelationshipsToLoad = null) {
14247
- const pkeyValues = [];
14248
- pkeyValues.push({ FieldName: 'ID', Value: ID });
14249
- return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
14250
+ const compositeKey = new core_1.CompositeKey();
14251
+ compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
14252
+ return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
14250
14253
  }
14251
14254
  /**
14252
14255
  * 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.