@memberjunction/core-entities 2.56.0 → 2.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
  /**
@@ -663,6 +663,7 @@ export declare const AIAgentSchema: z.ZodObject<{
663
663
  Status: z.ZodNullable<z.ZodString>;
664
664
  DriverClass: z.ZodNullable<z.ZodString>;
665
665
  IconClass: z.ZodNullable<z.ZodString>;
666
+ ModelSelectionMode: z.ZodUnion<[z.ZodLiteral<"Agent Type">, z.ZodLiteral<"Agent">]>;
666
667
  Parent: z.ZodNullable<z.ZodString>;
667
668
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
668
669
  Type: z.ZodNullable<z.ZodString>;
@@ -687,6 +688,7 @@ export declare const AIAgentSchema: z.ZodObject<{
687
688
  ContextCompressionPromptID?: string;
688
689
  ContextCompressionMessageRetentionCount?: number;
689
690
  TypeID?: string;
691
+ ModelSelectionMode?: "Agent" | "Agent Type";
690
692
  ContextCompressionPrompt?: string;
691
693
  }, {
692
694
  ID?: string;
@@ -709,6 +711,7 @@ export declare const AIAgentSchema: z.ZodObject<{
709
711
  ContextCompressionPromptID?: string;
710
712
  ContextCompressionMessageRetentionCount?: number;
711
713
  TypeID?: string;
714
+ ModelSelectionMode?: "Agent" | "Agent Type";
712
715
  ContextCompressionPrompt?: string;
713
716
  }>;
714
717
  export type AIAgentEntityType = z.infer<typeof AIAgentSchema>;
@@ -9867,6 +9870,19 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
9867
9870
  get IconClass(): string | null;
9868
9871
  set IconClass(value: string | null);
9869
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
+ /**
9870
9886
  * * Field Name: Parent
9871
9887
  * * Display Name: Parent
9872
9888
  * * SQL Data Type: nvarchar(255)
@@ -11397,24 +11413,6 @@ export declare class AuditLogTypeEntity extends BaseEntity<AuditLogTypeEntityTyp
11397
11413
  */
11398
11414
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11399
11415
  /**
11400
- * 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.
11401
- * @public
11402
- * @method
11403
- * @override
11404
- * @memberof AuditLogTypeEntity
11405
- * @throws {Error} - Save is not allowed for Audit Log Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11406
- */
11407
- Save(options?: EntitySaveOptions): Promise<boolean>;
11408
- /**
11409
- * 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.
11410
- * @public
11411
- * @method
11412
- * @override
11413
- * @memberof AuditLogTypeEntity
11414
- * @throws {Error} - Delete is not allowed for Audit Log Types, to enable it set AllowDeleteAPI to 1 in the database.
11415
- */
11416
- Delete(): Promise<boolean>;
11417
- /**
11418
11416
  * * Field Name: ID
11419
11417
  * * Display Name: ID
11420
11418
  * * SQL Data Type: uniqueidentifier
@@ -11503,15 +11501,6 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
11503
11501
  */
11504
11502
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11505
11503
  /**
11506
- * 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.
11507
- * @public
11508
- * @method
11509
- * @override
11510
- * @memberof AuditLogEntity
11511
- * @throws {Error} - Delete is not allowed for Audit Logs, to enable it set AllowDeleteAPI to 1 in the database.
11512
- */
11513
- Delete(): Promise<boolean>;
11514
- /**
11515
11504
  * * Field Name: ID
11516
11505
  * * Display Name: ID
11517
11506
  * * SQL Data Type: uniqueidentifier
@@ -11647,24 +11636,6 @@ export declare class AuthorizationRoleEntity extends BaseEntity<AuthorizationRol
11647
11636
  */
11648
11637
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11649
11638
  /**
11650
- * 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.
11651
- * @public
11652
- * @method
11653
- * @override
11654
- * @memberof AuthorizationRoleEntity
11655
- * @throws {Error} - Save is not allowed for Authorization Roles, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11656
- */
11657
- Save(options?: EntitySaveOptions): Promise<boolean>;
11658
- /**
11659
- * 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.
11660
- * @public
11661
- * @method
11662
- * @override
11663
- * @memberof AuthorizationRoleEntity
11664
- * @throws {Error} - Delete is not allowed for Authorization Roles, to enable it set AllowDeleteAPI to 1 in the database.
11665
- */
11666
- Delete(): Promise<boolean>;
11667
- /**
11668
11639
  * * Field Name: ID
11669
11640
  * * Display Name: ID
11670
11641
  * * SQL Data Type: uniqueidentifier
@@ -11751,24 +11722,6 @@ export declare class AuthorizationEntity extends BaseEntity<AuthorizationEntityT
11751
11722
  */
