@memberjunction/server 1.7.1 → 1.8.1
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/CHANGELOG.json +381 -1
- package/CHANGELOG.md +79 -2
- package/dist/generated/generated.d.ts +718 -438
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2015 -559
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +2 -2
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +42 -8
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +8 -8
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/dist/resolvers/EntityCommunicationsResolver.d.ts +4 -4
- package/dist/resolvers/EntityCommunicationsResolver.d.ts.map +1 -1
- package/dist/resolvers/EntityCommunicationsResolver.js +4 -4
- package/dist/resolvers/EntityCommunicationsResolver.js.map +1 -1
- package/dist/resolvers/FileResolver.d.ts +1 -1
- package/dist/resolvers/UserResolver.d.ts.map +1 -1
- package/dist/resolvers/UserResolver.js +5 -3
- package/dist/resolvers/UserResolver.js.map +1 -1
- package/package.json +21 -21
- package/src/generated/generated.ts +1594 -543
- package/src/generic/ResolverBase.ts +52 -11
- package/src/index.ts +15 -8
- package/src/resolvers/AskSkipResolver.ts +9 -9
- package/src/resolvers/EntityCommunicationsResolver.ts +5 -5
- package/src/resolvers/UserResolver.ts +5 -3
|
@@ -6,9 +6,9 @@ export declare class Company_ {
|
|
|
6
6
|
Description: string;
|
|
7
7
|
Website?: string;
|
|
8
8
|
LogoURL?: string;
|
|
9
|
-
CreatedAt: Date;
|
|
10
|
-
UpdatedAt: Date;
|
|
11
9
|
Domain?: string;
|
|
10
|
+
_mj__CreatedAt: Date;
|
|
11
|
+
_mj__UpdatedAt: Date;
|
|
12
12
|
EmployeesArray: mj_core_schema_server_object_types.Employee_[];
|
|
13
13
|
CompanyIntegrationsArray: mj_core_schema_server_object_types.CompanyIntegration_[];
|
|
14
14
|
WorkflowsArray: mj_core_schema_server_object_types.Workflow_[];
|
|
@@ -47,8 +47,8 @@ export declare class CompanyResolver extends ResolverBase {
|
|
|
47
47
|
EmployeesArray(company_: Company_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
48
48
|
CompanyIntegrationsArray(company_: Company_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
49
49
|
WorkflowsArray(company_: Company_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
50
|
-
CreateCompany(input: CreateCompanyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
51
|
-
UpdateCompany(input: UpdateCompanyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
50
|
+
CreateCompany(input: CreateCompanyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
51
|
+
UpdateCompany(input: UpdateCompanyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
52
52
|
DeleteCompany(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
53
53
|
}
|
|
54
54
|
export declare class Employee_ {
|
|
@@ -62,8 +62,8 @@ export declare class Employee_ {
|
|
|
62
62
|
Active: boolean;
|
|
63
63
|
CompanyID: number;
|
|
64
64
|
SupervisorID?: number;
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
_mj__CreatedAt: Date;
|
|
66
|
+
_mj__UpdatedAt: Date;
|
|
67
67
|
FirstLast?: string;
|
|
68
68
|
Supervisor?: string;
|
|
69
69
|
SupervisorFirstName?: string;
|
|
@@ -117,8 +117,8 @@ export declare class EmployeeResolver extends ResolverBase {
|
|
|
117
117
|
EmployeeRolesArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
118
118
|
EmployeeSkillsArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
119
119
|
UsersArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
120
|
-
CreateEmployee(input: CreateEmployeeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
121
|
-
UpdateEmployee(input: UpdateEmployeeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
120
|
+
CreateEmployee(input: CreateEmployeeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
121
|
+
UpdateEmployee(input: UpdateEmployeeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
122
122
|
DeleteEmployee(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
123
123
|
}
|
|
124
124
|
export declare class UserFavorite_ {
|
|
@@ -126,8 +126,8 @@ export declare class UserFavorite_ {
|
|
|
126
126
|
UserID: number;
|
|
127
127
|
EntityID: number;
|
|
128
128
|
RecordID: string;
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
_mj__CreatedAt: Date;
|
|
130
|
+
_mj__UpdatedAt: Date;
|
|
131
131
|
Entity: string;
|
|
132
132
|
EntityBaseTable: string;
|
|
133
133
|
EntityBaseView: string;
|
|
@@ -158,8 +158,8 @@ export declare class UserFavoriteResolverBase extends ResolverBase {
|
|
|
158
158
|
RunUserFavoriteViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
159
159
|
RunUserFavoriteDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
160
160
|
UserFavorite(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserFavorite_ | null>;
|
|
161
|
-
CreateUserFavorite(input: CreateUserFavoriteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
162
|
-
UpdateUserFavorite(input: UpdateUserFavoriteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
161
|
+
CreateUserFavorite(input: CreateUserFavoriteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
162
|
+
UpdateUserFavorite(input: UpdateUserFavoriteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
163
163
|
DeleteUserFavorite(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
164
164
|
}
|
|
165
165
|
export declare class EmployeeCompanyIntegration_ {
|
|
@@ -168,8 +168,8 @@ export declare class EmployeeCompanyIntegration_ {
|
|
|
168
168
|
CompanyIntegrationID: number;
|
|
169
169
|
ExternalSystemRecordID: string;
|
|
170
170
|
IsActive: boolean;
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
_mj__CreatedAt: Date;
|
|
172
|
+
_mj__UpdatedAt: Date;
|
|
173
173
|
}
|
|
174
174
|
export declare class UpdateEmployeeCompanyIntegrationInput {
|
|
175
175
|
ID: number;
|
|
@@ -193,14 +193,14 @@ export declare class EmployeeCompanyIntegrationResolver extends ResolverBase {
|
|
|
193
193
|
RunEmployeeCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
194
194
|
RunEmployeeCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
195
195
|
EmployeeCompanyIntegration(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeCompanyIntegration_ | null>;
|
|
196
|
-
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
196
|
+
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
197
197
|
}
|
|
198
198
|
export declare class EmployeeRole_ {
|
|
199
199
|
ID: number;
|
|
200
200
|
EmployeeID: number;
|
|
201
201
|
RoleID: number;
|
|
202
|
-
|
|
203
|
-
|
|
202
|
+
_mj__CreatedAt: Date;
|
|
203
|
+
_mj__UpdatedAt: Date;
|
|
204
204
|
Role: string;
|
|
205
205
|
}
|
|
206
206
|
export declare class UpdateEmployeeRoleInput {
|
|
@@ -223,14 +223,14 @@ export declare class EmployeeRoleResolver extends ResolverBase {
|
|
|
223
223
|
RunEmployeeRoleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
224
224
|
RunEmployeeRoleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
225
225
|
EmployeeRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeRole_ | null>;
|
|
226
|
-
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
226
|
+
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
227
227
|
}
|
|
228
228
|
export declare class EmployeeSkill_ {
|
|
229
229
|
ID: number;
|
|
230
230
|
EmployeeID: number;
|
|
231
231
|
SkillID: number;
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
_mj__CreatedAt: Date;
|
|
233
|
+
_mj__UpdatedAt: Date;
|
|
234
234
|
Skill: string;
|
|
235
235
|
}
|
|
236
236
|
export declare class UpdateEmployeeSkillInput {
|
|
@@ -253,7 +253,7 @@ export declare class EmployeeSkillResolver extends ResolverBase {
|
|
|
253
253
|
RunEmployeeSkillViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
254
254
|
RunEmployeeSkillDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
255
255
|
EmployeeSkill(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeSkill_ | null>;
|
|
256
|
-
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
256
|
+
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
257
257
|
}
|
|
258
258
|
export declare class Role_ {
|
|
259
259
|
ID: number;
|
|
@@ -261,8 +261,8 @@ export declare class Role_ {
|
|
|
261
261
|
Description?: string;
|
|
262
262
|
DirectoryID?: string;
|
|
263
263
|
SQLName?: string;
|
|
264
|
-
|
|
265
|
-
|
|
264
|
+
_mj__CreatedAt: Date;
|
|
265
|
+
_mj__UpdatedAt: Date;
|
|
266
266
|
EmployeeRolesArray: mj_core_schema_server_object_types.EmployeeRole_[];
|
|
267
267
|
EntityPermissionsArray: mj_core_schema_server_object_types.EntityPermission_[];
|
|
268
268
|
UserRolesArray: mj_core_schema_server_object_types.UserRole_[];
|
|
@@ -303,16 +303,16 @@ export declare class RoleResolver extends ResolverBase {
|
|
|
303
303
|
UserRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
304
304
|
AuthorizationRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
305
305
|
QueryPermissionsArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
306
|
-
CreateRole(input: CreateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
307
|
-
UpdateRole(input: UpdateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
306
|
+
CreateRole(input: CreateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
307
|
+
UpdateRole(input: UpdateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
308
308
|
DeleteRole(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
309
309
|
}
|
|
310
310
|
export declare class Skill_ {
|
|
311
311
|
ID: number;
|
|
312
312
|
Name: string;
|
|
313
313
|
ParentID?: number;
|
|
314
|
-
|
|
315
|
-
|
|
314
|
+
_mj__CreatedAt: Date;
|
|
315
|
+
_mj__UpdatedAt: Date;
|
|
316
316
|
Parent?: string;
|
|
317
317
|
EmployeeSkillsArray: mj_core_schema_server_object_types.EmployeeSkill_[];
|
|
318
318
|
SkillsArray: mj_core_schema_server_object_types.Skill_[];
|
|
@@ -340,6 +340,8 @@ export declare class IntegrationURLFormat_ {
|
|
|
340
340
|
IntegrationName?: string;
|
|
341
341
|
EntityID: number;
|
|
342
342
|
URLFormat: string;
|
|
343
|
+
_mj__CreatedAt: Date;
|
|
344
|
+
_mj__UpdatedAt: Date;
|
|
343
345
|
IntegrationID: number;
|
|
344
346
|
Integration: string;
|
|
345
347
|
NavigationBaseURL?: string;
|
|
@@ -367,7 +369,7 @@ export declare class IntegrationURLFormatResolver extends ResolverBase {
|
|
|
367
369
|
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
368
370
|
IntegrationURLFormat(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<IntegrationURLFormat_ | null>;
|
|
369
371
|
AllIntegrationURLFormats({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
370
|
-
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
372
|
+
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
371
373
|
}
|
|
372
374
|
export declare class Integration_ {
|
|
373
375
|
ID: number;
|
|
@@ -378,8 +380,8 @@ export declare class Integration_ {
|
|
|
378
380
|
ImportPath?: string;
|
|
379
381
|
BatchMaxRequestCount: number;
|
|
380
382
|
BatchRequestWaitTime: number;
|
|
381
|
-
|
|
382
|
-
|
|
383
|
+
_mj__CreatedAt: Date;
|
|
384
|
+
_mj__UpdatedAt: Date;
|
|
383
385
|
IntegrationURLFormatsArray: mj_core_schema_server_object_types.IntegrationURLFormat_[];
|
|
384
386
|
CompanyIntegrationsArray: mj_core_schema_server_object_types.CompanyIntegration_[];
|
|
385
387
|
RecordChangesArray: mj_core_schema_server_object_types.RecordChange_[];
|
|
@@ -413,7 +415,7 @@ export declare class IntegrationResolver extends ResolverBase {
|
|
|
413
415
|
IntegrationURLFormatsArray(integration_: Integration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
414
416
|
CompanyIntegrationsArray(integration_: Integration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
415
417
|
RecordChangesArray(integration_: Integration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
416
|
-
UpdateIntegration(input: UpdateIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
418
|
+
UpdateIntegration(input: UpdateIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
417
419
|
}
|
|
418
420
|
export declare class CompanyIntegration_ {
|
|
419
421
|
ID: number;
|
|
@@ -424,13 +426,13 @@ export declare class CompanyIntegration_ {
|
|
|
424
426
|
RefreshToken?: string;
|
|
425
427
|
TokenExpirationDate?: Date;
|
|
426
428
|
APIKey?: string;
|
|
427
|
-
CreatedAt: Date;
|
|
428
|
-
UpdatedAt: Date;
|
|
429
429
|
ExternalSystemID?: string;
|
|
430
430
|
IsExternalSystemReadOnly: boolean;
|
|
431
431
|
ClientID?: string;
|
|
432
432
|
ClientSecret?: string;
|
|
433
433
|
CustomAttribute1?: string;
|
|
434
|
+
_mj__CreatedAt: Date;
|
|
435
|
+
_mj__UpdatedAt: Date;
|
|
434
436
|
CompanyID: number;
|
|
435
437
|
IntegrationID: number;
|
|
436
438
|
Company: string;
|
|
@@ -479,7 +481,7 @@ export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
|
479
481
|
EmployeeCompanyIntegrationsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
480
482
|
CompanyIntegrationRunsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
481
483
|
CompanyIntegrationRecordMapsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
482
|
-
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
484
|
+
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
483
485
|
}
|
|
484
486
|
export declare class EntityField_ {
|
|
485
487
|
ID: number;
|
|
@@ -518,8 +520,9 @@ export declare class EntityField_ {
|
|
|
518
520
|
RelatedEntityFieldName?: string;
|
|
519
521
|
IncludeRelatedEntityNameFieldInBaseView: boolean;
|
|
520
522
|
RelatedEntityNameFieldMap?: string;
|
|
521
|
-
|
|
522
|
-
|
|
523
|
+
RelatedEntityDisplayType: string;
|
|
524
|
+
_mj__CreatedAt: Date;
|
|
525
|
+
_mj__UpdatedAt: Date;
|
|
523
526
|
Entity: string;
|
|
524
527
|
SchemaName: string;
|
|
525
528
|
BaseTable: string;
|
|
@@ -559,6 +562,7 @@ export declare class CreateEntityFieldInput {
|
|
|
559
562
|
RelatedEntityFieldName?: string;
|
|
560
563
|
IncludeRelatedEntityNameFieldInBaseView: boolean;
|
|
561
564
|
RelatedEntityNameFieldMap?: string;
|
|
565
|
+
RelatedEntityDisplayType: string;
|
|
562
566
|
}
|
|
563
567
|
export declare class UpdateEntityFieldInput {
|
|
564
568
|
ID: number;
|
|
@@ -586,6 +590,7 @@ export declare class UpdateEntityFieldInput {
|
|
|
586
590
|
RelatedEntityFieldName?: string;
|
|
587
591
|
IncludeRelatedEntityNameFieldInBaseView: boolean;
|
|
588
592
|
RelatedEntityNameFieldMap?: string;
|
|
593
|
+
RelatedEntityDisplayType: string;
|
|
589
594
|
OldValues___?: KeyValuePairInput[];
|
|
590
595
|
}
|
|
591
596
|
export declare class RunEntityFieldViewResult {
|
|
@@ -604,8 +609,8 @@ export declare class EntityFieldResolver extends ResolverBase {
|
|
|
604
609
|
EntityField(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityField_ | null>;
|
|
605
610
|
AllEntityFields({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
606
611
|
EntityFieldValuesArray(entityfield_: EntityField_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
607
|
-
CreateEntityField(input: CreateEntityFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
608
|
-
UpdateEntityField(input: UpdateEntityFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
612
|
+
CreateEntityField(input: CreateEntityFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
613
|
+
UpdateEntityField(input: UpdateEntityFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
609
614
|
DeleteEntityField(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
610
615
|
}
|
|
611
616
|
export declare class Entity_ {
|
|
@@ -649,10 +654,11 @@ export declare class Entity_ {
|
|
|
649
654
|
UserFormGenerated: boolean;
|
|
650
655
|
EntityObjectSubclassName?: string;
|
|
651
656
|
EntityObjectSubclassImport?: string;
|
|
652
|
-
CreatedAt: Date;
|
|
653
|
-
UpdatedAt: Date;
|
|
654
657
|
PreferredCommunicationField?: string;
|
|
655
658
|
Icon?: string;
|
|
659
|
+
_mj__CreatedAt: Date;
|
|
660
|
+
_mj__UpdatedAt: Date;
|
|
661
|
+
RelationshipDefaultDisplayType: string;
|
|
656
662
|
CodeName?: string;
|
|
657
663
|
ClassName?: string;
|
|
658
664
|
BaseTableCodeName?: string;
|
|
@@ -737,6 +743,7 @@ export declare class CreateEntityInput {
|
|
|
737
743
|
EntityObjectSubclassImport?: string;
|
|
738
744
|
PreferredCommunicationField?: string;
|
|
739
745
|
Icon?: string;
|
|
746
|
+
RelationshipDefaultDisplayType: string;
|
|
740
747
|
}
|
|
741
748
|
export declare class UpdateEntityInput {
|
|
742
749
|
ID: number;
|
|
@@ -779,6 +786,7 @@ export declare class UpdateEntityInput {
|
|
|
779
786
|
EntityObjectSubclassImport?: string;
|
|
780
787
|
PreferredCommunicationField?: string;
|
|
781
788
|
Icon?: string;
|
|
789
|
+
RelationshipDefaultDisplayType: string;
|
|
782
790
|
OldValues___?: KeyValuePairInput[];
|
|
783
791
|
}
|
|
784
792
|
export declare class RunEntityViewResult {
|
|
@@ -832,8 +840,8 @@ export declare class EntityResolverBase extends ResolverBase {
|
|
|
832
840
|
RecommendationsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
833
841
|
RecommendationItemsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
834
842
|
EntityCommunicationMessageTypesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
835
|
-
CreateEntity(input: CreateEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
836
|
-
UpdateEntity(input: UpdateEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
843
|
+
CreateEntity(input: CreateEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
844
|
+
UpdateEntity(input: UpdateEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
837
845
|
DeleteEntity(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
838
846
|
}
|
|
839
847
|
export declare class User_ {
|
|
@@ -849,8 +857,8 @@ export declare class User_ {
|
|
|
849
857
|
EmployeeID?: number;
|
|
850
858
|
LinkedEntityID?: number;
|
|
851
859
|
LinkedEntityRecordID?: number;
|
|
852
|
-
|
|
853
|
-
|
|
860
|
+
_mj__CreatedAt: Date;
|
|
861
|
+
_mj__UpdatedAt: Date;
|
|
854
862
|
FirstLast?: string;
|
|
855
863
|
EmployeeFirstLast?: string;
|
|
856
864
|
EmployeeEmail?: string;
|
|
@@ -886,6 +894,7 @@ export declare class User_ {
|
|
|
886
894
|
TemplatesArray: mj_core_schema_server_object_types.Template_[];
|
|
887
895
|
TemplateCategoriesArray: mj_core_schema_server_object_types.TemplateCategory_[];
|
|
888
896
|
RecommendationRunsArray: mj_core_schema_server_object_types.RecommendationRun_[];
|
|
897
|
+
RecordChangeReplayRunsArray: mj_core_schema_server_object_types.RecordChangeReplayRun_[];
|
|
889
898
|
}
|
|
890
899
|
export declare class CreateUserInput {
|
|
891
900
|
Name: string;
|
|
@@ -959,8 +968,9 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
959
968
|
TemplatesArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
960
969
|
TemplateCategoriesArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
961
970
|
RecommendationRunsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
962
|
-
|
|
963
|
-
|
|
971
|
+
RecordChangeReplayRunsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
972
|
+
CreateUser(input: CreateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
973
|
+
UpdateUser(input: UpdateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
964
974
|
DeleteUser(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
965
975
|
}
|
|
966
976
|
export declare class EntityRelationship_ {
|
|
@@ -977,10 +987,15 @@ export declare class EntityRelationship_ {
|
|
|
977
987
|
JoinEntityJoinField?: string;
|
|
978
988
|
JoinEntityInverseJoinField?: string;
|
|
979
989
|
DisplayInForm: boolean;
|
|
990
|
+
DisplayLocation: string;
|
|
980
991
|
DisplayName?: string;
|
|
992
|
+
DisplayIconType: string;
|
|
993
|
+
DisplayIcon?: string;
|
|
981
994
|
DisplayUserViewGUID?: string;
|
|
982
|
-
|
|
983
|
-
|
|
995
|
+
DisplayComponentID?: number;
|
|
996
|
+
DisplayComponentConfiguration?: string;
|
|
997
|
+
_mj__CreatedAt: Date;
|
|
998
|
+
_mj__UpdatedAt: Date;
|
|
984
999
|
Entity: string;
|
|
985
1000
|
EntityBaseTable: string;
|
|
986
1001
|
EntityBaseView: string;
|
|
@@ -1006,7 +1021,12 @@ export declare class CreateEntityRelationshipInput {
|
|
|
1006
1021
|
JoinEntityJoinField?: string;
|
|
1007
1022
|
JoinEntityInverseJoinField?: string;
|
|
1008
1023
|
DisplayInForm: boolean;
|
|
1024
|
+
DisplayLocation: string;
|
|
1009
1025
|
DisplayName?: string;
|
|
1026
|
+
DisplayIconType: string;
|
|
1027
|
+
DisplayIcon?: string;
|
|
1028
|
+
DisplayComponentID?: number;
|
|
1029
|
+
DisplayComponentConfiguration?: string;
|
|
1010
1030
|
}
|
|
1011
1031
|
export declare class UpdateEntityRelationshipInput {
|
|
1012
1032
|
ID: number;
|
|
@@ -1022,7 +1042,12 @@ export declare class UpdateEntityRelationshipInput {
|
|
|
1022
1042
|
JoinEntityJoinField?: string;
|
|
1023
1043
|
JoinEntityInverseJoinField?: string;
|
|
1024
1044
|
DisplayInForm: boolean;
|
|
1045
|
+
DisplayLocation: string;
|
|
1025
1046
|
DisplayName?: string;
|
|
1047
|
+
DisplayIconType: string;
|
|
1048
|
+
DisplayIcon?: string;
|
|
1049
|
+
DisplayComponentID?: number;
|
|
1050
|
+
DisplayComponentConfiguration?: string;
|
|
1026
1051
|
OldValues___?: KeyValuePairInput[];
|
|
1027
1052
|
}
|
|
1028
1053
|
export declare class RunEntityRelationshipViewResult {
|
|
@@ -1040,8 +1065,8 @@ export declare class EntityRelationshipResolver extends ResolverBase {
|
|
|
1040
1065
|
RunEntityRelationshipDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1041
1066
|
EntityRelationship(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationship_ | null>;
|
|
1042
1067
|
AllEntityRelationships({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1043
|
-
CreateEntityRelationship(input: CreateEntityRelationshipInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1044
|
-
UpdateEntityRelationship(input: UpdateEntityRelationshipInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1068
|
+
CreateEntityRelationship(input: CreateEntityRelationshipInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1069
|
+
UpdateEntityRelationship(input: UpdateEntityRelationshipInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1045
1070
|
DeleteEntityRelationship(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1046
1071
|
}
|
|
1047
1072
|
export declare class UserRecordLog_ {
|
|
@@ -1052,6 +1077,8 @@ export declare class UserRecordLog_ {
|
|
|
1052
1077
|
EarliestAt: Date;
|
|
1053
1078
|
LatestAt: Date;
|
|
1054
1079
|
TotalCount: number;
|
|
1080
|
+
_mj__CreatedAt: Date;
|
|
1081
|
+
_mj__UpdatedAt: Date;
|
|
1055
1082
|
Entity: string;
|
|
1056
1083
|
UserName: string;
|
|
1057
1084
|
UserFirstLast?: string;
|
|
@@ -1083,7 +1110,7 @@ export declare class UserRecordLogResolver extends ResolverBase {
|
|
|
1083
1110
|
RunUserRecordLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1084
1111
|
RunUserRecordLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1085
1112
|
UserRecordLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRecordLog_ | null>;
|
|
1086
|
-
UpdateUserRecordLog(input: UpdateUserRecordLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1113
|
+
UpdateUserRecordLog(input: UpdateUserRecordLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1087
1114
|
}
|
|
1088
1115
|
export declare class UserView_ {
|
|
1089
1116
|
ID: number;
|
|
@@ -1105,8 +1132,8 @@ export declare class UserView_ {
|
|
|
1105
1132
|
WhereClause?: string;
|
|
1106
1133
|
CustomWhereClause: boolean;
|
|
1107
1134
|
SortState?: string;
|
|
1108
|
-
|
|
1109
|
-
|
|
1135
|
+
_mj__CreatedAt: Date;
|
|
1136
|
+
_mj__UpdatedAt: Date;
|
|
1110
1137
|
UserName: string;
|
|
1111
1138
|
UserFirstLast?: string;
|
|
1112
1139
|
UserEmail: string;
|
|
@@ -1175,8 +1202,8 @@ export declare class UserViewResolverBase extends ResolverBase {
|
|
|
1175
1202
|
EntityRelationshipsArray(userview_: UserView_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1176
1203
|
UserViewRunsArray(userview_: UserView_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1177
1204
|
DataContextItemsArray(userview_: UserView_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1178
|
-
CreateUserView(input: CreateUserViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1179
|
-
UpdateUserView(input: UpdateUserViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1205
|
+
CreateUserView(input: CreateUserViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1206
|
+
UpdateUserView(input: UpdateUserViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1180
1207
|
DeleteUserView(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1181
1208
|
}
|
|
1182
1209
|
export declare class CompanyIntegrationRun_ {
|
|
@@ -1187,6 +1214,8 @@ export declare class CompanyIntegrationRun_ {
|
|
|
1187
1214
|
EndedAt?: Date;
|
|
1188
1215
|
TotalRecords: number;
|
|
1189
1216
|
Comments?: string;
|
|
1217
|
+
_mj__CreatedAt: Date;
|
|
1218
|
+
_mj__UpdatedAt: Date;
|
|
1190
1219
|
RunByUser: string;
|
|
1191
1220
|
CompanyIntegrationRunAPILogsArray: mj_core_schema_server_object_types.CompanyIntegrationRunAPILog_[];
|
|
1192
1221
|
ErrorLogsArray: mj_core_schema_server_object_types.ErrorLog_[];
|
|
@@ -1219,7 +1248,7 @@ export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
|
1219
1248
|
CompanyIntegrationRunAPILogsArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1220
1249
|
ErrorLogsArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1221
1250
|
CompanyIntegrationRunDetailsArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1222
|
-
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1251
|
+
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1223
1252
|
}
|
|
1224
1253
|
export declare class CompanyIntegrationRunDetail_ {
|
|
1225
1254
|
ID: number;
|
|
@@ -1229,6 +1258,8 @@ export declare class CompanyIntegrationRunDetail_ {
|
|
|
1229
1258
|
Action: string;
|
|
1230
1259
|
ExecutedAt: Date;
|
|
1231
1260
|
IsSuccess: boolean;
|
|
1261
|
+
_mj__CreatedAt: Date;
|
|
1262
|
+
_mj__UpdatedAt: Date;
|
|
1232
1263
|
Entity: string;
|
|
1233
1264
|
RunStartedAt?: Date;
|
|
1234
1265
|
RunEndedAt?: Date;
|
|
@@ -1259,7 +1290,7 @@ export declare class CompanyIntegrationRunDetailResolver extends ResolverBase {
|
|
|
1259
1290
|
RunCompanyIntegrationRunDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1260
1291
|
CompanyIntegrationRunDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunDetail_ | null>;
|
|
1261
1292
|
ErrorLogsArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1262
|
-
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1293
|
+
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1263
1294
|
}
|
|
1264
1295
|
export declare class ErrorLog_ {
|
|
1265
1296
|
ID: number;
|
|
@@ -1267,11 +1298,12 @@ export declare class ErrorLog_ {
|
|
|
1267
1298
|
CompanyIntegrationRunDetailID?: number;
|
|
1268
1299
|
Code?: string;
|
|
1269
1300
|
Message?: string;
|
|
1270
|
-
CreatedAt: Date;
|
|
1271
1301
|
CreatedBy?: string;
|
|
1272
1302
|
Status?: string;
|
|
1273
1303
|
Category?: string;
|
|
1274
1304
|
Details?: string;
|
|
1305
|
+
_mj__CreatedAt: Date;
|
|
1306
|
+
_mj__UpdatedAt: Date;
|
|
1275
1307
|
}
|
|
1276
1308
|
export declare class UpdateErrorLogInput {
|
|
1277
1309
|
ID: number;
|
|
@@ -1299,7 +1331,7 @@ export declare class ErrorLogResolver extends ResolverBase {
|
|
|
1299
1331
|
RunErrorLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1300
1332
|
RunErrorLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1301
1333
|
ErrorLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ErrorLog_ | null>;
|
|
1302
|
-
UpdateErrorLog(input: UpdateErrorLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1334
|
+
UpdateErrorLog(input: UpdateErrorLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1303
1335
|
}
|
|
1304
1336
|
export declare class Application_ {
|
|
1305
1337
|
ID: number;
|
|
@@ -1307,8 +1339,8 @@ export declare class Application_ {
|
|
|
1307
1339
|
Description?: string;
|
|
1308
1340
|
Icon?: string;
|
|
1309
1341
|
DefaultForNewUser: boolean;
|
|
1310
|
-
|
|
1311
|
-
|
|
1342
|
+
_mj__CreatedAt: Date;
|
|
1343
|
+
_mj__UpdatedAt: Date;
|
|
1312
1344
|
ApplicationEntitiesArray: mj_core_schema_server_object_types.ApplicationEntity_[];
|
|
1313
1345
|
UserApplicationsArray: mj_core_schema_server_object_types.UserApplication_[];
|
|
1314
1346
|
ApplicationSettingsArray: mj_core_schema_server_object_types.ApplicationSetting_[];
|
|
@@ -1345,8 +1377,8 @@ export declare class ApplicationResolver extends ResolverBase {
|
|
|
1345
1377
|
ApplicationEntitiesArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1346
1378
|
UserApplicationsArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1347
1379
|
ApplicationSettingsArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1348
|
-
CreateApplication(input: CreateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1349
|
-
UpdateApplication(input: UpdateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1380
|
+
CreateApplication(input: CreateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1381
|
+
UpdateApplication(input: UpdateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1350
1382
|
DeleteApplication(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1351
1383
|
}
|
|
1352
1384
|
export declare class ApplicationEntity_ {
|
|
@@ -1355,8 +1387,8 @@ export declare class ApplicationEntity_ {
|
|
|
1355
1387
|
EntityID: number;
|
|
1356
1388
|
Sequence: number;
|
|
1357
1389
|
DefaultForNewUser: boolean;
|
|
1358
|
-
|
|
1359
|
-
|
|
1390
|
+
_mj__CreatedAt: Date;
|
|
1391
|
+
_mj__UpdatedAt: Date;
|
|
1360
1392
|
Application: string;
|
|
1361
1393
|
Entity: string;
|
|
1362
1394
|
EntityBaseTable: string;
|
|
@@ -1392,8 +1424,8 @@ export declare class ApplicationEntityResolver extends ResolverBase {
|
|
|
1392
1424
|
RunApplicationEntityViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1393
1425
|
RunApplicationEntityDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1394
1426
|
ApplicationEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ApplicationEntity_ | null>;
|
|
1395
|
-
CreateApplicationEntity(input: CreateApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1396
|
-
UpdateApplicationEntity(input: UpdateApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1427
|
+
CreateApplicationEntity(input: CreateApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1428
|
+
UpdateApplicationEntity(input: UpdateApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1397
1429
|
DeleteApplicationEntity(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1398
1430
|
}
|
|
1399
1431
|
export declare class EntityPermission_ {
|
|
@@ -1408,8 +1440,8 @@ export declare class EntityPermission_ {
|
|
|
1408
1440
|
CreateRLSFilterID?: number;
|
|
1409
1441
|
UpdateRLSFilterID?: number;
|
|
1410
1442
|
DeleteRLSFilterID?: number;
|
|
1411
|
-
|
|
1412
|
-
|
|
1443
|
+
_mj__CreatedAt: Date;
|
|
1444
|
+
_mj__UpdatedAt: Date;
|
|
1413
1445
|
Entity: string;
|
|
1414
1446
|
RoleSQLName?: string;
|
|
1415
1447
|
CreateRLSFilter?: string;
|
|
@@ -1458,8 +1490,8 @@ export declare class EntityPermissionResolver extends ResolverBase {
|
|
|
1458
1490
|
RunEntityPermissionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1459
1491
|
EntityPermission(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityPermission_ | null>;
|
|
1460
1492
|
AllEntityPermissions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1461
|
-
CreateEntityPermission(input: CreateEntityPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1462
|
-
UpdateEntityPermission(input: UpdateEntityPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1493
|
+
CreateEntityPermission(input: CreateEntityPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1494
|
+
UpdateEntityPermission(input: UpdateEntityPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1463
1495
|
DeleteEntityPermission(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1464
1496
|
}
|
|
1465
1497
|
export declare class UserApplicationEntity_ {
|
|
@@ -1467,6 +1499,8 @@ export declare class UserApplicationEntity_ {
|
|
|
1467
1499
|
UserApplicationID: number;
|
|
1468
1500
|
EntityID: number;
|
|
1469
1501
|
Sequence: number;
|
|
1502
|
+
_mj__CreatedAt: Date;
|
|
1503
|
+
_mj__UpdatedAt: Date;
|
|
1470
1504
|
Application: string;
|
|
1471
1505
|
User: string;
|
|
1472
1506
|
Entity: string;
|
|
@@ -1497,8 +1531,8 @@ export declare class UserApplicationEntityResolver extends ResolverBase {
|
|
|
1497
1531
|
RunUserApplicationEntityViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1498
1532
|
RunUserApplicationEntityDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1499
1533
|
UserApplicationEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplicationEntity_ | null>;
|
|
1500
|
-
CreateUserApplicationEntity(input: CreateUserApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1501
|
-
UpdateUserApplicationEntity(input: UpdateUserApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1534
|
+
CreateUserApplicationEntity(input: CreateUserApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1535
|
+
UpdateUserApplicationEntity(input: UpdateUserApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1502
1536
|
DeleteUserApplicationEntity(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1503
1537
|
}
|
|
1504
1538
|
export declare class UserApplication_ {
|
|
@@ -1507,6 +1541,8 @@ export declare class UserApplication_ {
|
|
|
1507
1541
|
ApplicationID: number;
|
|
1508
1542
|
Sequence: number;
|
|
1509
1543
|
IsActive: boolean;
|
|
1544
|
+
_mj__CreatedAt: Date;
|
|
1545
|
+
_mj__UpdatedAt: Date;
|
|
1510
1546
|
User: string;
|
|
1511
1547
|
Application: string;
|
|
1512
1548
|
UserApplicationEntitiesArray: mj_core_schema_server_object_types.UserApplicationEntity_[];
|
|
@@ -1540,8 +1576,8 @@ export declare class UserApplicationResolver extends ResolverBase {
|
|
|
1540
1576
|
RunUserApplicationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1541
1577
|
UserApplication(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplication_ | null>;
|
|
1542
1578
|
UserApplicationEntitiesArray(userapplication_: UserApplication_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1543
|
-
CreateUserApplication(input: CreateUserApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1544
|
-
UpdateUserApplication(input: UpdateUserApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1579
|
+
CreateUserApplication(input: CreateUserApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1580
|
+
UpdateUserApplication(input: UpdateUserApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1545
1581
|
DeleteUserApplication(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1546
1582
|
}
|
|
1547
1583
|
export declare class CompanyIntegrationRunAPILog_ {
|
|
@@ -1552,6 +1588,8 @@ export declare class CompanyIntegrationRunAPILog_ {
|
|
|
1552
1588
|
RequestMethod?: string;
|
|
1553
1589
|
URL?: string;
|
|
1554
1590
|
Parameters?: string;
|
|
1591
|
+
_mj__CreatedAt: Date;
|
|
1592
|
+
_mj__UpdatedAt: Date;
|
|
1555
1593
|
}
|
|
1556
1594
|
export declare class UpdateCompanyIntegrationRunAPILogInput {
|
|
1557
1595
|
ID: number;
|
|
@@ -1577,7 +1615,7 @@ export declare class CompanyIntegrationRunAPILogResolver extends ResolverBase {
|
|
|
1577
1615
|
RunCompanyIntegrationRunAPILogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1578
1616
|
RunCompanyIntegrationRunAPILogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1579
1617
|
CompanyIntegrationRunAPILog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunAPILog_ | null>;
|
|
1580
|
-
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1618
|
+
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1581
1619
|
}
|
|
1582
1620
|
export declare class List_ {
|
|
1583
1621
|
ID: number;
|
|
@@ -1587,9 +1625,9 @@ export declare class List_ {
|
|
|
1587
1625
|
UserID: number;
|
|
1588
1626
|
ExternalSystemRecordID?: string;
|
|
1589
1627
|
CompanyIntegrationID?: number;
|
|
1590
|
-
CreatedAt: Date;
|
|
1591
|
-
UpdatedAt: Date;
|
|
1592
1628
|
CategoryID?: number;
|
|
1629
|
+
_mj__CreatedAt: Date;
|
|
1630
|
+
_mj__UpdatedAt: Date;
|
|
1593
1631
|
Entity: string;
|
|
1594
1632
|
User: string;
|
|
1595
1633
|
ListDetailsArray: mj_core_schema_server_object_types.ListDetail_[];
|
|
@@ -1631,8 +1669,8 @@ export declare class ListResolver extends ResolverBase {
|
|
|
1631
1669
|
List(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<List_ | null>;
|
|
1632
1670
|
ListDetailsArray(list_: List_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1633
1671
|
DuplicateRunsArray(list_: List_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1634
|
-
CreateList(input: CreateListInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1635
|
-
UpdateList(input: UpdateListInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1672
|
+
CreateList(input: CreateListInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1673
|
+
UpdateList(input: UpdateListInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1636
1674
|
DeleteList(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1637
1675
|
}
|
|
1638
1676
|
export declare class ListDetail_ {
|
|
@@ -1640,6 +1678,8 @@ export declare class ListDetail_ {
|
|
|
1640
1678
|
ListID: number;
|
|
1641
1679
|
RecordID: string;
|
|
1642
1680
|
Sequence: number;
|
|
1681
|
+
_mj__CreatedAt: Date;
|
|
1682
|
+
_mj__UpdatedAt: Date;
|
|
1643
1683
|
List: string;
|
|
1644
1684
|
}
|
|
1645
1685
|
export declare class CreateListDetailInput {
|
|
@@ -1668,8 +1708,8 @@ export declare class ListDetailResolver extends ResolverBase {
|
|
|
1668
1708
|
RunListDetailViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1669
1709
|
RunListDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1670
1710
|
ListDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ListDetail_ | null>;
|
|
1671
|
-
CreateListDetail(input: CreateListDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1672
|
-
UpdateListDetail(input: UpdateListDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1711
|
+
CreateListDetail(input: CreateListDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1712
|
+
UpdateListDetail(input: UpdateListDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1673
1713
|
DeleteListDetail(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1674
1714
|
}
|
|
1675
1715
|
export declare class UserViewRun_ {
|
|
@@ -1677,6 +1717,8 @@ export declare class UserViewRun_ {
|
|
|
1677
1717
|
UserViewID: number;
|
|
1678
1718
|
RunAt: Date;
|
|
1679
1719
|
RunByUserID: number;
|
|
1720
|
+
_mj__CreatedAt: Date;
|
|
1721
|
+
_mj__UpdatedAt: Date;
|
|
1680
1722
|
UserView: string;
|
|
1681
1723
|
RunByUser: string;
|
|
1682
1724
|
UserViewRunDetailsArray: mj_core_schema_server_object_types.UserViewRunDetail_[];
|
|
@@ -1708,13 +1750,15 @@ export declare class UserViewRunResolver extends ResolverBase {
|
|
|
1708
1750
|
RunUserViewRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1709
1751
|
UserViewRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRun_ | null>;
|
|
1710
1752
|
UserViewRunDetailsArray(userviewrun_: UserViewRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1711
|
-
CreateUserViewRun(input: CreateUserViewRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1712
|
-
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1753
|
+
CreateUserViewRun(input: CreateUserViewRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1754
|
+
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1713
1755
|
}
|
|
1714
1756
|
export declare class UserViewRunDetail_ {
|
|
1715
1757
|
ID: number;
|
|
1716
1758
|
UserViewRunID: number;
|
|
1717
1759
|
RecordID: string;
|
|
1760
|
+
_mj__CreatedAt: Date;
|
|
1761
|
+
_mj__UpdatedAt: Date;
|
|
1718
1762
|
UserViewID: number;
|
|
1719
1763
|
EntityID: number;
|
|
1720
1764
|
}
|
|
@@ -1742,8 +1786,8 @@ export declare class UserViewRunDetailResolver extends ResolverBase {
|
|
|
1742
1786
|
RunUserViewRunDetailViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1743
1787
|
RunUserViewRunDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1744
1788
|
UserViewRunDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRunDetail_ | null>;
|
|
1745
|
-
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1746
|
-
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1789
|
+
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1790
|
+
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1747
1791
|
}
|
|
1748
1792
|
export declare class WorkflowRun_ {
|
|
1749
1793
|
ID: number;
|
|
@@ -1753,6 +1797,8 @@ export declare class WorkflowRun_ {
|
|
|
1753
1797
|
EndedAt?: Date;
|
|
1754
1798
|
Status: string;
|
|
1755
1799
|
Results?: string;
|
|
1800
|
+
_mj__CreatedAt: Date;
|
|
1801
|
+
_mj__UpdatedAt: Date;
|
|
1756
1802
|
Workflow: string;
|
|
1757
1803
|
WorkflowEngineName: string;
|
|
1758
1804
|
}
|
|
@@ -1780,7 +1826,7 @@ export declare class WorkflowRunResolver extends ResolverBase {
|
|
|
1780
1826
|
RunWorkflowRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1781
1827
|
RunWorkflowRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1782
1828
|
WorkflowRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowRun_ | null>;
|
|
1783
|
-
UpdateWorkflowRun(input: UpdateWorkflowRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1829
|
+
UpdateWorkflowRun(input: UpdateWorkflowRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1784
1830
|
}
|
|
1785
1831
|
export declare class Workflow_ {
|
|
1786
1832
|
ID: number;
|
|
@@ -1789,12 +1835,12 @@ export declare class Workflow_ {
|
|
|
1789
1835
|
WorkflowEngineName: string;
|
|
1790
1836
|
CompanyName: string;
|
|
1791
1837
|
ExternalSystemRecordID: string;
|
|
1792
|
-
CreatedAt: Date;
|
|
1793
|
-
UpdatedAt: Date;
|
|
1794
1838
|
AutoRunEnabled: boolean;
|
|
1795
1839
|
AutoRunIntervalUnits?: string;
|
|
1796
1840
|
AutoRunInterval?: number;
|
|
1797
1841
|
SubclassName?: string;
|
|
1842
|
+
_mj__CreatedAt: Date;
|
|
1843
|
+
_mj__UpdatedAt: Date;
|
|
1798
1844
|
AutoRunIntervalMinutes?: number;
|
|
1799
1845
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
1800
1846
|
WorkflowRunsArray: mj_core_schema_server_object_types.WorkflowRun_[];
|
|
@@ -1828,7 +1874,7 @@ export declare class WorkflowResolver extends ResolverBase {
|
|
|
1828
1874
|
Workflow(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workflow_ | null>;
|
|
1829
1875
|
ReportsArray(workflow_: Workflow_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1830
1876
|
WorkflowRunsArray(workflow_: Workflow_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1831
|
-
UpdateWorkflow(input: UpdateWorkflowInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1877
|
+
UpdateWorkflow(input: UpdateWorkflowInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1832
1878
|
}
|
|
1833
1879
|
export declare class WorkflowEngine_ {
|
|
1834
1880
|
ID: number;
|
|
@@ -1836,8 +1882,8 @@ export declare class WorkflowEngine_ {
|
|
|
1836
1882
|
Description?: string;
|
|
1837
1883
|
DriverPath: string;
|
|
1838
1884
|
DriverClass: string;
|
|
1839
|
-
|
|
1840
|
-
|
|
1885
|
+
_mj__CreatedAt: Date;
|
|
1886
|
+
_mj__UpdatedAt: Date;
|
|
1841
1887
|
WorkflowsArray: mj_core_schema_server_object_types.Workflow_[];
|
|
1842
1888
|
}
|
|
1843
1889
|
export declare class UpdateWorkflowEngineInput {
|
|
@@ -1863,7 +1909,7 @@ export declare class WorkflowEngineResolver extends ResolverBase {
|
|
|
1863
1909
|
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1864
1910
|
WorkflowEngine(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowEngine_ | null>;
|
|
1865
1911
|
WorkflowsArray(workflowengine_: WorkflowEngine_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1866
|
-
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1912
|
+
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1867
1913
|
}
|
|
1868
1914
|
export declare class RecordChange_ {
|
|
1869
1915
|
ID: number;
|
|
@@ -1871,13 +1917,14 @@ export declare class RecordChange_ {
|
|
|
1871
1917
|
RecordID: string;
|
|
1872
1918
|
UserID: number;
|
|
1873
1919
|
Type: string;
|
|
1874
|
-
Source
|
|
1920
|
+
Source: string;
|
|
1875
1921
|
IntegrationID?: number;
|
|
1876
1922
|
ChangedAt: Date;
|
|
1877
1923
|
ChangesJSON: string;
|
|
1878
1924
|
ChangesDescription: string;
|
|
1879
1925
|
FullRecordJSON: string;
|
|
1880
1926
|
Status: string;
|
|
1927
|
+
ReplayRunID?: number;
|
|
1881
1928
|
ErrorLog?: string;
|
|
1882
1929
|
Comments?: string;
|
|
1883
1930
|
CreatedAt: Date;
|
|
@@ -1891,16 +1938,35 @@ export declare class CreateRecordChangeInput {
|
|
|
1891
1938
|
RecordID: string;
|
|
1892
1939
|
UserID: number;
|
|
1893
1940
|
Type: string;
|
|
1894
|
-
Source
|
|
1941
|
+
Source: string;
|
|
1895
1942
|
IntegrationID?: number;
|
|
1896
1943
|
ChangedAt: Date;
|
|
1897
1944
|
ChangesJSON: string;
|
|
1898
1945
|
ChangesDescription: string;
|
|
1899
1946
|
FullRecordJSON: string;
|
|
1900
1947
|
Status: string;
|
|
1948
|
+
ReplayRunID?: number;
|
|
1901
1949
|
ErrorLog?: string;
|
|
1902
1950
|
Comments?: string;
|
|
1903
1951
|
}
|
|
1952
|
+
export declare class UpdateRecordChangeInput {
|
|
1953
|
+
ID: number;
|
|
1954
|
+
EntityID: number;
|
|
1955
|
+
RecordID: string;
|
|
1956
|
+
UserID: number;
|
|
1957
|
+
Type: string;
|
|
1958
|
+
Source: string;
|
|
1959
|
+
IntegrationID?: number;
|
|
1960
|
+
ChangedAt: Date;
|
|
1961
|
+
ChangesJSON: string;
|
|
1962
|
+
ChangesDescription: string;
|
|
1963
|
+
FullRecordJSON: string;
|
|
1964
|
+
Status: string;
|
|
1965
|
+
ReplayRunID?: number;
|
|
1966
|
+
ErrorLog?: string;
|
|
1967
|
+
Comments?: string;
|
|
1968
|
+
OldValues___?: KeyValuePairInput[];
|
|
1969
|
+
}
|
|
1904
1970
|
export declare class RunRecordChangeViewResult {
|
|
1905
1971
|
Results: RecordChange_[];
|
|
1906
1972
|
UserViewRunID?: number;
|
|
@@ -1915,14 +1981,15 @@ export declare class RecordChangeResolver extends ResolverBase {
|
|
|
1915
1981
|
RunRecordChangeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1916
1982
|
RunRecordChangeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1917
1983
|
RecordChange(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChange_ | null>;
|
|
1918
|
-
CreateRecordChange(input: CreateRecordChangeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
1984
|
+
CreateRecordChange(input: CreateRecordChangeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1985
|
+
UpdateRecordChange(input: UpdateRecordChangeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1919
1986
|
}
|
|
1920
1987
|
export declare class UserRole_ {
|
|
1921
1988
|
ID: number;
|
|
1922
1989
|
UserID: number;
|
|
1923
1990
|
RoleName: string;
|
|
1924
|
-
|
|
1925
|
-
|
|
1991
|
+
_mj__CreatedAt: Date;
|
|
1992
|
+
_mj__UpdatedAt: Date;
|
|
1926
1993
|
User: string;
|
|
1927
1994
|
}
|
|
1928
1995
|
export declare class CreateUserRoleInput {
|
|
@@ -1944,7 +2011,7 @@ export declare class UserRoleResolver extends ResolverBase {
|
|
|
1944
2011
|
RunUserRoleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1945
2012
|
UserRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRole_ | null>;
|
|
1946
2013
|
AllUserRoles({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1947
|
-
CreateUserRole(input: CreateUserRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2014
|
+
CreateUserRole(input: CreateUserRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1948
2015
|
DeleteUserRole(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1949
2016
|
}
|
|
1950
2017
|
export declare class RowLevelSecurityFilter_ {
|
|
@@ -1952,8 +2019,8 @@ export declare class RowLevelSecurityFilter_ {
|
|
|
1952
2019
|
Name: string;
|
|
1953
2020
|
Description?: string;
|
|
1954
2021
|
FilterText?: string;
|
|
1955
|
-
|
|
1956
|
-
|
|
2022
|
+
_mj__CreatedAt: Date;
|
|
2023
|
+
_mj__UpdatedAt: Date;
|
|
1957
2024
|
EntityPermissionsArray: mj_core_schema_server_object_types.EntityPermission_[];
|
|
1958
2025
|
}
|
|
1959
2026
|
export declare class RunRowLevelSecurityFilterViewResult {
|
|
@@ -1983,8 +2050,8 @@ export declare class AuditLog_ {
|
|
|
1983
2050
|
Details?: string;
|
|
1984
2051
|
EntityID?: number;
|
|
1985
2052
|
RecordID?: string;
|
|
1986
|
-
|
|
1987
|
-
|
|
2053
|
+
_mj__CreatedAt: Date;
|
|
2054
|
+
_mj__UpdatedAt: Date;
|
|
1988
2055
|
User: string;
|
|
1989
2056
|
Entity?: string;
|
|
1990
2057
|
}
|
|
@@ -2024,8 +2091,8 @@ export declare class AuditLogResolver extends ResolverBase {
|
|
|
2024
2091
|
RunAuditLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2025
2092
|
RunAuditLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2026
2093
|
AuditLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLog_ | null>;
|
|
2027
|
-
CreateAuditLog(input: CreateAuditLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2028
|
-
UpdateAuditLog(input: UpdateAuditLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2094
|
+
CreateAuditLog(input: CreateAuditLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2095
|
+
UpdateAuditLog(input: UpdateAuditLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2029
2096
|
}
|
|
2030
2097
|
export declare class Authorization_ {
|
|
2031
2098
|
ID: number;
|
|
@@ -2034,8 +2101,8 @@ export declare class Authorization_ {
|
|
|
2034
2101
|
IsActive: boolean;
|
|
2035
2102
|
UseAuditLog: boolean;
|
|
2036
2103
|
Description?: string;
|
|
2037
|
-
|
|
2038
|
-
|
|
2104
|
+
_mj__CreatedAt: Date;
|
|
2105
|
+
_mj__UpdatedAt: Date;
|
|
2039
2106
|
Parent?: string;
|
|
2040
2107
|
AuthorizationRolesArray: mj_core_schema_server_object_types.AuthorizationRole_[];
|
|
2041
2108
|
AuthorizationsArray: mj_core_schema_server_object_types.Authorization_[];
|
|
@@ -2069,8 +2136,8 @@ export declare class AuthorizationRole_ {
|
|
|
2069
2136
|
AuthorizationName?: string;
|
|
2070
2137
|
RoleName?: string;
|
|
2071
2138
|
Type: string;
|
|
2072
|
-
|
|
2073
|
-
|
|
2139
|
+
_mj__CreatedAt: Date;
|
|
2140
|
+
_mj__UpdatedAt: Date;
|
|
2074
2141
|
}
|
|
2075
2142
|
export declare class RunAuthorizationRoleViewResult {
|
|
2076
2143
|
Results: AuthorizationRole_[];
|
|
@@ -2094,8 +2161,8 @@ export declare class AuditLogType_ {
|
|
|
2094
2161
|
Name: string;
|
|
2095
2162
|
Description?: string;
|
|
2096
2163
|
AuthorizationName?: string;
|
|
2097
|
-
|
|
2098
|
-
|
|
2164
|
+
_mj__CreatedAt: Date;
|
|
2165
|
+
_mj__UpdatedAt: Date;
|
|
2099
2166
|
Parent?: string;
|
|
2100
2167
|
AuditLogsArray: mj_core_schema_server_object_types.AuditLog_[];
|
|
2101
2168
|
AuditLogTypesArray: mj_core_schema_server_object_types.AuditLogType_[];
|
|
@@ -2126,11 +2193,21 @@ export declare class EntityFieldValue_ {
|
|
|
2126
2193
|
Value: string;
|
|
2127
2194
|
Code?: string;
|
|
2128
2195
|
Description?: string;
|
|
2129
|
-
|
|
2130
|
-
|
|
2196
|
+
_mj__CreatedAt: Date;
|
|
2197
|
+
_mj__UpdatedAt: Date;
|
|
2131
2198
|
EntityField: string;
|
|
2132
2199
|
Entity: string;
|
|
2133
2200
|
}
|
|
2201
|
+
export declare class UpdateEntityFieldValueInput {
|
|
2202
|
+
ID: number;
|
|
2203
|
+
EntityID: number;
|
|
2204
|
+
EntityFieldName: string;
|
|
2205
|
+
Sequence: number;
|
|
2206
|
+
Value: string;
|
|
2207
|
+
Code?: string;
|
|
2208
|
+
Description?: string;
|
|
2209
|
+
OldValues___?: KeyValuePairInput[];
|
|
2210
|
+
}
|
|
2134
2211
|
export declare class RunEntityFieldValueViewResult {
|
|
2135
2212
|
Results: EntityFieldValue_[];
|
|
2136
2213
|
UserViewRunID?: number;
|
|
@@ -2146,6 +2223,7 @@ export declare class EntityFieldValueResolver extends ResolverBase {
|
|
|
2146
2223
|
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2147
2224
|
EntityFieldValue(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityFieldValue_ | null>;
|
|
2148
2225
|
AllEntityFieldValues({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2226
|
+
UpdateEntityFieldValue(input: UpdateEntityFieldValueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2149
2227
|
}
|
|
2150
2228
|
export declare class AIModel_ {
|
|
2151
2229
|
ID: number;
|
|
@@ -2158,8 +2236,8 @@ export declare class AIModel_ {
|
|
|
2158
2236
|
DriverImportPath?: string;
|
|
2159
2237
|
APIName?: string;
|
|
2160
2238
|
PowerRank?: number;
|
|
2161
|
-
|
|
2162
|
-
|
|
2239
|
+
_mj__CreatedAt: Date;
|
|
2240
|
+
_mj__UpdatedAt: Date;
|
|
2163
2241
|
AIModelType: string;
|
|
2164
2242
|
AIActionsArray: mj_core_schema_server_object_types.AIAction_[];
|
|
2165
2243
|
AIModelActionsArray: mj_core_schema_server_object_types.AIModelAction_[];
|
|
@@ -2211,8 +2289,8 @@ export declare class AIModelResolver extends ResolverBase {
|
|
|
2211
2289
|
EntityAIActionsArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2212
2290
|
VectorIndexesArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2213
2291
|
EntityDocumentsArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2214
|
-
CreateAIModel(input: CreateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2215
|
-
UpdateAIModel(input: UpdateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2292
|
+
CreateAIModel(input: CreateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2293
|
+
UpdateAIModel(input: UpdateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2216
2294
|
DeleteAIModel(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2217
2295
|
}
|
|
2218
2296
|
export declare class AIAction_ {
|
|
@@ -2222,8 +2300,8 @@ export declare class AIAction_ {
|
|
|
2222
2300
|
DefaultModelID?: number;
|
|
2223
2301
|
DefaultPrompt?: string;
|
|
2224
2302
|
IsActive: boolean;
|
|
2225
|
-
|
|
2226
|
-
|
|
2303
|
+
_mj__CreatedAt: Date;
|
|
2304
|
+
_mj__UpdatedAt: Date;
|
|
2227
2305
|
DefaultModel?: string;
|
|
2228
2306
|
AIModelActionsArray: mj_core_schema_server_object_types.AIModelAction_[];
|
|
2229
2307
|
EntityAIActionsArray: mj_core_schema_server_object_types.EntityAIAction_[];
|
|
@@ -2261,8 +2339,8 @@ export declare class AIActionResolver extends ResolverBase {
|
|
|
2261
2339
|
AllAIActions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2262
2340
|
AIModelActionsArray(aiaction_: AIAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2263
2341
|
EntityAIActionsArray(aiaction_: AIAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2264
|
-
CreateAIAction(input: CreateAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2265
|
-
UpdateAIAction(input: UpdateAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2342
|
+
CreateAIAction(input: CreateAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2343
|
+
UpdateAIAction(input: UpdateAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2266
2344
|
DeleteAIAction(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2267
2345
|
}
|
|
2268
2346
|
export declare class AIModelAction_ {
|
|
@@ -2270,8 +2348,8 @@ export declare class AIModelAction_ {
|
|
|
2270
2348
|
AIModelID: number;
|
|
2271
2349
|
AIActionID: number;
|
|
2272
2350
|
IsActive: boolean;
|
|
2273
|
-
|
|
2274
|
-
|
|
2351
|
+
_mj__CreatedAt: Date;
|
|
2352
|
+
_mj__UpdatedAt: Date;
|
|
2275
2353
|
AIModel: string;
|
|
2276
2354
|
AIAction: string;
|
|
2277
2355
|
}
|
|
@@ -2302,8 +2380,8 @@ export declare class AIModelActionResolver extends ResolverBase {
|
|
|
2302
2380
|
RunAIModelActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2303
2381
|
AIModelAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelAction_ | null>;
|
|
2304
2382
|
AllAIModelActions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2305
|
-
CreateAIModelAction(input: CreateAIModelActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2306
|
-
UpdateAIModelAction(input: UpdateAIModelActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2383
|
+
CreateAIModelAction(input: CreateAIModelActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2384
|
+
UpdateAIModelAction(input: UpdateAIModelActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2307
2385
|
DeleteAIModelAction(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2308
2386
|
}
|
|
2309
2387
|
export declare class EntityAIAction_ {
|
|
@@ -2320,6 +2398,8 @@ export declare class EntityAIAction_ {
|
|
|
2320
2398
|
SkipIfOutputFieldNotEmpty: boolean;
|
|
2321
2399
|
OutputEntityID?: number;
|
|
2322
2400
|
Comments?: string;
|
|
2401
|
+
_mj__CreatedAt: Date;
|
|
2402
|
+
_mj__UpdatedAt: Date;
|
|
2323
2403
|
Entity: string;
|
|
2324
2404
|
AIAction: string;
|
|
2325
2405
|
AIModel?: string;
|
|
@@ -2370,14 +2450,16 @@ export declare class EntityAIActionResolver extends ResolverBase {
|
|
|
2370
2450
|
RunEntityAIActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2371
2451
|
EntityAIAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAIAction_ | null>;
|
|
2372
2452
|
AllEntityAIActions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2373
|
-
CreateEntityAIAction(input: CreateEntityAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2374
|
-
UpdateEntityAIAction(input: UpdateEntityAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2453
|
+
CreateEntityAIAction(input: CreateEntityAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2454
|
+
UpdateEntityAIAction(input: UpdateEntityAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2375
2455
|
DeleteEntityAIAction(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2376
2456
|
}
|
|
2377
2457
|
export declare class AIModelType_ {
|
|
2378
2458
|
ID: number;
|
|
2379
2459
|
Name: string;
|
|
2380
2460
|
Description?: string;
|
|
2461
|
+
_mj__CreatedAt: Date;
|
|
2462
|
+
_mj__UpdatedAt: Date;
|
|
2381
2463
|
AIModelsArray: mj_core_schema_server_object_types.AIModel_[];
|
|
2382
2464
|
}
|
|
2383
2465
|
export declare class CreateAIModelTypeInput {
|
|
@@ -2406,8 +2488,8 @@ export declare class AIModelTypeResolver extends ResolverBase {
|
|
|
2406
2488
|
AIModelType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelType_ | null>;
|
|
2407
2489
|
AllAIModelTypes({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2408
2490
|
AIModelsArray(aimodeltype_: AIModelType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2409
|
-
CreateAIModelType(input: CreateAIModelTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2410
|
-
UpdateAIModelType(input: UpdateAIModelTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2491
|
+
CreateAIModelType(input: CreateAIModelTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2492
|
+
UpdateAIModelType(input: UpdateAIModelTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2411
2493
|
DeleteAIModelType(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2412
2494
|
}
|
|
2413
2495
|
export declare class QueueType_ {
|
|
@@ -2417,6 +2499,8 @@ export declare class QueueType_ {
|
|
|
2417
2499
|
DriverClass: string;
|
|
2418
2500
|
DriverImportPath?: string;
|
|
2419
2501
|
IsActive: boolean;
|
|
2502
|
+
_mj__CreatedAt: Date;
|
|
2503
|
+
_mj__UpdatedAt: Date;
|
|
2420
2504
|
QueuesArray: mj_core_schema_server_object_types.Queue_[];
|
|
2421
2505
|
}
|
|
2422
2506
|
export declare class RunQueueTypeViewResult {
|
|
@@ -2453,8 +2537,8 @@ export declare class Queue_ {
|
|
|
2453
2537
|
ProcessUserID?: string;
|
|
2454
2538
|
ProcessUserName?: string;
|
|
2455
2539
|
LastHeartbeat: Date;
|
|
2456
|
-
|
|
2457
|
-
|
|
2540
|
+
_mj__CreatedAt: Date;
|
|
2541
|
+
_mj__UpdatedAt: Date;
|
|
2458
2542
|
QueueType: string;
|
|
2459
2543
|
QueueTasksArray: mj_core_schema_server_object_types.QueueTask_[];
|
|
2460
2544
|
}
|
|
@@ -2511,8 +2595,8 @@ export declare class QueueResolver extends ResolverBase {
|
|
|
2511
2595
|
RunQueueDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2512
2596
|
Queue(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Queue_ | null>;
|
|
2513
2597
|
QueueTasksArray(queue_: Queue_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2514
|
-
CreateQueue(input: CreateQueueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2515
|
-
UpdateQueue(input: UpdateQueueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2598
|
+
CreateQueue(input: CreateQueueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2599
|
+
UpdateQueue(input: UpdateQueueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2516
2600
|
}
|
|
2517
2601
|
export declare class QueueTask_ {
|
|
2518
2602
|
ID: number;
|
|
@@ -2525,6 +2609,8 @@ export declare class QueueTask_ {
|
|
|
2525
2609
|
Output?: string;
|
|
2526
2610
|
ErrorMessage?: string;
|
|
2527
2611
|
Comments?: string;
|
|
2612
|
+
_mj__CreatedAt: Date;
|
|
2613
|
+
_mj__UpdatedAt: Date;
|
|
2528
2614
|
Queue: string;
|
|
2529
2615
|
}
|
|
2530
2616
|
export declare class CreateQueueTaskInput {
|
|
@@ -2565,8 +2651,8 @@ export declare class QueueTaskResolver extends ResolverBase {
|
|
|
2565
2651
|
RunQueueTaskViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2566
2652
|
RunQueueTaskDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2567
2653
|
QueueTask(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueTask_ | null>;
|
|
2568
|
-
CreateQueueTask(input: CreateQueueTaskInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2569
|
-
UpdateQueueTask(input: UpdateQueueTaskInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2654
|
+
CreateQueueTask(input: CreateQueueTaskInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2655
|
+
UpdateQueueTask(input: UpdateQueueTaskInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2570
2656
|
}
|
|
2571
2657
|
export declare class Dashboard_ {
|
|
2572
2658
|
ID: number;
|
|
@@ -2575,6 +2661,8 @@ export declare class Dashboard_ {
|
|
|
2575
2661
|
CategoryID?: number;
|
|
2576
2662
|
UIConfigDetails: string;
|
|
2577
2663
|
UserID?: number;
|
|
2664
|
+
_mj__CreatedAt: Date;
|
|
2665
|
+
_mj__UpdatedAt: Date;
|
|
2578
2666
|
Category?: string;
|
|
2579
2667
|
User?: string;
|
|
2580
2668
|
}
|
|
@@ -2608,14 +2696,16 @@ export declare class DashboardResolver extends ResolverBase {
|
|
|
2608
2696
|
RunDashboardViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2609
2697
|
RunDashboardDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2610
2698
|
Dashboard(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dashboard_ | null>;
|
|
2611
|
-
CreateDashboard(input: CreateDashboardInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2612
|
-
UpdateDashboard(input: UpdateDashboardInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2699
|
+
CreateDashboard(input: CreateDashboardInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2700
|
+
UpdateDashboard(input: UpdateDashboardInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2613
2701
|
DeleteDashboard(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2614
2702
|
}
|
|
2615
2703
|
export declare class OutputTriggerType_ {
|
|
2616
2704
|
ID: number;
|
|
2617
2705
|
Name: string;
|
|
2618
2706
|
Description?: string;
|
|
2707
|
+
_mj__CreatedAt: Date;
|
|
2708
|
+
_mj__UpdatedAt: Date;
|
|
2619
2709
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2620
2710
|
}
|
|
2621
2711
|
export declare class RunOutputTriggerTypeViewResult {
|
|
@@ -2639,6 +2729,8 @@ export declare class OutputFormatType_ {
|
|
|
2639
2729
|
Name: string;
|
|
2640
2730
|
Description?: string;
|
|
2641
2731
|
DisplayFormat?: string;
|
|
2732
|
+
_mj__CreatedAt: Date;
|
|
2733
|
+
_mj__UpdatedAt: Date;
|
|
2642
2734
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2643
2735
|
}
|
|
2644
2736
|
export declare class RunOutputFormatTypeViewResult {
|
|
@@ -2661,6 +2753,8 @@ export declare class OutputDeliveryType_ {
|
|
|
2661
2753
|
ID: number;
|
|
2662
2754
|
Name: string;
|
|
2663
2755
|
Description?: string;
|
|
2756
|
+
_mj__CreatedAt: Date;
|
|
2757
|
+
_mj__UpdatedAt: Date;
|
|
2664
2758
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2665
2759
|
}
|
|
2666
2760
|
export declare class RunOutputDeliveryTypeViewResult {
|
|
@@ -2697,8 +2791,8 @@ export declare class Report_ {
|
|
|
2697
2791
|
OutputFrequency?: string;
|
|
2698
2792
|
OutputTargetEmail?: string;
|
|
2699
2793
|
OutputWorkflowID?: number;
|
|
2700
|
-
|
|
2701
|
-
|
|
2794
|
+
_mj__CreatedAt: Date;
|
|
2795
|
+
_mj__UpdatedAt: Date;
|
|
2702
2796
|
Category?: string;
|
|
2703
2797
|
User: string;
|
|
2704
2798
|
Conversation?: string;
|
|
@@ -2763,16 +2857,17 @@ export declare class ReportResolver extends ResolverBase {
|
|
|
2763
2857
|
RunReportDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2764
2858
|
Report(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Report_ | null>;
|
|
2765
2859
|
ReportSnapshotsArray(report_: Report_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2766
|
-
CreateReport(input: CreateReportInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2767
|
-
UpdateReport(input: UpdateReportInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2860
|
+
CreateReport(input: CreateReportInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2861
|
+
UpdateReport(input: UpdateReportInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2768
2862
|
DeleteReport(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2769
2863
|
}
|
|
2770
2864
|
export declare class ReportSnapshot_ {
|
|
2771
2865
|
ID: number;
|
|
2772
2866
|
ReportID: number;
|
|
2773
2867
|
ResultSet: string;
|
|
2774
|
-
CreatedAt: Date;
|
|
2775
2868
|
UserID?: number;
|
|
2869
|
+
_mj__CreatedAt: Date;
|
|
2870
|
+
_mj__UpdatedAt: Date;
|
|
2776
2871
|
Report: string;
|
|
2777
2872
|
User?: string;
|
|
2778
2873
|
}
|
|
@@ -2802,8 +2897,8 @@ export declare class ReportSnapshotResolver extends ResolverBase {
|
|
|
2802
2897
|
RunReportSnapshotViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2803
2898
|
RunReportSnapshotDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2804
2899
|
ReportSnapshot(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportSnapshot_ | null>;
|
|
2805
|
-
CreateReportSnapshot(input: CreateReportSnapshotInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2806
|
-
UpdateReportSnapshot(input: UpdateReportSnapshotInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2900
|
+
CreateReportSnapshot(input: CreateReportSnapshotInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2901
|
+
UpdateReportSnapshot(input: UpdateReportSnapshotInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2807
2902
|
DeleteReportSnapshot(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2808
2903
|
}
|
|
2809
2904
|
export declare class ResourceType_ {
|
|
@@ -2813,8 +2908,8 @@ export declare class ResourceType_ {
|
|
|
2813
2908
|
Description?: string;
|
|
2814
2909
|
Icon?: string;
|
|
2815
2910
|
EntityID?: number;
|
|
2816
|
-
|
|
2817
|
-
|
|
2911
|
+
_mj__CreatedAt: Date;
|
|
2912
|
+
_mj__UpdatedAt: Date;
|
|
2818
2913
|
Entity?: string;
|
|
2819
2914
|
WorkspaceItemsArray: mj_core_schema_server_object_types.WorkspaceItem_[];
|
|
2820
2915
|
}
|
|
@@ -2840,6 +2935,8 @@ export declare class Tag_ {
|
|
|
2840
2935
|
DisplayName: string;
|
|
2841
2936
|
Description?: string;
|
|
2842
2937
|
ParentID?: number;
|
|
2938
|
+
_mj__CreatedAt: Date;
|
|
2939
|
+
_mj__UpdatedAt: Date;
|
|
2843
2940
|
Parent?: string;
|
|
2844
2941
|
TagsArray: mj_core_schema_server_object_types.Tag_[];
|
|
2845
2942
|
TaggedItemsArray: mj_core_schema_server_object_types.TaggedItem_[];
|
|
@@ -2866,6 +2963,8 @@ export declare class TaggedItem_ {
|
|
|
2866
2963
|
TagID: number;
|
|
2867
2964
|
EntityID: number;
|
|
2868
2965
|
RecordID: string;
|
|
2966
|
+
_mj__CreatedAt: Date;
|
|
2967
|
+
_mj__UpdatedAt: Date;
|
|
2869
2968
|
Tag: string;
|
|
2870
2969
|
Entity: string;
|
|
2871
2970
|
}
|
|
@@ -2889,8 +2988,8 @@ export declare class Workspace_ {
|
|
|
2889
2988
|
Name: string;
|
|
2890
2989
|
Description?: string;
|
|
2891
2990
|
UserID: number;
|
|
2892
|
-
|
|
2893
|
-
|
|
2991
|
+
_mj__CreatedAt: Date;
|
|
2992
|
+
_mj__UpdatedAt: Date;
|
|
2894
2993
|
User: string;
|
|
2895
2994
|
WorkspaceItemsArray: mj_core_schema_server_object_types.WorkspaceItem_[];
|
|
2896
2995
|
}
|
|
@@ -2921,8 +3020,8 @@ export declare class WorkspaceResolver extends ResolverBase {
|
|
|
2921
3020
|
RunWorkspaceDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2922
3021
|
Workspace(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workspace_ | null>;
|
|
2923
3022
|
WorkspaceItemsArray(workspace_: Workspace_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2924
|
-
CreateWorkspace(input: CreateWorkspaceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2925
|
-
UpdateWorkspace(input: UpdateWorkspaceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3023
|
+
CreateWorkspace(input: CreateWorkspaceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3024
|
+
UpdateWorkspace(input: UpdateWorkspaceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2926
3025
|
DeleteWorkspace(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2927
3026
|
}
|
|
2928
3027
|
export declare class WorkspaceItem_ {
|
|
@@ -2934,8 +3033,8 @@ export declare class WorkspaceItem_ {
|
|
|
2934
3033
|
ResourceRecordID?: string;
|
|
2935
3034
|
Sequence: number;
|
|
2936
3035
|
Configuration?: string;
|
|
2937
|
-
|
|
2938
|
-
|
|
3036
|
+
_mj__CreatedAt: Date;
|
|
3037
|
+
_mj__UpdatedAt: Date;
|
|
2939
3038
|
WorkSpace: string;
|
|
2940
3039
|
ResourceType: string;
|
|
2941
3040
|
}
|
|
@@ -2973,16 +3072,16 @@ export declare class WorkspaceItemResolver extends ResolverBase {
|
|
|
2973
3072
|
RunWorkspaceItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2974
3073
|
RunWorkspaceItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2975
3074
|
WorkspaceItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkspaceItem_ | null>;
|
|
2976
|
-
CreateWorkspaceItem(input: CreateWorkspaceItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
2977
|
-
UpdateWorkspaceItem(input: UpdateWorkspaceItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3075
|
+
CreateWorkspaceItem(input: CreateWorkspaceItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3076
|
+
UpdateWorkspaceItem(input: UpdateWorkspaceItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2978
3077
|
DeleteWorkspaceItem(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2979
3078
|
}
|
|
2980
3079
|
export declare class Dataset_ {
|
|
2981
3080
|
ID: number;
|
|
2982
3081
|
Name: string;
|
|
2983
3082
|
Description?: string;
|
|
2984
|
-
|
|
2985
|
-
|
|
3083
|
+
_mj__CreatedAt: Date;
|
|
3084
|
+
_mj__UpdatedAt: Date;
|
|
2986
3085
|
DatasetItemsArray: mj_core_schema_server_object_types.DatasetItem_[];
|
|
2987
3086
|
}
|
|
2988
3087
|
export declare class RunDatasetViewResult {
|
|
@@ -3010,8 +3109,8 @@ export declare class DatasetItem_ {
|
|
|
3010
3109
|
WhereClause?: string;
|
|
3011
3110
|
DateFieldToCheck: string;
|
|
3012
3111
|
Description?: string;
|
|
3013
|
-
|
|
3014
|
-
|
|
3112
|
+
_mj__CreatedAt: Date;
|
|
3113
|
+
_mj__UpdatedAt: Date;
|
|
3015
3114
|
Entity: string;
|
|
3016
3115
|
}
|
|
3017
3116
|
export declare class RunDatasetItemViewResult {
|
|
@@ -3037,8 +3136,8 @@ export declare class ConversationDetail_ {
|
|
|
3037
3136
|
Message: string;
|
|
3038
3137
|
Error?: string;
|
|
3039
3138
|
HiddenToUser: boolean;
|
|
3040
|
-
|
|
3041
|
-
|
|
3139
|
+
_mj__CreatedAt: Date;
|
|
3140
|
+
_mj__UpdatedAt: Date;
|
|
3042
3141
|
Conversation?: string;
|
|
3043
3142
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
3044
3143
|
}
|
|
@@ -3075,8 +3174,8 @@ export declare class ConversationDetailResolver extends ResolverBase {
|
|
|
3075
3174
|
RunConversationDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3076
3175
|
ConversationDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ConversationDetail_ | null>;
|
|
3077
3176
|
ReportsArray(conversationdetail_: ConversationDetail_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3078
|
-
CreateConversationDetail(input: CreateConversationDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3079
|
-
UpdateConversationDetail(input: UpdateConversationDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3177
|
+
CreateConversationDetail(input: CreateConversationDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3178
|
+
UpdateConversationDetail(input: UpdateConversationDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3080
3179
|
DeleteConversationDetail(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3081
3180
|
}
|
|
3082
3181
|
export declare class Conversation_ {
|
|
@@ -3090,8 +3189,8 @@ export declare class Conversation_ {
|
|
|
3090
3189
|
LinkedEntityID?: number;
|
|
3091
3190
|
LinkedRecordID?: string;
|
|
3092
3191
|
DataContextID?: number;
|
|
3093
|
-
|
|
3094
|
-
|
|
3192
|
+
_mj__CreatedAt: Date;
|
|
3193
|
+
_mj__UpdatedAt: Date;
|
|
3095
3194
|
User: string;
|
|
3096
3195
|
LinkedEntity?: string;
|
|
3097
3196
|
ConversationDetailsArray: mj_core_schema_server_object_types.ConversationDetail_[];
|
|
@@ -3137,8 +3236,8 @@ export declare class ConversationResolver extends ResolverBase {
|
|
|
3137
3236
|
Conversation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Conversation_ | null>;
|
|
3138
3237
|
ConversationDetailsArray(conversation_: Conversation_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3139
3238
|
ReportsArray(conversation_: Conversation_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3140
|
-
CreateConversation(input: CreateConversationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3141
|
-
UpdateConversation(input: UpdateConversationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3239
|
+
CreateConversation(input: CreateConversationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3240
|
+
UpdateConversation(input: UpdateConversationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3142
3241
|
DeleteConversation(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3143
3242
|
}
|
|
3144
3243
|
export declare class UserNotification_ {
|
|
@@ -3151,8 +3250,8 @@ export declare class UserNotification_ {
|
|
|
3151
3250
|
ResourceConfiguration?: string;
|
|
3152
3251
|
Unread: boolean;
|
|
3153
3252
|
ReadAt?: Date;
|
|
3154
|
-
|
|
3155
|
-
|
|
3253
|
+
_mj__CreatedAt: Date;
|
|
3254
|
+
_mj__UpdatedAt: Date;
|
|
3156
3255
|
User: string;
|
|
3157
3256
|
}
|
|
3158
3257
|
export declare class CreateUserNotificationInput {
|
|
@@ -3191,8 +3290,8 @@ export declare class UserNotificationResolver extends ResolverBase {
|
|
|
3191
3290
|
RunUserNotificationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3192
3291
|
RunUserNotificationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3193
3292
|
UserNotification(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserNotification_ | null>;
|
|
3194
|
-
CreateUserNotification(input: CreateUserNotificationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3195
|
-
UpdateUserNotification(input: UpdateUserNotificationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3293
|
+
CreateUserNotification(input: CreateUserNotificationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3294
|
+
UpdateUserNotification(input: UpdateUserNotificationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3196
3295
|
DeleteUserNotification(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3197
3296
|
}
|
|
3198
3297
|
export declare class SchemaInfo_ {
|
|
@@ -3201,8 +3300,8 @@ export declare class SchemaInfo_ {
|
|
|
3201
3300
|
EntityIDMin: number;
|
|
3202
3301
|
EntityIDMax: number;
|
|
3203
3302
|
Comments?: string;
|
|
3204
|
-
|
|
3205
|
-
|
|
3303
|
+
_mj__CreatedAt: Date;
|
|
3304
|
+
_mj__UpdatedAt: Date;
|
|
3206
3305
|
}
|
|
3207
3306
|
export declare class CreateSchemaInfoInput {
|
|
3208
3307
|
SchemaName: string;
|
|
@@ -3232,8 +3331,8 @@ export declare class SchemaInfoResolver extends ResolverBase {
|
|
|
3232
3331
|
RunSchemaInfoViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3233
3332
|
RunSchemaInfoDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3234
3333
|
SchemaInfo(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<SchemaInfo_ | null>;
|
|
3235
|
-
CreateSchemaInfo(input: CreateSchemaInfoInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3236
|
-
UpdateSchemaInfo(input: UpdateSchemaInfoInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3334
|
+
CreateSchemaInfo(input: CreateSchemaInfoInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3335
|
+
UpdateSchemaInfo(input: UpdateSchemaInfoInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3237
3336
|
}
|
|
3238
3337
|
export declare class CompanyIntegrationRecordMap_ {
|
|
3239
3338
|
ID: number;
|
|
@@ -3241,8 +3340,8 @@ export declare class CompanyIntegrationRecordMap_ {
|
|
|
3241
3340
|
ExternalSystemRecordID: string;
|
|
3242
3341
|
EntityID: number;
|
|
3243
3342
|
EntityRecordID: string;
|
|
3244
|
-
|
|
3245
|
-
|
|
3343
|
+
_mj__CreatedAt: Date;
|
|
3344
|
+
_mj__UpdatedAt: Date;
|
|
3246
3345
|
Entity: string;
|
|
3247
3346
|
}
|
|
3248
3347
|
export declare class CreateCompanyIntegrationRecordMapInput {
|
|
@@ -3273,8 +3372,8 @@ export declare class CompanyIntegrationRecordMapResolver extends ResolverBase {
|
|
|
3273
3372
|
RunCompanyIntegrationRecordMapViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3274
3373
|
RunCompanyIntegrationRecordMapDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3275
3374
|
CompanyIntegrationRecordMap(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRecordMap_ | null>;
|
|
3276
|
-
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3277
|
-
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3375
|
+
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3376
|
+
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3278
3377
|
}
|
|
3279
3378
|
export declare class RecordMergeLog_ {
|
|
3280
3379
|
ID: number;
|
|
@@ -3288,8 +3387,8 @@ export declare class RecordMergeLog_ {
|
|
|
3288
3387
|
ProcessingEndedAt?: Date;
|
|
3289
3388
|
ProcessingLog?: string;
|
|
3290
3389
|
Comments?: string;
|
|
3291
|
-
|
|
3292
|
-
|
|
3390
|
+
_mj__CreatedAt: Date;
|
|
3391
|
+
_mj__UpdatedAt: Date;
|
|
3293
3392
|
Entity: string;
|
|
3294
3393
|
InitiatedByUser: string;
|
|
3295
3394
|
RecordMergeDeletionLogsArray: mj_core_schema_server_object_types.RecordMergeDeletionLog_[];
|
|
@@ -3337,8 +3436,8 @@ export declare class RecordMergeLogResolver extends ResolverBase {
|
|
|
3337
3436
|
RecordMergeLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeLog_ | null>;
|
|
3338
3437
|
RecordMergeDeletionLogsArray(recordmergelog_: RecordMergeLog_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3339
3438
|
DuplicateRunDetailMatchesArray(recordmergelog_: RecordMergeLog_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3340
|
-
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3341
|
-
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3439
|
+
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3440
|
+
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3342
3441
|
}
|
|
3343
3442
|
export declare class RecordMergeDeletionLog_ {
|
|
3344
3443
|
ID: number;
|
|
@@ -3346,8 +3445,8 @@ export declare class RecordMergeDeletionLog_ {
|
|
|
3346
3445
|
DeletedRecordID: string;
|
|
3347
3446
|
Status: string;
|
|
3348
3447
|
ProcessingLog?: string;
|
|
3349
|
-
|
|
3350
|
-
|
|
3448
|
+
_mj__CreatedAt: Date;
|
|
3449
|
+
_mj__UpdatedAt: Date;
|
|
3351
3450
|
}
|
|
3352
3451
|
export declare class CreateRecordMergeDeletionLogInput {
|
|
3353
3452
|
RecordMergeLogID: number;
|
|
@@ -3377,8 +3476,8 @@ export declare class RecordMergeDeletionLogResolver extends ResolverBase {
|
|
|
3377
3476
|
RunRecordMergeDeletionLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3378
3477
|
RunRecordMergeDeletionLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3379
3478
|
RecordMergeDeletionLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeDeletionLog_ | null>;
|
|
3380
|
-
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3381
|
-
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3479
|
+
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3480
|
+
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3382
3481
|
}
|
|
3383
3482
|
export declare class QueryField_ {
|
|
3384
3483
|
ID: number;
|
|
@@ -3394,8 +3493,8 @@ export declare class QueryField_ {
|
|
|
3394
3493
|
ComputationDescription?: string;
|
|
3395
3494
|
IsSummary: boolean;
|
|
3396
3495
|
SummaryDescription?: string;
|
|
3397
|
-
|
|
3398
|
-
|
|
3496
|
+
_mj__CreatedAt: Date;
|
|
3497
|
+
_mj__UpdatedAt: Date;
|
|
3399
3498
|
Query: string;
|
|
3400
3499
|
SourceEntity?: string;
|
|
3401
3500
|
}
|
|
@@ -3443,17 +3542,17 @@ export declare class QueryFieldResolver extends ResolverBase {
|
|
|
3443
3542
|
RunQueryFieldViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3444
3543
|
RunQueryFieldDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3445
3544
|
QueryField(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryField_ | null>;
|
|
3446
|
-
CreateQueryField(input: CreateQueryFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3447
|
-
UpdateQueryField(input: UpdateQueryFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3545
|
+
CreateQueryField(input: CreateQueryFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3546
|
+
UpdateQueryField(input: UpdateQueryFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3448
3547
|
}
|
|
3449
3548
|
export declare class QueryCategory_ {
|
|
3450
3549
|
ID: number;
|
|
3451
3550
|
Name: string;
|
|
3452
3551
|
ParentID?: number;
|
|
3453
3552
|
Description?: string;
|
|
3454
|
-
CreatedAt: Date;
|
|
3455
|
-
UpdatedAt: Date;
|
|
3456
3553
|
UserID: number;
|
|
3554
|
+
_mj__CreatedAt: Date;
|
|
3555
|
+
_mj__UpdatedAt: Date;
|
|
3457
3556
|
Parent?: string;
|
|
3458
3557
|
User: string;
|
|
3459
3558
|
QueryCategoriesArray: mj_core_schema_server_object_types.QueryCategory_[];
|
|
@@ -3489,8 +3588,8 @@ export declare class QueryCategoryResolver extends ResolverBase {
|
|
|
3489
3588
|
QueryCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryCategory_ | null>;
|
|
3490
3589
|
QueryCategoriesArray(querycategory_: QueryCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3491
3590
|
QueriesArray(querycategory_: QueryCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3492
|
-
CreateQueryCategory(input: CreateQueryCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3493
|
-
UpdateQueryCategory(input: UpdateQueryCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3591
|
+
CreateQueryCategory(input: CreateQueryCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3592
|
+
UpdateQueryCategory(input: UpdateQueryCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3494
3593
|
DeleteQueryCategory(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3495
3594
|
}
|
|
3496
3595
|
export declare class Query_ {
|
|
@@ -3506,8 +3605,8 @@ export declare class Query_ {
|
|
|
3506
3605
|
Status: string;
|
|
3507
3606
|
QualityRank?: number;
|
|
3508
3607
|
ExecutionCostRank?: number;
|
|
3509
|
-
|
|
3510
|
-
|
|
3608
|
+
_mj__CreatedAt: Date;
|
|
3609
|
+
_mj__UpdatedAt: Date;
|
|
3511
3610
|
Category?: string;
|
|
3512
3611
|
QueryFieldsArray: mj_core_schema_server_object_types.QueryField_[];
|
|
3513
3612
|
QueryPermissionsArray: mj_core_schema_server_object_types.QueryPermission_[];
|
|
@@ -3558,15 +3657,15 @@ export declare class QueryResolver extends ResolverBase {
|
|
|
3558
3657
|
QueryFieldsArray(query_: Query_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3559
3658
|
QueryPermissionsArray(query_: Query_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3560
3659
|
DataContextItemsArray(query_: Query_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3561
|
-
CreateQuery(input: CreateQueryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3562
|
-
UpdateQuery(input: UpdateQueryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3660
|
+
CreateQuery(input: CreateQueryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3661
|
+
UpdateQuery(input: UpdateQueryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3563
3662
|
}
|
|
3564
3663
|
export declare class QueryPermission_ {
|
|
3565
3664
|
ID: number;
|
|
3566
3665
|
QueryID: number;
|
|
3567
3666
|
RoleName: string;
|
|
3568
|
-
|
|
3569
|
-
|
|
3667
|
+
_mj__CreatedAt: Date;
|
|
3668
|
+
_mj__UpdatedAt: Date;
|
|
3570
3669
|
}
|
|
3571
3670
|
export declare class CreateQueryPermissionInput {
|
|
3572
3671
|
QueryID: number;
|
|
@@ -3592,8 +3691,8 @@ export declare class QueryPermissionResolver extends ResolverBase {
|
|
|
3592
3691
|
RunQueryPermissionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3593
3692
|
RunQueryPermissionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3594
3693
|
QueryPermission(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryPermission_ | null>;
|
|
3595
|
-
CreateQueryPermission(input: CreateQueryPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3596
|
-
UpdateQueryPermission(input: UpdateQueryPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3694
|
+
CreateQueryPermission(input: CreateQueryPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3695
|
+
UpdateQueryPermission(input: UpdateQueryPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3597
3696
|
}
|
|
3598
3697
|
export declare class VectorIndex_ {
|
|
3599
3698
|
ID: number;
|
|
@@ -3601,8 +3700,8 @@ export declare class VectorIndex_ {
|
|
|
3601
3700
|
Description?: string;
|
|
3602
3701
|
VectorDatabaseID: number;
|
|
3603
3702
|
EmbeddingModelID: number;
|
|
3604
|
-
|
|
3605
|
-
|
|
3703
|
+
_mj__CreatedAt: Date;
|
|
3704
|
+
_mj__UpdatedAt: Date;
|
|
3606
3705
|
VectorDatabase: string;
|
|
3607
3706
|
EmbeddingModel: string;
|
|
3608
3707
|
}
|
|
@@ -3634,15 +3733,15 @@ export declare class VectorIndexResolver extends ResolverBase {
|
|
|
3634
3733
|
RunVectorIndexViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3635
3734
|
RunVectorIndexDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3636
3735
|
VectorIndex(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorIndex_ | null>;
|
|
3637
|
-
CreateVectorIndex(input: CreateVectorIndexInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3638
|
-
UpdateVectorIndex(input: UpdateVectorIndexInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3736
|
+
CreateVectorIndex(input: CreateVectorIndexInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3737
|
+
UpdateVectorIndex(input: UpdateVectorIndexInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3639
3738
|
}
|
|
3640
3739
|
export declare class EntityDocumentType_ {
|
|
3641
3740
|
ID: number;
|
|
3642
3741
|
Name: string;
|
|
3643
3742
|
Description?: string;
|
|
3644
|
-
|
|
3645
|
-
|
|
3743
|
+
_mj__CreatedAt: Date;
|
|
3744
|
+
_mj__UpdatedAt: Date;
|
|
3646
3745
|
EntityDocumentsArray: mj_core_schema_server_object_types.EntityDocument_[];
|
|
3647
3746
|
}
|
|
3648
3747
|
export declare class CreateEntityDocumentTypeInput {
|
|
@@ -3670,8 +3769,8 @@ export declare class EntityDocumentTypeResolver extends ResolverBase {
|
|
|
3670
3769
|
RunEntityDocumentTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3671
3770
|
EntityDocumentType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentType_ | null>;
|
|
3672
3771
|
EntityDocumentsArray(entitydocumenttype_: EntityDocumentType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3673
|
-
CreateEntityDocumentType(input: CreateEntityDocumentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3674
|
-
UpdateEntityDocumentType(input: UpdateEntityDocumentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3772
|
+
CreateEntityDocumentType(input: CreateEntityDocumentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3773
|
+
UpdateEntityDocumentType(input: UpdateEntityDocumentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3675
3774
|
}
|
|
3676
3775
|
export declare class EntityDocumentRun_ {
|
|
3677
3776
|
ID: number;
|
|
@@ -3679,8 +3778,8 @@ export declare class EntityDocumentRun_ {
|
|
|
3679
3778
|
StartedAt?: Date;
|
|
3680
3779
|
EndedAt?: Date;
|
|
3681
3780
|
Status: string;
|
|
3682
|
-
|
|
3683
|
-
|
|
3781
|
+
_mj__CreatedAt: Date;
|
|
3782
|
+
_mj__UpdatedAt: Date;
|
|
3684
3783
|
EntityDocument: string;
|
|
3685
3784
|
}
|
|
3686
3785
|
export declare class CreateEntityDocumentRunInput {
|
|
@@ -3711,8 +3810,8 @@ export declare class EntityDocumentRunResolver extends ResolverBase {
|
|
|
3711
3810
|
RunEntityDocumentRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3712
3811
|
RunEntityDocumentRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3713
3812
|
EntityDocumentRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentRun_ | null>;
|
|
3714
|
-
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3715
|
-
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3813
|
+
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3814
|
+
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3716
3815
|
}
|
|
3717
3816
|
export declare class VectorDatabase_ {
|
|
3718
3817
|
ID: number;
|
|
@@ -3720,8 +3819,8 @@ export declare class VectorDatabase_ {
|
|
|
3720
3819
|
Description?: string;
|
|
3721
3820
|
DefaultURL?: string;
|
|
3722
3821
|
ClassKey?: string;
|
|
3723
|
-
|
|
3724
|
-
|
|
3822
|
+
_mj__CreatedAt: Date;
|
|
3823
|
+
_mj__UpdatedAt: Date;
|
|
3725
3824
|
VectorIndexesArray: mj_core_schema_server_object_types.VectorIndex_[];
|
|
3726
3825
|
EntityDocumentsArray: mj_core_schema_server_object_types.EntityDocument_[];
|
|
3727
3826
|
}
|
|
@@ -3755,8 +3854,8 @@ export declare class VectorDatabaseResolver extends ResolverBase {
|
|
|
3755
3854
|
VectorDatabase(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorDatabase_ | null>;
|
|
3756
3855
|
VectorIndexesArray(vectordatabase_: VectorDatabase_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3757
3856
|
EntityDocumentsArray(vectordatabase_: VectorDatabase_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3758
|
-
CreateVectorDatabase(input: CreateVectorDatabaseInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3759
|
-
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3857
|
+
CreateVectorDatabase(input: CreateVectorDatabaseInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3858
|
+
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3760
3859
|
}
|
|
3761
3860
|
export declare class EntityRecordDocument_ {
|
|
3762
3861
|
ID: number;
|
|
@@ -3767,9 +3866,9 @@ export declare class EntityRecordDocument_ {
|
|
|
3767
3866
|
VectorID?: string;
|
|
3768
3867
|
VectorJSON?: string;
|
|
3769
3868
|
EntityRecordUpdatedAt: Date;
|
|
3770
|
-
CreatedAt: Date;
|
|
3771
|
-
UpdatedAt: Date;
|
|
3772
3869
|
EntityDocumentID: number;
|
|
3870
|
+
_mj__CreatedAt: Date;
|
|
3871
|
+
_mj__UpdatedAt: Date;
|
|
3773
3872
|
}
|
|
3774
3873
|
export declare class CreateEntityRecordDocumentInput {
|
|
3775
3874
|
EntityID: number;
|
|
@@ -3807,8 +3906,8 @@ export declare class EntityRecordDocumentResolver extends ResolverBase {
|
|
|
3807
3906
|
RunEntityRecordDocumentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3808
3907
|
RunEntityRecordDocumentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3809
3908
|
EntityRecordDocument(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRecordDocument_ | null>;
|
|
3810
|
-
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3811
|
-
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3909
|
+
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3910
|
+
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3812
3911
|
}
|
|
3813
3912
|
export declare class EntityDocument_ {
|
|
3814
3913
|
ID: number;
|
|
@@ -3821,8 +3920,8 @@ export declare class EntityDocument_ {
|
|
|
3821
3920
|
AIModelID: number;
|
|
3822
3921
|
PotentialMatchThreshold: number;
|
|
3823
3922
|
AbsoluteMatchThreshold: number;
|
|
3824
|
-
|
|
3825
|
-
|
|
3923
|
+
_mj__CreatedAt: Date;
|
|
3924
|
+
_mj__UpdatedAt: Date;
|
|
3826
3925
|
Entity: string;
|
|
3827
3926
|
Type: string;
|
|
3828
3927
|
EntityDocumentRunsArray: mj_core_schema_server_object_types.EntityDocumentRun_[];
|
|
@@ -3868,8 +3967,8 @@ export declare class EntityDocumentResolver extends ResolverBase {
|
|
|
3868
3967
|
EntityDocument(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocument_ | null>;
|
|
3869
3968
|
EntityDocumentRunsArray(entitydocument_: EntityDocument_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3870
3969
|
EntityDocumentSettingsArray(entitydocument_: EntityDocument_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3871
|
-
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3872
|
-
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3970
|
+
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3971
|
+
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3873
3972
|
}
|
|
3874
3973
|
export declare class DataContextItem_ {
|
|
3875
3974
|
ID: number;
|
|
@@ -3882,8 +3981,8 @@ export declare class DataContextItem_ {
|
|
|
3882
3981
|
SQL?: string;
|
|
3883
3982
|
DataJSON?: string;
|
|
3884
3983
|
LastRefreshedAt?: Date;
|
|
3885
|
-
|
|
3886
|
-
|
|
3984
|
+
_mj__CreatedAt: Date;
|
|
3985
|
+
_mj__UpdatedAt: Date;
|
|
3887
3986
|
DataContext: string;
|
|
3888
3987
|
View?: string;
|
|
3889
3988
|
Query?: string;
|
|
@@ -3927,8 +4026,8 @@ export declare class DataContextItemResolver extends ResolverBase {
|
|
|
3927
4026
|
RunDataContextItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3928
4027
|
RunDataContextItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3929
4028
|
DataContextItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContextItem_ | null>;
|
|
3930
|
-
CreateDataContextItem(input: CreateDataContextItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3931
|
-
UpdateDataContextItem(input: UpdateDataContextItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4029
|
+
CreateDataContextItem(input: CreateDataContextItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4030
|
+
UpdateDataContextItem(input: UpdateDataContextItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3932
4031
|
DeleteDataContextItem(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3933
4032
|
}
|
|
3934
4033
|
export declare class DataContext_ {
|
|
@@ -3937,8 +4036,8 @@ export declare class DataContext_ {
|
|
|
3937
4036
|
UserID: number;
|
|
3938
4037
|
Description?: string;
|
|
3939
4038
|
LastRefreshedAt?: Date;
|
|
3940
|
-
|
|
3941
|
-
|
|
4039
|
+
_mj__CreatedAt: Date;
|
|
4040
|
+
_mj__UpdatedAt: Date;
|
|
3942
4041
|
User: string;
|
|
3943
4042
|
DataContextItemsArray: mj_core_schema_server_object_types.DataContextItem_[];
|
|
3944
4043
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
@@ -3973,8 +4072,8 @@ export declare class DataContextResolver extends ResolverBase {
|
|
|
3973
4072
|
DataContext(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContext_ | null>;
|
|
3974
4073
|
DataContextItemsArray(datacontext_: DataContext_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3975
4074
|
ReportsArray(datacontext_: DataContext_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3976
|
-
CreateDataContext(input: CreateDataContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
3977
|
-
UpdateDataContext(input: UpdateDataContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4075
|
+
CreateDataContext(input: CreateDataContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4076
|
+
UpdateDataContext(input: UpdateDataContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3978
4077
|
DeleteDataContext(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3979
4078
|
}
|
|
3980
4079
|
export declare class UserViewCategory_ {
|
|
@@ -3982,10 +4081,10 @@ export declare class UserViewCategory_ {
|
|
|
3982
4081
|
Name: string;
|
|
3983
4082
|
Description?: string;
|
|
3984
4083
|
ParentID?: number;
|
|
3985
|
-
CreatedAt: Date;
|
|
3986
|
-
UpdatedAt: Date;
|
|
3987
4084
|
EntityID: number;
|
|
3988
4085
|
UserID: number;
|
|
4086
|
+
_mj__CreatedAt: Date;
|
|
4087
|
+
_mj__UpdatedAt: Date;
|
|
3989
4088
|
Parent?: string;
|
|
3990
4089
|
User: string;
|
|
3991
4090
|
UserViewCategoriesArray: mj_core_schema_server_object_types.UserViewCategory_[];
|
|
@@ -4023,8 +4122,8 @@ export declare class UserViewCategoryResolver extends ResolverBase {
|
|
|
4023
4122
|
UserViewCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewCategory_ | null>;
|
|
4024
4123
|
UserViewCategoriesArray(userviewcategory_: UserViewCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4025
4124
|
UserViewsArray(userviewcategory_: UserViewCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4026
|
-
CreateUserViewCategory(input: CreateUserViewCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4027
|
-
UpdateUserViewCategory(input: UpdateUserViewCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4125
|
+
CreateUserViewCategory(input: CreateUserViewCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4126
|
+
UpdateUserViewCategory(input: UpdateUserViewCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4028
4127
|
DeleteUserViewCategory(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4029
4128
|
}
|
|
4030
4129
|
export declare class DashboardCategory_ {
|
|
@@ -4032,9 +4131,9 @@ export declare class DashboardCategory_ {
|
|
|
4032
4131
|
Name: string;
|
|
4033
4132
|
Description?: string;
|
|
4034
4133
|
ParentID?: number;
|
|
4035
|
-
CreatedAt: Date;
|
|
4036
|
-
UpdatedAt: Date;
|
|
4037
4134
|
UserID: number;
|
|
4135
|
+
_mj__CreatedAt: Date;
|
|
4136
|
+
_mj__UpdatedAt: Date;
|
|
4038
4137
|
Parent?: string;
|
|
4039
4138
|
User: string;
|
|
4040
4139
|
DashboardsArray: mj_core_schema_server_object_types.Dashboard_[];
|
|
@@ -4070,8 +4169,8 @@ export declare class DashboardCategoryResolver extends ResolverBase {
|
|
|
4070
4169
|
DashboardCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DashboardCategory_ | null>;
|
|
4071
4170
|
DashboardsArray(dashboardcategory_: DashboardCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4072
4171
|
DashboardCategoriesArray(dashboardcategory_: DashboardCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4073
|
-
CreateDashboardCategory(input: CreateDashboardCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4074
|
-
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4172
|
+
CreateDashboardCategory(input: CreateDashboardCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4173
|
+
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4075
4174
|
DeleteDashboardCategory(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4076
4175
|
}
|
|
4077
4176
|
export declare class ReportCategory_ {
|
|
@@ -4079,9 +4178,9 @@ export declare class ReportCategory_ {
|
|
|
4079
4178
|
Name: string;
|
|
4080
4179
|
Description?: string;
|
|
4081
4180
|
ParentID?: number;
|
|
4082
|
-
CreatedAt: Date;
|
|
4083
|
-
UpdatedAt: Date;
|
|
4084
4181
|
UserID: number;
|
|
4182
|
+
_mj__CreatedAt: Date;
|
|
4183
|
+
_mj__UpdatedAt: Date;
|
|
4085
4184
|
Parent?: string;
|
|
4086
4185
|
User: string;
|
|
4087
4186
|
ReportCategoriesArray: mj_core_schema_server_object_types.ReportCategory_[];
|
|
@@ -4117,8 +4216,8 @@ export declare class ReportCategoryResolver extends ResolverBase {
|
|
|
4117
4216
|
ReportCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportCategory_ | null>;
|
|
4118
4217
|
ReportCategoriesArray(reportcategory_: ReportCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4119
4218
|
ReportsArray(reportcategory_: ReportCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4120
|
-
CreateReportCategory(input: CreateReportCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4121
|
-
UpdateReportCategory(input: UpdateReportCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4219
|
+
CreateReportCategory(input: CreateReportCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4220
|
+
UpdateReportCategory(input: UpdateReportCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4122
4221
|
DeleteReportCategory(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4123
4222
|
}
|
|
4124
4223
|
export declare class FileStorageProvider_ {
|
|
@@ -4129,8 +4228,8 @@ export declare class FileStorageProvider_ {
|
|
|
4129
4228
|
ClientDriverKey: string;
|
|
4130
4229
|
Priority: number;
|
|
4131
4230
|
IsActive: boolean;
|
|
4132
|
-
|
|
4133
|
-
|
|
4231
|
+
_mj__CreatedAt: Date;
|
|
4232
|
+
_mj__UpdatedAt: Date;
|
|
4134
4233
|
FilesArray: mj_core_schema_server_object_types.File_[];
|
|
4135
4234
|
}
|
|
4136
4235
|
export declare class CreateFileStorageProviderInput {
|
|
@@ -4166,8 +4265,8 @@ export declare class FileStorageProviderResolver extends ResolverBase {
|
|
|
4166
4265
|
RunFileStorageProviderDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4167
4266
|
FileStorageProvider(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileStorageProvider_ | null>;
|
|
4168
4267
|
FilesArray(filestorageprovider_: FileStorageProvider_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4169
|
-
CreateFileStorageProvider(input: CreateFileStorageProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4170
|
-
UpdateFileStorageProvider(input: UpdateFileStorageProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4268
|
+
CreateFileStorageProvider(input: CreateFileStorageProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4269
|
+
UpdateFileStorageProvider(input: UpdateFileStorageProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4171
4270
|
}
|
|
4172
4271
|
export declare class File_ {
|
|
4173
4272
|
ID: number;
|
|
@@ -4178,8 +4277,8 @@ export declare class File_ {
|
|
|
4178
4277
|
ProviderKey?: string;
|
|
4179
4278
|
CategoryID?: number;
|
|
4180
4279
|
Status: string;
|
|
4181
|
-
|
|
4182
|
-
|
|
4280
|
+
_mj__CreatedAt: Date;
|
|
4281
|
+
_mj__UpdatedAt: Date;
|
|
4183
4282
|
Provider: string;
|
|
4184
4283
|
Category?: string;
|
|
4185
4284
|
FileEntityRecordLinksArray: mj_core_schema_server_object_types.FileEntityRecordLink_[];
|
|
@@ -4219,8 +4318,8 @@ export declare class FileResolver extends ResolverBase {
|
|
|
4219
4318
|
RunFileDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4220
4319
|
File(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<File_ | null>;
|
|
4221
4320
|
FileEntityRecordLinksArray(file_: File_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4222
|
-
CreateFile(input: CreateFileInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4223
|
-
UpdateFile(input: UpdateFileInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4321
|
+
CreateFile(input: CreateFileInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4322
|
+
UpdateFile(input: UpdateFileInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4224
4323
|
DeleteFile(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4225
4324
|
}
|
|
4226
4325
|
export declare class FileCategory_ {
|
|
@@ -4228,8 +4327,8 @@ export declare class FileCategory_ {
|
|
|
4228
4327
|
Name: string;
|
|
4229
4328
|
Description?: string;
|
|
4230
4329
|
ParentID?: number;
|
|
4231
|
-
|
|
4232
|
-
|
|
4330
|
+
_mj__CreatedAt: Date;
|
|
4331
|
+
_mj__UpdatedAt: Date;
|
|
4233
4332
|
Parent?: string;
|
|
4234
4333
|
FilesArray: mj_core_schema_server_object_types.File_[];
|
|
4235
4334
|
FileCategoriesArray: mj_core_schema_server_object_types.FileCategory_[];
|
|
@@ -4262,8 +4361,8 @@ export declare class FileCategoryResolver extends ResolverBase {
|
|
|
4262
4361
|
FileCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileCategory_ | null>;
|
|
4263
4362
|
FilesArray(filecategory_: FileCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4264
4363
|
FileCategoriesArray(filecategory_: FileCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4265
|
-
CreateFileCategory(input: CreateFileCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4266
|
-
UpdateFileCategory(input: UpdateFileCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4364
|
+
CreateFileCategory(input: CreateFileCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4365
|
+
UpdateFileCategory(input: UpdateFileCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4267
4366
|
DeleteFileCategory(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4268
4367
|
}
|
|
4269
4368
|
export declare class FileEntityRecordLink_ {
|
|
@@ -4271,8 +4370,8 @@ export declare class FileEntityRecordLink_ {
|
|
|
4271
4370
|
FileID: number;
|
|
4272
4371
|
EntityID: number;
|
|
4273
4372
|
RecordID: string;
|
|
4274
|
-
|
|
4275
|
-
|
|
4373
|
+
_mj__CreatedAt: Date;
|
|
4374
|
+
_mj__UpdatedAt: Date;
|
|
4276
4375
|
File: string;
|
|
4277
4376
|
Entity: string;
|
|
4278
4377
|
}
|
|
@@ -4302,8 +4401,8 @@ export declare class FileEntityRecordLinkResolver extends ResolverBase {
|
|
|
4302
4401
|
RunFileEntityRecordLinkViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4303
4402
|
RunFileEntityRecordLinkDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4304
4403
|
FileEntityRecordLink(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileEntityRecordLink_ | null>;
|
|
4305
|
-
CreateFileEntityRecordLink(input: CreateFileEntityRecordLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4306
|
-
UpdateFileEntityRecordLink(input: UpdateFileEntityRecordLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4404
|
+
CreateFileEntityRecordLink(input: CreateFileEntityRecordLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4405
|
+
UpdateFileEntityRecordLink(input: UpdateFileEntityRecordLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4307
4406
|
}
|
|
4308
4407
|
export declare class VersionInstallation_ {
|
|
4309
4408
|
ID: number;
|
|
@@ -4315,8 +4414,8 @@ export declare class VersionInstallation_ {
|
|
|
4315
4414
|
Status: string;
|
|
4316
4415
|
InstallLog?: string;
|
|
4317
4416
|
Comments?: string;
|
|
4318
|
-
|
|
4319
|
-
|
|
4417
|
+
_mj__CreatedAt: Date;
|
|
4418
|
+
_mj__UpdatedAt: Date;
|
|
4320
4419
|
CompleteVersion?: string;
|
|
4321
4420
|
}
|
|
4322
4421
|
export declare class CreateVersionInstallationInput {
|
|
@@ -4355,8 +4454,8 @@ export declare class VersionInstallationResolver extends ResolverBase {
|
|
|
4355
4454
|
RunVersionInstallationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4356
4455
|
RunVersionInstallationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4357
4456
|
VersionInstallation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VersionInstallation_ | null>;
|
|
4358
|
-
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4359
|
-
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4457
|
+
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4458
|
+
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4360
4459
|
}
|
|
4361
4460
|
export declare class DuplicateRunDetailMatch_ {
|
|
4362
4461
|
ID: number;
|
|
@@ -4370,8 +4469,8 @@ export declare class DuplicateRunDetailMatch_ {
|
|
|
4370
4469
|
MergeStatus: string;
|
|
4371
4470
|
MergedAt: Date;
|
|
4372
4471
|
RecordMergeLogID?: number;
|
|
4373
|
-
|
|
4374
|
-
|
|
4472
|
+
_mj__CreatedAt: Date;
|
|
4473
|
+
_mj__UpdatedAt: Date;
|
|
4375
4474
|
}
|
|
4376
4475
|
export declare class CreateDuplicateRunDetailMatchInput {
|
|
4377
4476
|
DuplicateRunDetailID: number;
|
|
@@ -4413,8 +4512,8 @@ export declare class DuplicateRunDetailMatchResolver extends ResolverBase {
|
|
|
4413
4512
|
RunDuplicateRunDetailMatchViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4414
4513
|
RunDuplicateRunDetailMatchDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4415
4514
|
DuplicateRunDetailMatch(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetailMatch_ | null>;
|
|
4416
|
-
CreateDuplicateRunDetailMatch(input: CreateDuplicateRunDetailMatchInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4417
|
-
UpdateDuplicateRunDetailMatch(input: UpdateDuplicateRunDetailMatchInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4515
|
+
CreateDuplicateRunDetailMatch(input: CreateDuplicateRunDetailMatchInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4516
|
+
UpdateDuplicateRunDetailMatch(input: UpdateDuplicateRunDetailMatchInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4418
4517
|
}
|
|
4419
4518
|
export declare class EntityDocumentSetting_ {
|
|
4420
4519
|
ID: number;
|
|
@@ -4422,8 +4521,8 @@ export declare class EntityDocumentSetting_ {
|
|
|
4422
4521
|
Name: string;
|
|
4423
4522
|
Value: string;
|
|
4424
4523
|
Comments?: string;
|
|
4425
|
-
|
|
4426
|
-
|
|
4524
|
+
_mj__CreatedAt: Date;
|
|
4525
|
+
_mj__UpdatedAt: Date;
|
|
4427
4526
|
EntityDocument: string;
|
|
4428
4527
|
}
|
|
4429
4528
|
export declare class CreateEntityDocumentSettingInput {
|
|
@@ -4454,8 +4553,8 @@ export declare class EntityDocumentSettingResolver extends ResolverBase {
|
|
|
4454
4553
|
RunEntityDocumentSettingViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4455
4554
|
RunEntityDocumentSettingDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4456
4555
|
EntityDocumentSetting(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentSetting_ | null>;
|
|
4457
|
-
CreateEntityDocumentSetting(input: CreateEntityDocumentSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4458
|
-
UpdateEntityDocumentSetting(input: UpdateEntityDocumentSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4556
|
+
CreateEntityDocumentSetting(input: CreateEntityDocumentSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4557
|
+
UpdateEntityDocumentSetting(input: UpdateEntityDocumentSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4459
4558
|
}
|
|
4460
4559
|
export declare class EntitySetting_ {
|
|
4461
4560
|
ID: number;
|
|
@@ -4463,8 +4562,8 @@ export declare class EntitySetting_ {
|
|
|
4463
4562
|
Name: string;
|
|
4464
4563
|
Value: string;
|
|
4465
4564
|
Comments?: string;
|
|
4466
|
-
|
|
4467
|
-
|
|
4565
|
+
_mj__CreatedAt: Date;
|
|
4566
|
+
_mj__UpdatedAt: Date;
|
|
4468
4567
|
Entity: string;
|
|
4469
4568
|
}
|
|
4470
4569
|
export declare class CreateEntitySettingInput {
|
|
@@ -4495,8 +4594,8 @@ export declare class EntitySettingResolver extends ResolverBase {
|
|
|
4495
4594
|
RunEntitySettingViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4496
4595
|
RunEntitySettingDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4497
4596
|
EntitySetting(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntitySetting_ | null>;
|
|
4498
|
-
CreateEntitySetting(input: CreateEntitySettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4499
|
-
UpdateEntitySetting(input: UpdateEntitySettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4597
|
+
CreateEntitySetting(input: CreateEntitySettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4598
|
+
UpdateEntitySetting(input: UpdateEntitySettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4500
4599
|
}
|
|
4501
4600
|
export declare class DuplicateRun_ {
|
|
4502
4601
|
ID: number;
|
|
@@ -4510,8 +4609,8 @@ export declare class DuplicateRun_ {
|
|
|
4510
4609
|
ProcessingStatus: string;
|
|
4511
4610
|
ProcessingErrorMessage?: string;
|
|
4512
4611
|
SourceListID: number;
|
|
4513
|
-
|
|
4514
|
-
|
|
4612
|
+
_mj__CreatedAt: Date;
|
|
4613
|
+
_mj__UpdatedAt: Date;
|
|
4515
4614
|
Entity: string;
|
|
4516
4615
|
StartedByUser: string;
|
|
4517
4616
|
ApprovedByUser?: string;
|
|
@@ -4559,8 +4658,8 @@ export declare class DuplicateRunResolver extends ResolverBase {
|
|
|
4559
4658
|
RunDuplicateRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4560
4659
|
DuplicateRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRun_ | null>;
|
|
4561
4660
|
DuplicateRunDetailsArray(duplicaterun_: DuplicateRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4562
|
-
CreateDuplicateRun(input: CreateDuplicateRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4563
|
-
UpdateDuplicateRun(input: UpdateDuplicateRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4661
|
+
CreateDuplicateRun(input: CreateDuplicateRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4662
|
+
UpdateDuplicateRun(input: UpdateDuplicateRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4564
4663
|
}
|
|
4565
4664
|
export declare class DuplicateRunDetail_ {
|
|
4566
4665
|
ID: number;
|
|
@@ -4571,8 +4670,8 @@ export declare class DuplicateRunDetail_ {
|
|
|
4571
4670
|
MatchErrorMessage?: string;
|
|
4572
4671
|
MergeStatus: string;
|
|
4573
4672
|
MergeErrorMessage?: string;
|
|
4574
|
-
|
|
4575
|
-
|
|
4673
|
+
_mj__CreatedAt: Date;
|
|
4674
|
+
_mj__UpdatedAt: Date;
|
|
4576
4675
|
DuplicateRunDetailMatchesArray: mj_core_schema_server_object_types.DuplicateRunDetailMatch_[];
|
|
4577
4676
|
}
|
|
4578
4677
|
export declare class CreateDuplicateRunDetailInput {
|
|
@@ -4610,8 +4709,8 @@ export declare class DuplicateRunDetailResolver extends ResolverBase {
|
|
|
4610
4709
|
RunDuplicateRunDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4611
4710
|
DuplicateRunDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetail_ | null>;
|
|
4612
4711
|
DuplicateRunDetailMatchesArray(duplicaterundetail_: DuplicateRunDetail_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4613
|
-
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4614
|
-
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4712
|
+
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4713
|
+
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4615
4714
|
}
|
|
4616
4715
|
export declare class EntityBehavior_ {
|
|
4617
4716
|
ID: number;
|
|
@@ -4622,8 +4721,8 @@ export declare class EntityBehavior_ {
|
|
|
4622
4721
|
Code?: string;
|
|
4623
4722
|
CodeExplanation?: string;
|
|
4624
4723
|
CodeGenerated: boolean;
|
|
4625
|
-
|
|
4626
|
-
|
|
4724
|
+
_mj__CreatedAt: Date;
|
|
4725
|
+
_mj__UpdatedAt: Date;
|
|
4627
4726
|
Entity: string;
|
|
4628
4727
|
}
|
|
4629
4728
|
export declare class CreateEntityBehaviorInput {
|
|
@@ -4660,16 +4759,16 @@ export declare class EntityBehaviorResolver extends ResolverBase {
|
|
|
4660
4759
|
RunEntityBehaviorViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4661
4760
|
RunEntityBehaviorDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4662
4761
|
EntityBehavior(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityBehavior_ | null>;
|
|
4663
|
-
CreateEntityBehavior(input: CreateEntityBehaviorInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4664
|
-
UpdateEntityBehavior(input: UpdateEntityBehaviorInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4762
|
+
CreateEntityBehavior(input: CreateEntityBehaviorInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4763
|
+
UpdateEntityBehavior(input: UpdateEntityBehaviorInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4665
4764
|
DeleteEntityBehavior(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4666
4765
|
}
|
|
4667
4766
|
export declare class EntityBehaviorType_ {
|
|
4668
4767
|
ID: number;
|
|
4669
4768
|
Name: string;
|
|
4670
4769
|
Description?: string;
|
|
4671
|
-
|
|
4672
|
-
|
|
4770
|
+
_mj__CreatedAt: Date;
|
|
4771
|
+
_mj__UpdatedAt: Date;
|
|
4673
4772
|
EntityBehaviorsArray: mj_core_schema_server_object_types.EntityBehavior_[];
|
|
4674
4773
|
}
|
|
4675
4774
|
export declare class CreateEntityBehaviorTypeInput {
|
|
@@ -4697,8 +4796,8 @@ export declare class EntityBehaviorTypeResolver extends ResolverBase {
|
|
|
4697
4796
|
RunEntityBehaviorTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4698
4797
|
EntityBehaviorType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityBehaviorType_ | null>;
|
|
4699
4798
|
EntityBehaviorsArray(entitybehaviortype_: EntityBehaviorType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4700
|
-
CreateEntityBehaviorType(input: CreateEntityBehaviorTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4701
|
-
UpdateEntityBehaviorType(input: UpdateEntityBehaviorTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4799
|
+
CreateEntityBehaviorType(input: CreateEntityBehaviorTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4800
|
+
UpdateEntityBehaviorType(input: UpdateEntityBehaviorTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4702
4801
|
DeleteEntityBehaviorType(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4703
4802
|
}
|
|
4704
4803
|
export declare class ApplicationSetting_ {
|
|
@@ -4707,8 +4806,8 @@ export declare class ApplicationSetting_ {
|
|
|
4707
4806
|
Name: string;
|
|
4708
4807
|
Value: string;
|
|
4709
4808
|
Comments?: string;
|
|
4710
|
-
|
|
4711
|
-
|
|
4809
|
+
_mj__CreatedAt: Date;
|
|
4810
|
+
_mj__UpdatedAt: Date;
|
|
4712
4811
|
}
|
|
4713
4812
|
export declare class CreateApplicationSettingInput {
|
|
4714
4813
|
ApplicationName: string;
|
|
@@ -4738,8 +4837,8 @@ export declare class ApplicationSettingResolver extends ResolverBase {
|
|
|
4738
4837
|
RunApplicationSettingViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4739
4838
|
RunApplicationSettingDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4740
4839
|
ApplicationSetting(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ApplicationSetting_ | null>;
|
|
4741
|
-
CreateApplicationSetting(input: CreateApplicationSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4742
|
-
UpdateApplicationSetting(input: UpdateApplicationSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4840
|
+
CreateApplicationSetting(input: CreateApplicationSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4841
|
+
UpdateApplicationSetting(input: UpdateApplicationSettingInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4743
4842
|
DeleteApplicationSetting(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4744
4843
|
}
|
|
4745
4844
|
export declare class ActionCategory_ {
|
|
@@ -4748,8 +4847,8 @@ export declare class ActionCategory_ {
|
|
|
4748
4847
|
Description?: string;
|
|
4749
4848
|
ParentID?: number;
|
|
4750
4849
|
Status: string;
|
|
4751
|
-
|
|
4752
|
-
|
|
4850
|
+
_mj__CreatedAt: Date;
|
|
4851
|
+
_mj__UpdatedAt: Date;
|
|
4753
4852
|
Parent?: string;
|
|
4754
4853
|
ActionCategoriesArray: mj_core_schema_server_object_types.ActionCategory_[];
|
|
4755
4854
|
ActionsArray: mj_core_schema_server_object_types.Action_[];
|
|
@@ -4784,8 +4883,8 @@ export declare class ActionCategoryResolver extends ResolverBase {
|
|
|
4784
4883
|
ActionCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionCategory_ | null>;
|
|
4785
4884
|
ActionCategoriesArray(actioncategory_: ActionCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4786
4885
|
ActionsArray(actioncategory_: ActionCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4787
|
-
CreateActionCategory(input: CreateActionCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4788
|
-
UpdateActionCategory(input: UpdateActionCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4886
|
+
CreateActionCategory(input: CreateActionCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4887
|
+
UpdateActionCategory(input: UpdateActionCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4789
4888
|
DeleteActionCategory(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4790
4889
|
}
|
|
4791
4890
|
export declare class EntityAction_ {
|
|
@@ -4793,12 +4892,13 @@ export declare class EntityAction_ {
|
|
|
4793
4892
|
EntityID: number;
|
|
4794
4893
|
ActionID: number;
|
|
4795
4894
|
Status: string;
|
|
4796
|
-
|
|
4797
|
-
|
|
4895
|
+
_mj__CreatedAt: Date;
|
|
4896
|
+
_mj__UpdatedAt: Date;
|
|
4798
4897
|
Entity: string;
|
|
4799
4898
|
Action: string;
|
|
4800
4899
|
EntityActionInvocationsArray: mj_core_schema_server_object_types.EntityActionInvocation_[];
|
|
4801
4900
|
EntityActionFiltersArray: mj_core_schema_server_object_types.EntityActionFilter_[];
|
|
4901
|
+
EntityActionParamsArray: mj_core_schema_server_object_types.EntityActionParam_[];
|
|
4802
4902
|
}
|
|
4803
4903
|
export declare class CreateEntityActionInput {
|
|
4804
4904
|
EntityID: number;
|
|
@@ -4828,8 +4928,9 @@ export declare class EntityActionResolver extends ResolverBase {
|
|
|
4828
4928
|
EntityAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAction_ | null>;
|
|
4829
4929
|
EntityActionInvocationsArray(entityaction_: EntityAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4830
4930
|
EntityActionFiltersArray(entityaction_: EntityAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4831
|
-
|
|
4832
|
-
|
|
4931
|
+
EntityActionParamsArray(entityaction_: EntityAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4932
|
+
CreateEntityAction(input: CreateEntityActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4933
|
+
UpdateEntityAction(input: UpdateEntityActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4833
4934
|
DeleteEntityAction(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4834
4935
|
}
|
|
4835
4936
|
export declare class EntityActionInvocation_ {
|
|
@@ -4837,8 +4938,8 @@ export declare class EntityActionInvocation_ {
|
|
|
4837
4938
|
EntityActionID: number;
|
|
4838
4939
|
InvocationTypeID: number;
|
|
4839
4940
|
Status: string;
|
|
4840
|
-
|
|
4841
|
-
|
|
4941
|
+
_mj__CreatedAt: Date;
|
|
4942
|
+
_mj__UpdatedAt: Date;
|
|
4842
4943
|
InvocationType: string;
|
|
4843
4944
|
}
|
|
4844
4945
|
export declare class CreateEntityActionInvocationInput {
|
|
@@ -4867,8 +4968,8 @@ export declare class EntityActionInvocationResolver extends ResolverBase {
|
|
|
4867
4968
|
RunEntityActionInvocationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4868
4969
|
RunEntityActionInvocationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4869
4970
|
EntityActionInvocation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionInvocation_ | null>;
|
|
4870
|
-
CreateEntityActionInvocation(input: CreateEntityActionInvocationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4871
|
-
UpdateEntityActionInvocation(input: UpdateEntityActionInvocationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4971
|
+
CreateEntityActionInvocation(input: CreateEntityActionInvocationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4972
|
+
UpdateEntityActionInvocation(input: UpdateEntityActionInvocationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4872
4973
|
DeleteEntityActionInvocation(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4873
4974
|
}
|
|
4874
4975
|
export declare class ActionAuthorization_ {
|
|
@@ -4876,8 +4977,8 @@ export declare class ActionAuthorization_ {
|
|
|
4876
4977
|
ActionID: number;
|
|
4877
4978
|
AuthorizationName: string;
|
|
4878
4979
|
Comments?: string;
|
|
4879
|
-
|
|
4880
|
-
|
|
4980
|
+
_mj__CreatedAt: Date;
|
|
4981
|
+
_mj__UpdatedAt: Date;
|
|
4881
4982
|
Action: string;
|
|
4882
4983
|
}
|
|
4883
4984
|
export declare class CreateActionAuthorizationInput {
|
|
@@ -4906,8 +5007,8 @@ export declare class ActionAuthorizationResolver extends ResolverBase {
|
|
|
4906
5007
|
RunActionAuthorizationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4907
5008
|
RunActionAuthorizationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4908
5009
|
ActionAuthorization(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionAuthorization_ | null>;
|
|
4909
|
-
CreateActionAuthorization(input: CreateActionAuthorizationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4910
|
-
UpdateActionAuthorization(input: UpdateActionAuthorizationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5010
|
+
CreateActionAuthorization(input: CreateActionAuthorizationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5011
|
+
UpdateActionAuthorization(input: UpdateActionAuthorizationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4911
5012
|
DeleteActionAuthorization(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4912
5013
|
}
|
|
4913
5014
|
export declare class EntityActionInvocationType_ {
|
|
@@ -4915,8 +5016,8 @@ export declare class EntityActionInvocationType_ {
|
|
|
4915
5016
|
Name: string;
|
|
4916
5017
|
Description?: string;
|
|
4917
5018
|
DisplaySequence: number;
|
|
4918
|
-
|
|
4919
|
-
|
|
5019
|
+
_mj__CreatedAt: Date;
|
|
5020
|
+
_mj__UpdatedAt: Date;
|
|
4920
5021
|
EntityActionInvocationsArray: mj_core_schema_server_object_types.EntityActionInvocation_[];
|
|
4921
5022
|
}
|
|
4922
5023
|
export declare class CreateEntityActionInvocationTypeInput {
|
|
@@ -4946,15 +5047,17 @@ export declare class EntityActionInvocationTypeResolver extends ResolverBase {
|
|
|
4946
5047
|
RunEntityActionInvocationTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4947
5048
|
EntityActionInvocationType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionInvocationType_ | null>;
|
|
4948
5049
|
EntityActionInvocationsArray(entityactioninvocationtype_: EntityActionInvocationType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4949
|
-
CreateEntityActionInvocationType(input: CreateEntityActionInvocationTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
4950
|
-
UpdateEntityActionInvocationType(input: UpdateEntityActionInvocationTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5050
|
+
CreateEntityActionInvocationType(input: CreateEntityActionInvocationTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5051
|
+
UpdateEntityActionInvocationType(input: UpdateEntityActionInvocationTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4951
5052
|
DeleteEntityActionInvocationType(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4952
5053
|
}
|
|
4953
5054
|
export declare class Action_ {
|
|
4954
5055
|
ID: number;
|
|
4955
5056
|
CategoryID?: number;
|
|
4956
5057
|
Name: string;
|
|
4957
|
-
|
|
5058
|
+
Description?: string;
|
|
5059
|
+
Type: string;
|
|
5060
|
+
UserPrompt?: string;
|
|
4958
5061
|
UserComments?: string;
|
|
4959
5062
|
Code?: string;
|
|
4960
5063
|
CodeComments?: string;
|
|
@@ -4962,25 +5065,28 @@ export declare class Action_ {
|
|
|
4962
5065
|
CodeApprovalComments?: string;
|
|
4963
5066
|
CodeApprovedByUserID?: number;
|
|
4964
5067
|
CodeApprovedAt?: Date;
|
|
5068
|
+
CodeLocked: boolean;
|
|
4965
5069
|
ForceCodeGeneration: boolean;
|
|
4966
5070
|
RetentionPeriod?: number;
|
|
4967
5071
|
Status: string;
|
|
4968
|
-
|
|
4969
|
-
|
|
5072
|
+
_mj__CreatedAt: Date;
|
|
5073
|
+
_mj__UpdatedAt: Date;
|
|
4970
5074
|
Category?: string;
|
|
4971
5075
|
CodeApprovedByUser?: string;
|
|
4972
|
-
|
|
5076
|
+
ActionParamsArray: mj_core_schema_server_object_types.ActionParam_[];
|
|
5077
|
+
ActionLibrariesArray: mj_core_schema_server_object_types.ActionLibrary_[];
|
|
4973
5078
|
ActionResultCodesArray: mj_core_schema_server_object_types.ActionResultCode_[];
|
|
4974
5079
|
ActionContextsArray: mj_core_schema_server_object_types.ActionContext_[];
|
|
4975
5080
|
EntityActionsArray: mj_core_schema_server_object_types.EntityAction_[];
|
|
4976
5081
|
ActionExecutionLogsArray: mj_core_schema_server_object_types.ActionExecutionLog_[];
|
|
4977
|
-
|
|
4978
|
-
ActionLibrariesArray: mj_core_schema_server_object_types.ActionLibrary_[];
|
|
5082
|
+
ActionAuthorizationsArray: mj_core_schema_server_object_types.ActionAuthorization_[];
|
|
4979
5083
|
}
|
|
4980
5084
|
export declare class CreateActionInput {
|
|
4981
5085
|
CategoryID?: number;
|
|
4982
5086
|
Name: string;
|
|
4983
|
-
|
|
5087
|
+
Description?: string;
|
|
5088
|
+
Type: string;
|
|
5089
|
+
UserPrompt?: string;
|
|
4984
5090
|
UserComments?: string;
|
|
4985
5091
|
Code?: string;
|
|
4986
5092
|
CodeComments?: string;
|
|
@@ -4988,6 +5094,7 @@ export declare class CreateActionInput {
|
|
|
4988
5094
|
CodeApprovalComments?: string;
|
|
4989
5095
|
CodeApprovedByUserID?: number;
|
|
4990
5096
|
CodeApprovedAt?: Date;
|
|
5097
|
+
CodeLocked: boolean;
|
|
4991
5098
|
ForceCodeGeneration: boolean;
|
|
4992
5099
|
RetentionPeriod?: number;
|
|
4993
5100
|
Status: string;
|
|
@@ -4996,7 +5103,9 @@ export declare class UpdateActionInput {
|
|
|
4996
5103
|
ID: number;
|
|
4997
5104
|
CategoryID?: number;
|
|
4998
5105
|
Name: string;
|
|
4999
|
-
|
|
5106
|
+
Description?: string;
|
|
5107
|
+
Type: string;
|
|
5108
|
+
UserPrompt?: string;
|
|
5000
5109
|
UserComments?: string;
|
|
5001
5110
|
Code?: string;
|
|
5002
5111
|
CodeComments?: string;
|
|
@@ -5004,6 +5113,7 @@ export declare class UpdateActionInput {
|
|
|
5004
5113
|
CodeApprovalComments?: string;
|
|
5005
5114
|
CodeApprovedByUserID?: number;
|
|
5006
5115
|
CodeApprovedAt?: Date;
|
|
5116
|
+
CodeLocked: boolean;
|
|
5007
5117
|
ForceCodeGeneration: boolean;
|
|
5008
5118
|
RetentionPeriod?: number;
|
|
5009
5119
|
Status: string;
|
|
@@ -5023,15 +5133,15 @@ export declare class ActionResolver extends ResolverBase {
|
|
|
5023
5133
|
RunActionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5024
5134
|
RunActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5025
5135
|
Action(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Action_ | null>;
|
|
5026
|
-
|
|
5136
|
+
ActionParamsArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5137
|
+
ActionLibrariesArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5027
5138
|
ActionResultCodesArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5028
5139
|
ActionContextsArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5029
5140
|
EntityActionsArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5030
5141
|
ActionExecutionLogsArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
UpdateAction(input: UpdateActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5142
|
+
ActionAuthorizationsArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5143
|
+
CreateAction(input: CreateActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5144
|
+
UpdateAction(input: UpdateActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5035
5145
|
DeleteAction(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5036
5146
|
}
|
|
5037
5147
|
export declare class EntityActionFilter_ {
|
|
@@ -5040,8 +5150,8 @@ export declare class EntityActionFilter_ {
|
|
|
5040
5150
|
ActionFilterID: number;
|
|
5041
5151
|
Sequence: number;
|
|
5042
5152
|
Status: string;
|
|
5043
|
-
|
|
5044
|
-
|
|
5153
|
+
_mj__CreatedAt: Date;
|
|
5154
|
+
_mj__UpdatedAt: Date;
|
|
5045
5155
|
}
|
|
5046
5156
|
export declare class CreateEntityActionFilterInput {
|
|
5047
5157
|
EntityActionID: number;
|
|
@@ -5071,8 +5181,8 @@ export declare class EntityActionFilterResolver extends ResolverBase {
|
|
|
5071
5181
|
RunEntityActionFilterViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5072
5182
|
RunEntityActionFilterDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5073
5183
|
EntityActionFilter(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionFilter_ | null>;
|
|
5074
|
-
CreateEntityActionFilter(input: CreateEntityActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5075
|
-
UpdateEntityActionFilter(input: UpdateEntityActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5184
|
+
CreateEntityActionFilter(input: CreateEntityActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5185
|
+
UpdateEntityActionFilter(input: UpdateEntityActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5076
5186
|
DeleteEntityActionFilter(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5077
5187
|
}
|
|
5078
5188
|
export declare class ActionFilter_ {
|
|
@@ -5081,8 +5191,8 @@ export declare class ActionFilter_ {
|
|
|
5081
5191
|
UserComments?: string;
|
|
5082
5192
|
Code: string;
|
|
5083
5193
|
CodeExplanation?: string;
|
|
5084
|
-
|
|
5085
|
-
|
|
5194
|
+
_mj__CreatedAt: Date;
|
|
5195
|
+
_mj__UpdatedAt: Date;
|
|
5086
5196
|
EntityActionFiltersArray: mj_core_schema_server_object_types.EntityActionFilter_[];
|
|
5087
5197
|
}
|
|
5088
5198
|
export declare class CreateActionFilterInput {
|
|
@@ -5114,16 +5224,16 @@ export declare class ActionFilterResolver extends ResolverBase {
|
|
|
5114
5224
|
RunActionFilterDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5115
5225
|
ActionFilter(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionFilter_ | null>;
|
|
5116
5226
|
EntityActionFiltersArray(actionfilter_: ActionFilter_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5117
|
-
CreateActionFilter(input: CreateActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5118
|
-
UpdateActionFilter(input: UpdateActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5227
|
+
CreateActionFilter(input: CreateActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5228
|
+
UpdateActionFilter(input: UpdateActionFilterInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5119
5229
|
DeleteActionFilter(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5120
5230
|
}
|
|
5121
5231
|
export declare class ActionContextType_ {
|
|
5122
5232
|
ID: number;
|
|
5123
5233
|
Name: string;
|
|
5124
5234
|
Description?: string;
|
|
5125
|
-
|
|
5126
|
-
|
|
5235
|
+
_mj__CreatedAt: Date;
|
|
5236
|
+
_mj__UpdatedAt: Date;
|
|
5127
5237
|
ActionContextsArray: mj_core_schema_server_object_types.ActionContext_[];
|
|
5128
5238
|
}
|
|
5129
5239
|
export declare class CreateActionContextTypeInput {
|
|
@@ -5151,28 +5261,31 @@ export declare class ActionContextTypeResolver extends ResolverBase {
|
|
|
5151
5261
|
RunActionContextTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5152
5262
|
ActionContextType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionContextType_ | null>;
|
|
5153
5263
|
ActionContextsArray(actioncontexttype_: ActionContextType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5154
|
-
CreateActionContextType(input: CreateActionContextTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5155
|
-
UpdateActionContextType(input: UpdateActionContextTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5264
|
+
CreateActionContextType(input: CreateActionContextTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5265
|
+
UpdateActionContextType(input: UpdateActionContextTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5156
5266
|
DeleteActionContextType(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5157
5267
|
}
|
|
5158
5268
|
export declare class ActionResultCode_ {
|
|
5159
5269
|
ID: number;
|
|
5160
5270
|
ActionID: number;
|
|
5161
5271
|
ResultCode: string;
|
|
5272
|
+
IsSuccess: boolean;
|
|
5162
5273
|
Description?: string;
|
|
5163
|
-
|
|
5164
|
-
|
|
5274
|
+
_mj__CreatedAt: Date;
|
|
5275
|
+
_mj__UpdatedAt: Date;
|
|
5165
5276
|
Action: string;
|
|
5166
5277
|
}
|
|
5167
5278
|
export declare class CreateActionResultCodeInput {
|
|
5168
5279
|
ActionID: number;
|
|
5169
5280
|
ResultCode: string;
|
|
5281
|
+
IsSuccess: boolean;
|
|
5170
5282
|
Description?: string;
|
|
5171
5283
|
}
|
|
5172
5284
|
export declare class UpdateActionResultCodeInput {
|
|
5173
5285
|
ID: number;
|
|
5174
5286
|
ActionID: number;
|
|
5175
5287
|
ResultCode: string;
|
|
5288
|
+
IsSuccess: boolean;
|
|
5176
5289
|
Description?: string;
|
|
5177
5290
|
OldValues___?: KeyValuePairInput[];
|
|
5178
5291
|
}
|
|
@@ -5190,8 +5303,8 @@ export declare class ActionResultCodeResolver extends ResolverBase {
|
|
|
5190
5303
|
RunActionResultCodeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5191
5304
|
RunActionResultCodeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5192
5305
|
ActionResultCode(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionResultCode_ | null>;
|
|
5193
|
-
CreateActionResultCode(input: CreateActionResultCodeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5194
|
-
UpdateActionResultCode(input: UpdateActionResultCodeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5306
|
+
CreateActionResultCode(input: CreateActionResultCodeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5307
|
+
UpdateActionResultCode(input: UpdateActionResultCodeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5195
5308
|
DeleteActionResultCode(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5196
5309
|
}
|
|
5197
5310
|
export declare class ActionContext_ {
|
|
@@ -5199,8 +5312,8 @@ export declare class ActionContext_ {
|
|
|
5199
5312
|
ActionID: number;
|
|
5200
5313
|
ContextTypeID: number;
|
|
5201
5314
|
Status: string;
|
|
5202
|
-
|
|
5203
|
-
|
|
5315
|
+
_mj__CreatedAt: Date;
|
|
5316
|
+
_mj__UpdatedAt: Date;
|
|
5204
5317
|
Action: string;
|
|
5205
5318
|
ContextType: string;
|
|
5206
5319
|
}
|
|
@@ -5230,8 +5343,8 @@ export declare class ActionContextResolver extends ResolverBase {
|
|
|
5230
5343
|
RunActionContextViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5231
5344
|
RunActionContextDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5232
5345
|
ActionContext(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionContext_ | null>;
|
|
5233
|
-
CreateActionContext(input: CreateActionContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5234
|
-
UpdateActionContext(input: UpdateActionContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5346
|
+
CreateActionContext(input: CreateActionContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5347
|
+
UpdateActionContext(input: UpdateActionContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5235
5348
|
DeleteActionContext(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5236
5349
|
}
|
|
5237
5350
|
export declare class ActionExecutionLog_ {
|
|
@@ -5243,8 +5356,8 @@ export declare class ActionExecutionLog_ {
|
|
|
5243
5356
|
ResultCode?: string;
|
|
5244
5357
|
UserID: number;
|
|
5245
5358
|
RetentionPeriod?: number;
|
|
5246
|
-
|
|
5247
|
-
|
|
5359
|
+
_mj__CreatedAt: Date;
|
|
5360
|
+
_mj__UpdatedAt: Date;
|
|
5248
5361
|
Action: string;
|
|
5249
5362
|
User: string;
|
|
5250
5363
|
}
|
|
@@ -5282,8 +5395,8 @@ export declare class ActionExecutionLogResolver extends ResolverBase {
|
|
|
5282
5395
|
RunActionExecutionLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5283
5396
|
RunActionExecutionLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5284
5397
|
ActionExecutionLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionExecutionLog_ | null>;
|
|
5285
|
-
CreateActionExecutionLog(input: CreateActionExecutionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5286
|
-
UpdateActionExecutionLog(input: UpdateActionExecutionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5398
|
+
CreateActionExecutionLog(input: CreateActionExecutionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5399
|
+
UpdateActionExecutionLog(input: UpdateActionExecutionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5287
5400
|
DeleteActionExecutionLog(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5288
5401
|
}
|
|
5289
5402
|
export declare class ActionParam_ {
|
|
@@ -5296,9 +5409,10 @@ export declare class ActionParam_ {
|
|
|
5296
5409
|
IsArray: boolean;
|
|
5297
5410
|
Description?: string;
|
|
5298
5411
|
IsRequired: boolean;
|
|
5299
|
-
|
|
5300
|
-
|
|
5412
|
+
_mj__CreatedAt: Date;
|
|
5413
|
+
_mj__UpdatedAt: Date;
|
|
5301
5414
|
Action: string;
|
|
5415
|
+
EntityActionParamsArray: mj_core_schema_server_object_types.EntityActionParam_[];
|
|
5302
5416
|
}
|
|
5303
5417
|
export declare class CreateActionParamInput {
|
|
5304
5418
|
ActionID: number;
|
|
@@ -5336,8 +5450,9 @@ export declare class ActionParamResolver extends ResolverBase {
|
|
|
5336
5450
|
RunActionParamViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5337
5451
|
RunActionParamDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5338
5452
|
ActionParam(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionParam_ | null>;
|
|
5339
|
-
|
|
5340
|
-
|
|
5453
|
+
EntityActionParamsArray(actionparam_: ActionParam_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5454
|
+
CreateActionParam(input: CreateActionParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5455
|
+
UpdateActionParam(input: UpdateActionParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5341
5456
|
DeleteActionParam(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5342
5457
|
}
|
|
5343
5458
|
export declare class ActionLibrary_ {
|
|
@@ -5345,8 +5460,8 @@ export declare class ActionLibrary_ {
|
|
|
5345
5460
|
ActionID: number;
|
|
5346
5461
|
LibraryID: number;
|
|
5347
5462
|
ItemsUsed?: string;
|
|
5348
|
-
|
|
5349
|
-
|
|
5463
|
+
_mj__CreatedAt: Date;
|
|
5464
|
+
_mj__UpdatedAt: Date;
|
|
5350
5465
|
Action: string;
|
|
5351
5466
|
Library: string;
|
|
5352
5467
|
}
|
|
@@ -5376,8 +5491,8 @@ export declare class ActionLibraryResolver extends ResolverBase {
|
|
|
5376
5491
|
RunActionLibraryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5377
5492
|
RunActionLibraryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5378
5493
|
ActionLibrary(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionLibrary_ | null>;
|
|
5379
|
-
CreateActionLibrary(input: CreateActionLibraryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5380
|
-
UpdateActionLibrary(input: UpdateActionLibraryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5494
|
+
CreateActionLibrary(input: CreateActionLibraryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5495
|
+
UpdateActionLibrary(input: UpdateActionLibraryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5381
5496
|
DeleteActionLibrary(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5382
5497
|
}
|
|
5383
5498
|
export declare class Library_ {
|
|
@@ -5385,18 +5500,17 @@ export declare class Library_ {
|
|
|
5385
5500
|
Name: string;
|
|
5386
5501
|
Description?: string;
|
|
5387
5502
|
Status: string;
|
|
5388
|
-
ExportedItems?: string;
|
|
5389
5503
|
TypeDefinitions?: string;
|
|
5390
5504
|
SampleCode?: string;
|
|
5391
|
-
|
|
5392
|
-
|
|
5505
|
+
_mj__CreatedAt: Date;
|
|
5506
|
+
_mj__UpdatedAt: Date;
|
|
5393
5507
|
ActionLibrariesArray: mj_core_schema_server_object_types.ActionLibrary_[];
|
|
5508
|
+
LibraryItemsArray: mj_core_schema_server_object_types.LibraryItem_[];
|
|
5394
5509
|
}
|
|
5395
5510
|
export declare class CreateLibraryInput {
|
|
5396
5511
|
Name: string;
|
|
5397
5512
|
Description?: string;
|
|
5398
5513
|
Status: string;
|
|
5399
|
-
ExportedItems?: string;
|
|
5400
5514
|
TypeDefinitions?: string;
|
|
5401
5515
|
SampleCode?: string;
|
|
5402
5516
|
}
|
|
@@ -5405,7 +5519,6 @@ export declare class UpdateLibraryInput {
|
|
|
5405
5519
|
Name: string;
|
|
5406
5520
|
Description?: string;
|
|
5407
5521
|
Status: string;
|
|
5408
|
-
ExportedItems?: string;
|
|
5409
5522
|
TypeDefinitions?: string;
|
|
5410
5523
|
SampleCode?: string;
|
|
5411
5524
|
OldValues___?: KeyValuePairInput[];
|
|
@@ -5425,17 +5538,18 @@ export declare class LibraryResolver extends ResolverBase {
|
|
|
5425
5538
|
RunLibraryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5426
5539
|
Library(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Library_ | null>;
|
|
5427
5540
|
ActionLibrariesArray(library_: Library_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5428
|
-
|
|
5429
|
-
|
|
5541
|
+
LibraryItemsArray(library_: Library_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5542
|
+
CreateLibrary(input: CreateLibraryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5543
|
+
UpdateLibrary(input: UpdateLibraryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5430
5544
|
}
|
|
5431
5545
|
export declare class ListCategory_ {
|
|
5432
5546
|
ID: number;
|
|
5433
5547
|
Name: string;
|
|
5434
5548
|
Description?: string;
|
|
5435
5549
|
ParentID?: number;
|
|
5436
|
-
CreatedAt: Date;
|
|
5437
|
-
UpdatedAt: Date;
|
|
5438
5550
|
UserID: number;
|
|
5551
|
+
_mj__CreatedAt: Date;
|
|
5552
|
+
_mj__UpdatedAt: Date;
|
|
5439
5553
|
}
|
|
5440
5554
|
export declare class CreateListCategoryInput {
|
|
5441
5555
|
Name: string;
|
|
@@ -5465,8 +5579,8 @@ export declare class ListCategoryResolver extends ResolverBase {
|
|
|
5465
5579
|
RunListCategoryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5466
5580
|
RunListCategoryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5467
5581
|
ListCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ListCategory_ | null>;
|
|
5468
|
-
CreateListCategory(input: CreateListCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5469
|
-
UpdateListCategory(input: UpdateListCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5582
|
+
CreateListCategory(input: CreateListCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5583
|
+
UpdateListCategory(input: UpdateListCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5470
5584
|
}
|
|
5471
5585
|
export declare class CommunicationProvider_ {
|
|
5472
5586
|
ID: number;
|
|
@@ -5475,8 +5589,8 @@ export declare class CommunicationProvider_ {
|
|
|
5475
5589
|
Status: string;
|
|
5476
5590
|
SupportsSending: boolean;
|
|
5477
5591
|
SupportsReceiving: boolean;
|
|
5478
|
-
|
|
5479
|
-
|
|
5592
|
+
_mj__CreatedAt: Date;
|
|
5593
|
+
_mj__UpdatedAt: Date;
|
|
5480
5594
|
CommunicationProviderMessageTypesArray: mj_core_schema_server_object_types.CommunicationProviderMessageType_[];
|
|
5481
5595
|
CommunicationLogsArray: mj_core_schema_server_object_types.CommunicationLog_[];
|
|
5482
5596
|
}
|
|
@@ -5512,8 +5626,8 @@ export declare class CommunicationProviderResolver extends ResolverBase {
|
|
|
5512
5626
|
CommunicationProvider(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProvider_ | null>;
|
|
5513
5627
|
CommunicationProviderMessageTypesArray(communicationprovider_: CommunicationProvider_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5514
5628
|
CommunicationLogsArray(communicationprovider_: CommunicationProvider_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5515
|
-
CreateCommunicationProvider(input: CreateCommunicationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5516
|
-
UpdateCommunicationProvider(input: UpdateCommunicationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5629
|
+
CreateCommunicationProvider(input: CreateCommunicationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5630
|
+
UpdateCommunicationProvider(input: UpdateCommunicationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5517
5631
|
}
|
|
5518
5632
|
export declare class CommunicationRun_ {
|
|
5519
5633
|
ID: number;
|
|
@@ -5524,8 +5638,8 @@ export declare class CommunicationRun_ {
|
|
|
5524
5638
|
EndedAt?: Date;
|
|
5525
5639
|
Comments?: string;
|
|
5526
5640
|
ErrorMessage?: string;
|
|
5527
|
-
|
|
5528
|
-
|
|
5641
|
+
_mj__CreatedAt: Date;
|
|
5642
|
+
_mj__UpdatedAt: Date;
|
|
5529
5643
|
User: string;
|
|
5530
5644
|
CommunicationLogsArray: mj_core_schema_server_object_types.CommunicationLog_[];
|
|
5531
5645
|
}
|
|
@@ -5564,8 +5678,8 @@ export declare class CommunicationRunResolver extends ResolverBase {
|
|
|
5564
5678
|
RunCommunicationRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5565
5679
|
CommunicationRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationRun_ | null>;
|
|
5566
5680
|
CommunicationLogsArray(communicationrun_: CommunicationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5567
|
-
CreateCommunicationRun(input: CreateCommunicationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5568
|
-
UpdateCommunicationRun(input: UpdateCommunicationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5681
|
+
CreateCommunicationRun(input: CreateCommunicationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5682
|
+
UpdateCommunicationRun(input: UpdateCommunicationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5569
5683
|
}
|
|
5570
5684
|
export declare class CommunicationProviderMessageType_ {
|
|
5571
5685
|
ID: number;
|
|
@@ -5574,8 +5688,8 @@ export declare class CommunicationProviderMessageType_ {
|
|
|
5574
5688
|
Name: string;
|
|
5575
5689
|
Status: string;
|
|
5576
5690
|
AdditionalAttributes?: string;
|
|
5577
|
-
|
|
5578
|
-
|
|
5691
|
+
_mj__CreatedAt: Date;
|
|
5692
|
+
_mj__UpdatedAt: Date;
|
|
5579
5693
|
CommunicationProvider: string;
|
|
5580
5694
|
CommunicationBaseMessageType: string;
|
|
5581
5695
|
CommunicationLogsArray: mj_core_schema_server_object_types.CommunicationLog_[];
|
|
@@ -5611,8 +5725,9 @@ export declare class CommunicationProviderMessageTypeResolver extends ResolverBa
|
|
|
5611
5725
|
RunCommunicationProviderMessageTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5612
5726
|
CommunicationProviderMessageType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProviderMessageType_ | null>;
|
|
5613
5727
|
CommunicationLogsArray(communicationprovidermessagetype_: CommunicationProviderMessageType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5614
|
-
CreateCommunicationProviderMessageType(input: CreateCommunicationProviderMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5615
|
-
UpdateCommunicationProviderMessageType(input: UpdateCommunicationProviderMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5728
|
+
CreateCommunicationProviderMessageType(input: CreateCommunicationProviderMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5729
|
+
UpdateCommunicationProviderMessageType(input: UpdateCommunicationProviderMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5730
|
+
DeleteCommunicationProviderMessageType(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
5616
5731
|
}
|
|
5617
5732
|
export declare class CommunicationLog_ {
|
|
5618
5733
|
ID: number;
|
|
@@ -5624,8 +5739,8 @@ export declare class CommunicationLog_ {
|
|
|
5624
5739
|
Status: string;
|
|
5625
5740
|
MessageContent?: string;
|
|
5626
5741
|
ErrorMessage?: string;
|
|
5627
|
-
|
|
5628
|
-
|
|
5742
|
+
_mj__CreatedAt: Date;
|
|
5743
|
+
_mj__UpdatedAt: Date;
|
|
5629
5744
|
CommunicationProvider: string;
|
|
5630
5745
|
CommunicationProviderMessageType: string;
|
|
5631
5746
|
}
|
|
@@ -5665,8 +5780,8 @@ export declare class CommunicationLogResolver extends ResolverBase {
|
|
|
5665
5780
|
RunCommunicationLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5666
5781
|
RunCommunicationLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5667
5782
|
CommunicationLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationLog_ | null>;
|
|
5668
|
-
CreateCommunicationLog(input: CreateCommunicationLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5669
|
-
UpdateCommunicationLog(input: UpdateCommunicationLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5783
|
+
CreateCommunicationLog(input: CreateCommunicationLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5784
|
+
UpdateCommunicationLog(input: UpdateCommunicationLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5670
5785
|
}
|
|
5671
5786
|
export declare class CommunicationBaseMessageType_ {
|
|
5672
5787
|
ID: number;
|
|
@@ -5675,8 +5790,8 @@ export declare class CommunicationBaseMessageType_ {
|
|
|
5675
5790
|
SupportsSubjectLine: boolean;
|
|
5676
5791
|
SupportsHtml: boolean;
|
|
5677
5792
|
MaxBytes?: number;
|
|
5678
|
-
|
|
5679
|
-
|
|
5793
|
+
_mj__CreatedAt: Date;
|
|
5794
|
+
_mj__UpdatedAt: Date;
|
|
5680
5795
|
CommunicationProviderMessageTypesArray: mj_core_schema_server_object_types.CommunicationProviderMessageType_[];
|
|
5681
5796
|
EntityCommunicationMessageTypesArray: mj_core_schema_server_object_types.EntityCommunicationMessageType_[];
|
|
5682
5797
|
}
|
|
@@ -5712,8 +5827,8 @@ export declare class CommunicationBaseMessageTypeResolver extends ResolverBase {
|
|
|
5712
5827
|
CommunicationBaseMessageType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationBaseMessageType_ | null>;
|
|
5713
5828
|
CommunicationProviderMessageTypesArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5714
5829
|
EntityCommunicationMessageTypesArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5715
|
-
CreateCommunicationBaseMessageType(input: CreateCommunicationBaseMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5716
|
-
UpdateCommunicationBaseMessageType(input: UpdateCommunicationBaseMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5830
|
+
CreateCommunicationBaseMessageType(input: CreateCommunicationBaseMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5831
|
+
UpdateCommunicationBaseMessageType(input: UpdateCommunicationBaseMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5717
5832
|
}
|
|
5718
5833
|
export declare class Template_ {
|
|
5719
5834
|
ID: number;
|
|
@@ -5725,8 +5840,8 @@ export declare class Template_ {
|
|
|
5725
5840
|
ActiveAt?: Date;
|
|
5726
5841
|
DisabledAt?: Date;
|
|
5727
5842
|
IsActive: boolean;
|
|
5728
|
-
|
|
5729
|
-
|
|
5843
|
+
_mj__CreatedAt: Date;
|
|
5844
|
+
_mj__UpdatedAt: Date;
|
|
5730
5845
|
Category?: string;
|
|
5731
5846
|
User: string;
|
|
5732
5847
|
TemplateParamsArray: mj_core_schema_server_object_types.TemplateParam_[];
|
|
@@ -5770,8 +5885,8 @@ export declare class TemplateResolver extends ResolverBase {
|
|
|
5770
5885
|
Template(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Template_ | null>;
|
|
5771
5886
|
TemplateParamsArray(template_: Template_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5772
5887
|
TemplateContentsArray(template_: Template_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5773
|
-
CreateTemplate(input: CreateTemplateInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5774
|
-
UpdateTemplate(input: UpdateTemplateInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5888
|
+
CreateTemplate(input: CreateTemplateInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5889
|
+
UpdateTemplate(input: UpdateTemplateInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5775
5890
|
}
|
|
5776
5891
|
export declare class TemplateCategory_ {
|
|
5777
5892
|
ID: number;
|
|
@@ -5779,8 +5894,8 @@ export declare class TemplateCategory_ {
|
|
|
5779
5894
|
Description?: string;
|
|
5780
5895
|
ParentID?: number;
|
|
5781
5896
|
UserID: number;
|
|
5782
|
-
|
|
5783
|
-
|
|
5897
|
+
_mj__CreatedAt: Date;
|
|
5898
|
+
_mj__UpdatedAt: Date;
|
|
5784
5899
|
Parent?: string;
|
|
5785
5900
|
User: string;
|
|
5786
5901
|
TemplatesArray: mj_core_schema_server_object_types.Template_[];
|
|
@@ -5816,8 +5931,8 @@ export declare class TemplateCategoryResolver extends ResolverBase {
|
|
|
5816
5931
|
TemplateCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateCategory_ | null>;
|
|
5817
5932
|
TemplatesArray(templatecategory_: TemplateCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5818
5933
|
TemplateCategoriesArray(templatecategory_: TemplateCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5819
|
-
CreateTemplateCategory(input: CreateTemplateCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5820
|
-
UpdateTemplateCategory(input: UpdateTemplateCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5934
|
+
CreateTemplateCategory(input: CreateTemplateCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5935
|
+
UpdateTemplateCategory(input: UpdateTemplateCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5821
5936
|
}
|
|
5822
5937
|
export declare class TemplateContent_ {
|
|
5823
5938
|
ID: number;
|
|
@@ -5826,8 +5941,8 @@ export declare class TemplateContent_ {
|
|
|
5826
5941
|
TemplateText?: string;
|
|
5827
5942
|
Priority: number;
|
|
5828
5943
|
IsActive: boolean;
|
|
5829
|
-
|
|
5830
|
-
|
|
5944
|
+
_mj__CreatedAt: Date;
|
|
5945
|
+
_mj__UpdatedAt: Date;
|
|
5831
5946
|
Template: string;
|
|
5832
5947
|
Type: string;
|
|
5833
5948
|
}
|
|
@@ -5861,8 +5976,8 @@ export declare class TemplateContentResolver extends ResolverBase {
|
|
|
5861
5976
|
RunTemplateContentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5862
5977
|
RunTemplateContentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5863
5978
|
TemplateContent(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateContent_ | null>;
|
|
5864
|
-
CreateTemplateContent(input: CreateTemplateContentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5865
|
-
UpdateTemplateContent(input: UpdateTemplateContentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5979
|
+
CreateTemplateContent(input: CreateTemplateContentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5980
|
+
UpdateTemplateContent(input: UpdateTemplateContentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5866
5981
|
}
|
|
5867
5982
|
export declare class TemplateParam_ {
|
|
5868
5983
|
ID: number;
|
|
@@ -5874,8 +5989,8 @@ export declare class TemplateParam_ {
|
|
|
5874
5989
|
IsRequired: boolean;
|
|
5875
5990
|
EntityID?: number;
|
|
5876
5991
|
RecordID?: string;
|
|
5877
|
-
|
|
5878
|
-
|
|
5992
|
+
_mj__CreatedAt: Date;
|
|
5993
|
+
_mj__UpdatedAt: Date;
|
|
5879
5994
|
Template: string;
|
|
5880
5995
|
Entity?: string;
|
|
5881
5996
|
}
|
|
@@ -5915,15 +6030,15 @@ export declare class TemplateParamResolver extends ResolverBase {
|
|
|
5915
6030
|
RunTemplateParamViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5916
6031
|
RunTemplateParamDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5917
6032
|
TemplateParam(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateParam_ | null>;
|
|
5918
|
-
CreateTemplateParam(input: CreateTemplateParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5919
|
-
UpdateTemplateParam(input: UpdateTemplateParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6033
|
+
CreateTemplateParam(input: CreateTemplateParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6034
|
+
UpdateTemplateParam(input: UpdateTemplateParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5920
6035
|
}
|
|
5921
6036
|
export declare class TemplateContentType_ {
|
|
5922
6037
|
ID: number;
|
|
5923
6038
|
Name: string;
|
|
5924
6039
|
Description?: string;
|
|
5925
|
-
|
|
5926
|
-
|
|
6040
|
+
_mj__CreatedAt: Date;
|
|
6041
|
+
_mj__UpdatedAt: Date;
|
|
5927
6042
|
TemplateContentsArray: mj_core_schema_server_object_types.TemplateContent_[];
|
|
5928
6043
|
}
|
|
5929
6044
|
export declare class CreateTemplateContentTypeInput {
|
|
@@ -5951,16 +6066,16 @@ export declare class TemplateContentTypeResolver extends ResolverBase {
|
|
|
5951
6066
|
RunTemplateContentTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5952
6067
|
TemplateContentType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateContentType_ | null>;
|
|
5953
6068
|
TemplateContentsArray(templatecontenttype_: TemplateContentType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5954
|
-
CreateTemplateContentType(input: CreateTemplateContentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5955
|
-
UpdateTemplateContentType(input: UpdateTemplateContentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6069
|
+
CreateTemplateContentType(input: CreateTemplateContentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6070
|
+
UpdateTemplateContentType(input: UpdateTemplateContentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5956
6071
|
}
|
|
5957
6072
|
export declare class Recommendation_ {
|
|
5958
6073
|
ID: number;
|
|
5959
6074
|
RecommendationRunID: number;
|
|
5960
6075
|
SourceEntityID: number;
|
|
5961
6076
|
SourceEntityRecordID: string;
|
|
5962
|
-
|
|
5963
|
-
|
|
6077
|
+
_mj__CreatedAt: Date;
|
|
6078
|
+
_mj__UpdatedAt: Date;
|
|
5964
6079
|
SourceEntity: string;
|
|
5965
6080
|
RecommendationItemsArray: mj_core_schema_server_object_types.RecommendationItem_[];
|
|
5966
6081
|
}
|
|
@@ -5991,15 +6106,15 @@ export declare class RecommendationResolver extends ResolverBase {
|
|
|
5991
6106
|
RunRecommendationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5992
6107
|
Recommendation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Recommendation_ | null>;
|
|
5993
6108
|
RecommendationItemsArray(recommendation_: Recommendation_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5994
|
-
CreateRecommendation(input: CreateRecommendationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
5995
|
-
UpdateRecommendation(input: UpdateRecommendationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6109
|
+
CreateRecommendation(input: CreateRecommendationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6110
|
+
UpdateRecommendation(input: UpdateRecommendationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5996
6111
|
}
|
|
5997
6112
|
export declare class RecommendationProvider_ {
|
|
5998
6113
|
ID: number;
|
|
5999
6114
|
Name: string;
|
|
6000
6115
|
Description?: string;
|
|
6001
|
-
|
|
6002
|
-
|
|
6116
|
+
_mj__CreatedAt: Date;
|
|
6117
|
+
_mj__UpdatedAt: Date;
|
|
6003
6118
|
RecommendationRunsArray: mj_core_schema_server_object_types.RecommendationRun_[];
|
|
6004
6119
|
}
|
|
6005
6120
|
export declare class CreateRecommendationProviderInput {
|
|
@@ -6027,8 +6142,8 @@ export declare class RecommendationProviderResolver extends ResolverBase {
|
|
|
6027
6142
|
RunRecommendationProviderDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6028
6143
|
RecommendationProvider(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationProvider_ | null>;
|
|
6029
6144
|
RecommendationRunsArray(recommendationprovider_: RecommendationProvider_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6030
|
-
CreateRecommendationProvider(input: CreateRecommendationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6031
|
-
UpdateRecommendationProvider(input: UpdateRecommendationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6145
|
+
CreateRecommendationProvider(input: CreateRecommendationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6146
|
+
UpdateRecommendationProvider(input: UpdateRecommendationProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6032
6147
|
}
|
|
6033
6148
|
export declare class RecommendationRun_ {
|
|
6034
6149
|
ID: number;
|
|
@@ -6038,8 +6153,8 @@ export declare class RecommendationRun_ {
|
|
|
6038
6153
|
Status: string;
|
|
6039
6154
|
Description?: string;
|
|
6040
6155
|
RunByUserID: number;
|
|
6041
|
-
|
|
6042
|
-
|
|
6156
|
+
_mj__CreatedAt: Date;
|
|
6157
|
+
_mj__UpdatedAt: Date;
|
|
6043
6158
|
RecommendationProvider: string;
|
|
6044
6159
|
RunByUser: string;
|
|
6045
6160
|
RecommendationsArray: mj_core_schema_server_object_types.Recommendation_[];
|
|
@@ -6077,8 +6192,8 @@ export declare class RecommendationRunResolver extends ResolverBase {
|
|
|
6077
6192
|
RunRecommendationRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6078
6193
|
RecommendationRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationRun_ | null>;
|
|
6079
6194
|
RecommendationsArray(recommendationrun_: RecommendationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6080
|
-
CreateRecommendationRun(input: CreateRecommendationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6081
|
-
UpdateRecommendationRun(input: UpdateRecommendationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6195
|
+
CreateRecommendationRun(input: CreateRecommendationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6196
|
+
UpdateRecommendationRun(input: UpdateRecommendationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6082
6197
|
}
|
|
6083
6198
|
export declare class RecommendationItem_ {
|
|
6084
6199
|
ID: number;
|
|
@@ -6086,8 +6201,8 @@ export declare class RecommendationItem_ {
|
|
|
6086
6201
|
DestinationEntityID: number;
|
|
6087
6202
|
DestinationEntityRecordID: string;
|
|
6088
6203
|
MatchProbability?: number;
|
|
6089
|
-
|
|
6090
|
-
|
|
6204
|
+
_mj__CreatedAt: Date;
|
|
6205
|
+
_mj__UpdatedAt: Date;
|
|
6091
6206
|
DestinationEntity: string;
|
|
6092
6207
|
}
|
|
6093
6208
|
export declare class CreateRecommendationItemInput {
|
|
@@ -6118,16 +6233,16 @@ export declare class RecommendationItemResolver extends ResolverBase {
|
|
|
6118
6233
|
RunRecommendationItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6119
6234
|
RunRecommendationItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6120
6235
|
RecommendationItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationItem_ | null>;
|
|
6121
|
-
CreateRecommendationItem(input: CreateRecommendationItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6122
|
-
UpdateRecommendationItem(input: UpdateRecommendationItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6236
|
+
CreateRecommendationItem(input: CreateRecommendationItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6237
|
+
UpdateRecommendationItem(input: UpdateRecommendationItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6123
6238
|
}
|
|
6124
6239
|
export declare class EntityCommunicationMessageType_ {
|
|
6125
6240
|
ID: number;
|
|
6126
6241
|
EntityID: number;
|
|
6127
6242
|
BaseMessageTypeID: number;
|
|
6128
6243
|
IsActive: boolean;
|
|
6129
|
-
|
|
6130
|
-
|
|
6244
|
+
_mj__CreatedAt: Date;
|
|
6245
|
+
_mj__UpdatedAt: Date;
|
|
6131
6246
|
Entity: string;
|
|
6132
6247
|
BaseMessageType: string;
|
|
6133
6248
|
EntityCommunicationFieldsArray: mj_core_schema_server_object_types.EntityCommunicationField_[];
|
|
@@ -6159,16 +6274,16 @@ export declare class EntityCommunicationMessageTypeResolver extends ResolverBase
|
|
|
6159
6274
|
RunEntityCommunicationMessageTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6160
6275
|
EntityCommunicationMessageType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityCommunicationMessageType_ | null>;
|
|
6161
6276
|
EntityCommunicationFieldsArray(entitycommunicationmessagetype_: EntityCommunicationMessageType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6162
|
-
CreateEntityCommunicationMessageType(input: CreateEntityCommunicationMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6163
|
-
UpdateEntityCommunicationMessageType(input: UpdateEntityCommunicationMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6277
|
+
CreateEntityCommunicationMessageType(input: CreateEntityCommunicationMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6278
|
+
UpdateEntityCommunicationMessageType(input: UpdateEntityCommunicationMessageTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6164
6279
|
}
|
|
6165
6280
|
export declare class EntityCommunicationField_ {
|
|
6166
6281
|
ID: number;
|
|
6167
6282
|
EntityCommunicationMessageTypeID: number;
|
|
6168
6283
|
FieldName: string;
|
|
6169
6284
|
Priority: number;
|
|
6170
|
-
|
|
6171
|
-
|
|
6285
|
+
_mj__CreatedAt: Date;
|
|
6286
|
+
_mj__UpdatedAt: Date;
|
|
6172
6287
|
}
|
|
6173
6288
|
export declare class CreateEntityCommunicationFieldInput {
|
|
6174
6289
|
EntityCommunicationMessageTypeID: number;
|
|
@@ -6196,7 +6311,172 @@ export declare class EntityCommunicationFieldResolver extends ResolverBase {
|
|
|
6196
6311
|
RunEntityCommunicationFieldViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6197
6312
|
RunEntityCommunicationFieldDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6198
6313
|
EntityCommunicationField(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityCommunicationField_ | null>;
|
|
6199
|
-
CreateEntityCommunicationField(input: CreateEntityCommunicationFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6200
|
-
UpdateEntityCommunicationField(input: UpdateEntityCommunicationFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<
|
|
6314
|
+
CreateEntityCommunicationField(input: CreateEntityCommunicationFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6315
|
+
UpdateEntityCommunicationField(input: UpdateEntityCommunicationFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6316
|
+
}
|
|
6317
|
+
export declare class RecordChangeReplayRun_ {
|
|
6318
|
+
ID: number;
|
|
6319
|
+
StartedAt: Date;
|
|
6320
|
+
EndedAt?: Date;
|
|
6321
|
+
Status: string;
|
|
6322
|
+
UserID: number;
|
|
6323
|
+
_mj__CreatedAt: Date;
|
|
6324
|
+
_mj__UpdatedAt: Date;
|
|
6325
|
+
User: string;
|
|
6326
|
+
RecordChangesArray: mj_core_schema_server_object_types.RecordChange_[];
|
|
6327
|
+
}
|
|
6328
|
+
export declare class CreateRecordChangeReplayRunInput {
|
|
6329
|
+
StartedAt: Date;
|
|
6330
|
+
EndedAt?: Date;
|
|
6331
|
+
Status: string;
|
|
6332
|
+
UserID: number;
|
|
6333
|
+
}
|
|
6334
|
+
export declare class UpdateRecordChangeReplayRunInput {
|
|
6335
|
+
ID: number;
|
|
6336
|
+
StartedAt: Date;
|
|
6337
|
+
EndedAt?: Date;
|
|
6338
|
+
Status: string;
|
|
6339
|
+
UserID: number;
|
|
6340
|
+
OldValues___?: KeyValuePairInput[];
|
|
6341
|
+
}
|
|
6342
|
+
export declare class RunRecordChangeReplayRunViewResult {
|
|
6343
|
+
Results: RecordChangeReplayRun_[];
|
|
6344
|
+
UserViewRunID?: number;
|
|
6345
|
+
RowCount: number;
|
|
6346
|
+
TotalRowCount: number;
|
|
6347
|
+
ExecutionTime: number;
|
|
6348
|
+
ErrorMessage?: string;
|
|
6349
|
+
Success: boolean;
|
|
6350
|
+
}
|
|
6351
|
+
export declare class RecordChangeReplayRunResolver extends ResolverBase {
|
|
6352
|
+
RunRecordChangeReplayRunViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6353
|
+
RunRecordChangeReplayRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6354
|
+
RunRecordChangeReplayRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6355
|
+
RecordChangeReplayRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChangeReplayRun_ | null>;
|
|
6356
|
+
RecordChangesArray(recordchangereplayrun_: RecordChangeReplayRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6357
|
+
CreateRecordChangeReplayRun(input: CreateRecordChangeReplayRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6358
|
+
UpdateRecordChangeReplayRun(input: UpdateRecordChangeReplayRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6359
|
+
}
|
|
6360
|
+
export declare class LibraryItem_ {
|
|
6361
|
+
ID: number;
|
|
6362
|
+
Name: string;
|
|
6363
|
+
LibraryID: number;
|
|
6364
|
+
Type: string;
|
|
6365
|
+
_mj__CreatedAt: Date;
|
|
6366
|
+
_mj__UpdatedAt: Date;
|
|
6367
|
+
Library: string;
|
|
6368
|
+
}
|
|
6369
|
+
export declare class CreateLibraryItemInput {
|
|
6370
|
+
Name: string;
|
|
6371
|
+
LibraryID: number;
|
|
6372
|
+
Type: string;
|
|
6373
|
+
}
|
|
6374
|
+
export declare class UpdateLibraryItemInput {
|
|
6375
|
+
ID: number;
|
|
6376
|
+
Name: string;
|
|
6377
|
+
LibraryID: number;
|
|
6378
|
+
Type: string;
|
|
6379
|
+
OldValues___?: KeyValuePairInput[];
|
|
6380
|
+
}
|
|
6381
|
+
export declare class RunLibraryItemViewResult {
|
|
6382
|
+
Results: LibraryItem_[];
|
|
6383
|
+
UserViewRunID?: number;
|
|
6384
|
+
RowCount: number;
|
|
6385
|
+
TotalRowCount: number;
|
|
6386
|
+
ExecutionTime: number;
|
|
6387
|
+
ErrorMessage?: string;
|
|
6388
|
+
Success: boolean;
|
|
6389
|
+
}
|
|
6390
|
+
export declare class LibraryItemResolver extends ResolverBase {
|
|
6391
|
+
RunLibraryItemViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6392
|
+
RunLibraryItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6393
|
+
RunLibraryItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6394
|
+
LibraryItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<LibraryItem_ | null>;
|
|
6395
|
+
CreateLibraryItem(input: CreateLibraryItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6396
|
+
UpdateLibraryItem(input: UpdateLibraryItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6397
|
+
}
|
|
6398
|
+
export declare class EntityRelationshipDisplayComponent_ {
|
|
6399
|
+
ID: number;
|
|
6400
|
+
Name: string;
|
|
6401
|
+
Description?: string;
|
|
6402
|
+
RelationshipType: string;
|
|
6403
|
+
_mj__CreatedAt: Date;
|
|
6404
|
+
_mj__UpdatedAt: Date;
|
|
6405
|
+
EntityRelationshipsArray: mj_core_schema_server_object_types.EntityRelationship_[];
|
|
6406
|
+
}
|
|
6407
|
+
export declare class CreateEntityRelationshipDisplayComponentInput {
|
|
6408
|
+
Name: string;
|
|
6409
|
+
Description?: string;
|
|
6410
|
+
RelationshipType: string;
|
|
6411
|
+
}
|
|
6412
|
+
export declare class UpdateEntityRelationshipDisplayComponentInput {
|
|
6413
|
+
ID: number;
|
|
6414
|
+
Name: string;
|
|
6415
|
+
Description?: string;
|
|
6416
|
+
RelationshipType: string;
|
|
6417
|
+
OldValues___?: KeyValuePairInput[];
|
|
6418
|
+
}
|
|
6419
|
+
export declare class RunEntityRelationshipDisplayComponentViewResult {
|
|
6420
|
+
Results: EntityRelationshipDisplayComponent_[];
|
|
6421
|
+
UserViewRunID?: number;
|
|
6422
|
+
RowCount: number;
|
|
6423
|
+
TotalRowCount: number;
|
|
6424
|
+
ExecutionTime: number;
|
|
6425
|
+
ErrorMessage?: string;
|
|
6426
|
+
Success: boolean;
|
|
6427
|
+
}
|
|
6428
|
+
export declare class EntityRelationshipDisplayComponentResolver extends ResolverBase {
|
|
6429
|
+
RunEntityRelationshipDisplayComponentViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6430
|
+
RunEntityRelationshipDisplayComponentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6431
|
+
RunEntityRelationshipDisplayComponentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6432
|
+
EntityRelationshipDisplayComponent(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationshipDisplayComponent_ | null>;
|
|
6433
|
+
EntityRelationshipsArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6434
|
+
CreateEntityRelationshipDisplayComponent(input: CreateEntityRelationshipDisplayComponentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6435
|
+
UpdateEntityRelationshipDisplayComponent(input: UpdateEntityRelationshipDisplayComponentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6436
|
+
}
|
|
6437
|
+
export declare class EntityActionParam_ {
|
|
6438
|
+
ID: number;
|
|
6439
|
+
EntityActionID: number;
|
|
6440
|
+
ActionParamID: number;
|
|
6441
|
+
ValueType: string;
|
|
6442
|
+
Value?: string;
|
|
6443
|
+
Comments?: string;
|
|
6444
|
+
_mj__CreatedAt: Date;
|
|
6445
|
+
_mj__UpdatedAt: Date;
|
|
6446
|
+
ActionParam: string;
|
|
6447
|
+
}
|
|
6448
|
+
export declare class CreateEntityActionParamInput {
|
|
6449
|
+
EntityActionID: number;
|
|
6450
|
+
ActionParamID: number;
|
|
6451
|
+
ValueType: string;
|
|
6452
|
+
Value?: string;
|
|
6453
|
+
Comments?: string;
|
|
6454
|
+
}
|
|
6455
|
+
export declare class UpdateEntityActionParamInput {
|
|
6456
|
+
ID: number;
|
|
6457
|
+
EntityActionID: number;
|
|
6458
|
+
ActionParamID: number;
|
|
6459
|
+
ValueType: string;
|
|
6460
|
+
Value?: string;
|
|
6461
|
+
Comments?: string;
|
|
6462
|
+
OldValues___?: KeyValuePairInput[];
|
|
6463
|
+
}
|
|
6464
|
+
export declare class RunEntityActionParamViewResult {
|
|
6465
|
+
Results: EntityActionParam_[];
|
|
6466
|
+
UserViewRunID?: number;
|
|
6467
|
+
RowCount: number;
|
|
6468
|
+
TotalRowCount: number;
|
|
6469
|
+
ExecutionTime: number;
|
|
6470
|
+
ErrorMessage?: string;
|
|
6471
|
+
Success: boolean;
|
|
6472
|
+
}
|
|
6473
|
+
export declare class EntityActionParamResolver extends ResolverBase {
|
|
6474
|
+
RunEntityActionParamViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6475
|
+
RunEntityActionParamViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6476
|
+
RunEntityActionParamDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6477
|
+
EntityActionParam(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionParam_ | null>;
|
|
6478
|
+
CreateEntityActionParam(input: CreateEntityActionParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6479
|
+
UpdateEntityActionParam(input: UpdateEntityActionParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6480
|
+
DeleteEntityActionParam(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
6201
6481
|
}
|
|
6202
6482
|
//# sourceMappingURL=generated.d.ts.map
|