@memberjunction/core-entities 0.9.168 → 0.9.171
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/DashboardEntityExtended.d.ts.map +1 -1
- package/dist/custom/DashboardEntityExtended.js +4 -0
- package/dist/custom/DashboardEntityExtended.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +41 -20
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +41 -14
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +1 -1
|
@@ -1682,6 +1682,11 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1682
1682
|
* * Display Name: Value List Type
|
|
1683
1683
|
* * SQL Data Type: nvarchar(20)
|
|
1684
1684
|
* * Default Value: N'None'
|
|
1685
|
+
* * Value List Type: List
|
|
1686
|
+
* * Possible Values
|
|
1687
|
+
* * None
|
|
1688
|
+
* * List
|
|
1689
|
+
* * ListOrUserEntry
|
|
1685
1690
|
*/
|
|
1686
1691
|
get ValueListType() {
|
|
1687
1692
|
return this.Get('ValueListType');
|
|
@@ -5408,6 +5413,14 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5408
5413
|
* * Field Name: AutoRunIntervalUnits
|
|
5409
5414
|
* * Display Name: Auto Run Interval Units
|
|
5410
5415
|
* * SQL Data Type: nvarchar(20)
|
|
5416
|
+
* * Value List Type: List
|
|
5417
|
+
* * Possible Values
|
|
5418
|
+
* * Years
|
|
5419
|
+
* * Months
|
|
5420
|
+
* * Weeks
|
|
5421
|
+
* * Days
|
|
5422
|
+
* * Hours
|
|
5423
|
+
* * Minutes
|
|
5411
5424
|
* * Description: Minutes, Hours, Days, Weeks, Months, Years
|
|
5412
5425
|
*/
|
|
5413
5426
|
get AutoRunIntervalUnits() {
|
|
@@ -5440,6 +5453,14 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5440
5453
|
set SubclassName(value) {
|
|
5441
5454
|
this.Set('SubclassName', value);
|
|
5442
5455
|
}
|
|
5456
|
+
/**
|
|
5457
|
+
* * Field Name: AutoRunIntervalMinutes
|
|
5458
|
+
* * Display Name: Auto Run Interval Minutes
|
|
5459
|
+
* * SQL Data Type: int
|
|
5460
|
+
*/
|
|
5461
|
+
get AutoRunIntervalMinutes() {
|
|
5462
|
+
return this.Get('AutoRunIntervalMinutes');
|
|
5463
|
+
}
|
|
5443
5464
|
};
|
|
5444
5465
|
exports.WorkflowEntity = WorkflowEntity;
|
|
5445
5466
|
exports.WorkflowEntity = WorkflowEntity = __decorate([
|
|
@@ -6328,20 +6349,10 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
6328
6349
|
* * Display Name: Type
|
|
6329
6350
|
* * SQL Data Type: nchar(10)
|
|
6330
6351
|
* * Default Value: N'grant'
|
|
6331
|
-
* Value List Type: List
|
|
6332
|
-
* Possible Values
|
|
6333
|
-
* Allow - User allowed to execute tasks linked to this authorization
|
|
6334
|
-
*
|
|
6335
|
-
* Allow - User allowed to execute tasks linked to this authorization
|
|
6336
|
-
* Allow - User allowed to execute tasks linked to this authorization
|
|
6337
|
-
* Allow - User allowed to execute tasks linked to this authorization
|
|
6338
|
-
* Allow - User allowed to execute tasks linked to this authorization
|
|
6339
|
-
* Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6340
|
-
* Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6341
|
-
* Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6342
|
-
* Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6343
|
-
* Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6344
|
-
* Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6352
|
+
* * Value List Type: List
|
|
6353
|
+
* * Possible Values
|
|
6354
|
+
* * Allow - User allowed to execute tasks linked to this authorization
|
|
6355
|
+
* * Deny - User NOT allowed to execute tasks linked to this authorization - deny overrides Allow from all other roles a user may be part of
|
|
6345
6356
|
*/
|
|
6346
6357
|
get Type() {
|
|
6347
6358
|
return this.Get('Type');
|
|
@@ -6650,6 +6661,14 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
6650
6661
|
return this.Get('UpdatedAt');
|
|
6651
6662
|
}
|
|
6652
6663
|
/**
|
|
6664
|
+
* * Field Name: EntityField
|
|
6665
|
+
* * Display Name: Entity Field
|
|
6666
|
+
* * SQL Data Type: nvarchar(255)
|
|
6667
|
+
*/
|
|
6668
|
+
get EntityField() {
|
|
6669
|
+
return this.Get('EntityField');
|
|
6670
|
+
}
|
|
6671
|
+
/**
|
|
6653
6672
|
* * Field Name: Entity
|
|
6654
6673
|
* * Display Name: Entity
|
|
6655
6674
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -13204,6 +13223,14 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
13204
13223
|
get UpdatedAt() {
|
|
13205
13224
|
return this.Get('UpdatedAt');
|
|
13206
13225
|
}
|
|
13226
|
+
/**
|
|
13227
|
+
* * Field Name: CompleteVersion
|
|
13228
|
+
* * Display Name: Complete Version
|
|
13229
|
+
* * SQL Data Type: nvarchar(302)
|
|
13230
|
+
*/
|
|
13231
|
+
get CompleteVersion() {
|
|
13232
|
+
return this.Get('CompleteVersion');
|
|
13233
|
+
}
|
|
13207
13234
|
};
|
|
13208
13235
|
exports.VersionInstallationEntity = VersionInstallationEntity;
|
|
13209
13236
|
exports.VersionInstallationEntity = VersionInstallationEntity = __decorate([
|