11752
11723
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11753
11724
  /**
11754
- * 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.
11755
- * @public
11756
- * @method
11757
- * @override
11758
- * @memberof AuthorizationEntity
11759
- * @throws {Error} - Save is not allowed for Authorizations, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
11760
- */
11761
- Save(options?: EntitySaveOptions): Promise<boolean>;
11762
- /**
11763
- * 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.
11764
- * @public
11765
- * @method
11766
- * @override
11767
- * @memberof AuthorizationEntity
11768
- * @throws {Error} - Delete is not allowed for Authorizations, to enable it set AllowDeleteAPI to 1 in the database.
11769
- */
11770
- Delete(): Promise<boolean>;
11771
- /**
11772
11725
  * * Field Name: ID
11773
11726
  * * Display Name: ID
11774
11727
  * * SQL Data Type: uniqueidentifier
@@ -11950,15 +11903,6 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
11950
11903
  */
11951
11904
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11952
11905
  /**
11953
- * 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.
11954
- * @public
11955
- * @method
11956
- * @override
11957
- * @memberof CommunicationLogEntity
11958
- * @throws {Error} - Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.
11959
- */
11960
- Delete(): Promise<boolean>;
11961
- /**
11962
11906
  * * Field Name: ID
11963
11907
  * * Display Name: ID
11964
11908
  * * SQL Data Type: uniqueidentifier
@@ -12330,15 +12274,6 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
12330
12274
  */
12331
12275
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12332
12276
  /**
12333
- * 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.
12334
- * @public
12335
- * @method
12336
- * @override
12337
- * @memberof CommunicationRunEntity
12338
- * @throws {Error} - Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.
12339
- */
12340
- Delete(): Promise<boolean>;
12341
- /**
12342
12277
  * * Field Name: ID
12343
12278
  * * Display Name: ID
12344
12279
  * * SQL Data Type: uniqueidentifier
@@ -12532,15 +12467,6 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity<Compan
12532
12467
  */
12533
12468
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12534
12469
  /**
12535
- * 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.
12536
- * @public
12537
- * @method
12538
- * @override
12539
- * @memberof CompanyIntegrationRecordMapEntity
12540
- * @throws {Error} - Delete is not allowed for Company Integration Record Maps, to enable it set AllowDeleteAPI to 1 in the database.
12541
- */
12542
- Delete(): Promise<boolean>;
12543
- /**
12544
12470
  * * Field Name: ID
12545
12471
  * * Display Name: ID
12546
12472
  * * SQL Data Type: uniqueidentifier
@@ -12623,15 +12549,6 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
12623
12549
  */
12624
12550
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12625
12551
  /**
12626
- * 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.
12627
- * @public
12628
- * @method
12629
- * @override
12630
- * @memberof CompanyIntegrationRunAPILogEntity
12631
- * @throws {Error} - Delete is not allowed for Company Integration Run API Logs, to enable it set AllowDeleteAPI to 1 in the database.
12632
- */
12633
- Delete(): Promise<boolean>;
12634
- /**
12635
12552
  * * Field Name: ID
12636
12553
  * * SQL Data Type: uniqueidentifier
12637
12554
  * * Default Value: newsequentialid()
@@ -12729,15 +12646,6 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity<Compan
12729
12646
  */
12730
12647
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12731
12648
  /**
12732
- * 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.
12733
- * @public
12734
- * @method
12735
- * @override
12736
- * @memberof CompanyIntegrationRunDetailEntity
12737
- * @throws {Error} - Delete is not allowed for Company Integration Run Details, to enable it set AllowDeleteAPI to 1 in the database.
12738
- */
12739
- Delete(): Promise<boolean>;
12740
- /**
12741
12649
  * * Field Name: ID
12742
12650
  * * SQL Data Type: uniqueidentifier
12743
12651
  * * Default Value: newsequentialid()
@@ -12845,15 +12753,6 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
12845
12753
  */
