@memberjunction/core-entities 2.55.0 → 2.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { BaseEntity, EntitySaveOptions, ValidationResult } from "@memberjunction/core";
1
+ import { BaseEntity, ValidationResult } from "@memberjunction/core";
2
2
  import { z } from "zod";
3
3
  export declare const loadModule: () => void;
4
4
  /**
@@ -329,6 +329,7 @@ export declare const ActionSchema: z.ZodObject<{
329
329
  __mj_UpdatedAt: z.ZodDate;
330
330
  DriverClass: z.ZodNullable<z.ZodString>;
331
331
  ParentID: z.ZodNullable<z.ZodString>;
332
+ IconClass: z.ZodNullable<z.ZodString>;
332
333
  Category: z.ZodNullable<z.ZodString>;
333
334
  CodeApprovedByUser: z.ZodNullable<z.ZodString>;
334
335
  Parent: z.ZodNullable<z.ZodString>;
@@ -355,6 +356,7 @@ export declare const ActionSchema: z.ZodObject<{
355
356
  CodeLocked?: boolean;
356
357
  ForceCodeGeneration?: boolean;
357
358
  DriverClass?: string;
359
+ IconClass?: string;
358
360
  Category?: string;
359
361
  CodeApprovedByUser?: string;
360
362
  }, {
@@ -380,6 +382,7 @@ export declare const ActionSchema: z.ZodObject<{
380
382
  CodeLocked?: boolean;
381
383
  ForceCodeGeneration?: boolean;
382
384
  DriverClass?: string;
385
+ IconClass?: string;
383
386
  Category?: string;
384
387
  CodeApprovedByUser?: string;
385
388
  }>;
@@ -659,6 +662,8 @@ export declare const AIAgentSchema: z.ZodObject<{
659
662
  TypeID: z.ZodNullable<z.ZodString>;
660
663
  Status: z.ZodNullable<z.ZodString>;
661
664
  DriverClass: z.ZodNullable<z.ZodString>;
665
+ IconClass: z.ZodNullable<z.ZodString>;
666
+ ModelSelectionMode: z.ZodUnion<[z.ZodLiteral<"Agent Type">, z.ZodLiteral<"Agent">]>;
662
667
  Parent: z.ZodNullable<z.ZodString>;
663
668
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
664
669
  Type: z.ZodNullable<z.ZodString>;
@@ -673,6 +678,7 @@ export declare const AIAgentSchema: z.ZodObject<{
673
678
  Parent?: string;
674
679
  Type?: string;
675
680
  DriverClass?: string;
681
+ IconClass?: string;
676
682
  LogoURL?: string;
677
683
  ExposeAsAction?: boolean;
678
684
  ExecutionOrder?: number;
@@ -682,6 +688,7 @@ export declare const AIAgentSchema: z.ZodObject<{
682
688
  ContextCompressionPromptID?: string;
683
689
  ContextCompressionMessageRetentionCount?: number;
684
690
  TypeID?: string;
691
+ ModelSelectionMode?: "Agent" | "Agent Type";
685
692
  ContextCompressionPrompt?: string;
686
693
  }, {
687
694
  ID?: string;
@@ -694,6 +701,7 @@ export declare const AIAgentSchema: z.ZodObject<{
694
701
  Parent?: string;
695
702
  Type?: string;
696
703
  DriverClass?: string;
704
+ IconClass?: string;
697
705
  LogoURL?: string;
698
706
  ExposeAsAction?: boolean;
699
707
  ExecutionOrder?: number;
@@ -703,6 +711,7 @@ export declare const AIAgentSchema: z.ZodObject<{
703
711
  ContextCompressionPromptID?: string;
704
712
  ContextCompressionMessageRetentionCount?: number;
705
713
  TypeID?: string;
714
+ ModelSelectionMode?: "Agent" | "Agent Type";
706
715
  ContextCompressionPrompt?: string;
707
716
  }>;
708
717
  export type AIAgentEntityType = z.infer<typeof AIAgentSchema>;
@@ -5135,6 +5144,20 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5135
5144
  LogProbs: z.ZodNullable<z.ZodBoolean>;
5136
5145
  TopLogProbs: z.ZodNullable<z.ZodNumber>;
5137
5146
  DescendantCost: z.ZodNullable<z.ZodNumber>;
5147
+ ValidationAttemptCount: z.ZodNullable<z.ZodNumber>;
5148
+ SuccessfulValidationCount: z.ZodNullable<z.ZodNumber>;
5149
+ FinalValidationPassed: z.ZodNullable<z.ZodBoolean>;
5150
+ ValidationBehavior: z.ZodNullable<z.ZodString>;
5151
+ RetryStrategy: z.ZodNullable<z.ZodString>;
5152
+ MaxRetriesConfigured: z.ZodNullable<z.ZodNumber>;
5153
+ FinalValidationError: z.ZodNullable<z.ZodString>;
5154
+ ValidationErrorCount: z.ZodNullable<z.ZodNumber>;
5155
+ CommonValidationError: z.ZodNullable<z.ZodString>;
5156
+ FirstAttemptAt: z.ZodNullable<z.ZodDate>;
5157
+ LastAttemptAt: z.ZodNullable<z.ZodDate>;
5158
+ TotalRetryDurationMS: z.ZodNullable<z.ZodNumber>;
5159
+ ValidationAttempts: z.ZodNullable<z.ZodString>;
5160
+ ValidationSummary: z.ZodNullable<z.ZodString>;
5138
5161
  Prompt: z.ZodString;
5139
5162
  Model: z.ZodString;
5140
5163
  Vendor: z.ZodString;
@@ -5152,6 +5175,8 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5152
5175
  ExecutionOrder?: number;
5153
5176
  Vendor?: string;
5154
5177
  ResponseFormat?: string;
5178
+ ValidationBehavior?: string;
5179
+ RetryStrategy?: string;
5155
5180
  Temperature?: number;
5156
5181
  TopP?: number;
5157
5182
  TopK?: number;
@@ -5186,6 +5211,18 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5186
5211
  TokensCompletionRollup?: number;
5187
5212
  LogProbs?: boolean;
5188
5213
  DescendantCost?: number;
5214
+ ValidationAttemptCount?: number;
5215
+ SuccessfulValidationCount?: number;
5216
+ FinalValidationPassed?: boolean;
5217
+ MaxRetriesConfigured?: number;
5218
+ FinalValidationError?: string;
5219
+ ValidationErrorCount?: number;
5220
+ CommonValidationError?: string;
5221
+ FirstAttemptAt?: Date;
5222
+ LastAttemptAt?: Date;
5223
+ TotalRetryDurationMS?: number;
5224
+ ValidationAttempts?: string;
5225
+ ValidationSummary?: string;
5189
5226
  }, {
5190
5227
  ID?: string;
5191
5228
  __mj_CreatedAt?: Date;
@@ -5198,6 +5235,8 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5198
5235
  ExecutionOrder?: number;
5199
5236
  Vendor?: string;
5200
5237
  ResponseFormat?: string;
5238
+ ValidationBehavior?: string;
5239
+ RetryStrategy?: string;
5201
5240
  Temperature?: number;
5202
5241
  TopP?: number;
5203
5242
  TopK?: number;
@@ -5232,6 +5271,18 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5232
5271
  TokensCompletionRollup?: number;
5233
5272
  LogProbs?: boolean;
5234
5273
  DescendantCost?: number;
5274
+ ValidationAttemptCount?: number;
5275
+ SuccessfulValidationCount?: number;
5276
+ FinalValidationPassed?: boolean;
5277
+ MaxRetriesConfigured?: number;
5278
+ FinalValidationError?: string;
5279
+ ValidationErrorCount?: number;
5280
+ CommonValidationError?: string;
5281
+ FirstAttemptAt?: Date;
5282
+ LastAttemptAt?: Date;
5283
+ TotalRetryDurationMS?: number;
5284
+ ValidationAttempts?: string;
5285
+ ValidationSummary?: string;
5235
5286
  }>;
5236
5287
  export type AIPromptRunEntityType = z.infer<typeof AIPromptRunSchema>;
5237
5288
  /**
@@ -8902,6 +8953,14 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
8902
8953
  get ParentID(): string | null;
8903
8954
  set ParentID(value: string | null);
8904
8955
  /**
8956
+ * * Field Name: IconClass
8957
+ * * Display Name: Icon Class
8958
+ * * SQL Data Type: nvarchar(100)
8959
+ * * Description: Font Awesome icon class (e.g., fa-cog, fa-play, fa-search) for visual representation of the action.
8960
+ */
8961
+ get IconClass(): string | null;
8962
+ set IconClass(value: string | null);
8963
+ /**
8905
8964
  * * Field Name: Category
8906
8965
  * * Display Name: Category
8907
8966
  * * SQL Data Type: nvarchar(255)
@@ -9803,6 +9862,27 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
9803
9862
  get DriverClass(): string | null;
9804
9863
  set DriverClass(value: string | null);
9805
9864
  /**
9865
+ * * Field Name: IconClass
9866
+ * * Display Name: Icon Class
9867
+ * * SQL Data Type: nvarchar(100)
9868
+ * * Description: Font Awesome icon class (e.g., fa-robot, fa-brain) for the agent. Used as fallback when LogoURL is not set or fails to load.
9869
+ */
9870
+ get IconClass(): string | null;
9871
+ set IconClass(value: string | null);
9872
+ /**
9873
+ * * Field Name: ModelSelectionMode
9874
+ * * Display Name: Model Selection Mode
9875
+ * * SQL Data Type: nvarchar(50)
9876
+ * * Default Value: Agent Type
9877
+ * * Value List Type: List
9878
+ * * Possible Values
9879
+ * * Agent Type
9880
+ * * Agent
9881
+ * * Description: Controls whether model selection is driven by the Agent Type's system prompt or the Agent's specific prompt. Default is Agent Type for backward compatibility.
9882
+ */
9883
+ get ModelSelectionMode(): 'Agent Type' | 'Agent';
9884
+ set ModelSelectionMode(value: 'Agent Type' | 'Agent');
9885
+ /**
9806
9886
  * * Field Name: Parent
9807
9887
  * * Display Name: Parent
9808
9888
  * * SQL Data Type: nvarchar(255)
@@ -11333,24 +11413,6 @@ export declare class AuditLogTypeEntity extends BaseEntity<AuditLogTypeEntityTyp
11333
11413
  */
