@memberjunction/core-entities 2.20.2 → 2.20.3

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.
@@ -861,8 +861,7 @@ exports.AIAgentNoteSchema = zod_1.z.object({
861
861
  User: zod_1.z.string().nullish().describe(`
862
862
  * * Field Name: User
863
863
  * * Display Name: User
864
- * * SQL Data Type: nvarchar(100)
865
- * * Default Value: null`),
864
+ * * SQL Data Type: nvarchar(100)`),
866
865
  });
867
866
  /**
868
867
  * zod schema definition for the entity AI Agent Requests
@@ -945,13 +944,11 @@ exports.AIAgentRequestSchema = zod_1.z.object({
945
944
  RequestForUser: zod_1.z.string().nullish().describe(`
946
945
  * * Field Name: RequestForUser
947
946
  * * Display Name: Request For User
948
- * * SQL Data Type: nvarchar(100)
949
- * * Default Value: null`),
947
+ * * SQL Data Type: nvarchar(100)`),
950
948
  ResponseByUser: zod_1.z.string().nullish().describe(`
951
949
  * * Field Name: ResponseByUser
952
950
  * * Display Name: Response By User
953
- * * SQL Data Type: nvarchar(100)
954
- * * Default Value: null`),
951
+ * * SQL Data Type: nvarchar(100)`),
955
952
  });
956
953
  /**
957
954
  * zod schema definition for the entity AI Agents
@@ -1141,6 +1138,12 @@ exports.AIModelSchema = zod_1.z.object({
1141
1138
  * * Display Name: Input Token Limit
1142
1139
  * * SQL Data Type: int
1143
1140
  * * Description: Stores the maximum number of tokens that fit in the context window for the model.`),
1141
+ SupportedResponseFormats: zod_1.z.string().describe(`
1142
+ * * Field Name: SupportedResponseFormats
1143
+ * * Display Name: Supported Response Formats
1144
+ * * SQL Data Type: nvarchar(100)
1145
+ * * Default Value: Any
1146
+ * * Description: A comma-delimited string indicating the supported response formats for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.`),
1144
1147
  AIModelType: zod_1.z.string().describe(`
1145
1148
  * * Field Name: AIModelType
1146
1149
  * * Display Name: AIModel Type
@@ -1278,6 +1281,24 @@ exports.AIPromptSchema = zod_1.z.object({
1278
1281
  * * Display Name: Updated At
1279
1282
  * * SQL Data Type: datetimeoffset
1280
1283
  * * Default Value: getutcdate()`),
1284
+ ResponseFormat: zod_1.z.union([zod_1.z.literal('Any'), zod_1.z.literal('Text'), zod_1.z.literal('Markdown'), zod_1.z.literal('JSON'), zod_1.z.literal('ModelSpecific')]).describe(`
1285
+ * * Field Name: ResponseFormat
1286
+ * * Display Name: Response Format
1287
+ * * SQL Data Type: nvarchar(20)
1288
+ * * Default Value: Any
1289
+ * * Value List Type: List
1290
+ * * Possible Values
1291
+ * * Any
1292
+ * * Text
1293
+ * * Markdown
1294
+ * * JSON
1295
+ * * ModelSpecific
1296
+ * * Description: Specifies the expected response format for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.`),
1297
+ ModelSpecificResponseFormat: zod_1.z.string().nullish().describe(`
1298
+ * * Field Name: ModelSpecificResponseFormat
1299
+ * * Display Name: Model Specific Response Format
1300
+ * * SQL Data Type: nvarchar(MAX)
1301
+ * * Description: A JSON-formatted string containing model-specific response format instructions. This will be parsed and provided as a JSON object to the model.`),
1281
1302
  Template: zod_1.z.string().describe(`
1282
1303
  * * Field Name: Template
1283
1304
  * * Display Name: Template
@@ -3979,6 +4000,44 @@ exports.EntitySchema = zod_1.z.object({
3979
4000
  * * Display Name: __mj _Updated At
3980
4001
  * * SQL Data Type: datetimeoffset
3981
4002
  * * Default Value: getutcdate()`),
4003
+ ScopeDefault: zod_1.z.string().nullish().describe(`
4004
+ * * Field Name: ScopeDefault
4005
+ * * Display Name: Scope Default
4006
+ * * SQL Data Type: nvarchar(100)
4007
+ * * Description: Optional, comma-delimited string indicating the default scope for entity visibility. Options include Users, Admins, AI, and All. Defaults to All when NULL. This is used for simple defaults for filtering entity visibility, not security enforcement.`),
4008
+ RowsToPackWithSchema: zod_1.z.union([zod_1.z.literal('None'), zod_1.z.literal('Sample'), zod_1.z.literal('All')]).describe(`
4009
+ * * Field Name: RowsToPackWithSchema
4010
+ * * Display Name: Rows To Pack With Schema
4011
+ * * SQL Data Type: nvarchar(20)
4012
+ * * Default Value: None
4013
+ * * Value List Type: List
4014
+ * * Possible Values
4015
+ * * None
4016
+ * * Sample
4017
+ * * All
4018
+ * * Description: Determines how entity rows should be packaged for external use. Options include None, Sample, and All. Defaults to None.`),
4019
+ RowsToPackSampleMethod: zod_1.z.union([zod_1.z.literal('random'), zod_1.z.literal('top n'), zod_1.z.literal('bottom n')]).describe(`
4020
+ * * Field Name: RowsToPackSampleMethod
4021
+ * * Display Name: Rows To Pack Sample Method
4022
+ * * SQL Data Type: nvarchar(20)
4023
+ * * Default Value: random
4024
+ * * Value List Type: List
4025
+ * * Possible Values
4026
+ * * random
4027
+ * * top n
4028
+ * * bottom n
4029
+ * * Description: Defines the sampling method for row packing when RowsToPackWithSchema is set to Sample. Options include random, top n, and bottom n. Defaults to random.`),
4030
+ RowsToPackSampleCount: zod_1.z.number().describe(`
4031
+ * * Field Name: RowsToPackSampleCount
4032
+ * * Display Name: Rows To Pack Sample Count
4033
+ * * SQL Data Type: int
4034
+ * * Default Value: 0
4035
+ * * Description: The number of rows to pack when RowsToPackWithSchema is set to Sample, based on the designated sampling method. Defaults to 0.`),
4036
+ RowsToPackSampleOrder: zod_1.z.string().nullish().describe(`
4037
+ * * Field Name: RowsToPackSampleOrder
4038
+ * * Display Name: Rows To Pack Sample Order
4039
+ * * SQL Data Type: nvarchar(MAX)
4040
+ * * Description: An optional ORDER BY clause for row packing when RowsToPackWithSchema is set to Sample. Allows custom ordering for selected entity data when using top n and bottom n.`),
3982
4041
  CodeName: zod_1.z.string().nullish().describe(`
3983
4042
  * * Field Name: CodeName
3984
4043
  * * Display Name: Code Name
@@ -4616,7 +4675,7 @@ exports.EntityDocumentSchema = zod_1.z.object({
4616
4675
  * * SQL Data Type: nvarchar(255)`),