12846
12754
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
12847
12755
  /**
12848
- * 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.
12849
- * @public
12850
- * @method
12851
- * @override
12852
- * @memberof CompanyIntegrationRunEntity
12853
- * @throws {Error} - Delete is not allowed for Company Integration Runs, to enable it set AllowDeleteAPI to 1 in the database.
12854
- */
12855
- Delete(): Promise<boolean>;
12856
- /**
12857
12756
  * * Field Name: ID
12858
12757
  * * SQL Data Type: uniqueidentifier
12859
12758
  * * Default Value: newsequentialid()
@@ -14907,15 +14806,6 @@ export declare class DatasetItemEntity extends BaseEntity<DatasetItemEntityType>
14907
14806
  */
14908
14807
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14909
14808
  /**
14910
- * 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.
14911
- * @public
14912
- * @method
14913
- * @override
14914
- * @memberof DatasetItemEntity
14915
- * @throws {Error} - Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
14916
- */
14917
- Save(options?: EntitySaveOptions): Promise<boolean>;
14918
- /**
14919
14809
  * * Field Name: ID
14920
14810
  * * Display Name: ID
14921
14811
  * * SQL Data Type: uniqueidentifier
@@ -15035,15 +14925,6 @@ export declare class DatasetEntity extends BaseEntity<DatasetEntityType> {
15035
14925
  */
15036
14926
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15037
14927
  /**
15038
- * 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.
15039
- * @public
15040
- * @method
15041
- * @override
15042
- * @memberof DatasetEntity
15043
- * @throws {Error} - Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
15044
- */
15045
- Save(options?: EntitySaveOptions): Promise<boolean>;
15046
- /**
15047
14928
  * * Field Name: ID
15048
14929
  * * Display Name: ID
15049
14930
  * * SQL Data Type: uniqueidentifier
@@ -15104,15 +14985,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
15104
14985
  */
15105
14986
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15106
14987
  /**
15107
- * 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.
15108
- * @public
15109
- * @method
15110
- * @override
15111
- * @memberof DuplicateRunDetailMatchEntity
15112
- * @throws {Error} - Delete is not allowed for Duplicate Run Detail Matches, to enable it set AllowDeleteAPI to 1 in the database.
15113
- */
15114
- Delete(): Promise<boolean>;
15115
- /**
15116
14988
  * * Field Name: ID
15117
14989
  * * Display Name: ID
15118
14990
  * * SQL Data Type: uniqueidentifier
@@ -15254,15 +15126,6 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
15254
15126
  */
15255
15127
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15256
15128
  /**
15257
- * 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.
15258
- * @public
15259
- * @method
15260
- * @override
15261
- * @memberof DuplicateRunDetailEntity
15262
- * @throws {Error} - Delete is not allowed for Duplicate Run Details, to enable it set AllowDeleteAPI to 1 in the database.
15263
- */
15264
- Delete(): Promise<boolean>;
15265
- /**
15266
15129
  * * Field Name: ID
15267
15130
  * * Display Name: ID
15268
15131
  * * SQL Data Type: uniqueidentifier
@@ -15375,15 +15238,6 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
15375
15238
  */
15376
15239
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15377
15240
  /**
15378
- * 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.
15379
- * @public
15380
- * @method
15381
- * @override
15382
- * @memberof DuplicateRunEntity
15383
- * @throws {Error} - Delete is not allowed for Duplicate Runs, to enable it set AllowDeleteAPI to 1 in the database.
15384
- */
15385
- Delete(): Promise<boolean>;
15386
- /**
15387
15241
  * * Field Name: ID
15388
15242
  * * Display Name: ID
15389
15243
  * * SQL Data Type: uniqueidentifier
@@ -15542,15 +15396,6 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
15542
15396
  */
15543
15397
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15544
15398
  /**
15545
- * 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.
15546
- * @public
15547
- * @method
15548
- * @override
15549
- * @memberof EmployeeCompanyIntegrationEntity
15550
- * @throws {Error} - Delete is not allowed for Employee Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.
15551
- */
15552
- Delete(): Promise<boolean>;
15553
- /**
15554
15399
  * * Field Name: ID
15555
15400
  * * SQL Data Type: uniqueidentifier
15556
15401
  * * Default Value: newsequentialid()
@@ -17201,15 +17046,6 @@ export declare class EntityDocumentRunEntity extends BaseEntity<EntityDocumentRu
17201
17046
  */