11334
11414
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11335
11415
  /**
11336
- * Audit Log Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11337
- * @public
11338
- * @method
11339
- * @override
11340
- * @memberof AuditLogTypeEntity
11341
- * @throws {Error} - Save is not allowed for Audit Log Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11342
- */
11343
- Save(options?: EntitySaveOptions): Promise<boolean>;
11344
- /**
11345
- * Audit Log Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
11346
- * @public
11347
- * @method
11348
- * @override
11349
- * @memberof AuditLogTypeEntity
11350
- * @throws {Error} - Delete is not allowed for Audit Log Types, to enable it set AllowDeleteAPI to 1 in the database.
11351
- */
11352
- Delete(): Promise<boolean>;
11353
- /**
11354
11416
  * * Field Name: ID
11355
11417
  * * Display Name: ID
11356
11418
  * * SQL Data Type: uniqueidentifier
@@ -11439,15 +11501,6 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
11439
11501
  */
11440
11502
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11441
11503
  /**
11442
- * Audit Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
11443
- * @public
11444
- * @method
11445
- * @override
11446
- * @memberof AuditLogEntity
11447
- * @throws {Error} - Delete is not allowed for Audit Logs, to enable it set AllowDeleteAPI to 1 in the database.
11448
- */
11449
- Delete(): Promise<boolean>;
11450
- /**
11451
11504
  * * Field Name: ID
11452
11505
  * * Display Name: ID
11453
11506
  * * SQL Data Type: uniqueidentifier
@@ -11583,24 +11636,6 @@ export declare class AuthorizationRoleEntity extends BaseEntity<AuthorizationRol
11583
11636
  */
