@memberjunction/core-entities 2.20.1 → 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.
@@ -727,6 +727,7 @@ export declare const AIModelSchema: z.ZodObject<{
727
727
  CostRank: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
728
728
  ModelSelectionInsights: z.ZodOptional<z.ZodNullable<z.ZodString>>;
729
729
  InputTokenLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
730
+ SupportedResponseFormats: z.ZodString;
730
731
  AIModelType: z.ZodString;
731
732
  }, "strip", z.ZodTypeAny, {
732
733
  ID?: string;
@@ -745,6 +746,7 @@ export declare const AIModelSchema: z.ZodObject<{
745
746
  CostRank?: number;
746
747
  ModelSelectionInsights?: string;
747
748
  InputTokenLimit?: number;
749
+ SupportedResponseFormats?: string;
748
750
  AIModelType?: string;
749
751
  }, {
750
752
  ID?: string;
@@ -763,6 +765,7 @@ export declare const AIModelSchema: z.ZodObject<{
763
765
  CostRank?: number;
764
766
  ModelSelectionInsights?: string;
765
767
  InputTokenLimit?: number;
768
+ SupportedResponseFormats?: string;
766
769
  AIModelType?: string;
767
770
  }>;
768
771
  export type AIModelEntityType = z.infer<typeof AIModelSchema>;
@@ -833,6 +836,8 @@ export declare const AIPromptSchema: z.ZodObject<{
833
836
  CacheExpiration: z.ZodNumber;
834
837
  __mj_CreatedAt: z.ZodDate;
835
838
  __mj_UpdatedAt: z.ZodDate;
839
+ ResponseFormat: z.ZodUnion<[z.ZodLiteral<"Any">, z.ZodLiteral<"Text">, z.ZodLiteral<"Markdown">, z.ZodLiteral<"JSON">, z.ZodLiteral<"ModelSpecific">]>;
840
+ ModelSpecificResponseFormat: z.ZodOptional<z.ZodNullable<z.ZodString>>;
836
841
  Template: z.ZodString;
837
842
  Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
838
843
  Type: z.ZodString;
@@ -850,6 +855,8 @@ export declare const AIPromptSchema: z.ZodObject<{
850
855
  TypeID?: string;
851
856
  CacheResults?: boolean;
852
857
  CacheExpiration?: number;
858
+ ResponseFormat?: "Any" | "Text" | "Markdown" | "JSON" | "ModelSpecific";
859
+ ModelSpecificResponseFormat?: string;
853
860
  Template?: string;
854
861
  }, {
855
862
  Category?: string;
@@ -865,6 +872,8 @@ export declare const AIPromptSchema: z.ZodObject<{
865
872
  TypeID?: string;
866
873
  CacheResults?: boolean;
867
874
  CacheExpiration?: number;
875
+ ResponseFormat?: "Any" | "Text" | "Markdown" | "JSON" | "ModelSpecific";
876
+ ModelSpecificResponseFormat?: string;
868
877
  Template?: string;
869
878
  }>;
870
879
  export type AIPromptEntityType = z.infer<typeof AIPromptSchema>;
@@ -1742,13 +1751,13 @@ export declare const ContentItemSchema: z.ZodObject<{
1742
1751
  __mj_UpdatedAt?: Date;
1743
1752
  Name?: string;
1744
1753
  Description?: string;
1754
+ Text?: string;
1745
1755
  URL?: string;
1746
1756
  ContentSourceID?: string;
1747
1757
  ContentTypeID?: string;
1748
1758
  ContentSourceTypeID?: string;
1749
1759
  ContentFileTypeID?: string;
1750
1760
  Checksum?: string;
1751
- Text?: string;
1752
1761
  ContentSource?: string;
1753
1762
  ContentType?: string;
1754
1763
  ContentSourceType?: string;
@@ -1759,13 +1768,13 @@ export declare const ContentItemSchema: z.ZodObject<{
1759
1768
  __mj_UpdatedAt?: Date;
1760
1769
  Name?: string;
1761
1770
  Description?: string;
1771
+ Text?: string;
1762
1772
  URL?: string;
1763
1773
  ContentSourceID?: string;
1764
1774
  ContentTypeID?: string;
1765
1775
  ContentSourceTypeID?: string;
1766
1776
  ContentFileTypeID?: string;
1767
1777
  Checksum?: string;
1768
- Text?: string;
1769
1778
  ContentSource?: string;
1770
1779
  ContentType?: string;
1771
1780
  ContentSourceType?: string;
@@ -2665,6 +2674,11 @@ export declare const EntitySchema: z.ZodObject<{
2665
2674
  Icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2666
2675
  __mj_CreatedAt: z.ZodDate;
2667
2676
  __mj_UpdatedAt: z.ZodDate;
2677
+ ScopeDefault: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2678
+ RowsToPackWithSchema: z.ZodUnion<[z.ZodLiteral<"None">, z.ZodLiteral<"Sample">, z.ZodLiteral<"All">]>;
2679
+ RowsToPackSampleMethod: z.ZodUnion<[z.ZodLiteral<"random">, z.ZodLiteral<"top n">, z.ZodLiteral<"bottom n">]>;
2680
+ RowsToPackSampleCount: z.ZodNumber;
2681
+ RowsToPackSampleOrder: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2668
2682
  CodeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2669
2683
  ClassName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2670
2684
  BaseTableCodeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2719,6 +2733,11 @@ export declare const EntitySchema: z.ZodObject<{
2719
2733
  EntityObjectSubclassName?: string;
2720
2734
  EntityObjectSubclassImport?: string;
2721
2735
  PreferredCommunicationField?: string;
2736
+ ScopeDefault?: string;
2737
+ RowsToPackWithSchema?: "None" | "All" | "Sample";
2738
+ RowsToPackSampleMethod?: "random" | "top n" | "bottom n";
2739
+ RowsToPackSampleCount?: number;
2740
+ RowsToPackSampleOrder?: string;
2722
2741
  CodeName?: string;
2723
2742
  ClassName?: string;
2724
2743
  BaseTableCodeName?: string;
@@ -2773,6 +2792,11 @@ export declare const EntitySchema: z.ZodObject<{
2773
2792
  EntityObjectSubclassName?: string;
2774
2793
  EntityObjectSubclassImport?: string;
2775
2794
  PreferredCommunicationField?: string;
2795
+ ScopeDefault?: string;
2796
+ RowsToPackWithSchema?: "None" | "All" | "Sample";
2797
+ RowsToPackSampleMethod?: "random" | "top n" | "bottom n";
2798
+ RowsToPackSampleCount?: number;
2799
+ RowsToPackSampleOrder?: string;
2776
2800
  CodeName?: string;
2777
2801
  ClassName?: string;
2778
2802
  BaseTableCodeName?: string;
@@ -3286,6 +3310,9 @@ export declare const EntityFieldSchema: z.ZodObject<{
3286
3310
  EntityIDFieldName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3287
3311
  __mj_CreatedAt: z.ZodDate;
3288
3312
  __mj_UpdatedAt: z.ZodDate;
3313
+ ScopeDefault: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3314
+ AutoUpdateRelatedEntityInfo: z.ZodBoolean;
3315
+ ValuesToPackWithSchema: z.ZodUnion<[z.ZodLiteral<"Auto">, z.ZodLiteral<"None">, z.ZodLiteral<"All">]>;
3289
3316
  Entity: z.ZodString;
3290
3317
  SchemaName: z.ZodString;
3291
3318
  BaseTable: z.ZodString;
@@ -3318,6 +3345,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
3318
3345
  SchemaName?: string;
3319
3346
  AllowUpdateAPI?: boolean;
3320
3347
  FullTextSearchEnabled?: boolean;
3348
+ ScopeDefault?: string;
3321
3349
  DisplayName?: string;
3322
3350
  IsPrimaryKey?: boolean;
3323
3351
  IsUnique?: boolean;
@@ -3345,6 +3373,8 @@ export declare const EntityFieldSchema: z.ZodObject<{
3345
3373
  RelatedEntityNameFieldMap?: string;
3346
3374
  RelatedEntityDisplayType?: string;
3347
3375
  EntityIDFieldName?: string;
3376
+ AutoUpdateRelatedEntityInfo?: boolean;
3377
+ ValuesToPackWithSchema?: "None" | "Auto" | "All";
3348
3378
  RelatedEntity?: string;
3349
3379
  RelatedEntitySchemaName?: string;
3350
3380
  RelatedEntityBaseTable?: string;
@@ -3371,6 +3401,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
3371
3401
  SchemaName?: string;
3372
3402
  AllowUpdateAPI?: boolean;
3373
3403
  FullTextSearchEnabled?: boolean;
3404
+ ScopeDefault?: string;
3374
3405
  DisplayName?: string;
3375
3406
  IsPrimaryKey?: boolean;
3376
3407
  IsUnique?: boolean;
@@ -3398,6 +3429,8 @@ export declare const EntityFieldSchema: z.ZodObject<{
3398
3429
  RelatedEntityNameFieldMap?: string;
3399
3430
  RelatedEntityDisplayType?: string;
3400
3431
  EntityIDFieldName?: string;
3432
+ AutoUpdateRelatedEntityInfo?: boolean;
3433
+ ValuesToPackWithSchema?: "None" | "Auto" | "All";
3401
3434
  RelatedEntity?: string;
3402
3435
  RelatedEntitySchemaName?: string;
3403
3436
  RelatedEntityBaseTable?: string;
@@ -3576,6 +3609,7 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
3576
3609
  DisplayComponentConfiguration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3577
3610
  __mj_CreatedAt: z.ZodDate;
3578
3611
  __mj_UpdatedAt: z.ZodDate;
3612
+ AutoUpdateFromSchema: z.ZodBoolean;
3579
3613
  Entity: z.ZodString;
3580
3614
  EntityBaseTable: z.ZodString;
3581
3615
  EntityBaseView: z.ZodString;
@@ -3616,6 +3650,7 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
3616
3650
  DisplayUserViewID?: string;
3617
3651
  DisplayComponentID?: string;
3618
3652
  DisplayComponentConfiguration?: string;
3653
+ AutoUpdateFromSchema?: boolean;
3619
3654
  EntityBaseView?: string;
3620
3655
  RelatedEntityBaseTableCodeName?: string;
3621
3656
  DisplayUserViewName?: string;
@@ -3649,6 +3684,7 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
3649
3684
  DisplayUserViewID?: string;
3650
3685
  DisplayComponentID?: string;
3651
3686
  DisplayComponentConfiguration?: string;
3687
+ AutoUpdateFromSchema?: boolean;
3652
3688
  EntityBaseView?: string;
3653
3689
  RelatedEntityBaseTableCodeName?: string;
3654
3690
  DisplayUserViewName?: string;
@@ -3932,10 +3968,10 @@ export declare const flyway_schema_historySchema: z.ZodObject<{
3932
3968
  script?: string;
3933
3969
  success?: boolean;
3934
3970
  description?: string;
3971
+ version?: string;
3935
3972
  __mj_CreatedAt?: Date;
3936
3973
  __mj_UpdatedAt?: Date;
3937
3974
  installed_rank?: number;
3938
- version?: string;
3939
3975
  checksum?: number;
3940
3976
  installed_by?: string;
3941
3977
  installed_on?: Date;
@@ -3945,10 +3981,10 @@ export declare const flyway_schema_historySchema: z.ZodObject<{
3945
3981
  script?: string;
3946
3982
  success?: boolean;
3947
3983
  description?: string;
3984
+ version?: string;
3948
3985
  __mj_CreatedAt?: Date;
3949
3986
  __mj_UpdatedAt?: Date;
3950
3987
  installed_rank?: number;
3951
- version?: string;
3952
3988
  checksum?: number;
3953
3989
  installed_by?: string;
3954
3990
  installed_on?: Date;
@@ -5550,14 +5586,14 @@ export declare const TemplateContentTypeSchema: z.ZodObject<{
5550
5586
  __mj_UpdatedAt?: Date;
5551
5587
  Name?: string;
5552
5588
  Description?: string;
5553
- CodeType?: "Other" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript" | "JSON";
5589
+ CodeType?: "Other" | "JSON" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript";
5554
5590
  }, {
5555
5591
  ID?: string;
5556
5592
  __mj_CreatedAt?: Date;
5557
5593
  __mj_UpdatedAt?: Date;
5558
5594
  Name?: string;
5559
5595
  Description?: string;
5560
- CodeType?: "Other" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript" | "JSON";
5596
+ CodeType?: "Other" | "JSON" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript";
5561
5597
  }>;
5562
5598
  export type TemplateContentTypeEntityType = z.infer<typeof TemplateContentTypeSchema>;
5563
5599
  /**
@@ -8021,7 +8057,6 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
8021
8057
  * * Field Name: User
8022
8058
  * * Display Name: User
8023
8059
  * * SQL Data Type: nvarchar(100)
8024
- * * Default Value: null
8025
8060
  */
8026
8061
  get User(): string | null;
8027
8062
  }
@@ -8161,14 +8196,12 @@ export declare class AIAgentRequestEntity extends BaseEntity<AIAgentRequestEntit
8161
8196
  * * Field Name: RequestForUser
8162
8197
  * * Display Name: Request For User
8163
8198
  * * SQL Data Type: nvarchar(100)
8164
- * * Default Value: null
8165
8199
  */
8166
8200
  get RequestForUser(): string | null;
8167
8201
  /**
8168
8202
  * * Field Name: ResponseByUser
8169
8203
  * * Display Name: Response By User
8170
8204
  * * SQL Data Type: nvarchar(100)
8171
- * * Default Value: null
8172
8205
  */
8173
8206
  get ResponseByUser(): string | null;
8174
8207
  }
@@ -8532,6 +8565,15 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
8532
8565
  get InputTokenLimit(): number | null;
8533
8566
  set InputTokenLimit(value: number | null);
8534
8567
  /**
8568
+ * * Field Name: SupportedResponseFormats
8569
+ * * Display Name: Supported Response Formats
8570
+ * * SQL Data Type: nvarchar(100)
8571
+ * * Default Value: Any
8572
+ * * 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.
8573
+ */
8574
+ get SupportedResponseFormats(): string;
8575
+ set SupportedResponseFormats(value: string);
8576
+ /**
8535
8577
  * * Field Name: AIModelType
8536
8578
  * * Display Name: AIModel Type
8537
8579
  * * SQL Data Type: nvarchar(50)
@@ -8790,6 +8832,30 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
8790
8832
  */
8791
8833
  get __mj_UpdatedAt(): Date;
8792
8834
  /**
8835
+ * * Field Name: ResponseFormat
8836
+ * * Display Name: Response Format
8837
+ * * SQL Data Type: nvarchar(20)
8838
+ * * Default Value: Any
8839
+ * * Value List Type: List
8840
+ * * Possible Values
8841
+ * * Any
8842
+ * * Text
8843
+ * * Markdown
8844
+ * * JSON
8845
+ * * ModelSpecific
8846
+ * * Description: Specifies the expected response format for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.
8847
+ */
8848
+ get ResponseFormat(): 'Any' | 'Text' | 'Markdown' | 'JSON' | 'ModelSpecific';
8849
+ set ResponseFormat(value: 'Any' | 'Text' | 'Markdown' | 'JSON' | 'ModelSpecific');
8850
+ /**
8851
+ * * Field Name: ModelSpecificResponseFormat
8852
+ * * Display Name: Model Specific Response Format
8853
+ * * SQL Data Type: nvarchar(MAX)
8854
+ * * Description: A JSON-formatted string containing model-specific response format instructions. This will be parsed and provided as a JSON object to the model.
8855
+ */
8856
+ get ModelSpecificResponseFormat(): string | null;
8857
+ set ModelSpecificResponseFormat(value: string | null);
8858
+ /**
8793
8859
  * * Field Name: Template
8794
8860
  * * Display Name: Template
8795
8861
  * * SQL Data Type: nvarchar(255)
@@ -9676,15 +9742,6 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity<Commu
9676
9742
  */
9677
9743
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
9678
9744
  /**
9679
- * 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.
9680
- * @public
9681
- * @method
9682
- * @override
9683
- * @memberof CommunicationBaseMessageTypeEntity
9684
- * @throws {Error} - Delete is not allowed for Communication Base Message Types, to enable it set AllowDeleteAPI to 1 in the database.
9685
- */
9686
- Delete(): Promise<boolean>;
9687
- /**
9688
9745
  * * Field Name: ID
9689
9746
  * * Display Name: ID
9690
9747
  * * SQL Data Type: uniqueidentifier
@@ -10017,15 +10074,6 @@ export declare class CommunicationProviderEntity extends BaseEntity<Communicatio
10017
10074
  */
10018
10075
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
10019
10076
  /**
10020
- * 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.
10021
- * @public
10022
- * @method
10023
- * @override
10024
- * @memberof CommunicationProviderEntity
10025
- * @throws {Error} - Delete is not allowed for Communication Providers, to enable it set AllowDeleteAPI to 1 in the database.
10026
- */
10027
- Delete(): Promise<boolean>;
10028
- /**
10029
10077
  * * Field Name: ID
10030
10078
  * * Display Name: ID
10031
10079
  * * SQL Data Type: uniqueidentifier
@@ -10782,15 +10830,6 @@ export declare class CompanyIntegrationEntity extends BaseEntity<CompanyIntegrat
10782
10830
  */
10783
10831
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
10784
10832
  /**
10785
- * 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.
10786
- * @public
10787
- * @method
10788
- * @override
10789
- * @memberof CompanyIntegrationEntity
10790
- * @throws {Error} - Delete is not allowed for Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.
10791
- */
10792
- Delete(): Promise<boolean>;
10793
- /**
10794
10833
  * * Field Name: ID
10795
10834
  * * SQL Data Type: uniqueidentifier
10796
10835
  * * Default Value: newsequentialid()
@@ -12541,15 +12580,6 @@ export declare class DatasetItemEntity extends BaseEntity<DatasetItemEntityType>
12541
12580
  */
12542
12581
  Save(options?: EntitySaveOptions): Promise<boolean>;
12543
12582
  /**
12544
- * 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.
12545
- * @public
12546
- * @method
12547
- * @override
12548
- * @memberof DatasetItemEntity
12549
- * @throws {Error} - Delete is not allowed for Dataset Items, to enable it set AllowDeleteAPI to 1 in the database.
12550
- */
12551
- Delete(): Promise<boolean>;
12552
- /**
12553
12583
  * * Field Name: ID
12554
12584
  * * Display Name: ID
12555
12585
  * * SQL Data Type: uniqueidentifier
@@ -12677,15 +12707,6 @@ export declare class DatasetEntity extends BaseEntity<DatasetEntityType> {
12677
12707
  */
12678
12708
  Save(options?: EntitySaveOptions): Promise<boolean>;
12679
12709
  /**
12680
- * 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.
12681
- * @public
12682
- * @method
12683
- * @override
12684
- * @memberof DatasetEntity
12685
- * @throws {Error} - Delete is not allowed for Datasets, to enable it set AllowDeleteAPI to 1 in the database.
12686
- */
12687
- Delete(): Promise<boolean>;
12688
- /**
12689
12710
  * * Field Name: ID
12690
12711
  * * Display Name: ID
12691
12712
  * * SQL Data Type: uniqueidentifier
@@ -13264,15 +13285,6 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
13264
13285
  */
13265
13286
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
13266
13287
  /**
13267
- * 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.
13268
- * @public
13269
- * @method
13270
- * @override
13271
- * @memberof EmployeeRoleEntity
13272
- * @throws {Error} - Delete is not allowed for Employee Roles, to enable it set AllowDeleteAPI to 1 in the database.
13273
- */
13274
- Delete(): Promise<boolean>;
13275
- /**
13276
13288
  * * Field Name: ID
13277
13289
  * * Display Name: ID
13278
13290
  * * SQL Data Type: uniqueidentifier
@@ -13340,15 +13352,6 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
13340
13352
  */
13341
13353
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
13342
13354
  /**
13343
- * 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.
13344
- * @public
13345
- * @method
13346
- * @override
13347
- * @memberof EmployeeSkillEntity
13348
- * @throws {Error} - Delete is not allowed for Employee Skills, to enable it set AllowDeleteAPI to 1 in the database.
13349
- */
13350
- Delete(): Promise<boolean>;
13351
- /**
13352
13355
  * * Field Name: ID
13353
13356
  * * Display Name: ID
13354
13357
  * * SQL Data Type: uniqueidentifier
@@ -13933,6 +13936,59 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
13933
13936
  */
13934
13937
  get __mj_UpdatedAt(): Date;
13935
13938
  /**
13939
+ * * Field Name: ScopeDefault
13940
+ * * Display Name: Scope Default
13941
+ * * SQL Data Type: nvarchar(100)
13942
+ * * 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.
13943
+ */
13944
+ get ScopeDefault(): string | null;
13945
+ set ScopeDefault(value: string | null);
13946
+ /**
13947
+ * * Field Name: RowsToPackWithSchema
13948
+ * * Display Name: Rows To Pack With Schema
13949
+ * * SQL Data Type: nvarchar(20)
13950
+ * * Default Value: None
13951
+ * * Value List Type: List
13952
+ * * Possible Values
13953
+ * * None
13954
+ * * Sample
13955
+ * * All
13956
+ * * Description: Determines how entity rows should be packaged for external use. Options include None, Sample, and All. Defaults to None.
13957
+ */
13958
+ get RowsToPackWithSchema(): 'None' | 'Sample' | 'All';
13959
+ set RowsToPackWithSchema(value: 'None' | 'Sample' | 'All');
13960
+ /**
13961
+ * * Field Name: RowsToPackSampleMethod
13962
+ * * Display Name: Rows To Pack Sample Method
13963
+ * * SQL Data Type: nvarchar(20)
13964
+ * * Default Value: random
13965
+ * * Value List Type: List
13966
+ * * Possible Values
13967
+ * * random
13968
+ * * top n
13969
+ * * bottom n
13970
+ * * 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.
13971
+ */
13972
+ get RowsToPackSampleMethod(): 'random' | 'top n' | 'bottom n';
13973
+ set RowsToPackSampleMethod(value: 'random' | 'top n' | 'bottom n');
13974
+ /**
13975
+ * * Field Name: RowsToPackSampleCount
13976
+ * * Display Name: Rows To Pack Sample Count
13977
+ * * SQL Data Type: int
13978
+ * * Default Value: 0
13979
+ * * Description: The number of rows to pack when RowsToPackWithSchema is set to Sample, based on the designated sampling method. Defaults to 0.
13980
+ */
13981
+ get RowsToPackSampleCount(): number;
13982
+ set RowsToPackSampleCount(value: number);
13983
+ /**
13984
+ * * Field Name: RowsToPackSampleOrder
13985
+ * * Display Name: Rows To Pack Sample Order
13986
+ * * SQL Data Type: nvarchar(MAX)
13987
+ * * 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.
13988
+ */
13989
+ get RowsToPackSampleOrder(): string | null;
13990
+ set RowsToPackSampleOrder(value: string | null);
13991
+ /**
13936
13992
  * * Field Name: CodeName
13937
13993
  * * Display Name: Code Name
13938
13994
  * * SQL Data Type: nvarchar(MAX)
@@ -14585,15 +14641,6 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
14585
14641
  */
14586
14642
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14587
14643
  /**
14588
- * 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.
14589
- * @public
14590
- * @method
14591
- * @override
14592
- * @memberof EntityCommunicationFieldEntity
14593
- * @throws {Error} - Delete is not allowed for Entity Communication Fields, to enable it set AllowDeleteAPI to 1 in the database.
14594
- */
14595
- Delete(): Promise<boolean>;
14596
- /**
14597
14644
  * * Field Name: ID
14598
14645
  * * Display Name: ID
14599
14646
  * * SQL Data Type: uniqueidentifier
@@ -14664,15 +14711,6 @@ export declare class EntityCommunicationMessageTypeEntity extends BaseEntity<Ent
14664
14711
  */
14665
14712
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14666
14713
  /**
14667
- * 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.
14668
- * @public
14669
- * @method
14670
- * @override
14671
- * @memberof EntityCommunicationMessageTypeEntity
14672
- * @throws {Error} - Delete is not allowed for Entity Communication Message Types, to enable it set AllowDeleteAPI to 1 in the database.
14673
- */
14674
- Delete(): Promise<boolean>;
14675
- /**
14676
14714
  * * Field Name: ID
14677
14715
  * * Display Name: ID
14678
14716
  * * SQL Data Type: uniqueidentifier
@@ -14851,15 +14889,6 @@ export declare class EntityDocumentSettingEntity extends BaseEntity<EntityDocume
14851
14889
  */
14852
14890
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14853
14891
  /**
14854
- * 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.
14855
- * @public
14856
- * @method
14857
- * @override
14858
- * @memberof EntityDocumentSettingEntity
14859
- * @throws {Error} - Delete is not allowed for Entity Document Settings, to enable it set AllowDeleteAPI to 1 in the database.
14860
- */
14861
- Delete(): Promise<boolean>;
14862
- /**
14863
14892
  * * Field Name: ID
14864
14893
  * * Display Name: ID
14865
14894
  * * SQL Data Type: uniqueidentifier
@@ -14940,15 +14969,6 @@ export declare class EntityDocumentTypeEntity extends BaseEntity<EntityDocumentT
14940
14969
  */
14941
14970
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14942
14971
  /**
14943
- * 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.
14944
- * @public
14945
- * @method
14946
- * @override
14947
- * @memberof EntityDocumentTypeEntity
14948
- * @throws {Error} - Delete is not allowed for Entity Document Types, to enable it set AllowDeleteAPI to 1 in the database.
14949
- */
14950
- Delete(): Promise<boolean>;
14951
- /**
14952
14972
  * * Field Name: ID
14953
14973
  * * Display Name: ID
14954
14974
  * * SQL Data Type: uniqueidentifier
@@ -15140,7 +15160,7 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
15140
15160
  get Template(): string;
15141
15161
  /**
15142
15162
  * * Field Name: AIModel
15143
- * * Display Name: AIModel
15163
+ * * Display Name: AI Model
15144
15164
  * * SQL Data Type: nvarchar(50)
15145
15165
  */
15146
15166
  get AIModel(): string;
@@ -15626,6 +15646,37 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
15626
15646
  */
15627
15647
  get __mj_UpdatedAt(): Date;
15628
15648
  /**
15649
+ * * Field Name: ScopeDefault
15650
+ * * Display Name: Scope Default
15651
+ * * SQL Data Type: nvarchar(100)
15652
+ * * 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.
15653
+ */
15654
+ get ScopeDefault(): string | null;
15655
+ set ScopeDefault(value: string | null);
15656
+ /**
15657
+ * * Field Name: AutoUpdateRelatedEntityInfo
15658
+ * * Display Name: Auto Update Related Entity Info
15659
+ * * SQL Data Type: bit
15660
+ * * Default Value: 1
15661
+ * * 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.
15662
+ */
15663
+ get AutoUpdateRelatedEntityInfo(): boolean;
15664
+ set AutoUpdateRelatedEntityInfo(value: boolean);
15665
+ /**
15666
+ * * Field Name: ValuesToPackWithSchema
15667
+ * * Display Name: Values To Pack With Schema
15668
+ * * SQL Data Type: nvarchar(10)
15669
+ * * Default Value: Auto
15670
+ * * Value List Type: List
15671
+ * * Possible Values
15672
+ * * Auto
15673
+ * * None
15674
+ * * All
15675
+ * * 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.
15676
+ */
15677
+ get ValuesToPackWithSchema(): 'Auto' | 'None' | 'All';
15678
+ set ValuesToPackWithSchema(value: 'Auto' | 'None' | 'All');
15679
+ /**
15629
15680
  * * Field Name: Entity
15630
15681
  * * SQL Data Type: nvarchar(255)
15631
15682
  */
@@ -16283,6 +16334,15 @@ export declare class EntityRelationshipEntity extends BaseEntity<EntityRelations
16283
16334
  */
16284
16335
  get __mj_UpdatedAt(): Date;
16285
16336
  /**
16337
+ * * Field Name: AutoUpdateFromSchema
16338
+ * * Display Name: Auto Update From Schema
16339
+ * * SQL Data Type: bit
16340
+ * * Default Value: 1
16341
+ * * 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.
16342
+ */
16343
+ get AutoUpdateFromSchema(): boolean;
16344
+ set AutoUpdateFromSchema(value: boolean);
16345
+ /**
16286
16346
  * * Field Name: Entity
16287
16347
  * * SQL Data Type: nvarchar(255)
16288
16348
  */
@@ -16366,15 +16426,6 @@ export declare class EntitySettingEntity extends BaseEntity<EntitySettingEntityT
16366
16426
  */
16367
16427
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
16368
16428
  /**
16369
- * 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.
16370
- * @public
16371
- * @method
16372
- * @override
16373
- * @memberof EntitySettingEntity
16374
- * @throws {Error} - Delete is not allowed for Entity Settings, to enable it set AllowDeleteAPI to 1 in the database.
16375
- */
16376
- Delete(): Promise<boolean>;
16377
- /**
16378
16429
  * * Field Name: ID
16379
16430
  * * Display Name: ID
16380
16431
  * * SQL Data Type: uniqueidentifier
@@ -16757,15 +16808,6 @@ export declare class FileEntityRecordLinkEntity extends BaseEntity<FileEntityRec
16757
16808
  */
16758
16809
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
16759
16810
  /**
16760
- * 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.
16761
- * @public
16762
- * @method
16763
- * @override
16764
- * @memberof FileEntityRecordLinkEntity
16765
- * @throws {Error} - Delete is not allowed for File Entity Record Links, to enable it set AllowDeleteAPI to 1 in the database.
16766
- */
16767
- Delete(): Promise<boolean>;
16768
- /**
16769
16811
  * * Field Name: ID
16770
16812
  * * Display Name: ID
16771
16813
  * * SQL Data Type: uniqueidentifier
@@ -16846,15 +16888,6 @@ export declare class FileStorageProviderEntity extends BaseEntity<FileStoragePro
16846
16888
  */
16847
16889
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
16848
16890
  /**
16849
- * 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.
16850
- * @public
16851
- * @method
16852
- * @override
16853
- * @memberof FileStorageProviderEntity
16854
- * @throws {Error} - Delete is not allowed for File Storage Providers, to enable it set AllowDeleteAPI to 1 in the database.
16855
- */
16856
- Delete(): Promise<boolean>;
16857
- /**
16858
16891
  * * Field Name: ID
16859
16892
  * * Display Name: ID
16860
16893
  * * SQL Data Type: uniqueidentifier
@@ -17163,15 +17196,6 @@ export declare class IntegrationURLFormatEntity extends BaseEntity<IntegrationUR
17163
17196
  */
17164
17197
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17165
17198
  /**
17166
- * 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.
17167
- * @public
17168
- * @method
17169
- * @override
17170
- * @memberof IntegrationURLFormatEntity
17171
- * @throws {Error} - Delete is not allowed for Integration URL Formats, to enable it set AllowDeleteAPI to 1 in the database.
17172
- */
17173
- Delete(): Promise<boolean>;
17174
- /**
17175
17199
  * * Field Name: ID
17176
17200
  * * SQL Data Type: uniqueidentifier
17177
17201
  * * Default Value: newsequentialid()
@@ -17265,15 +17289,6 @@ export declare class IntegrationEntity extends BaseEntity<IntegrationEntityType>
17265
17289
  */
17266
17290
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17267
17291
  /**
17268
- * 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.
17269
- * @public
17270
- * @method
17271
- * @override
17272
- * @memberof IntegrationEntity
17273
- * @throws {Error} - Delete is not allowed for Integrations, to enable it set AllowDeleteAPI to 1 in the database.
17274
- */
17275
- Delete(): Promise<boolean>;
17276
- /**
17277
17292
  * * Field Name: Name
17278
17293
  * * SQL Data Type: nvarchar(100)
17279
17294
  */
@@ -17368,15 +17383,6 @@ export declare class LibraryEntity extends BaseEntity<LibraryEntityType> {
17368
17383
  */
17369
17384
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17370
17385
  /**
17371
- * 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.
17372
- * @public
17373
- * @method
17374
- * @override
17375
- * @memberof LibraryEntity
17376
- * @throws {Error} - Delete is not allowed for Libraries, to enable it set AllowDeleteAPI to 1 in the database.
17377
- */
17378
- Delete(): Promise<boolean>;
17379
- /**
17380
17386
  * * Field Name: ID
17381
17387
  * * Display Name: ID
17382
17388
  * * SQL Data Type: uniqueidentifier
@@ -17467,15 +17473,6 @@ export declare class LibraryItemEntity extends BaseEntity<LibraryItemEntityType>
17467
17473
  */
17468
17474
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17469
17475
  /**
17470
- * 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.
17471
- * @public
17472
- * @method
17473
- * @override
17474
- * @memberof LibraryItemEntity
17475
- * @throws {Error} - Delete is not allowed for Library Items, to enable it set AllowDeleteAPI to 1 in the database.
17476
- */
17477
- Delete(): Promise<boolean>;
17478
- /**
17479
17476
  * * Field Name: ID
17480
17477
  * * Display Name: ID
17481
17478
  * * SQL Data Type: uniqueidentifier
@@ -17558,15 +17555,6 @@ export declare class ListCategoryEntity extends BaseEntity<ListCategoryEntityTyp
17558
17555
  */
17559
17556
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17560
17557
  /**
17561
- * 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.
17562
- * @public
17563
- * @method
17564
- * @override
17565
- * @memberof ListCategoryEntity
17566
- * @throws {Error} - Delete is not allowed for List Categories, to enable it set AllowDeleteAPI to 1 in the database.
17567
- */
17568
- Delete(): Promise<boolean>;
17569
- /**
17570
17558
  * * Field Name: ID
17571
17559
  * * Display Name: ID
17572
17560
  * * SQL Data Type: uniqueidentifier
@@ -18106,15 +18094,6 @@ export declare class QueryEntity extends BaseEntity<QueryEntityType> {
18106
18094
  */
18107
18095
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18108
18096
  /**
18109
- * 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.
18110
- * @public
18111
- * @method
18112
- * @override
18113
- * @memberof QueryEntity
18114
- * @throws {Error} - Delete is not allowed for Queries, to enable it set AllowDeleteAPI to 1 in the database.
18115
- */
18116
- Delete(): Promise<boolean>;
18117
- /**
18118
18097
  * * Field Name: ID
18119
18098
  * * Display Name: ID
18120
18099
  * * SQL Data Type: uniqueidentifier
@@ -18418,15 +18397,6 @@ export declare class QueryFieldEntity extends BaseEntity<QueryFieldEntityType> {
18418
18397
  */
18419
18398
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18420
18399
  /**
18421
- * 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.
18422
- * @public
18423
- * @method
18424
- * @override
18425
- * @memberof QueryFieldEntity
18426
- * @throws {Error} - Delete is not allowed for Query Fields, to enable it set AllowDeleteAPI to 1 in the database.
18427
- */
18428
- Delete(): Promise<boolean>;
18429
- /**
18430
18400
  * * Field Name: ID
18431
18401
  * * Display Name: ID
18432
18402
  * * SQL Data Type: uniqueidentifier
@@ -18574,15 +18544,6 @@ export declare class QueryPermissionEntity extends BaseEntity<QueryPermissionEnt
18574
18544
  */
18575
18545
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18576
18546
  /**
18577
- * 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.
18578
- * @public
18579
- * @method
18580
- * @override
18581
- * @memberof QueryPermissionEntity
18582
- * @throws {Error} - Delete is not allowed for Query Permissions, to enable it set AllowDeleteAPI to 1 in the database.
18583
- */
18584
- Delete(): Promise<boolean>;
18585
- /**
18586
18547
  * * Field Name: ID
18587
18548
  * * Display Name: ID
18588
18549
  * * SQL Data Type: uniqueidentifier
@@ -18795,15 +18756,6 @@ export declare class QueueTypeEntity extends BaseEntity<QueueTypeEntityType> {
18795
18756
  */
18796
18757
  Save(options?: EntitySaveOptions): Promise<boolean>;
18797
18758
  /**
18798
- * 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.
18799
- * @public
18800
- * @method
18801
- * @override
18802
- * @memberof QueueTypeEntity
18803
- * @throws {Error} - Delete is not allowed for Queue Types, to enable it set AllowDeleteAPI to 1 in the database.
18804
- */
18805
- Delete(): Promise<boolean>;
18806
- /**
18807
18759
  * * Field Name: ID
18808
18760
  * * Display Name: ID
18809
18761
  * * SQL Data Type: uniqueidentifier
@@ -19155,15 +19107,6 @@ export declare class RecommendationProviderEntity extends BaseEntity<Recommendat
19155
19107
  */
19156
19108
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
19157
19109
  /**
19158
- * 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.
19159
- * @public
19160
- * @method
19161
- * @override
19162
- * @memberof RecommendationProviderEntity
19163
- * @throws {Error} - Delete is not allowed for Recommendation Providers, to enable it set AllowDeleteAPI to 1 in the database.
19164
- */
19165
- Delete(): Promise<boolean>;
19166
- /**
19167
19110
  * * Field Name: ID
19168
19111
  * * Display Name: ID
19169
19112
  * * SQL Data Type: uniqueidentifier
@@ -20800,15 +20743,6 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity<RowLevelSec
20800
20743
  */
20801
20744
  Save(options?: EntitySaveOptions): Promise<boolean>;
20802
20745
  /**
20803
- * 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.
20804
- * @public
20805
- * @method
20806
- * @override
20807
- * @memberof RowLevelSecurityFilterEntity
20808
- * @throws {Error} - Delete is not allowed for Row Level Security Filters, to enable it set AllowDeleteAPI to 1 in the database.
20809
- */
20810
- Delete(): Promise<boolean>;
20811
- /**
20812
20746
  * * Field Name: ID
20813
20747
  * * Display Name: ID
20814
20748
  * * SQL Data Type: uniqueidentifier
@@ -21239,15 +21173,6 @@ export declare class SkillEntity extends BaseEntity<SkillEntityType> {
21239
21173
  */
21240
21174
  Save(options?: EntitySaveOptions): Promise<boolean>;
21241
21175
  /**
21242
- * 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.
21243
- * @public
21244
- * @method
21245
- * @override
21246
- * @memberof SkillEntity
21247
- * @throws {Error} - Delete is not allowed for Skills, to enable it set AllowDeleteAPI to 1 in the database.
21248
- */
21249
- Delete(): Promise<boolean>;
21250
- /**
21251
21176
  * * Field Name: ID
21252
21177
  * * SQL Data Type: uniqueidentifier
21253
21178
  * * Default Value: newsequentialid()
@@ -21412,15 +21337,6 @@ export declare class TagEntity extends BaseEntity<TagEntityType> {
21412
21337
  */
21413
21338
  Save(options?: EntitySaveOptions): Promise<boolean>;
21414
21339
  /**
21415
- * 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.
21416
- * @public
21417
- * @method
21418
- * @override
21419
- * @memberof TagEntity
21420
- * @throws {Error} - Delete is not allowed for Tags, to enable it set AllowDeleteAPI to 1 in the database.
21421
- */
21422
- Delete(): Promise<boolean>;
21423
- /**
21424
21340
  * * Field Name: ID
21425
21341
  * * Display Name: ID
21426
21342
  * * SQL Data Type: uniqueidentifier
@@ -21502,15 +21418,6 @@ export declare class TemplateCategoryEntity extends BaseEntity<TemplateCategoryE
21502
21418
  */
21503
21419
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
21504
21420
  /**
21505
- * 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.
21506
- * @public
21507
- * @method
21508
- * @override
21509
- * @memberof TemplateCategoryEntity
21510
- * @throws {Error} - Delete is not allowed for Template Categories, to enable it set AllowDeleteAPI to 1 in the database.
21511
- */
21512
- Delete(): Promise<boolean>;
21513
- /**
21514
21421
  * * Field Name: ID
21515
21422
  * * Display Name: ID
21516
21423
  * * SQL Data Type: uniqueidentifier
@@ -21601,15 +21508,6 @@ export declare class TemplateContentTypeEntity extends BaseEntity<TemplateConten
21601
21508
  */
21602
21509
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
21603
21510
  /**
21604
- * 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.
21605
- * @public
21606
- * @method
21607
- * @override
21608
- * @memberof TemplateContentTypeEntity
21609
- * @throws {Error} - Delete is not allowed for Template Content Types, to enable it set AllowDeleteAPI to 1 in the database.
21610
- */
21611
- Delete(): Promise<boolean>;
21612
- /**
21613
21511
  * * Field Name: ID
21614
21512
  * * Display Name: ID
21615
21513
  * * SQL Data Type: uniqueidentifier
@@ -21690,15 +21588,6 @@ export declare class TemplateContentEntity extends BaseEntity<TemplateContentEnt
21690
21588
  */
21691
21589
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
21692
21590
  /**
21693
- * 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.
21694
- * @public
21695
- * @method
21696
- * @override
21697
- * @memberof TemplateContentEntity
21698
- * @throws {Error} - Delete is not allowed for Template Contents, to enable it set AllowDeleteAPI to 1 in the database.
21699
- */
21700
- Delete(): Promise<boolean>;
21701
- /**
21702
21591
  * * Field Name: ID
21703
21592
  * * Display Name: ID
21704
21593
  * * SQL Data Type: uniqueidentifier
@@ -21798,15 +21687,6 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
21798
21687
  */
21799
21688
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
21800
21689
  /**
21801
- * 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.
21802
- * @public
21803
- * @method
21804
- * @override
21805
- * @memberof TemplateParamEntity
21806
- * @throws {Error} - Delete is not allowed for Template Params, to enable it set AllowDeleteAPI to 1 in the database.
21807
- */
21808
- Delete(): Promise<boolean>;
21809
- /**
21810
21690
  * * Field Name: ID
21811
21691
  * * Display Name: ID
21812
21692
  * * SQL Data Type: uniqueidentifier
@@ -21969,15 +21849,6 @@ export declare class TemplateEntity extends BaseEntity<TemplateEntityType> {
21969
21849
  */
21970
21850
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
21971
21851
  /**
21972
- * 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.
21973
- * @public
21974
- * @method
21975
- * @override
21976
- * @memberof TemplateEntity
21977
- * @throws {Error} - Delete is not allowed for Templates, to enable it set AllowDeleteAPI to 1 in the database.
21978
- */
21979
- Delete(): Promise<boolean>;
21980
- /**
21981
21852
  * * Field Name: ID
21982
21853
  * * Display Name: ID
21983
21854
  * * SQL Data Type: uniqueidentifier
@@ -23322,15 +23193,6 @@ export declare class VectorDatabaseEntity extends BaseEntity<VectorDatabaseEntit
23322
23193
  */
23323
23194
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23324
23195
  /**
23325
- * 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.
23326
- * @public
23327
- * @method
23328
- * @override
23329
- * @memberof VectorDatabaseEntity
23330
- * @throws {Error} - Delete is not allowed for Vector Databases, to enable it set AllowDeleteAPI to 1 in the database.
23331
- */
23332
- Delete(): Promise<boolean>;
23333
- /**
23334
23196
  * * Field Name: ID
23335
23197
  * * Display Name: ID
23336
23198
  * * SQL Data Type: uniqueidentifier
@@ -23404,15 +23266,6 @@ export declare class VectorIndexEntity extends BaseEntity<VectorIndexEntityType>
23404
23266
  */
23405
23267
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23406
23268
  /**
23407
- * 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.
23408
- * @public
23409
- * @method
23410
- * @override
23411
- * @memberof VectorIndexEntity
23412
- * @throws {Error} - Delete is not allowed for Vector Indexes, to enable it set AllowDeleteAPI to 1 in the database.
23413
- */
23414
- Delete(): Promise<boolean>;
23415
- /**
23416
23269
  * * Field Name: ID
23417
23270
  * * Display Name: ID
23418
23271
  * * SQL Data Type: uniqueidentifier
@@ -23632,15 +23485,6 @@ export declare class WorkflowEngineEntity extends BaseEntity<WorkflowEngineEntit
23632
23485
  */
23633
23486
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23634
23487
  /**
23635
- * 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.
23636
- * @public
23637
- * @method
23638
- * @override
23639
- * @memberof WorkflowEngineEntity
23640
- * @throws {Error} - Delete is not allowed for Workflow Engines, to enable it set AllowDeleteAPI to 1 in the database.
23641
- */
23642
- Delete(): Promise<boolean>;
23643
- /**
23644
23488
  * * Field Name: ID
23645
23489
  * * SQL Data Type: uniqueidentifier
23646
23490
  * * Default Value: newsequentialid()