17202
17047
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17203
17048
  /**
17204
- * 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.
17205
- * @public
17206
- * @method
17207
- * @override
17208
- * @memberof EntityDocumentRunEntity
17209
- * @throws {Error} - Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.
17210
- */
17211
- Delete(): Promise<boolean>;
17212
- /**
17213
17049
  * * Field Name: ID
17214
17050
  * * Display Name: ID
17215
17051
  * * SQL Data Type: uniqueidentifier
@@ -17439,15 +17275,6 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
17439
17275
  */
17440
17276
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17441
17277
  /**
17442
- * 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.
17443
- * @public
17444
- * @method
17445
- * @override
17446
- * @memberof EntityDocumentEntity
17447
- * @throws {Error} - Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.
17448
- */
17449
- Delete(): Promise<boolean>;
17450
- /**
17451
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:
17452
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.
17453
17280
  * @public
@@ -17616,15 +17443,6 @@ export declare class EntityFieldValueEntity extends BaseEntity<EntityFieldValueE
17616
17443
  */
17617
17444
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
17618
17445
  /**
17619
- * 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.
17620
- * @public
17621
- * @method
17622
- * @override
17623
- * @memberof EntityFieldValueEntity
17624
- * @throws {Error} - Delete is not allowed for Entity Field Values, to enable it set AllowDeleteAPI to 1 in the database.
17625
- */
17626
- Delete(): Promise<boolean>;
17627
- /**
17628
17446
  * * Field Name: ID
17629
17447
  * * Display Name: ID
17630
17448
  * * SQL Data Type: uniqueidentifier
@@ -18389,15 +18207,6 @@ export declare class EntityRecordDocumentEntity extends BaseEntity<EntityRecordD
18389
18207
  */
18390
18208
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18391
18209
  /**
18392
- * 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.
18393
- * @public
18394
- * @method
18395
- * @override
18396
- * @memberof EntityRecordDocumentEntity
18397
- * @throws {Error} - Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.
18398
- */
18399
- Delete(): Promise<boolean>;
18400
- /**
18401
18210
  * * Field Name: ID
18402
18211
  * * Display Name: ID
18403
18212
  * * SQL Data Type: uniqueidentifier
@@ -18522,15 +18331,6 @@ export declare class EntityRelationshipDisplayComponentEntity extends BaseEntity
18522
18331
  */
18523
18332
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18524
18333
  /**
18525
- * 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.
18526
- * @public
18527
- * @method
18528
- * @override
18529
- * @memberof EntityRelationshipDisplayComponentEntity
18530
- * @throws {Error} - Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.
18531
- */
18532
- Delete(): Promise<boolean>;
18533
- /**
18534
18334
  * * Field Name: ID
18535
18335
  * * Display Name: ID
18536
18336
  * * SQL Data Type: uniqueidentifier
@@ -18960,15 +18760,6 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
18960
18760
  */
18961
18761
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
18962
18762
  /**
18963
- * 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.
18964
- * @public
18965
- * @method
18966
- * @override
18967
- * @memberof ErrorLogEntity
18968
- * @throws {Error} - Delete is not allowed for Error Logs, to enable it set AllowDeleteAPI to 1 in the database.
18969
- */
18970
- Delete(): Promise<boolean>;
18971
- /**
18972
18763
  * * Field Name: ID
18973
18764
  * * SQL Data Type: uniqueidentifier
18974
18765
  * * Default Value: newsequentialid()
@@ -19491,7 +19282,7 @@ export declare class FileEntity extends BaseEntity<FileEntityType> {
19491
19282
  /**
19492
19283
  * * Field Name: ContentType
19493
19284
  * * Display Name: Content Type
19494
- * * SQL Data Type: nvarchar(50)
19285
+ * * SQL Data Type: nvarchar(255)
19495
19286
  */
19496
19287
  get ContentType(): string | null;
19497
19288
  set ContentType(value: string | null);
@@ -23726,24 +23517,6 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity<OutputDeliveryT
23726
23517
  */