11584
11637
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11585
11638
  /**
11586
- * Authorization Roles - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11587
- * @public
11588
- * @method
11589
- * @override
11590
- * @memberof AuthorizationRoleEntity
11591
- * @throws {Error} - Save is not allowed for Authorization Roles, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11592
- */
11593
- Save(options?: EntitySaveOptions): Promise<boolean>;
11594
- /**
11595
- * Authorization Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
11596
- * @public
11597
- * @method
11598
- * @override
11599
- * @memberof AuthorizationRoleEntity
11600
- * @throws {Error} - Delete is not allowed for Authorization Roles, to enable it set AllowDeleteAPI to 1 in the database.
11601
- */
11602
- Delete(): Promise<boolean>;
11603
- /**
11604
11639
  * * Field Name: ID
11605
11640
  * * Display Name: ID
11606
11641
  * * SQL Data Type: uniqueidentifier
@@ -11687,24 +11722,6 @@ export declare class AuthorizationEntity extends BaseEntity<AuthorizationEntityT
11687
11722
  */
11688
11723
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11689
11724
  /**
11690
- * Authorizations - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11691
- * @public
11692
- * @method
11693
- * @override
11694
- * @memberof AuthorizationEntity
11695
- * @throws {Error} - Save is not allowed for Authorizations, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11696
- */
11697
- Save(options?: EntitySaveOptions): Promise<boolean>;
11698
- /**
11699
- * Authorizations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
11700
- * @public
11701
- * @method
11702
- * @override
11703
- * @memberof AuthorizationEntity
11704
- * @throws {Error} - Delete is not allowed for Authorizations, to enable it set AllowDeleteAPI to 1 in the database.
11705
- */
11706
- Delete(): Promise<boolean>;
11707
- /**
11708
11725
  * * Field Name: ID
11709
11726
  * * Display Name: ID
11710
11727
  * * SQL Data Type: uniqueidentifier
@@ -11886,15 +11903,6 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
11886
11903
  */
11887
11904
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11888
11905
  /**
11889
- * Communication Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
11890
- * @public
11891
- * @method
11892
- * @override
11893
- * @memberof CommunicationLogEntity
11894
- * @throws {Error} - Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.
11895
- */
11896
- Delete(): Promise<boolean>;
11897
- /**
11898
11906
  * * Field Name: ID
11899
11907
  * * Display Name: ID
11900
11908
  * * SQL Data Type: uniqueidentifier
@@ -12266,15 +12274,6 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
12266
12274
  */
12267
12275
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12268
12276
  /**
12269
- * Communication Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
12270
- * @public
12271
- * @method
12272
- * @override
12273
- * @memberof CommunicationRunEntity
12274
- * @throws {Error} - Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.
12275
- */
12276
- Delete(): Promise<boolean>;
12277
- /**
12278
12277
  * * Field Name: ID
12279
12278
  * * Display Name: ID
12280
12279
  * * SQL Data Type: uniqueidentifier
@@ -12468,15 +12467,6 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity<Compan
12468
12467
  */
12469
12468
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12470
12469
  /**
12471
- * Company Integration Record Maps - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
12472
- * @public
12473
- * @method
12474
- * @override
12475
- * @memberof CompanyIntegrationRecordMapEntity
12476
- * @throws {Error} - Delete is not allowed for Company Integration Record Maps, to enable it set AllowDeleteAPI to 1 in the database.
12477
- */
12478
- Delete(): Promise<boolean>;
12479
- /**
12480
12470
  * * Field Name: ID
12481
12471
  * * Display Name: ID
12482
12472
  * * SQL Data Type: uniqueidentifier
@@ -12559,15 +12549,6 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
12559
12549
  */
12560
12550
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12561
12551
  /**
12562
- * Company Integration Run API Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
12563
- * @public
12564
- * @method
12565
- * @override
12566
- * @memberof CompanyIntegrationRunAPILogEntity
12567
- * @throws {Error} - Delete is not allowed for Company Integration Run API Logs, to enable it set AllowDeleteAPI to 1 in the database.
12568
- */
12569
- Delete(): Promise<boolean>;
12570
- /**
12571
12552
  * * Field Name: ID
12572
12553
  * * SQL Data Type: uniqueidentifier
12573
12554
  * * Default Value: newsequentialid()
@@ -12665,15 +12646,6 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity<Compan
12665
12646
  */
12666
12647
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12667
12648
  /**
12668
- * Company Integration Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
12669
- * @public
12670
- * @method
12671
- * @override
12672
- * @memberof CompanyIntegrationRunDetailEntity
12673
- * @throws {Error} - Delete is not allowed for Company Integration Run Details, to enable it set AllowDeleteAPI to 1 in the database.
12674
- */
12675
- Delete(): Promise<boolean>;
12676
- /**
12677
12649
  * * Field Name: ID
12678
12650
  * * SQL Data Type: uniqueidentifier
12679
12651
  * * Default Value: newsequentialid()
@@ -12781,15 +12753,6 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
12781
12753
  */
12782
12754
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12783
12755
  /**
12784
- * Company Integration Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
12785
- * @public
12786
- * @method
12787
- * @override
12788
- * @memberof CompanyIntegrationRunEntity
12789
- * @throws {Error} - Delete is not allowed for Company Integration Runs, to enable it set AllowDeleteAPI to 1 in the database.
12790
- */
12791
- Delete(): Promise<boolean>;
12792
- /**
12793
12756
  * * Field Name: ID
12794
12757
  * * SQL Data Type: uniqueidentifier
12795
12758
  * * Default Value: newsequentialid()
@@ -14843,15 +14806,6 @@ export declare class DatasetItemEntity extends BaseEntity<DatasetItemEntityType>
14843
14806
  */
14844
14807
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14845
14808
  /**
14846
- * Dataset Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
14847
- * @public
14848
- * @method
14849
- * @override
14850
- * @memberof DatasetItemEntity
14851
- * @throws {Error} - Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
14852
- */
14853
- Save(options?: EntitySaveOptions): Promise<boolean>;
14854
- /**
14855
14809
  * * Field Name: ID
14856
14810
  * * Display Name: ID
14857
14811
  * * SQL Data Type: uniqueidentifier
@@ -14971,15 +14925,6 @@ export declare class DatasetEntity extends BaseEntity<DatasetEntityType> {
14971
14925
  */
