@memberjunction/core-entities 2.56.0 → 2.58.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.
@@ -1080,6 +1080,16 @@ exports.AIAgentSchema = zod_1.z.object({
1080
1080
  * * Display Name: Icon Class
1081
1081
  * * SQL Data Type: nvarchar(100)
1082
1082
  * * Description: Font Awesome icon class (e.g., fa-robot, fa-brain) for the agent. Used as fallback when LogoURL is not set or fails to load.`),
1083
+ ModelSelectionMode: zod_1.z.union([zod_1.z.literal('Agent Type'), zod_1.z.literal('Agent')]).describe(`
1084
+ * * Field Name: ModelSelectionMode
1085
+ * * Display Name: Model Selection Mode
1086
+ * * SQL Data Type: nvarchar(50)
1087
+ * * Default Value: Agent Type
1088
+ * * Value List Type: List
1089
+ * * Possible Values
1090
+ * * Agent Type
1091
+ * * Agent
1092
+ * * Description: Controls whether model selection is driven by the Agent Type's system prompt or the Agent's specific prompt. Default is Agent Type for backward compatibility.`),
1083
1093
  Parent: zod_1.z.string().nullable().describe(`
1084
1094
  * * Field Name: Parent
1085
1095
  * * Display Name: Parent
@@ -6269,7 +6279,7 @@ exports.FileSchema = zod_1.z.object({
6269
6279
  ContentType: zod_1.z.string().nullable().describe(`
6270
6280
  * * Field Name: ContentType
6271
6281
  * * Display Name: Content Type
6272
- * * SQL Data Type: nvarchar(50)`),
6282
+ * * SQL Data Type: nvarchar(255)`),
6273
6283
  ProviderKey: zod_1.z.string().nullable().describe(`
6274
6284
  * * Field Name: ProviderKey
6275
6285
  * * Display Name: Provider Key
@@ -14470,6 +14480,23 @@ let AIAgentEntity = class AIAgentEntity extends core_1.BaseEntity {
14470
14480
  this.Set('IconClass', value);
14471
14481
  }
14472
14482
  /**
14483
+ * * Field Name: ModelSelectionMode
14484
+ * * Display Name: Model Selection Mode
14485
+ * * SQL Data Type: nvarchar(50)
14486
+ * * Default Value: Agent Type
14487
+ * * Value List Type: List
14488
+ * * Possible Values
14489
+ * * Agent Type
14490
+ * * Agent
14491
+ * * Description: Controls whether model selection is driven by the Agent Type's system prompt or the Agent's specific prompt. Default is Agent Type for backward compatibility.
14492
+ */
14493
+ get ModelSelectionMode() {
14494
+ return this.Get('ModelSelectionMode');
14495
+ }
14496
+ set ModelSelectionMode(value) {
14497
+ this.Set('ModelSelectionMode', value);
14498
+ }
14499
+ /**
14473
14500
  * * Field Name: Parent
14474
14501
  * * Display Name: Parent
14475
14502
  * * SQL Data Type: nvarchar(255)
@@ -16626,28 +16653,6 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
16626
16653
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
16627
16654
  }
16628
16655
  /**
16629
- * 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.
16630
- * @public
16631
- * @method
16632
- * @override
16633
- * @memberof AuditLogTypeEntity
16634
- * @throws {Error} - Save is not allowed for Audit Log Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
16635
- */
16636
- async Save(options) {
16637
- throw new Error('Save is not allowed for Audit Log Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
16638
- }
16639
- /**
16640
- * Audit Log 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.
16641
- * @public
16642
- * @method
16643
- * @override
16644
- * @memberof AuditLogTypeEntity
16645
- * @throws {Error} - Delete is not allowed for Audit Log Types, to enable it set AllowDeleteAPI to 1 in the database.
16646
- */
16647
- async Delete() {
16648
- throw new Error('Delete is not allowed for Audit Log Types, to enable it set AllowDeleteAPI to 1 in the database.');
16649
- }
16650
- /**
16651
16656
  * * Field Name: ID
16652
16657
  * * Display Name: ID
16653
16658
  * * SQL Data Type: uniqueidentifier
@@ -16772,17 +16777,6 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
16772
16777
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
16773
16778
  }
16774
16779
  /**
16775
- * 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.
16776
- * @public
16777
- * @method
16778
- * @override
16779
- * @memberof AuditLogEntity
16780
- * @throws {Error} - Delete is not allowed for Audit Logs, to enable it set AllowDeleteAPI to 1 in the database.
16781
- */
16782
- async Delete() {
16783
- throw new Error('Delete is not allowed for Audit Logs, to enable it set AllowDeleteAPI to 1 in the database.');
16784
- }
16785
- /**
16786
16780
  * * Field Name: ID
16787
16781
  * * Display Name: ID
16788
16782
  * * SQL Data Type: uniqueidentifier
@@ -16974,28 +16968,6 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
16974
16968
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
16975
16969
  }
16976
16970
  /**
16977
- * 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.
16978
- * @public
16979
- * @method
16980
- * @override
16981
- * @memberof AuthorizationRoleEntity
16982
- * @throws {Error} - Save is not allowed for Authorization Roles, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
16983
- */
16984
- async Save(options) {
16985
- throw new Error('Save is not allowed for Authorization Roles, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
16986
- }
16987
- /**
16988
- * Authorization 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.
16989
- * @public
16990
- * @method
16991
- * @override
16992
- * @memberof AuthorizationRoleEntity
16993
- * @throws {Error} - Delete is not allowed for Authorization Roles, to enable it set AllowDeleteAPI to 1 in the database.
16994
- */
16995
- async Delete() {
16996
- throw new Error('Delete is not allowed for Authorization Roles, to enable it set AllowDeleteAPI to 1 in the database.');
16997
- }
16998
- /**
16999
16971
  * * Field Name: ID
17000
16972
  * * Display Name: ID
17001
16973
  * * SQL Data Type: uniqueidentifier
@@ -17114,28 +17086,6 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
17114
17086
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
17115
17087
  }
17116
17088
  /**
17117
- * 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.
17118
- * @public
17119
- * @method
17120
- * @override
17121
- * @memberof AuthorizationEntity
17122
- * @throws {Error} - Save is not allowed for Authorizations, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
17123
- */
17124
- async Save(options) {
17125
- throw new Error('Save is not allowed for Authorizations, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
17126
- }
17127
- /**
17128
- * Authorizations - 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.
17129
- * @public
17130
- * @method
17131
- * @override
17132
- * @memberof AuthorizationEntity
17133
- * @throws {Error} - Delete is not allowed for Authorizations, to enable it set AllowDeleteAPI to 1 in the database.
17134
- */
17135
- async Delete() {
17136
- throw new Error('Delete is not allowed for Authorizations, to enable it set AllowDeleteAPI to 1 in the database.');
17137
- }
17138
- /**
17139
17089
  * * Field Name: ID
17140
17090
  * * Display Name: ID
17141
17091
  * * SQL Data Type: uniqueidentifier
@@ -17391,17 +17341,6 @@ let CommunicationLogEntity = class CommunicationLogEntity extends core_1.BaseEnt
17391
17341
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
17392
17342
  }
17393
17343
  /**
17394
- * Communication 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.
17395
- * @public
17396
- * @method
17397
- * @override
17398
- * @memberof CommunicationLogEntity
17399
- * @throws {Error} - Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.
17400
- */
17401
- async Delete() {
17402
- throw new Error('Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.');
17403
- }
17404
- /**
17405
17344
  * * Field Name: ID
17406
17345
  * * Display Name: ID
17407
17346
  * * SQL Data Type: uniqueidentifier
@@ -17921,17 +17860,6 @@ let CommunicationRunEntity = class CommunicationRunEntity extends core_1.BaseEnt
17921
17860
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
17922
17861
  }
17923
17862
  /**
17924
- * Communication 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.
17925
- * @public
17926
- * @method
17927
- * @override
17928
- * @memberof CommunicationRunEntity
17929
- * @throws {Error} - Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.
17930
- */
17931
- async Delete() {
17932
- throw new Error('Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.');
17933
- }
17934
- /**
17935
17863
  * * Field Name: ID
17936
17864
  * * Display Name: ID
17937
17865
  * * SQL Data Type: uniqueidentifier
@@ -18207,17 +18135,6 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
18207
18135
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
18208
18136
  }
18209
18137
  /**
18210
- * 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.
18211
- * @public
18212
- * @method
18213
- * @override
18214
- * @memberof CompanyIntegrationRecordMapEntity
18215
- * @throws {Error} - Delete is not allowed for Company Integration Record Maps, to enable it set AllowDeleteAPI to 1 in the database.
18216
- */
18217
- async Delete() {
18218
- throw new Error('Delete is not allowed for Company Integration Record Maps, to enable it set AllowDeleteAPI to 1 in the database.');
18219
- }
18220
- /**
18221
18138
  * * Field Name: ID
18222
18139
  * * Display Name: ID
18223
18140
  * * SQL Data Type: uniqueidentifier
@@ -18334,17 +18251,6 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
18334
18251
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
18335
18252
  }
18336
18253
  /**
18337
- * 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.
18338
- * @public
18339
- * @method
18340
- * @override
18341
- * @memberof CompanyIntegrationRunAPILogEntity
18342
- * @throws {Error} - Delete is not allowed for Company Integration Run API Logs, to enable it set AllowDeleteAPI to 1 in the database.
18343
- */
18344
- async Delete() {
18345
- throw new Error('Delete is not allowed for Company Integration Run API Logs, to enable it set AllowDeleteAPI to 1 in the database.');
18346
- }
18347
- /**
18348
18254
  * * Field Name: ID
18349
18255
  * * SQL Data Type: uniqueidentifier
18350
18256
  * * Default Value: newsequentialid()
@@ -18482,17 +18388,6 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
18482
18388
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
18483
18389
  }
18484
18390
  /**
18485
- * 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.
18486
- * @public
18487
- * @method
18488
- * @override
18489
- * @memberof CompanyIntegrationRunDetailEntity
18490
- * @throws {Error} - Delete is not allowed for Company Integration Run Details, to enable it set AllowDeleteAPI to 1 in the database.
18491
- */
18492
- async Delete() {
18493
- throw new Error('Delete is not allowed for Company Integration Run Details, to enable it set AllowDeleteAPI to 1 in the database.');
18494
- }
18495
- /**
18496
18391
  * * Field Name: ID
18497
18392
  * * SQL Data Type: uniqueidentifier
18498
18393
  * * Default Value: newsequentialid()
@@ -18646,17 +18541,6 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
18646
18541
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
18647
18542
  }
18648
18543
  /**
18649
- * 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.
18650
- * @public
18651
- * @method
18652
- * @override
18653
- * @memberof CompanyIntegrationRunEntity
18654
- * @throws {Error} - Delete is not allowed for Company Integration Runs, to enable it set AllowDeleteAPI to 1 in the database.
18655
- */
18656
- async Delete() {
18657
- throw new Error('Delete is not allowed for Company Integration Runs, to enable it set AllowDeleteAPI to 1 in the database.');
18658
- }
18659
- /**
18660
18544
  * * Field Name: ID
18661
18545
  * * SQL Data Type: uniqueidentifier
18662
18546
  * * Default Value: newsequentialid()
@@ -21578,17 +21462,6 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
21578
21462
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
21579
21463
  }
21580
21464
  /**
21581
- * 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.
21582
- * @public
21583
- * @method
21584
- * @override
21585
- * @memberof DatasetItemEntity
21586
- * @throws {Error} - Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
21587
- */
21588
- async Save(options) {
21589
- throw new Error('Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
21590
- }
21591
- /**
21592
21465
  * * Field Name: ID
21593
21466
  * * Display Name: ID
21594
21467
  * * SQL Data Type: uniqueidentifier
@@ -21760,17 +21633,6 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
21760
21633
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
21761
21634
  }
21762
21635
  /**
21763
- * 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.
21764
- * @public
21765
- * @method
21766
- * @override
21767
- * @memberof DatasetEntity
21768
- * @throws {Error} - Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
21769
- */
21770
- async Save(options) {
21771
- throw new Error('Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
21772
- }
21773
- /**
21774
21636
  * * Field Name: ID
21775
21637
  * * Display Name: ID
21776
21638
  * * SQL Data Type: uniqueidentifier
@@ -21855,17 +21717,6 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
21855
21717
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
21856
21718
  }
21857
21719
  /**
21858
- * 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.
21859
- * @public
21860
- * @method
21861
- * @override
21862
- * @memberof DuplicateRunDetailMatchEntity
21863
- * @throws {Error} - Delete is not allowed for Duplicate Run Detail Matches, to enable it set AllowDeleteAPI to 1 in the database.
21864
- */
21865
- async Delete() {
21866
- throw new Error('Delete is not allowed for Duplicate Run Detail Matches, to enable it set AllowDeleteAPI to 1 in the database.');
21867
- }
21868
- /**
21869
21720
  * * Field Name: ID
21870
21721
  * * Display Name: ID
21871
21722
  * * SQL Data Type: uniqueidentifier
@@ -22063,17 +21914,6 @@ let DuplicateRunDetailEntity = class DuplicateRunDetailEntity extends core_1.Bas
22063
21914
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
22064
21915
  }
22065
21916
  /**
22066
- * 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.
22067
- * @public
22068
- * @method
22069
- * @override
22070
- * @memberof DuplicateRunDetailEntity
22071
- * @throws {Error} - Delete is not allowed for Duplicate Run Details, to enable it set AllowDeleteAPI to 1 in the database.
22072
- */
22073
- async Delete() {
22074
- throw new Error('Delete is not allowed for Duplicate Run Details, to enable it set AllowDeleteAPI to 1 in the database.');
22075
- }
22076
- /**
22077
21917
  * * Field Name: ID
22078
21918
  * * Display Name: ID
22079
21919
  * * SQL Data Type: uniqueidentifier
@@ -22230,17 +22070,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
22230
22070
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
22231
22071
  }
22232
22072
  /**
22233
- * 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.
22234
- * @public
22235
- * @method
22236
- * @override
22237
- * @memberof DuplicateRunEntity
22238
- * @throws {Error} - Delete is not allowed for Duplicate Runs, to enable it set AllowDeleteAPI to 1 in the database.
22239
- */
22240
- async Delete() {
22241
- throw new Error('Delete is not allowed for Duplicate Runs, to enable it set AllowDeleteAPI to 1 in the database.');
22242
- }
22243
- /**
22244
22073
  * * Field Name: ID
22245
22074
  * * Display Name: ID
22246
22075
  * * SQL Data Type: uniqueidentifier
@@ -22463,17 +22292,6 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
22463
22292
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
22464
22293
  }
22465
22294
  /**
22466
- * 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.
22467
- * @public
22468
- * @method
22469
- * @override
22470
- * @memberof EmployeeCompanyIntegrationEntity
22471
- * @throws {Error} - Delete is not allowed for Employee Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.
22472
- */
22473
- async Delete() {
22474
- throw new Error('Delete is not allowed for Employee Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.');
22475
- }
22476
- /**
22477
22295
  * * Field Name: ID
22478
22296
  * * SQL Data Type: uniqueidentifier
22479
22297
  * * Default Value: newsequentialid()
@@ -24804,17 +24622,6 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
24804
24622
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
24805
24623
  }
24806
24624
  /**
24807
- * 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.
24808
- * @public
24809
- * @method
24810
- * @override
24811
- * @memberof EntityDocumentRunEntity
24812
- * @throws {Error} - Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.
24813
- */
24814
- async Delete() {
24815
- throw new Error('Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.');
24816
- }
24817
- /**
24818
24625
  * * Field Name: ID
24819
24626
  * * Display Name: ID
24820
24627
  * * SQL Data Type: uniqueidentifier
@@ -25136,17 +24943,6 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
25136
24943
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
25137
24944
  }
25138
24945
  /**
25139
- * 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.
25140
- * @public
25141
- * @method
25142
- * @override
25143
- * @memberof EntityDocumentEntity
25144
- * @throws {Error} - Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.
25145
- */
25146
- async Delete() {
25147
- throw new Error('Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.');
25148
- }
25149
- /**
25150
24946
  * Validate() method override for Entity Documents entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
25151
24947
  * * Table-Level: This rule ensures that the potential match threshold is not greater than the absolute match threshold, and both thresholds must be between 0 and 1 inclusive.
25152
24948
  * @public
@@ -25391,17 +25187,6 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
25391
25187
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
25392
25188
  }
25393
25189
  /**
25394
- * Entity Field Values - 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.
25395
- * @public
25396
- * @method
25397
- * @override
25398
- * @memberof EntityFieldValueEntity
25399
- * @throws {Error} - Delete is not allowed for Entity Field Values, to enable it set AllowDeleteAPI to 1 in the database.
25400
- */
25401
- async Delete() {
25402
- throw new Error('Delete is not allowed for Entity Field Values, to enable it set AllowDeleteAPI to 1 in the database.');
25403
- }
25404
- /**
25405
25190
  * * Field Name: ID
25406
25191
  * * Display Name: ID
25407
25192
  * * SQL Data Type: uniqueidentifier
@@ -26462,17 +26247,6 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
26462
26247
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
26463
26248
  }
26464
26249
  /**
26465
- * 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.
26466
- * @public
26467
- * @method
26468
- * @override
26469
- * @memberof EntityRecordDocumentEntity
26470
- * @throws {Error} - Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.
26471
- */
26472
- async Delete() {
26473
- throw new Error('Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.');
26474
- }
26475
- /**
26476
26250
  * * Field Name: ID
26477
26251
  * * Display Name: ID
26478
26252
  * * SQL Data Type: uniqueidentifier
@@ -26651,17 +26425,6 @@ let EntityRelationshipDisplayComponentEntity = class EntityRelationshipDisplayCo
26651
26425
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
26652
26426
  }
26653
26427
  /**
26654
- * Entity Relationship Display Components - 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.
26655
- * @public
26656
- * @method
26657
- * @override
26658
- * @memberof EntityRelationshipDisplayComponentEntity
26659
- * @throws {Error} - Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.
26660
- */
26661
- async Delete() {
26662
- throw new Error('Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.');
26663
- }
26664
- /**
26665
26428
  * * Field Name: ID
26666
26429
  * * Display Name: ID
26667
26430
  * * SQL Data Type: uniqueidentifier
@@ -27267,17 +27030,6 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
27267
27030
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
27268
27031
  }
27269
27032
  /**
27270
- * 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.
27271
- * @public
27272
- * @method
27273
- * @override
27274
- * @memberof ErrorLogEntity
27275
- * @throws {Error} - Delete is not allowed for Error Logs, to enable it set AllowDeleteAPI to 1 in the database.
27276
- */
27277
- async Delete() {
27278
- throw new Error('Delete is not allowed for Error Logs, to enable it set AllowDeleteAPI to 1 in the database.');
27279
- }
27280
- /**
27281
27033
  * * Field Name: ID
27282
27034
  * * SQL Data Type: uniqueidentifier
27283
27035
  * * Default Value: newsequentialid()
@@ -28030,7 +27782,7 @@ let FileEntity = class FileEntity extends core_1.BaseEntity {
28030
27782
  /**
28031
27783
  * * Field Name: ContentType
28032
27784
  * * Display Name: Content Type
28033
- * * SQL Data Type: nvarchar(50)
27785
+ * * SQL Data Type: nvarchar(255)
28034
27786
  */
28035
27787
  get ContentType() {
28036
27788
  return this.Get('ContentType');
@@ -34035,28 +33787,6 @@ let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.Bas
34035
33787
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
34036
33788
  }
34037
33789
  /**
34038
- * 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.
34039
- * @public
34040
- * @method
34041
- * @override
34042
- * @memberof OutputDeliveryTypeEntity
34043
- * @throws {Error} - Save is not allowed for Output Delivery Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
34044
- */
34045
- async Save(options) {
34046
- throw new Error('Save is not allowed for Output Delivery Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
34047
- }
34048
- /**
34049
- * Output Delivery 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.
34050
- * @public
34051
- * @method
34052
- * @override
34053
- * @memberof OutputDeliveryTypeEntity
34054
- * @throws {Error} - Delete is not allowed for Output Delivery Types, to enable it set AllowDeleteAPI to 1 in the database.
34055
- */
34056
- async Delete() {
34057
- throw new Error('Delete is not allowed for Output Delivery Types, to enable it set AllowDeleteAPI to 1 in the database.');
34058
- }
34059
- /**
34060
33790
  * * Field Name: ID
34061
33791
  * * Display Name: ID
34062
33792
  * * SQL Data Type: uniqueidentifier
@@ -34141,28 +33871,6 @@ let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEnt
34141
33871
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
34142
33872
  }
34143
33873
  /**
34144
- * 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.
34145
- * @public
34146
- * @method
34147
- * @override
34148
- * @memberof OutputFormatTypeEntity
34149
- * @throws {Error} - Save is not allowed for Output Format Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
34150
- */
34151
- async Save(options) {
34152
- throw new Error('Save is not allowed for Output Format Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
34153
- }
34154
- /**
34155
- * Output Format 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.
34156
- * @public
34157
- * @method
34158
- * @override
34159
- * @memberof OutputFormatTypeEntity
34160
- * @throws {Error} - Delete is not allowed for Output Format Types, to enable it set AllowDeleteAPI to 1 in the database.
34161
- */
34162
- async Delete() {
34163
- throw new Error('Delete is not allowed for Output Format Types, to enable it set AllowDeleteAPI to 1 in the database.');
34164
- }
34165
- /**
34166
33874
  * * Field Name: ID
34167
33875
  * * Display Name: ID
34168
33876
  * * SQL Data Type: uniqueidentifier
@@ -34258,28 +33966,6 @@ let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseE
34258
33966
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
34259
33967
  }
34260
33968
  /**
34261
- * 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.
34262
- * @public
34263
- * @method
34264
- * @override
34265
- * @memberof OutputTriggerTypeEntity
34266
- * @throws {Error} - Save is not allowed for Output Trigger Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
34267
- */
34268
- async Save(options) {
34269
- throw new Error('Save is not allowed for Output Trigger Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
34270
- }
34271
- /**
34272
- * Output Trigger 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.
34273
- * @public
34274
- * @method
34275
- * @override
34276
- * @memberof OutputTriggerTypeEntity
34277
- * @throws {Error} - Delete is not allowed for Output Trigger Types, to enable it set AllowDeleteAPI to 1 in the database.
34278
- */
34279
- async Delete() {
34280
- throw new Error('Delete is not allowed for Output Trigger Types, to enable it set AllowDeleteAPI to 1 in the database.');
34281
- }
34282
- /**
34283
33969
  * * Field Name: ID
34284
33970
  * * Display Name: ID
34285
33971
  * * SQL Data Type: uniqueidentifier
@@ -35115,17 +34801,6 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
35115
34801
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
35116
34802
  }
35117
34803
  /**
35118
- * 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.
35119
- * @public
35120
- * @method
35121
- * @override
35122
- * @memberof QueueTaskEntity
35123
- * @throws {Error} - Delete is not allowed for Queue Tasks, to enable it set AllowDeleteAPI to 1 in the database.
35124
- */
35125
- async Delete() {
35126
- throw new Error('Delete is not allowed for Queue Tasks, to enable it set AllowDeleteAPI to 1 in the database.');
35127
- }
35128
- /**
35129
34804
  * * Field Name: ID
35130
34805
  * * Display Name: ID
35131
34806
  * * SQL Data Type: uniqueidentifier
@@ -35302,17 +34977,6 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
35302
34977
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
35303
34978
  }
35304
34979
  /**
35305
- * 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.
35306
- * @public
35307
- * @method
35308
- * @override
35309
- * @memberof QueueTypeEntity
35310
- * @throws {Error} - Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
35311
- */
35312
- async Save(options) {
35313
- throw new Error('Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
35314
- }
35315
- /**
35316
34980
  * * Field Name: ID
35317
34981
  * * Display Name: ID
35318
34982
  * * SQL Data Type: uniqueidentifier
@@ -35432,17 +35096,6 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
35432
35096
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
35433
35097
  }
35434
35098
  /**
35435
- * 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.
35436
- * @public
35437
- * @method
35438
- * @override
35439
- * @memberof QueueEntity
35440
- * @throws {Error} - Delete is not allowed for Queues, to enable it set AllowDeleteAPI to 1 in the database.
35441
- */
35442
- async Delete() {
35443
- throw new Error('Delete is not allowed for Queues, to enable it set AllowDeleteAPI to 1 in the database.');
35444
- }
35445
- /**
35446
35099
  * * Field Name: ID
35447
35100
  * * Display Name: ID
35448
35101
  * * SQL Data Type: uniqueidentifier
@@ -35693,17 +35346,6 @@ let RecommendationItemEntity = class RecommendationItemEntity extends core_1.Bas
35693
35346
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
35694
35347
  }
35695
35348
  /**
35696
- * Recommendation 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.
35697
- * @public
35698
- * @method
35699
- * @override
35700
- * @memberof RecommendationItemEntity
35701
- * @throws {Error} - Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.
35702
- */
35703
- async Delete() {
35704
- throw new Error('Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.');
35705
- }
35706
- /**
35707
35349
  * Validate() method override for Recommendation Items entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
35708
35350
  * * MatchProbability: This rule ensures that the match probability value is between 0 and 1, inclusive.
35709
35351
  * @public
@@ -35931,17 +35573,6 @@ let RecommendationRunEntity = class RecommendationRunEntity extends core_1.BaseE
35931
35573
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
35932
35574
  }
35933
35575
  /**
35934
- * Recommendation 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.
35935
- * @public
35936
- * @method
35937
- * @override
35938
- * @memberof RecommendationRunEntity
35939
- * @throws {Error} - Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.
35940
- */
35941
- async Delete() {
35942
- throw new Error('Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.');
35943
- }
35944
- /**
35945
35576
  * * Field Name: ID
35946
35577
  * * Display Name: ID
35947
35578
  * * SQL Data Type: uniqueidentifier
@@ -36099,17 +35730,6 @@ let RecommendationEntity = class RecommendationEntity extends core_1.BaseEntity
36099
35730
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
36100
35731
  }
36101
35732
  /**
36102
- * Recommendations - 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.
36103
- * @public
36104
- * @method
36105
- * @override
36106
- * @memberof RecommendationEntity
36107
- * @throws {Error} - Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.
36108
- */
36109
- async Delete() {
36110
- throw new Error('Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.');
36111
- }
36112
- /**
36113
35733
  * * Field Name: ID
36114
35734
  * * Display Name: ID
36115
35735
  * * SQL Data Type: uniqueidentifier
@@ -36217,17 +35837,6 @@ let RecordChangeReplayRunEntity = class RecordChangeReplayRunEntity extends core
36217
35837
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
36218
35838
  }
36219
35839
  /**
36220
- * Record Change Replay 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.
36221
- * @public
36222
- * @method
36223
- * @override
36224
- * @memberof RecordChangeReplayRunEntity
36225
- * @throws {Error} - Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.
36226
- */
36227
- async Delete() {
36228
- throw new Error('Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.');
36229
- }
36230
- /**
36231
35840
  * * Field Name: ID
36232
35841
  * * Display Name: ID
36233
35842
  * * SQL Data Type: uniqueidentifier
@@ -36353,17 +35962,6 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
36353
35962
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
36354
35963
  }
36355
35964
  /**
36356
- * 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.
36357
- * @public
36358
- * @method
36359
- * @override
36360
- * @memberof RecordChangeEntity
36361
- * @throws {Error} - Delete is not allowed for Record Changes, to enable it set AllowDeleteAPI to 1 in the database.
36362
- */
36363
- async Delete() {
36364
- throw new Error('Delete is not allowed for Record Changes, to enable it set AllowDeleteAPI to 1 in the database.');
36365
- }
36366
- /**
36367
35965
  * * Field Name: ID
36368
35966
  * * SQL Data Type: uniqueidentifier
36369
35967
  * * Default Value: newsequentialid()
@@ -36630,17 +36228,6 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
36630
36228
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
36631
36229
  }
36632
36230
  /**
36633
- * 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.
36634
- * @public
36635
- * @method
36636
- * @override
36637
- * @memberof RecordMergeDeletionLogEntity
36638
- * @throws {Error} - Delete is not allowed for Record Merge Deletion Logs, to enable it set AllowDeleteAPI to 1 in the database.
36639
- */
36640
- async Delete() {
36641
- throw new Error('Delete is not allowed for Record Merge Deletion Logs, to enable it set AllowDeleteAPI to 1 in the database.');
36642
- }
36643
- /**
36644
36231
  * * Field Name: ID
36645
36232
  * * Display Name: ID
36646
36233
  * * SQL Data Type: uniqueidentifier
@@ -36754,17 +36341,6 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
36754
36341
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
36755
36342
  }
36756
36343
  /**
36757
- * 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.
36758
- * @public
36759
- * @method
36760
- * @override
36761
- * @memberof RecordMergeLogEntity
36762
- * @throws {Error} - Delete is not allowed for Record Merge Logs, to enable it set AllowDeleteAPI to 1 in the database.
36763
- */
36764
- async Delete() {
36765
- throw new Error('Delete is not allowed for Record Merge Logs, to enable it set AllowDeleteAPI to 1 in the database.');
36766
- }
36767
- /**
36768
36344
  * * Field Name: ID
36769
36345
  * * Display Name: ID
36770
36346
  * * SQL Data Type: uniqueidentifier
@@ -37900,28 +37476,6 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
37900
37476
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
37901
37477
  }
37902
37478
  /**
37903
- * 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.
37904
- * @public
37905
- * @method
37906
- * @override
37907
- * @memberof ResourceTypeEntity
37908
- * @throws {Error} - Save is not allowed for Resource Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
37909
- */
37910
- async Save(options) {
37911
- throw new Error('Save is not allowed for Resource Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
37912
- }
37913
- /**
37914
- * Resource 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.
37915
- * @public
37916
- * @method
37917
- * @override
37918
- * @memberof ResourceTypeEntity
37919
- * @throws {Error} - Delete is not allowed for Resource Types, to enable it set AllowDeleteAPI to 1 in the database.
37920
- */
37921
- async Delete() {
37922
- throw new Error('Delete is not allowed for Resource Types, to enable it set AllowDeleteAPI to 1 in the database.');
37923
- }
37924
- /**
37925
37479
  * * Field Name: ID
37926
37480
  * * Display Name: ID
37927
37481
  * * SQL Data Type: uniqueidentifier
@@ -38175,17 +37729,6 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
38175
37729
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
38176
37730
  }
38177
37731
  /**
38178
- * 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.
38179
- * @public
38180
- * @method
38181
- * @override
38182
- * @memberof RowLevelSecurityFilterEntity
38183
- * @throws {Error} - Save is not allowed for Row Level Security Filters, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
38184
- */
38185
- async Save(options) {
38186
- throw new Error('Save is not allowed for Row Level Security Filters, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
38187
- }
38188
- /**
38189
37732
  * * Field Name: ID
38190
37733
  * * Display Name: ID
38191
37734
  * * SQL Data Type: uniqueidentifier
@@ -38667,17 +38210,6 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
38667
38210
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
38668
38211
  }
38669
38212
  /**
38670
- * 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.
38671
- * @public
38672
- * @method
38673
- * @override
38674
- * @memberof SchemaInfoEntity
38675
- * @throws {Error} - Delete is not allowed for Schema Info, to enable it set AllowDeleteAPI to 1 in the database.
38676
- */
38677
- async Delete() {
38678
- throw new Error('Delete is not allowed for Schema Info, to enable it set AllowDeleteAPI to 1 in the database.');
38679
- }
38680
- /**
38681
38213
  * Validate() method override for Schema Info entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
38682
38214
  * * Table-Level: This rule ensures that both the minimum and maximum entity IDs must be greater than zero.
38683
38215
  * * Table-Level: This rule ensures that the maximum entity ID must be greater than the minimum entity ID, which helps to maintain valid and logical ranges for entity IDs.
@@ -38824,17 +38356,6 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
38824
38356
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
38825
38357
  }
38826
38358
  /**
38827
- * 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.
38828
- * @public
38829
- * @method
38830
- * @override
38831
- * @memberof SkillEntity
38832
- * @throws {Error} - Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
38833
- */
38834
- async Save(options) {
38835
- throw new Error('Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
38836
- }
38837
- /**
38838
38359
  * * Field Name: ID
38839
38360
  * * SQL Data Type: uniqueidentifier
38840
38361
  * * Default Value: newsequentialid()
@@ -38927,17 +38448,6 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
38927
38448
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
38928
38449
  }
38929
38450
  /**
38930
- * 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.
38931
- * @public
38932
- * @method
38933
- * @override
38934
- * @memberof TaggedItemEntity
38935
- * @throws {Error} - Save is not allowed for Tagged Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
38936
- */
38937
- async Save(options) {
38938
- throw new Error('Save is not allowed for Tagged Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
38939
- }
38940
- /**
38941
38451
  * * Field Name: ID
38942
38452
  * * Display Name: ID
38943
38453
  * * SQL Data Type: uniqueidentifier
@@ -39052,17 +38562,6 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
39052
38562
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
39053
38563
  }
39054
38564
  /**
39055
- * 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.
39056
- * @public
39057
- * @method
39058
- * @override
39059
- * @memberof TagEntity
39060
- * @throws {Error} - Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
39061
- */
39062
- async Save(options) {
39063
- throw new Error('Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
39064
- }
39065
- /**
39066
38565
  * * Field Name: ID
39067
38566
  * * Display Name: ID
39068
38567
  * * SQL Data Type: uniqueidentifier
@@ -40508,17 +40007,6 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
40508
40007
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
40509
40008
  }
40510
40009
  /**
40511
- * 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.
40512
- * @public
40513
- * @method
40514
- * @override
40515
- * @memberof UserRecordLogEntity
40516
- * @throws {Error} - Delete is not allowed for User Record Logs, to enable it set AllowDeleteAPI to 1 in the database.
40517
- */
40518
- async Delete() {
40519
- throw new Error('Delete is not allowed for User Record Logs, to enable it set AllowDeleteAPI to 1 in the database.');
40520
- }
40521
- /**
40522
40010
  * * Field Name: ID
40523
40011
  * * SQL Data Type: uniqueidentifier
40524
40012
  * * Default Value: newsequentialid()
@@ -40946,17 +40434,6 @@ let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseE
40946
40434
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
40947
40435
  }
40948
40436
  /**
40949
- * 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.
40950
- * @public
40951
- * @method
40952
- * @override
40953
- * @memberof UserViewRunDetailEntity
40954
- * @throws {Error} - Delete is not allowed for User View Run Details, to enable it set AllowDeleteAPI to 1 in the database.
40955
- */
40956
- async Delete() {
40957
- throw new Error('Delete is not allowed for User View Run Details, to enable it set AllowDeleteAPI to 1 in the database.');
40958
- }
40959
- /**
40960
40437
  * * Field Name: ID
40961
40438
  * * SQL Data Type: uniqueidentifier
40962
40439
  * * Default Value: newsequentialid()
@@ -41058,17 +40535,6 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
41058
40535
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
41059
40536
  }
41060
40537
  /**
41061
- * 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.
41062
- * @public
41063
- * @method
41064
- * @override
41065
- * @memberof UserViewRunEntity
41066
- * @throws {Error} - Delete is not allowed for User View Runs, to enable it set AllowDeleteAPI to 1 in the database.
41067
- */
41068
- async Delete() {
41069
- throw new Error('Delete is not allowed for User View Runs, to enable it set AllowDeleteAPI to 1 in the database.');
41070
- }
41071
- /**
41072
40538
  * * Field Name: ID
41073
40539
  * * SQL Data Type: uniqueidentifier
41074
40540
  * * Default Value: newsequentialid()
@@ -41962,17 +41428,6 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
41962
41428
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
41963
41429
  }
41964
41430
  /**
41965
- * 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.
41966
- * @public
41967
- * @method
41968
- * @override
41969
- * @memberof VersionInstallationEntity
41970
- * @throws {Error} - Delete is not allowed for Version Installations, to enable it set AllowDeleteAPI to 1 in the database.
41971
- */
41972
- async Delete() {
41973
- throw new Error('Delete is not allowed for Version Installations, to enable it set AllowDeleteAPI to 1 in the database.');
41974
- }
41975
- /**
41976
41431
  * * Field Name: ID
41977
41432
  * * Display Name: ID
41978
41433
  * * SQL Data Type: uniqueidentifier
@@ -42250,17 +41705,6 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
42250
41705
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
42251
41706
  }
42252
41707
  /**
42253
- * 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.
42254
- * @public
42255
- * @method
42256
- * @override
42257
- * @memberof WorkflowRunEntity
42258
- * @throws {Error} - Delete is not allowed for Workflow Runs, to enable it set AllowDeleteAPI to 1 in the database.
42259
- */
42260
- async Delete() {
42261
- throw new Error('Delete is not allowed for Workflow Runs, to enable it set AllowDeleteAPI to 1 in the database.');
42262
- }
42263
- /**
42264
41708
  * * Field Name: ID
42265
41709
  * * SQL Data Type: uniqueidentifier
42266
41710
  * * Default Value: newsequentialid()
@@ -42410,17 +41854,6 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
42410
41854
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
42411
41855
  }
42412
41856
  /**
42413
- * 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.
42414
- * @public
42415
- * @method
42416
- * @override
42417
- * @memberof WorkflowEntity
42418
- * @throws {Error} - Delete is not allowed for Workflows, to enable it set AllowDeleteAPI to 1 in the database.
42419
- */
42420
- async Delete() {
42421
- throw new Error('Delete is not allowed for Workflows, to enable it set AllowDeleteAPI to 1 in the database.');
42422
- }
42423
- /**
42424
41857
  * * Field Name: ID
42425
41858
  * * SQL Data Type: uniqueidentifier
42426
41859
  * * Default Value: newsequentialid()