4617
4676
  AIModel: zod_1.z.string().describe(`
4618
4677
  * * Field Name: AIModel
4619
- * * Display Name: AIModel
4678
+ * * Display Name: AI Model
4620
4679
  * * SQL Data Type: nvarchar(50)`),
4621
4680
  });
4622
4681
  /**
@@ -4918,6 +4977,28 @@ exports.EntityFieldSchema = zod_1.z.object({
4918
4977
  * * Display Name: __mj _Updated At
4919
4978
  * * SQL Data Type: datetimeoffset
4920
4979
  * * Default Value: getutcdate()`),
4980
+ ScopeDefault: zod_1.z.string().nullish().describe(`
4981
+ * * Field Name: ScopeDefault
4982
+ * * Display Name: Scope Default
4983
+ * * SQL Data Type: nvarchar(100)
4984
+ * * Description: A comma-delimited string indicating the default scope for field visibility. Options include Users, Admins, AI, and All. Defaults to All when NULL. This is used for a simple method of filtering field defaults for visibility, not security enforcement.`),
4985
+ AutoUpdateRelatedEntityInfo: zod_1.z.boolean().describe(`
4986
+ * * Field Name: AutoUpdateRelatedEntityInfo
4987
+ * * Display Name: Auto Update Related Entity Info
4988
+ * * SQL Data Type: bit
4989
+ * * Default Value: 1
4990
+ * * Description: Indicates whether the related entity information should be automatically updated from the database schema. When set to 0, relationships not part of the database schema can be manually defined at the application and AI agent level. Defaults to 1.`),
4991
+ ValuesToPackWithSchema: zod_1.z.union([zod_1.z.literal('Auto'), zod_1.z.literal('None'), zod_1.z.literal('All')]).describe(`
4992
+ * * Field Name: ValuesToPackWithSchema
4993
+ * * Display Name: Values To Pack With Schema
4994
+ * * SQL Data Type: nvarchar(10)
4995
+ * * Default Value: Auto
4996
+ * * Value List Type: List
4997
+ * * Possible Values
4998
+ * * Auto
4999
+ * * None
5000
+ * * All
5001
+ * * Description: Determines whether values for the field should be included when the schema is packed. Options: Auto (include manually set or auto-derived values), None (exclude all values), All (include all distinct values from the table). Defaults to Auto.`),
4921
5002
  Entity: zod_1.z.string().describe(`
4922
5003
  * * Field Name: Entity
4923
5004
  * * SQL Data Type: nvarchar(255)`),
@@ -5291,6 +5372,12 @@ exports.EntityRelationshipSchema = zod_1.z.object({
5291
5372
  * * Display Name: __mj _Updated At
5292
5373
  * * SQL Data Type: datetimeoffset
5293
5374
  * * Default Value: getutcdate()`),
5375
+ AutoUpdateFromSchema: zod_1.z.boolean().describe(`
5376
+ * * Field Name: AutoUpdateFromSchema
5377
+ * * Display Name: Auto Update From Schema
5378
+ * * SQL Data Type: bit
5379
+ * * Default Value: 1
5380
+ * * Description: Indicates whether this relationship should be automatically updated by CodeGen. When set to 0, the record will not be modified by CodeGen. Defaults to 1.`),
5294
5381
  Entity: zod_1.z.string().describe(`
5295
5382
  * * Field Name: Entity
5296
5383
  * * SQL Data Type: nvarchar(255)`),
@@ -11391,7 +11478,6 @@ let AIAgentNoteEntity = class AIAgentNoteEntity extends core_1.BaseEntity {
11391
11478
  * * Field Name: User
11392
11479
  * * Display Name: User
11393
11480
  * * SQL Data Type: nvarchar(100)
11394
- * * Default Value: null
11395
11481
  */