14972
14926
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14973
14927
  /**
14974
- * Datasets - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
14975
- * @public
14976
- * @method
14977
- * @override
14978
- * @memberof DatasetEntity
14979
- * @throws {Error} - Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
14980
- */
14981
- Save(options?: EntitySaveOptions): Promise<boolean>;
14982
- /**
14983
14928
  * * Field Name: ID
14984
14929
  * * Display Name: ID
14985
14930
  * * SQL Data Type: uniqueidentifier
@@ -15040,15 +14985,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
15040
14985
  */
15041
14986
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15042
14987
  /**
15043
- * Duplicate Run Detail Matches - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
15044
- * @public
15045
- * @method
15046
- * @override
15047
- * @memberof DuplicateRunDetailMatchEntity
15048
- * @throws {Error} - Delete is not allowed for Duplicate Run Detail Matches, to enable it set AllowDeleteAPI to 1 in the database.
15049
- */
15050
- Delete(): Promise<boolean>;
15051
- /**
15052
14988
  * * Field Name: ID
15053
14989
  * * Display Name: ID
15054
14990
  * * SQL Data Type: uniqueidentifier
@@ -15190,15 +15126,6 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
15190
15126
  */
15191
15127
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15192
15128
  /**
15193
- * Duplicate Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
15194
- * @public
15195
- * @method
15196
- * @override
15197
- * @memberof DuplicateRunDetailEntity
15198
- * @throws {Error} - Delete is not allowed for Duplicate Run Details, to enable it set AllowDeleteAPI to 1 in the database.
15199
- */
15200
- Delete(): Promise<boolean>;
15201
- /**
15202
15129
  * * Field Name: ID
15203
15130
  * * Display Name: ID
15204
15131
  * * SQL Data Type: uniqueidentifier
@@ -15311,15 +15238,6 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
15311
15238
  */
15312
15239
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15313
15240
  /**
15314
- * Duplicate Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
15315
- * @public
15316
- * @method
15317
- * @override
15318
- * @memberof DuplicateRunEntity
15319
- * @throws {Error} - Delete is not allowed for Duplicate Runs, to enable it set AllowDeleteAPI to 1 in the database.
15320
- */
15321
- Delete(): Promise<boolean>;
15322
- /**
15323
15241
  * * Field Name: ID
15324
15242
  * * Display Name: ID
15325
15243
  * * SQL Data Type: uniqueidentifier
@@ -15478,15 +15396,6 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
15478
15396
  */
15479
15397
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15480
15398
  /**
15481
- * Employee Company Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
15482
- * @public
15483
- * @method
15484
- * @override
15485
- * @memberof EmployeeCompanyIntegrationEntity
15486
- * @throws {Error} - Delete is not allowed for Employee Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.
15487
- */
15488
- Delete(): Promise<boolean>;
15489
- /**
15490
15399
  * * Field Name: ID
15491
15400
  * * SQL Data Type: uniqueidentifier
15492
15401
  * * Default Value: newsequentialid()
@@ -17137,15 +17046,6 @@ export declare class EntityDocumentRunEntity extends BaseEntity<EntityDocumentRu
17137
17046
  */
17138
17047
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17139
17048
  /**
17140
- * Entity Document Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
17141
- * @public
17142
- * @method
17143
- * @override
17144
- * @memberof EntityDocumentRunEntity
17145
- * @throws {Error} - Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.
17146
- */
17147
- Delete(): Promise<boolean>;
17148
- /**
17149
17049
  * * Field Name: ID
17150
17050
  * * Display Name: ID
17151
17051
  * * SQL Data Type: uniqueidentifier
@@ -17375,15 +17275,6 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
17375
17275
  */
17376
17276
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17377
17277
  /**
17378
- * Entity Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
17379
- * @public
17380
- * @method
17381
- * @override
17382
- * @memberof EntityDocumentEntity
17383
- * @throws {Error} - Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.
17384
- */
17385
- Delete(): Promise<boolean>;
17386
- /**
17387
17278
  * Validate() method override for Entity Documents entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
17388
17279
  * * Table-Level: This rule ensures that the potential match threshold is not greater than the absolute match threshold, and both thresholds must be between 0 and 1 inclusive.
17389
17280
  * @public
@@ -17552,15 +17443,6 @@ export declare class EntityFieldValueEntity extends BaseEntity<EntityFieldValueE
17552
17443
  */
17553
17444
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17554
17445
  /**
17555
- * Entity Field Values - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
17556
- * @public
17557
- * @method
17558
- * @override
17559
- * @memberof EntityFieldValueEntity
17560
- * @throws {Error} - Delete is not allowed for Entity Field Values, to enable it set AllowDeleteAPI to 1 in the database.
17561
- */
17562
- Delete(): Promise<boolean>;
17563
- /**
17564
17446
  * * Field Name: ID
17565
17447
  * * Display Name: ID
17566
17448
  * * SQL Data Type: uniqueidentifier
@@ -18325,15 +18207,6 @@ export declare class EntityRecordDocumentEntity extends BaseEntity<EntityRecordD
18325
18207
  */
18326
18208
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18327
18209
  /**
18328
- * Entity Record Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
18329
- * @public
18330
- * @method
18331
- * @override
18332
- * @memberof EntityRecordDocumentEntity
18333
- * @throws {Error} - Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.
18334
- */
18335
- Delete(): Promise<boolean>;
18336
- /**
18337
18210
  * * Field Name: ID
18338
18211
  * * Display Name: ID
18339
18212
  * * SQL Data Type: uniqueidentifier
@@ -18458,15 +18331,6 @@ export declare class EntityRelationshipDisplayComponentEntity extends BaseEntity
18458
18331
  */
18459
18332
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18460
18333
  /**
18461
- * Entity Relationship Display Components - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
18462
- * @public
18463
- * @method
18464
- * @override
18465
- * @memberof EntityRelationshipDisplayComponentEntity
18466
- * @throws {Error} - Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.
18467
- */
18468
- Delete(): Promise<boolean>;
18469
- /**
18470
18334
  * * Field Name: ID
18471
18335
  * * Display Name: ID
18472
18336
  * * SQL Data Type: uniqueidentifier
@@ -18896,15 +18760,6 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
18896
18760
  */