23727
23518
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23728
23519
  /**
23729
- * 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.
23730
- * @public
23731
- * @method
23732
- * @override
23733
- * @memberof OutputDeliveryTypeEntity
23734
- * @throws {Error} - Save is not allowed for Output Delivery Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23735
- */
23736
- Save(options?: EntitySaveOptions): Promise<boolean>;
23737
- /**
23738
- * 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.
23739
- * @public
23740
- * @method
23741
- * @override
23742
- * @memberof OutputDeliveryTypeEntity
23743
- * @throws {Error} - Delete is not allowed for Output Delivery Types, to enable it set AllowDeleteAPI to 1 in the database.
23744
- */
23745
- Delete(): Promise<boolean>;
23746
- /**
23747
23520
  * * Field Name: ID
23748
23521
  * * Display Name: ID
23749
23522
  * * SQL Data Type: uniqueidentifier
@@ -23804,24 +23577,6 @@ export declare class OutputFormatTypeEntity extends BaseEntity<OutputFormatTypeE
23804
23577
  */
23805
23578
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23806
23579
  /**
23807
- * 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.
23808
- * @public
23809
- * @method
23810
- * @override
23811
- * @memberof OutputFormatTypeEntity
23812
- * @throws {Error} - Save is not allowed for Output Format Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23813
- */
23814
- Save(options?: EntitySaveOptions): Promise<boolean>;
23815
- /**
23816
- * 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.
23817
- * @public
23818
- * @method
23819
- * @override
23820
- * @memberof OutputFormatTypeEntity
23821
- * @throws {Error} - Delete is not allowed for Output Format Types, to enable it set AllowDeleteAPI to 1 in the database.
23822
- */
23823
- Delete(): Promise<boolean>;
23824
- /**
23825
23580
  * * Field Name: ID
23826
23581
  * * Display Name: ID
23827
23582
  * * SQL Data Type: uniqueidentifier
@@ -23889,24 +23644,6 @@ export declare class OutputTriggerTypeEntity extends BaseEntity<OutputTriggerTyp
23889
23644
  */
23890
23645
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23891
23646
  /**
23892
- * 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.
23893
- * @public
23894
- * @method
23895
- * @override
23896
- * @memberof OutputTriggerTypeEntity
23897
- * @throws {Error} - Save is not allowed for Output Trigger Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
23898
- */
23899
- Save(options?: EntitySaveOptions): Promise<boolean>;
23900
- /**
23901
- * 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.
23902
- * @public
23903
- * @method
23904
- * @override
23905
- * @memberof OutputTriggerTypeEntity
23906
- * @throws {Error} - Delete is not allowed for Output Trigger Types, to enable it set AllowDeleteAPI to 1 in the database.
23907
- */
23908
- Delete(): Promise<boolean>;
23909
- /**
23910
23647
  * * Field Name: ID
23911
23648
  * * Display Name: ID
23912
23649
  * * SQL Data Type: uniqueidentifier
@@ -24496,15 +24233,6 @@ export declare class QueueTaskEntity extends BaseEntity<QueueTaskEntityType> {
24496
24233
  */
24497
24234
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24498
24235
  /**
24499
- * 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.
24500
- * @public
24501
- * @method
24502
- * @override
24503
- * @memberof QueueTaskEntity
24504
- * @throws {Error} - Delete is not allowed for Queue Tasks, to enable it set AllowDeleteAPI to 1 in the database.
24505
- */
24506
- Delete(): Promise<boolean>;
24507
- /**
24508
24236
  * * Field Name: ID
24509
24237
  * * Display Name: ID
24510
24238
  * * SQL Data Type: uniqueidentifier
@@ -24627,15 +24355,6 @@ export declare class QueueTypeEntity extends BaseEntity<QueueTypeEntityType> {
24627
24355
  */
24628
24356
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24629
24357
  /**
24630
- * 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.
24631
- * @public
24632
- * @method
24633
- * @override
24634
- * @memberof QueueTypeEntity
24635
- * @throws {Error} - Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
24636
- */
24637
- Save(options?: EntitySaveOptions): Promise<boolean>;
24638
- /**
24639
24358
  * * Field Name: ID
24640
24359
  * * Display Name: ID
24641
24360
  * * SQL Data Type: uniqueidentifier
@@ -24719,15 +24438,6 @@ export declare class QueueEntity extends BaseEntity<QueueEntityType> {
24719
24438
  */
