@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.
- package/dist/custom/AIPromptExtended.d.ts +6 -2
- package/dist/custom/AIPromptExtended.d.ts.map +1 -1
- package/dist/custom/AIPromptExtended.js +31 -2
- package/dist/custom/AIPromptExtended.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +194 -488
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +301 -596
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +3 -3
|
@@ -578,6 +578,11 @@ exports.ActionSchema = zod_1.z.object({
|
|
|
578
578
|
* * SQL Data Type: uniqueidentifier
|
|
579
579
|
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
580
580
|
* * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.`),
|
|
581
|
+
IconClass: zod_1.z.string().nullable().describe(`
|
|
582
|
+
* * Field Name: IconClass
|
|
583
|
+
* * Display Name: Icon Class
|
|
584
|
+
* * SQL Data Type: nvarchar(100)
|
|
585
|
+
* * Description: Font Awesome icon class (e.g., fa-cog, fa-play, fa-search) for visual representation of the action.`),
|
|
581
586
|
Category: zod_1.z.string().nullable().describe(`
|
|
582
587
|
* * Field Name: Category
|
|
583
588
|
* * Display Name: Category
|
|
@@ -1070,6 +1075,21 @@ exports.AIAgentSchema = zod_1.z.object({
|
|
|
1070
1075
|
* * Display Name: Driver Class
|
|
1071
1076
|
* * SQL Data Type: nvarchar(255)
|
|
1072
1077
|
* * Description: Optional override for the class name used by the MemberJunction class factory to instantiate this specific agent. If specified, this overrides the agent type's DriverClass. Useful for specialized agent implementations.`),
|
|
1078
|
+
IconClass: zod_1.z.string().nullable().describe(`
|
|
1079
|
+
* * Field Name: IconClass
|
|
1080
|
+
* * Display Name: Icon Class
|
|
1081
|
+
* * SQL Data Type: nvarchar(100)
|
|
1082
|
+
* * Description: Font Awesome icon class (e.g., fa-robot, fa-brain) for the agent. Used as fallback when LogoURL is not set or fails to load.`),
|
|
1083
|
+
ModelSelectionMode: zod_1.z.union([zod_1.z.literal('Agent Type'), zod_1.z.literal('Agent')]).describe(`
|
|
1084
|
+
* * Field Name: ModelSelectionMode
|
|
1085
|
+
* * Display Name: Model Selection Mode
|
|
1086
|
+
* * SQL Data Type: nvarchar(50)
|
|
1087
|
+
* * Default Value: Agent Type
|
|
1088
|
+
* * Value List Type: List
|
|
1089
|
+
* * Possible Values
|
|
1090
|
+
* * Agent Type
|
|
1091
|
+
* * Agent
|
|
1092
|
+
* * Description: Controls whether model selection is driven by the Agent Type's system prompt or the Agent's specific prompt. Default is Agent Type for backward compatibility.`),
|
|
1073
1093
|
Parent: zod_1.z.string().nullable().describe(`
|
|
1074
1094
|
* * Field Name: Parent
|
|
1075
1095
|
* * Display Name: Parent
|
|
@@ -6259,7 +6279,7 @@ exports.FileSchema = zod_1.z.object({
|
|
|
6259
6279
|
ContentType: zod_1.z.string().nullable().describe(`
|
|
6260
6280
|
* * Field Name: ContentType
|
|
6261
6281
|
* * Display Name: Content Type
|
|
6262
|
-
* * SQL Data Type: nvarchar(
|
|
6282
|
+
* * SQL Data Type: nvarchar(255)`),
|
|
6263
6283
|
ProviderKey: zod_1.z.string().nullable().describe(`
|
|
6264
6284
|
* * Field Name: ProviderKey
|
|
6265
6285
|
* * Display Name: Provider Key
|
|
@@ -7910,6 +7930,76 @@ exports.AIPromptRunSchema = zod_1.z.object({
|
|
|
7910
7930
|
* * Display Name: Descendant Cost
|
|
7911
7931
|
* * SQL Data Type: decimal(18, 6)
|
|
7912
7932
|
* * Description: The total cost of all descendant (child and grandchild) prompt runs, excluding this run's own cost. For leaf nodes (no children), this is 0. Updated when child costs change.`),
|
|
7933
|
+
ValidationAttemptCount: zod_1.z.number().nullable().describe(`
|
|
7934
|
+
* * Field Name: ValidationAttemptCount
|
|
7935
|
+
* * Display Name: Validation Attempt Count
|
|
7936
|
+
* * SQL Data Type: int
|
|
7937
|
+
* * Description: Total number of validation attempts made (including the initial attempt)`),
|
|
7938
|
+
SuccessfulValidationCount: zod_1.z.number().nullable().describe(`
|
|
7939
|
+
* * Field Name: SuccessfulValidationCount
|
|
7940
|
+
* * Display Name: Successful Validation Count
|
|
7941
|
+
* * SQL Data Type: int
|
|
7942
|
+
* * Description: Number of validation attempts that passed validation`),
|
|
7943
|
+
FinalValidationPassed: zod_1.z.boolean().nullable().describe(`
|
|
7944
|
+
* * Field Name: FinalValidationPassed
|
|
7945
|
+
* * Display Name: Final Validation Passed
|
|
7946
|
+
* * SQL Data Type: bit
|
|
7947
|
+
* * Description: Whether validation ultimately passed (1) or failed (0)`),
|
|
7948
|
+
ValidationBehavior: zod_1.z.string().nullable().describe(`
|
|
7949
|
+
* * Field Name: ValidationBehavior
|
|
7950
|
+
* * Display Name: Validation Behavior
|
|
7951
|
+
* * SQL Data Type: nvarchar(50)
|
|
7952
|
+
* * Description: Validation behavior used: Strict, Warn, or None`),
|
|
7953
|
+
RetryStrategy: zod_1.z.string().nullable().describe(`
|
|
7954
|
+
* * Field Name: RetryStrategy
|
|
7955
|
+
* * Display Name: Retry Strategy
|
|
7956
|
+
* * SQL Data Type: nvarchar(50)
|
|
7957
|
+
* * Description: Retry strategy used: Fixed, Linear, or Exponential`),
|
|
7958
|
+
MaxRetriesConfigured: zod_1.z.number().nullable().describe(`
|
|
7959
|
+
* * Field Name: MaxRetriesConfigured
|
|
7960
|
+
* * Display Name: Max Retries Configured
|
|
7961
|
+
* * SQL Data Type: int
|
|
7962
|
+
* * Description: Maximum number of retries configured on the prompt`),
|
|
7963
|
+
FinalValidationError: zod_1.z.string().nullable().describe(`
|
|
7964
|
+
* * Field Name: FinalValidationError
|
|
7965
|
+
* * Display Name: Final Validation Error
|
|
7966
|
+
* * SQL Data Type: nvarchar(500)
|
|
7967
|
+
* * Description: The final validation error message if validation failed`),
|
|
7968
|
+
ValidationErrorCount: zod_1.z.number().nullable().describe(`
|
|
7969
|
+
* * Field Name: ValidationErrorCount
|
|
7970
|
+
* * Display Name: Validation Error Count
|
|
7971
|
+
* * SQL Data Type: int
|
|
7972
|
+
* * Description: Number of validation errors on the final attempt`),
|
|
7973
|
+
CommonValidationError: zod_1.z.string().nullable().describe(`
|
|
7974
|
+
* * Field Name: CommonValidationError
|
|
7975
|
+
* * Display Name: Common Validation Error
|
|
7976
|
+
* * SQL Data Type: nvarchar(255)
|
|
7977
|
+
* * Description: Most frequent validation error across all attempts`),
|
|
7978
|
+
FirstAttemptAt: zod_1.z.date().nullable().describe(`
|
|
7979
|
+
* * Field Name: FirstAttemptAt
|
|
7980
|
+
* * Display Name: First Attempt At
|
|
7981
|
+
* * SQL Data Type: datetime
|
|
7982
|
+
* * Description: Timestamp of the first validation attempt`),
|
|
7983
|
+
LastAttemptAt: zod_1.z.date().nullable().describe(`
|
|
7984
|
+
* * Field Name: LastAttemptAt
|
|
7985
|
+
* * Display Name: Last Attempt At
|
|
7986
|
+
* * SQL Data Type: datetime
|
|
7987
|
+
* * Description: Timestamp of the last validation attempt`),
|
|
7988
|
+
TotalRetryDurationMS: zod_1.z.number().nullable().describe(`
|
|
7989
|
+
* * Field Name: TotalRetryDurationMS
|
|
7990
|
+
* * Display Name: Total Retry Duration MS
|
|
7991
|
+
* * SQL Data Type: int
|
|
7992
|
+
* * Description: Total time spent on retries in milliseconds (excluding first attempt)`),
|
|
7993
|
+
ValidationAttempts: zod_1.z.string().nullable().describe(`
|
|
7994
|
+
* * Field Name: ValidationAttempts
|
|
7995
|
+
* * Display Name: Validation Attempts
|
|
7996
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
7997
|
+
* * Description: JSON array containing detailed information about each validation attempt`),
|
|
7998
|
+
ValidationSummary: zod_1.z.string().nullable().describe(`
|
|
7999
|
+
* * Field Name: ValidationSummary
|
|
8000
|
+
* * Display Name: Validation Summary
|
|
8001
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
8002
|
+
* * Description: JSON object containing summary information about the validation process`),
|
|
7913
8003
|
Prompt: zod_1.z.string().describe(`
|
|
7914
8004
|
* * Field Name: Prompt
|
|
7915
8005
|
* * Display Name: Prompt
|
|
@@ -13098,6 +13188,18 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
13098
13188
|
this.Set('ParentID', value);
|
|
13099
13189
|
}
|
|
13100
13190
|
/**
|
|
13191
|
+
* * Field Name: IconClass
|
|
13192
|
+
* * Display Name: Icon Class
|
|
13193
|
+
* * SQL Data Type: nvarchar(100)
|
|
13194
|
+
* * Description: Font Awesome icon class (e.g., fa-cog, fa-play, fa-search) for visual representation of the action.
|
|
13195
|
+
*/
|
|
13196
|
+
get IconClass() {
|
|
13197
|
+
return this.Get('IconClass');
|
|
13198
|
+
}
|
|
13199
|
+
set IconClass(value) {
|
|
13200
|
+
this.Set('IconClass', value);
|
|
13201
|
+
}
|
|
13202
|
+
/**
|
|
13101
13203
|
* * Field Name: Category
|
|
13102
13204
|
* * Display Name: Category
|
|
13103
13205
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -14366,6 +14468,35 @@ let AIAgentEntity = class AIAgentEntity extends core_1.BaseEntity {
|
|
|
14366
14468
|
this.Set('DriverClass', value);
|
|
14367
14469
|
}
|
|
14368
14470
|
/**
|
|
14471
|
+
* * Field Name: IconClass
|
|
14472
|
+
* * Display Name: Icon Class
|
|
14473
|
+
* * SQL Data Type: nvarchar(100)
|
|
14474
|
+
* * 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.
|
|
14475
|
+
*/
|
|
14476
|
+
get IconClass() {
|
|
14477
|
+
return this.Get('IconClass');
|
|
14478
|
+
}
|
|
14479
|
+
set IconClass(value) {
|
|
14480
|
+
this.Set('IconClass', value);
|
|
14481
|
+
}
|
|
14482
|
+
/**
|
|
14483
|
+
* * Field Name: ModelSelectionMode
|
|
14484
|
+
* * Display Name: Model Selection Mode
|
|
14485
|
+
* * SQL Data Type: nvarchar(50)
|
|
14486
|
+
* * Default Value: Agent Type
|
|
14487
|
+
* * Value List Type: List
|
|
14488
|
+
* * Possible Values
|
|
14489
|
+
* * Agent Type
|
|
14490
|
+
* * Agent
|
|
14491
|
+
* * Description: Controls whether model selection is driven by the Agent Type's system prompt or the Agent's specific prompt. Default is Agent Type for backward compatibility.
|
|
14492
|
+
*/
|
|
14493
|
+
get ModelSelectionMode() {
|
|
14494
|
+
return this.Get('ModelSelectionMode');
|
|
14495
|
+
}
|
|
14496
|
+
set ModelSelectionMode(value) {
|
|
14497
|
+
this.Set('ModelSelectionMode', value);
|
|
14498
|
+
}
|
|
14499
|
+
/**
|
|
14369
14500
|
* * Field Name: Parent
|
|
14370
14501
|
* * Display Name: Parent
|
|
14371
14502
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -16522,28 +16653,6 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
|
16522
16653
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
16523
16654
|
}
|
|
16524
16655
|
/**
|
|
16525
|
-
* 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.
|
|
16526
|
-
* @public
|
|
16527
|
-
* @method
|
|
16528
|
-
* @override
|
|
16529
|
-
* @memberof AuditLogTypeEntity
|
|
16530
|
-
* @throws {Error} - Save is not allowed for Audit Log Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
16531
|
-
*/
|
|
16532
|
-
async Save(options) {
|
|
16533
|
-
throw new Error('Save is not allowed for Audit Log Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
16534
|
-
}
|
|
16535
|
-
/**
|
|
16536
|
-
* 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.
|
|
16537
|
-
* @public
|
|
16538
|
-
* @method
|
|
16539
|
-
* @override
|
|
16540
|
-
* @memberof AuditLogTypeEntity
|
|
16541
|
-
* @throws {Error} - Delete is not allowed for Audit Log Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
16542
|
-
*/
|
|
16543
|
-
async Delete() {
|
|
16544
|
-
throw new Error('Delete is not allowed for Audit Log Types, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
16545
|
-
}
|
|
16546
|
-
/**
|
|
16547
16656
|
* * Field Name: ID
|
|
16548
16657
|
* * Display Name: ID
|
|
16549
16658
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -16668,17 +16777,6 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
16668
16777
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
16669
16778
|
}
|
|
16670
16779
|
/**
|
|
16671
|
-
* 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.
|
|
16672
|
-
* @public
|
|
16673
|
-
* @method
|
|
16674
|
-
* @override
|
|
16675
|
-
* @memberof AuditLogEntity
|
|
16676
|
-
* @throws {Error} - Delete is not allowed for Audit Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
16677
|
-
*/
|
|
16678
|
-
async Delete() {
|
|
16679
|
-
throw new Error('Delete is not allowed for Audit Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
16680
|
-
}
|
|
16681
|
-
/**
|
|
16682
16780
|
* * Field Name: ID
|
|
16683
16781
|
* * Display Name: ID
|
|
16684
16782
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -16870,28 +16968,6 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
16870
16968
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
16871
16969
|
}
|
|
16872
16970
|
/**
|
|
16873
|
-
* 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.
|
|
16874
|
-
* @public
|
|
16875
|
-
* @method
|
|
16876
|
-
* @override
|
|
16877
|
-
* @memberof AuthorizationRoleEntity
|
|
16878
|
-
* @throws {Error} - Save is not allowed for Authorization Roles, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
16879
|
-
*/
|
|
16880
|
-
async Save(options) {
|
|
16881
|
-
throw new Error('Save is not allowed for Authorization Roles, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
16882
|
-
}
|
|
16883
|
-
/**
|
|
16884
|
-
* 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.
|
|
16885
|
-
* @public
|
|
16886
|
-
* @method
|
|
16887
|
-
* @override
|
|
16888
|
-
* @memberof AuthorizationRoleEntity
|
|
16889
|
-
* @throws {Error} - Delete is not allowed for Authorization Roles, to enable it set AllowDeleteAPI to 1 in the database.
|
|
16890
|
-
*/
|
|
16891
|
-
async Delete() {
|
|
16892
|
-
throw new Error('Delete is not allowed for Authorization Roles, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
16893
|
-
}
|
|
16894
|
-
/**
|
|
16895
16971
|
* * Field Name: ID
|
|
16896
16972
|
* * Display Name: ID
|
|
16897
16973
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -17010,28 +17086,6 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
17010
17086
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
17011
17087
|
}
|
|
17012
17088
|
/**
|
|
17013
|
-
* 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.
|
|
17014
|
-
* @public
|
|
17015
|
-
* @method
|
|
17016
|
-
* @override
|
|
17017
|
-
* @memberof AuthorizationEntity
|
|
17018
|
-
* @throws {Error} - Save is not allowed for Authorizations, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
17019
|
-
*/
|
|
17020
|
-
async Save(options) {
|
|
17021
|
-
throw new Error('Save is not allowed for Authorizations, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
17022
|
-
}
|
|
17023
|
-
/**
|
|
17024
|
-
* 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.
|
|
17025
|
-
* @public
|
|
17026
|
-
* @method
|
|
17027
|
-
* @override
|
|
17028
|
-
* @memberof AuthorizationEntity
|
|
17029
|
-
* @throws {Error} - Delete is not allowed for Authorizations, to enable it set AllowDeleteAPI to 1 in the database.
|
|
17030
|
-
*/
|
|
17031
|
-
async Delete() {
|
|
17032
|
-
throw new Error('Delete is not allowed for Authorizations, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
17033
|
-
}
|
|
17034
|
-
/**
|
|
17035
17089
|
* * Field Name: ID
|
|
17036
17090
|
* * Display Name: ID
|
|
17037
17091
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -17287,17 +17341,6 @@ let CommunicationLogEntity = class CommunicationLogEntity extends core_1.BaseEnt
|
|
|
17287
17341
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
17288
17342
|
}
|
|
17289
17343
|
/**
|
|
17290
|
-
* 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.
|
|
17291
|
-
* @public
|
|
17292
|
-
* @method
|
|
17293
|
-
* @override
|
|
17294
|
-
* @memberof CommunicationLogEntity
|
|
17295
|
-
* @throws {Error} - Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
17296
|
-
*/
|
|
17297
|
-
async Delete() {
|
|
17298
|
-
throw new Error('Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
17299
|
-
}
|
|
17300
|
-
/**
|
|
17301
17344
|
* * Field Name: ID
|
|
17302
17345
|
* * Display Name: ID
|
|
17303
17346
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -17817,17 +17860,6 @@ let CommunicationRunEntity = class CommunicationRunEntity extends core_1.BaseEnt
|
|
|
17817
17860
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
17818
17861
|
}
|
|
17819
17862
|
/**
|
|
17820
|
-
* 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.
|
|
17821
|
-
* @public
|
|
17822
|
-
* @method
|
|
17823
|
-
* @override
|
|
17824
|
-
* @memberof CommunicationRunEntity
|
|
17825
|
-
* @throws {Error} - Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
17826
|
-
*/
|
|
17827
|
-
async Delete() {
|
|
17828
|
-
throw new Error('Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
17829
|
-
}
|
|
17830
|
-
/**
|
|
17831
17863
|
* * Field Name: ID
|
|
17832
17864
|
* * Display Name: ID
|
|
17833
17865
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -18103,17 +18135,6 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
|
|
|
18103
18135
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
18104
18136
|
}
|
|
18105
18137
|
/**
|
|
18106
|
-
* 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.
|
|
18107
|
-
* @public
|
|
18108
|
-
* @method
|
|
18109
|
-
* @override
|
|
18110
|
-
* @memberof CompanyIntegrationRecordMapEntity
|
|
18111
|
-
* @throws {Error} - Delete is not allowed for Company Integration Record Maps, to enable it set AllowDeleteAPI to 1 in the database.
|
|
18112
|
-
*/
|
|
18113
|
-
async Delete() {
|
|
18114
|
-
throw new Error('Delete is not allowed for Company Integration Record Maps, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
18115
|
-
}
|
|
18116
|
-
/**
|
|
18117
18138
|
* * Field Name: ID
|
|
18118
18139
|
* * Display Name: ID
|
|
18119
18140
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -18230,17 +18251,6 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
|
|
|
18230
18251
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
18231
18252
|
}
|
|
18232
18253
|
/**
|
|
18233
|
-
* 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.
|
|
18234
|
-
* @public
|
|
18235
|
-
* @method
|
|
18236
|
-
* @override
|
|
18237
|
-
* @memberof CompanyIntegrationRunAPILogEntity
|
|
18238
|
-
* @throws {Error} - Delete is not allowed for Company Integration Run API Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
18239
|
-
*/
|
|
18240
|
-
async Delete() {
|
|
18241
|
-
throw new Error('Delete is not allowed for Company Integration Run API Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
18242
|
-
}
|
|
18243
|
-
/**
|
|
18244
18254
|
* * Field Name: ID
|
|
18245
18255
|
* * SQL Data Type: uniqueidentifier
|
|
18246
18256
|
* * Default Value: newsequentialid()
|
|
@@ -18378,17 +18388,6 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
|
|
|
18378
18388
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
18379
18389
|
}
|
|
18380
18390
|
/**
|
|
18381
|
-
* 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.
|
|
18382
|
-
* @public
|
|
18383
|
-
* @method
|
|
18384
|
-
* @override
|
|
18385
|
-
* @memberof CompanyIntegrationRunDetailEntity
|
|
18386
|
-
* @throws {Error} - Delete is not allowed for Company Integration Run Details, to enable it set AllowDeleteAPI to 1 in the database.
|
|
18387
|
-
*/
|
|
18388
|
-
async Delete() {
|
|
18389
|
-
throw new Error('Delete is not allowed for Company Integration Run Details, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
18390
|
-
}
|
|
18391
|
-
/**
|
|
18392
18391
|
* * Field Name: ID
|
|
18393
18392
|
* * SQL Data Type: uniqueidentifier
|
|
18394
18393
|
* * Default Value: newsequentialid()
|
|
@@ -18542,17 +18541,6 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
|
|
|
18542
18541
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
18543
18542
|
}
|
|
18544
18543
|
/**
|
|
18545
|
-
* 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.
|
|
18546
|
-
* @public
|
|
18547
|
-
* @method
|
|
18548
|
-
* @override
|
|
18549
|
-
* @memberof CompanyIntegrationRunEntity
|
|
18550
|
-
* @throws {Error} - Delete is not allowed for Company Integration Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
18551
|
-
*/
|
|
18552
|
-
async Delete() {
|
|
18553
|
-
throw new Error('Delete is not allowed for Company Integration Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
18554
|
-
}
|
|
18555
|
-
/**
|
|
18556
18544
|
* * Field Name: ID
|
|
18557
18545
|
* * SQL Data Type: uniqueidentifier
|
|
18558
18546
|
* * Default Value: newsequentialid()
|
|
@@ -21474,17 +21462,6 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
21474
21462
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
21475
21463
|
}
|
|
21476
21464
|
/**
|
|
21477
|
-
* 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.
|
|
21478
|
-
* @public
|
|
21479
|
-
* @method
|
|
21480
|
-
* @override
|
|
21481
|
-
* @memberof DatasetItemEntity
|
|
21482
|
-
* @throws {Error} - Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
21483
|
-
*/
|
|
21484
|
-
async Save(options) {
|
|
21485
|
-
throw new Error('Save is not allowed for Dataset Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
21486
|
-
}
|
|
21487
|
-
/**
|
|
21488
21465
|
* * Field Name: ID
|
|
21489
21466
|
* * Display Name: ID
|
|
21490
21467
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -21656,17 +21633,6 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
|
|
|
21656
21633
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
21657
21634
|
}
|
|
21658
21635
|
/**
|
|
21659
|
-
* 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.
|
|
21660
|
-
* @public
|
|
21661
|
-
* @method
|
|
21662
|
-
* @override
|
|
21663
|
-
* @memberof DatasetEntity
|
|
21664
|
-
* @throws {Error} - Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
21665
|
-
*/
|
|
21666
|
-
async Save(options) {
|
|
21667
|
-
throw new Error('Save is not allowed for Datasets, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
21668
|
-
}
|
|
21669
|
-
/**
|
|
21670
21636
|
* * Field Name: ID
|
|
21671
21637
|
* * Display Name: ID
|
|
21672
21638
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -21751,17 +21717,6 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
|
|
|
21751
21717
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
21752
21718
|
}
|
|
21753
21719
|
/**
|
|
21754
|
-
* 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.
|
|
21755
|
-
* @public
|
|
21756
|
-
* @method
|
|
21757
|
-
* @override
|
|
21758
|
-
* @memberof DuplicateRunDetailMatchEntity
|
|
21759
|
-
* @throws {Error} - Delete is not allowed for Duplicate Run Detail Matches, to enable it set AllowDeleteAPI to 1 in the database.
|
|
21760
|
-
*/
|
|
21761
|
-
async Delete() {
|
|
21762
|
-
throw new Error('Delete is not allowed for Duplicate Run Detail Matches, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
21763
|
-
}
|
|
21764
|
-
/**
|
|
21765
21720
|
* * Field Name: ID
|
|
21766
21721
|
* * Display Name: ID
|
|
21767
21722
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -21959,17 +21914,6 @@ let DuplicateRunDetailEntity = class DuplicateRunDetailEntity extends core_1.Bas
|
|
|
21959
21914
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
21960
21915
|
}
|
|
21961
21916
|
/**
|
|
21962
|
-
* 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.
|
|
21963
|
-
* @public
|
|
21964
|
-
* @method
|
|
21965
|
-
* @override
|
|
21966
|
-
* @memberof DuplicateRunDetailEntity
|
|
21967
|
-
* @throws {Error} - Delete is not allowed for Duplicate Run Details, to enable it set AllowDeleteAPI to 1 in the database.
|
|
21968
|
-
*/
|
|
21969
|
-
async Delete() {
|
|
21970
|
-
throw new Error('Delete is not allowed for Duplicate Run Details, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
21971
|
-
}
|
|
21972
|
-
/**
|
|
21973
21917
|
* * Field Name: ID
|
|
21974
21918
|
* * Display Name: ID
|
|
21975
21919
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -22126,17 +22070,6 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
|
|
|
22126
22070
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
22127
22071
|
}
|
|
22128
22072
|
/**
|
|
22129
|
-
* 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.
|
|
22130
|
-
* @public
|
|
22131
|
-
* @method
|
|
22132
|
-
* @override
|
|
22133
|
-
* @memberof DuplicateRunEntity
|
|
22134
|
-
* @throws {Error} - Delete is not allowed for Duplicate Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
22135
|
-
*/
|
|
22136
|
-
async Delete() {
|
|
22137
|
-
throw new Error('Delete is not allowed for Duplicate Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
22138
|
-
}
|
|
22139
|
-
/**
|
|
22140
22073
|
* * Field Name: ID
|
|
22141
22074
|
* * Display Name: ID
|
|
22142
22075
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -22359,17 +22292,6 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
22359
22292
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
22360
22293
|
}
|
|
22361
22294
|
/**
|
|
22362
|
-
* 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.
|
|
22363
|
-
* @public
|
|
22364
|
-
* @method
|
|
22365
|
-
* @override
|
|
22366
|
-
* @memberof EmployeeCompanyIntegrationEntity
|
|
22367
|
-
* @throws {Error} - Delete is not allowed for Employee Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.
|
|
22368
|
-
*/
|
|
22369
|
-
async Delete() {
|
|
22370
|
-
throw new Error('Delete is not allowed for Employee Company Integrations, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
22371
|
-
}
|
|
22372
|
-
/**
|
|
22373
22295
|
* * Field Name: ID
|
|
22374
22296
|
* * SQL Data Type: uniqueidentifier
|
|
22375
22297
|
* * Default Value: newsequentialid()
|
|
@@ -24700,17 +24622,6 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
|
|
|
24700
24622
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
24701
24623
|
}
|
|
24702
24624
|
/**
|
|
24703
|
-
* 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.
|
|
24704
|
-
* @public
|
|
24705
|
-
* @method
|
|
24706
|
-
* @override
|
|
24707
|
-
* @memberof EntityDocumentRunEntity
|
|
24708
|
-
* @throws {Error} - Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
24709
|
-
*/
|
|
24710
|
-
async Delete() {
|
|
24711
|
-
throw new Error('Delete is not allowed for Entity Document Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
24712
|
-
}
|
|
24713
|
-
/**
|
|
24714
24625
|
* * Field Name: ID
|
|
24715
24626
|
* * Display Name: ID
|
|
24716
24627
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -25032,17 +24943,6 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
|
|
|
25032
24943
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
25033
24944
|
}
|
|
25034
24945
|
/**
|
|
25035
|
-
* 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.
|
|
25036
|
-
* @public
|
|
25037
|
-
* @method
|
|
25038
|
-
* @override
|
|
25039
|
-
* @memberof EntityDocumentEntity
|
|
25040
|
-
* @throws {Error} - Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.
|
|
25041
|
-
*/
|
|
25042
|
-
async Delete() {
|
|
25043
|
-
throw new Error('Delete is not allowed for Entity Documents, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
25044
|
-
}
|
|
25045
|
-
/**
|
|
25046
24946
|
* Validate() method override for Entity Documents entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
25047
24947
|
* * Table-Level: This rule ensures that the potential match threshold is not greater than the absolute match threshold, and both thresholds must be between 0 and 1 inclusive.
|
|
25048
24948
|
* @public
|
|
@@ -25287,17 +25187,6 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
25287
25187
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
25288
25188
|
}
|
|
25289
25189
|
/**
|
|
25290
|
-
* 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.
|
|
25291
|
-
* @public
|
|
25292
|
-
* @method
|
|
25293
|
-
* @override
|
|
25294
|
-
* @memberof EntityFieldValueEntity
|
|
25295
|
-
* @throws {Error} - Delete is not allowed for Entity Field Values, to enable it set AllowDeleteAPI to 1 in the database.
|
|
25296
|
-
*/
|
|
25297
|
-
async Delete() {
|
|
25298
|
-
throw new Error('Delete is not allowed for Entity Field Values, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
25299
|
-
}
|
|
25300
|
-
/**
|
|
25301
25190
|
* * Field Name: ID
|
|
25302
25191
|
* * Display Name: ID
|
|
25303
25192
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -26358,17 +26247,6 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
|
|
|
26358
26247
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
26359
26248
|
}
|
|
26360
26249
|
/**
|
|
26361
|
-
* 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.
|
|
26362
|
-
* @public
|
|
26363
|
-
* @method
|
|
26364
|
-
* @override
|
|
26365
|
-
* @memberof EntityRecordDocumentEntity
|
|
26366
|
-
* @throws {Error} - Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.
|
|
26367
|
-
*/
|
|
26368
|
-
async Delete() {
|
|
26369
|
-
throw new Error('Delete is not allowed for Entity Record Documents, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
26370
|
-
}
|
|
26371
|
-
/**
|
|
26372
26250
|
* * Field Name: ID
|
|
26373
26251
|
* * Display Name: ID
|
|
26374
26252
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -26547,17 +26425,6 @@ let EntityRelationshipDisplayComponentEntity = class EntityRelationshipDisplayCo
|
|
|
26547
26425
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
26548
26426
|
}
|
|
26549
26427
|
/**
|
|
26550
|
-
* 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.
|
|
26551
|
-
* @public
|
|
26552
|
-
* @method
|
|
26553
|
-
* @override
|
|
26554
|
-
* @memberof EntityRelationshipDisplayComponentEntity
|
|
26555
|
-
* @throws {Error} - Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.
|
|
26556
|
-
*/
|
|
26557
|
-
async Delete() {
|
|
26558
|
-
throw new Error('Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
26559
|
-
}
|
|
26560
|
-
/**
|
|
26561
26428
|
* * Field Name: ID
|
|
26562
26429
|
* * Display Name: ID
|
|
26563
26430
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -27163,17 +27030,6 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
27163
27030
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
27164
27031
|
}
|
|
27165
27032
|
/**
|
|
27166
|
-
* 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.
|
|
27167
|
-
* @public
|
|
27168
|
-
* @method
|
|
27169
|
-
* @override
|
|
27170
|
-
* @memberof ErrorLogEntity
|
|
27171
|
-
* @throws {Error} - Delete is not allowed for Error Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
27172
|
-
*/
|
|
27173
|
-
async Delete() {
|
|
27174
|
-
throw new Error('Delete is not allowed for Error Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
27175
|
-
}
|
|
27176
|
-
/**
|
|
27177
27033
|
* * Field Name: ID
|
|
27178
27034
|
* * SQL Data Type: uniqueidentifier
|
|
27179
27035
|
* * Default Value: newsequentialid()
|
|
@@ -27926,7 +27782,7 @@ let FileEntity = class FileEntity extends core_1.BaseEntity {
|
|
|
27926
27782
|
/**
|
|
27927
27783
|
* * Field Name: ContentType
|
|
27928
27784
|
* * Display Name: Content Type
|
|
27929
|
-
* * SQL Data Type: nvarchar(
|
|
27785
|
+
* * SQL Data Type: nvarchar(255)
|
|
27930
27786
|
*/
|
|
27931
27787
|
get ContentType() {
|
|
27932
27788
|
return this.Get('ContentType');
|
|
@@ -32254,6 +32110,174 @@ let AIPromptRunEntity = class AIPromptRunEntity extends core_1.BaseEntity {
|
|
|
32254
32110
|
this.Set('DescendantCost', value);
|
|
32255
32111
|
}
|
|
32256
32112
|
/**
|
|
32113
|
+
* * Field Name: ValidationAttemptCount
|
|
32114
|
+
* * Display Name: Validation Attempt Count
|
|
32115
|
+
* * SQL Data Type: int
|
|
32116
|
+
* * Description: Total number of validation attempts made (including the initial attempt)
|
|
32117
|
+
*/
|
|
32118
|
+
get ValidationAttemptCount() {
|
|
32119
|
+
return this.Get('ValidationAttemptCount');
|
|
32120
|
+
}
|
|
32121
|
+
set ValidationAttemptCount(value) {
|
|
32122
|
+
this.Set('ValidationAttemptCount', value);
|
|
32123
|
+
}
|
|
32124
|
+
/**
|
|
32125
|
+
* * Field Name: SuccessfulValidationCount
|
|
32126
|
+
* * Display Name: Successful Validation Count
|
|
32127
|
+
* * SQL Data Type: int
|
|
32128
|
+
* * Description: Number of validation attempts that passed validation
|
|
32129
|
+
*/
|
|
32130
|
+
get SuccessfulValidationCount() {
|
|
32131
|
+
return this.Get('SuccessfulValidationCount');
|
|
32132
|
+
}
|
|
32133
|
+
set SuccessfulValidationCount(value) {
|
|
32134
|
+
this.Set('SuccessfulValidationCount', value);
|
|
32135
|
+
}
|
|
32136
|
+
/**
|
|
32137
|
+
* * Field Name: FinalValidationPassed
|
|
32138
|
+
* * Display Name: Final Validation Passed
|
|
32139
|
+
* * SQL Data Type: bit
|
|
32140
|
+
* * Description: Whether validation ultimately passed (1) or failed (0)
|
|
32141
|
+
*/
|
|
32142
|
+
get FinalValidationPassed() {
|
|
32143
|
+
return this.Get('FinalValidationPassed');
|
|
32144
|
+
}
|
|
32145
|
+
set FinalValidationPassed(value) {
|
|
32146
|
+
this.Set('FinalValidationPassed', value);
|
|
32147
|
+
}
|
|
32148
|
+
/**
|
|
32149
|
+
* * Field Name: ValidationBehavior
|
|
32150
|
+
* * Display Name: Validation Behavior
|
|
32151
|
+
* * SQL Data Type: nvarchar(50)
|
|
32152
|
+
* * Description: Validation behavior used: Strict, Warn, or None
|
|
32153
|
+
*/
|
|
32154
|
+
get ValidationBehavior() {
|
|
32155
|
+
return this.Get('ValidationBehavior');
|
|
32156
|
+
}
|
|
32157
|
+
set ValidationBehavior(value) {
|
|
32158
|
+
this.Set('ValidationBehavior', value);
|
|
32159
|
+
}
|
|
32160
|
+
/**
|
|
32161
|
+
* * Field Name: RetryStrategy
|
|
32162
|
+
* * Display Name: Retry Strategy
|
|
32163
|
+
* * SQL Data Type: nvarchar(50)
|
|
32164
|
+
* * Description: Retry strategy used: Fixed, Linear, or Exponential
|
|
32165
|
+
*/
|
|
32166
|
+
get RetryStrategy() {
|
|
32167
|
+
return this.Get('RetryStrategy');
|
|
32168
|
+
}
|
|
32169
|
+
set RetryStrategy(value) {
|
|
32170
|
+
this.Set('RetryStrategy', value);
|
|
32171
|
+
}
|
|
32172
|
+
/**
|
|
32173
|
+
* * Field Name: MaxRetriesConfigured
|
|
32174
|
+
* * Display Name: Max Retries Configured
|
|
32175
|
+
* * SQL Data Type: int
|
|
32176
|
+
* * Description: Maximum number of retries configured on the prompt
|
|
32177
|
+
*/
|
|
32178
|
+
get MaxRetriesConfigured() {
|
|
32179
|
+
return this.Get('MaxRetriesConfigured');
|
|
32180
|
+
}
|
|
32181
|
+
set MaxRetriesConfigured(value) {
|
|
32182
|
+
this.Set('MaxRetriesConfigured', value);
|
|
32183
|
+
}
|
|
32184
|
+
/**
|
|
32185
|
+
* * Field Name: FinalValidationError
|
|
32186
|
+
* * Display Name: Final Validation Error
|
|
32187
|
+
* * SQL Data Type: nvarchar(500)
|
|
32188
|
+
* * Description: The final validation error message if validation failed
|
|
32189
|
+
*/
|
|
32190
|
+
get FinalValidationError() {
|
|
32191
|
+
return this.Get('FinalValidationError');
|
|
32192
|
+
}
|
|
32193
|
+
set FinalValidationError(value) {
|
|
32194
|
+
this.Set('FinalValidationError', value);
|
|
32195
|
+
}
|
|
32196
|
+
/**
|
|
32197
|
+
* * Field Name: ValidationErrorCount
|
|
32198
|
+
* * Display Name: Validation Error Count
|
|
32199
|
+
* * SQL Data Type: int
|
|
32200
|
+
* * Description: Number of validation errors on the final attempt
|
|
32201
|
+
*/
|
|
32202
|
+
get ValidationErrorCount() {
|
|
32203
|
+
return this.Get('ValidationErrorCount');
|
|
32204
|
+
}
|
|
32205
|
+
set ValidationErrorCount(value) {
|
|
32206
|
+
this.Set('ValidationErrorCount', value);
|
|
32207
|
+
}
|
|
32208
|
+
/**
|
|
32209
|
+
* * Field Name: CommonValidationError
|
|
32210
|
+
* * Display Name: Common Validation Error
|
|
32211
|
+
* * SQL Data Type: nvarchar(255)
|
|
32212
|
+
* * Description: Most frequent validation error across all attempts
|
|
32213
|
+
*/
|
|
32214
|
+
get CommonValidationError() {
|
|
32215
|
+
return this.Get('CommonValidationError');
|
|
32216
|
+
}
|
|
32217
|
+
set CommonValidationError(value) {
|
|
32218
|
+
this.Set('CommonValidationError', value);
|
|
32219
|
+
}
|
|
32220
|
+
/**
|
|
32221
|
+
* * Field Name: FirstAttemptAt
|
|
32222
|
+
* * Display Name: First Attempt At
|
|
32223
|
+
* * SQL Data Type: datetime
|
|
32224
|
+
* * Description: Timestamp of the first validation attempt
|
|
32225
|
+
*/
|
|
32226
|
+
get FirstAttemptAt() {
|
|
32227
|
+
return this.Get('FirstAttemptAt');
|
|
32228
|
+
}
|
|
32229
|
+
set FirstAttemptAt(value) {
|
|
32230
|
+
this.Set('FirstAttemptAt', value);
|
|
32231
|
+
}
|
|
32232
|
+
/**
|
|
32233
|
+
* * Field Name: LastAttemptAt
|
|
32234
|
+
* * Display Name: Last Attempt At
|
|
32235
|
+
* * SQL Data Type: datetime
|
|
32236
|
+
* * Description: Timestamp of the last validation attempt
|
|
32237
|
+
*/
|
|
32238
|
+
get LastAttemptAt() {
|
|
32239
|
+
return this.Get('LastAttemptAt');
|
|
32240
|
+
}
|
|
32241
|
+
set LastAttemptAt(value) {
|
|
32242
|
+
this.Set('LastAttemptAt', value);
|
|
32243
|
+
}
|
|
32244
|
+
/**
|
|
32245
|
+
* * Field Name: TotalRetryDurationMS
|
|
32246
|
+
* * Display Name: Total Retry Duration MS
|
|
32247
|
+
* * SQL Data Type: int
|
|
32248
|
+
* * Description: Total time spent on retries in milliseconds (excluding first attempt)
|
|
32249
|
+
*/
|
|
32250
|
+
get TotalRetryDurationMS() {
|
|
32251
|
+
return this.Get('TotalRetryDurationMS');
|
|
32252
|
+
}
|
|
32253
|
+
set TotalRetryDurationMS(value) {
|
|
32254
|
+
this.Set('TotalRetryDurationMS', value);
|
|
32255
|
+
}
|
|
32256
|
+
/**
|
|
32257
|
+
* * Field Name: ValidationAttempts
|
|
32258
|
+
* * Display Name: Validation Attempts
|
|
32259
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
32260
|
+
* * Description: JSON array containing detailed information about each validation attempt
|
|
32261
|
+
*/
|
|
32262
|
+
get ValidationAttempts() {
|
|
32263
|
+
return this.Get('ValidationAttempts');
|
|
32264
|
+
}
|
|
32265
|
+
set ValidationAttempts(value) {
|
|
32266
|
+
this.Set('ValidationAttempts', value);
|
|
32267
|
+
}
|
|
32268
|
+
/**
|
|
32269
|
+
* * Field Name: ValidationSummary
|
|
32270
|
+
* * Display Name: Validation Summary
|
|
32271
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
32272
|
+
* * Description: JSON object containing summary information about the validation process
|
|
32273
|
+
*/
|
|
32274
|
+
get ValidationSummary() {
|
|
32275
|
+
return this.Get('ValidationSummary');
|
|
32276
|
+
}
|
|
32277
|
+
set ValidationSummary(value) {
|
|
32278
|
+
this.Set('ValidationSummary', value);
|
|
32279
|
+
}
|
|
32280
|
+
/**
|
|
32257
32281
|
* * Field Name: Prompt
|
|
32258
32282
|
* * Display Name: Prompt
|
|
32259
32283
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -33763,28 +33787,6 @@ let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.Bas
|
|
|
33763
33787
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
33764
33788
|
}
|
|
33765
33789
|
/**
|
|
33766
|
-
* 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.
|
|
33767
|
-
* @public
|
|
33768
|
-
* @method
|
|
33769
|
-
* @override
|
|
33770
|
-
* @memberof OutputDeliveryTypeEntity
|
|
33771
|
-
* @throws {Error} - Save is not allowed for Output Delivery Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
33772
|
-
*/
|
|
33773
|
-
async Save(options) {
|
|
33774
|
-
throw new Error('Save is not allowed for Output Delivery Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
33775
|
-
}
|
|
33776
|
-
/**
|
|
33777
|
-
* 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.
|
|
33778
|
-
* @public
|
|
33779
|
-
* @method
|
|
33780
|
-
* @override
|
|
33781
|
-
* @memberof OutputDeliveryTypeEntity
|
|
33782
|
-
* @throws {Error} - Delete is not allowed for Output Delivery Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
33783
|
-
*/
|
|
33784
|
-
async Delete() {
|
|
33785
|
-
throw new Error('Delete is not allowed for Output Delivery Types, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
33786
|
-
}
|
|
33787
|
-
/**
|
|
33788
33790
|
* * Field Name: ID
|
|
33789
33791
|
* * Display Name: ID
|
|
33790
33792
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -33869,28 +33871,6 @@ let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEnt
|
|
|
33869
33871
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
33870
33872
|
}
|
|
33871
33873
|
/**
|
|
33872
|
-
* 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.
|
|
33873
|
-
* @public
|
|
33874
|
-
* @method
|
|
33875
|
-
* @override
|
|
33876
|
-
* @memberof OutputFormatTypeEntity
|
|
33877
|
-
* @throws {Error} - Save is not allowed for Output Format Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
33878
|
-
*/
|
|
33879
|
-
async Save(options) {
|
|
33880
|
-
throw new Error('Save is not allowed for Output Format Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
33881
|
-
}
|
|
33882
|
-
/**
|
|
33883
|
-
* 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.
|
|
33884
|
-
* @public
|
|
33885
|
-
* @method
|
|
33886
|
-
* @override
|
|
33887
|
-
* @memberof OutputFormatTypeEntity
|
|
33888
|
-
* @throws {Error} - Delete is not allowed for Output Format Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
33889
|
-
*/
|
|
33890
|
-
async Delete() {
|
|
33891
|
-
throw new Error('Delete is not allowed for Output Format Types, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
33892
|
-
}
|
|
33893
|
-
/**
|
|
33894
33874
|
* * Field Name: ID
|
|
33895
33875
|
* * Display Name: ID
|
|
33896
33876
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -33986,28 +33966,6 @@ let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseE
|
|
|
33986
33966
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
33987
33967
|
}
|
|
33988
33968
|
/**
|
|
33989
|
-
* 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.
|
|
33990
|
-
* @public
|
|
33991
|
-
* @method
|
|
33992
|
-
* @override
|
|
33993
|
-
* @memberof OutputTriggerTypeEntity
|
|
33994
|
-
* @throws {Error} - Save is not allowed for Output Trigger Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
33995
|
-
*/
|
|
33996
|
-
async Save(options) {
|
|
33997
|
-
throw new Error('Save is not allowed for Output Trigger Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
33998
|
-
}
|
|
33999
|
-
/**
|
|
34000
|
-
* 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.
|
|
34001
|
-
* @public
|
|
34002
|
-
* @method
|
|
34003
|
-
* @override
|
|
34004
|
-
* @memberof OutputTriggerTypeEntity
|
|
34005
|
-
* @throws {Error} - Delete is not allowed for Output Trigger Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
34006
|
-
*/
|
|
34007
|
-
async Delete() {
|
|
34008
|
-
throw new Error('Delete is not allowed for Output Trigger Types, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
34009
|
-
}
|
|
34010
|
-
/**
|
|
34011
33969
|
* * Field Name: ID
|
|
34012
33970
|
* * Display Name: ID
|
|
34013
33971
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -34843,17 +34801,6 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
|
|
|
34843
34801
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
34844
34802
|
}
|
|
34845
34803
|
/**
|
|
34846
|
-
* 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.
|
|
34847
|
-
* @public
|
|
34848
|
-
* @method
|
|
34849
|
-
* @override
|
|
34850
|
-
* @memberof QueueTaskEntity
|
|
34851
|
-
* @throws {Error} - Delete is not allowed for Queue Tasks, to enable it set AllowDeleteAPI to 1 in the database.
|
|
34852
|
-
*/
|
|
34853
|
-
async Delete() {
|
|
34854
|
-
throw new Error('Delete is not allowed for Queue Tasks, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
34855
|
-
}
|
|
34856
|
-
/**
|
|
34857
34804
|
* * Field Name: ID
|
|
34858
34805
|
* * Display Name: ID
|
|
34859
34806
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -35030,17 +34977,6 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
|
|
|
35030
34977
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
35031
34978
|
}
|
|
35032
34979
|
/**
|
|
35033
|
-
* 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.
|
|
35034
|
-
* @public
|
|
35035
|
-
* @method
|
|
35036
|
-
* @override
|
|
35037
|
-
* @memberof QueueTypeEntity
|
|
35038
|
-
* @throws {Error} - Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
35039
|
-
*/
|
|
35040
|
-
async Save(options) {
|
|
35041
|
-
throw new Error('Save is not allowed for Queue Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
35042
|
-
}
|
|
35043
|
-
/**
|
|
35044
34980
|
* * Field Name: ID
|
|
35045
34981
|
* * Display Name: ID
|
|
35046
34982
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -35160,17 +35096,6 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
35160
35096
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
35161
35097
|
}
|
|
35162
35098
|
/**
|
|
35163
|
-
* 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.
|
|
35164
|
-
* @public
|
|
35165
|
-
* @method
|
|
35166
|
-
* @override
|
|
35167
|
-
* @memberof QueueEntity
|
|
35168
|
-
* @throws {Error} - Delete is not allowed for Queues, to enable it set AllowDeleteAPI to 1 in the database.
|
|
35169
|
-
*/
|
|
35170
|
-
async Delete() {
|
|
35171
|
-
throw new Error('Delete is not allowed for Queues, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
35172
|
-
}
|
|
35173
|
-
/**
|
|
35174
35099
|
* * Field Name: ID
|
|
35175
35100
|
* * Display Name: ID
|
|
35176
35101
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -35421,17 +35346,6 @@ let RecommendationItemEntity = class RecommendationItemEntity extends core_1.Bas
|
|
|
35421
35346
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
35422
35347
|
}
|
|
35423
35348
|
/**
|
|
35424
|
-
* 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.
|
|
35425
|
-
* @public
|
|
35426
|
-
* @method
|
|
35427
|
-
* @override
|
|
35428
|
-
* @memberof RecommendationItemEntity
|
|
35429
|
-
* @throws {Error} - Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.
|
|
35430
|
-
*/
|
|
35431
|
-
async Delete() {
|
|
35432
|
-
throw new Error('Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
35433
|
-
}
|
|
35434
|
-
/**
|
|
35435
35349
|
* Validate() method override for Recommendation Items entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
35436
35350
|
* * MatchProbability: This rule ensures that the match probability value is between 0 and 1, inclusive.
|
|
35437
35351
|
* @public
|
|
@@ -35659,17 +35573,6 @@ let RecommendationRunEntity = class RecommendationRunEntity extends core_1.BaseE
|
|
|
35659
35573
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
35660
35574
|
}
|
|
35661
35575
|
/**
|
|
35662
|
-
* 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.
|
|
35663
|
-
* @public
|
|
35664
|
-
* @method
|
|
35665
|
-
* @override
|
|
35666
|
-
* @memberof RecommendationRunEntity
|
|
35667
|
-
* @throws {Error} - Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
35668
|
-
*/
|
|
35669
|
-
async Delete() {
|
|
35670
|
-
throw new Error('Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
35671
|
-
}
|
|
35672
|
-
/**
|
|
35673
35576
|
* * Field Name: ID
|
|
35674
35577
|
* * Display Name: ID
|
|
35675
35578
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -35827,17 +35730,6 @@ let RecommendationEntity = class RecommendationEntity extends core_1.BaseEntity
|
|
|
35827
35730
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
35828
35731
|
}
|
|
35829
35732
|
/**
|
|
35830
|
-
* 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.
|
|
35831
|
-
* @public
|
|
35832
|
-
* @method
|
|
35833
|
-
* @override
|
|
35834
|
-
* @memberof RecommendationEntity
|
|
35835
|
-
* @throws {Error} - Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.
|
|
35836
|
-
*/
|
|
35837
|
-
async Delete() {
|
|
35838
|
-
throw new Error('Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
35839
|
-
}
|
|
35840
|
-
/**
|
|
35841
35733
|
* * Field Name: ID
|
|
35842
35734
|
* * Display Name: ID
|
|
35843
35735
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -35945,17 +35837,6 @@ let RecordChangeReplayRunEntity = class RecordChangeReplayRunEntity extends core
|
|
|
35945
35837
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
35946
35838
|
}
|
|
35947
35839
|
/**
|
|
35948
|
-
* 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.
|
|
35949
|
-
* @public
|
|
35950
|
-
* @method
|
|
35951
|
-
* @override
|
|
35952
|
-
* @memberof RecordChangeReplayRunEntity
|
|
35953
|
-
* @throws {Error} - Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
35954
|
-
*/
|
|
35955
|
-
async Delete() {
|
|
35956
|
-
throw new Error('Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
35957
|
-
}
|
|
35958
|
-
/**
|
|
35959
35840
|
* * Field Name: ID
|
|
35960
35841
|
* * Display Name: ID
|
|
35961
35842
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -36081,17 +35962,6 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
36081
35962
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
36082
35963
|
}
|
|
36083
35964
|
/**
|
|
36084
|
-
* 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.
|
|
36085
|
-
* @public
|
|
36086
|
-
* @method
|
|
36087
|
-
* @override
|
|
36088
|
-
* @memberof RecordChangeEntity
|
|
36089
|
-
* @throws {Error} - Delete is not allowed for Record Changes, to enable it set AllowDeleteAPI to 1 in the database.
|
|
36090
|
-
*/
|
|
36091
|
-
async Delete() {
|
|
36092
|
-
throw new Error('Delete is not allowed for Record Changes, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
36093
|
-
}
|
|
36094
|
-
/**
|
|
36095
35965
|
* * Field Name: ID
|
|
36096
35966
|
* * SQL Data Type: uniqueidentifier
|
|
36097
35967
|
* * Default Value: newsequentialid()
|
|
@@ -36358,17 +36228,6 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
36358
36228
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
36359
36229
|
}
|
|
36360
36230
|
/**
|
|
36361
|
-
* 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.
|
|
36362
|
-
* @public
|
|
36363
|
-
* @method
|
|
36364
|
-
* @override
|
|
36365
|
-
* @memberof RecordMergeDeletionLogEntity
|
|
36366
|
-
* @throws {Error} - Delete is not allowed for Record Merge Deletion Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
36367
|
-
*/
|
|
36368
|
-
async Delete() {
|
|
36369
|
-
throw new Error('Delete is not allowed for Record Merge Deletion Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
36370
|
-
}
|
|
36371
|
-
/**
|
|
36372
36231
|
* * Field Name: ID
|
|
36373
36232
|
* * Display Name: ID
|
|
36374
36233
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -36482,17 +36341,6 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
36482
36341
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
36483
36342
|
}
|
|
36484
36343
|
/**
|
|
36485
|
-
* 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.
|
|
36486
|
-
* @public
|
|
36487
|
-
* @method
|
|
36488
|
-
* @override
|
|
36489
|
-
* @memberof RecordMergeLogEntity
|
|
36490
|
-
* @throws {Error} - Delete is not allowed for Record Merge Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
36491
|
-
*/
|
|
36492
|
-
async Delete() {
|
|
36493
|
-
throw new Error('Delete is not allowed for Record Merge Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
36494
|
-
}
|
|
36495
|
-
/**
|
|
36496
36344
|
* * Field Name: ID
|
|
36497
36345
|
* * Display Name: ID
|
|
36498
36346
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -37628,28 +37476,6 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
|
|
|
37628
37476
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
37629
37477
|
}
|
|
37630
37478
|
/**
|
|
37631
|
-
* 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.
|
|
37632
|
-
* @public
|
|
37633
|
-
* @method
|
|
37634
|
-
* @override
|
|
37635
|
-
* @memberof ResourceTypeEntity
|
|
37636
|
-
* @throws {Error} - Save is not allowed for Resource Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
37637
|
-
*/
|
|
37638
|
-
async Save(options) {
|
|
37639
|
-
throw new Error('Save is not allowed for Resource Types, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
37640
|
-
}
|
|
37641
|
-
/**
|
|
37642
|
-
* 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.
|
|
37643
|
-
* @public
|
|
37644
|
-
* @method
|
|
37645
|
-
* @override
|
|
37646
|
-
* @memberof ResourceTypeEntity
|
|
37647
|
-
* @throws {Error} - Delete is not allowed for Resource Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
37648
|
-
*/
|
|
37649
|
-
async Delete() {
|
|
37650
|
-
throw new Error('Delete is not allowed for Resource Types, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
37651
|
-
}
|
|
37652
|
-
/**
|
|
37653
37479
|
* * Field Name: ID
|
|
37654
37480
|
* * Display Name: ID
|
|
37655
37481
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -37903,17 +37729,6 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
|
|
|
37903
37729
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
37904
37730
|
}
|
|
37905
37731
|
/**
|
|
37906
|
-
* 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.
|
|
37907
|
-
* @public
|
|
37908
|
-
* @method
|
|
37909
|
-
* @override
|
|
37910
|
-
* @memberof RowLevelSecurityFilterEntity
|
|
37911
|
-
* @throws {Error} - Save is not allowed for Row Level Security Filters, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
37912
|
-
*/
|
|
37913
|
-
async Save(options) {
|
|
37914
|
-
throw new Error('Save is not allowed for Row Level Security Filters, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
37915
|
-
}
|
|
37916
|
-
/**
|
|
37917
37732
|
* * Field Name: ID
|
|
37918
37733
|
* * Display Name: ID
|
|
37919
37734
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -38395,17 +38210,6 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
|
|
|
38395
38210
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
38396
38211
|
}
|
|
38397
38212
|
/**
|
|
38398
|
-
* 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.
|
|
38399
|
-
* @public
|
|
38400
|
-
* @method
|
|
38401
|
-
* @override
|
|
38402
|
-
* @memberof SchemaInfoEntity
|
|
38403
|
-
* @throws {Error} - Delete is not allowed for Schema Info, to enable it set AllowDeleteAPI to 1 in the database.
|
|
38404
|
-
*/
|
|
38405
|
-
async Delete() {
|
|
38406
|
-
throw new Error('Delete is not allowed for Schema Info, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
38407
|
-
}
|
|
38408
|
-
/**
|
|
38409
38213
|
* Validate() method override for Schema Info entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
38410
38214
|
* * Table-Level: This rule ensures that both the minimum and maximum entity IDs must be greater than zero.
|
|
38411
38215
|
* * Table-Level: This rule ensures that the maximum entity ID must be greater than the minimum entity ID, which helps to maintain valid and logical ranges for entity IDs.
|
|
@@ -38552,17 +38356,6 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
|
|
|
38552
38356
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
38553
38357
|
}
|
|
38554
38358
|
/**
|
|
38555
|
-
* 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.
|
|
38556
|
-
* @public
|
|
38557
|
-
* @method
|
|
38558
|
-
* @override
|
|
38559
|
-
* @memberof SkillEntity
|
|
38560
|
-
* @throws {Error} - Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
38561
|
-
*/
|
|
38562
|
-
async Save(options) {
|
|
38563
|
-
throw new Error('Save is not allowed for Skills, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
38564
|
-
}
|
|
38565
|
-
/**
|
|
38566
38359
|
* * Field Name: ID
|
|
38567
38360
|
* * SQL Data Type: uniqueidentifier
|
|
38568
38361
|
* * Default Value: newsequentialid()
|
|
@@ -38655,17 +38448,6 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
|
|
|
38655
38448
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
38656
38449
|
}
|
|
38657
38450
|
/**
|
|
38658
|
-
* 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.
|
|
38659
|
-
* @public
|
|
38660
|
-
* @method
|
|
38661
|
-
* @override
|
|
38662
|
-
* @memberof TaggedItemEntity
|
|
38663
|
-
* @throws {Error} - Save is not allowed for Tagged Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
38664
|
-
*/
|
|
38665
|
-
async Save(options) {
|
|
38666
|
-
throw new Error('Save is not allowed for Tagged Items, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
38667
|
-
}
|
|
38668
|
-
/**
|
|
38669
38451
|
* * Field Name: ID
|
|
38670
38452
|
* * Display Name: ID
|
|
38671
38453
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -38780,17 +38562,6 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
|
|
|
38780
38562
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
38781
38563
|
}
|
|
38782
38564
|
/**
|
|
38783
|
-
* 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.
|
|
38784
|
-
* @public
|
|
38785
|
-
* @method
|
|
38786
|
-
* @override
|
|
38787
|
-
* @memberof TagEntity
|
|
38788
|
-
* @throws {Error} - Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
38789
|
-
*/
|
|
38790
|
-
async Save(options) {
|
|
38791
|
-
throw new Error('Save is not allowed for Tags, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
38792
|
-
}
|
|
38793
|
-
/**
|
|
38794
38565
|
* * Field Name: ID
|
|
38795
38566
|
* * Display Name: ID
|
|
38796
38567
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -40236,17 +40007,6 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
40236
40007
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
40237
40008
|
}
|
|
40238
40009
|
/**
|
|
40239
|
-
* 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.
|
|
40240
|
-
* @public
|
|
40241
|
-
* @method
|
|
40242
|
-
* @override
|
|
40243
|
-
* @memberof UserRecordLogEntity
|
|
40244
|
-
* @throws {Error} - Delete is not allowed for User Record Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
40245
|
-
*/
|
|
40246
|
-
async Delete() {
|
|
40247
|
-
throw new Error('Delete is not allowed for User Record Logs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
40248
|
-
}
|
|
40249
|
-
/**
|
|
40250
40010
|
* * Field Name: ID
|
|
40251
40011
|
* * SQL Data Type: uniqueidentifier
|
|
40252
40012
|
* * Default Value: newsequentialid()
|
|
@@ -40674,17 +40434,6 @@ let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseE
|
|
|
40674
40434
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
40675
40435
|
}
|
|
40676
40436
|
/**
|
|
40677
|
-
* 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.
|
|
40678
|
-
* @public
|
|
40679
|
-
* @method
|
|
40680
|
-
* @override
|
|
40681
|
-
* @memberof UserViewRunDetailEntity
|
|
40682
|
-
* @throws {Error} - Delete is not allowed for User View Run Details, to enable it set AllowDeleteAPI to 1 in the database.
|
|
40683
|
-
*/
|
|
40684
|
-
async Delete() {
|
|
40685
|
-
throw new Error('Delete is not allowed for User View Run Details, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
40686
|
-
}
|
|
40687
|
-
/**
|
|
40688
40437
|
* * Field Name: ID
|
|
40689
40438
|
* * SQL Data Type: uniqueidentifier
|
|
40690
40439
|
* * Default Value: newsequentialid()
|
|
@@ -40786,17 +40535,6 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
|
|
|
40786
40535
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
40787
40536
|
}
|
|
40788
40537
|
/**
|
|
40789
|
-
* 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.
|
|
40790
|
-
* @public
|
|
40791
|
-
* @method
|
|
40792
|
-
* @override
|
|
40793
|
-
* @memberof UserViewRunEntity
|
|
40794
|
-
* @throws {Error} - Delete is not allowed for User View Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
40795
|
-
*/
|
|
40796
|
-
async Delete() {
|
|
40797
|
-
throw new Error('Delete is not allowed for User View Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
40798
|
-
}
|
|
40799
|
-
/**
|
|
40800
40538
|
* * Field Name: ID
|
|
40801
40539
|
* * SQL Data Type: uniqueidentifier
|
|
40802
40540
|
* * Default Value: newsequentialid()
|
|
@@ -41690,17 +41428,6 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
41690
41428
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
41691
41429
|
}
|
|
41692
41430
|
/**
|
|
41693
|
-
* 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.
|
|
41694
|
-
* @public
|
|
41695
|
-
* @method
|
|
41696
|
-
* @override
|
|
41697
|
-
* @memberof VersionInstallationEntity
|
|
41698
|
-
* @throws {Error} - Delete is not allowed for Version Installations, to enable it set AllowDeleteAPI to 1 in the database.
|
|
41699
|
-
*/
|
|
41700
|
-
async Delete() {
|
|
41701
|
-
throw new Error('Delete is not allowed for Version Installations, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
41702
|
-
}
|
|
41703
|
-
/**
|
|
41704
41431
|
* * Field Name: ID
|
|
41705
41432
|
* * Display Name: ID
|
|
41706
41433
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -41978,17 +41705,6 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
|
|
|
41978
41705
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
41979
41706
|
}
|
|
41980
41707
|
/**
|
|
41981
|
-
* 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.
|
|
41982
|
-
* @public
|
|
41983
|
-
* @method
|
|
41984
|
-
* @override
|
|
41985
|
-
* @memberof WorkflowRunEntity
|
|
41986
|
-
* @throws {Error} - Delete is not allowed for Workflow Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
41987
|
-
*/
|
|
41988
|
-
async Delete() {
|
|
41989
|
-
throw new Error('Delete is not allowed for Workflow Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
41990
|
-
}
|
|
41991
|
-
/**
|
|
41992
41708
|
* * Field Name: ID
|
|
41993
41709
|
* * SQL Data Type: uniqueidentifier
|
|
41994
41710
|
* * Default Value: newsequentialid()
|
|
@@ -42138,17 +41854,6 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
42138
41854
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
42139
41855
|
}
|
|
42140
41856
|
/**
|
|
42141
|
-
* 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.
|
|
42142
|
-
* @public
|
|
42143
|
-
* @method
|
|
42144
|
-
* @override
|
|
42145
|
-
* @memberof WorkflowEntity
|
|
42146
|
-
* @throws {Error} - Delete is not allowed for Workflows, to enable it set AllowDeleteAPI to 1 in the database.
|
|
42147
|
-
*/
|
|
42148
|
-
async Delete() {
|
|
42149
|
-
throw new Error('Delete is not allowed for Workflows, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
42150
|
-
}
|
|
42151
|
-
/**
|
|
42152
41857
|
* * Field Name: ID
|
|
42153
41858
|
* * SQL Data Type: uniqueidentifier
|
|
42154
41859
|
* * Default Value: newsequentialid()
|