18897
18761
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18898
18762
  /**
18899
- * Error Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
18900
- * @public
18901
- * @method
18902
- * @override
18903
- * @memberof ErrorLogEntity
18904
- * @throws {Error} - Delete is not allowed for Error Logs, to enable it set AllowDeleteAPI to 1 in the database.
18905
- */
18906
- Delete(): Promise<boolean>;
18907
- /**
18908
18763
  * * Field Name: ID
18909
18764
  * * SQL Data Type: uniqueidentifier
18910
18765
  * * Default Value: newsequentialid()
@@ -19427,7 +19282,7 @@ export declare class FileEntity extends BaseEntity<FileEntityType> {
19427
19282
  /**
19428
19283
  * * Field Name: ContentType
19429
19284
  * * Display Name: Content Type
19430
- * * SQL Data Type: nvarchar(50)
19285
+ * * SQL Data Type: nvarchar(255)
19431
19286
  */
19432
19287
  get ContentType(): string | null;
19433
19288
  set ContentType(value: string | null);
@@ -22470,6 +22325,118 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
22470
22325
  get DescendantCost(): number | null;
22471
22326
  set DescendantCost(value: number | null);
22472
22327
  /**
22328
+ * * Field Name: ValidationAttemptCount
22329
+ * * Display Name: Validation Attempt Count
22330
+ * * SQL Data Type: int
22331
+ * * Description: Total number of validation attempts made (including the initial attempt)
22332
+ */
22333
+ get ValidationAttemptCount(): number | null;
22334
+ set ValidationAttemptCount(value: number | null);
22335
+ /**
22336
+ * * Field Name: SuccessfulValidationCount
22337
+ * * Display Name: Successful Validation Count
22338
+ * * SQL Data Type: int
22339
+ * * Description: Number of validation attempts that passed validation
22340
+ */
22341
+ get SuccessfulValidationCount(): number | null;
22342
+ set SuccessfulValidationCount(value: number | null);
22343
+ /**
22344
+ * * Field Name: FinalValidationPassed
22345
+ * * Display Name: Final Validation Passed
22346
+ * * SQL Data Type: bit
22347
+ * * Description: Whether validation ultimately passed (1) or failed (0)
22348
+ */
22349
+ get FinalValidationPassed(): boolean | null;
22350
+ set FinalValidationPassed(value: boolean | null);
22351
+ /**
22352
+ * * Field Name: ValidationBehavior
22353
+ * * Display Name: Validation Behavior
22354
+ * * SQL Data Type: nvarchar(50)
22355
+ * * Description: Validation behavior used: Strict, Warn, or None
22356
+ */
22357
+ get ValidationBehavior(): string | null;
22358
+ set ValidationBehavior(value: string | null);
22359
+ /**
22360
+ * * Field Name: RetryStrategy
22361
+ * * Display Name: Retry Strategy
22362
+ * * SQL Data Type: nvarchar(50)
22363
+ * * Description: Retry strategy used: Fixed, Linear, or Exponential
22364
+ */
22365
+ get RetryStrategy(): string | null;
22366
+ set RetryStrategy(value: string | null);
22367
+ /**
22368
+ * * Field Name: MaxRetriesConfigured
22369
+ * * Display Name: Max Retries Configured
22370
+ * * SQL Data Type: int
22371
+ * * Description: Maximum number of retries configured on the prompt
22372
+ */
22373
+ get MaxRetriesConfigured(): number | null;
22374
+ set MaxRetriesConfigured(value: number | null);
22375
+ /**
22376
+ * * Field Name: FinalValidationError
22377
+ * * Display Name: Final Validation Error
22378
+ * * SQL Data Type: nvarchar(500)
22379
+ * * Description: The final validation error message if validation failed
22380
+ */
22381
+ get FinalValidationError(): string | null;
22382
+ set FinalValidationError(value: string | null);
22383
+ /**
22384
+ * * Field Name: ValidationErrorCount
22385
+ * * Display Name: Validation Error Count
22386
+ * * SQL Data Type: int
22387
+ * * Description: Number of validation errors on the final attempt
22388
+ */
22389
+ get ValidationErrorCount(): number | null;
22390
+ set ValidationErrorCount(value: number | null);
22391
+ /**
22392
+ * * Field Name: CommonValidationError
22393
+ * * Display Name: Common Validation Error
22394
+ * * SQL Data Type: nvarchar(255)
22395
+ * * Description: Most frequent validation error across all attempts
22396
+ */
22397
+ get CommonValidationError(): string | null;
22398
+ set CommonValidationError(value: string | null);
22399
+ /**
22400
+ * * Field Name: FirstAttemptAt
22401
+ * * Display Name: First Attempt At
22402
+ * * SQL Data Type: datetime
22403
+ * * Description: Timestamp of the first validation attempt
22404
+ */
22405
+ get FirstAttemptAt(): Date | null;
22406
+ set FirstAttemptAt(value: Date | null);
22407
+ /**
22408
+ * * Field Name: LastAttemptAt
22409
+ * * Display Name: Last Attempt At
22410
+ * * SQL Data Type: datetime
22411
+ * * Description: Timestamp of the last validation attempt
22412
+ */
22413
+ get LastAttemptAt(): Date | null;
22414
+ set LastAttemptAt(value: Date | null);
22415
+ /**
22416
+ * * Field Name: TotalRetryDurationMS
22417
+ * * Display Name: Total Retry Duration MS
22418
+ * * SQL Data Type: int
22419
+ * * Description: Total time spent on retries in milliseconds (excluding first attempt)
22420
+ */
22421
+ get TotalRetryDurationMS(): number | null;
22422
+ set TotalRetryDurationMS(value: number | null);
22423
+ /**
22424
+ * * Field Name: ValidationAttempts
22425
+ * * Display Name: Validation Attempts
22426
+ * * SQL Data Type: nvarchar(MAX)
22427
+ * * Description: JSON array containing detailed information about each validation attempt
22428
+ */
22429
+ get ValidationAttempts(): string | null;
22430
+ set ValidationAttempts(value: string | null);
22431
+ /**
22432
+ * * Field Name: ValidationSummary
22433
+ * * Display Name: Validation Summary
22434
+ * * SQL Data Type: nvarchar(MAX)
22435
+ * * Description: JSON object containing summary information about the validation process
22436
+ */
22437
+ get ValidationSummary(): string | null;
22438
+ set ValidationSummary(value: string | null);
22439
+ /**
22473
22440
  * * Field Name: Prompt
22474
22441
  * * Display Name: Prompt
22475
22442
  * * SQL Data Type: nvarchar(255)
@@ -23550,24 +23517,6 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity<OutputDeliveryT
23550
23517
  */