24720
24439
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24721
24440
  /**
24722
- * 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.
24723
- * @public
24724
- * @method
24725
- * @override
24726
- * @memberof QueueEntity
24727
- * @throws {Error} - Delete is not allowed for Queues, to enable it set AllowDeleteAPI to 1 in the database.
24728
- */
24729
- Delete(): Promise<boolean>;
24730
- /**
24731
24441
  * * Field Name: ID
24732
24442
  * * Display Name: ID
24733
24443
  * * SQL Data Type: uniqueidentifier
@@ -24896,15 +24606,6 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
24896
24606
  */
24897
24607
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24898
24608
  /**
24899
- * 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.
24900
- * @public
24901
- * @method
24902
- * @override
24903
- * @memberof RecommendationItemEntity
24904
- * @throws {Error} - Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.
24905
- */
24906
- Delete(): Promise<boolean>;
24907
- /**
24908
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:
24909
24610
  * * MatchProbability: This rule ensures that the match probability value is between 0 and 1, inclusive.
24910
24611
  * @public
@@ -25066,15 +24767,6 @@ export declare class RecommendationRunEntity extends BaseEntity<RecommendationRu
25066
24767
  */
25067
24768
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25068
24769
  /**
25069
- * 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.
25070
- * @public
25071
- * @method
25072
- * @override
25073
- * @memberof RecommendationRunEntity
25074
- * @throws {Error} - Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.
25075
- */
25076
- Delete(): Promise<boolean>;
25077
- /**
25078
24770
  * * Field Name: ID
25079
24771
  * * Display Name: ID
25080
24772
  * * SQL Data Type: uniqueidentifier
@@ -25188,15 +24880,6 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
25188
24880
  */
25189
24881
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25190
24882
  /**
25191
- * 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.
25192
- * @public
25193
- * @method
25194
- * @override
25195
- * @memberof RecommendationEntity
25196
- * @throws {Error} - Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.
25197
- */
25198
- Delete(): Promise<boolean>;
25199
- /**
25200
24883
  * * Field Name: ID
25201
24884
  * * Display Name: ID
25202
24885
  * * SQL Data Type: uniqueidentifier
@@ -25274,15 +24957,6 @@ export declare class RecordChangeReplayRunEntity extends BaseEntity<RecordChange
25274
24957
  */
25275
24958
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25276
24959
  /**
25277
- * 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.
25278
- * @public
25279
- * @method
25280
- * @override
25281
- * @memberof RecordChangeReplayRunEntity
25282
- * @throws {Error} - Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.
25283
- */
25284
- Delete(): Promise<boolean>;
25285
- /**
25286
24960
  * * Field Name: ID
25287
24961
  * * Display Name: ID
25288
24962
  * * SQL Data Type: uniqueidentifier
@@ -25374,15 +25048,6 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
25374
25048
  */
25375
25049
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25376
25050
  /**
25377
- * 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.
25378
- * @public
25379
- * @method
25380
- * @override
25381
- * @memberof RecordChangeEntity
25382
- * @throws {Error} - Delete is not allowed for Record Changes, to enable it set AllowDeleteAPI to 1 in the database.
25383
- */
25384
- Delete(): Promise<boolean>;
25385
- /**
25386
25051
  * * Field Name: ID
25387
25052
  * * SQL Data Type: uniqueidentifier
25388
25053
  * * Default Value: newsequentialid()
@@ -25571,15 +25236,6 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
25571
25236
  */
25572
25237
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25573
25238
  /**
25574
- * 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.
25575
- * @public
25576
- * @method
25577
- * @override
25578
- * @memberof RecordMergeDeletionLogEntity
25579
- * @throws {Error} - Delete is not allowed for Record Merge Deletion Logs, to enable it set AllowDeleteAPI to 1 in the database.
25580
- */
25581
- Delete(): Promise<boolean>;
25582
- /**
25583
25239
  * * Field Name: ID
25584
25240
  * * Display Name: ID
25585
25241
  * * SQL Data Type: uniqueidentifier
@@ -25661,15 +25317,6 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
25661
25317
  */