11396
11482
  get User() {
11397
11483
  return this.Get('User');
@@ -11585,7 +11671,6 @@ let AIAgentRequestEntity = class AIAgentRequestEntity extends core_1.BaseEntity
11585
11671
  * * Field Name: RequestForUser
11586
11672
  * * Display Name: Request For User
11587
11673
  * * SQL Data Type: nvarchar(100)
11588
- * * Default Value: null
11589
11674
  */
11590
11675
  get RequestForUser() {
11591
11676
  return this.Get('RequestForUser');
@@ -11594,7 +11679,6 @@ let AIAgentRequestEntity = class AIAgentRequestEntity extends core_1.BaseEntity
11594
11679
  * * Field Name: ResponseByUser
11595
11680
  * * Display Name: Response By User
11596
11681
  * * SQL Data Type: nvarchar(100)
11597
- * * Default Value: null
11598
11682
  */
11599
11683
  get ResponseByUser() {
11600
11684
  return this.Get('ResponseByUser');
@@ -12104,6 +12188,19 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
12104
12188
  this.Set('InputTokenLimit', value);
12105
12189
  }
12106
12190
  /**
12191
+ * * Field Name: SupportedResponseFormats
12192
+ * * Display Name: Supported Response Formats
12193
+ * * SQL Data Type: nvarchar(100)
12194
+ * * Default Value: Any
12195
+ * * Description: A comma-delimited string indicating the supported response formats for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.
12196
+ */
12197
+ get SupportedResponseFormats() {
12198
+ return this.Get('SupportedResponseFormats');
12199
+ }
12200
+ set SupportedResponseFormats(value) {
12201
+ this.Set('SupportedResponseFormats', value);
12202
+ }
12203
+ /**
12107
12204
  * * Field Name: AIModelType
12108
12205
  * * Display Name: AIModel Type
12109
12206
  * * SQL Data Type: nvarchar(50)
@@ -12460,6 +12557,38 @@ let AIPromptEntity = class AIPromptEntity extends core_1.BaseEntity {
12460
12557
  return this.Get('__mj_UpdatedAt');
12461
12558
  }
12462
12559
  /**
12560
+ * * Field Name: ResponseFormat
12561
+ * * Display Name: Response Format
12562
+ * * SQL Data Type: nvarchar(20)
12563
+ * * Default Value: Any
12564
+ * * Value List Type: List
12565
+ * * Possible Values
12566
+ * * Any
12567
+ * * Text
12568
+ * * Markdown
12569
+ * * JSON
12570
+ * * ModelSpecific
12571
+ * * Description: Specifies the expected response format for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.
12572
+ */
12573
+ get ResponseFormat() {
12574
+ return this.Get('ResponseFormat');
12575
+ }
12576
+ set ResponseFormat(value) {
12577
+ this.Set('ResponseFormat', value);
12578
+ }
12579
+ /**
12580
+ * * Field Name: ModelSpecificResponseFormat
12581
+ * * Display Name: Model Specific Response Format
12582
+ * * SQL Data Type: nvarchar(MAX)
12583
+ * * Description: A JSON-formatted string containing model-specific response format instructions. This will be parsed and provided as a JSON object to the model.
12584
+ */
12585
+ get ModelSpecificResponseFormat() {
12586
+ return this.Get('ModelSpecificResponseFormat');
12587
+ }
12588
+ set ModelSpecificResponseFormat(value) {
12589
+ this.Set('ModelSpecificResponseFormat', value);
12590
+ }
12591
+ /**
12463
12592
  * * Field Name: Template
12464
12593
  * * Display Name: Template
12465
12594
  * * SQL Data Type: nvarchar(255)
@@ -13678,17 +13807,6 @@ let CommunicationBaseMessageTypeEntity = class CommunicationBaseMessageTypeEntit
13678
13807
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
13679
13808
  }
13680
13809
  /**
13681
- * Communication Base Message 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.
13682
- * @public
13683
- * @method
13684
- * @override
13685
- * @memberof CommunicationBaseMessageTypeEntity
13686
- * @throws {Error} - Delete is not allowed for Communication Base Message Types, to enable it set AllowDeleteAPI to 1 in the database.
13687
- */
13688
- async Delete() {
13689
- throw new Error('Delete is not allowed for Communication Base Message Types, to enable it set AllowDeleteAPI to 1 in the database.');
13690
- }
13691
- /**
13692
13810
  * * Field Name: ID
13693
13811
  * * Display Name: ID
13694
13812
  * * SQL Data Type: uniqueidentifier
@@ -14145,17 +14263,6 @@ let CommunicationProviderEntity = class CommunicationProviderEntity extends core
14145
14263
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
14146
14264
  }
14147
14265
  /**
14148
- * Communication 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.
14149
- * @public
14150
- * @method
14151
- * @override
14152
- * @memberof CommunicationProviderEntity
14153
- * @throws {Error} - Delete is not allowed for Communication Providers, to enable it set AllowDeleteAPI to 1 in the database.
14154
- */
14155
- async Delete() {
14156
- throw new Error('Delete is not allowed for Communication Providers, to enable it set AllowDeleteAPI to 1 in the database.');
14157
- }
14158
- /**
14159
14266
  * * Field Name: ID
14160
14267
  * * Display Name: ID
14161
14268
  * * SQL Data Type: uniqueidentifier
@@ -15208,17 +15315,6 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
15208
15315
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
15209
15316
  }
15210
15317
  /**
15211
- * 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.
15212
- * @public
15213
- * @method
15214
- * @override
15215
- * @memberof CompanyIntegrationEntity
15216
- * @throws {Error} - Delete is not allowed for Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.
15217
- */
15218
- async Delete() {
15219
- throw new Error('Delete is not allowed for Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.');
15220
- }
15221
- /**
15222
15318
  * * Field Name: ID
15223
15319
  * * SQL Data Type: uniqueidentifier
15224
15320
  * * Default Value: newsequentialid()
@@ -17679,17 +17775,6 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
17679
17775
  throw new Error('Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
17680
17776
  }
17681
17777
  /**
17682
- * Dataset 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.
17683
- * @public
17684
- * @method
17685
- * @override
17686
- * @memberof DatasetItemEntity
17687
- * @throws {Error} - Delete is not allowed for Dataset Items, to enable it set AllowDeleteAPI to 1 in the database.
17688
- */
17689
- async Delete() {
17690
- throw new Error('Delete is not allowed for Dataset Items, to enable it set AllowDeleteAPI to 1 in the database.');
17691
- }
17692
- /**
17693
17778
  * * Field Name: ID
17694
17779
  * * Display Name: ID
17695
17780
  * * SQL Data Type: uniqueidentifier
@@ -17869,17 +17954,6 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
17869
17954
  throw new Error('Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
17870
17955
  }
17871
17956
  /**
17872
- * Datasets - 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.
17873
- * @public
17874
- * @method
17875
- * @override
17876
- * @memberof DatasetEntity
17877
- * @throws {Error} - Delete is not allowed for Datasets, to enable it set AllowDeleteAPI to 1 in the database.
17878
- */
17879
- async Delete() {
17880
- throw new Error('Delete is not allowed for Datasets, to enable it set AllowDeleteAPI to 1 in the database.');
17881
- }
17882
- /**
17883
17957
  * * Field Name: ID
17884
17958
  * * Display Name: ID
17885
17959
  * * SQL Data Type: uniqueidentifier
@@ -18676,17 +18750,6 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
18676
18750
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
18677
18751
  }
18678
18752
  /**
18679
- * 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.
18680
- * @public
18681
- * @method
18682
- * @override
18683
- * @memberof EmployeeRoleEntity
18684
- * @throws {Error} - Delete is not allowed for Employee Roles, to enable it set AllowDeleteAPI to 1 in the database.
18685
- */
18686
- async Delete() {
18687
- throw new Error('Delete is not allowed for Employee Roles, to enable it set AllowDeleteAPI to 1 in the database.');
18688
- }
18689
- /**
18690
18753
  * * Field Name: ID
18691
18754
  * * Display Name: ID
18692
18755
  * * SQL Data Type: uniqueidentifier
@@ -18778,17 +18841,6 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
18778
18841
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
18779
18842
  }
18780
18843
  /**
18781
- * 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.
18782
- * @public
18783
- * @method
18784
- * @override
18785
- * @memberof EmployeeSkillEntity
18786
- * @throws {Error} - Delete is not allowed for Employee Skills, to enable it set AllowDeleteAPI to 1 in the database.
18787
- */
18788
- async Delete() {
18789
- throw new Error('Delete is not allowed for Employee Skills, to enable it set AllowDeleteAPI to 1 in the database.');
18790
- }
18791
- /**
18792
18844
  * * Field Name: ID
18793
18845
  * * Display Name: ID
18794
18846
  * * SQL Data Type: uniqueidentifier
@@ -19633,6 +19685,79 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
19633
19685
  return this.Get('__mj_UpdatedAt');
19634
19686
  }
19635
19687
  /**
19688
+ * * Field Name: ScopeDefault
19689
+ * * Display Name: Scope Default
19690
+ * * SQL Data Type: nvarchar(100)
19691
+ * * Description: Optional, comma-delimited string indicating the default scope for entity visibility. Options include Users, Admins, AI, and All. Defaults to All when NULL. This is used for simple defaults for filtering entity visibility, not security enforcement.
19692
+ */
19693
+ get ScopeDefault() {
19694
+ return this.Get('ScopeDefault');
19695
+ }
19696
+ set ScopeDefault(value) {
19697
+ this.Set('ScopeDefault', value);
19698
+ }
19699
+ /**
19700
+ * * Field Name: RowsToPackWithSchema
19701
+ * * Display Name: Rows To Pack With Schema
19702
+ * * SQL Data Type: nvarchar(20)
19703
+ * * Default Value: None
19704
+ * * Value List Type: List
19705
+ * * Possible Values
19706
+ * * None
19707
+ * * Sample
19708
+ * * All
19709
+ * * Description: Determines how entity rows should be packaged for external use. Options include None, Sample, and All. Defaults to None.
19710
+ */
19711
+ get RowsToPackWithSchema() {
19712
+ return this.Get('RowsToPackWithSchema');
19713
+ }
19714
+ set RowsToPackWithSchema(value) {
19715
+ this.Set('RowsToPackWithSchema', value);
19716
+ }
19717
+ /**
19718
+ * * Field Name: RowsToPackSampleMethod
19719
+ * * Display Name: Rows To Pack Sample Method
19720
+ * * SQL Data Type: nvarchar(20)
19721
+ * * Default Value: random
19722
+ * * Value List Type: List
19723
+ * * Possible Values
19724
+ * * random
19725
+ * * top n
19726
+ * * bottom n
19727
+ * * Description: Defines the sampling method for row packing when RowsToPackWithSchema is set to Sample. Options include random, top n, and bottom n. Defaults to random.
19728
+ */
19729
+ get RowsToPackSampleMethod() {
19730
+ return this.Get('RowsToPackSampleMethod');
19731
+ }
19732
+ set RowsToPackSampleMethod(value) {
19733
+ this.Set('RowsToPackSampleMethod', value);
19734
+ }
19735
+ /**
19736
+ * * Field Name: RowsToPackSampleCount
19737
+ * * Display Name: Rows To Pack Sample Count
19738
+ * * SQL Data Type: int
19739
+ * * Default Value: 0
19740
+ * * Description: The number of rows to pack when RowsToPackWithSchema is set to Sample, based on the designated sampling method. Defaults to 0.
19741
+ */
19742
+ get RowsToPackSampleCount() {
19743
+ return this.Get('RowsToPackSampleCount');
19744
+ }
19745
+ set RowsToPackSampleCount(value) {
19746
+ this.Set('RowsToPackSampleCount', value);
19747
+ }
19748
+ /**
19749
+ * * Field Name: RowsToPackSampleOrder
19750
+ * * Display Name: Rows To Pack Sample Order
19751
+ * * SQL Data Type: nvarchar(MAX)
19752
+ * * Description: An optional ORDER BY clause for row packing when RowsToPackWithSchema is set to Sample. Allows custom ordering for selected entity data when using top n and bottom n.
19753
+ */
19754
+ get RowsToPackSampleOrder() {
19755
+ return this.Get('RowsToPackSampleOrder');
19756
+ }
19757
+ set RowsToPackSampleOrder(value) {
19758
+ this.Set('RowsToPackSampleOrder', value);
19759
+ }
19760
+ /**
19636
19761
  * * Field Name: CodeName
19637
19762
  * * Display Name: Code Name
19638
19763
  * * SQL Data Type: nvarchar(MAX)
@@ -20525,17 +20650,6 @@ let EntityCommunicationFieldEntity = class EntityCommunicationFieldEntity extend
20525
20650
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
20526
20651
  }
20527
20652
  /**
20528
- * Entity Communication 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.
20529
- * @public
20530
- * @method
20531
- * @override
20532
- * @memberof EntityCommunicationFieldEntity
20533
- * @throws {Error} - Delete is not allowed for Entity Communication Fields, to enable it set AllowDeleteAPI to 1 in the database.
20534
- */
20535
- async Delete() {
20536
- throw new Error('Delete is not allowed for Entity Communication Fields, to enable it set AllowDeleteAPI to 1 in the database.');
20537
- }
20538
- /**
20539
20653
  * * Field Name: ID
20540
20654
  * * Display Name: ID
20541
20655
  * * SQL Data Type: uniqueidentifier
@@ -20632,17 +20746,6 @@ let EntityCommunicationMessageTypeEntity = class EntityCommunicationMessageTypeE
20632
20746
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
20633
20747
  }
20634
20748
  /**
20635
- * Entity Communication Message 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.
20636
- * @public
20637
- * @method
20638
- * @override
20639
- * @memberof EntityCommunicationMessageTypeEntity
20640
- * @throws {Error} - Delete is not allowed for Entity Communication Message Types, to enable it set AllowDeleteAPI to 1 in the database.
20641
- */
20642
- async Delete() {
20643
- throw new Error('Delete is not allowed for Entity Communication Message Types, to enable it set AllowDeleteAPI to 1 in the database.');
20644
- }
20645
- /**
20646
20749
  * * Field Name: ID
20647
20750
  * * Display Name: ID
20648
20751
  * * SQL Data Type: uniqueidentifier
@@ -20885,17 +20988,6 @@ let EntityDocumentSettingEntity = class EntityDocumentSettingEntity extends core
20885
20988
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
20886
20989
  }
20887
20990
  /**
20888
- * 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.
20889
- * @public
20890
- * @method
20891
- * @override
20892
- * @memberof EntityDocumentSettingEntity
20893
- * @throws {Error} - Delete is not allowed for Entity Document Settings, to enable it set AllowDeleteAPI to 1 in the database.
20894
- */
20895
- async Delete() {
20896
- throw new Error('Delete is not allowed for Entity Document Settings, to enable it set AllowDeleteAPI to 1 in the database.');
20897
- }
20898
- /**
20899
20991
  * * Field Name: ID
20900
20992
  * * Display Name: ID
20901
20993
  * * SQL Data Type: uniqueidentifier
@@ -21008,17 +21100,6 @@ let EntityDocumentTypeEntity = class EntityDocumentTypeEntity extends core_1.Bas
21008
21100
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
21009
21101
  }
21010
21102
  /**
21011
- * 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.
21012
- * @public
21013
- * @method
21014
- * @override
21015
- * @memberof EntityDocumentTypeEntity
21016
- * @throws {Error} - Delete is not allowed for Entity Document Types, to enable it set AllowDeleteAPI to 1 in the database.
21017
- */
21018
- async Delete() {
21019
- throw new Error('Delete is not allowed for Entity Document Types, to enable it set AllowDeleteAPI to 1 in the database.');
21020
- }
21021
- /**
21022
21103
  * * Field Name: ID
21023
21104
  * * Display Name: ID
21024
21105
  * * SQL Data Type: uniqueidentifier
@@ -21284,7 +21365,7 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
21284
21365
  }
21285
21366
  /**
21286
21367
  * * Field Name: AIModel
21287
- * * Display Name: AIModel
21368
+ * * Display Name: AI Model
21288
21369
  * * SQL Data Type: nvarchar(50)
21289
21370
  */
21290
21371
  get AIModel() {
@@ -21954,6 +22035,49 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
21954
22035
  return this.Get('__mj_UpdatedAt');
21955
22036
  }
21956
22037
  /**
22038
+ * * Field Name: ScopeDefault
22039
+ * * Display Name: Scope Default
22040
+ * * SQL Data Type: nvarchar(100)
22041
+ * * Description: A comma-delimited string indicating the default scope for field visibility. Options include Users, Admins, AI, and All. Defaults to All when NULL. This is used for a simple method of filtering field defaults for visibility, not security enforcement.
22042
+ */
22043
+ get ScopeDefault() {
22044
+ return this.Get('ScopeDefault');
22045
+ }
22046
+ set ScopeDefault(value) {
22047
+ this.Set('ScopeDefault', value);
22048
+ }
22049
+ /**
22050
+ * * Field Name: AutoUpdateRelatedEntityInfo
22051
+ * * Display Name: Auto Update Related Entity Info
22052
+ * * SQL Data Type: bit
22053
+ * * Default Value: 1
22054
+ * * Description: Indicates whether the related entity information should be automatically updated from the database schema. When set to 0, relationships not part of the database schema can be manually defined at the application and AI agent level. Defaults to 1.
22055
+ */
22056
+ get AutoUpdateRelatedEntityInfo() {
22057
+ return this.Get('AutoUpdateRelatedEntityInfo');
22058
+ }
22059
+ set AutoUpdateRelatedEntityInfo(value) {
22060
+ this.Set('AutoUpdateRelatedEntityInfo', value);
22061
+ }
22062
+ /**
22063
+ * * Field Name: ValuesToPackWithSchema
22064
+ * * Display Name: Values To Pack With Schema
22065
+ * * SQL Data Type: nvarchar(10)
22066
+ * * Default Value: Auto
22067
+ * * Value List Type: List
22068
+ * * Possible Values
22069
+ * * Auto
22070
+ * * None
22071
+ * * All
22072
+ * * Description: Determines whether values for the field should be included when the schema is packed. Options: Auto (include manually set or auto-derived values), None (exclude all values), All (include all distinct values from the table). Defaults to Auto.
22073
+ */
22074
+ get ValuesToPackWithSchema() {
22075
+ return this.Get('ValuesToPackWithSchema');
22076
+ }
22077
+ set ValuesToPackWithSchema(value) {
22078
+ this.Set('ValuesToPackWithSchema', value);
22079
+ }
22080
+ /**
21957
22081
  * * Field Name: Entity
21958
22082
  * * SQL Data Type: nvarchar(255)
21959
22083
  */
@@ -22873,6 +22997,19 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
22873
22997
  return this.Get('__mj_UpdatedAt');
22874
22998
  }
22875
22999
  /**
23000
+ * * Field Name: AutoUpdateFromSchema
23001
+ * * Display Name: Auto Update From Schema
23002
+ * * SQL Data Type: bit
23003
+ * * Default Value: 1
23004
+ * * Description: Indicates whether this relationship should be automatically updated by CodeGen. When set to 0, the record will not be modified by CodeGen. Defaults to 1.
23005
+ */
23006
+ get AutoUpdateFromSchema() {
23007
+ return this.Get('AutoUpdateFromSchema');
23008
+ }
23009
+ set AutoUpdateFromSchema(value) {
23010
+ this.Set('AutoUpdateFromSchema', value);
23011
+ }
23012
+ /**
22876
23013
  * * Field Name: Entity
22877
23014
  * * SQL Data Type: nvarchar(255)
22878
23015
  */
@@ -22984,17 +23121,6 @@ let EntitySettingEntity = class EntitySettingEntity extends core_1.BaseEntity {
22984
23121
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
22985
23122
  }
22986
23123
  /**
22987
- * 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.
22988
- * @public
22989
- * @method
22990
- * @override
22991
- * @memberof EntitySettingEntity
22992
- * @throws {Error} - Delete is not allowed for Entity Settings, to enable it set AllowDeleteAPI to 1 in the database.
22993
- */
22994
- async Delete() {
22995
- throw new Error('Delete is not allowed for Entity Settings, to enable it set AllowDeleteAPI to 1 in the database.');
22996
- }
22997
- /**
22998
23124
  * * Field Name: ID
22999
23125
  * * Display Name: ID
23000
23126
  * * SQL Data Type: uniqueidentifier
@@ -23535,17 +23661,6 @@ let FileEntityRecordLinkEntity = class FileEntityRecordLinkEntity extends core_1
23535
23661
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
23536
23662
  }
23537
23663
  /**
23538
- * 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.
23539
- * @public
23540
- * @method
23541
- * @override
23542
- * @memberof FileEntityRecordLinkEntity
23543
- * @throws {Error} - Delete is not allowed for File Entity Record Links, to enable it set AllowDeleteAPI to 1 in the database.
23544
- */
23545
- async Delete() {
23546
- throw new Error('Delete is not allowed for File Entity Record Links, to enable it set AllowDeleteAPI to 1 in the database.');
23547
- }
23548
- /**
23549
23664
  * * Field Name: ID
23550
23665
  * * Display Name: ID
23551
23666
  * * SQL Data Type: uniqueidentifier
@@ -23656,17 +23771,6 @@ let FileStorageProviderEntity = class FileStorageProviderEntity extends core_1.B
23656
23771
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
23657
23772
  }
23658
23773
  /**
23659
- * 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.
23660
- * @public
23661
- * @method
23662
- * @override
23663
- * @memberof FileStorageProviderEntity
23664
- * @throws {Error} - Delete is not allowed for File Storage Providers, to enable it set AllowDeleteAPI to 1 in the database.
23665
- */
23666
- async Delete() {
23667
- throw new Error('Delete is not allowed for File Storage Providers, to enable it set AllowDeleteAPI to 1 in the database.');
23668
- }
23669
- /**
23670
23774
  * * Field Name: ID
23671
23775
  * * Display Name: ID
23672
23776
  * * SQL Data Type: uniqueidentifier
@@ -24109,17 +24213,6 @@ let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1
24109
24213
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
24110
24214
  }
24111
24215
  /**
24112
- * 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.
24113
- * @public
24114
- * @method
24115
- * @override
24116
- * @memberof IntegrationURLFormatEntity
24117
- * @throws {Error} - Delete is not allowed for Integration URL Formats, to enable it set AllowDeleteAPI to 1 in the database.
24118
- */
24119
- async Delete() {
24120
- throw new Error('Delete is not allowed for Integration URL Formats, to enable it set AllowDeleteAPI to 1 in the database.');
24121
- }
24122
- /**
24123
24216
  * * Field Name: ID
24124
24217
  * * SQL Data Type: uniqueidentifier
24125
24218
  * * Default Value: newsequentialid()
@@ -24249,17 +24342,6 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
24249
24342
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
24250
24343
  }
24251
24344
  /**
24252
- * 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.
24253
- * @public
24254
- * @method
24255
- * @override
24256
- * @memberof IntegrationEntity
24257
- * @throws {Error} - Delete is not allowed for Integrations, to enable it set AllowDeleteAPI to 1 in the database.
24258
- */
24259
- async Delete() {
24260
- throw new Error('Delete is not allowed for Integrations, to enable it set AllowDeleteAPI to 1 in the database.');
24261
- }
24262
- /**
24263
24345
  * * Field Name: Name
24264
24346
  * * SQL Data Type: nvarchar(100)
24265
24347
  */
@@ -24396,17 +24478,6 @@ let LibraryEntity = class LibraryEntity extends core_1.BaseEntity {
24396
24478
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
24397
24479
  }
24398
24480
  /**
24399
- * Libraries - 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.
24400
- * @public
24401
- * @method
24402
- * @override
24403
- * @memberof LibraryEntity
24404
- * @throws {Error} - Delete is not allowed for Libraries, to enable it set AllowDeleteAPI to 1 in the database.
24405
- */
24406
- async Delete() {
24407
- throw new Error('Delete is not allowed for Libraries, to enable it set AllowDeleteAPI to 1 in the database.');
24408
- }
24409
- /**
24410
24481
  * * Field Name: ID
24411
24482
  * * Display Name: ID
24412
24483
  * * SQL Data Type: uniqueidentifier
@@ -24531,17 +24602,6 @@ let LibraryItemEntity = class LibraryItemEntity extends core_1.BaseEntity {
24531
24602
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
24532
24603
  }
24533
24604
  /**
24534
- * Library 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.
24535
- * @public
24536
- * @method
24537
- * @override
24538
- * @memberof LibraryItemEntity
24539
- * @throws {Error} - Delete is not allowed for Library Items, to enable it set AllowDeleteAPI to 1 in the database.
24540
- */
24541
- async Delete() {
24542
- throw new Error('Delete is not allowed for Library Items, to enable it set AllowDeleteAPI to 1 in the database.');
24543
- }
24544
- /**
24545
24605
  * * Field Name: ID
24546
24606
  * * Display Name: ID
24547
24607
  * * SQL Data Type: uniqueidentifier
@@ -24652,17 +24712,6 @@ let ListCategoryEntity = class ListCategoryEntity extends core_1.BaseEntity {
24652
24712
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
24653
24713
  }
24654
24714
  /**
24655
- * List Categories - 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.
24656
- * @public
24657
- * @method
24658
- * @override
24659
- * @memberof ListCategoryEntity
24660
- * @throws {Error} - Delete is not allowed for List Categories, to enable it set AllowDeleteAPI to 1 in the database.
24661
- */
24662
- async Delete() {
24663
- throw new Error('Delete is not allowed for List Categories, to enable it set AllowDeleteAPI to 1 in the database.');
24664
- }
24665
- /**
24666
24715
  * * Field Name: ID
24667
24716
  * * Display Name: ID
24668
24717
  * * SQL Data Type: uniqueidentifier
@@ -25402,17 +25451,6 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
25402
25451
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
25403
25452
  }
25404
25453
  /**
25405
- * 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.
25406
- * @public
25407
- * @method
25408
- * @override
25409
- * @memberof QueryEntity
25410
- * @throws {Error} - Delete is not allowed for Queries, to enable it set AllowDeleteAPI to 1 in the database.
25411
- */
25412
- async Delete() {
25413
- throw new Error('Delete is not allowed for Queries, to enable it set AllowDeleteAPI to 1 in the database.');
25414
- }
25415
- /**
25416
25454
  * * Field Name: ID
25417
25455
  * * Display Name: ID
25418
25456
  * * SQL Data Type: uniqueidentifier
@@ -25836,17 +25874,6 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
25836
25874
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
25837
25875
  }
25838
25876
  /**
25839
- * 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.
25840
- * @public
25841
- * @method
25842
- * @override
25843
- * @memberof QueryFieldEntity
25844
- * @throws {Error} - Delete is not allowed for Query Fields, to enable it set AllowDeleteAPI to 1 in the database.
25845
- */
25846
- async Delete() {
25847
- throw new Error('Delete is not allowed for Query Fields, to enable it set AllowDeleteAPI to 1 in the database.');
25848
- }
25849
- /**
25850
25877
  * * Field Name: ID
25851
25878
  * * Display Name: ID
25852
25879
  * * SQL Data Type: uniqueidentifier
@@ -26060,17 +26087,6 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
26060
26087
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
26061
26088
  }
26062
26089
  /**
26063
- * 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.
26064
- * @public
26065
- * @method
26066
- * @override
26067
- * @memberof QueryPermissionEntity
26068
- * @throws {Error} - Delete is not allowed for Query Permissions, to enable it set AllowDeleteAPI to 1 in the database.
26069
- */
26070
- async Delete() {
26071
- throw new Error('Delete is not allowed for Query Permissions, to enable it set AllowDeleteAPI to 1 in the database.');
26072
- }
26073
- /**
26074
26090
  * * Field Name: ID
26075
26091
  * * Display Name: ID
26076
26092
  * * SQL Data Type: uniqueidentifier
@@ -26365,17 +26381,6 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
26365
26381
  throw new Error('Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
26366
26382
  }
26367
26383
  /**
26368
- * Queue 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.
26369
- * @public
26370
- * @method
26371
- * @override
26372
- * @memberof QueueTypeEntity
26373
- * @throws {Error} - Delete is not allowed for Queue Types, to enable it set AllowDeleteAPI to 1 in the database.
26374
- */
26375
- async Delete() {
26376
- throw new Error('Delete is not allowed for Queue Types, to enable it set AllowDeleteAPI to 1 in the database.');
26377
- }
26378
- /**
26379
26384
  * * Field Name: ID
26380
26385
  * * Display Name: ID
26381
26386
  * * SQL Data Type: uniqueidentifier
@@ -26877,17 +26882,6 @@ let RecommendationProviderEntity = class RecommendationProviderEntity extends co
26877
26882
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
26878
26883
  }
26879
26884
  /**
26880
- * Recommendation 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.
26881
- * @public
26882
- * @method
26883
- * @override
26884
- * @memberof RecommendationProviderEntity
26885
- * @throws {Error} - Delete is not allowed for Recommendation Providers, to enable it set AllowDeleteAPI to 1 in the database.
26886
- */
26887
- async Delete() {
26888
- throw new Error('Delete is not allowed for Recommendation Providers, to enable it set AllowDeleteAPI to 1 in the database.');
26889
- }
26890
- /**
26891
26885
  * * Field Name: ID
26892
26886
  * * Display Name: ID
26893
26887
  * * SQL Data Type: uniqueidentifier
@@ -29148,17 +29142,6 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
29148
29142
  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.');
29149
29143
  }
29150
29144
  /**
29151
- * Row Level Security Filters - 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.
29152
- * @public
29153
- * @method
29154
- * @override
29155
- * @memberof RowLevelSecurityFilterEntity
29156
- * @throws {Error} - Delete is not allowed for Row Level Security Filters, to enable it set AllowDeleteAPI to 1 in the database.
29157
- */
29158
- async Delete() {
29159
- throw new Error('Delete is not allowed for Row Level Security Filters, to enable it set AllowDeleteAPI to 1 in the database.');
29160
- }
29161
- /**
29162
29145
  * * Field Name: ID
29163
29146
  * * Display Name: ID
29164
29147
  * * SQL Data Type: uniqueidentifier
@@ -29757,17 +29740,6 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
29757
29740
  throw new Error('Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
29758
29741
  }
29759
29742
  /**
29760
- * 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.
29761
- * @public
29762
- * @method
29763
- * @override
29764
- * @memberof SkillEntity
29765
- * @throws {Error} - Delete is not allowed for Skills, to enable it set AllowDeleteAPI to 1 in the database.
29766
- */
29767
- async Delete() {
29768
- throw new Error('Delete is not allowed for Skills, to enable it set AllowDeleteAPI to 1 in the database.');
29769
- }
29770
- /**
29771
29743
  * * Field Name: ID
29772
29744
  * * SQL Data Type: uniqueidentifier
29773
29745
  * * Default Value: newsequentialid()
@@ -29990,17 +29962,6 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
29990
29962
  throw new Error('Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
29991
29963
  }
29992
29964
  /**
29993
- * Tags - 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.
29994
- * @public
29995
- * @method
29996
- * @override
29997
- * @memberof TagEntity
29998
- * @throws {Error} - Delete is not allowed for Tags, to enable it set AllowDeleteAPI to 1 in the database.
29999
- */
30000
- async Delete() {
30001
- throw new Error('Delete is not allowed for Tags, to enable it set AllowDeleteAPI to 1 in the database.');
30002
- }
30003
- /**
30004
29965
  * * Field Name: ID
30005
29966
  * * Display Name: ID
30006
29967
  * * SQL Data Type: uniqueidentifier
@@ -30114,17 +30075,6 @@ let TemplateCategoryEntity = class TemplateCategoryEntity extends core_1.BaseEnt
30114
30075
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
30115
30076
  }
30116
30077
  /**
30117
- * Template Categories - 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.
30118
- * @public
30119
- * @method
30120
- * @override
30121
- * @memberof TemplateCategoryEntity
30122
- * @throws {Error} - Delete is not allowed for Template Categories, to enable it set AllowDeleteAPI to 1 in the database.
30123
- */
30124
- async Delete() {
30125
- throw new Error('Delete is not allowed for Template Categories, to enable it set AllowDeleteAPI to 1 in the database.');
30126
- }
30127
- /**
30128
30078
  * * Field Name: ID
30129
30079
  * * Display Name: ID
30130
30080
  * * SQL Data Type: uniqueidentifier
@@ -30249,17 +30199,6 @@ let TemplateContentTypeEntity = class TemplateContentTypeEntity extends core_1.B
30249
30199
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
30250
30200
  }
30251
30201
  /**
30252
- * Template Content 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.
30253
- * @public
30254
- * @method
30255
- * @override
30256
- * @memberof TemplateContentTypeEntity
30257
- * @throws {Error} - Delete is not allowed for Template Content Types, to enable it set AllowDeleteAPI to 1 in the database.
30258
- */
30259
- async Delete() {
30260
- throw new Error('Delete is not allowed for Template Content Types, to enable it set AllowDeleteAPI to 1 in the database.');
30261
- }
30262
- /**
30263
30202
  * * Field Name: ID
30264
30203
  * * Display Name: ID
30265
30204
  * * SQL Data Type: uniqueidentifier
@@ -30366,17 +30305,6 @@ let TemplateContentEntity = class TemplateContentEntity extends core_1.BaseEntit
30366
30305
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
30367
30306
  }
30368
30307
  /**
30369
- * Template Contents - 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.
30370
- * @public
30371
- * @method
30372
- * @override
30373
- * @memberof TemplateContentEntity
30374
- * @throws {Error} - Delete is not allowed for Template Contents, to enable it set AllowDeleteAPI to 1 in the database.
30375
- */
30376
- async Delete() {
30377
- throw new Error('Delete is not allowed for Template Contents, to enable it set AllowDeleteAPI to 1 in the database.');
30378
- }
30379
- /**
30380
30308
  * * Field Name: ID
30381
30309
  * * Display Name: ID
30382
30310
  * * SQL Data Type: uniqueidentifier
@@ -30514,17 +30442,6 @@ let TemplateParamEntity = class TemplateParamEntity extends core_1.BaseEntity {
30514
30442
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
30515
30443
  }
30516
30444
  /**
30517
- * Template Params - 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.
30518
- * @public
30519
- * @method
30520
- * @override
30521
- * @memberof TemplateParamEntity
30522
- * @throws {Error} - Delete is not allowed for Template Params, to enable it set AllowDeleteAPI to 1 in the database.
30523
- */
30524
- async Delete() {
30525
- throw new Error('Delete is not allowed for Template Params, to enable it set AllowDeleteAPI to 1 in the database.');
30526
- }
30527
- /**
30528
30445
  * * Field Name: ID
30529
30446
  * * Display Name: ID
30530
30447
  * * SQL Data Type: uniqueidentifier
@@ -30753,17 +30670,6 @@ let TemplateEntity = class TemplateEntity extends core_1.BaseEntity {
30753
30670
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
30754
30671
  }
30755
30672
  /**
30756
- * Templates - 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.
30757
- * @public
30758
- * @method
30759
- * @override
30760
- * @memberof TemplateEntity
30761
- * @throws {Error} - Delete is not allowed for Templates, to enable it set AllowDeleteAPI to 1 in the database.
30762
- */
30763
- async Delete() {
30764
- throw new Error('Delete is not allowed for Templates, to enable it set AllowDeleteAPI to 1 in the database.');
30765
- }
30766
- /**
30767
30673
  * * Field Name: ID
30768
30674
  * * Display Name: ID
30769
30675
  * * SQL Data Type: uniqueidentifier
@@ -32648,17 +32554,6 @@ let VectorDatabaseEntity = class VectorDatabaseEntity extends core_1.BaseEntity
32648
32554
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
32649
32555
  }
32650
32556
  /**
32651
- * 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.
32652
- * @public
32653
- * @method
32654
- * @override
32655
- * @memberof VectorDatabaseEntity
32656
- * @throws {Error} - Delete is not allowed for Vector Databases, to enable it set AllowDeleteAPI to 1 in the database.
32657
- */
32658
- async Delete() {
32659
- throw new Error('Delete is not allowed for Vector Databases, to enable it set AllowDeleteAPI to 1 in the database.');
32660
- }
32661
- /**
32662
32557
  * * Field Name: ID
32663
32558
  * * Display Name: ID
32664
32559
  * * SQL Data Type: uniqueidentifier
@@ -32762,17 +32657,6 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
32762
32657
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
32763
32658
  }
32764
32659
  /**
32765
- * 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.
32766
- * @public
32767
- * @method
32768
- * @override
32769
- * @memberof VectorIndexEntity
32770
- * @throws {Error} - Delete is not allowed for Vector Indexes, to enable it set AllowDeleteAPI to 1 in the database.
32771
- */
32772
- async Delete() {
32773
- throw new Error('Delete is not allowed for Vector Indexes, to enable it set AllowDeleteAPI to 1 in the database.');
32774
- }
32775
- /**
32776
32660
  * * Field Name: ID
32777
32661
  * * Display Name: ID
32778
32662
  * * SQL Data Type: uniqueidentifier
@@ -33076,17 +32960,6 @@ let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity
33076
32960
  return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
33077
32961
  }
33078
32962
  /**
33079
- * 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.
33080
- * @public
33081
- * @method
33082
- * @override
33083
- * @memberof WorkflowEngineEntity
33084
- * @throws {Error} - Delete is not allowed for Workflow Engines, to enable it set AllowDeleteAPI to 1 in the database.
33085
- */
33086
- async Delete() {
33087
- throw new Error('Delete is not allowed for Workflow Engines, to enable it set AllowDeleteAPI to 1 in the database.');
33088
- }
33089
- /**
33090
32963
  * * Field Name: ID
33091
32964
  * * SQL Data Type: uniqueidentifier
33092
32965
  * * Default Value: newsequentialid()