23551
23518
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23552
23519
  /**
23553
- * Output Delivery Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23554
- * @public
23555
- * @method
23556
- * @override
23557
- * @memberof OutputDeliveryTypeEntity
23558
- * @throws {Error} - Save is not allowed for Output Delivery Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23559
- */
23560
- Save(options?: EntitySaveOptions): Promise<boolean>;
23561
- /**
23562
- * Output Delivery Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
23563
- * @public
23564
- * @method
23565
- * @override
23566
- * @memberof OutputDeliveryTypeEntity
23567
- * @throws {Error} - Delete is not allowed for Output Delivery Types, to enable it set AllowDeleteAPI to 1 in the database.
23568
- */
23569
- Delete(): Promise<boolean>;
23570
- /**
23571
23520
  * * Field Name: ID
23572
23521
  * * Display Name: ID
23573
23522
  * * SQL Data Type: uniqueidentifier
@@ -23628,24 +23577,6 @@ export declare class OutputFormatTypeEntity extends BaseEntity<OutputFormatTypeE
23628
23577
  */
23629
23578
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23630
23579
  /**
23631
- * Output Format Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23632
- * @public
23633
- * @method
23634
- * @override
23635
- * @memberof OutputFormatTypeEntity
23636
- * @throws {Error} - Save is not allowed for Output Format Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23637
- */
23638
- Save(options?: EntitySaveOptions): Promise<boolean>;
23639
- /**
23640
- * Output Format Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
23641
- * @public
23642
- * @method
23643
- * @override
23644
- * @memberof OutputFormatTypeEntity
23645
- * @throws {Error} - Delete is not allowed for Output Format Types, to enable it set AllowDeleteAPI to 1 in the database.
23646
- */
23647
- Delete(): Promise<boolean>;
23648
- /**
23649
23580
  * * Field Name: ID
23650
23581
  * * Display Name: ID
23651
23582
  * * SQL Data Type: uniqueidentifier
@@ -23713,24 +23644,6 @@ export declare class OutputTriggerTypeEntity extends BaseEntity<OutputTriggerTyp
23713
23644
  */
23714
23645
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23715
23646
  /**
23716
- * Output Trigger Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23717
- * @public
23718
- * @method
23719
- * @override
23720
- * @memberof OutputTriggerTypeEntity
23721
- * @throws {Error} - Save is not allowed for Output Trigger Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23722
- */
23723
- Save(options?: EntitySaveOptions): Promise<boolean>;
23724
- /**
23725
- * Output Trigger Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
23726
- * @public
23727
- * @method
23728
- * @override
23729
- * @memberof OutputTriggerTypeEntity
23730
- * @throws {Error} - Delete is not allowed for Output Trigger Types, to enable it set AllowDeleteAPI to 1 in the database.
23731
- */
23732
- Delete(): Promise<boolean>;
23733
- /**
23734
23647
  * * Field Name: ID
23735
23648
  * * Display Name: ID
23736
23649
  * * SQL Data Type: uniqueidentifier
@@ -24320,15 +24233,6 @@ export declare class QueueTaskEntity extends BaseEntity<QueueTaskEntityType> {
24320
24233
  */
24321
24234
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24322
24235
  /**
24323
- * Queue Tasks - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
24324
- * @public
24325
- * @method
24326
- * @override
24327
- * @memberof QueueTaskEntity
24328
- * @throws {Error} - Delete is not allowed for Queue Tasks, to enable it set AllowDeleteAPI to 1 in the database.
24329
- */
24330
- Delete(): Promise<boolean>;
24331
- /**
24332
24236
  * * Field Name: ID
24333
24237
  * * Display Name: ID
24334
24238
  * * SQL Data Type: uniqueidentifier
@@ -24451,15 +24355,6 @@ export declare class QueueTypeEntity extends BaseEntity<QueueTypeEntityType> {
24451
24355
  */
24452
24356
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24453
24357
  /**
24454
- * Queue Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
24455
- * @public
24456
- * @method
24457
- * @override
24458
- * @memberof QueueTypeEntity
24459
- * @throws {Error} - Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
24460
- */
24461
- Save(options?: EntitySaveOptions): Promise<boolean>;
24462
- /**
24463
24358
  * * Field Name: ID
24464
24359
  * * Display Name: ID
24465
24360
  * * SQL Data Type: uniqueidentifier
@@ -24543,15 +24438,6 @@ export declare class QueueEntity extends BaseEntity<QueueEntityType> {
24543
24438
  */
24544
24439
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24545
24440
  /**
24546
- * Queues - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
24547
- * @public
24548
- * @method
24549
- * @override
24550
- * @memberof QueueEntity
24551
- * @throws {Error} - Delete is not allowed for Queues, to enable it set AllowDeleteAPI to 1 in the database.
24552
- */
24553
- Delete(): Promise<boolean>;
24554
- /**
24555
24441
  * * Field Name: ID
24556
24442
  * * Display Name: ID
24557
24443
  * * SQL Data Type: uniqueidentifier
@@ -24720,15 +24606,6 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
24720
24606
  */
24721
24607
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24722
24608
  /**
24723
- * Recommendation Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
24724
- * @public
24725
- * @method
24726
- * @override
24727
- * @memberof RecommendationItemEntity
24728
- * @throws {Error} - Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.
24729
- */
24730
- Delete(): Promise<boolean>;
24731
- /**
24732
24609
  * Validate() method override for Recommendation Items entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
24733
24610
  * * MatchProbability: This rule ensures that the match probability value is between 0 and 1, inclusive.
24734
24611
  * @public
@@ -24890,15 +24767,6 @@ export declare class RecommendationRunEntity extends BaseEntity<RecommendationRu
24890
24767
  */