25662
25318
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25663
25319
  /**
25664
- * 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.
25665
- * @public
25666
- * @method
25667
- * @override
25668
- * @memberof RecordMergeLogEntity
25669
- * @throws {Error} - Delete is not allowed for Record Merge Logs, to enable it set AllowDeleteAPI to 1 in the database.
25670
- */
25671
- Delete(): Promise<boolean>;
25672
- /**
25673
25320
  * * Field Name: ID
25674
25321
  * * Display Name: ID
25675
25322
  * * SQL Data Type: uniqueidentifier
@@ -26474,24 +26121,6 @@ export declare class ResourceTypeEntity extends BaseEntity<ResourceTypeEntityTyp
26474
26121
  */
26475
26122
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26476
26123
  /**
26477
- * 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.
26478
- * @public
26479
- * @method
26480
- * @override
26481
- * @memberof ResourceTypeEntity
26482
- * @throws {Error} - Save is not allowed for Resource Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26483
- */
26484
- Save(options?: EntitySaveOptions): Promise<boolean>;
26485
- /**
26486
- * 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.
26487
- * @public
26488
- * @method
26489
- * @override
26490
- * @memberof ResourceTypeEntity
26491
- * @throws {Error} - Delete is not allowed for Resource Types, to enable it set AllowDeleteAPI to 1 in the database.
26492
- */
26493
- Delete(): Promise<boolean>;
26494
- /**
26495
26124
  * * Field Name: ID
26496
26125
  * * Display Name: ID
26497
26126
  * * SQL Data Type: uniqueidentifier
@@ -26669,15 +26298,6 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity<RowLevelSec
26669
26298
  */
26670
26299
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26671
26300
  /**
26672
- * 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.
26673
- * @public
26674
- * @method
26675
- * @override
26676
- * @memberof RowLevelSecurityFilterEntity
26677
- * @throws {Error} - Save is not allowed for Row Level Security Filters, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
26678
- */
26679
- Save(options?: EntitySaveOptions): Promise<boolean>;
26680
- /**
26681
26301
  * * Field Name: ID
26682
26302
  * * Display Name: ID
26683
26303
  * * SQL Data Type: uniqueidentifier
@@ -27019,15 +26639,6 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
27019
26639
  */
27020
26640
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27021
26641
  /**
27022
- * 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.
27023
- * @public
27024
- * @method
27025
- * @override
27026
- * @memberof SchemaInfoEntity
27027
- * @throws {Error} - Delete is not allowed for Schema Info, to enable it set AllowDeleteAPI to 1 in the database.
27028
- */
27029
- Delete(): Promise<boolean>;
27030
- /**
27031
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:
27032
26643
  * * Table-Level: This rule ensures that both the minimum and maximum entity IDs must be greater than zero.
27033
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.
@@ -27126,15 +26737,6 @@ export declare class SkillEntity extends BaseEntity<SkillEntityType> {
27126
26737
  */
27127
26738
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27128
26739
  /**
27129
- * 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.
27130
- * @public
27131
- * @method
27132
- * @override
27133
- * @memberof SkillEntity
27134
- * @throws {Error} - Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27135
- */
27136
- Save(options?: EntitySaveOptions): Promise<boolean>;
27137
- /**
27138
26740
  * * Field Name: ID
27139
26741
  * * SQL Data Type: uniqueidentifier
27140
26742
  * * Default Value: newsequentialid()
@@ -27201,15 +26803,6 @@ export declare class TaggedItemEntity extends BaseEntity<TaggedItemEntityType> {
27201
26803
  */
27202
26804
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27203
26805
  /**
27204
- * 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.
27205
- * @public
27206
- * @method
27207
- * @override
27208
- * @memberof TaggedItemEntity
27209
- * @throws {Error} - Save is not allowed for Tagged Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27210
- */
27211
- Save(options?: EntitySaveOptions): Promise<boolean>;
27212
- /**
27213
26806
  * * Field Name: ID
27214
26807
  * * Display Name: ID
27215
26808
  * * SQL Data Type: uniqueidentifier
@@ -27292,15 +26885,6 @@ export declare class TagEntity extends BaseEntity<TagEntityType> {
27292
26885
  */
27293
26886
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27294
26887
  /**
27295
- * 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.
27296
- * @public
27297
- * @method
27298
- * @override
27299
- * @memberof TagEntity
27300
- * @throws {Error} - Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
27301
- */
27302
- Save(options?: EntitySaveOptions): Promise<boolean>;
27303
- /**
27304
26888
  * * Field Name: ID
27305
26889
  * * Display Name: ID
27306
26890
  * * SQL Data Type: uniqueidentifier
@@ -28328,15 +27912,6 @@ export declare class UserRecordLogEntity extends BaseEntity<UserRecordLogEntityT
28328
27912
  */
