@memberjunction/core-entities 0.9.171 → 0.9.173
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.
|
@@ -2122,6 +2122,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2122
2122
|
* * Display Name: Base View Generated
|
|
2123
2123
|
* * SQL Data Type: bit
|
|
2124
2124
|
* * Default Value: 1
|
|
2125
|
+
* * Description: When set to 0, CodeGen no longer generates a base view for the entity.
|
|
2125
2126
|
*/
|
|
2126
2127
|
get BaseViewGenerated() {
|
|
2127
2128
|
return this.Get('BaseViewGenerated');
|
|
@@ -2155,6 +2156,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2155
2156
|
* * Display Name: Track Record Changes
|
|
2156
2157
|
* * SQL Data Type: bit
|
|
2157
2158
|
* * Default Value: 1
|
|
2159
|
+
* * Description: When set to 1, changes made via the MemberJunction architecture will result in tracking records being created in the RecordChange table
|
|
2158
2160
|
*/
|
|
2159
2161
|
get TrackRecordChanges() {
|
|
2160
2162
|
return this.Get('TrackRecordChanges');
|
|
@@ -2167,6 +2169,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2167
2169
|
* * Display Name: Audit Record Access
|
|
2168
2170
|
* * SQL Data Type: bit
|
|
2169
2171
|
* * Default Value: 1
|
|
2172
|
+
* * Description: When set to 1, accessing a record by an end-user will result in an Audit Log record being created
|
|
2170
2173
|
*/
|
|
2171
2174
|
get AuditRecordAccess() {
|
|
2172
2175
|
return this.Get('AuditRecordAccess');
|
|
@@ -2179,6 +2182,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2179
2182
|
* * Display Name: Audit View Runs
|
|
2180
2183
|
* * SQL Data Type: bit
|
|
2181
2184
|
* * Default Value: 1
|
|
2185
|
+
* * Description: When set to 1, users running a view against this entity will result in an Audit Log record being created.
|
|
2182
2186
|
*/
|
|
2183
2187
|
get AuditViewRuns() {
|
|
2184
2188
|
return this.Get('AuditViewRuns');
|
|
@@ -2191,6 +2195,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2191
2195
|
* * Display Name: Include In API
|
|
2192
2196
|
* * SQL Data Type: bit
|
|
2193
2197
|
* * Default Value: 0
|
|
2198
|
+
* * Description: If set to 0, the entity will not be available at all in the GraphQL API or the object model.
|
|
2194
2199
|
*/
|
|
2195
2200
|
get IncludeInAPI() {
|
|
2196
2201
|
return this.Get('IncludeInAPI');
|
|
@@ -2203,6 +2208,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2203
2208
|
* * Display Name: Allow All Rows API
|
|
2204
2209
|
* * SQL Data Type: bit
|
|
2205
2210
|
* * Default Value: 0
|
|
2211
|
+
* * Description: If set to 1, a GraphQL query will be enabled that allows access to all rows in the entity.
|
|
2206
2212
|
*/
|
|
2207
2213
|
get AllowAllRowsAPI() {
|
|
2208
2214
|
return this.Get('AllowAllRowsAPI');
|
|
@@ -2215,6 +2221,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2215
2221
|
* * Display Name: Allow Update API
|
|
2216
2222
|
* * SQL Data Type: bit
|
|
2217
2223
|
* * Default Value: 0
|
|
2224
|
+
* * Description: Global flag controlling if updates are allowed for any user, or not. If set to 1, a GraqhQL mutation and stored procedure are created. Permissions are still required to perform the action but if this flag is set to 0, no user will be able to perform the action.
|
|
2218
2225
|
*/
|
|
2219
2226
|
get AllowUpdateAPI() {
|
|
2220
2227
|
return this.Get('AllowUpdateAPI');
|
|
@@ -2227,6 +2234,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2227
2234
|
* * Display Name: Allow Create API
|
|
2228
2235
|
* * SQL Data Type: bit
|
|
2229
2236
|
* * Default Value: 0
|
|
2237
|
+
* * Description: Global flag controlling if creates are allowed for any user, or not. If set to 1, a GraqhQL mutation and stored procedure are created. Permissions are still required to perform the action but if this flag is set to 0, no user will be able to perform the action.
|
|
2230
2238
|
*/
|
|
2231
2239
|
get AllowCreateAPI() {
|
|
2232
2240
|
return this.Get('AllowCreateAPI');
|
|
@@ -2239,6 +2247,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2239
2247
|
* * Display Name: Allow Delete API
|
|
2240
2248
|
* * SQL Data Type: bit
|
|
2241
2249
|
* * Default Value: 0
|
|
2250
|
+
* * Description: Global flag controlling if deletes are allowed for any user, or not. If set to 1, a GraqhQL mutation and stored procedure are created. Permissions are still required to perform the action but if this flag is set to 0, no user will be able to perform the action.
|
|
2242
2251
|
*/
|
|
2243
2252
|
get AllowDeleteAPI() {
|
|
2244
2253
|
return this.Get('AllowDeleteAPI');
|
|
@@ -2251,6 +2260,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2251
2260
|
* * Display Name: Custom Resolver API
|
|
2252
2261
|
* * SQL Data Type: bit
|
|
2253
2262
|
* * Default Value: 0
|
|
2263
|
+
* * Description: Set to 1 if a custom resolver has been created for the entity.
|
|
2254
2264
|
*/
|
|
2255
2265
|
get CustomResolverAPI() {
|
|
2256
2266
|
return this.Get('CustomResolverAPI');
|
|
@@ -2263,6 +2273,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2263
2273
|
* * Display Name: Allow User Search API
|
|
2264
2274
|
* * SQL Data Type: bit
|
|
2265
2275
|
* * Default Value: 0
|
|
2276
|
+
* * Description: Enabling this bit will result in search being possible at the API and UI layers
|
|
2266
2277
|
*/
|
|
2267
2278
|
get AllowUserSearchAPI() {
|
|
2268
2279
|
return this.Get('AllowUserSearchAPI');
|
|
@@ -2640,6 +2651,10 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2640
2651
|
/**
|
|
2641
2652
|
* * Field Name: Type
|
|
2642
2653
|
* * SQL Data Type: nchar(15)
|
|
2654
|
+
* * Value List Type: List
|
|
2655
|
+
* * Possible Values
|
|
2656
|
+
* * User
|
|
2657
|
+
* * Owner
|
|
2643
2658
|
*/
|
|
2644
2659
|
get Type() {
|
|
2645
2660
|
return this.Get('Type');
|
|
@@ -2876,6 +2891,10 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2876
2891
|
* * Field Name: Type
|
|
2877
2892
|
* * SQL Data Type: nchar(20)
|
|
2878
2893
|
* * Default Value: N'One To Many'
|
|
2894
|
+
* * Value List Type: List
|
|
2895
|
+
* * Possible Values
|
|
2896
|
+
* * One To Many
|
|
2897
|
+
* * Many To Many
|
|
2879
2898
|
*/
|
|
2880
2899
|
get Type() {
|
|
2881
2900
|
return this.Get('Type');
|
|
@@ -4707,6 +4726,15 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
|
|
|
4707
4726
|
* * Field Name: RequestMethod
|
|
4708
4727
|
* * Display Name: Request Method
|
|
4709
4728
|
* * SQL Data Type: nvarchar(12)
|
|
4729
|
+
* * Value List Type: List
|
|
4730
|
+
* * Possible Values
|
|
4731
|
+
* * GET
|
|
4732
|
+
* * POST
|
|
4733
|
+
* * PUT
|
|
4734
|
+
* * DELETE
|
|
4735
|
+
* * PATCH
|
|
4736
|
+
* * HEAD
|
|
4737
|
+
* * OPTIONS
|
|
4710
4738
|
*/
|
|
4711
4739
|
get RequestMethod() {
|
|
4712
4740
|
return this.Get('RequestMethod');
|
|
@@ -5240,6 +5268,12 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
|
|
|
5240
5268
|
* * Field Name: Status
|
|
5241
5269
|
* * SQL Data Type: nchar(10)
|
|
5242
5270
|
* * Default Value: N'Pending'
|
|
5271
|
+
* * Value List Type: List
|
|
5272
|
+
* * Possible Values
|
|
5273
|
+
* * Pending
|
|
5274
|
+
* * In Progress
|
|
5275
|
+
* * Complete
|
|
5276
|
+
* * Failed
|
|
5243
5277
|
*/
|
|
5244
5278
|
get Status() {
|
|
5245
5279
|
return this.Get('Status');
|
|
@@ -5706,6 +5740,10 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5706
5740
|
* * Field Name: Status
|
|
5707
5741
|
* * SQL Data Type: nchar(15)
|
|
5708
5742
|
* * Default Value: N'Complete'
|
|
5743
|
+
* * Value List Type: List
|
|
5744
|
+
* * Possible Values
|
|
5745
|
+
* * Pending
|
|
5746
|
+
* * Complete
|
|
5709
5747
|
*/
|
|
5710
5748
|
get Status() {
|
|
5711
5749
|
return this.Get('Status');
|
|
@@ -6034,6 +6072,10 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
6034
6072
|
* * Display Name: Status
|
|
6035
6073
|
* * SQL Data Type: nvarchar(50)
|
|
6036
6074
|
* * Default Value: N'Allow'
|
|
6075
|
+
* * Value List Type: List
|
|
6076
|
+
* * Possible Values
|
|
6077
|
+
* * Success
|
|
6078
|
+
* * Failed
|
|
6037
6079
|
*/
|
|
6038
6080
|
get Status() {
|
|
6039
6081
|
return this.Get('Status');
|
|
@@ -7197,6 +7239,10 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7197
7239
|
* * Display Name: Trigger Event
|
|
7198
7240
|
* * SQL Data Type: nchar(15)
|
|
7199
7241
|
* * Default Value: N'After Save'
|
|
7242
|
+
* * Value List Type: List
|
|
7243
|
+
* * Possible Values
|
|
7244
|
+
* * after save
|
|
7245
|
+
* * before save
|
|
7200
7246
|
*/
|
|
7201
7247
|
get TriggerEvent() {
|
|
7202
7248
|
return this.Get('TriggerEvent');
|
|
@@ -7220,6 +7266,10 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7220
7266
|
* * Display Name: Output Type
|
|
7221
7267
|
* * SQL Data Type: nchar(10)
|
|
7222
7268
|
* * Default Value: N'FIeld'
|
|
7269
|
+
* * Value List Type: List
|
|
7270
|
+
* * Possible Values
|
|
7271
|
+
* * entity
|
|
7272
|
+
* * field
|
|
7223
7273
|
*/
|
|
7224
7274
|
get OutputType() {
|
|
7225
7275
|
return this.Get('OutputType');
|
|
@@ -7822,6 +7872,11 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
|
|
|
7822
7872
|
* * Display Name: Status
|
|
7823
7873
|
* * SQL Data Type: nchar(10)
|
|
7824
7874
|
* * Default Value: N'Pending'
|
|
7875
|
+
* * Value List Type: List
|
|
7876
|
+
* * Possible Values
|
|
7877
|
+
* * In Progress
|
|
7878
|
+
* * Completed
|
|
7879
|
+
* * Failed
|
|
7825
7880
|
*/
|
|
7826
7881
|
get Status() {
|
|
7827
7882
|
return this.Get('Status');
|
|
@@ -8374,6 +8429,11 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8374
8429
|
* * Display Name: Sharing Scope
|
|
8375
8430
|
* * SQL Data Type: nvarchar(20)
|
|
8376
8431
|
* * Default Value: N'Personal'
|
|
8432
|
+
* * Value List Type: List
|
|
8433
|
+
* * Possible Values
|
|
8434
|
+
* * None
|
|
8435
|
+
* * Specific
|
|
8436
|
+
* * Everyone
|
|
8377
8437
|
*/
|
|
8378
8438
|
get SharingScope() {
|
|
8379
8439
|
return this.Get('SharingScope');
|
|
@@ -9614,6 +9674,11 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
|
|
|
9614
9674
|
* * Display Name: Role
|
|
9615
9675
|
* * SQL Data Type: nvarchar(20)
|
|
9616
9676
|
* * Default Value: user_name()
|
|
9677
|
+
* * Value List Type: List
|
|
9678
|
+
* * Possible Values
|
|
9679
|
+
* * User
|
|
9680
|
+
* * AI
|
|
9681
|
+
* * Error
|
|
9617
9682
|
*/
|
|
9618
9683
|
get Role() {
|
|
9619
9684
|
return this.Get('Role');
|
|
@@ -10342,6 +10407,11 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10342
10407
|
* * Display Name: Approval Status
|
|
10343
10408
|
* * SQL Data Type: nvarchar(10)
|
|
10344
10409
|
* * Default Value: N'Pending'
|
|
10410
|
+
* * Value List Type: List
|
|
10411
|
+
* * Possible Values
|
|
10412
|
+
* * Pending
|
|
10413
|
+
* * Approved
|
|
10414
|
+
* * Rejected
|
|
10345
10415
|
*/
|
|
10346
10416
|
get ApprovalStatus() {
|
|
10347
10417
|
return this.Get('ApprovalStatus');
|
|
@@ -10365,6 +10435,11 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10365
10435
|
* * Display Name: Processing Status
|
|
10366
10436
|
* * SQL Data Type: nvarchar(10)
|
|
10367
10437
|
* * Default Value: N'Pending'
|
|
10438
|
+
* * Value List Type: List
|
|
10439
|
+
* * Possible Values
|
|
10440
|
+
* * Started
|
|
10441
|
+
* * Complete
|
|
10442
|
+
* * Error
|
|
10368
10443
|
*/
|
|
10369
10444
|
get ProcessingStatus() {
|
|
10370
10445
|
return this.Get('ProcessingStatus');
|
|
@@ -10530,6 +10605,11 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
10530
10605
|
* * Display Name: Status
|
|
10531
10606
|
* * SQL Data Type: nvarchar(10)
|
|
10532
10607
|
* * Default Value: N'Pending'
|
|
10608
|
+
* * Value List Type: List
|
|
10609
|
+
* * Possible Values
|
|
10610
|
+
* * Pending
|
|
10611
|
+
* * Complete
|
|
10612
|
+
* * Error
|
|
10533
10613
|
*/
|
|
10534
10614
|
get Status() {
|
|
10535
10615
|
return this.Get('Status');
|
|
@@ -11013,6 +11093,12 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
|
11013
11093
|
* * Display Name: Status
|
|
11014
11094
|
* * SQL Data Type: nvarchar(15)
|
|
11015
11095
|
* * Default Value: N'Pending'
|
|
11096
|
+
* * Value List Type: List
|
|
11097
|
+
* * Possible Values
|
|
11098
|
+
* * Pending
|
|
11099
|
+
* * Approved
|
|
11100
|
+
* * Rejected
|
|
11101
|
+
* * Expired
|
|
11016
11102
|
*/
|
|
11017
11103
|
get Status() {
|
|
11018
11104
|
return this.Get('Status');
|
|
@@ -11463,6 +11549,11 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
|
|
|
11463
11549
|
* * Display Name: Status
|
|
11464
11550
|
* * SQL Data Type: nvarchar(15)
|
|
11465
11551
|
* * Default Value: N'Pending'
|
|
11552
|
+
* * Value List Type: List
|
|
11553
|
+
* * Possible Values
|
|
11554
|
+
* * Pending
|
|
11555
|
+
* * Complete
|
|
11556
|
+
* * Failed
|
|
11466
11557
|
* * Description: Can be Pending, In Progress, Completed, or Failed
|
|
11467
11558
|
*/
|
|
11468
11559
|
get Status() {
|
|
@@ -11848,6 +11939,10 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
|
|
|
11848
11939
|
* * Display Name: Status
|
|
11849
11940
|
* * SQL Data Type: nvarchar(15)
|
|
11850
11941
|
* * Default Value: N'Pending'
|
|
11942
|
+
* * Value List Type: List
|
|
11943
|
+
* * Possible Values
|
|
11944
|
+
* * Active
|
|
11945
|
+
* * Inactive
|
|
11851
11946
|
*/
|
|
11852
11947
|
get Status() {
|
|
11853
11948
|
return this.Get('Status');
|
|
@@ -11969,6 +12064,13 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
11969
12064
|
* * Field Name: Type
|
|
11970
12065
|
* * Display Name: Type
|
|
11971
12066
|
* * SQL Data Type: nvarchar(50)
|
|
12067
|
+
* * Value List Type: List
|
|
12068
|
+
* * Possible Values
|
|
12069
|
+
* * view
|
|
12070
|
+
* * sql
|
|
12071
|
+
* * query
|
|
12072
|
+
* * single_record
|
|
12073
|
+
* * full_entity
|
|
11972
12074
|
* * Description: The type of the item, either "view", "query", "full_entity", "single_record", or "sql"
|
|
11973
12075
|
*/
|
|
11974
12076
|
get Type() {
|
|
@@ -12333,6 +12435,7 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
|
|
|
12333
12435
|
* * Field Name: EntityID
|
|
12334
12436
|
* * Display Name: Entity ID
|
|
12335
12437
|
* * SQL Data Type: int
|
|
12438
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
12336
12439
|
*/
|
|
12337
12440
|
get EntityID() {
|
|
12338
12441
|
return this.Get('EntityID');
|
|
@@ -13149,6 +13252,10 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
13149
13252
|
* * Display Name: Type
|
|
13150
13253
|
* * SQL Data Type: nvarchar(20)
|
|
13151
13254
|
* * Default Value: N'System'
|
|
13255
|
+
* * Value List Type: List
|
|
13256
|
+
* * Possible Values
|
|
13257
|
+
* * New
|
|
13258
|
+
* * Upgrade
|
|
13152
13259
|
* * Description: What type of installation was applied
|
|
13153
13260
|
*/
|
|
13154
13261
|
get Type() {
|
|
@@ -13173,6 +13280,12 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
13173
13280
|
* * Display Name: Status
|
|
13174
13281
|
* * SQL Data Type: nvarchar(20)
|
|
13175
13282
|
* * Default Value: N'Pending'
|
|
13283
|
+
* * Value List Type: List
|
|
13284
|
+
* * Possible Values
|
|
13285
|
+
* * Pending
|
|
13286
|
+
* * In Progress
|
|
13287
|
+
* * Complete
|
|
13288
|
+
* * Failed
|
|
13176
13289
|
* * Description: Pending, Complete, Failed
|
|
13177
13290
|
*/
|
|
13178
13291
|
get Status() {
|