24891
24768
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24892
24769
  /**
24893
- * Recommendation Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
24894
- * @public
24895
- * @method
24896
- * @override
24897
- * @memberof RecommendationRunEntity
24898
- * @throws {Error} - Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.
24899
- */
24900
- Delete(): Promise<boolean>;
24901
- /**
24902
24770
  * * Field Name: ID
24903
24771
  * * Display Name: ID
24904
24772
  * * SQL Data Type: uniqueidentifier
@@ -25012,15 +24880,6 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
25012
24880
  */
25013
24881
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25014
24882
  /**
25015
- * Recommendations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
25016
- * @public
25017
- * @method
25018
- * @override
25019
- * @memberof RecommendationEntity
25020
- * @throws {Error} - Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.
25021
- */
25022
- Delete(): Promise<boolean>;
25023
- /**
25024
24883
  * * Field Name: ID
25025
24884
  * * Display Name: ID
25026
24885
  * * SQL Data Type: uniqueidentifier
@@ -25098,15 +24957,6 @@ export declare class RecordChangeReplayRunEntity extends BaseEntity<RecordChange
25098
24957
  */
25099
24958
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25100
24959
  /**
25101
- * Record Change Replay Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
25102
- * @public
25103
- * @method
25104
- * @override
25105
- * @memberof RecordChangeReplayRunEntity
25106
- * @throws {Error} - Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.
25107
- */
25108
- Delete(): Promise<boolean>;
25109
- /**
25110
24960
  * * Field Name: ID
25111
24961
  * * Display Name: ID
25112
24962
  * * SQL Data Type: uniqueidentifier
@@ -25198,15 +25048,6 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
25198
25048
  */
25199
25049
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25200
25050
  /**
25201
- * Record Changes - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
25202
- * @public
25203
- * @method
25204
- * @override
25205
- * @memberof RecordChangeEntity
25206
- * @throws {Error} - Delete is not allowed for Record Changes, to enable it set AllowDeleteAPI to 1 in the database.
25207
- */
25208
- Delete(): Promise<boolean>;
25209
- /**
25210
25051
  * * Field Name: ID
25211
25052
  * * SQL Data Type: uniqueidentifier
25212
25053
  * * Default Value: newsequentialid()
@@ -25395,15 +25236,6 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
25395
25236
  */
25396
25237
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25397
25238
  /**
25398
- * Record Merge Deletion Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
25399
- * @public
25400
- * @method
25401
- * @override
25402
- * @memberof RecordMergeDeletionLogEntity
25403
- * @throws {Error} - Delete is not allowed for Record Merge Deletion Logs, to enable it set AllowDeleteAPI to 1 in the database.
25404
- */
25405
- Delete(): Promise<boolean>;
25406
- /**
25407
25239
  * * Field Name: ID
25408
25240
  * * Display Name: ID
25409
25241
  * * SQL Data Type: uniqueidentifier
@@ -25485,15 +25317,6 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
25485
25317
  */
25486
25318
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25487
25319
  /**
25488
- * Record Merge Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
25489
- * @public
25490
- * @method
25491
- * @override
25492
- * @memberof RecordMergeLogEntity
25493
- * @throws {Error} - Delete is not allowed for Record Merge Logs, to enable it set AllowDeleteAPI to 1 in the database.
25494
- */
25495
- Delete(): Promise<boolean>;
25496
- /**
25497
25320
  * * Field Name: ID
25498
25321
  * * Display Name: ID
25499
25322
  * * SQL Data Type: uniqueidentifier
@@ -26298,24 +26121,6 @@ export declare class ResourceTypeEntity extends BaseEntity<ResourceTypeEntityTyp
26298
26121
  */
26299
26122
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26300
26123
  /**
26301
- * Resource Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26302
- * @public
26303
- * @method
26304
- * @override
26305
- * @memberof ResourceTypeEntity
26306
- * @throws {Error} - Save is not allowed for Resource Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26307
- */
26308
- Save(options?: EntitySaveOptions): Promise<boolean>;
26309
- /**
26310
- * Resource Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
26311
- * @public
26312
- * @method
26313
- * @override
26314
- * @memberof ResourceTypeEntity
26315
- * @throws {Error} - Delete is not allowed for Resource Types, to enable it set AllowDeleteAPI to 1 in the database.
26316
- */
26317
- Delete(): Promise<boolean>;
26318
- /**
26319
26124
  * * Field Name: ID
26320
26125
  * * Display Name: ID
26321
26126
  * * SQL Data Type: uniqueidentifier
@@ -26493,15 +26298,6 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity<RowLevelSec
26493
26298
  */
26494
26299
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26495
26300
  /**
26496
- * Row Level Security Filters - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26497
- * @public
26498
- * @method
26499
- * @override
26500
- * @memberof RowLevelSecurityFilterEntity
26501
- * @throws {Error} - Save is not allowed for Row Level Security Filters, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26502
- */
26503
- Save(options?: EntitySaveOptions): Promise<boolean>;
26504
- /**
26505
26301
  * * Field Name: ID
26506
26302
  * * Display Name: ID
26507
26303
  * * SQL Data Type: uniqueidentifier
@@ -26843,15 +26639,6 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
26843
26639
  */
26844
26640
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26845
26641
  /**
26846
- * Schema Info - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
26847
- * @public
26848
- * @method
26849
- * @override
26850
- * @memberof SchemaInfoEntity
26851
- * @throws {Error} - Delete is not allowed for Schema Info, to enable it set AllowDeleteAPI to 1 in the database.
26852
- */
26853
- Delete(): Promise<boolean>;
26854
- /**
26855
26642
  * Validate() method override for Schema Info entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
26856
26643
  * * Table-Level: This rule ensures that both the minimum and maximum entity IDs must be greater than zero.
26857
26644
  * * Table-Level: This rule ensures that the maximum entity ID must be greater than the minimum entity ID, which helps to maintain valid and logical ranges for entity IDs.
@@ -26950,15 +26737,6 @@ export declare class SkillEntity extends BaseEntity<SkillEntityType> {
26950
26737
  */