28329
27913
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28330
27914
  /**
28331
- * 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.
28332
- * @public
28333
- * @method
28334
- * @override
28335
- * @memberof UserRecordLogEntity
28336
- * @throws {Error} - Delete is not allowed for User Record Logs, to enable it set AllowDeleteAPI to 1 in the database.
28337
- */
28338
- Delete(): Promise<boolean>;
28339
- /**
28340
27915
  * * Field Name: ID
28341
27916
  * * SQL Data Type: uniqueidentifier
28342
27917
  * * Default Value: newsequentialid()
@@ -28642,15 +28217,6 @@ export declare class UserViewRunDetailEntity extends BaseEntity<UserViewRunDetai
28642
28217
  */
28643
28218
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28644
28219
  /**
28645
- * 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.
28646
- * @public
28647
- * @method
28648
- * @override
28649
- * @memberof UserViewRunDetailEntity
28650
- * @throws {Error} - Delete is not allowed for User View Run Details, to enable it set AllowDeleteAPI to 1 in the database.
28651
- */
28652
- Delete(): Promise<boolean>;
28653
- /**
28654
28220
  * * Field Name: ID
28655
28221
  * * SQL Data Type: uniqueidentifier
28656
28222
  * * Default Value: newsequentialid()
@@ -28724,15 +28290,6 @@ export declare class UserViewRunEntity extends BaseEntity<UserViewRunEntityType>
28724
28290
  */
28725
28291
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28726
28292
  /**
28727
- * 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.
28728
- * @public
28729
- * @method
28730
- * @override
28731
- * @memberof UserViewRunEntity
28732
- * @throws {Error} - Delete is not allowed for User View Runs, to enable it set AllowDeleteAPI to 1 in the database.
28733
- */
28734
- Delete(): Promise<boolean>;
28735
- /**
28736
28293
  * * Field Name: ID
28737
28294
  * * SQL Data Type: uniqueidentifier
28738
28295
  * * Default Value: newsequentialid()
@@ -29354,15 +28911,6 @@ export declare class VersionInstallationEntity extends BaseEntity<VersionInstall
29354
28911
  */
29355
28912
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29356
28913
  /**
29357
- * 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.
29358
- * @public
29359
- * @method
29360
- * @override
29361
- * @memberof VersionInstallationEntity
29362
- * @throws {Error} - Delete is not allowed for Version Installations, to enable it set AllowDeleteAPI to 1 in the database.
29363
- */
29364
- Delete(): Promise<boolean>;
29365
- /**
29366
28914
  * * Field Name: ID
29367
28915
  * * Display Name: ID
29368
28916
  * * SQL Data Type: uniqueidentifier
@@ -29558,15 +29106,6 @@ export declare class WorkflowRunEntity extends BaseEntity<WorkflowRunEntityType>
29558
29106
  */
29559
29107
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29560
29108
  /**
29561
- * 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.
29562
- * @public
29563
- * @method
29564
- * @override
29565
- * @memberof WorkflowRunEntity
29566
- * @throws {Error} - Delete is not allowed for Workflow Runs, to enable it set AllowDeleteAPI to 1 in the database.
29567
- */
29568
- Delete(): Promise<boolean>;
29569
- /**
29570
29109
  * * Field Name: ID
29571
29110
  * * SQL Data Type: uniqueidentifier
29572
29111
  * * Default Value: newsequentialid()
@@ -29672,15 +29211,6 @@ export declare class WorkflowEntity extends BaseEntity<WorkflowEntityType> {
29672
29211
  */
29673
29212
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29674
29213
  /**
29675
- * 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.
29676
- * @public
29677
- * @method
29678
- * @override
29679
- * @memberof WorkflowEntity
29680
- * @throws {Error} - Delete is not allowed for Workflows, to enable it set AllowDeleteAPI to 1 in the database.
29681
- */
29682
- Delete(): Promise<boolean>;
29683
- /**
29684
29214
  * * Field Name: ID
29685
29215
  * * SQL Data Type: uniqueidentifier
29686
29216
  * * Default Value: newsequentialid()