@memberjunction/core-entities 0.9.170 → 0.9.172
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,10 @@ 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
|
|
9617
9681
|
*/
|
|
9618
9682
|
get Role() {
|
|
9619
9683
|
return this.Get('Role');
|
|
@@ -10342,6 +10406,11 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10342
10406
|
* * Display Name: Approval Status
|
|
10343
10407
|
* * SQL Data Type: nvarchar(10)
|
|
10344
10408
|
* * Default Value: N'Pending'
|
|
10409
|
+
* * Value List Type: List
|
|
10410
|
+
* * Possible Values
|
|
10411
|
+
* * Pending
|
|
10412
|
+
* * Approved
|
|
10413
|
+
* * Rejected
|
|
10345
10414
|
*/
|
|
10346
10415
|
get ApprovalStatus() {
|
|
10347
10416
|
return this.Get('ApprovalStatus');
|
|
@@ -10365,6 +10434,11 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10365
10434
|
* * Display Name: Processing Status
|
|
10366
10435
|
* * SQL Data Type: nvarchar(10)
|
|
10367
10436
|
* * Default Value: N'Pending'
|
|
10437
|
+
* * Value List Type: List
|
|
10438
|
+
* * Possible Values
|
|
10439
|
+
* * Started
|
|
10440
|
+
* * Complete
|
|
10441
|
+
* * Error
|
|
10368
10442
|
*/
|
|
10369
10443
|
get ProcessingStatus() {
|
|
10370
10444
|
return this.Get('ProcessingStatus');
|
|
@@ -10530,6 +10604,11 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
10530
10604
|
* * Display Name: Status
|
|
10531
10605
|
* * SQL Data Type: nvarchar(10)
|
|
10532
10606
|
* * Default Value: N'Pending'
|
|
10607
|
+
* * Value List Type: List
|
|
10608
|
+
* * Possible Values
|
|
10609
|
+
* * Pending
|
|
10610
|
+
* * Complete
|
|
10611
|
+
* * Error
|
|
10533
10612
|
*/
|
|
10534
10613
|
get Status() {
|
|
10535
10614
|
return this.Get('Status');
|
|
@@ -11013,6 +11092,12 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
|
11013
11092
|
* * Display Name: Status
|
|
11014
11093
|
* * SQL Data Type: nvarchar(15)
|
|
11015
11094
|
* * Default Value: N'Pending'
|
|
11095
|
+
* * Value List Type: List
|
|
11096
|
+
* * Possible Values
|
|
11097
|
+
* * Pending
|
|
11098
|
+
* * Approved
|
|
11099
|
+
* * Rejected
|
|
11100
|
+
* * Expired
|
|
11016
11101
|
*/
|
|
11017
11102
|
get Status() {
|
|
11018
11103
|
return this.Get('Status');
|
|
@@ -11463,6 +11548,11 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
|
|
|
11463
11548
|
* * Display Name: Status
|
|
11464
11549
|
* * SQL Data Type: nvarchar(15)
|
|
11465
11550
|
* * Default Value: N'Pending'
|
|
11551
|
+
* * Value List Type: List
|
|
11552
|
+
* * Possible Values
|
|
11553
|
+
* * Pending
|
|
11554
|
+
* * Complete
|
|
11555
|
+
* * Failed
|
|
11466
11556
|
* * Description: Can be Pending, In Progress, Completed, or Failed
|
|
11467
11557
|
*/
|
|
11468
11558
|
get Status() {
|
|
@@ -11848,6 +11938,10 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
|
|
|
11848
11938
|
* * Display Name: Status
|
|
11849
11939
|
* * SQL Data Type: nvarchar(15)
|
|
11850
11940
|
* * Default Value: N'Pending'
|
|
11941
|
+
* * Value List Type: List
|
|
11942
|
+
* * Possible Values
|
|
11943
|
+
* * Active
|
|
11944
|
+
* * Inactive
|
|
11851
11945
|
*/
|
|
11852
11946
|
get Status() {
|
|
11853
11947
|
return this.Get('Status');
|
|
@@ -11969,6 +12063,13 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
11969
12063
|
* * Field Name: Type
|
|
11970
12064
|
* * Display Name: Type
|
|
11971
12065
|
* * SQL Data Type: nvarchar(50)
|
|
12066
|
+
* * Value List Type: List
|
|
12067
|
+
* * Possible Values
|
|
12068
|
+
* * view
|
|
12069
|
+
* * sql
|
|
12070
|
+
* * query
|
|
12071
|
+
* * single_record
|
|
12072
|
+
* * full_entity
|
|
11972
12073
|
* * Description: The type of the item, either "view", "query", "full_entity", "single_record", or "sql"
|
|
11973
12074
|
*/
|
|
11974
12075
|
get Type() {
|
|
@@ -12333,6 +12434,7 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
|
|
|
12333
12434
|
* * Field Name: EntityID
|
|
12334
12435
|
* * Display Name: Entity ID
|
|
12335
12436
|
* * SQL Data Type: int
|
|
12437
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
12336
12438
|
*/
|
|
12337
12439
|
get EntityID() {
|
|
12338
12440
|
return this.Get('EntityID');
|
|
@@ -13149,6 +13251,10 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
13149
13251
|
* * Display Name: Type
|
|
13150
13252
|
* * SQL Data Type: nvarchar(20)
|
|
13151
13253
|
* * Default Value: N'System'
|
|
13254
|
+
* * Value List Type: List
|
|
13255
|
+
* * Possible Values
|
|
13256
|
+
* * New
|
|
13257
|
+
* * Upgrade
|
|
13152
13258
|
* * Description: What type of installation was applied
|
|
13153
13259
|
*/
|
|
13154
13260
|
get Type() {
|
|
@@ -13173,6 +13279,12 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
13173
13279
|
* * Display Name: Status
|
|
13174
13280
|
* * SQL Data Type: nvarchar(20)
|
|
13175
13281
|
* * Default Value: N'Pending'
|
|
13282
|
+
* * Value List Type: List
|
|
13283
|
+
* * Possible Values
|
|
13284
|
+
* * Pending
|
|
13285
|
+
* * In Progress
|
|
13286
|
+
* * Complete
|
|
13287
|
+
* * Failed
|
|
13176
13288
|
* * Description: Pending, Complete, Failed
|
|
13177
13289
|
*/
|
|
13178
13290
|
get Status() {
|