26951
26738
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26952
26739
  /**
26953
- * Skills - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26954
- * @public
26955
- * @method
26956
- * @override
26957
- * @memberof SkillEntity
26958
- * @throws {Error} - Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26959
- */
26960
- Save(options?: EntitySaveOptions): Promise<boolean>;
26961
- /**
26962
26740
  * * Field Name: ID
26963
26741
  * * SQL Data Type: uniqueidentifier
26964
26742
  * * Default Value: newsequentialid()
@@ -27025,15 +26803,6 @@ export declare class TaggedItemEntity extends BaseEntity<TaggedItemEntityType> {
27025
26803
  */
27026
26804
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27027
26805
  /**
27028
- * Tagged Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27029
- * @public
27030
- * @method
27031
- * @override
27032
- * @memberof TaggedItemEntity
27033
- * @throws {Error} - Save is not allowed for Tagged Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27034
- */
27035
- Save(options?: EntitySaveOptions): Promise<boolean>;
27036
- /**
27037
26806
  * * Field Name: ID
27038
26807
  * * Display Name: ID
27039
26808
  * * SQL Data Type: uniqueidentifier
@@ -27116,15 +26885,6 @@ export declare class TagEntity extends BaseEntity<TagEntityType> {
27116
26885
  */
27117
26886
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27118
26887
  /**
27119
- * Tags - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27120
- * @public
27121
- * @method
27122
- * @override
27123
- * @memberof TagEntity
27124
- * @throws {Error} - Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27125
- */
27126
- Save(options?: EntitySaveOptions): Promise<boolean>;
27127
- /**
27128
26888
  * * Field Name: ID
27129
26889
  * * Display Name: ID
27130
26890
  * * SQL Data Type: uniqueidentifier
@@ -28152,15 +27912,6 @@ export declare class UserRecordLogEntity extends BaseEntity<UserRecordLogEntityT
28152
27912
  */
28153
27913
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28154
27914
  /**
28155
- * User Record Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
28156
- * @public
28157
- * @method
28158
- * @override
28159
- * @memberof UserRecordLogEntity
28160
- * @throws {Error} - Delete is not allowed for User Record Logs, to enable it set AllowDeleteAPI to 1 in the database.
28161
- */
28162
- Delete(): Promise<boolean>;
28163
- /**
28164
27915
  * * Field Name: ID
28165
27916
  * * SQL Data Type: uniqueidentifier
28166
27917
  * * Default Value: newsequentialid()
@@ -28466,15 +28217,6 @@ export declare class UserViewRunDetailEntity extends BaseEntity<UserViewRunDetai
28466
28217
  */
28467
28218
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28468
28219
  /**
28469
- * User View Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
28470
- * @public
28471
- * @method
28472
- * @override
28473
- * @memberof UserViewRunDetailEntity
28474
- * @throws {Error} - Delete is not allowed for User View Run Details, to enable it set AllowDeleteAPI to 1 in the database.
28475
- */
28476
- Delete(): Promise<boolean>;
28477
- /**
28478
28220
  * * Field Name: ID
28479
28221
  * * SQL Data Type: uniqueidentifier
28480
28222
  * * Default Value: newsequentialid()
@@ -28548,15 +28290,6 @@ export declare class UserViewRunEntity extends BaseEntity<UserViewRunEntityType>
28548
28290
  */
28549
28291
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28550
28292
  /**
28551
- * User View Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
28552
- * @public
28553
- * @method
28554
- * @override
28555
- * @memberof UserViewRunEntity
28556
- * @throws {Error} - Delete is not allowed for User View Runs, to enable it set AllowDeleteAPI to 1 in the database.
28557
- */
28558
- Delete(): Promise<boolean>;
28559
- /**
28560
28293
  * * Field Name: ID
28561
28294
  * * SQL Data Type: uniqueidentifier
28562
28295
  * * Default Value: newsequentialid()
@@ -29178,15 +28911,6 @@ export declare class VersionInstallationEntity extends BaseEntity<VersionInstall
29178
28911
  */
29179
28912
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29180
28913
  /**
29181
- * Version Installations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
29182
- * @public
29183
- * @method
29184
- * @override
29185
- * @memberof VersionInstallationEntity
29186
- * @throws {Error} - Delete is not allowed for Version Installations, to enable it set AllowDeleteAPI to 1 in the database.
29187
- */
29188
- Delete(): Promise<boolean>;
29189
- /**
29190
28914
  * * Field Name: ID
29191
28915
  * * Display Name: ID
29192
28916
  * * SQL Data Type: uniqueidentifier
@@ -29382,15 +29106,6 @@ export declare class WorkflowRunEntity extends BaseEntity<WorkflowRunEntityType>
29382
29106
  */
29383
29107
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29384
29108
  /**
29385
- * Workflow Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
29386
- * @public
29387
- * @method
29388
- * @override
29389
- * @memberof WorkflowRunEntity
29390
- * @throws {Error} - Delete is not allowed for Workflow Runs, to enable it set AllowDeleteAPI to 1 in the database.
29391
- */
29392
- Delete(): Promise<boolean>;
29393
- /**
29394
29109
  * * Field Name: ID
29395
29110
  * * SQL Data Type: uniqueidentifier
29396
29111
  * * Default Value: newsequentialid()
@@ -29496,15 +29211,6 @@ export declare class WorkflowEntity extends BaseEntity<WorkflowEntityType> {
29496
29211
  */
29497
29212
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29498
29213
  /**
29499
- * Workflows - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
29500
- * @public
29501
- * @method
29502
- * @override
29503
- * @memberof WorkflowEntity
29504
- * @throws {Error} - Delete is not allowed for Workflows, to enable it set AllowDeleteAPI to 1 in the database.
29505
- */
29506
- Delete(): Promise<boolean>;
29507
- /**
29508
29214
  * * Field Name: ID
29509
29215
  * * SQL Data Type: uniqueidentifier
29510
29216
  * * Default Value: newsequentialid()