@memberjunction/server 0.9.235 → 0.9.237
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/build.log.json +6 -0
- package/dist/apolloServer/TransactionPlugin.d.ts +4 -0
- package/dist/apolloServer/TransactionPlugin.d.ts.map +1 -0
- package/dist/apolloServer/index.d.ts +11 -0
- package/dist/apolloServer/index.d.ts.map +1 -0
- package/dist/auth/exampleNewUserSubClass.d.ts +6 -0
- package/dist/auth/exampleNewUserSubClass.d.ts.map +1 -0
- package/dist/auth/index.d.ts +30 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/newUsers.d.ts +5 -0
- package/dist/auth/newUsers.d.ts.map +1 -0
- package/dist/auth/tokenExpiredError.d.ts +5 -0
- package/dist/auth/tokenExpiredError.d.ts.map +1 -0
- package/dist/cache.d.ts +3 -0
- package/dist/cache.d.ts.map +1 -0
- package/dist/config.d.ts +193 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/context.d.ts +17 -0
- package/dist/context.d.ts.map +1 -0
- package/dist/directives/Public.d.ts +4 -0
- package/dist/directives/Public.d.ts.map +1 -0
- package/dist/directives/index.d.ts +2 -0
- package/dist/directives/index.d.ts.map +1 -0
- package/dist/entitySubclasses/userViewEntity.server.d.ts +12 -0
- package/dist/entitySubclasses/userViewEntity.server.d.ts.map +1 -0
- package/dist/generated/generated.d.ts +4293 -0
- package/dist/generated/generated.d.ts.map +1 -0
- package/dist/generated/generated.js +1261 -33
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/PushStatusResolver.d.ts +14 -0
- package/dist/generic/PushStatusResolver.d.ts.map +1 -0
- package/dist/generic/ResolverBase.d.ts +25 -0
- package/dist/generic/ResolverBase.d.ts.map +1 -0
- package/dist/generic/RunViewResolver.d.ts +82 -0
- package/dist/generic/RunViewResolver.d.ts.map +1 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/orm.d.ts +4 -0
- package/dist/orm.d.ts.map +1 -0
- package/dist/resolvers/AskSkipResolver.d.ts +57 -0
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -0
- package/dist/resolvers/ColorResolver.d.ts +22 -0
- package/dist/resolvers/ColorResolver.d.ts.map +1 -0
- package/dist/resolvers/DatasetResolver.d.ts +42 -0
- package/dist/resolvers/DatasetResolver.d.ts.map +1 -0
- package/dist/resolvers/EntityRecordNameResolver.d.ts +20 -0
- package/dist/resolvers/EntityRecordNameResolver.d.ts.map +1 -0
- package/dist/resolvers/EntityResolver.d.ts +6 -0
- package/dist/resolvers/EntityResolver.d.ts.map +1 -0
- package/dist/resolvers/MergeRecordsResolver.d.ts +66 -0
- package/dist/resolvers/MergeRecordsResolver.d.ts.map +1 -0
- package/dist/resolvers/PotentialDuplicateRecordResolver.d.ts +22 -0
- package/dist/resolvers/PotentialDuplicateRecordResolver.d.ts.map +1 -0
- package/dist/resolvers/QueryResolver.d.ts +13 -0
- package/dist/resolvers/QueryResolver.d.ts.map +1 -0
- package/dist/resolvers/ReportResolver.d.ts +20 -0
- package/dist/resolvers/ReportResolver.d.ts.map +1 -0
- package/dist/resolvers/UserFavoriteResolver.d.ts +41 -0
- package/dist/resolvers/UserFavoriteResolver.d.ts.map +1 -0
- package/dist/resolvers/UserResolver.d.ts +10 -0
- package/dist/resolvers/UserResolver.d.ts.map +1 -0
- package/dist/resolvers/UserViewResolver.d.ts +13 -0
- package/dist/resolvers/UserViewResolver.d.ts.map +1 -0
- package/dist/types.d.ts +17 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/util.d.ts +4 -0
- package/dist/util.d.ts.map +1 -0
- package/package.json +11 -11
- package/src/generated/generated.ts +1301 -344
- package/tsconfig.json +31 -28
|
@@ -0,0 +1,4293 @@
|
|
|
1
|
+
import { PubSubEngine, ResolverBase, RunViewByIDInput, RunViewByNameInput, RunDynamicViewInput } from '@memberjunction/server';
|
|
2
|
+
import { AppContext } from '@memberjunction/server';
|
|
3
|
+
import { DataSource } from 'typeorm';
|
|
4
|
+
import * as mj_core_schema_server_object_types from '@memberjunction/server';
|
|
5
|
+
export declare class Company_ {
|
|
6
|
+
ID: number;
|
|
7
|
+
Name: string;
|
|
8
|
+
Description: string;
|
|
9
|
+
Website?: string;
|
|
10
|
+
LogoURL?: string;
|
|
11
|
+
CreatedAt: Date;
|
|
12
|
+
UpdatedAt: Date;
|
|
13
|
+
Domain?: string;
|
|
14
|
+
EmployeesArray: mj_core_schema_server_object_types.Employee_[];
|
|
15
|
+
CompanyIntegrationsArray: mj_core_schema_server_object_types.CompanyIntegration_[];
|
|
16
|
+
WorkflowsArray: mj_core_schema_server_object_types.Workflow_[];
|
|
17
|
+
}
|
|
18
|
+
export declare class CreateCompanyInput {
|
|
19
|
+
Name: string;
|
|
20
|
+
Description: string;
|
|
21
|
+
Website: string;
|
|
22
|
+
LogoURL: string;
|
|
23
|
+
Domain: string;
|
|
24
|
+
}
|
|
25
|
+
export declare class UpdateCompanyInput {
|
|
26
|
+
ID: number;
|
|
27
|
+
Name: string;
|
|
28
|
+
Description: string;
|
|
29
|
+
Website: string;
|
|
30
|
+
LogoURL: string;
|
|
31
|
+
Domain: string;
|
|
32
|
+
}
|
|
33
|
+
export declare class RunCompanyViewResult {
|
|
34
|
+
Results: Company_[];
|
|
35
|
+
UserViewRunID?: number;
|
|
36
|
+
RowCount: number;
|
|
37
|
+
TotalRowCount: number;
|
|
38
|
+
ExecutionTime: number;
|
|
39
|
+
ErrorMessage?: string;
|
|
40
|
+
Success: boolean;
|
|
41
|
+
}
|
|
42
|
+
export declare class CompanyResolver extends ResolverBase {
|
|
43
|
+
RunCompanyViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
44
|
+
RunCompanyViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
45
|
+
RunCompanyDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
46
|
+
Company(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Company_ | null>;
|
|
47
|
+
AllCompanies({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
48
|
+
EmployeesArray(company_: Company_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
49
|
+
CompanyIntegrationsArray(company_: Company_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
50
|
+
WorkflowsArray(company_: Company_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
51
|
+
CreateCompany(input: CreateCompanyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
52
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateCompanyInput): Promise<boolean>;
|
|
53
|
+
protected AfterCreate(dataSource: DataSource, input: CreateCompanyInput): Promise<void>;
|
|
54
|
+
UpdateCompany(input: UpdateCompanyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
55
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateCompanyInput): Promise<boolean>;
|
|
56
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateCompanyInput): Promise<void>;
|
|
57
|
+
DeleteCompany(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
58
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
59
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
60
|
+
}
|
|
61
|
+
export declare class Employee_ {
|
|
62
|
+
ID: number;
|
|
63
|
+
BCMID: string;
|
|
64
|
+
FirstName: string;
|
|
65
|
+
LastName: string;
|
|
66
|
+
Title?: string;
|
|
67
|
+
Email: string;
|
|
68
|
+
Phone?: string;
|
|
69
|
+
Active: boolean;
|
|
70
|
+
CompanyID: number;
|
|
71
|
+
SupervisorID?: number;
|
|
72
|
+
CreatedAt: Date;
|
|
73
|
+
UpdatedAt: Date;
|
|
74
|
+
FirstLast?: string;
|
|
75
|
+
Supervisor?: string;
|
|
76
|
+
SupervisorFirstName?: string;
|
|
77
|
+
SupervisorLastName?: string;
|
|
78
|
+
SupervisorEmail?: string;
|
|
79
|
+
EmployeesArray: mj_core_schema_server_object_types.Employee_[];
|
|
80
|
+
EmployeeCompanyIntegrationsArray: mj_core_schema_server_object_types.EmployeeCompanyIntegration_[];
|
|
81
|
+
EmployeeRolesArray: mj_core_schema_server_object_types.EmployeeRole_[];
|
|
82
|
+
EmployeeSkillsArray: mj_core_schema_server_object_types.EmployeeSkill_[];
|
|
83
|
+
}
|
|
84
|
+
export declare class CreateEmployeeInput {
|
|
85
|
+
FirstName: string;
|
|
86
|
+
LastName: string;
|
|
87
|
+
Title: string;
|
|
88
|
+
Email: string;
|
|
89
|
+
Phone: string;
|
|
90
|
+
Active: boolean;
|
|
91
|
+
CompanyID: number;
|
|
92
|
+
SupervisorID: number;
|
|
93
|
+
}
|
|
94
|
+
export declare class UpdateEmployeeInput {
|
|
95
|
+
ID: number;
|
|
96
|
+
FirstName: string;
|
|
97
|
+
LastName: string;
|
|
98
|
+
Title: string;
|
|
99
|
+
Email: string;
|
|
100
|
+
Phone: string;
|
|
101
|
+
Active: boolean;
|
|
102
|
+
CompanyID: number;
|
|
103
|
+
SupervisorID: number;
|
|
104
|
+
}
|
|
105
|
+
export declare class RunEmployeeViewResult {
|
|
106
|
+
Results: Employee_[];
|
|
107
|
+
UserViewRunID?: number;
|
|
108
|
+
RowCount: number;
|
|
109
|
+
TotalRowCount: number;
|
|
110
|
+
ExecutionTime: number;
|
|
111
|
+
ErrorMessage?: string;
|
|
112
|
+
Success: boolean;
|
|
113
|
+
}
|
|
114
|
+
export declare class EmployeeResolver extends ResolverBase {
|
|
115
|
+
RunEmployeeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
116
|
+
RunEmployeeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
117
|
+
RunEmployeeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
118
|
+
Employee(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Employee_ | null>;
|
|
119
|
+
AllEmployees({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
120
|
+
EmployeesArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
121
|
+
EmployeeCompanyIntegrationsArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
122
|
+
EmployeeRolesArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
123
|
+
EmployeeSkillsArray(employee_: Employee_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
124
|
+
CreateEmployee(input: CreateEmployeeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
125
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEmployeeInput): Promise<boolean>;
|
|
126
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEmployeeInput): Promise<void>;
|
|
127
|
+
UpdateEmployee(input: UpdateEmployeeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
128
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEmployeeInput): Promise<boolean>;
|
|
129
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEmployeeInput): Promise<void>;
|
|
130
|
+
DeleteEmployee(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
131
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
132
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
133
|
+
}
|
|
134
|
+
export declare class UserFavorite_ {
|
|
135
|
+
ID: number;
|
|
136
|
+
UserID: number;
|
|
137
|
+
EntityID: number;
|
|
138
|
+
RecordID: string;
|
|
139
|
+
CreatedAt: Date;
|
|
140
|
+
UpdatedAt: Date;
|
|
141
|
+
Entity: string;
|
|
142
|
+
EntityBaseTable: string;
|
|
143
|
+
EntityBaseView: string;
|
|
144
|
+
}
|
|
145
|
+
export declare class CreateUserFavoriteInput {
|
|
146
|
+
UserID: number;
|
|
147
|
+
EntityID: number;
|
|
148
|
+
RecordID: string;
|
|
149
|
+
}
|
|
150
|
+
export declare class UpdateUserFavoriteInput {
|
|
151
|
+
ID: number;
|
|
152
|
+
UserID: number;
|
|
153
|
+
EntityID: number;
|
|
154
|
+
RecordID: string;
|
|
155
|
+
}
|
|
156
|
+
export declare class RunUserFavoriteViewResult {
|
|
157
|
+
Results: UserFavorite_[];
|
|
158
|
+
UserViewRunID?: number;
|
|
159
|
+
RowCount: number;
|
|
160
|
+
TotalRowCount: number;
|
|
161
|
+
ExecutionTime: number;
|
|
162
|
+
ErrorMessage?: string;
|
|
163
|
+
Success: boolean;
|
|
164
|
+
}
|
|
165
|
+
export declare class UserFavoriteResolverBase extends ResolverBase {
|
|
166
|
+
RunUserFavoriteViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
167
|
+
RunUserFavoriteViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
168
|
+
RunUserFavoriteDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
169
|
+
UserFavorite(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserFavorite_ | null>;
|
|
170
|
+
CreateUserFavorite(input: CreateUserFavoriteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
171
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserFavoriteInput): Promise<boolean>;
|
|
172
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserFavoriteInput): Promise<void>;
|
|
173
|
+
UpdateUserFavorite(input: UpdateUserFavoriteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
174
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserFavoriteInput): Promise<boolean>;
|
|
175
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserFavoriteInput): Promise<void>;
|
|
176
|
+
DeleteUserFavorite(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
177
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
178
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
179
|
+
}
|
|
180
|
+
export declare class EmployeeCompanyIntegration_ {
|
|
181
|
+
ID: number;
|
|
182
|
+
EmployeeID: number;
|
|
183
|
+
CompanyIntegrationID: number;
|
|
184
|
+
ExternalSystemRecordID: string;
|
|
185
|
+
IsActive: boolean;
|
|
186
|
+
CreatedAt: Date;
|
|
187
|
+
UpdatedAt: Date;
|
|
188
|
+
}
|
|
189
|
+
export declare class UpdateEmployeeCompanyIntegrationInput {
|
|
190
|
+
ID: number;
|
|
191
|
+
EmployeeID: number;
|
|
192
|
+
CompanyIntegrationID: number;
|
|
193
|
+
ExternalSystemRecordID: string;
|
|
194
|
+
IsActive: boolean;
|
|
195
|
+
}
|
|
196
|
+
export declare class RunEmployeeCompanyIntegrationViewResult {
|
|
197
|
+
Results: EmployeeCompanyIntegration_[];
|
|
198
|
+
UserViewRunID?: number;
|
|
199
|
+
RowCount: number;
|
|
200
|
+
TotalRowCount: number;
|
|
201
|
+
ExecutionTime: number;
|
|
202
|
+
ErrorMessage?: string;
|
|
203
|
+
Success: boolean;
|
|
204
|
+
}
|
|
205
|
+
export declare class EmployeeCompanyIntegrationResolver extends ResolverBase {
|
|
206
|
+
RunEmployeeCompanyIntegrationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
207
|
+
RunEmployeeCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
208
|
+
RunEmployeeCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
209
|
+
EmployeeCompanyIntegration(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeCompanyIntegration_ | null>;
|
|
210
|
+
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
211
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEmployeeCompanyIntegrationInput): Promise<boolean>;
|
|
212
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEmployeeCompanyIntegrationInput): Promise<void>;
|
|
213
|
+
}
|
|
214
|
+
export declare class EmployeeRole_ {
|
|
215
|
+
ID: number;
|
|
216
|
+
EmployeeID: number;
|
|
217
|
+
RoleID: number;
|
|
218
|
+
CreatedAt: Date;
|
|
219
|
+
UpdatedAt: Date;
|
|
220
|
+
Role: string;
|
|
221
|
+
}
|
|
222
|
+
export declare class UpdateEmployeeRoleInput {
|
|
223
|
+
ID: number;
|
|
224
|
+
EmployeeID: number;
|
|
225
|
+
RoleID: number;
|
|
226
|
+
}
|
|
227
|
+
export declare class RunEmployeeRoleViewResult {
|
|
228
|
+
Results: EmployeeRole_[];
|
|
229
|
+
UserViewRunID?: number;
|
|
230
|
+
RowCount: number;
|
|
231
|
+
TotalRowCount: number;
|
|
232
|
+
ExecutionTime: number;
|
|
233
|
+
ErrorMessage?: string;
|
|
234
|
+
Success: boolean;
|
|
235
|
+
}
|
|
236
|
+
export declare class EmployeeRoleResolver extends ResolverBase {
|
|
237
|
+
RunEmployeeRoleViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
238
|
+
RunEmployeeRoleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
239
|
+
RunEmployeeRoleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
240
|
+
EmployeeRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeRole_ | null>;
|
|
241
|
+
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
242
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEmployeeRoleInput): Promise<boolean>;
|
|
243
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEmployeeRoleInput): Promise<void>;
|
|
244
|
+
}
|
|
245
|
+
export declare class EmployeeSkill_ {
|
|
246
|
+
ID: number;
|
|
247
|
+
EmployeeID: number;
|
|
248
|
+
SkillID: number;
|
|
249
|
+
CreatedAt: Date;
|
|
250
|
+
UpdatedAt: Date;
|
|
251
|
+
Skill: string;
|
|
252
|
+
}
|
|
253
|
+
export declare class UpdateEmployeeSkillInput {
|
|
254
|
+
ID: number;
|
|
255
|
+
EmployeeID: number;
|
|
256
|
+
SkillID: number;
|
|
257
|
+
}
|
|
258
|
+
export declare class RunEmployeeSkillViewResult {
|
|
259
|
+
Results: EmployeeSkill_[];
|
|
260
|
+
UserViewRunID?: number;
|
|
261
|
+
RowCount: number;
|
|
262
|
+
TotalRowCount: number;
|
|
263
|
+
ExecutionTime: number;
|
|
264
|
+
ErrorMessage?: string;
|
|
265
|
+
Success: boolean;
|
|
266
|
+
}
|
|
267
|
+
export declare class EmployeeSkillResolver extends ResolverBase {
|
|
268
|
+
RunEmployeeSkillViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
269
|
+
RunEmployeeSkillViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
270
|
+
RunEmployeeSkillDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
271
|
+
EmployeeSkill(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeSkill_ | null>;
|
|
272
|
+
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
273
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEmployeeSkillInput): Promise<boolean>;
|
|
274
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEmployeeSkillInput): Promise<void>;
|
|
275
|
+
}
|
|
276
|
+
export declare class Role_ {
|
|
277
|
+
ID: number;
|
|
278
|
+
Name: string;
|
|
279
|
+
Description?: string;
|
|
280
|
+
AzureID?: string;
|
|
281
|
+
SQLName: string;
|
|
282
|
+
CreatedAt: Date;
|
|
283
|
+
UpdatedAt: Date;
|
|
284
|
+
EmployeeRolesArray: mj_core_schema_server_object_types.EmployeeRole_[];
|
|
285
|
+
EntityPermissionsArray: mj_core_schema_server_object_types.EntityPermission_[];
|
|
286
|
+
UserRolesArray: mj_core_schema_server_object_types.UserRole_[];
|
|
287
|
+
AuthorizationRolesArray: mj_core_schema_server_object_types.AuthorizationRole_[];
|
|
288
|
+
QueryPermissionsArray: mj_core_schema_server_object_types.QueryPermission_[];
|
|
289
|
+
}
|
|
290
|
+
export declare class UpdateRoleInput {
|
|
291
|
+
ID: number;
|
|
292
|
+
Name: string;
|
|
293
|
+
Description: string;
|
|
294
|
+
AzureID: string;
|
|
295
|
+
SQLName: string;
|
|
296
|
+
}
|
|
297
|
+
export declare class RunRoleViewResult {
|
|
298
|
+
Results: Role_[];
|
|
299
|
+
UserViewRunID?: number;
|
|
300
|
+
RowCount: number;
|
|
301
|
+
TotalRowCount: number;
|
|
302
|
+
ExecutionTime: number;
|
|
303
|
+
ErrorMessage?: string;
|
|
304
|
+
Success: boolean;
|
|
305
|
+
}
|
|
306
|
+
export declare class RoleResolver extends ResolverBase {
|
|
307
|
+
RunRoleViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
308
|
+
RunRoleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
309
|
+
RunRoleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
310
|
+
Role(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Role_ | null>;
|
|
311
|
+
AllRoles({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
312
|
+
EmployeeRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
313
|
+
EntityPermissionsArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
314
|
+
UserRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
315
|
+
AuthorizationRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
316
|
+
QueryPermissionsArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
317
|
+
UpdateRole(input: UpdateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
318
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateRoleInput): Promise<boolean>;
|
|
319
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateRoleInput): Promise<void>;
|
|
320
|
+
}
|
|
321
|
+
export declare class Skill_ {
|
|
322
|
+
ID: number;
|
|
323
|
+
Name: string;
|
|
324
|
+
ParentID?: number;
|
|
325
|
+
CreatedAt: Date;
|
|
326
|
+
UpdatedAt: Date;
|
|
327
|
+
Parent?: string;
|
|
328
|
+
EmployeeSkillsArray: mj_core_schema_server_object_types.EmployeeSkill_[];
|
|
329
|
+
SkillsArray: mj_core_schema_server_object_types.Skill_[];
|
|
330
|
+
}
|
|
331
|
+
export declare class RunSkillViewResult {
|
|
332
|
+
Results: Skill_[];
|
|
333
|
+
UserViewRunID?: number;
|
|
334
|
+
RowCount: number;
|
|
335
|
+
TotalRowCount: number;
|
|
336
|
+
ExecutionTime: number;
|
|
337
|
+
ErrorMessage?: string;
|
|
338
|
+
Success: boolean;
|
|
339
|
+
}
|
|
340
|
+
export declare class SkillResolver extends ResolverBase {
|
|
341
|
+
RunSkillViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
342
|
+
RunSkillViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
343
|
+
RunSkillDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
344
|
+
Skill(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Skill_ | null>;
|
|
345
|
+
AllSkills({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
346
|
+
EmployeeSkillsArray(skill_: Skill_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
347
|
+
SkillsArray(skill_: Skill_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
348
|
+
}
|
|
349
|
+
export declare class IntegrationURLFormat_ {
|
|
350
|
+
ID: number;
|
|
351
|
+
IntegrationName?: string;
|
|
352
|
+
EntityID: number;
|
|
353
|
+
URLFormat: string;
|
|
354
|
+
IntegrationID: number;
|
|
355
|
+
Integration: string;
|
|
356
|
+
NavigationBaseURL?: string;
|
|
357
|
+
FullURLFormat?: string;
|
|
358
|
+
}
|
|
359
|
+
export declare class UpdateIntegrationURLFormatInput {
|
|
360
|
+
ID: number;
|
|
361
|
+
IntegrationName: string;
|
|
362
|
+
EntityID: number;
|
|
363
|
+
URLFormat: string;
|
|
364
|
+
}
|
|
365
|
+
export declare class RunIntegrationURLFormatViewResult {
|
|
366
|
+
Results: IntegrationURLFormat_[];
|
|
367
|
+
UserViewRunID?: number;
|
|
368
|
+
RowCount: number;
|
|
369
|
+
TotalRowCount: number;
|
|
370
|
+
ExecutionTime: number;
|
|
371
|
+
ErrorMessage?: string;
|
|
372
|
+
Success: boolean;
|
|
373
|
+
}
|
|
374
|
+
export declare class IntegrationURLFormatResolver extends ResolverBase {
|
|
375
|
+
RunIntegrationURLFormatViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
376
|
+
RunIntegrationURLFormatViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
377
|
+
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
378
|
+
IntegrationURLFormat(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<IntegrationURLFormat_ | null>;
|
|
379
|
+
AllIntegrationURLFormats({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
380
|
+
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
381
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateIntegrationURLFormatInput): Promise<boolean>;
|
|
382
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateIntegrationURLFormatInput): Promise<void>;
|
|
383
|
+
}
|
|
384
|
+
export declare class Integration_ {
|
|
385
|
+
ID: number;
|
|
386
|
+
Name: string;
|
|
387
|
+
Description?: string;
|
|
388
|
+
NavigationBaseURL?: string;
|
|
389
|
+
ClassName?: string;
|
|
390
|
+
ImportPath?: string;
|
|
391
|
+
BatchMaxRequestCount: number;
|
|
392
|
+
BatchRequestWaitTime: number;
|
|
393
|
+
CreatedAt: Date;
|
|
394
|
+
UpdatedAt: Date;
|
|
395
|
+
IntegrationURLFormatsArray: mj_core_schema_server_object_types.IntegrationURLFormat_[];
|
|
396
|
+
CompanyIntegrationsArray: mj_core_schema_server_object_types.CompanyIntegration_[];
|
|
397
|
+
}
|
|
398
|
+
export declare class UpdateIntegrationInput {
|
|
399
|
+
ID: number;
|
|
400
|
+
Name: string;
|
|
401
|
+
Description: string;
|
|
402
|
+
NavigationBaseURL: string;
|
|
403
|
+
ClassName: string;
|
|
404
|
+
ImportPath: string;
|
|
405
|
+
BatchMaxRequestCount: number;
|
|
406
|
+
BatchRequestWaitTime: number;
|
|
407
|
+
}
|
|
408
|
+
export declare class RunIntegrationViewResult {
|
|
409
|
+
Results: Integration_[];
|
|
410
|
+
UserViewRunID?: number;
|
|
411
|
+
RowCount: number;
|
|
412
|
+
TotalRowCount: number;
|
|
413
|
+
ExecutionTime: number;
|
|
414
|
+
ErrorMessage?: string;
|
|
415
|
+
Success: boolean;
|
|
416
|
+
}
|
|
417
|
+
export declare class IntegrationResolver extends ResolverBase {
|
|
418
|
+
RunIntegrationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
419
|
+
RunIntegrationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
420
|
+
RunIntegrationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
421
|
+
Integration(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Integration_ | null>;
|
|
422
|
+
AllIntegrations({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
423
|
+
IntegrationURLFormatsArray(integration_: Integration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
424
|
+
CompanyIntegrationsArray(integration_: Integration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
425
|
+
UpdateIntegration(input: UpdateIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
426
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateIntegrationInput): Promise<boolean>;
|
|
427
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateIntegrationInput): Promise<void>;
|
|
428
|
+
}
|
|
429
|
+
export declare class CompanyIntegration_ {
|
|
430
|
+
ID: number;
|
|
431
|
+
CompanyName: string;
|
|
432
|
+
IntegrationName: string;
|
|
433
|
+
IsActive?: boolean;
|
|
434
|
+
AccessToken?: string;
|
|
435
|
+
RefreshToken?: string;
|
|
436
|
+
TokenExpirationDate?: Date;
|
|
437
|
+
APIKey?: string;
|
|
438
|
+
CreatedAt: Date;
|
|
439
|
+
UpdatedAt: Date;
|
|
440
|
+
ExternalSystemID?: string;
|
|
441
|
+
IsExternalSystemReadOnly: boolean;
|
|
442
|
+
ClientID?: string;
|
|
443
|
+
ClientSecret?: string;
|
|
444
|
+
CustomAttribute1?: string;
|
|
445
|
+
CompanyID: number;
|
|
446
|
+
IntegrationID: number;
|
|
447
|
+
Company: string;
|
|
448
|
+
Integration: string;
|
|
449
|
+
DriverClassName?: string;
|
|
450
|
+
DriverImportPath?: string;
|
|
451
|
+
LastRunID?: number;
|
|
452
|
+
LastRunStartedAt?: Date;
|
|
453
|
+
LastRunEndedAt?: Date;
|
|
454
|
+
ListsArray: mj_core_schema_server_object_types.List_[];
|
|
455
|
+
EmployeeCompanyIntegrationsArray: mj_core_schema_server_object_types.EmployeeCompanyIntegration_[];
|
|
456
|
+
CompanyIntegrationRunsArray: mj_core_schema_server_object_types.CompanyIntegrationRun_[];
|
|
457
|
+
CompanyIntegrationRecordMapsArray: mj_core_schema_server_object_types.CompanyIntegrationRecordMap_[];
|
|
458
|
+
}
|
|
459
|
+
export declare class UpdateCompanyIntegrationInput {
|
|
460
|
+
ID: number;
|
|
461
|
+
CompanyName: string;
|
|
462
|
+
IntegrationName: string;
|
|
463
|
+
IsActive: boolean;
|
|
464
|
+
AccessToken: string;
|
|
465
|
+
RefreshToken: string;
|
|
466
|
+
TokenExpirationDate: Date;
|
|
467
|
+
APIKey: string;
|
|
468
|
+
ExternalSystemID: string;
|
|
469
|
+
IsExternalSystemReadOnly: boolean;
|
|
470
|
+
ClientID: string;
|
|
471
|
+
ClientSecret: string;
|
|
472
|
+
CustomAttribute1: string;
|
|
473
|
+
}
|
|
474
|
+
export declare class RunCompanyIntegrationViewResult {
|
|
475
|
+
Results: CompanyIntegration_[];
|
|
476
|
+
UserViewRunID?: number;
|
|
477
|
+
RowCount: number;
|
|
478
|
+
TotalRowCount: number;
|
|
479
|
+
ExecutionTime: number;
|
|
480
|
+
ErrorMessage?: string;
|
|
481
|
+
Success: boolean;
|
|
482
|
+
}
|
|
483
|
+
export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
484
|
+
RunCompanyIntegrationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
485
|
+
RunCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
486
|
+
RunCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
487
|
+
CompanyIntegration(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegration_ | null>;
|
|
488
|
+
ListsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
489
|
+
EmployeeCompanyIntegrationsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
490
|
+
CompanyIntegrationRunsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
491
|
+
CompanyIntegrationRecordMapsArray(companyintegration_: CompanyIntegration_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
492
|
+
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
493
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationInput): Promise<boolean>;
|
|
494
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationInput): Promise<void>;
|
|
495
|
+
}
|
|
496
|
+
export declare class EntityField_ {
|
|
497
|
+
ID: number;
|
|
498
|
+
EntityID: number;
|
|
499
|
+
Sequence: number;
|
|
500
|
+
Name: string;
|
|
501
|
+
DisplayName?: string;
|
|
502
|
+
Description?: string;
|
|
503
|
+
AutoUpdateDescription: boolean;
|
|
504
|
+
IsPrimaryKey: boolean;
|
|
505
|
+
IsUnique: boolean;
|
|
506
|
+
Category?: string;
|
|
507
|
+
Type: string;
|
|
508
|
+
Length?: number;
|
|
509
|
+
Precision?: number;
|
|
510
|
+
Scale?: number;
|
|
511
|
+
AllowsNull: boolean;
|
|
512
|
+
DefaultValue?: string;
|
|
513
|
+
AutoIncrement: boolean;
|
|
514
|
+
ValueListType: string;
|
|
515
|
+
ExtendedType?: string;
|
|
516
|
+
DefaultInView: boolean;
|
|
517
|
+
ViewCellTemplate?: string;
|
|
518
|
+
DefaultColumnWidth?: number;
|
|
519
|
+
AllowUpdateAPI: boolean;
|
|
520
|
+
AllowUpdateInView: boolean;
|
|
521
|
+
IncludeInUserSearchAPI: boolean;
|
|
522
|
+
FullTextSearchEnabled: boolean;
|
|
523
|
+
UserSearchParamFormatAPI?: string;
|
|
524
|
+
IncludeInGeneratedForm: boolean;
|
|
525
|
+
GeneratedFormSection: string;
|
|
526
|
+
IsVirtual: boolean;
|
|
527
|
+
IsNameField: boolean;
|
|
528
|
+
RelatedEntityID?: number;
|
|
529
|
+
RelatedEntityFieldName?: string;
|
|
530
|
+
IncludeRelatedEntityNameFieldInBaseView: boolean;
|
|
531
|
+
RelatedEntityNameFieldMap?: string;
|
|
532
|
+
CreatedAt: Date;
|
|
533
|
+
UpdatedAt: Date;
|
|
534
|
+
Entity: string;
|
|
535
|
+
SchemaName: string;
|
|
536
|
+
BaseTable: string;
|
|
537
|
+
BaseView: string;
|
|
538
|
+
EntityCodeName?: string;
|
|
539
|
+
EntityClassName?: string;
|
|
540
|
+
RelatedEntity?: string;
|
|
541
|
+
RelatedEntitySchemaName?: string;
|
|
542
|
+
RelatedEntityBaseTable?: string;
|
|
543
|
+
RelatedEntityBaseView?: string;
|
|
544
|
+
RelatedEntityCodeName?: string;
|
|
545
|
+
RelatedEntityClassName?: string;
|
|
546
|
+
EntityFieldValuesArray: mj_core_schema_server_object_types.EntityFieldValue_[];
|
|
547
|
+
}
|
|
548
|
+
export declare class CreateEntityFieldInput {
|
|
549
|
+
DisplayName: string;
|
|
550
|
+
Description: string;
|
|
551
|
+
AutoUpdateDescription: boolean;
|
|
552
|
+
IsPrimaryKey: boolean;
|
|
553
|
+
IsUnique: boolean;
|
|
554
|
+
Category: string;
|
|
555
|
+
ValueListType: string;
|
|
556
|
+
ExtendedType: string;
|
|
557
|
+
DefaultInView: boolean;
|
|
558
|
+
ViewCellTemplate: string;
|
|
559
|
+
DefaultColumnWidth: number;
|
|
560
|
+
AllowUpdateAPI: boolean;
|
|
561
|
+
AllowUpdateInView: boolean;
|
|
562
|
+
IncludeInUserSearchAPI: boolean;
|
|
563
|
+
FullTextSearchEnabled: boolean;
|
|
564
|
+
UserSearchParamFormatAPI: string;
|
|
565
|
+
IncludeInGeneratedForm: boolean;
|
|
566
|
+
GeneratedFormSection: string;
|
|
567
|
+
IsNameField: boolean;
|
|
568
|
+
RelatedEntityID: number;
|
|
569
|
+
RelatedEntityFieldName: string;
|
|
570
|
+
IncludeRelatedEntityNameFieldInBaseView: boolean;
|
|
571
|
+
RelatedEntityNameFieldMap: string;
|
|
572
|
+
}
|
|
573
|
+
export declare class UpdateEntityFieldInput {
|
|
574
|
+
ID: number;
|
|
575
|
+
DisplayName: string;
|
|
576
|
+
Description: string;
|
|
577
|
+
AutoUpdateDescription: boolean;
|
|
578
|
+
IsPrimaryKey: boolean;
|
|
579
|
+
IsUnique: boolean;
|
|
580
|
+
Category: string;
|
|
581
|
+
ValueListType: string;
|
|
582
|
+
ExtendedType: string;
|
|
583
|
+
DefaultInView: boolean;
|
|
584
|
+
ViewCellTemplate: string;
|
|
585
|
+
DefaultColumnWidth: number;
|
|
586
|
+
AllowUpdateAPI: boolean;
|
|
587
|
+
AllowUpdateInView: boolean;
|
|
588
|
+
IncludeInUserSearchAPI: boolean;
|
|
589
|
+
FullTextSearchEnabled: boolean;
|
|
590
|
+
UserSearchParamFormatAPI: string;
|
|
591
|
+
IncludeInGeneratedForm: boolean;
|
|
592
|
+
GeneratedFormSection: string;
|
|
593
|
+
IsNameField: boolean;
|
|
594
|
+
RelatedEntityID: number;
|
|
595
|
+
RelatedEntityFieldName: string;
|
|
596
|
+
IncludeRelatedEntityNameFieldInBaseView: boolean;
|
|
597
|
+
RelatedEntityNameFieldMap: string;
|
|
598
|
+
}
|
|
599
|
+
export declare class RunEntityFieldViewResult {
|
|
600
|
+
Results: EntityField_[];
|
|
601
|
+
UserViewRunID?: number;
|
|
602
|
+
RowCount: number;
|
|
603
|
+
TotalRowCount: number;
|
|
604
|
+
ExecutionTime: number;
|
|
605
|
+
ErrorMessage?: string;
|
|
606
|
+
Success: boolean;
|
|
607
|
+
}
|
|
608
|
+
export declare class EntityFieldResolver extends ResolverBase {
|
|
609
|
+
RunEntityFieldViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
610
|
+
RunEntityFieldViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
611
|
+
RunEntityFieldDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
612
|
+
EntityField(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityField_ | null>;
|
|
613
|
+
AllEntityFields({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
614
|
+
EntityFieldValuesArray(entityfield_: EntityField_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
615
|
+
CreateEntityField(input: CreateEntityFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
616
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityFieldInput): Promise<boolean>;
|
|
617
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityFieldInput): Promise<void>;
|
|
618
|
+
UpdateEntityField(input: UpdateEntityFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
619
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityFieldInput): Promise<boolean>;
|
|
620
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityFieldInput): Promise<void>;
|
|
621
|
+
DeleteEntityField(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
622
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
623
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
624
|
+
}
|
|
625
|
+
export declare class Entity_ {
|
|
626
|
+
ID: number;
|
|
627
|
+
ParentID?: number;
|
|
628
|
+
Name: string;
|
|
629
|
+
NameSuffix?: string;
|
|
630
|
+
Description?: string;
|
|
631
|
+
AutoUpdateDescription: boolean;
|
|
632
|
+
BaseTable: string;
|
|
633
|
+
BaseView: string;
|
|
634
|
+
BaseViewGenerated: boolean;
|
|
635
|
+
SchemaName: string;
|
|
636
|
+
VirtualEntity: boolean;
|
|
637
|
+
TrackRecordChanges: boolean;
|
|
638
|
+
AuditRecordAccess: boolean;
|
|
639
|
+
AuditViewRuns: boolean;
|
|
640
|
+
IncludeInAPI: boolean;
|
|
641
|
+
AllowAllRowsAPI: boolean;
|
|
642
|
+
AllowUpdateAPI: boolean;
|
|
643
|
+
AllowCreateAPI: boolean;
|
|
644
|
+
AllowDeleteAPI: boolean;
|
|
645
|
+
CustomResolverAPI: boolean;
|
|
646
|
+
AllowUserSearchAPI: boolean;
|
|
647
|
+
FullTextSearchEnabled: boolean;
|
|
648
|
+
FullTextCatalog?: string;
|
|
649
|
+
FullTextCatalogGenerated: boolean;
|
|
650
|
+
FullTextIndex?: string;
|
|
651
|
+
FullTextIndexGenerated: boolean;
|
|
652
|
+
FullTextSearchFunction?: string;
|
|
653
|
+
FullTextSearchFunctionGenerated: boolean;
|
|
654
|
+
UserViewMaxRows?: number;
|
|
655
|
+
spCreate?: string;
|
|
656
|
+
spUpdate?: string;
|
|
657
|
+
spDelete?: string;
|
|
658
|
+
spCreateGenerated: boolean;
|
|
659
|
+
spUpdateGenerated: boolean;
|
|
660
|
+
spDeleteGenerated: boolean;
|
|
661
|
+
CascadeDeletes: boolean;
|
|
662
|
+
UserFormGenerated: boolean;
|
|
663
|
+
EntityObjectSubclassName?: string;
|
|
664
|
+
EntityObjectSubclassImport?: string;
|
|
665
|
+
CreatedAt: Date;
|
|
666
|
+
UpdatedAt: Date;
|
|
667
|
+
CodeName?: string;
|
|
668
|
+
ClassName?: string;
|
|
669
|
+
BaseTableCodeName?: string;
|
|
670
|
+
ParentEntity?: string;
|
|
671
|
+
ParentBaseTable?: string;
|
|
672
|
+
ParentBaseView?: string;
|
|
673
|
+
EntityFieldsArray: mj_core_schema_server_object_types.EntityField_[];
|
|
674
|
+
EntityPermissionsArray: mj_core_schema_server_object_types.EntityPermission_[];
|
|
675
|
+
EntityRelationshipsArray: mj_core_schema_server_object_types.EntityRelationship_[];
|
|
676
|
+
EntityAIActionsArray: mj_core_schema_server_object_types.EntityAIAction_[];
|
|
677
|
+
UserRecordLogsArray: mj_core_schema_server_object_types.UserRecordLog_[];
|
|
678
|
+
IntegrationURLFormatsArray: mj_core_schema_server_object_types.IntegrationURLFormat_[];
|
|
679
|
+
EntitiesArray: mj_core_schema_server_object_types.Entity_[];
|
|
680
|
+
UserFavoritesArray: mj_core_schema_server_object_types.UserFavorite_[];
|
|
681
|
+
CompanyIntegrationRunDetailsArray: mj_core_schema_server_object_types.CompanyIntegrationRunDetail_[];
|
|
682
|
+
ApplicationEntitiesArray: mj_core_schema_server_object_types.ApplicationEntity_[];
|
|
683
|
+
UserApplicationEntitiesArray: mj_core_schema_server_object_types.UserApplicationEntity_[];
|
|
684
|
+
ListsArray: mj_core_schema_server_object_types.List_[];
|
|
685
|
+
UserViewsArray: mj_core_schema_server_object_types.UserView_[];
|
|
686
|
+
RecordChangesArray: mj_core_schema_server_object_types.RecordChange_[];
|
|
687
|
+
AuditLogsArray: mj_core_schema_server_object_types.AuditLog_[];
|
|
688
|
+
ResourceTypesArray: mj_core_schema_server_object_types.ResourceType_[];
|
|
689
|
+
TaggedItemsArray: mj_core_schema_server_object_types.TaggedItem_[];
|
|
690
|
+
DatasetItemsArray: mj_core_schema_server_object_types.DatasetItem_[];
|
|
691
|
+
CompanyIntegrationRecordMapsArray: mj_core_schema_server_object_types.CompanyIntegrationRecordMap_[];
|
|
692
|
+
RecordMergeLogsArray: mj_core_schema_server_object_types.RecordMergeLog_[];
|
|
693
|
+
QueryFieldsArray: mj_core_schema_server_object_types.QueryField_[];
|
|
694
|
+
ConversationsArray: mj_core_schema_server_object_types.Conversation_[];
|
|
695
|
+
EntityDocumentsArray: mj_core_schema_server_object_types.EntityDocument_[];
|
|
696
|
+
DataContextItemsArray: mj_core_schema_server_object_types.DataContextItem_[];
|
|
697
|
+
UsersArray: mj_core_schema_server_object_types.User_[];
|
|
698
|
+
EntityRecordDocumentsArray: mj_core_schema_server_object_types.EntityRecordDocument_[];
|
|
699
|
+
FileEntityRecordLinksArray: mj_core_schema_server_object_types.FileEntityRecordLink_[];
|
|
700
|
+
}
|
|
701
|
+
export declare class CreateEntityInput {
|
|
702
|
+
ID: number;
|
|
703
|
+
ParentID: number;
|
|
704
|
+
Name: string;
|
|
705
|
+
NameSuffix: string;
|
|
706
|
+
Description: string;
|
|
707
|
+
AutoUpdateDescription: boolean;
|
|
708
|
+
BaseView: string;
|
|
709
|
+
BaseViewGenerated: boolean;
|
|
710
|
+
VirtualEntity: boolean;
|
|
711
|
+
TrackRecordChanges: boolean;
|
|
712
|
+
AuditRecordAccess: boolean;
|
|
713
|
+
AuditViewRuns: boolean;
|
|
714
|
+
IncludeInAPI: boolean;
|
|
715
|
+
AllowAllRowsAPI: boolean;
|
|
716
|
+
AllowUpdateAPI: boolean;
|
|
717
|
+
AllowCreateAPI: boolean;
|
|
718
|
+
AllowDeleteAPI: boolean;
|
|
719
|
+
CustomResolverAPI: boolean;
|
|
720
|
+
AllowUserSearchAPI: boolean;
|
|
721
|
+
FullTextSearchEnabled: boolean;
|
|
722
|
+
FullTextCatalog: string;
|
|
723
|
+
FullTextCatalogGenerated: boolean;
|
|
724
|
+
FullTextIndex: string;
|
|
725
|
+
FullTextIndexGenerated: boolean;
|
|
726
|
+
FullTextSearchFunction: string;
|
|
727
|
+
FullTextSearchFunctionGenerated: boolean;
|
|
728
|
+
UserViewMaxRows: number;
|
|
729
|
+
spCreate: string;
|
|
730
|
+
spUpdate: string;
|
|
731
|
+
spDelete: string;
|
|
732
|
+
spCreateGenerated: boolean;
|
|
733
|
+
spUpdateGenerated: boolean;
|
|
734
|
+
spDeleteGenerated: boolean;
|
|
735
|
+
CascadeDeletes: boolean;
|
|
736
|
+
UserFormGenerated: boolean;
|
|
737
|
+
EntityObjectSubclassName: string;
|
|
738
|
+
EntityObjectSubclassImport: string;
|
|
739
|
+
}
|
|
740
|
+
export declare class UpdateEntityInput {
|
|
741
|
+
ID: number;
|
|
742
|
+
ParentID: number;
|
|
743
|
+
Name: string;
|
|
744
|
+
NameSuffix: string;
|
|
745
|
+
Description: string;
|
|
746
|
+
AutoUpdateDescription: boolean;
|
|
747
|
+
BaseView: string;
|
|
748
|
+
BaseViewGenerated: boolean;
|
|
749
|
+
VirtualEntity: boolean;
|
|
750
|
+
TrackRecordChanges: boolean;
|
|
751
|
+
AuditRecordAccess: boolean;
|
|
752
|
+
AuditViewRuns: boolean;
|
|
753
|
+
IncludeInAPI: boolean;
|
|
754
|
+
AllowAllRowsAPI: boolean;
|
|
755
|
+
AllowUpdateAPI: boolean;
|
|
756
|
+
AllowCreateAPI: boolean;
|
|
757
|
+
AllowDeleteAPI: boolean;
|
|
758
|
+
CustomResolverAPI: boolean;
|
|
759
|
+
AllowUserSearchAPI: boolean;
|
|
760
|
+
FullTextSearchEnabled: boolean;
|
|
761
|
+
FullTextCatalog: string;
|
|
762
|
+
FullTextCatalogGenerated: boolean;
|
|
763
|
+
FullTextIndex: string;
|
|
764
|
+
FullTextIndexGenerated: boolean;
|
|
765
|
+
FullTextSearchFunction: string;
|
|
766
|
+
FullTextSearchFunctionGenerated: boolean;
|
|
767
|
+
UserViewMaxRows: number;
|
|
768
|
+
spCreate: string;
|
|
769
|
+
spUpdate: string;
|
|
770
|
+
spDelete: string;
|
|
771
|
+
spCreateGenerated: boolean;
|
|
772
|
+
spUpdateGenerated: boolean;
|
|
773
|
+
spDeleteGenerated: boolean;
|
|
774
|
+
CascadeDeletes: boolean;
|
|
775
|
+
UserFormGenerated: boolean;
|
|
776
|
+
EntityObjectSubclassName: string;
|
|
777
|
+
EntityObjectSubclassImport: string;
|
|
778
|
+
}
|
|
779
|
+
export declare class RunEntityViewResult {
|
|
780
|
+
Results: Entity_[];
|
|
781
|
+
UserViewRunID?: number;
|
|
782
|
+
RowCount: number;
|
|
783
|
+
TotalRowCount: number;
|
|
784
|
+
ExecutionTime: number;
|
|
785
|
+
ErrorMessage?: string;
|
|
786
|
+
Success: boolean;
|
|
787
|
+
}
|
|
788
|
+
export declare class EntityResolverBase extends ResolverBase {
|
|
789
|
+
RunEntityViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
790
|
+
RunEntityViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
791
|
+
RunEntityDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
792
|
+
Entity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Entity_ | null>;
|
|
793
|
+
AllEntities({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
794
|
+
EntityFieldsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
795
|
+
EntityPermissionsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
796
|
+
EntityRelationshipsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
797
|
+
EntityAIActionsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
798
|
+
UserRecordLogsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
799
|
+
IntegrationURLFormatsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
800
|
+
EntitiesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
801
|
+
UserFavoritesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
802
|
+
CompanyIntegrationRunDetailsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
803
|
+
ApplicationEntitiesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
804
|
+
UserApplicationEntitiesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
805
|
+
ListsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
806
|
+
UserViewsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
807
|
+
RecordChangesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
808
|
+
AuditLogsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
809
|
+
ResourceTypesArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
810
|
+
TaggedItemsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
811
|
+
DatasetItemsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
812
|
+
CompanyIntegrationRecordMapsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
813
|
+
RecordMergeLogsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
814
|
+
QueryFieldsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
815
|
+
ConversationsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
816
|
+
EntityDocumentsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
817
|
+
DataContextItemsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
818
|
+
UsersArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
819
|
+
EntityRecordDocumentsArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
820
|
+
FileEntityRecordLinksArray(entity_: Entity_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
821
|
+
CreateEntity(input: CreateEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
822
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityInput): Promise<boolean>;
|
|
823
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityInput): Promise<void>;
|
|
824
|
+
UpdateEntity(input: UpdateEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
825
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityInput): Promise<boolean>;
|
|
826
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityInput): Promise<void>;
|
|
827
|
+
DeleteEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
828
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
829
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
830
|
+
}
|
|
831
|
+
export declare class User_ {
|
|
832
|
+
ID: number;
|
|
833
|
+
Name: string;
|
|
834
|
+
FirstName?: string;
|
|
835
|
+
LastName?: string;
|
|
836
|
+
Title?: string;
|
|
837
|
+
Email: string;
|
|
838
|
+
Type: string;
|
|
839
|
+
IsActive: boolean;
|
|
840
|
+
LinkedRecordType: string;
|
|
841
|
+
EmployeeID?: number;
|
|
842
|
+
LinkedEntityID?: number;
|
|
843
|
+
LinkedEntityRecordID?: number;
|
|
844
|
+
CreatedAt: Date;
|
|
845
|
+
UpdatedAt: Date;
|
|
846
|
+
FirstLast?: string;
|
|
847
|
+
EmployeeFirstLast?: string;
|
|
848
|
+
EmployeeEmail?: string;
|
|
849
|
+
EmployeeTitle?: string;
|
|
850
|
+
EmployeeSupervisor?: string;
|
|
851
|
+
EmployeeSupervisorEmail?: string;
|
|
852
|
+
UserApplicationsArray: mj_core_schema_server_object_types.UserApplication_[];
|
|
853
|
+
UserRolesArray: mj_core_schema_server_object_types.UserRole_[];
|
|
854
|
+
WorkspacesArray: mj_core_schema_server_object_types.Workspace_[];
|
|
855
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
856
|
+
ReportSnapshotsArray: mj_core_schema_server_object_types.ReportSnapshot_[];
|
|
857
|
+
RecordChangesArray: mj_core_schema_server_object_types.RecordChange_[];
|
|
858
|
+
DashboardsArray: mj_core_schema_server_object_types.Dashboard_[];
|
|
859
|
+
UserViewRunsArray: mj_core_schema_server_object_types.UserViewRun_[];
|
|
860
|
+
AuditLogsArray: mj_core_schema_server_object_types.AuditLog_[];
|
|
861
|
+
ListsArray: mj_core_schema_server_object_types.List_[];
|
|
862
|
+
UserFavoritesArray: mj_core_schema_server_object_types.UserFavorite_[];
|
|
863
|
+
UserRecordLogsArray: mj_core_schema_server_object_types.UserRecordLog_[];
|
|
864
|
+
UserViewsArray: mj_core_schema_server_object_types.UserView_[];
|
|
865
|
+
CompanyIntegrationRunsArray: mj_core_schema_server_object_types.CompanyIntegrationRun_[];
|
|
866
|
+
UserNotificationsArray: mj_core_schema_server_object_types.UserNotification_[];
|
|
867
|
+
ConversationsArray: mj_core_schema_server_object_types.Conversation_[];
|
|
868
|
+
RecordMergeLogsArray: mj_core_schema_server_object_types.RecordMergeLog_[];
|
|
869
|
+
DataContextsArray: mj_core_schema_server_object_types.DataContext_[];
|
|
870
|
+
}
|
|
871
|
+
export declare class CreateUserInput {
|
|
872
|
+
Name: string;
|
|
873
|
+
FirstName: string;
|
|
874
|
+
LastName: string;
|
|
875
|
+
Title: string;
|
|
876
|
+
Email: string;
|
|
877
|
+
Type: string;
|
|
878
|
+
IsActive: boolean;
|
|
879
|
+
LinkedRecordType: string;
|
|
880
|
+
EmployeeID: number;
|
|
881
|
+
LinkedEntityID: number;
|
|
882
|
+
LinkedEntityRecordID: number;
|
|
883
|
+
}
|
|
884
|
+
export declare class UpdateUserInput {
|
|
885
|
+
ID: number;
|
|
886
|
+
Name: string;
|
|
887
|
+
FirstName: string;
|
|
888
|
+
LastName: string;
|
|
889
|
+
Title: string;
|
|
890
|
+
Email: string;
|
|
891
|
+
Type: string;
|
|
892
|
+
IsActive: boolean;
|
|
893
|
+
LinkedRecordType: string;
|
|
894
|
+
EmployeeID: number;
|
|
895
|
+
LinkedEntityID: number;
|
|
896
|
+
LinkedEntityRecordID: number;
|
|
897
|
+
}
|
|
898
|
+
export declare class RunUserViewResult {
|
|
899
|
+
Results: User_[];
|
|
900
|
+
UserViewRunID?: number;
|
|
901
|
+
RowCount: number;
|
|
902
|
+
TotalRowCount: number;
|
|
903
|
+
ExecutionTime: number;
|
|
904
|
+
ErrorMessage?: string;
|
|
905
|
+
Success: boolean;
|
|
906
|
+
}
|
|
907
|
+
export declare class UserResolverBase extends ResolverBase {
|
|
908
|
+
RunUserViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
909
|
+
RunUserViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
910
|
+
RunUserDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
911
|
+
User(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<User_ | null>;
|
|
912
|
+
AllUsers({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
913
|
+
UserApplicationsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
914
|
+
UserRolesArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
915
|
+
WorkspacesArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
916
|
+
ReportsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
917
|
+
ReportSnapshotsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
918
|
+
RecordChangesArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
919
|
+
DashboardsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
920
|
+
UserViewRunsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
921
|
+
AuditLogsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
922
|
+
ListsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
923
|
+
UserFavoritesArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
924
|
+
UserRecordLogsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
925
|
+
UserViewsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
926
|
+
CompanyIntegrationRunsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
927
|
+
UserNotificationsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
928
|
+
ConversationsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
929
|
+
RecordMergeLogsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
930
|
+
DataContextsArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
931
|
+
CreateUser(input: CreateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
932
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserInput): Promise<boolean>;
|
|
933
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserInput): Promise<void>;
|
|
934
|
+
UpdateUser(input: UpdateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
935
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserInput): Promise<boolean>;
|
|
936
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserInput): Promise<void>;
|
|
937
|
+
DeleteUser(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
938
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
939
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
940
|
+
}
|
|
941
|
+
export declare class EntityRelationship_ {
|
|
942
|
+
ID: number;
|
|
943
|
+
EntityID: number;
|
|
944
|
+
RelatedEntityID: number;
|
|
945
|
+
BundleInAPI: boolean;
|
|
946
|
+
IncludeInParentAllQuery: boolean;
|
|
947
|
+
Type: string;
|
|
948
|
+
EntityKeyField?: string;
|
|
949
|
+
RelatedEntityJoinField: string;
|
|
950
|
+
JoinView?: string;
|
|
951
|
+
JoinEntityJoinField?: string;
|
|
952
|
+
JoinEntityInverseJoinField?: string;
|
|
953
|
+
DisplayInForm: boolean;
|
|
954
|
+
DisplayName?: string;
|
|
955
|
+
DisplayUserViewGUID?: string;
|
|
956
|
+
CreatedAt: Date;
|
|
957
|
+
UpdatedAt: Date;
|
|
958
|
+
Entity: string;
|
|
959
|
+
EntityBaseTable: string;
|
|
960
|
+
EntityBaseView: string;
|
|
961
|
+
RelatedEntity: string;
|
|
962
|
+
RelatedEntityBaseTable: string;
|
|
963
|
+
RelatedEntityBaseView: string;
|
|
964
|
+
RelatedEntityClassName?: string;
|
|
965
|
+
RelatedEntityCodeName?: string;
|
|
966
|
+
RelatedEntityBaseTableCodeName?: string;
|
|
967
|
+
DisplayUserViewName?: string;
|
|
968
|
+
DisplayUserViewID?: number;
|
|
969
|
+
}
|
|
970
|
+
export declare class CreateEntityRelationshipInput {
|
|
971
|
+
EntityID: number;
|
|
972
|
+
RelatedEntityID: number;
|
|
973
|
+
BundleInAPI: boolean;
|
|
974
|
+
IncludeInParentAllQuery: boolean;
|
|
975
|
+
Type: string;
|
|
976
|
+
EntityKeyField: string;
|
|
977
|
+
RelatedEntityJoinField: string;
|
|
978
|
+
JoinView: string;
|
|
979
|
+
JoinEntityJoinField: string;
|
|
980
|
+
JoinEntityInverseJoinField: string;
|
|
981
|
+
DisplayInForm: boolean;
|
|
982
|
+
DisplayName: string;
|
|
983
|
+
}
|
|
984
|
+
export declare class UpdateEntityRelationshipInput {
|
|
985
|
+
ID: number;
|
|
986
|
+
EntityID: number;
|
|
987
|
+
RelatedEntityID: number;
|
|
988
|
+
BundleInAPI: boolean;
|
|
989
|
+
IncludeInParentAllQuery: boolean;
|
|
990
|
+
Type: string;
|
|
991
|
+
EntityKeyField: string;
|
|
992
|
+
RelatedEntityJoinField: string;
|
|
993
|
+
JoinView: string;
|
|
994
|
+
JoinEntityJoinField: string;
|
|
995
|
+
JoinEntityInverseJoinField: string;
|
|
996
|
+
DisplayInForm: boolean;
|
|
997
|
+
DisplayName: string;
|
|
998
|
+
}
|
|
999
|
+
export declare class RunEntityRelationshipViewResult {
|
|
1000
|
+
Results: EntityRelationship_[];
|
|
1001
|
+
UserViewRunID?: number;
|
|
1002
|
+
RowCount: number;
|
|
1003
|
+
TotalRowCount: number;
|
|
1004
|
+
ExecutionTime: number;
|
|
1005
|
+
ErrorMessage?: string;
|
|
1006
|
+
Success: boolean;
|
|
1007
|
+
}
|
|
1008
|
+
export declare class EntityRelationshipResolver extends ResolverBase {
|
|
1009
|
+
RunEntityRelationshipViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1010
|
+
RunEntityRelationshipViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1011
|
+
RunEntityRelationshipDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1012
|
+
EntityRelationship(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationship_ | null>;
|
|
1013
|
+
AllEntityRelationships({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1014
|
+
CreateEntityRelationship(input: CreateEntityRelationshipInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1015
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityRelationshipInput): Promise<boolean>;
|
|
1016
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityRelationshipInput): Promise<void>;
|
|
1017
|
+
UpdateEntityRelationship(input: UpdateEntityRelationshipInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1018
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityRelationshipInput): Promise<boolean>;
|
|
1019
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityRelationshipInput): Promise<void>;
|
|
1020
|
+
DeleteEntityRelationship(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1021
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1022
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1023
|
+
}
|
|
1024
|
+
export declare class UserRecordLog_ {
|
|
1025
|
+
ID: number;
|
|
1026
|
+
UserID: number;
|
|
1027
|
+
EntityID: number;
|
|
1028
|
+
RecordID: string;
|
|
1029
|
+
EarliestAt: Date;
|
|
1030
|
+
LatestAt: Date;
|
|
1031
|
+
TotalCount: number;
|
|
1032
|
+
Entity: string;
|
|
1033
|
+
UserName: string;
|
|
1034
|
+
UserFirstLast?: string;
|
|
1035
|
+
UserEmail: string;
|
|
1036
|
+
UserSupervisor?: string;
|
|
1037
|
+
UserSupervisorEmail?: string;
|
|
1038
|
+
}
|
|
1039
|
+
export declare class UpdateUserRecordLogInput {
|
|
1040
|
+
ID: number;
|
|
1041
|
+
UserID: number;
|
|
1042
|
+
EntityID: number;
|
|
1043
|
+
RecordID: string;
|
|
1044
|
+
EarliestAt: Date;
|
|
1045
|
+
LatestAt: Date;
|
|
1046
|
+
TotalCount: number;
|
|
1047
|
+
}
|
|
1048
|
+
export declare class RunUserRecordLogViewResult {
|
|
1049
|
+
Results: UserRecordLog_[];
|
|
1050
|
+
UserViewRunID?: number;
|
|
1051
|
+
RowCount: number;
|
|
1052
|
+
TotalRowCount: number;
|
|
1053
|
+
ExecutionTime: number;
|
|
1054
|
+
ErrorMessage?: string;
|
|
1055
|
+
Success: boolean;
|
|
1056
|
+
}
|
|
1057
|
+
export declare class UserRecordLogResolver extends ResolverBase {
|
|
1058
|
+
RunUserRecordLogViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1059
|
+
RunUserRecordLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1060
|
+
RunUserRecordLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1061
|
+
UserRecordLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRecordLog_ | null>;
|
|
1062
|
+
UpdateUserRecordLog(input: UpdateUserRecordLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1063
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserRecordLogInput): Promise<boolean>;
|
|
1064
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserRecordLogInput): Promise<void>;
|
|
1065
|
+
}
|
|
1066
|
+
export declare class UserView_ {
|
|
1067
|
+
ID: number;
|
|
1068
|
+
UserID: number;
|
|
1069
|
+
EntityID: number;
|
|
1070
|
+
Name: string;
|
|
1071
|
+
GUID: string;
|
|
1072
|
+
Description?: string;
|
|
1073
|
+
CategoryID?: number;
|
|
1074
|
+
IsShared: boolean;
|
|
1075
|
+
IsDefault: boolean;
|
|
1076
|
+
GridState?: string;
|
|
1077
|
+
FilterState?: string;
|
|
1078
|
+
CustomFilterState: boolean;
|
|
1079
|
+
SmartFilterEnabled: boolean;
|
|
1080
|
+
SmartFilterPrompt?: string;
|
|
1081
|
+
SmartFilterWhereClause?: string;
|
|
1082
|
+
SmartFilterExplanation?: string;
|
|
1083
|
+
WhereClause?: string;
|
|
1084
|
+
CustomWhereClause: boolean;
|
|
1085
|
+
SortState?: string;
|
|
1086
|
+
CreatedAt?: Date;
|
|
1087
|
+
UpdatedAt?: Date;
|
|
1088
|
+
UserName: string;
|
|
1089
|
+
UserFirstLast?: string;
|
|
1090
|
+
UserEmail: string;
|
|
1091
|
+
UserType: string;
|
|
1092
|
+
Entity: string;
|
|
1093
|
+
EntityBaseView: string;
|
|
1094
|
+
EntityRelationshipsArray: mj_core_schema_server_object_types.EntityRelationship_[];
|
|
1095
|
+
UserViewRunsArray: mj_core_schema_server_object_types.UserViewRun_[];
|
|
1096
|
+
DataContextItemsArray: mj_core_schema_server_object_types.DataContextItem_[];
|
|
1097
|
+
}
|
|
1098
|
+
export declare class CreateUserViewInput {
|
|
1099
|
+
UserID: number;
|
|
1100
|
+
EntityID: number;
|
|
1101
|
+
Name: string;
|
|
1102
|
+
Description: string;
|
|
1103
|
+
CategoryID: number;
|
|
1104
|
+
IsShared: boolean;
|
|
1105
|
+
IsDefault: boolean;
|
|
1106
|
+
GridState: string;
|
|
1107
|
+
FilterState: string;
|
|
1108
|
+
CustomFilterState: boolean;
|
|
1109
|
+
SmartFilterEnabled: boolean;
|
|
1110
|
+
SmartFilterPrompt: string;
|
|
1111
|
+
SmartFilterWhereClause: string;
|
|
1112
|
+
SmartFilterExplanation: string;
|
|
1113
|
+
WhereClause: string;
|
|
1114
|
+
CustomWhereClause: boolean;
|
|
1115
|
+
SortState: string;
|
|
1116
|
+
}
|
|
1117
|
+
export declare class UpdateUserViewInput {
|
|
1118
|
+
ID: number;
|
|
1119
|
+
UserID: number;
|
|
1120
|
+
EntityID: number;
|
|
1121
|
+
Name: string;
|
|
1122
|
+
Description: string;
|
|
1123
|
+
CategoryID: number;
|
|
1124
|
+
IsShared: boolean;
|
|
1125
|
+
IsDefault: boolean;
|
|
1126
|
+
GridState: string;
|
|
1127
|
+
FilterState: string;
|
|
1128
|
+
CustomFilterState: boolean;
|
|
1129
|
+
SmartFilterEnabled: boolean;
|
|
1130
|
+
SmartFilterPrompt: string;
|
|
1131
|
+
SmartFilterWhereClause: string;
|
|
1132
|
+
SmartFilterExplanation: string;
|
|
1133
|
+
WhereClause: string;
|
|
1134
|
+
CustomWhereClause: boolean;
|
|
1135
|
+
SortState: string;
|
|
1136
|
+
}
|
|
1137
|
+
export declare class RunUserViewViewResult {
|
|
1138
|
+
Results: UserView_[];
|
|
1139
|
+
UserViewRunID?: number;
|
|
1140
|
+
RowCount: number;
|
|
1141
|
+
TotalRowCount: number;
|
|
1142
|
+
ExecutionTime: number;
|
|
1143
|
+
ErrorMessage?: string;
|
|
1144
|
+
Success: boolean;
|
|
1145
|
+
}
|
|
1146
|
+
export declare class UserViewResolverBase extends ResolverBase {
|
|
1147
|
+
RunUserViewViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1148
|
+
RunUserViewViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1149
|
+
RunUserViewDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1150
|
+
UserView(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserView_ | null>;
|
|
1151
|
+
AllUserViews({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1152
|
+
EntityRelationshipsArray(userview_: UserView_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1153
|
+
UserViewRunsArray(userview_: UserView_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1154
|
+
DataContextItemsArray(userview_: UserView_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1155
|
+
CreateUserView(input: CreateUserViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1156
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserViewInput): Promise<boolean>;
|
|
1157
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserViewInput): Promise<void>;
|
|
1158
|
+
UpdateUserView(input: UpdateUserViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1159
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserViewInput): Promise<boolean>;
|
|
1160
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserViewInput): Promise<void>;
|
|
1161
|
+
DeleteUserView(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1162
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1163
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1164
|
+
}
|
|
1165
|
+
export declare class CompanyIntegrationRun_ {
|
|
1166
|
+
ID: number;
|
|
1167
|
+
CompanyIntegrationID: number;
|
|
1168
|
+
RunByUserID: number;
|
|
1169
|
+
StartedAt?: Date;
|
|
1170
|
+
EndedAt?: Date;
|
|
1171
|
+
TotalRecords: number;
|
|
1172
|
+
Comments?: string;
|
|
1173
|
+
RunByUser: string;
|
|
1174
|
+
CompanyIntegrationRunAPILogsArray: mj_core_schema_server_object_types.CompanyIntegrationRunAPILog_[];
|
|
1175
|
+
ErrorLogsArray: mj_core_schema_server_object_types.ErrorLog_[];
|
|
1176
|
+
CompanyIntegrationRunDetailsArray: mj_core_schema_server_object_types.CompanyIntegrationRunDetail_[];
|
|
1177
|
+
}
|
|
1178
|
+
export declare class UpdateCompanyIntegrationRunInput {
|
|
1179
|
+
ID: number;
|
|
1180
|
+
CompanyIntegrationID: number;
|
|
1181
|
+
RunByUserID: number;
|
|
1182
|
+
StartedAt: Date;
|
|
1183
|
+
EndedAt: Date;
|
|
1184
|
+
TotalRecords: number;
|
|
1185
|
+
Comments: string;
|
|
1186
|
+
}
|
|
1187
|
+
export declare class RunCompanyIntegrationRunViewResult {
|
|
1188
|
+
Results: CompanyIntegrationRun_[];
|
|
1189
|
+
UserViewRunID?: number;
|
|
1190
|
+
RowCount: number;
|
|
1191
|
+
TotalRowCount: number;
|
|
1192
|
+
ExecutionTime: number;
|
|
1193
|
+
ErrorMessage?: string;
|
|
1194
|
+
Success: boolean;
|
|
1195
|
+
}
|
|
1196
|
+
export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
1197
|
+
RunCompanyIntegrationRunViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1198
|
+
RunCompanyIntegrationRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1199
|
+
RunCompanyIntegrationRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1200
|
+
CompanyIntegrationRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRun_ | null>;
|
|
1201
|
+
CompanyIntegrationRunAPILogsArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1202
|
+
ErrorLogsArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1203
|
+
CompanyIntegrationRunDetailsArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1204
|
+
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1205
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRunInput): Promise<boolean>;
|
|
1206
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRunInput): Promise<void>;
|
|
1207
|
+
}
|
|
1208
|
+
export declare class CompanyIntegrationRunDetail_ {
|
|
1209
|
+
ID: number;
|
|
1210
|
+
CompanyIntegrationRunID: number;
|
|
1211
|
+
EntityID: number;
|
|
1212
|
+
RecordID: string;
|
|
1213
|
+
Action: string;
|
|
1214
|
+
ExecutedAt: Date;
|
|
1215
|
+
IsSuccess: boolean;
|
|
1216
|
+
Entity: string;
|
|
1217
|
+
RunStartedAt?: Date;
|
|
1218
|
+
RunEndedAt?: Date;
|
|
1219
|
+
ErrorLogsArray: mj_core_schema_server_object_types.ErrorLog_[];
|
|
1220
|
+
}
|
|
1221
|
+
export declare class UpdateCompanyIntegrationRunDetailInput {
|
|
1222
|
+
ID: number;
|
|
1223
|
+
CompanyIntegrationRunID: number;
|
|
1224
|
+
EntityID: number;
|
|
1225
|
+
RecordID: string;
|
|
1226
|
+
Action: string;
|
|
1227
|
+
ExecutedAt: Date;
|
|
1228
|
+
IsSuccess: boolean;
|
|
1229
|
+
}
|
|
1230
|
+
export declare class RunCompanyIntegrationRunDetailViewResult {
|
|
1231
|
+
Results: CompanyIntegrationRunDetail_[];
|
|
1232
|
+
UserViewRunID?: number;
|
|
1233
|
+
RowCount: number;
|
|
1234
|
+
TotalRowCount: number;
|
|
1235
|
+
ExecutionTime: number;
|
|
1236
|
+
ErrorMessage?: string;
|
|
1237
|
+
Success: boolean;
|
|
1238
|
+
}
|
|
1239
|
+
export declare class CompanyIntegrationRunDetailResolver extends ResolverBase {
|
|
1240
|
+
RunCompanyIntegrationRunDetailViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1241
|
+
RunCompanyIntegrationRunDetailViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1242
|
+
RunCompanyIntegrationRunDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1243
|
+
CompanyIntegrationRunDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunDetail_ | null>;
|
|
1244
|
+
ErrorLogsArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1245
|
+
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1246
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRunDetailInput): Promise<boolean>;
|
|
1247
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRunDetailInput): Promise<void>;
|
|
1248
|
+
}
|
|
1249
|
+
export declare class ErrorLog_ {
|
|
1250
|
+
ID: number;
|
|
1251
|
+
CompanyIntegrationRunID?: number;
|
|
1252
|
+
CompanyIntegrationRunDetailID?: number;
|
|
1253
|
+
Code?: string;
|
|
1254
|
+
Message?: string;
|
|
1255
|
+
CreatedAt: Date;
|
|
1256
|
+
CreatedBy?: string;
|
|
1257
|
+
Status?: string;
|
|
1258
|
+
Category?: string;
|
|
1259
|
+
Details?: string;
|
|
1260
|
+
}
|
|
1261
|
+
export declare class UpdateErrorLogInput {
|
|
1262
|
+
ID: number;
|
|
1263
|
+
CompanyIntegrationRunID: number;
|
|
1264
|
+
CompanyIntegrationRunDetailID: number;
|
|
1265
|
+
Code: string;
|
|
1266
|
+
Message: string;
|
|
1267
|
+
CreatedBy: string;
|
|
1268
|
+
Status: string;
|
|
1269
|
+
Category: string;
|
|
1270
|
+
Details: string;
|
|
1271
|
+
}
|
|
1272
|
+
export declare class RunErrorLogViewResult {
|
|
1273
|
+
Results: ErrorLog_[];
|
|
1274
|
+
UserViewRunID?: number;
|
|
1275
|
+
RowCount: number;
|
|
1276
|
+
TotalRowCount: number;
|
|
1277
|
+
ExecutionTime: number;
|
|
1278
|
+
ErrorMessage?: string;
|
|
1279
|
+
Success: boolean;
|
|
1280
|
+
}
|
|
1281
|
+
export declare class ErrorLogResolver extends ResolverBase {
|
|
1282
|
+
RunErrorLogViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1283
|
+
RunErrorLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1284
|
+
RunErrorLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1285
|
+
ErrorLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ErrorLog_ | null>;
|
|
1286
|
+
UpdateErrorLog(input: UpdateErrorLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1287
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateErrorLogInput): Promise<boolean>;
|
|
1288
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateErrorLogInput): Promise<void>;
|
|
1289
|
+
}
|
|
1290
|
+
export declare class Application_ {
|
|
1291
|
+
ID: number;
|
|
1292
|
+
Name: string;
|
|
1293
|
+
Description?: string;
|
|
1294
|
+
CreatedAt: Date;
|
|
1295
|
+
UpdatedAt: Date;
|
|
1296
|
+
ApplicationEntitiesArray: mj_core_schema_server_object_types.ApplicationEntity_[];
|
|
1297
|
+
UserApplicationsArray: mj_core_schema_server_object_types.UserApplication_[];
|
|
1298
|
+
}
|
|
1299
|
+
export declare class UpdateApplicationInput {
|
|
1300
|
+
ID: number;
|
|
1301
|
+
Name: string;
|
|
1302
|
+
Description: string;
|
|
1303
|
+
}
|
|
1304
|
+
export declare class RunApplicationViewResult {
|
|
1305
|
+
Results: Application_[];
|
|
1306
|
+
UserViewRunID?: number;
|
|
1307
|
+
RowCount: number;
|
|
1308
|
+
TotalRowCount: number;
|
|
1309
|
+
ExecutionTime: number;
|
|
1310
|
+
ErrorMessage?: string;
|
|
1311
|
+
Success: boolean;
|
|
1312
|
+
}
|
|
1313
|
+
export declare class ApplicationResolver extends ResolverBase {
|
|
1314
|
+
RunApplicationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1315
|
+
RunApplicationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1316
|
+
RunApplicationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1317
|
+
Application(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Application_ | null>;
|
|
1318
|
+
AllApplications({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1319
|
+
ApplicationEntitiesArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1320
|
+
UserApplicationsArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1321
|
+
UpdateApplication(input: UpdateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1322
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateApplicationInput): Promise<boolean>;
|
|
1323
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateApplicationInput): Promise<void>;
|
|
1324
|
+
}
|
|
1325
|
+
export declare class ApplicationEntity_ {
|
|
1326
|
+
ID: number;
|
|
1327
|
+
ApplicationName?: string;
|
|
1328
|
+
EntityID: number;
|
|
1329
|
+
Sequence: number;
|
|
1330
|
+
DefaultForNewUser: boolean;
|
|
1331
|
+
CreatedAt: Date;
|
|
1332
|
+
UpdatedAt: Date;
|
|
1333
|
+
Application: string;
|
|
1334
|
+
Entity: string;
|
|
1335
|
+
EntityBaseTable: string;
|
|
1336
|
+
EntityCodeName?: string;
|
|
1337
|
+
EntityClassName?: string;
|
|
1338
|
+
EntityBaseTableCodeName?: string;
|
|
1339
|
+
}
|
|
1340
|
+
export declare class CreateApplicationEntityInput {
|
|
1341
|
+
ApplicationName: string;
|
|
1342
|
+
EntityID: number;
|
|
1343
|
+
Sequence: number;
|
|
1344
|
+
DefaultForNewUser: boolean;
|
|
1345
|
+
}
|
|
1346
|
+
export declare class UpdateApplicationEntityInput {
|
|
1347
|
+
ID: number;
|
|
1348
|
+
ApplicationName: string;
|
|
1349
|
+
EntityID: number;
|
|
1350
|
+
Sequence: number;
|
|
1351
|
+
DefaultForNewUser: boolean;
|
|
1352
|
+
}
|
|
1353
|
+
export declare class RunApplicationEntityViewResult {
|
|
1354
|
+
Results: ApplicationEntity_[];
|
|
1355
|
+
UserViewRunID?: number;
|
|
1356
|
+
RowCount: number;
|
|
1357
|
+
TotalRowCount: number;
|
|
1358
|
+
ExecutionTime: number;
|
|
1359
|
+
ErrorMessage?: string;
|
|
1360
|
+
Success: boolean;
|
|
1361
|
+
}
|
|
1362
|
+
export declare class ApplicationEntityResolver extends ResolverBase {
|
|
1363
|
+
RunApplicationEntityViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1364
|
+
RunApplicationEntityViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1365
|
+
RunApplicationEntityDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1366
|
+
ApplicationEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ApplicationEntity_ | null>;
|
|
1367
|
+
CreateApplicationEntity(input: CreateApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1368
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateApplicationEntityInput): Promise<boolean>;
|
|
1369
|
+
protected AfterCreate(dataSource: DataSource, input: CreateApplicationEntityInput): Promise<void>;
|
|
1370
|
+
UpdateApplicationEntity(input: UpdateApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1371
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateApplicationEntityInput): Promise<boolean>;
|
|
1372
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateApplicationEntityInput): Promise<void>;
|
|
1373
|
+
DeleteApplicationEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1374
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1375
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1376
|
+
}
|
|
1377
|
+
export declare class EntityPermission_ {
|
|
1378
|
+
ID: number;
|
|
1379
|
+
EntityID: number;
|
|
1380
|
+
RoleName?: string;
|
|
1381
|
+
CanCreate: boolean;
|
|
1382
|
+
CanRead: boolean;
|
|
1383
|
+
CanUpdate: boolean;
|
|
1384
|
+
CanDelete: boolean;
|
|
1385
|
+
ReadRLSFilterID?: number;
|
|
1386
|
+
CreateRLSFilterID?: number;
|
|
1387
|
+
UpdateRLSFilterID?: number;
|
|
1388
|
+
DeleteRLSFilterID?: number;
|
|
1389
|
+
CreatedAt: Date;
|
|
1390
|
+
UpdatedAt: Date;
|
|
1391
|
+
Entity: string;
|
|
1392
|
+
RoleSQLName: string;
|
|
1393
|
+
CreateRLSFilter?: string;
|
|
1394
|
+
ReadRLSFilter?: string;
|
|
1395
|
+
UpdateRLSFilter?: string;
|
|
1396
|
+
DeleteRLSFilter?: string;
|
|
1397
|
+
}
|
|
1398
|
+
export declare class CreateEntityPermissionInput {
|
|
1399
|
+
EntityID: number;
|
|
1400
|
+
RoleName: string;
|
|
1401
|
+
CanCreate: boolean;
|
|
1402
|
+
CanRead: boolean;
|
|
1403
|
+
CanUpdate: boolean;
|
|
1404
|
+
CanDelete: boolean;
|
|
1405
|
+
ReadRLSFilterID: number;
|
|
1406
|
+
CreateRLSFilterID: number;
|
|
1407
|
+
UpdateRLSFilterID: number;
|
|
1408
|
+
DeleteRLSFilterID: number;
|
|
1409
|
+
}
|
|
1410
|
+
export declare class UpdateEntityPermissionInput {
|
|
1411
|
+
ID: number;
|
|
1412
|
+
EntityID: number;
|
|
1413
|
+
RoleName: string;
|
|
1414
|
+
CanCreate: boolean;
|
|
1415
|
+
CanRead: boolean;
|
|
1416
|
+
CanUpdate: boolean;
|
|
1417
|
+
CanDelete: boolean;
|
|
1418
|
+
ReadRLSFilterID: number;
|
|
1419
|
+
CreateRLSFilterID: number;
|
|
1420
|
+
UpdateRLSFilterID: number;
|
|
1421
|
+
DeleteRLSFilterID: number;
|
|
1422
|
+
}
|
|
1423
|
+
export declare class RunEntityPermissionViewResult {
|
|
1424
|
+
Results: EntityPermission_[];
|
|
1425
|
+
UserViewRunID?: number;
|
|
1426
|
+
RowCount: number;
|
|
1427
|
+
TotalRowCount: number;
|
|
1428
|
+
ExecutionTime: number;
|
|
1429
|
+
ErrorMessage?: string;
|
|
1430
|
+
Success: boolean;
|
|
1431
|
+
}
|
|
1432
|
+
export declare class EntityPermissionResolver extends ResolverBase {
|
|
1433
|
+
RunEntityPermissionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1434
|
+
RunEntityPermissionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1435
|
+
RunEntityPermissionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1436
|
+
EntityPermission(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityPermission_ | null>;
|
|
1437
|
+
AllEntityPermissions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1438
|
+
CreateEntityPermission(input: CreateEntityPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1439
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityPermissionInput): Promise<boolean>;
|
|
1440
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityPermissionInput): Promise<void>;
|
|
1441
|
+
UpdateEntityPermission(input: UpdateEntityPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1442
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityPermissionInput): Promise<boolean>;
|
|
1443
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityPermissionInput): Promise<void>;
|
|
1444
|
+
DeleteEntityPermission(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1445
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1446
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1447
|
+
}
|
|
1448
|
+
export declare class UserApplicationEntity_ {
|
|
1449
|
+
ID: number;
|
|
1450
|
+
UserApplicationID: number;
|
|
1451
|
+
EntityID: number;
|
|
1452
|
+
Sequence: number;
|
|
1453
|
+
Application: string;
|
|
1454
|
+
User: string;
|
|
1455
|
+
Entity: string;
|
|
1456
|
+
}
|
|
1457
|
+
export declare class CreateUserApplicationEntityInput {
|
|
1458
|
+
UserApplicationID: number;
|
|
1459
|
+
EntityID: number;
|
|
1460
|
+
Sequence: number;
|
|
1461
|
+
}
|
|
1462
|
+
export declare class UpdateUserApplicationEntityInput {
|
|
1463
|
+
ID: number;
|
|
1464
|
+
UserApplicationID: number;
|
|
1465
|
+
EntityID: number;
|
|
1466
|
+
Sequence: number;
|
|
1467
|
+
}
|
|
1468
|
+
export declare class RunUserApplicationEntityViewResult {
|
|
1469
|
+
Results: UserApplicationEntity_[];
|
|
1470
|
+
UserViewRunID?: number;
|
|
1471
|
+
RowCount: number;
|
|
1472
|
+
TotalRowCount: number;
|
|
1473
|
+
ExecutionTime: number;
|
|
1474
|
+
ErrorMessage?: string;
|
|
1475
|
+
Success: boolean;
|
|
1476
|
+
}
|
|
1477
|
+
export declare class UserApplicationEntityResolver extends ResolverBase {
|
|
1478
|
+
RunUserApplicationEntityViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1479
|
+
RunUserApplicationEntityViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1480
|
+
RunUserApplicationEntityDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1481
|
+
UserApplicationEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplicationEntity_ | null>;
|
|
1482
|
+
CreateUserApplicationEntity(input: CreateUserApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1483
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserApplicationEntityInput): Promise<boolean>;
|
|
1484
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserApplicationEntityInput): Promise<void>;
|
|
1485
|
+
UpdateUserApplicationEntity(input: UpdateUserApplicationEntityInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1486
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserApplicationEntityInput): Promise<boolean>;
|
|
1487
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserApplicationEntityInput): Promise<void>;
|
|
1488
|
+
DeleteUserApplicationEntity(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1489
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1490
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1491
|
+
}
|
|
1492
|
+
export declare class UserApplication_ {
|
|
1493
|
+
ID: number;
|
|
1494
|
+
UserID: number;
|
|
1495
|
+
ApplicationID: number;
|
|
1496
|
+
Sequence: number;
|
|
1497
|
+
IsActive: boolean;
|
|
1498
|
+
User: string;
|
|
1499
|
+
Application: string;
|
|
1500
|
+
UserApplicationEntitiesArray: mj_core_schema_server_object_types.UserApplicationEntity_[];
|
|
1501
|
+
}
|
|
1502
|
+
export declare class UpdateUserApplicationInput {
|
|
1503
|
+
ID: number;
|
|
1504
|
+
UserID: number;
|
|
1505
|
+
ApplicationID: number;
|
|
1506
|
+
Sequence: number;
|
|
1507
|
+
IsActive: boolean;
|
|
1508
|
+
}
|
|
1509
|
+
export declare class RunUserApplicationViewResult {
|
|
1510
|
+
Results: UserApplication_[];
|
|
1511
|
+
UserViewRunID?: number;
|
|
1512
|
+
RowCount: number;
|
|
1513
|
+
TotalRowCount: number;
|
|
1514
|
+
ExecutionTime: number;
|
|
1515
|
+
ErrorMessage?: string;
|
|
1516
|
+
Success: boolean;
|
|
1517
|
+
}
|
|
1518
|
+
export declare class UserApplicationResolver extends ResolverBase {
|
|
1519
|
+
RunUserApplicationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1520
|
+
RunUserApplicationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1521
|
+
RunUserApplicationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1522
|
+
UserApplication(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplication_ | null>;
|
|
1523
|
+
UserApplicationEntitiesArray(userapplication_: UserApplication_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1524
|
+
UpdateUserApplication(input: UpdateUserApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1525
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserApplicationInput): Promise<boolean>;
|
|
1526
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserApplicationInput): Promise<void>;
|
|
1527
|
+
DeleteUserApplication(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1528
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1529
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1530
|
+
}
|
|
1531
|
+
export declare class CompanyIntegrationRunAPILog_ {
|
|
1532
|
+
ID: number;
|
|
1533
|
+
CompanyIntegrationRunID: number;
|
|
1534
|
+
ExecutedAt: Date;
|
|
1535
|
+
IsSuccess: boolean;
|
|
1536
|
+
RequestMethod?: string;
|
|
1537
|
+
URL?: string;
|
|
1538
|
+
Parameters?: string;
|
|
1539
|
+
}
|
|
1540
|
+
export declare class UpdateCompanyIntegrationRunAPILogInput {
|
|
1541
|
+
ID: number;
|
|
1542
|
+
CompanyIntegrationRunID: number;
|
|
1543
|
+
ExecutedAt: Date;
|
|
1544
|
+
IsSuccess: boolean;
|
|
1545
|
+
RequestMethod: string;
|
|
1546
|
+
URL: string;
|
|
1547
|
+
Parameters: string;
|
|
1548
|
+
}
|
|
1549
|
+
export declare class RunCompanyIntegrationRunAPILogViewResult {
|
|
1550
|
+
Results: CompanyIntegrationRunAPILog_[];
|
|
1551
|
+
UserViewRunID?: number;
|
|
1552
|
+
RowCount: number;
|
|
1553
|
+
TotalRowCount: number;
|
|
1554
|
+
ExecutionTime: number;
|
|
1555
|
+
ErrorMessage?: string;
|
|
1556
|
+
Success: boolean;
|
|
1557
|
+
}
|
|
1558
|
+
export declare class CompanyIntegrationRunAPILogResolver extends ResolverBase {
|
|
1559
|
+
RunCompanyIntegrationRunAPILogViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1560
|
+
RunCompanyIntegrationRunAPILogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1561
|
+
RunCompanyIntegrationRunAPILogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1562
|
+
CompanyIntegrationRunAPILog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunAPILog_ | null>;
|
|
1563
|
+
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1564
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRunAPILogInput): Promise<boolean>;
|
|
1565
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRunAPILogInput): Promise<void>;
|
|
1566
|
+
}
|
|
1567
|
+
export declare class List_ {
|
|
1568
|
+
ID: number;
|
|
1569
|
+
Name: string;
|
|
1570
|
+
Description?: string;
|
|
1571
|
+
EntityID?: number;
|
|
1572
|
+
UserID: number;
|
|
1573
|
+
ExternalSystemRecordID?: string;
|
|
1574
|
+
CompanyIntegrationID?: number;
|
|
1575
|
+
CreatedAt: Date;
|
|
1576
|
+
UpdatedAt: Date;
|
|
1577
|
+
Entity?: string;
|
|
1578
|
+
User: string;
|
|
1579
|
+
ListDetailsArray: mj_core_schema_server_object_types.ListDetail_[];
|
|
1580
|
+
}
|
|
1581
|
+
export declare class CreateListInput {
|
|
1582
|
+
Name: string;
|
|
1583
|
+
Description: string;
|
|
1584
|
+
EntityID: number;
|
|
1585
|
+
UserID: number;
|
|
1586
|
+
ExternalSystemRecordID: string;
|
|
1587
|
+
CompanyIntegrationID: number;
|
|
1588
|
+
}
|
|
1589
|
+
export declare class UpdateListInput {
|
|
1590
|
+
ID: number;
|
|
1591
|
+
Name: string;
|
|
1592
|
+
Description: string;
|
|
1593
|
+
EntityID: number;
|
|
1594
|
+
UserID: number;
|
|
1595
|
+
ExternalSystemRecordID: string;
|
|
1596
|
+
CompanyIntegrationID: number;
|
|
1597
|
+
}
|
|
1598
|
+
export declare class RunListViewResult {
|
|
1599
|
+
Results: List_[];
|
|
1600
|
+
UserViewRunID?: number;
|
|
1601
|
+
RowCount: number;
|
|
1602
|
+
TotalRowCount: number;
|
|
1603
|
+
ExecutionTime: number;
|
|
1604
|
+
ErrorMessage?: string;
|
|
1605
|
+
Success: boolean;
|
|
1606
|
+
}
|
|
1607
|
+
export declare class ListResolver extends ResolverBase {
|
|
1608
|
+
RunListViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1609
|
+
RunListViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1610
|
+
RunListDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1611
|
+
List(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<List_ | null>;
|
|
1612
|
+
ListDetailsArray(list_: List_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1613
|
+
CreateList(input: CreateListInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1614
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateListInput): Promise<boolean>;
|
|
1615
|
+
protected AfterCreate(dataSource: DataSource, input: CreateListInput): Promise<void>;
|
|
1616
|
+
UpdateList(input: UpdateListInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1617
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateListInput): Promise<boolean>;
|
|
1618
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateListInput): Promise<void>;
|
|
1619
|
+
DeleteList(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1620
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1621
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1622
|
+
}
|
|
1623
|
+
export declare class ListDetail_ {
|
|
1624
|
+
ID: number;
|
|
1625
|
+
ListID: number;
|
|
1626
|
+
RecordID: string;
|
|
1627
|
+
Sequence: number;
|
|
1628
|
+
}
|
|
1629
|
+
export declare class CreateListDetailInput {
|
|
1630
|
+
ListID: number;
|
|
1631
|
+
RecordID: string;
|
|
1632
|
+
Sequence: number;
|
|
1633
|
+
}
|
|
1634
|
+
export declare class UpdateListDetailInput {
|
|
1635
|
+
ID: number;
|
|
1636
|
+
ListID: number;
|
|
1637
|
+
RecordID: string;
|
|
1638
|
+
Sequence: number;
|
|
1639
|
+
}
|
|
1640
|
+
export declare class RunListDetailViewResult {
|
|
1641
|
+
Results: ListDetail_[];
|
|
1642
|
+
UserViewRunID?: number;
|
|
1643
|
+
RowCount: number;
|
|
1644
|
+
TotalRowCount: number;
|
|
1645
|
+
ExecutionTime: number;
|
|
1646
|
+
ErrorMessage?: string;
|
|
1647
|
+
Success: boolean;
|
|
1648
|
+
}
|
|
1649
|
+
export declare class ListDetailResolver extends ResolverBase {
|
|
1650
|
+
RunListDetailViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1651
|
+
RunListDetailViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1652
|
+
RunListDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1653
|
+
ListDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ListDetail_ | null>;
|
|
1654
|
+
CreateListDetail(input: CreateListDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1655
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateListDetailInput): Promise<boolean>;
|
|
1656
|
+
protected AfterCreate(dataSource: DataSource, input: CreateListDetailInput): Promise<void>;
|
|
1657
|
+
UpdateListDetail(input: UpdateListDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1658
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateListDetailInput): Promise<boolean>;
|
|
1659
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateListDetailInput): Promise<void>;
|
|
1660
|
+
DeleteListDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1661
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1662
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1663
|
+
}
|
|
1664
|
+
export declare class UserViewRun_ {
|
|
1665
|
+
ID: number;
|
|
1666
|
+
UserViewID: number;
|
|
1667
|
+
RunAt: Date;
|
|
1668
|
+
RunByUserID: number;
|
|
1669
|
+
UserView: string;
|
|
1670
|
+
RunByUser: string;
|
|
1671
|
+
UserViewRunDetailsArray: mj_core_schema_server_object_types.UserViewRunDetail_[];
|
|
1672
|
+
}
|
|
1673
|
+
export declare class CreateUserViewRunInput {
|
|
1674
|
+
UserViewID: number;
|
|
1675
|
+
RunAt: Date;
|
|
1676
|
+
RunByUserID: number;
|
|
1677
|
+
}
|
|
1678
|
+
export declare class UpdateUserViewRunInput {
|
|
1679
|
+
ID: number;
|
|
1680
|
+
UserViewID: number;
|
|
1681
|
+
RunAt: Date;
|
|
1682
|
+
RunByUserID: number;
|
|
1683
|
+
}
|
|
1684
|
+
export declare class RunUserViewRunViewResult {
|
|
1685
|
+
Results: UserViewRun_[];
|
|
1686
|
+
UserViewRunID?: number;
|
|
1687
|
+
RowCount: number;
|
|
1688
|
+
TotalRowCount: number;
|
|
1689
|
+
ExecutionTime: number;
|
|
1690
|
+
ErrorMessage?: string;
|
|
1691
|
+
Success: boolean;
|
|
1692
|
+
}
|
|
1693
|
+
export declare class UserViewRunResolver extends ResolverBase {
|
|
1694
|
+
RunUserViewRunViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1695
|
+
RunUserViewRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1696
|
+
RunUserViewRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1697
|
+
UserViewRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRun_ | null>;
|
|
1698
|
+
UserViewRunDetailsArray(userviewrun_: UserViewRun_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1699
|
+
CreateUserViewRun(input: CreateUserViewRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1700
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserViewRunInput): Promise<boolean>;
|
|
1701
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserViewRunInput): Promise<void>;
|
|
1702
|
+
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1703
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserViewRunInput): Promise<boolean>;
|
|
1704
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserViewRunInput): Promise<void>;
|
|
1705
|
+
}
|
|
1706
|
+
export declare class UserViewRunDetail_ {
|
|
1707
|
+
ID: number;
|
|
1708
|
+
UserViewRunID: number;
|
|
1709
|
+
RecordID: string;
|
|
1710
|
+
UserViewID: number;
|
|
1711
|
+
EntityID: number;
|
|
1712
|
+
}
|
|
1713
|
+
export declare class CreateUserViewRunDetailInput {
|
|
1714
|
+
UserViewRunID: number;
|
|
1715
|
+
RecordID: string;
|
|
1716
|
+
}
|
|
1717
|
+
export declare class UpdateUserViewRunDetailInput {
|
|
1718
|
+
ID: number;
|
|
1719
|
+
UserViewRunID: number;
|
|
1720
|
+
RecordID: string;
|
|
1721
|
+
}
|
|
1722
|
+
export declare class RunUserViewRunDetailViewResult {
|
|
1723
|
+
Results: UserViewRunDetail_[];
|
|
1724
|
+
UserViewRunID?: number;
|
|
1725
|
+
RowCount: number;
|
|
1726
|
+
TotalRowCount: number;
|
|
1727
|
+
ExecutionTime: number;
|
|
1728
|
+
ErrorMessage?: string;
|
|
1729
|
+
Success: boolean;
|
|
1730
|
+
}
|
|
1731
|
+
export declare class UserViewRunDetailResolver extends ResolverBase {
|
|
1732
|
+
RunUserViewRunDetailViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1733
|
+
RunUserViewRunDetailViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1734
|
+
RunUserViewRunDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1735
|
+
UserViewRunDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRunDetail_ | null>;
|
|
1736
|
+
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1737
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserViewRunDetailInput): Promise<boolean>;
|
|
1738
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserViewRunDetailInput): Promise<void>;
|
|
1739
|
+
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1740
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserViewRunDetailInput): Promise<boolean>;
|
|
1741
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserViewRunDetailInput): Promise<void>;
|
|
1742
|
+
}
|
|
1743
|
+
export declare class WorkflowRun_ {
|
|
1744
|
+
ID: number;
|
|
1745
|
+
WorkflowName: string;
|
|
1746
|
+
ExternalSystemRecordID: string;
|
|
1747
|
+
StartedAt: Date;
|
|
1748
|
+
EndedAt?: Date;
|
|
1749
|
+
Status: string;
|
|
1750
|
+
Results?: string;
|
|
1751
|
+
Workflow: string;
|
|
1752
|
+
WorkflowEngineName: string;
|
|
1753
|
+
}
|
|
1754
|
+
export declare class UpdateWorkflowRunInput {
|
|
1755
|
+
ID: number;
|
|
1756
|
+
WorkflowName: string;
|
|
1757
|
+
ExternalSystemRecordID: string;
|
|
1758
|
+
StartedAt: Date;
|
|
1759
|
+
EndedAt: Date;
|
|
1760
|
+
Status: string;
|
|
1761
|
+
Results: string;
|
|
1762
|
+
}
|
|
1763
|
+
export declare class RunWorkflowRunViewResult {
|
|
1764
|
+
Results: WorkflowRun_[];
|
|
1765
|
+
UserViewRunID?: number;
|
|
1766
|
+
RowCount: number;
|
|
1767
|
+
TotalRowCount: number;
|
|
1768
|
+
ExecutionTime: number;
|
|
1769
|
+
ErrorMessage?: string;
|
|
1770
|
+
Success: boolean;
|
|
1771
|
+
}
|
|
1772
|
+
export declare class WorkflowRunResolver extends ResolverBase {
|
|
1773
|
+
RunWorkflowRunViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1774
|
+
RunWorkflowRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1775
|
+
RunWorkflowRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1776
|
+
WorkflowRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowRun_ | null>;
|
|
1777
|
+
UpdateWorkflowRun(input: UpdateWorkflowRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1778
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateWorkflowRunInput): Promise<boolean>;
|
|
1779
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateWorkflowRunInput): Promise<void>;
|
|
1780
|
+
}
|
|
1781
|
+
export declare class Workflow_ {
|
|
1782
|
+
ID: number;
|
|
1783
|
+
Name: string;
|
|
1784
|
+
Description?: string;
|
|
1785
|
+
WorkflowEngineName: string;
|
|
1786
|
+
CompanyName: string;
|
|
1787
|
+
ExternalSystemRecordID: string;
|
|
1788
|
+
CreatedAt: Date;
|
|
1789
|
+
UpdatedAt: Date;
|
|
1790
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
1791
|
+
WorkflowRunsArray: mj_core_schema_server_object_types.WorkflowRun_[];
|
|
1792
|
+
}
|
|
1793
|
+
export declare class UpdateWorkflowInput {
|
|
1794
|
+
ID: number;
|
|
1795
|
+
Name: string;
|
|
1796
|
+
Description: string;
|
|
1797
|
+
WorkflowEngineName: string;
|
|
1798
|
+
CompanyName: string;
|
|
1799
|
+
ExternalSystemRecordID: string;
|
|
1800
|
+
}
|
|
1801
|
+
export declare class RunWorkflowViewResult {
|
|
1802
|
+
Results: Workflow_[];
|
|
1803
|
+
UserViewRunID?: number;
|
|
1804
|
+
RowCount: number;
|
|
1805
|
+
TotalRowCount: number;
|
|
1806
|
+
ExecutionTime: number;
|
|
1807
|
+
ErrorMessage?: string;
|
|
1808
|
+
Success: boolean;
|
|
1809
|
+
}
|
|
1810
|
+
export declare class WorkflowResolver extends ResolverBase {
|
|
1811
|
+
RunWorkflowViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1812
|
+
RunWorkflowViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1813
|
+
RunWorkflowDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1814
|
+
Workflow(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workflow_ | null>;
|
|
1815
|
+
ReportsArray(workflow_: Workflow_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1816
|
+
WorkflowRunsArray(workflow_: Workflow_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1817
|
+
UpdateWorkflow(input: UpdateWorkflowInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1818
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateWorkflowInput): Promise<boolean>;
|
|
1819
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateWorkflowInput): Promise<void>;
|
|
1820
|
+
}
|
|
1821
|
+
export declare class WorkflowEngine_ {
|
|
1822
|
+
ID: number;
|
|
1823
|
+
Name: string;
|
|
1824
|
+
Description?: string;
|
|
1825
|
+
DriverPath: string;
|
|
1826
|
+
DriverClass: string;
|
|
1827
|
+
CreatedAt: Date;
|
|
1828
|
+
UpdatedAt: Date;
|
|
1829
|
+
WorkflowsArray: mj_core_schema_server_object_types.Workflow_[];
|
|
1830
|
+
}
|
|
1831
|
+
export declare class UpdateWorkflowEngineInput {
|
|
1832
|
+
ID: number;
|
|
1833
|
+
Name: string;
|
|
1834
|
+
Description: string;
|
|
1835
|
+
DriverPath: string;
|
|
1836
|
+
DriverClass: string;
|
|
1837
|
+
}
|
|
1838
|
+
export declare class RunWorkflowEngineViewResult {
|
|
1839
|
+
Results: WorkflowEngine_[];
|
|
1840
|
+
UserViewRunID?: number;
|
|
1841
|
+
RowCount: number;
|
|
1842
|
+
TotalRowCount: number;
|
|
1843
|
+
ExecutionTime: number;
|
|
1844
|
+
ErrorMessage?: string;
|
|
1845
|
+
Success: boolean;
|
|
1846
|
+
}
|
|
1847
|
+
export declare class WorkflowEngineResolver extends ResolverBase {
|
|
1848
|
+
RunWorkflowEngineViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1849
|
+
RunWorkflowEngineViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1850
|
+
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1851
|
+
WorkflowEngine(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowEngine_ | null>;
|
|
1852
|
+
WorkflowsArray(workflowengine_: WorkflowEngine_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1853
|
+
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1854
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateWorkflowEngineInput): Promise<boolean>;
|
|
1855
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateWorkflowEngineInput): Promise<void>;
|
|
1856
|
+
}
|
|
1857
|
+
export declare class RecordChange_ {
|
|
1858
|
+
ID: number;
|
|
1859
|
+
EntityID: number;
|
|
1860
|
+
RecordID: string;
|
|
1861
|
+
UserID: number;
|
|
1862
|
+
ChangedAt: Date;
|
|
1863
|
+
ChangesJSON: string;
|
|
1864
|
+
ChangesDescription: string;
|
|
1865
|
+
FullRecordJSON: string;
|
|
1866
|
+
Status: string;
|
|
1867
|
+
Comments?: string;
|
|
1868
|
+
Entity: string;
|
|
1869
|
+
User: string;
|
|
1870
|
+
}
|
|
1871
|
+
export declare class CreateRecordChangeInput {
|
|
1872
|
+
EntityID: number;
|
|
1873
|
+
RecordID: string;
|
|
1874
|
+
UserID: number;
|
|
1875
|
+
ChangedAt: Date;
|
|
1876
|
+
ChangesJSON: string;
|
|
1877
|
+
ChangesDescription: string;
|
|
1878
|
+
FullRecordJSON: string;
|
|
1879
|
+
Status: string;
|
|
1880
|
+
Comments: string;
|
|
1881
|
+
}
|
|
1882
|
+
export declare class RunRecordChangeViewResult {
|
|
1883
|
+
Results: RecordChange_[];
|
|
1884
|
+
UserViewRunID?: number;
|
|
1885
|
+
RowCount: number;
|
|
1886
|
+
TotalRowCount: number;
|
|
1887
|
+
ExecutionTime: number;
|
|
1888
|
+
ErrorMessage?: string;
|
|
1889
|
+
Success: boolean;
|
|
1890
|
+
}
|
|
1891
|
+
export declare class RecordChangeResolver extends ResolverBase {
|
|
1892
|
+
RunRecordChangeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1893
|
+
RunRecordChangeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1894
|
+
RunRecordChangeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1895
|
+
RecordChange(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChange_ | null>;
|
|
1896
|
+
CreateRecordChange(input: CreateRecordChangeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1897
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateRecordChangeInput): Promise<boolean>;
|
|
1898
|
+
protected AfterCreate(dataSource: DataSource, input: CreateRecordChangeInput): Promise<void>;
|
|
1899
|
+
}
|
|
1900
|
+
export declare class UserRole_ {
|
|
1901
|
+
ID: number;
|
|
1902
|
+
UserID: number;
|
|
1903
|
+
RoleName: string;
|
|
1904
|
+
CreatedAt: Date;
|
|
1905
|
+
UpdatedAt: Date;
|
|
1906
|
+
User: string;
|
|
1907
|
+
}
|
|
1908
|
+
export declare class CreateUserRoleInput {
|
|
1909
|
+
UserID: number;
|
|
1910
|
+
RoleName: string;
|
|
1911
|
+
}
|
|
1912
|
+
export declare class RunUserRoleViewResult {
|
|
1913
|
+
Results: UserRole_[];
|
|
1914
|
+
UserViewRunID?: number;
|
|
1915
|
+
RowCount: number;
|
|
1916
|
+
TotalRowCount: number;
|
|
1917
|
+
ExecutionTime: number;
|
|
1918
|
+
ErrorMessage?: string;
|
|
1919
|
+
Success: boolean;
|
|
1920
|
+
}
|
|
1921
|
+
export declare class UserRoleResolver extends ResolverBase {
|
|
1922
|
+
RunUserRoleViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1923
|
+
RunUserRoleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1924
|
+
RunUserRoleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1925
|
+
UserRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRole_ | null>;
|
|
1926
|
+
AllUserRoles({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1927
|
+
CreateUserRole(input: CreateUserRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1928
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserRoleInput): Promise<boolean>;
|
|
1929
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserRoleInput): Promise<void>;
|
|
1930
|
+
DeleteUserRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1931
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1932
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1933
|
+
}
|
|
1934
|
+
export declare class RowLevelSecurityFilter_ {
|
|
1935
|
+
ID: number;
|
|
1936
|
+
Name: string;
|
|
1937
|
+
Description?: string;
|
|
1938
|
+
FilterText?: string;
|
|
1939
|
+
CreatedAt: Date;
|
|
1940
|
+
UpdatedAt: Date;
|
|
1941
|
+
EntityPermissionsArray: mj_core_schema_server_object_types.EntityPermission_[];
|
|
1942
|
+
}
|
|
1943
|
+
export declare class RunRowLevelSecurityFilterViewResult {
|
|
1944
|
+
Results: RowLevelSecurityFilter_[];
|
|
1945
|
+
UserViewRunID?: number;
|
|
1946
|
+
RowCount: number;
|
|
1947
|
+
TotalRowCount: number;
|
|
1948
|
+
ExecutionTime: number;
|
|
1949
|
+
ErrorMessage?: string;
|
|
1950
|
+
Success: boolean;
|
|
1951
|
+
}
|
|
1952
|
+
export declare class RowLevelSecurityFilterResolver extends ResolverBase {
|
|
1953
|
+
RunRowLevelSecurityFilterViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1954
|
+
RunRowLevelSecurityFilterViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1955
|
+
RunRowLevelSecurityFilterDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
1956
|
+
RowLevelSecurityFilter(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RowLevelSecurityFilter_ | null>;
|
|
1957
|
+
AllRowLevelSecurityFilters({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1958
|
+
EntityPermissionsArray(rowlevelsecurityfilter_: RowLevelSecurityFilter_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1959
|
+
}
|
|
1960
|
+
export declare class AuditLog_ {
|
|
1961
|
+
ID: number;
|
|
1962
|
+
AuditLogTypeName?: string;
|
|
1963
|
+
UserID: number;
|
|
1964
|
+
AuthorizationName?: string;
|
|
1965
|
+
Status: string;
|
|
1966
|
+
Description?: string;
|
|
1967
|
+
Details?: string;
|
|
1968
|
+
EntityID?: number;
|
|
1969
|
+
RecordID?: string;
|
|
1970
|
+
CreatedAt: Date;
|
|
1971
|
+
UpdatedAt: Date;
|
|
1972
|
+
User: string;
|
|
1973
|
+
Entity?: string;
|
|
1974
|
+
}
|
|
1975
|
+
export declare class CreateAuditLogInput {
|
|
1976
|
+
AuditLogTypeName: string;
|
|
1977
|
+
UserID: number;
|
|
1978
|
+
AuthorizationName: string;
|
|
1979
|
+
Status: string;
|
|
1980
|
+
Description: string;
|
|
1981
|
+
Details: string;
|
|
1982
|
+
EntityID: number;
|
|
1983
|
+
RecordID: string;
|
|
1984
|
+
}
|
|
1985
|
+
export declare class UpdateAuditLogInput {
|
|
1986
|
+
ID: number;
|
|
1987
|
+
AuditLogTypeName: string;
|
|
1988
|
+
UserID: number;
|
|
1989
|
+
AuthorizationName: string;
|
|
1990
|
+
Status: string;
|
|
1991
|
+
Description: string;
|
|
1992
|
+
Details: string;
|
|
1993
|
+
EntityID: number;
|
|
1994
|
+
RecordID: string;
|
|
1995
|
+
}
|
|
1996
|
+
export declare class RunAuditLogViewResult {
|
|
1997
|
+
Results: AuditLog_[];
|
|
1998
|
+
UserViewRunID?: number;
|
|
1999
|
+
RowCount: number;
|
|
2000
|
+
TotalRowCount: number;
|
|
2001
|
+
ExecutionTime: number;
|
|
2002
|
+
ErrorMessage?: string;
|
|
2003
|
+
Success: boolean;
|
|
2004
|
+
}
|
|
2005
|
+
export declare class AuditLogResolver extends ResolverBase {
|
|
2006
|
+
RunAuditLogViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2007
|
+
RunAuditLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2008
|
+
RunAuditLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2009
|
+
AuditLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLog_ | null>;
|
|
2010
|
+
CreateAuditLog(input: CreateAuditLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2011
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateAuditLogInput): Promise<boolean>;
|
|
2012
|
+
protected AfterCreate(dataSource: DataSource, input: CreateAuditLogInput): Promise<void>;
|
|
2013
|
+
UpdateAuditLog(input: UpdateAuditLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2014
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateAuditLogInput): Promise<boolean>;
|
|
2015
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateAuditLogInput): Promise<void>;
|
|
2016
|
+
}
|
|
2017
|
+
export declare class Authorization_ {
|
|
2018
|
+
ID: number;
|
|
2019
|
+
ParentID?: number;
|
|
2020
|
+
Name: string;
|
|
2021
|
+
IsActive: boolean;
|
|
2022
|
+
UseAuditLog: boolean;
|
|
2023
|
+
Description?: string;
|
|
2024
|
+
CreatedAt: Date;
|
|
2025
|
+
UpdatedAt: Date;
|
|
2026
|
+
AuthorizationRolesArray: mj_core_schema_server_object_types.AuthorizationRole_[];
|
|
2027
|
+
AuthorizationsArray: mj_core_schema_server_object_types.Authorization_[];
|
|
2028
|
+
AuditLogTypesArray: mj_core_schema_server_object_types.AuditLogType_[];
|
|
2029
|
+
AuditLogsArray: mj_core_schema_server_object_types.AuditLog_[];
|
|
2030
|
+
}
|
|
2031
|
+
export declare class RunAuthorizationViewResult {
|
|
2032
|
+
Results: Authorization_[];
|
|
2033
|
+
UserViewRunID?: number;
|
|
2034
|
+
RowCount: number;
|
|
2035
|
+
TotalRowCount: number;
|
|
2036
|
+
ExecutionTime: number;
|
|
2037
|
+
ErrorMessage?: string;
|
|
2038
|
+
Success: boolean;
|
|
2039
|
+
}
|
|
2040
|
+
export declare class AuthorizationResolver extends ResolverBase {
|
|
2041
|
+
RunAuthorizationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2042
|
+
RunAuthorizationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2043
|
+
RunAuthorizationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2044
|
+
Authorization(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Authorization_ | null>;
|
|
2045
|
+
AllAuthorizations({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2046
|
+
AuthorizationRolesArray(authorization_: Authorization_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2047
|
+
AuthorizationsArray(authorization_: Authorization_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2048
|
+
AuditLogTypesArray(authorization_: Authorization_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2049
|
+
AuditLogsArray(authorization_: Authorization_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2050
|
+
}
|
|
2051
|
+
export declare class AuthorizationRole_ {
|
|
2052
|
+
ID: number;
|
|
2053
|
+
AuthorizationName?: string;
|
|
2054
|
+
RoleName?: string;
|
|
2055
|
+
Type: string;
|
|
2056
|
+
CreatedAt: Date;
|
|
2057
|
+
UpdatedAt: Date;
|
|
2058
|
+
}
|
|
2059
|
+
export declare class RunAuthorizationRoleViewResult {
|
|
2060
|
+
Results: AuthorizationRole_[];
|
|
2061
|
+
UserViewRunID?: number;
|
|
2062
|
+
RowCount: number;
|
|
2063
|
+
TotalRowCount: number;
|
|
2064
|
+
ExecutionTime: number;
|
|
2065
|
+
ErrorMessage?: string;
|
|
2066
|
+
Success: boolean;
|
|
2067
|
+
}
|
|
2068
|
+
export declare class AuthorizationRoleResolver extends ResolverBase {
|
|
2069
|
+
RunAuthorizationRoleViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2070
|
+
RunAuthorizationRoleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2071
|
+
RunAuthorizationRoleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2072
|
+
AuthorizationRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuthorizationRole_ | null>;
|
|
2073
|
+
AllAuthorizationRoles({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2074
|
+
}
|
|
2075
|
+
export declare class AuditLogType_ {
|
|
2076
|
+
ID: number;
|
|
2077
|
+
ParentID?: number;
|
|
2078
|
+
Name: string;
|
|
2079
|
+
Description?: string;
|
|
2080
|
+
AuthorizationName?: string;
|
|
2081
|
+
CreatedAt: Date;
|
|
2082
|
+
UpdatedAt: Date;
|
|
2083
|
+
Parent?: string;
|
|
2084
|
+
AuditLogsArray: mj_core_schema_server_object_types.AuditLog_[];
|
|
2085
|
+
AuditLogTypesArray: mj_core_schema_server_object_types.AuditLogType_[];
|
|
2086
|
+
}
|
|
2087
|
+
export declare class RunAuditLogTypeViewResult {
|
|
2088
|
+
Results: AuditLogType_[];
|
|
2089
|
+
UserViewRunID?: number;
|
|
2090
|
+
RowCount: number;
|
|
2091
|
+
TotalRowCount: number;
|
|
2092
|
+
ExecutionTime: number;
|
|
2093
|
+
ErrorMessage?: string;
|
|
2094
|
+
Success: boolean;
|
|
2095
|
+
}
|
|
2096
|
+
export declare class AuditLogTypeResolver extends ResolverBase {
|
|
2097
|
+
RunAuditLogTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2098
|
+
RunAuditLogTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2099
|
+
RunAuditLogTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2100
|
+
AuditLogType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLogType_ | null>;
|
|
2101
|
+
AllAuditLogTypes({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2102
|
+
AuditLogsArray(auditlogtype_: AuditLogType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2103
|
+
AuditLogTypesArray(auditlogtype_: AuditLogType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2104
|
+
}
|
|
2105
|
+
export declare class EntityFieldValue_ {
|
|
2106
|
+
ID: number;
|
|
2107
|
+
EntityID: number;
|
|
2108
|
+
EntityFieldName: string;
|
|
2109
|
+
Sequence: number;
|
|
2110
|
+
Value: string;
|
|
2111
|
+
Code?: string;
|
|
2112
|
+
Description?: string;
|
|
2113
|
+
CreatedAt: Date;
|
|
2114
|
+
UpdatedAt: Date;
|
|
2115
|
+
Entity: string;
|
|
2116
|
+
}
|
|
2117
|
+
export declare class RunEntityFieldValueViewResult {
|
|
2118
|
+
Results: EntityFieldValue_[];
|
|
2119
|
+
UserViewRunID?: number;
|
|
2120
|
+
RowCount: number;
|
|
2121
|
+
TotalRowCount: number;
|
|
2122
|
+
ExecutionTime: number;
|
|
2123
|
+
ErrorMessage?: string;
|
|
2124
|
+
Success: boolean;
|
|
2125
|
+
}
|
|
2126
|
+
export declare class EntityFieldValueResolver extends ResolverBase {
|
|
2127
|
+
RunEntityFieldValueViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2128
|
+
RunEntityFieldValueViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2129
|
+
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2130
|
+
EntityFieldValue(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityFieldValue_ | null>;
|
|
2131
|
+
AllEntityFieldValues({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2132
|
+
}
|
|
2133
|
+
export declare class AIModel_ {
|
|
2134
|
+
ID: number;
|
|
2135
|
+
Name: string;
|
|
2136
|
+
Vendor?: string;
|
|
2137
|
+
AIModelTypeID: number;
|
|
2138
|
+
Description?: string;
|
|
2139
|
+
DriverClass?: string;
|
|
2140
|
+
DriverImportPath?: string;
|
|
2141
|
+
IsActive: boolean;
|
|
2142
|
+
CreatedAt: Date;
|
|
2143
|
+
UpdatedAt: Date;
|
|
2144
|
+
AIActionsArray: mj_core_schema_server_object_types.AIAction_[];
|
|
2145
|
+
AIModelActionsArray: mj_core_schema_server_object_types.AIModelAction_[];
|
|
2146
|
+
EntityAIActionsArray: mj_core_schema_server_object_types.EntityAIAction_[];
|
|
2147
|
+
VectorIndexesArray: mj_core_schema_server_object_types.VectorIndex_[];
|
|
2148
|
+
}
|
|
2149
|
+
export declare class UpdateAIModelInput {
|
|
2150
|
+
ID: number;
|
|
2151
|
+
Name: string;
|
|
2152
|
+
Vendor: string;
|
|
2153
|
+
AIModelTypeID: number;
|
|
2154
|
+
Description: string;
|
|
2155
|
+
DriverClass: string;
|
|
2156
|
+
DriverImportPath: string;
|
|
2157
|
+
IsActive: boolean;
|
|
2158
|
+
}
|
|
2159
|
+
export declare class RunAIModelViewResult {
|
|
2160
|
+
Results: AIModel_[];
|
|
2161
|
+
UserViewRunID?: number;
|
|
2162
|
+
RowCount: number;
|
|
2163
|
+
TotalRowCount: number;
|
|
2164
|
+
ExecutionTime: number;
|
|
2165
|
+
ErrorMessage?: string;
|
|
2166
|
+
Success: boolean;
|
|
2167
|
+
}
|
|
2168
|
+
export declare class AIModelResolver extends ResolverBase {
|
|
2169
|
+
RunAIModelViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2170
|
+
RunAIModelViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2171
|
+
RunAIModelDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2172
|
+
AIModel(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModel_ | null>;
|
|
2173
|
+
AllAIModels({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2174
|
+
AIActionsArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2175
|
+
AIModelActionsArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2176
|
+
EntityAIActionsArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2177
|
+
VectorIndexesArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2178
|
+
UpdateAIModel(input: UpdateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2179
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateAIModelInput): Promise<boolean>;
|
|
2180
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateAIModelInput): Promise<void>;
|
|
2181
|
+
}
|
|
2182
|
+
export declare class AIAction_ {
|
|
2183
|
+
ID: number;
|
|
2184
|
+
Name: string;
|
|
2185
|
+
Description?: string;
|
|
2186
|
+
DefaultModelID?: number;
|
|
2187
|
+
DefaultPrompt?: string;
|
|
2188
|
+
IsActive: boolean;
|
|
2189
|
+
CreatedAt: Date;
|
|
2190
|
+
UpdatedAt: Date;
|
|
2191
|
+
DefaultModel?: string;
|
|
2192
|
+
AIModelActionsArray: mj_core_schema_server_object_types.AIModelAction_[];
|
|
2193
|
+
EntityAIActionsArray: mj_core_schema_server_object_types.EntityAIAction_[];
|
|
2194
|
+
}
|
|
2195
|
+
export declare class UpdateAIActionInput {
|
|
2196
|
+
ID: number;
|
|
2197
|
+
Name: string;
|
|
2198
|
+
Description: string;
|
|
2199
|
+
DefaultModelID: number;
|
|
2200
|
+
DefaultPrompt: string;
|
|
2201
|
+
IsActive: boolean;
|
|
2202
|
+
}
|
|
2203
|
+
export declare class RunAIActionViewResult {
|
|
2204
|
+
Results: AIAction_[];
|
|
2205
|
+
UserViewRunID?: number;
|
|
2206
|
+
RowCount: number;
|
|
2207
|
+
TotalRowCount: number;
|
|
2208
|
+
ExecutionTime: number;
|
|
2209
|
+
ErrorMessage?: string;
|
|
2210
|
+
Success: boolean;
|
|
2211
|
+
}
|
|
2212
|
+
export declare class AIActionResolver extends ResolverBase {
|
|
2213
|
+
RunAIActionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2214
|
+
RunAIActionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2215
|
+
RunAIActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2216
|
+
AIAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAction_ | null>;
|
|
2217
|
+
AllAIActions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2218
|
+
AIModelActionsArray(aiaction_: AIAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2219
|
+
EntityAIActionsArray(aiaction_: AIAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2220
|
+
UpdateAIAction(input: UpdateAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2221
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateAIActionInput): Promise<boolean>;
|
|
2222
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateAIActionInput): Promise<void>;
|
|
2223
|
+
}
|
|
2224
|
+
export declare class AIModelAction_ {
|
|
2225
|
+
ID: number;
|
|
2226
|
+
AIModelID: number;
|
|
2227
|
+
AIActionID: number;
|
|
2228
|
+
IsActive: boolean;
|
|
2229
|
+
CreatedAt: Date;
|
|
2230
|
+
UpdatedAt: Date;
|
|
2231
|
+
AIModel: string;
|
|
2232
|
+
AIAction: string;
|
|
2233
|
+
}
|
|
2234
|
+
export declare class UpdateAIModelActionInput {
|
|
2235
|
+
ID: number;
|
|
2236
|
+
AIModelID: number;
|
|
2237
|
+
AIActionID: number;
|
|
2238
|
+
IsActive: boolean;
|
|
2239
|
+
}
|
|
2240
|
+
export declare class RunAIModelActionViewResult {
|
|
2241
|
+
Results: AIModelAction_[];
|
|
2242
|
+
UserViewRunID?: number;
|
|
2243
|
+
RowCount: number;
|
|
2244
|
+
TotalRowCount: number;
|
|
2245
|
+
ExecutionTime: number;
|
|
2246
|
+
ErrorMessage?: string;
|
|
2247
|
+
Success: boolean;
|
|
2248
|
+
}
|
|
2249
|
+
export declare class AIModelActionResolver extends ResolverBase {
|
|
2250
|
+
RunAIModelActionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2251
|
+
RunAIModelActionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2252
|
+
RunAIModelActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2253
|
+
AIModelAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelAction_ | null>;
|
|
2254
|
+
AllAIModelActions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2255
|
+
UpdateAIModelAction(input: UpdateAIModelActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2256
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateAIModelActionInput): Promise<boolean>;
|
|
2257
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateAIModelActionInput): Promise<void>;
|
|
2258
|
+
}
|
|
2259
|
+
export declare class EntityAIAction_ {
|
|
2260
|
+
ID: number;
|
|
2261
|
+
EntityID: number;
|
|
2262
|
+
AIActionID: number;
|
|
2263
|
+
AIModelID?: number;
|
|
2264
|
+
Name: string;
|
|
2265
|
+
Prompt?: string;
|
|
2266
|
+
TriggerEvent: string;
|
|
2267
|
+
UserMessage: string;
|
|
2268
|
+
OutputType: string;
|
|
2269
|
+
OutputField?: string;
|
|
2270
|
+
SkipIfOutputFieldNotEmpty: boolean;
|
|
2271
|
+
OutputEntityID?: number;
|
|
2272
|
+
Comments?: string;
|
|
2273
|
+
Entity: string;
|
|
2274
|
+
AIAction: string;
|
|
2275
|
+
AIModel?: string;
|
|
2276
|
+
OutputEntity?: string;
|
|
2277
|
+
}
|
|
2278
|
+
export declare class UpdateEntityAIActionInput {
|
|
2279
|
+
ID: number;
|
|
2280
|
+
EntityID: number;
|
|
2281
|
+
AIActionID: number;
|
|
2282
|
+
AIModelID: number;
|
|
2283
|
+
Name: string;
|
|
2284
|
+
Prompt: string;
|
|
2285
|
+
TriggerEvent: string;
|
|
2286
|
+
UserMessage: string;
|
|
2287
|
+
OutputType: string;
|
|
2288
|
+
OutputField: string;
|
|
2289
|
+
SkipIfOutputFieldNotEmpty: boolean;
|
|
2290
|
+
OutputEntityID: number;
|
|
2291
|
+
Comments: string;
|
|
2292
|
+
}
|
|
2293
|
+
export declare class RunEntityAIActionViewResult {
|
|
2294
|
+
Results: EntityAIAction_[];
|
|
2295
|
+
UserViewRunID?: number;
|
|
2296
|
+
RowCount: number;
|
|
2297
|
+
TotalRowCount: number;
|
|
2298
|
+
ExecutionTime: number;
|
|
2299
|
+
ErrorMessage?: string;
|
|
2300
|
+
Success: boolean;
|
|
2301
|
+
}
|
|
2302
|
+
export declare class EntityAIActionResolver extends ResolverBase {
|
|
2303
|
+
RunEntityAIActionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2304
|
+
RunEntityAIActionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2305
|
+
RunEntityAIActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2306
|
+
EntityAIAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAIAction_ | null>;
|
|
2307
|
+
AllEntityAIActions({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2308
|
+
UpdateEntityAIAction(input: UpdateEntityAIActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2309
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityAIActionInput): Promise<boolean>;
|
|
2310
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityAIActionInput): Promise<void>;
|
|
2311
|
+
}
|
|
2312
|
+
export declare class AIModelType_ {
|
|
2313
|
+
ID: number;
|
|
2314
|
+
Name: string;
|
|
2315
|
+
Description?: string;
|
|
2316
|
+
AIModelsArray: mj_core_schema_server_object_types.AIModel_[];
|
|
2317
|
+
}
|
|
2318
|
+
export declare class UpdateAIModelTypeInput {
|
|
2319
|
+
ID: number;
|
|
2320
|
+
Name: string;
|
|
2321
|
+
Description: string;
|
|
2322
|
+
}
|
|
2323
|
+
export declare class RunAIModelTypeViewResult {
|
|
2324
|
+
Results: AIModelType_[];
|
|
2325
|
+
UserViewRunID?: number;
|
|
2326
|
+
RowCount: number;
|
|
2327
|
+
TotalRowCount: number;
|
|
2328
|
+
ExecutionTime: number;
|
|
2329
|
+
ErrorMessage?: string;
|
|
2330
|
+
Success: boolean;
|
|
2331
|
+
}
|
|
2332
|
+
export declare class AIModelTypeResolver extends ResolverBase {
|
|
2333
|
+
RunAIModelTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2334
|
+
RunAIModelTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2335
|
+
RunAIModelTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2336
|
+
AIModelType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelType_ | null>;
|
|
2337
|
+
AllAIModelTypes({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2338
|
+
AIModelsArray(aimodeltype_: AIModelType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2339
|
+
UpdateAIModelType(input: UpdateAIModelTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2340
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateAIModelTypeInput): Promise<boolean>;
|
|
2341
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateAIModelTypeInput): Promise<void>;
|
|
2342
|
+
}
|
|
2343
|
+
export declare class QueueType_ {
|
|
2344
|
+
ID: number;
|
|
2345
|
+
Name: string;
|
|
2346
|
+
Description?: string;
|
|
2347
|
+
DriverClass: string;
|
|
2348
|
+
DriverImportPath?: string;
|
|
2349
|
+
IsActive: boolean;
|
|
2350
|
+
QueuesArray: mj_core_schema_server_object_types.Queue_[];
|
|
2351
|
+
}
|
|
2352
|
+
export declare class RunQueueTypeViewResult {
|
|
2353
|
+
Results: QueueType_[];
|
|
2354
|
+
UserViewRunID?: number;
|
|
2355
|
+
RowCount: number;
|
|
2356
|
+
TotalRowCount: number;
|
|
2357
|
+
ExecutionTime: number;
|
|
2358
|
+
ErrorMessage?: string;
|
|
2359
|
+
Success: boolean;
|
|
2360
|
+
}
|
|
2361
|
+
export declare class QueueTypeResolver extends ResolverBase {
|
|
2362
|
+
RunQueueTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2363
|
+
RunQueueTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2364
|
+
RunQueueTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2365
|
+
QueueType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueType_ | null>;
|
|
2366
|
+
QueuesArray(queuetype_: QueueType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2367
|
+
}
|
|
2368
|
+
export declare class Queue_ {
|
|
2369
|
+
ID: number;
|
|
2370
|
+
Name: string;
|
|
2371
|
+
Description?: string;
|
|
2372
|
+
QueueTypeID: number;
|
|
2373
|
+
IsActive: boolean;
|
|
2374
|
+
ProcessPID?: number;
|
|
2375
|
+
ProcessPlatform?: string;
|
|
2376
|
+
ProcessVersion?: string;
|
|
2377
|
+
ProcessCwd?: string;
|
|
2378
|
+
ProcessIPAddress?: string;
|
|
2379
|
+
ProcessMacAddress?: string;
|
|
2380
|
+
ProcessOSName?: string;
|
|
2381
|
+
ProcessOSVersion?: string;
|
|
2382
|
+
ProcessHostName?: string;
|
|
2383
|
+
ProcessUserID?: string;
|
|
2384
|
+
ProcessUserName?: string;
|
|
2385
|
+
LastHeartbeat: Date;
|
|
2386
|
+
CreatedAt: Date;
|
|
2387
|
+
UpdatedAt: Date;
|
|
2388
|
+
QueueType: string;
|
|
2389
|
+
QueueTasksArray: mj_core_schema_server_object_types.QueueTask_[];
|
|
2390
|
+
}
|
|
2391
|
+
export declare class CreateQueueInput {
|
|
2392
|
+
Name: string;
|
|
2393
|
+
Description: string;
|
|
2394
|
+
QueueTypeID: number;
|
|
2395
|
+
IsActive: boolean;
|
|
2396
|
+
ProcessPID: number;
|
|
2397
|
+
ProcessPlatform: string;
|
|
2398
|
+
ProcessVersion: string;
|
|
2399
|
+
ProcessCwd: string;
|
|
2400
|
+
ProcessIPAddress: string;
|
|
2401
|
+
ProcessMacAddress: string;
|
|
2402
|
+
ProcessOSName: string;
|
|
2403
|
+
ProcessOSVersion: string;
|
|
2404
|
+
ProcessHostName: string;
|
|
2405
|
+
ProcessUserID: string;
|
|
2406
|
+
ProcessUserName: string;
|
|
2407
|
+
LastHeartbeat: Date;
|
|
2408
|
+
}
|
|
2409
|
+
export declare class UpdateQueueInput {
|
|
2410
|
+
ID: number;
|
|
2411
|
+
Name: string;
|
|
2412
|
+
Description: string;
|
|
2413
|
+
QueueTypeID: number;
|
|
2414
|
+
IsActive: boolean;
|
|
2415
|
+
ProcessPID: number;
|
|
2416
|
+
ProcessPlatform: string;
|
|
2417
|
+
ProcessVersion: string;
|
|
2418
|
+
ProcessCwd: string;
|
|
2419
|
+
ProcessIPAddress: string;
|
|
2420
|
+
ProcessMacAddress: string;
|
|
2421
|
+
ProcessOSName: string;
|
|
2422
|
+
ProcessOSVersion: string;
|
|
2423
|
+
ProcessHostName: string;
|
|
2424
|
+
ProcessUserID: string;
|
|
2425
|
+
ProcessUserName: string;
|
|
2426
|
+
LastHeartbeat: Date;
|
|
2427
|
+
}
|
|
2428
|
+
export declare class RunQueueViewResult {
|
|
2429
|
+
Results: Queue_[];
|
|
2430
|
+
UserViewRunID?: number;
|
|
2431
|
+
RowCount: number;
|
|
2432
|
+
TotalRowCount: number;
|
|
2433
|
+
ExecutionTime: number;
|
|
2434
|
+
ErrorMessage?: string;
|
|
2435
|
+
Success: boolean;
|
|
2436
|
+
}
|
|
2437
|
+
export declare class QueueResolver extends ResolverBase {
|
|
2438
|
+
RunQueueViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2439
|
+
RunQueueViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2440
|
+
RunQueueDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2441
|
+
Queue(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Queue_ | null>;
|
|
2442
|
+
QueueTasksArray(queue_: Queue_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2443
|
+
CreateQueue(input: CreateQueueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2444
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateQueueInput): Promise<boolean>;
|
|
2445
|
+
protected AfterCreate(dataSource: DataSource, input: CreateQueueInput): Promise<void>;
|
|
2446
|
+
UpdateQueue(input: UpdateQueueInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2447
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateQueueInput): Promise<boolean>;
|
|
2448
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateQueueInput): Promise<void>;
|
|
2449
|
+
}
|
|
2450
|
+
export declare class QueueTask_ {
|
|
2451
|
+
ID: number;
|
|
2452
|
+
QueueID: number;
|
|
2453
|
+
Status: string;
|
|
2454
|
+
StartedAt?: Date;
|
|
2455
|
+
EndedAt?: Date;
|
|
2456
|
+
Data?: string;
|
|
2457
|
+
Options?: string;
|
|
2458
|
+
Output?: string;
|
|
2459
|
+
ErrorMessage?: string;
|
|
2460
|
+
Comments?: string;
|
|
2461
|
+
}
|
|
2462
|
+
export declare class CreateQueueTaskInput {
|
|
2463
|
+
QueueID: number;
|
|
2464
|
+
Status: string;
|
|
2465
|
+
StartedAt: Date;
|
|
2466
|
+
EndedAt: Date;
|
|
2467
|
+
Data: string;
|
|
2468
|
+
Options: string;
|
|
2469
|
+
Output: string;
|
|
2470
|
+
ErrorMessage: string;
|
|
2471
|
+
Comments: string;
|
|
2472
|
+
}
|
|
2473
|
+
export declare class UpdateQueueTaskInput {
|
|
2474
|
+
ID: number;
|
|
2475
|
+
QueueID: number;
|
|
2476
|
+
Status: string;
|
|
2477
|
+
StartedAt: Date;
|
|
2478
|
+
EndedAt: Date;
|
|
2479
|
+
Data: string;
|
|
2480
|
+
Options: string;
|
|
2481
|
+
Output: string;
|
|
2482
|
+
ErrorMessage: string;
|
|
2483
|
+
Comments: string;
|
|
2484
|
+
}
|
|
2485
|
+
export declare class RunQueueTaskViewResult {
|
|
2486
|
+
Results: QueueTask_[];
|
|
2487
|
+
UserViewRunID?: number;
|
|
2488
|
+
RowCount: number;
|
|
2489
|
+
TotalRowCount: number;
|
|
2490
|
+
ExecutionTime: number;
|
|
2491
|
+
ErrorMessage?: string;
|
|
2492
|
+
Success: boolean;
|
|
2493
|
+
}
|
|
2494
|
+
export declare class QueueTaskResolver extends ResolverBase {
|
|
2495
|
+
RunQueueTaskViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2496
|
+
RunQueueTaskViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2497
|
+
RunQueueTaskDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2498
|
+
QueueTask(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueTask_ | null>;
|
|
2499
|
+
CreateQueueTask(input: CreateQueueTaskInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2500
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateQueueTaskInput): Promise<boolean>;
|
|
2501
|
+
protected AfterCreate(dataSource: DataSource, input: CreateQueueTaskInput): Promise<void>;
|
|
2502
|
+
UpdateQueueTask(input: UpdateQueueTaskInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2503
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateQueueTaskInput): Promise<boolean>;
|
|
2504
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateQueueTaskInput): Promise<void>;
|
|
2505
|
+
}
|
|
2506
|
+
export declare class Dashboard_ {
|
|
2507
|
+
ID: number;
|
|
2508
|
+
Name: string;
|
|
2509
|
+
Description?: string;
|
|
2510
|
+
CategoryID?: number;
|
|
2511
|
+
UIConfigDetails: string;
|
|
2512
|
+
UserID?: number;
|
|
2513
|
+
Category?: string;
|
|
2514
|
+
User?: string;
|
|
2515
|
+
}
|
|
2516
|
+
export declare class CreateDashboardInput {
|
|
2517
|
+
Name: string;
|
|
2518
|
+
Description: string;
|
|
2519
|
+
CategoryID: number;
|
|
2520
|
+
UIConfigDetails: string;
|
|
2521
|
+
UserID: number;
|
|
2522
|
+
}
|
|
2523
|
+
export declare class UpdateDashboardInput {
|
|
2524
|
+
ID: number;
|
|
2525
|
+
Name: string;
|
|
2526
|
+
Description: string;
|
|
2527
|
+
CategoryID: number;
|
|
2528
|
+
UIConfigDetails: string;
|
|
2529
|
+
UserID: number;
|
|
2530
|
+
}
|
|
2531
|
+
export declare class RunDashboardViewResult {
|
|
2532
|
+
Results: Dashboard_[];
|
|
2533
|
+
UserViewRunID?: number;
|
|
2534
|
+
RowCount: number;
|
|
2535
|
+
TotalRowCount: number;
|
|
2536
|
+
ExecutionTime: number;
|
|
2537
|
+
ErrorMessage?: string;
|
|
2538
|
+
Success: boolean;
|
|
2539
|
+
}
|
|
2540
|
+
export declare class DashboardResolver extends ResolverBase {
|
|
2541
|
+
RunDashboardViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2542
|
+
RunDashboardViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2543
|
+
RunDashboardDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2544
|
+
Dashboard(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dashboard_ | null>;
|
|
2545
|
+
CreateDashboard(input: CreateDashboardInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2546
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateDashboardInput): Promise<boolean>;
|
|
2547
|
+
protected AfterCreate(dataSource: DataSource, input: CreateDashboardInput): Promise<void>;
|
|
2548
|
+
UpdateDashboard(input: UpdateDashboardInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2549
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateDashboardInput): Promise<boolean>;
|
|
2550
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateDashboardInput): Promise<void>;
|
|
2551
|
+
DeleteDashboard(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2552
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
2553
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
2554
|
+
}
|
|
2555
|
+
export declare class OutputTriggerType_ {
|
|
2556
|
+
ID: number;
|
|
2557
|
+
Name: string;
|
|
2558
|
+
Description?: string;
|
|
2559
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2560
|
+
}
|
|
2561
|
+
export declare class RunOutputTriggerTypeViewResult {
|
|
2562
|
+
Results: OutputTriggerType_[];
|
|
2563
|
+
UserViewRunID?: number;
|
|
2564
|
+
RowCount: number;
|
|
2565
|
+
TotalRowCount: number;
|
|
2566
|
+
ExecutionTime: number;
|
|
2567
|
+
ErrorMessage?: string;
|
|
2568
|
+
Success: boolean;
|
|
2569
|
+
}
|
|
2570
|
+
export declare class OutputTriggerTypeResolver extends ResolverBase {
|
|
2571
|
+
RunOutputTriggerTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2572
|
+
RunOutputTriggerTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2573
|
+
RunOutputTriggerTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2574
|
+
OutputTriggerType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputTriggerType_ | null>;
|
|
2575
|
+
ReportsArray(outputtriggertype_: OutputTriggerType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2576
|
+
}
|
|
2577
|
+
export declare class OutputFormatType_ {
|
|
2578
|
+
ID: number;
|
|
2579
|
+
Name: string;
|
|
2580
|
+
Description?: string;
|
|
2581
|
+
DisplayFormat?: string;
|
|
2582
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2583
|
+
}
|
|
2584
|
+
export declare class RunOutputFormatTypeViewResult {
|
|
2585
|
+
Results: OutputFormatType_[];
|
|
2586
|
+
UserViewRunID?: number;
|
|
2587
|
+
RowCount: number;
|
|
2588
|
+
TotalRowCount: number;
|
|
2589
|
+
ExecutionTime: number;
|
|
2590
|
+
ErrorMessage?: string;
|
|
2591
|
+
Success: boolean;
|
|
2592
|
+
}
|
|
2593
|
+
export declare class OutputFormatTypeResolver extends ResolverBase {
|
|
2594
|
+
RunOutputFormatTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2595
|
+
RunOutputFormatTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2596
|
+
RunOutputFormatTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2597
|
+
OutputFormatType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputFormatType_ | null>;
|
|
2598
|
+
ReportsArray(outputformattype_: OutputFormatType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2599
|
+
}
|
|
2600
|
+
export declare class OutputDeliveryType_ {
|
|
2601
|
+
ID: number;
|
|
2602
|
+
Name: string;
|
|
2603
|
+
Description?: string;
|
|
2604
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2605
|
+
}
|
|
2606
|
+
export declare class RunOutputDeliveryTypeViewResult {
|
|
2607
|
+
Results: OutputDeliveryType_[];
|
|
2608
|
+
UserViewRunID?: number;
|
|
2609
|
+
RowCount: number;
|
|
2610
|
+
TotalRowCount: number;
|
|
2611
|
+
ExecutionTime: number;
|
|
2612
|
+
ErrorMessage?: string;
|
|
2613
|
+
Success: boolean;
|
|
2614
|
+
}
|
|
2615
|
+
export declare class OutputDeliveryTypeResolver extends ResolverBase {
|
|
2616
|
+
RunOutputDeliveryTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2617
|
+
RunOutputDeliveryTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2618
|
+
RunOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2619
|
+
OutputDeliveryType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputDeliveryType_ | null>;
|
|
2620
|
+
ReportsArray(outputdeliverytype_: OutputDeliveryType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2621
|
+
}
|
|
2622
|
+
export declare class Report_ {
|
|
2623
|
+
ID: number;
|
|
2624
|
+
Name: string;
|
|
2625
|
+
Description?: string;
|
|
2626
|
+
CategoryID?: number;
|
|
2627
|
+
UserID: number;
|
|
2628
|
+
SharingScope: string;
|
|
2629
|
+
ConversationID?: number;
|
|
2630
|
+
ConversationDetailID?: number;
|
|
2631
|
+
DataContextID?: number;
|
|
2632
|
+
Configuration?: string;
|
|
2633
|
+
OutputTriggerTypeID?: number;
|
|
2634
|
+
OutputFormatTypeID?: number;
|
|
2635
|
+
OutputDeliveryTypeID?: number;
|
|
2636
|
+
OutputEventID?: number;
|
|
2637
|
+
OutputFrequency?: string;
|
|
2638
|
+
OutputTargetEmail?: string;
|
|
2639
|
+
OutputWorkflowID?: number;
|
|
2640
|
+
CreatedAt: Date;
|
|
2641
|
+
UpdatedAt: Date;
|
|
2642
|
+
Category?: string;
|
|
2643
|
+
User: string;
|
|
2644
|
+
Conversation?: string;
|
|
2645
|
+
DataContext?: string;
|
|
2646
|
+
OutputTriggerType?: string;
|
|
2647
|
+
OutputFormatType?: string;
|
|
2648
|
+
OutputDeliveryType?: string;
|
|
2649
|
+
OutputEvent?: string;
|
|
2650
|
+
ReportSnapshotsArray: mj_core_schema_server_object_types.ReportSnapshot_[];
|
|
2651
|
+
}
|
|
2652
|
+
export declare class CreateReportInput {
|
|
2653
|
+
Name: string;
|
|
2654
|
+
Description: string;
|
|
2655
|
+
CategoryID: number;
|
|
2656
|
+
UserID: number;
|
|
2657
|
+
SharingScope: string;
|
|
2658
|
+
ConversationID: number;
|
|
2659
|
+
ConversationDetailID: number;
|
|
2660
|
+
DataContextID: number;
|
|
2661
|
+
Configuration: string;
|
|
2662
|
+
OutputTriggerTypeID: number;
|
|
2663
|
+
OutputFormatTypeID: number;
|
|
2664
|
+
OutputDeliveryTypeID: number;
|
|
2665
|
+
OutputEventID: number;
|
|
2666
|
+
OutputFrequency: string;
|
|
2667
|
+
OutputTargetEmail: string;
|
|
2668
|
+
OutputWorkflowID: number;
|
|
2669
|
+
}
|
|
2670
|
+
export declare class UpdateReportInput {
|
|
2671
|
+
ID: number;
|
|
2672
|
+
Name: string;
|
|
2673
|
+
Description: string;
|
|
2674
|
+
CategoryID: number;
|
|
2675
|
+
UserID: number;
|
|
2676
|
+
SharingScope: string;
|
|
2677
|
+
ConversationID: number;
|
|
2678
|
+
ConversationDetailID: number;
|
|
2679
|
+
DataContextID: number;
|
|
2680
|
+
Configuration: string;
|
|
2681
|
+
OutputTriggerTypeID: number;
|
|
2682
|
+
OutputFormatTypeID: number;
|
|
2683
|
+
OutputDeliveryTypeID: number;
|
|
2684
|
+
OutputEventID: number;
|
|
2685
|
+
OutputFrequency: string;
|
|
2686
|
+
OutputTargetEmail: string;
|
|
2687
|
+
OutputWorkflowID: number;
|
|
2688
|
+
}
|
|
2689
|
+
export declare class RunReportViewResult {
|
|
2690
|
+
Results: Report_[];
|
|
2691
|
+
UserViewRunID?: number;
|
|
2692
|
+
RowCount: number;
|
|
2693
|
+
TotalRowCount: number;
|
|
2694
|
+
ExecutionTime: number;
|
|
2695
|
+
ErrorMessage?: string;
|
|
2696
|
+
Success: boolean;
|
|
2697
|
+
}
|
|
2698
|
+
export declare class ReportResolver extends ResolverBase {
|
|
2699
|
+
RunReportViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2700
|
+
RunReportViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2701
|
+
RunReportDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2702
|
+
Report(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Report_ | null>;
|
|
2703
|
+
ReportSnapshotsArray(report_: Report_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2704
|
+
CreateReport(input: CreateReportInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2705
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateReportInput): Promise<boolean>;
|
|
2706
|
+
protected AfterCreate(dataSource: DataSource, input: CreateReportInput): Promise<void>;
|
|
2707
|
+
UpdateReport(input: UpdateReportInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2708
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateReportInput): Promise<boolean>;
|
|
2709
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateReportInput): Promise<void>;
|
|
2710
|
+
DeleteReport(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2711
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
2712
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
2713
|
+
}
|
|
2714
|
+
export declare class ReportSnapshot_ {
|
|
2715
|
+
ID: number;
|
|
2716
|
+
ReportID: number;
|
|
2717
|
+
ResultSet: string;
|
|
2718
|
+
CreatedAt: Date;
|
|
2719
|
+
UserID?: number;
|
|
2720
|
+
Report: string;
|
|
2721
|
+
User?: string;
|
|
2722
|
+
}
|
|
2723
|
+
export declare class CreateReportSnapshotInput {
|
|
2724
|
+
ReportID: number;
|
|
2725
|
+
ResultSet: string;
|
|
2726
|
+
UserID: number;
|
|
2727
|
+
}
|
|
2728
|
+
export declare class UpdateReportSnapshotInput {
|
|
2729
|
+
ID: number;
|
|
2730
|
+
ReportID: number;
|
|
2731
|
+
ResultSet: string;
|
|
2732
|
+
UserID: number;
|
|
2733
|
+
}
|
|
2734
|
+
export declare class RunReportSnapshotViewResult {
|
|
2735
|
+
Results: ReportSnapshot_[];
|
|
2736
|
+
UserViewRunID?: number;
|
|
2737
|
+
RowCount: number;
|
|
2738
|
+
TotalRowCount: number;
|
|
2739
|
+
ExecutionTime: number;
|
|
2740
|
+
ErrorMessage?: string;
|
|
2741
|
+
Success: boolean;
|
|
2742
|
+
}
|
|
2743
|
+
export declare class ReportSnapshotResolver extends ResolverBase {
|
|
2744
|
+
RunReportSnapshotViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2745
|
+
RunReportSnapshotViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2746
|
+
RunReportSnapshotDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2747
|
+
ReportSnapshot(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportSnapshot_ | null>;
|
|
2748
|
+
CreateReportSnapshot(input: CreateReportSnapshotInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2749
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateReportSnapshotInput): Promise<boolean>;
|
|
2750
|
+
protected AfterCreate(dataSource: DataSource, input: CreateReportSnapshotInput): Promise<void>;
|
|
2751
|
+
UpdateReportSnapshot(input: UpdateReportSnapshotInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2752
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateReportSnapshotInput): Promise<boolean>;
|
|
2753
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateReportSnapshotInput): Promise<void>;
|
|
2754
|
+
DeleteReportSnapshot(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2755
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
2756
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
2757
|
+
}
|
|
2758
|
+
export declare class ResourceType_ {
|
|
2759
|
+
ID: number;
|
|
2760
|
+
Name: string;
|
|
2761
|
+
DisplayName: string;
|
|
2762
|
+
Description?: string;
|
|
2763
|
+
Icon?: string;
|
|
2764
|
+
EntityID?: number;
|
|
2765
|
+
CreatedAt: Date;
|
|
2766
|
+
UpdatedAt: Date;
|
|
2767
|
+
Entity?: string;
|
|
2768
|
+
WorkspaceItemsArray: mj_core_schema_server_object_types.WorkspaceItem_[];
|
|
2769
|
+
}
|
|
2770
|
+
export declare class RunResourceTypeViewResult {
|
|
2771
|
+
Results: ResourceType_[];
|
|
2772
|
+
UserViewRunID?: number;
|
|
2773
|
+
RowCount: number;
|
|
2774
|
+
TotalRowCount: number;
|
|
2775
|
+
ExecutionTime: number;
|
|
2776
|
+
ErrorMessage?: string;
|
|
2777
|
+
Success: boolean;
|
|
2778
|
+
}
|
|
2779
|
+
export declare class ResourceTypeResolver extends ResolverBase {
|
|
2780
|
+
RunResourceTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2781
|
+
RunResourceTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2782
|
+
RunResourceTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2783
|
+
ResourceType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ResourceType_ | null>;
|
|
2784
|
+
WorkspaceItemsArray(resourcetype_: ResourceType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2785
|
+
}
|
|
2786
|
+
export declare class Tag_ {
|
|
2787
|
+
ID: number;
|
|
2788
|
+
Name: string;
|
|
2789
|
+
DisplayName: string;
|
|
2790
|
+
Description?: string;
|
|
2791
|
+
ParentID?: number;
|
|
2792
|
+
Parent?: string;
|
|
2793
|
+
TagsArray: mj_core_schema_server_object_types.Tag_[];
|
|
2794
|
+
TaggedItemsArray: mj_core_schema_server_object_types.TaggedItem_[];
|
|
2795
|
+
}
|
|
2796
|
+
export declare class RunTagViewResult {
|
|
2797
|
+
Results: Tag_[];
|
|
2798
|
+
UserViewRunID?: number;
|
|
2799
|
+
RowCount: number;
|
|
2800
|
+
TotalRowCount: number;
|
|
2801
|
+
ExecutionTime: number;
|
|
2802
|
+
ErrorMessage?: string;
|
|
2803
|
+
Success: boolean;
|
|
2804
|
+
}
|
|
2805
|
+
export declare class TagResolver extends ResolverBase {
|
|
2806
|
+
RunTagViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2807
|
+
RunTagViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2808
|
+
RunTagDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2809
|
+
Tag(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Tag_ | null>;
|
|
2810
|
+
TagsArray(tag_: Tag_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2811
|
+
TaggedItemsArray(tag_: Tag_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2812
|
+
}
|
|
2813
|
+
export declare class TaggedItem_ {
|
|
2814
|
+
ID: number;
|
|
2815
|
+
TagID: number;
|
|
2816
|
+
EntityID: number;
|
|
2817
|
+
RecordID: string;
|
|
2818
|
+
Tag: string;
|
|
2819
|
+
Entity: string;
|
|
2820
|
+
}
|
|
2821
|
+
export declare class RunTaggedItemViewResult {
|
|
2822
|
+
Results: TaggedItem_[];
|
|
2823
|
+
UserViewRunID?: number;
|
|
2824
|
+
RowCount: number;
|
|
2825
|
+
TotalRowCount: number;
|
|
2826
|
+
ExecutionTime: number;
|
|
2827
|
+
ErrorMessage?: string;
|
|
2828
|
+
Success: boolean;
|
|
2829
|
+
}
|
|
2830
|
+
export declare class TaggedItemResolver extends ResolverBase {
|
|
2831
|
+
RunTaggedItemViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2832
|
+
RunTaggedItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2833
|
+
RunTaggedItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2834
|
+
TaggedItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TaggedItem_ | null>;
|
|
2835
|
+
}
|
|
2836
|
+
export declare class Workspace_ {
|
|
2837
|
+
ID: number;
|
|
2838
|
+
Name: string;
|
|
2839
|
+
Description?: string;
|
|
2840
|
+
UserID: number;
|
|
2841
|
+
User: string;
|
|
2842
|
+
WorkspaceItemsArray: mj_core_schema_server_object_types.WorkspaceItem_[];
|
|
2843
|
+
}
|
|
2844
|
+
export declare class CreateWorkspaceInput {
|
|
2845
|
+
Name: string;
|
|
2846
|
+
Description: string;
|
|
2847
|
+
UserID: number;
|
|
2848
|
+
}
|
|
2849
|
+
export declare class UpdateWorkspaceInput {
|
|
2850
|
+
ID: number;
|
|
2851
|
+
Name: string;
|
|
2852
|
+
Description: string;
|
|
2853
|
+
UserID: number;
|
|
2854
|
+
}
|
|
2855
|
+
export declare class RunWorkspaceViewResult {
|
|
2856
|
+
Results: Workspace_[];
|
|
2857
|
+
UserViewRunID?: number;
|
|
2858
|
+
RowCount: number;
|
|
2859
|
+
TotalRowCount: number;
|
|
2860
|
+
ExecutionTime: number;
|
|
2861
|
+
ErrorMessage?: string;
|
|
2862
|
+
Success: boolean;
|
|
2863
|
+
}
|
|
2864
|
+
export declare class WorkspaceResolver extends ResolverBase {
|
|
2865
|
+
RunWorkspaceViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2866
|
+
RunWorkspaceViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2867
|
+
RunWorkspaceDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2868
|
+
Workspace(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workspace_ | null>;
|
|
2869
|
+
WorkspaceItemsArray(workspace_: Workspace_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2870
|
+
CreateWorkspace(input: CreateWorkspaceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2871
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateWorkspaceInput): Promise<boolean>;
|
|
2872
|
+
protected AfterCreate(dataSource: DataSource, input: CreateWorkspaceInput): Promise<void>;
|
|
2873
|
+
UpdateWorkspace(input: UpdateWorkspaceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2874
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateWorkspaceInput): Promise<boolean>;
|
|
2875
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateWorkspaceInput): Promise<void>;
|
|
2876
|
+
DeleteWorkspace(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2877
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
2878
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
2879
|
+
}
|
|
2880
|
+
export declare class WorkspaceItem_ {
|
|
2881
|
+
ID: number;
|
|
2882
|
+
Name: string;
|
|
2883
|
+
Description?: string;
|
|
2884
|
+
WorkSpaceID: number;
|
|
2885
|
+
ResourceTypeID: number;
|
|
2886
|
+
ResourceRecordID?: string;
|
|
2887
|
+
Sequence: number;
|
|
2888
|
+
Configuration?: string;
|
|
2889
|
+
WorkSpace: string;
|
|
2890
|
+
ResourceType: string;
|
|
2891
|
+
}
|
|
2892
|
+
export declare class CreateWorkspaceItemInput {
|
|
2893
|
+
Name: string;
|
|
2894
|
+
Description: string;
|
|
2895
|
+
WorkSpaceID: number;
|
|
2896
|
+
ResourceTypeID: number;
|
|
2897
|
+
ResourceRecordID: string;
|
|
2898
|
+
Sequence: number;
|
|
2899
|
+
Configuration: string;
|
|
2900
|
+
}
|
|
2901
|
+
export declare class UpdateWorkspaceItemInput {
|
|
2902
|
+
ID: number;
|
|
2903
|
+
Name: string;
|
|
2904
|
+
Description: string;
|
|
2905
|
+
WorkSpaceID: number;
|
|
2906
|
+
ResourceTypeID: number;
|
|
2907
|
+
ResourceRecordID: string;
|
|
2908
|
+
Sequence: number;
|
|
2909
|
+
Configuration: string;
|
|
2910
|
+
}
|
|
2911
|
+
export declare class RunWorkspaceItemViewResult {
|
|
2912
|
+
Results: WorkspaceItem_[];
|
|
2913
|
+
UserViewRunID?: number;
|
|
2914
|
+
RowCount: number;
|
|
2915
|
+
TotalRowCount: number;
|
|
2916
|
+
ExecutionTime: number;
|
|
2917
|
+
ErrorMessage?: string;
|
|
2918
|
+
Success: boolean;
|
|
2919
|
+
}
|
|
2920
|
+
export declare class WorkspaceItemResolver extends ResolverBase {
|
|
2921
|
+
RunWorkspaceItemViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2922
|
+
RunWorkspaceItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2923
|
+
RunWorkspaceItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2924
|
+
WorkspaceItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkspaceItem_ | null>;
|
|
2925
|
+
CreateWorkspaceItem(input: CreateWorkspaceItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2926
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateWorkspaceItemInput): Promise<boolean>;
|
|
2927
|
+
protected AfterCreate(dataSource: DataSource, input: CreateWorkspaceItemInput): Promise<void>;
|
|
2928
|
+
UpdateWorkspaceItem(input: UpdateWorkspaceItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2929
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateWorkspaceItemInput): Promise<boolean>;
|
|
2930
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateWorkspaceItemInput): Promise<void>;
|
|
2931
|
+
DeleteWorkspaceItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
2932
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
2933
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
2934
|
+
}
|
|
2935
|
+
export declare class Dataset_ {
|
|
2936
|
+
ID: number;
|
|
2937
|
+
Name: string;
|
|
2938
|
+
Description?: string;
|
|
2939
|
+
CreatedAt: Date;
|
|
2940
|
+
UpdatedAt: Date;
|
|
2941
|
+
DatasetItemsArray: mj_core_schema_server_object_types.DatasetItem_[];
|
|
2942
|
+
}
|
|
2943
|
+
export declare class RunDatasetViewResult {
|
|
2944
|
+
Results: Dataset_[];
|
|
2945
|
+
UserViewRunID?: number;
|
|
2946
|
+
RowCount: number;
|
|
2947
|
+
TotalRowCount: number;
|
|
2948
|
+
ExecutionTime: number;
|
|
2949
|
+
ErrorMessage?: string;
|
|
2950
|
+
Success: boolean;
|
|
2951
|
+
}
|
|
2952
|
+
export declare class DatasetResolver extends ResolverBase {
|
|
2953
|
+
RunDatasetViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2954
|
+
RunDatasetViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2955
|
+
RunDatasetDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2956
|
+
Dataset(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dataset_ | null>;
|
|
2957
|
+
DatasetItemsArray(dataset_: Dataset_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2958
|
+
}
|
|
2959
|
+
export declare class DatasetItem_ {
|
|
2960
|
+
ID: number;
|
|
2961
|
+
Code: string;
|
|
2962
|
+
DatasetName?: string;
|
|
2963
|
+
Sequence: number;
|
|
2964
|
+
EntityID: number;
|
|
2965
|
+
WhereClause?: string;
|
|
2966
|
+
DateFieldToCheck: string;
|
|
2967
|
+
Description?: string;
|
|
2968
|
+
CreatedAt: Date;
|
|
2969
|
+
UpdatedAt: Date;
|
|
2970
|
+
Entity: string;
|
|
2971
|
+
}
|
|
2972
|
+
export declare class RunDatasetItemViewResult {
|
|
2973
|
+
Results: DatasetItem_[];
|
|
2974
|
+
UserViewRunID?: number;
|
|
2975
|
+
RowCount: number;
|
|
2976
|
+
TotalRowCount: number;
|
|
2977
|
+
ExecutionTime: number;
|
|
2978
|
+
ErrorMessage?: string;
|
|
2979
|
+
Success: boolean;
|
|
2980
|
+
}
|
|
2981
|
+
export declare class DatasetItemResolver extends ResolverBase {
|
|
2982
|
+
RunDatasetItemViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2983
|
+
RunDatasetItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2984
|
+
RunDatasetItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
2985
|
+
DatasetItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DatasetItem_ | null>;
|
|
2986
|
+
}
|
|
2987
|
+
export declare class ConversationDetail_ {
|
|
2988
|
+
ID: number;
|
|
2989
|
+
ConversationID: number;
|
|
2990
|
+
ExternalID?: string;
|
|
2991
|
+
Role: string;
|
|
2992
|
+
Message: string;
|
|
2993
|
+
Error?: string;
|
|
2994
|
+
HiddenToUser: boolean;
|
|
2995
|
+
CreatedAt: Date;
|
|
2996
|
+
UpdatedAt: Date;
|
|
2997
|
+
Conversation?: string;
|
|
2998
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
2999
|
+
}
|
|
3000
|
+
export declare class CreateConversationDetailInput {
|
|
3001
|
+
ConversationID: number;
|
|
3002
|
+
ExternalID: string;
|
|
3003
|
+
Role: string;
|
|
3004
|
+
Message: string;
|
|
3005
|
+
Error: string;
|
|
3006
|
+
HiddenToUser: boolean;
|
|
3007
|
+
}
|
|
3008
|
+
export declare class UpdateConversationDetailInput {
|
|
3009
|
+
ID: number;
|
|
3010
|
+
ConversationID: number;
|
|
3011
|
+
ExternalID: string;
|
|
3012
|
+
Role: string;
|
|
3013
|
+
Message: string;
|
|
3014
|
+
Error: string;
|
|
3015
|
+
HiddenToUser: boolean;
|
|
3016
|
+
}
|
|
3017
|
+
export declare class RunConversationDetailViewResult {
|
|
3018
|
+
Results: ConversationDetail_[];
|
|
3019
|
+
UserViewRunID?: number;
|
|
3020
|
+
RowCount: number;
|
|
3021
|
+
TotalRowCount: number;
|
|
3022
|
+
ExecutionTime: number;
|
|
3023
|
+
ErrorMessage?: string;
|
|
3024
|
+
Success: boolean;
|
|
3025
|
+
}
|
|
3026
|
+
export declare class ConversationDetailResolver extends ResolverBase {
|
|
3027
|
+
RunConversationDetailViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3028
|
+
RunConversationDetailViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3029
|
+
RunConversationDetailDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3030
|
+
ConversationDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ConversationDetail_ | null>;
|
|
3031
|
+
ReportsArray(conversationdetail_: ConversationDetail_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3032
|
+
CreateConversationDetail(input: CreateConversationDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3033
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateConversationDetailInput): Promise<boolean>;
|
|
3034
|
+
protected AfterCreate(dataSource: DataSource, input: CreateConversationDetailInput): Promise<void>;
|
|
3035
|
+
UpdateConversationDetail(input: UpdateConversationDetailInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3036
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateConversationDetailInput): Promise<boolean>;
|
|
3037
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateConversationDetailInput): Promise<void>;
|
|
3038
|
+
DeleteConversationDetail(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3039
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
3040
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
3041
|
+
}
|
|
3042
|
+
export declare class Conversation_ {
|
|
3043
|
+
ID: number;
|
|
3044
|
+
UserID: number;
|
|
3045
|
+
ExternalID?: string;
|
|
3046
|
+
Name?: string;
|
|
3047
|
+
Description?: string;
|
|
3048
|
+
Type: string;
|
|
3049
|
+
IsArchived: boolean;
|
|
3050
|
+
LinkedEntityID?: number;
|
|
3051
|
+
LinkedRecordID?: number;
|
|
3052
|
+
DataContextID?: number;
|
|
3053
|
+
CreatedAt: Date;
|
|
3054
|
+
UpdatedAt: Date;
|
|
3055
|
+
User: string;
|
|
3056
|
+
LinkedEntity?: string;
|
|
3057
|
+
ConversationDetailsArray: mj_core_schema_server_object_types.ConversationDetail_[];
|
|
3058
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
3059
|
+
}
|
|
3060
|
+
export declare class CreateConversationInput {
|
|
3061
|
+
UserID: number;
|
|
3062
|
+
ExternalID: string;
|
|
3063
|
+
Name: string;
|
|
3064
|
+
Description: string;
|
|
3065
|
+
Type: string;
|
|
3066
|
+
IsArchived: boolean;
|
|
3067
|
+
LinkedEntityID: number;
|
|
3068
|
+
LinkedRecordID: number;
|
|
3069
|
+
DataContextID: number;
|
|
3070
|
+
}
|
|
3071
|
+
export declare class UpdateConversationInput {
|
|
3072
|
+
ID: number;
|
|
3073
|
+
UserID: number;
|
|
3074
|
+
ExternalID: string;
|
|
3075
|
+
Name: string;
|
|
3076
|
+
Description: string;
|
|
3077
|
+
Type: string;
|
|
3078
|
+
IsArchived: boolean;
|
|
3079
|
+
LinkedEntityID: number;
|
|
3080
|
+
LinkedRecordID: number;
|
|
3081
|
+
DataContextID: number;
|
|
3082
|
+
}
|
|
3083
|
+
export declare class RunConversationViewResult {
|
|
3084
|
+
Results: Conversation_[];
|
|
3085
|
+
UserViewRunID?: number;
|
|
3086
|
+
RowCount: number;
|
|
3087
|
+
TotalRowCount: number;
|
|
3088
|
+
ExecutionTime: number;
|
|
3089
|
+
ErrorMessage?: string;
|
|
3090
|
+
Success: boolean;
|
|
3091
|
+
}
|
|
3092
|
+
export declare class ConversationResolver extends ResolverBase {
|
|
3093
|
+
RunConversationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3094
|
+
RunConversationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3095
|
+
RunConversationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3096
|
+
Conversation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Conversation_ | null>;
|
|
3097
|
+
ConversationDetailsArray(conversation_: Conversation_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3098
|
+
ReportsArray(conversation_: Conversation_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3099
|
+
CreateConversation(input: CreateConversationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3100
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateConversationInput): Promise<boolean>;
|
|
3101
|
+
protected AfterCreate(dataSource: DataSource, input: CreateConversationInput): Promise<void>;
|
|
3102
|
+
UpdateConversation(input: UpdateConversationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3103
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateConversationInput): Promise<boolean>;
|
|
3104
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateConversationInput): Promise<void>;
|
|
3105
|
+
DeleteConversation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3106
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
3107
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
3108
|
+
}
|
|
3109
|
+
export declare class UserNotification_ {
|
|
3110
|
+
ID: number;
|
|
3111
|
+
UserID: number;
|
|
3112
|
+
Title?: string;
|
|
3113
|
+
Message?: string;
|
|
3114
|
+
ResourceTypeID?: number;
|
|
3115
|
+
ResourceRecordID?: number;
|
|
3116
|
+
ResourceConfiguration?: string;
|
|
3117
|
+
Unread: boolean;
|
|
3118
|
+
ReadAt?: Date;
|
|
3119
|
+
CreatedAt: Date;
|
|
3120
|
+
UpdatedAt: Date;
|
|
3121
|
+
User: string;
|
|
3122
|
+
}
|
|
3123
|
+
export declare class CreateUserNotificationInput {
|
|
3124
|
+
UserID: number;
|
|
3125
|
+
Title: string;
|
|
3126
|
+
Message: string;
|
|
3127
|
+
ResourceTypeID: number;
|
|
3128
|
+
ResourceRecordID: number;
|
|
3129
|
+
ResourceConfiguration: string;
|
|
3130
|
+
Unread: boolean;
|
|
3131
|
+
ReadAt: Date;
|
|
3132
|
+
}
|
|
3133
|
+
export declare class UpdateUserNotificationInput {
|
|
3134
|
+
ID: number;
|
|
3135
|
+
UserID: number;
|
|
3136
|
+
Title: string;
|
|
3137
|
+
Message: string;
|
|
3138
|
+
ResourceTypeID: number;
|
|
3139
|
+
ResourceRecordID: number;
|
|
3140
|
+
ResourceConfiguration: string;
|
|
3141
|
+
Unread: boolean;
|
|
3142
|
+
ReadAt: Date;
|
|
3143
|
+
}
|
|
3144
|
+
export declare class RunUserNotificationViewResult {
|
|
3145
|
+
Results: UserNotification_[];
|
|
3146
|
+
UserViewRunID?: number;
|
|
3147
|
+
RowCount: number;
|
|
3148
|
+
TotalRowCount: number;
|
|
3149
|
+
ExecutionTime: number;
|
|
3150
|
+
ErrorMessage?: string;
|
|
3151
|
+
Success: boolean;
|
|
3152
|
+
}
|
|
3153
|
+
export declare class UserNotificationResolver extends ResolverBase {
|
|
3154
|
+
RunUserNotificationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3155
|
+
RunUserNotificationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3156
|
+
RunUserNotificationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3157
|
+
UserNotification(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserNotification_ | null>;
|
|
3158
|
+
CreateUserNotification(input: CreateUserNotificationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3159
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserNotificationInput): Promise<boolean>;
|
|
3160
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserNotificationInput): Promise<void>;
|
|
3161
|
+
UpdateUserNotification(input: UpdateUserNotificationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3162
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserNotificationInput): Promise<boolean>;
|
|
3163
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserNotificationInput): Promise<void>;
|
|
3164
|
+
DeleteUserNotification(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3165
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
3166
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
3167
|
+
}
|
|
3168
|
+
export declare class SchemaInfo_ {
|
|
3169
|
+
ID: number;
|
|
3170
|
+
SchemaName: string;
|
|
3171
|
+
EntityIDMin: number;
|
|
3172
|
+
EntityIDMax: number;
|
|
3173
|
+
Comments?: string;
|
|
3174
|
+
CreatedAt: Date;
|
|
3175
|
+
UpdatedAt: Date;
|
|
3176
|
+
}
|
|
3177
|
+
export declare class CreateSchemaInfoInput {
|
|
3178
|
+
SchemaName: string;
|
|
3179
|
+
EntityIDMin: number;
|
|
3180
|
+
EntityIDMax: number;
|
|
3181
|
+
Comments: string;
|
|
3182
|
+
}
|
|
3183
|
+
export declare class UpdateSchemaInfoInput {
|
|
3184
|
+
ID: number;
|
|
3185
|
+
SchemaName: string;
|
|
3186
|
+
EntityIDMin: number;
|
|
3187
|
+
EntityIDMax: number;
|
|
3188
|
+
Comments: string;
|
|
3189
|
+
}
|
|
3190
|
+
export declare class RunSchemaInfoViewResult {
|
|
3191
|
+
Results: SchemaInfo_[];
|
|
3192
|
+
UserViewRunID?: number;
|
|
3193
|
+
RowCount: number;
|
|
3194
|
+
TotalRowCount: number;
|
|
3195
|
+
ExecutionTime: number;
|
|
3196
|
+
ErrorMessage?: string;
|
|
3197
|
+
Success: boolean;
|
|
3198
|
+
}
|
|
3199
|
+
export declare class SchemaInfoResolver extends ResolverBase {
|
|
3200
|
+
RunSchemaInfoViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3201
|
+
RunSchemaInfoViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3202
|
+
RunSchemaInfoDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3203
|
+
SchemaInfo(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<SchemaInfo_ | null>;
|
|
3204
|
+
CreateSchemaInfo(input: CreateSchemaInfoInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3205
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateSchemaInfoInput): Promise<boolean>;
|
|
3206
|
+
protected AfterCreate(dataSource: DataSource, input: CreateSchemaInfoInput): Promise<void>;
|
|
3207
|
+
UpdateSchemaInfo(input: UpdateSchemaInfoInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3208
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateSchemaInfoInput): Promise<boolean>;
|
|
3209
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateSchemaInfoInput): Promise<void>;
|
|
3210
|
+
}
|
|
3211
|
+
export declare class CompanyIntegrationRecordMap_ {
|
|
3212
|
+
ID: number;
|
|
3213
|
+
CompanyIntegrationID: number;
|
|
3214
|
+
ExternalSystemRecordID: string;
|
|
3215
|
+
EntityID: number;
|
|
3216
|
+
EntityRecordID: string;
|
|
3217
|
+
CreatedAt: Date;
|
|
3218
|
+
UpdatedAt: Date;
|
|
3219
|
+
Entity: string;
|
|
3220
|
+
}
|
|
3221
|
+
export declare class CreateCompanyIntegrationRecordMapInput {
|
|
3222
|
+
CompanyIntegrationID: number;
|
|
3223
|
+
ExternalSystemRecordID: string;
|
|
3224
|
+
EntityID: number;
|
|
3225
|
+
EntityRecordID: string;
|
|
3226
|
+
}
|
|
3227
|
+
export declare class UpdateCompanyIntegrationRecordMapInput {
|
|
3228
|
+
ID: number;
|
|
3229
|
+
CompanyIntegrationID: number;
|
|
3230
|
+
ExternalSystemRecordID: string;
|
|
3231
|
+
EntityID: number;
|
|
3232
|
+
EntityRecordID: string;
|
|
3233
|
+
}
|
|
3234
|
+
export declare class RunCompanyIntegrationRecordMapViewResult {
|
|
3235
|
+
Results: CompanyIntegrationRecordMap_[];
|
|
3236
|
+
UserViewRunID?: number;
|
|
3237
|
+
RowCount: number;
|
|
3238
|
+
TotalRowCount: number;
|
|
3239
|
+
ExecutionTime: number;
|
|
3240
|
+
ErrorMessage?: string;
|
|
3241
|
+
Success: boolean;
|
|
3242
|
+
}
|
|
3243
|
+
export declare class CompanyIntegrationRecordMapResolver extends ResolverBase {
|
|
3244
|
+
RunCompanyIntegrationRecordMapViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3245
|
+
RunCompanyIntegrationRecordMapViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3246
|
+
RunCompanyIntegrationRecordMapDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3247
|
+
CompanyIntegrationRecordMap(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRecordMap_ | null>;
|
|
3248
|
+
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3249
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateCompanyIntegrationRecordMapInput): Promise<boolean>;
|
|
3250
|
+
protected AfterCreate(dataSource: DataSource, input: CreateCompanyIntegrationRecordMapInput): Promise<void>;
|
|
3251
|
+
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3252
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRecordMapInput): Promise<boolean>;
|
|
3253
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateCompanyIntegrationRecordMapInput): Promise<void>;
|
|
3254
|
+
}
|
|
3255
|
+
export declare class RecordMergeLog_ {
|
|
3256
|
+
ID: number;
|
|
3257
|
+
EntityID: number;
|
|
3258
|
+
SurvivingRecordID: string;
|
|
3259
|
+
InitiatedByUserID: number;
|
|
3260
|
+
ApprovalStatus: string;
|
|
3261
|
+
ApprovedByUserID?: number;
|
|
3262
|
+
ProcessingStatus: string;
|
|
3263
|
+
ProcessingStartedAt: Date;
|
|
3264
|
+
ProcessingEndedAt?: Date;
|
|
3265
|
+
ProcessingLog?: string;
|
|
3266
|
+
Comments?: string;
|
|
3267
|
+
CreatedAt: Date;
|
|
3268
|
+
UpdatedAt?: Date;
|
|
3269
|
+
Entity: string;
|
|
3270
|
+
InitiatedByUser: string;
|
|
3271
|
+
RecordMergeDeletionLogsArray: mj_core_schema_server_object_types.RecordMergeDeletionLog_[];
|
|
3272
|
+
}
|
|
3273
|
+
export declare class CreateRecordMergeLogInput {
|
|
3274
|
+
EntityID: number;
|
|
3275
|
+
SurvivingRecordID: string;
|
|
3276
|
+
InitiatedByUserID: number;
|
|
3277
|
+
ApprovalStatus: string;
|
|
3278
|
+
ApprovedByUserID: number;
|
|
3279
|
+
ProcessingStatus: string;
|
|
3280
|
+
ProcessingStartedAt: Date;
|
|
3281
|
+
ProcessingEndedAt: Date;
|
|
3282
|
+
ProcessingLog: string;
|
|
3283
|
+
Comments: string;
|
|
3284
|
+
}
|
|
3285
|
+
export declare class UpdateRecordMergeLogInput {
|
|
3286
|
+
ID: number;
|
|
3287
|
+
EntityID: number;
|
|
3288
|
+
SurvivingRecordID: string;
|
|
3289
|
+
InitiatedByUserID: number;
|
|
3290
|
+
ApprovalStatus: string;
|
|
3291
|
+
ApprovedByUserID: number;
|
|
3292
|
+
ProcessingStatus: string;
|
|
3293
|
+
ProcessingStartedAt: Date;
|
|
3294
|
+
ProcessingEndedAt: Date;
|
|
3295
|
+
ProcessingLog: string;
|
|
3296
|
+
Comments: string;
|
|
3297
|
+
}
|
|
3298
|
+
export declare class RunRecordMergeLogViewResult {
|
|
3299
|
+
Results: RecordMergeLog_[];
|
|
3300
|
+
UserViewRunID?: number;
|
|
3301
|
+
RowCount: number;
|
|
3302
|
+
TotalRowCount: number;
|
|
3303
|
+
ExecutionTime: number;
|
|
3304
|
+
ErrorMessage?: string;
|
|
3305
|
+
Success: boolean;
|
|
3306
|
+
}
|
|
3307
|
+
export declare class RecordMergeLogResolver extends ResolverBase {
|
|
3308
|
+
RunRecordMergeLogViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3309
|
+
RunRecordMergeLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3310
|
+
RunRecordMergeLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3311
|
+
RecordMergeLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeLog_ | null>;
|
|
3312
|
+
RecordMergeDeletionLogsArray(recordmergelog_: RecordMergeLog_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3313
|
+
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3314
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateRecordMergeLogInput): Promise<boolean>;
|
|
3315
|
+
protected AfterCreate(dataSource: DataSource, input: CreateRecordMergeLogInput): Promise<void>;
|
|
3316
|
+
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3317
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateRecordMergeLogInput): Promise<boolean>;
|
|
3318
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateRecordMergeLogInput): Promise<void>;
|
|
3319
|
+
}
|
|
3320
|
+
export declare class RecordMergeDeletionLog_ {
|
|
3321
|
+
ID: number;
|
|
3322
|
+
RecordMergeLogID: number;
|
|
3323
|
+
DeletedRecordID: string;
|
|
3324
|
+
Status: string;
|
|
3325
|
+
ProcessingLog?: string;
|
|
3326
|
+
CreatedAt: Date;
|
|
3327
|
+
UpdatedAt: Date;
|
|
3328
|
+
}
|
|
3329
|
+
export declare class CreateRecordMergeDeletionLogInput {
|
|
3330
|
+
RecordMergeLogID: number;
|
|
3331
|
+
DeletedRecordID: string;
|
|
3332
|
+
Status: string;
|
|
3333
|
+
ProcessingLog: string;
|
|
3334
|
+
}
|
|
3335
|
+
export declare class UpdateRecordMergeDeletionLogInput {
|
|
3336
|
+
ID: number;
|
|
3337
|
+
RecordMergeLogID: number;
|
|
3338
|
+
DeletedRecordID: string;
|
|
3339
|
+
Status: string;
|
|
3340
|
+
ProcessingLog: string;
|
|
3341
|
+
}
|
|
3342
|
+
export declare class RunRecordMergeDeletionLogViewResult {
|
|
3343
|
+
Results: RecordMergeDeletionLog_[];
|
|
3344
|
+
UserViewRunID?: number;
|
|
3345
|
+
RowCount: number;
|
|
3346
|
+
TotalRowCount: number;
|
|
3347
|
+
ExecutionTime: number;
|
|
3348
|
+
ErrorMessage?: string;
|
|
3349
|
+
Success: boolean;
|
|
3350
|
+
}
|
|
3351
|
+
export declare class RecordMergeDeletionLogResolver extends ResolverBase {
|
|
3352
|
+
RunRecordMergeDeletionLogViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3353
|
+
RunRecordMergeDeletionLogViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3354
|
+
RunRecordMergeDeletionLogDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3355
|
+
RecordMergeDeletionLog(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeDeletionLog_ | null>;
|
|
3356
|
+
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3357
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateRecordMergeDeletionLogInput): Promise<boolean>;
|
|
3358
|
+
protected AfterCreate(dataSource: DataSource, input: CreateRecordMergeDeletionLogInput): Promise<void>;
|
|
3359
|
+
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3360
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateRecordMergeDeletionLogInput): Promise<boolean>;
|
|
3361
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateRecordMergeDeletionLogInput): Promise<void>;
|
|
3362
|
+
}
|
|
3363
|
+
export declare class QueryField_ {
|
|
3364
|
+
ID: number;
|
|
3365
|
+
QueryID: number;
|
|
3366
|
+
Name: string;
|
|
3367
|
+
Description?: string;
|
|
3368
|
+
Sequence: number;
|
|
3369
|
+
SQLBaseType: string;
|
|
3370
|
+
SQLFullType: string;
|
|
3371
|
+
SourceEntityID?: number;
|
|
3372
|
+
SourceFieldName?: string;
|
|
3373
|
+
IsComputed: boolean;
|
|
3374
|
+
ComputationDescription?: string;
|
|
3375
|
+
IsSummary: boolean;
|
|
3376
|
+
SummaryDescription?: string;
|
|
3377
|
+
CreatedAt: Date;
|
|
3378
|
+
UpdatedAt: Date;
|
|
3379
|
+
Query: string;
|
|
3380
|
+
SourceEntity?: string;
|
|
3381
|
+
}
|
|
3382
|
+
export declare class CreateQueryFieldInput {
|
|
3383
|
+
QueryID: number;
|
|
3384
|
+
Name: string;
|
|
3385
|
+
Description: string;
|
|
3386
|
+
Sequence: number;
|
|
3387
|
+
SQLBaseType: string;
|
|
3388
|
+
SQLFullType: string;
|
|
3389
|
+
SourceEntityID: number;
|
|
3390
|
+
SourceFieldName: string;
|
|
3391
|
+
IsComputed: boolean;
|
|
3392
|
+
ComputationDescription: string;
|
|
3393
|
+
IsSummary: boolean;
|
|
3394
|
+
SummaryDescription: string;
|
|
3395
|
+
}
|
|
3396
|
+
export declare class UpdateQueryFieldInput {
|
|
3397
|
+
ID: number;
|
|
3398
|
+
QueryID: number;
|
|
3399
|
+
Name: string;
|
|
3400
|
+
Description: string;
|
|
3401
|
+
Sequence: number;
|
|
3402
|
+
SQLBaseType: string;
|
|
3403
|
+
SQLFullType: string;
|
|
3404
|
+
SourceEntityID: number;
|
|
3405
|
+
SourceFieldName: string;
|
|
3406
|
+
IsComputed: boolean;
|
|
3407
|
+
ComputationDescription: string;
|
|
3408
|
+
IsSummary: boolean;
|
|
3409
|
+
SummaryDescription: string;
|
|
3410
|
+
}
|
|
3411
|
+
export declare class RunQueryFieldViewResult {
|
|
3412
|
+
Results: QueryField_[];
|
|
3413
|
+
UserViewRunID?: number;
|
|
3414
|
+
RowCount: number;
|
|
3415
|
+
TotalRowCount: number;
|
|
3416
|
+
ExecutionTime: number;
|
|
3417
|
+
ErrorMessage?: string;
|
|
3418
|
+
Success: boolean;
|
|
3419
|
+
}
|
|
3420
|
+
export declare class QueryFieldResolver extends ResolverBase {
|
|
3421
|
+
RunQueryFieldViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3422
|
+
RunQueryFieldViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3423
|
+
RunQueryFieldDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3424
|
+
QueryField(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryField_ | null>;
|
|
3425
|
+
CreateQueryField(input: CreateQueryFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3426
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateQueryFieldInput): Promise<boolean>;
|
|
3427
|
+
protected AfterCreate(dataSource: DataSource, input: CreateQueryFieldInput): Promise<void>;
|
|
3428
|
+
UpdateQueryField(input: UpdateQueryFieldInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3429
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateQueryFieldInput): Promise<boolean>;
|
|
3430
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateQueryFieldInput): Promise<void>;
|
|
3431
|
+
}
|
|
3432
|
+
export declare class QueryCategory_ {
|
|
3433
|
+
ID: number;
|
|
3434
|
+
Name: string;
|
|
3435
|
+
ParentID?: number;
|
|
3436
|
+
Description?: string;
|
|
3437
|
+
CreatedAt: Date;
|
|
3438
|
+
UpdatedAt: Date;
|
|
3439
|
+
Parent?: string;
|
|
3440
|
+
QueryCategoriesArray: mj_core_schema_server_object_types.QueryCategory_[];
|
|
3441
|
+
QueriesArray: mj_core_schema_server_object_types.Query_[];
|
|
3442
|
+
}
|
|
3443
|
+
export declare class CreateQueryCategoryInput {
|
|
3444
|
+
Name: string;
|
|
3445
|
+
ParentID: number;
|
|
3446
|
+
Description: string;
|
|
3447
|
+
}
|
|
3448
|
+
export declare class UpdateQueryCategoryInput {
|
|
3449
|
+
ID: number;
|
|
3450
|
+
Name: string;
|
|
3451
|
+
ParentID: number;
|
|
3452
|
+
Description: string;
|
|
3453
|
+
}
|
|
3454
|
+
export declare class RunQueryCategoryViewResult {
|
|
3455
|
+
Results: QueryCategory_[];
|
|
3456
|
+
UserViewRunID?: number;
|
|
3457
|
+
RowCount: number;
|
|
3458
|
+
TotalRowCount: number;
|
|
3459
|
+
ExecutionTime: number;
|
|
3460
|
+
ErrorMessage?: string;
|
|
3461
|
+
Success: boolean;
|
|
3462
|
+
}
|
|
3463
|
+
export declare class QueryCategoryResolver extends ResolverBase {
|
|
3464
|
+
RunQueryCategoryViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3465
|
+
RunQueryCategoryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3466
|
+
RunQueryCategoryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3467
|
+
QueryCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryCategory_ | null>;
|
|
3468
|
+
QueryCategoriesArray(querycategory_: QueryCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3469
|
+
QueriesArray(querycategory_: QueryCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3470
|
+
CreateQueryCategory(input: CreateQueryCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3471
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateQueryCategoryInput): Promise<boolean>;
|
|
3472
|
+
protected AfterCreate(dataSource: DataSource, input: CreateQueryCategoryInput): Promise<void>;
|
|
3473
|
+
UpdateQueryCategory(input: UpdateQueryCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3474
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateQueryCategoryInput): Promise<boolean>;
|
|
3475
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateQueryCategoryInput): Promise<void>;
|
|
3476
|
+
}
|
|
3477
|
+
export declare class Query_ {
|
|
3478
|
+
ID: number;
|
|
3479
|
+
Name: string;
|
|
3480
|
+
Description?: string;
|
|
3481
|
+
CategoryID: number;
|
|
3482
|
+
SQL?: string;
|
|
3483
|
+
OriginalSQL?: string;
|
|
3484
|
+
Feedback?: string;
|
|
3485
|
+
Status: string;
|
|
3486
|
+
QualityRank?: number;
|
|
3487
|
+
CreatedAt: Date;
|
|
3488
|
+
UpdatedAt: Date;
|
|
3489
|
+
Category: string;
|
|
3490
|
+
QueryFieldsArray: mj_core_schema_server_object_types.QueryField_[];
|
|
3491
|
+
QueryPermissionsArray: mj_core_schema_server_object_types.QueryPermission_[];
|
|
3492
|
+
DataContextItemsArray: mj_core_schema_server_object_types.DataContextItem_[];
|
|
3493
|
+
}
|
|
3494
|
+
export declare class CreateQueryInput {
|
|
3495
|
+
Name: string;
|
|
3496
|
+
Description: string;
|
|
3497
|
+
CategoryID: number;
|
|
3498
|
+
SQL: string;
|
|
3499
|
+
OriginalSQL: string;
|
|
3500
|
+
Feedback: string;
|
|
3501
|
+
Status: string;
|
|
3502
|
+
QualityRank: number;
|
|
3503
|
+
}
|
|
3504
|
+
export declare class UpdateQueryInput {
|
|
3505
|
+
ID: number;
|
|
3506
|
+
Name: string;
|
|
3507
|
+
Description: string;
|
|
3508
|
+
CategoryID: number;
|
|
3509
|
+
SQL: string;
|
|
3510
|
+
OriginalSQL: string;
|
|
3511
|
+
Feedback: string;
|
|
3512
|
+
Status: string;
|
|
3513
|
+
QualityRank: number;
|
|
3514
|
+
}
|
|
3515
|
+
export declare class RunQueryViewResult {
|
|
3516
|
+
Results: Query_[];
|
|
3517
|
+
UserViewRunID?: number;
|
|
3518
|
+
RowCount: number;
|
|
3519
|
+
TotalRowCount: number;
|
|
3520
|
+
ExecutionTime: number;
|
|
3521
|
+
ErrorMessage?: string;
|
|
3522
|
+
Success: boolean;
|
|
3523
|
+
}
|
|
3524
|
+
export declare class QueryResolver extends ResolverBase {
|
|
3525
|
+
RunQueryViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3526
|
+
RunQueryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3527
|
+
RunQueryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3528
|
+
Query(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Query_ | null>;
|
|
3529
|
+
QueryFieldsArray(query_: Query_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3530
|
+
QueryPermissionsArray(query_: Query_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3531
|
+
DataContextItemsArray(query_: Query_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3532
|
+
CreateQuery(input: CreateQueryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3533
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateQueryInput): Promise<boolean>;
|
|
3534
|
+
protected AfterCreate(dataSource: DataSource, input: CreateQueryInput): Promise<void>;
|
|
3535
|
+
UpdateQuery(input: UpdateQueryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3536
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateQueryInput): Promise<boolean>;
|
|
3537
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateQueryInput): Promise<void>;
|
|
3538
|
+
}
|
|
3539
|
+
export declare class QueryPermission_ {
|
|
3540
|
+
ID: number;
|
|
3541
|
+
QueryID: number;
|
|
3542
|
+
RoleName: string;
|
|
3543
|
+
CreatedAt: Date;
|
|
3544
|
+
UpdatedAt: Date;
|
|
3545
|
+
}
|
|
3546
|
+
export declare class CreateQueryPermissionInput {
|
|
3547
|
+
QueryID: number;
|
|
3548
|
+
RoleName: string;
|
|
3549
|
+
}
|
|
3550
|
+
export declare class UpdateQueryPermissionInput {
|
|
3551
|
+
ID: number;
|
|
3552
|
+
QueryID: number;
|
|
3553
|
+
RoleName: string;
|
|
3554
|
+
}
|
|
3555
|
+
export declare class RunQueryPermissionViewResult {
|
|
3556
|
+
Results: QueryPermission_[];
|
|
3557
|
+
UserViewRunID?: number;
|
|
3558
|
+
RowCount: number;
|
|
3559
|
+
TotalRowCount: number;
|
|
3560
|
+
ExecutionTime: number;
|
|
3561
|
+
ErrorMessage?: string;
|
|
3562
|
+
Success: boolean;
|
|
3563
|
+
}
|
|
3564
|
+
export declare class QueryPermissionResolver extends ResolverBase {
|
|
3565
|
+
RunQueryPermissionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3566
|
+
RunQueryPermissionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3567
|
+
RunQueryPermissionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3568
|
+
QueryPermission(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryPermission_ | null>;
|
|
3569
|
+
CreateQueryPermission(input: CreateQueryPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3570
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateQueryPermissionInput): Promise<boolean>;
|
|
3571
|
+
protected AfterCreate(dataSource: DataSource, input: CreateQueryPermissionInput): Promise<void>;
|
|
3572
|
+
UpdateQueryPermission(input: UpdateQueryPermissionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3573
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateQueryPermissionInput): Promise<boolean>;
|
|
3574
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateQueryPermissionInput): Promise<void>;
|
|
3575
|
+
}
|
|
3576
|
+
export declare class VectorIndex_ {
|
|
3577
|
+
ID: number;
|
|
3578
|
+
Name: string;
|
|
3579
|
+
Description?: string;
|
|
3580
|
+
VectorDatabaseID: number;
|
|
3581
|
+
EmbeddingModelID: number;
|
|
3582
|
+
CreatedAt: Date;
|
|
3583
|
+
UpdatedAt: Date;
|
|
3584
|
+
VectorDatabase: string;
|
|
3585
|
+
EmbeddingModel: string;
|
|
3586
|
+
}
|
|
3587
|
+
export declare class CreateVectorIndexInput {
|
|
3588
|
+
Name: string;
|
|
3589
|
+
Description: string;
|
|
3590
|
+
VectorDatabaseID: number;
|
|
3591
|
+
EmbeddingModelID: number;
|
|
3592
|
+
}
|
|
3593
|
+
export declare class UpdateVectorIndexInput {
|
|
3594
|
+
ID: number;
|
|
3595
|
+
Name: string;
|
|
3596
|
+
Description: string;
|
|
3597
|
+
VectorDatabaseID: number;
|
|
3598
|
+
EmbeddingModelID: number;
|
|
3599
|
+
}
|
|
3600
|
+
export declare class RunVectorIndexViewResult {
|
|
3601
|
+
Results: VectorIndex_[];
|
|
3602
|
+
UserViewRunID?: number;
|
|
3603
|
+
RowCount: number;
|
|
3604
|
+
TotalRowCount: number;
|
|
3605
|
+
ExecutionTime: number;
|
|
3606
|
+
ErrorMessage?: string;
|
|
3607
|
+
Success: boolean;
|
|
3608
|
+
}
|
|
3609
|
+
export declare class VectorIndexResolver extends ResolverBase {
|
|
3610
|
+
RunVectorIndexViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3611
|
+
RunVectorIndexViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3612
|
+
RunVectorIndexDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3613
|
+
VectorIndex(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorIndex_ | null>;
|
|
3614
|
+
CreateVectorIndex(input: CreateVectorIndexInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3615
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateVectorIndexInput): Promise<boolean>;
|
|
3616
|
+
protected AfterCreate(dataSource: DataSource, input: CreateVectorIndexInput): Promise<void>;
|
|
3617
|
+
UpdateVectorIndex(input: UpdateVectorIndexInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3618
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateVectorIndexInput): Promise<boolean>;
|
|
3619
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateVectorIndexInput): Promise<void>;
|
|
3620
|
+
}
|
|
3621
|
+
export declare class EntityDocumentType_ {
|
|
3622
|
+
ID: number;
|
|
3623
|
+
Name: string;
|
|
3624
|
+
Description?: string;
|
|
3625
|
+
CreatedAt: Date;
|
|
3626
|
+
UpdatedAt: Date;
|
|
3627
|
+
EntityDocumentsArray: mj_core_schema_server_object_types.EntityDocument_[];
|
|
3628
|
+
}
|
|
3629
|
+
export declare class CreateEntityDocumentTypeInput {
|
|
3630
|
+
Name: string;
|
|
3631
|
+
Description: string;
|
|
3632
|
+
}
|
|
3633
|
+
export declare class UpdateEntityDocumentTypeInput {
|
|
3634
|
+
ID: number;
|
|
3635
|
+
Name: string;
|
|
3636
|
+
Description: string;
|
|
3637
|
+
}
|
|
3638
|
+
export declare class RunEntityDocumentTypeViewResult {
|
|
3639
|
+
Results: EntityDocumentType_[];
|
|
3640
|
+
UserViewRunID?: number;
|
|
3641
|
+
RowCount: number;
|
|
3642
|
+
TotalRowCount: number;
|
|
3643
|
+
ExecutionTime: number;
|
|
3644
|
+
ErrorMessage?: string;
|
|
3645
|
+
Success: boolean;
|
|
3646
|
+
}
|
|
3647
|
+
export declare class EntityDocumentTypeResolver extends ResolverBase {
|
|
3648
|
+
RunEntityDocumentTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3649
|
+
RunEntityDocumentTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3650
|
+
RunEntityDocumentTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3651
|
+
EntityDocumentType(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentType_ | null>;
|
|
3652
|
+
EntityDocumentsArray(entitydocumenttype_: EntityDocumentType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3653
|
+
CreateEntityDocumentType(input: CreateEntityDocumentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3654
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityDocumentTypeInput): Promise<boolean>;
|
|
3655
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityDocumentTypeInput): Promise<void>;
|
|
3656
|
+
UpdateEntityDocumentType(input: UpdateEntityDocumentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3657
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityDocumentTypeInput): Promise<boolean>;
|
|
3658
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityDocumentTypeInput): Promise<void>;
|
|
3659
|
+
}
|
|
3660
|
+
export declare class EntityDocumentRun_ {
|
|
3661
|
+
ID: number;
|
|
3662
|
+
EntityDocumentID: number;
|
|
3663
|
+
StartedAt?: Date;
|
|
3664
|
+
EndedAt?: Date;
|
|
3665
|
+
Status: string;
|
|
3666
|
+
CreatedAt: Date;
|
|
3667
|
+
UpdatedAt: Date;
|
|
3668
|
+
EntityDocument: string;
|
|
3669
|
+
}
|
|
3670
|
+
export declare class CreateEntityDocumentRunInput {
|
|
3671
|
+
EntityDocumentID: number;
|
|
3672
|
+
StartedAt: Date;
|
|
3673
|
+
EndedAt: Date;
|
|
3674
|
+
Status: string;
|
|
3675
|
+
}
|
|
3676
|
+
export declare class UpdateEntityDocumentRunInput {
|
|
3677
|
+
ID: number;
|
|
3678
|
+
EntityDocumentID: number;
|
|
3679
|
+
StartedAt: Date;
|
|
3680
|
+
EndedAt: Date;
|
|
3681
|
+
Status: string;
|
|
3682
|
+
}
|
|
3683
|
+
export declare class RunEntityDocumentRunViewResult {
|
|
3684
|
+
Results: EntityDocumentRun_[];
|
|
3685
|
+
UserViewRunID?: number;
|
|
3686
|
+
RowCount: number;
|
|
3687
|
+
TotalRowCount: number;
|
|
3688
|
+
ExecutionTime: number;
|
|
3689
|
+
ErrorMessage?: string;
|
|
3690
|
+
Success: boolean;
|
|
3691
|
+
}
|
|
3692
|
+
export declare class EntityDocumentRunResolver extends ResolverBase {
|
|
3693
|
+
RunEntityDocumentRunViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3694
|
+
RunEntityDocumentRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3695
|
+
RunEntityDocumentRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3696
|
+
EntityDocumentRun(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentRun_ | null>;
|
|
3697
|
+
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3698
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityDocumentRunInput): Promise<boolean>;
|
|
3699
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityDocumentRunInput): Promise<void>;
|
|
3700
|
+
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3701
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityDocumentRunInput): Promise<boolean>;
|
|
3702
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityDocumentRunInput): Promise<void>;
|
|
3703
|
+
}
|
|
3704
|
+
export declare class VectorDatabase_ {
|
|
3705
|
+
ID: number;
|
|
3706
|
+
Name: string;
|
|
3707
|
+
Description?: string;
|
|
3708
|
+
DefaultURL?: string;
|
|
3709
|
+
ClassKey?: string;
|
|
3710
|
+
CreatedAt: Date;
|
|
3711
|
+
UpdatedAt: Date;
|
|
3712
|
+
VectorIndexesArray: mj_core_schema_server_object_types.VectorIndex_[];
|
|
3713
|
+
}
|
|
3714
|
+
export declare class CreateVectorDatabaseInput {
|
|
3715
|
+
Name: string;
|
|
3716
|
+
Description: string;
|
|
3717
|
+
DefaultURL: string;
|
|
3718
|
+
ClassKey: string;
|
|
3719
|
+
}
|
|
3720
|
+
export declare class UpdateVectorDatabaseInput {
|
|
3721
|
+
ID: number;
|
|
3722
|
+
Name: string;
|
|
3723
|
+
Description: string;
|
|
3724
|
+
DefaultURL: string;
|
|
3725
|
+
ClassKey: string;
|
|
3726
|
+
}
|
|
3727
|
+
export declare class RunVectorDatabaseViewResult {
|
|
3728
|
+
Results: VectorDatabase_[];
|
|
3729
|
+
UserViewRunID?: number;
|
|
3730
|
+
RowCount: number;
|
|
3731
|
+
TotalRowCount: number;
|
|
3732
|
+
ExecutionTime: number;
|
|
3733
|
+
ErrorMessage?: string;
|
|
3734
|
+
Success: boolean;
|
|
3735
|
+
}
|
|
3736
|
+
export declare class VectorDatabaseResolver extends ResolverBase {
|
|
3737
|
+
RunVectorDatabaseViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3738
|
+
RunVectorDatabaseViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3739
|
+
RunVectorDatabaseDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3740
|
+
VectorDatabase(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorDatabase_ | null>;
|
|
3741
|
+
VectorIndexesArray(vectordatabase_: VectorDatabase_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3742
|
+
CreateVectorDatabase(input: CreateVectorDatabaseInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3743
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateVectorDatabaseInput): Promise<boolean>;
|
|
3744
|
+
protected AfterCreate(dataSource: DataSource, input: CreateVectorDatabaseInput): Promise<void>;
|
|
3745
|
+
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3746
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateVectorDatabaseInput): Promise<boolean>;
|
|
3747
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateVectorDatabaseInput): Promise<void>;
|
|
3748
|
+
}
|
|
3749
|
+
export declare class EntityRecordDocument_ {
|
|
3750
|
+
ID: number;
|
|
3751
|
+
EntityID: number;
|
|
3752
|
+
RecordID: string;
|
|
3753
|
+
DocumentText?: string;
|
|
3754
|
+
VectorIndexID: number;
|
|
3755
|
+
VectorID?: string;
|
|
3756
|
+
VectorJSON?: string;
|
|
3757
|
+
EntityRecordUpdatedAt: Date;
|
|
3758
|
+
CreatedAt: Date;
|
|
3759
|
+
UpdatedAt: Date;
|
|
3760
|
+
}
|
|
3761
|
+
export declare class CreateEntityRecordDocumentInput {
|
|
3762
|
+
EntityID: number;
|
|
3763
|
+
RecordID: string;
|
|
3764
|
+
DocumentText: string;
|
|
3765
|
+
VectorIndexID: number;
|
|
3766
|
+
VectorID: string;
|
|
3767
|
+
VectorJSON: string;
|
|
3768
|
+
EntityRecordUpdatedAt: Date;
|
|
3769
|
+
}
|
|
3770
|
+
export declare class UpdateEntityRecordDocumentInput {
|
|
3771
|
+
ID: number;
|
|
3772
|
+
EntityID: number;
|
|
3773
|
+
RecordID: string;
|
|
3774
|
+
DocumentText: string;
|
|
3775
|
+
VectorIndexID: number;
|
|
3776
|
+
VectorID: string;
|
|
3777
|
+
VectorJSON: string;
|
|
3778
|
+
EntityRecordUpdatedAt: Date;
|
|
3779
|
+
}
|
|
3780
|
+
export declare class RunEntityRecordDocumentViewResult {
|
|
3781
|
+
Results: EntityRecordDocument_[];
|
|
3782
|
+
UserViewRunID?: number;
|
|
3783
|
+
RowCount: number;
|
|
3784
|
+
TotalRowCount: number;
|
|
3785
|
+
ExecutionTime: number;
|
|
3786
|
+
ErrorMessage?: string;
|
|
3787
|
+
Success: boolean;
|
|
3788
|
+
}
|
|
3789
|
+
export declare class EntityRecordDocumentResolver extends ResolverBase {
|
|
3790
|
+
RunEntityRecordDocumentViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3791
|
+
RunEntityRecordDocumentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3792
|
+
RunEntityRecordDocumentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3793
|
+
EntityRecordDocument(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRecordDocument_ | null>;
|
|
3794
|
+
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3795
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityRecordDocumentInput): Promise<boolean>;
|
|
3796
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityRecordDocumentInput): Promise<void>;
|
|
3797
|
+
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3798
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityRecordDocumentInput): Promise<boolean>;
|
|
3799
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityRecordDocumentInput): Promise<void>;
|
|
3800
|
+
}
|
|
3801
|
+
export declare class EntityDocument_ {
|
|
3802
|
+
ID: number;
|
|
3803
|
+
Name: string;
|
|
3804
|
+
EntityID: number;
|
|
3805
|
+
TypeID: number;
|
|
3806
|
+
Status: string;
|
|
3807
|
+
Template?: string;
|
|
3808
|
+
CreatedAt: Date;
|
|
3809
|
+
UpdatedAt: Date;
|
|
3810
|
+
Entity: string;
|
|
3811
|
+
Type: string;
|
|
3812
|
+
EntityDocumentRunsArray: mj_core_schema_server_object_types.EntityDocumentRun_[];
|
|
3813
|
+
}
|
|
3814
|
+
export declare class CreateEntityDocumentInput {
|
|
3815
|
+
Name: string;
|
|
3816
|
+
EntityID: number;
|
|
3817
|
+
TypeID: number;
|
|
3818
|
+
Status: string;
|
|
3819
|
+
Template: string;
|
|
3820
|
+
}
|
|
3821
|
+
export declare class UpdateEntityDocumentInput {
|
|
3822
|
+
ID: number;
|
|
3823
|
+
Name: string;
|
|
3824
|
+
EntityID: number;
|
|
3825
|
+
TypeID: number;
|
|
3826
|
+
Status: string;
|
|
3827
|
+
Template: string;
|
|
3828
|
+
}
|
|
3829
|
+
export declare class RunEntityDocumentViewResult {
|
|
3830
|
+
Results: EntityDocument_[];
|
|
3831
|
+
UserViewRunID?: number;
|
|
3832
|
+
RowCount: number;
|
|
3833
|
+
TotalRowCount: number;
|
|
3834
|
+
ExecutionTime: number;
|
|
3835
|
+
ErrorMessage?: string;
|
|
3836
|
+
Success: boolean;
|
|
3837
|
+
}
|
|
3838
|
+
export declare class EntityDocumentResolver extends ResolverBase {
|
|
3839
|
+
RunEntityDocumentViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3840
|
+
RunEntityDocumentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3841
|
+
RunEntityDocumentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3842
|
+
EntityDocument(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocument_ | null>;
|
|
3843
|
+
EntityDocumentRunsArray(entitydocument_: EntityDocument_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3844
|
+
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3845
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateEntityDocumentInput): Promise<boolean>;
|
|
3846
|
+
protected AfterCreate(dataSource: DataSource, input: CreateEntityDocumentInput): Promise<void>;
|
|
3847
|
+
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3848
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateEntityDocumentInput): Promise<boolean>;
|
|
3849
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateEntityDocumentInput): Promise<void>;
|
|
3850
|
+
}
|
|
3851
|
+
export declare class DataContextItem_ {
|
|
3852
|
+
ID: number;
|
|
3853
|
+
DataContextID: number;
|
|
3854
|
+
Type: string;
|
|
3855
|
+
ViewID?: number;
|
|
3856
|
+
QueryID?: number;
|
|
3857
|
+
EntityID?: number;
|
|
3858
|
+
RecordID?: string;
|
|
3859
|
+
SQL?: string;
|
|
3860
|
+
DataJSON?: string;
|
|
3861
|
+
LastRefreshedAt?: Date;
|
|
3862
|
+
CreatedAt: Date;
|
|
3863
|
+
UpdatedAt: Date;
|
|
3864
|
+
DataContext: string;
|
|
3865
|
+
View?: string;
|
|
3866
|
+
Query?: string;
|
|
3867
|
+
Entity?: string;
|
|
3868
|
+
}
|
|
3869
|
+
export declare class CreateDataContextItemInput {
|
|
3870
|
+
DataContextID: number;
|
|
3871
|
+
Type: string;
|
|
3872
|
+
ViewID: number;
|
|
3873
|
+
QueryID: number;
|
|
3874
|
+
EntityID: number;
|
|
3875
|
+
RecordID: string;
|
|
3876
|
+
SQL: string;
|
|
3877
|
+
DataJSON: string;
|
|
3878
|
+
LastRefreshedAt: Date;
|
|
3879
|
+
}
|
|
3880
|
+
export declare class UpdateDataContextItemInput {
|
|
3881
|
+
ID: number;
|
|
3882
|
+
DataContextID: number;
|
|
3883
|
+
Type: string;
|
|
3884
|
+
ViewID: number;
|
|
3885
|
+
QueryID: number;
|
|
3886
|
+
EntityID: number;
|
|
3887
|
+
RecordID: string;
|
|
3888
|
+
SQL: string;
|
|
3889
|
+
DataJSON: string;
|
|
3890
|
+
LastRefreshedAt: Date;
|
|
3891
|
+
}
|
|
3892
|
+
export declare class RunDataContextItemViewResult {
|
|
3893
|
+
Results: DataContextItem_[];
|
|
3894
|
+
UserViewRunID?: number;
|
|
3895
|
+
RowCount: number;
|
|
3896
|
+
TotalRowCount: number;
|
|
3897
|
+
ExecutionTime: number;
|
|
3898
|
+
ErrorMessage?: string;
|
|
3899
|
+
Success: boolean;
|
|
3900
|
+
}
|
|
3901
|
+
export declare class DataContextItemResolver extends ResolverBase {
|
|
3902
|
+
RunDataContextItemViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3903
|
+
RunDataContextItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3904
|
+
RunDataContextItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3905
|
+
DataContextItem(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContextItem_ | null>;
|
|
3906
|
+
CreateDataContextItem(input: CreateDataContextItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3907
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateDataContextItemInput): Promise<boolean>;
|
|
3908
|
+
protected AfterCreate(dataSource: DataSource, input: CreateDataContextItemInput): Promise<void>;
|
|
3909
|
+
UpdateDataContextItem(input: UpdateDataContextItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3910
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateDataContextItemInput): Promise<boolean>;
|
|
3911
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateDataContextItemInput): Promise<void>;
|
|
3912
|
+
}
|
|
3913
|
+
export declare class DataContext_ {
|
|
3914
|
+
ID: number;
|
|
3915
|
+
Name: string;
|
|
3916
|
+
UserID: number;
|
|
3917
|
+
Description?: string;
|
|
3918
|
+
LastRefreshedAt?: Date;
|
|
3919
|
+
CreatedAt: Date;
|
|
3920
|
+
UpdatedAt: Date;
|
|
3921
|
+
User: string;
|
|
3922
|
+
DataContextItemsArray: mj_core_schema_server_object_types.DataContextItem_[];
|
|
3923
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
3924
|
+
}
|
|
3925
|
+
export declare class CreateDataContextInput {
|
|
3926
|
+
Name: string;
|
|
3927
|
+
UserID: number;
|
|
3928
|
+
Description: string;
|
|
3929
|
+
LastRefreshedAt: Date;
|
|
3930
|
+
}
|
|
3931
|
+
export declare class UpdateDataContextInput {
|
|
3932
|
+
ID: number;
|
|
3933
|
+
Name: string;
|
|
3934
|
+
UserID: number;
|
|
3935
|
+
Description: string;
|
|
3936
|
+
LastRefreshedAt: Date;
|
|
3937
|
+
}
|
|
3938
|
+
export declare class RunDataContextViewResult {
|
|
3939
|
+
Results: DataContext_[];
|
|
3940
|
+
UserViewRunID?: number;
|
|
3941
|
+
RowCount: number;
|
|
3942
|
+
TotalRowCount: number;
|
|
3943
|
+
ExecutionTime: number;
|
|
3944
|
+
ErrorMessage?: string;
|
|
3945
|
+
Success: boolean;
|
|
3946
|
+
}
|
|
3947
|
+
export declare class DataContextResolver extends ResolverBase {
|
|
3948
|
+
RunDataContextViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3949
|
+
RunDataContextViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3950
|
+
RunDataContextDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3951
|
+
DataContext(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContext_ | null>;
|
|
3952
|
+
DataContextItemsArray(datacontext_: DataContext_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3953
|
+
ReportsArray(datacontext_: DataContext_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3954
|
+
CreateDataContext(input: CreateDataContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3955
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateDataContextInput): Promise<boolean>;
|
|
3956
|
+
protected AfterCreate(dataSource: DataSource, input: CreateDataContextInput): Promise<void>;
|
|
3957
|
+
UpdateDataContext(input: UpdateDataContextInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
3958
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateDataContextInput): Promise<boolean>;
|
|
3959
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateDataContextInput): Promise<void>;
|
|
3960
|
+
}
|
|
3961
|
+
export declare class UserViewCategory_ {
|
|
3962
|
+
ID: number;
|
|
3963
|
+
Name: string;
|
|
3964
|
+
Description?: string;
|
|
3965
|
+
ParentID?: number;
|
|
3966
|
+
CreatedAt: Date;
|
|
3967
|
+
UpdatedAt: Date;
|
|
3968
|
+
Parent?: string;
|
|
3969
|
+
UserViewCategoriesArray: mj_core_schema_server_object_types.UserViewCategory_[];
|
|
3970
|
+
UserViewsArray: mj_core_schema_server_object_types.UserView_[];
|
|
3971
|
+
}
|
|
3972
|
+
export declare class CreateUserViewCategoryInput {
|
|
3973
|
+
Name: string;
|
|
3974
|
+
Description: string;
|
|
3975
|
+
ParentID: number;
|
|
3976
|
+
}
|
|
3977
|
+
export declare class UpdateUserViewCategoryInput {
|
|
3978
|
+
ID: number;
|
|
3979
|
+
Name: string;
|
|
3980
|
+
Description: string;
|
|
3981
|
+
ParentID: number;
|
|
3982
|
+
}
|
|
3983
|
+
export declare class RunUserViewCategoryViewResult {
|
|
3984
|
+
Results: UserViewCategory_[];
|
|
3985
|
+
UserViewRunID?: number;
|
|
3986
|
+
RowCount: number;
|
|
3987
|
+
TotalRowCount: number;
|
|
3988
|
+
ExecutionTime: number;
|
|
3989
|
+
ErrorMessage?: string;
|
|
3990
|
+
Success: boolean;
|
|
3991
|
+
}
|
|
3992
|
+
export declare class UserViewCategoryResolver extends ResolverBase {
|
|
3993
|
+
RunUserViewCategoryViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3994
|
+
RunUserViewCategoryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3995
|
+
RunUserViewCategoryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
3996
|
+
UserViewCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewCategory_ | null>;
|
|
3997
|
+
UserViewCategoriesArray(userviewcategory_: UserViewCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3998
|
+
UserViewsArray(userviewcategory_: UserViewCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3999
|
+
CreateUserViewCategory(input: CreateUserViewCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4000
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateUserViewCategoryInput): Promise<boolean>;
|
|
4001
|
+
protected AfterCreate(dataSource: DataSource, input: CreateUserViewCategoryInput): Promise<void>;
|
|
4002
|
+
UpdateUserViewCategory(input: UpdateUserViewCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4003
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateUserViewCategoryInput): Promise<boolean>;
|
|
4004
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateUserViewCategoryInput): Promise<void>;
|
|
4005
|
+
DeleteUserViewCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4006
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
4007
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
4008
|
+
}
|
|
4009
|
+
export declare class DashboardCategory_ {
|
|
4010
|
+
ID: number;
|
|
4011
|
+
Name: string;
|
|
4012
|
+
Description?: string;
|
|
4013
|
+
ParentID?: number;
|
|
4014
|
+
CreatedAt: Date;
|
|
4015
|
+
UpdatedAt: Date;
|
|
4016
|
+
Parent?: string;
|
|
4017
|
+
DashboardsArray: mj_core_schema_server_object_types.Dashboard_[];
|
|
4018
|
+
DashboardCategoriesArray: mj_core_schema_server_object_types.DashboardCategory_[];
|
|
4019
|
+
}
|
|
4020
|
+
export declare class CreateDashboardCategoryInput {
|
|
4021
|
+
Name: string;
|
|
4022
|
+
Description: string;
|
|
4023
|
+
ParentID: number;
|
|
4024
|
+
}
|
|
4025
|
+
export declare class UpdateDashboardCategoryInput {
|
|
4026
|
+
ID: number;
|
|
4027
|
+
Name: string;
|
|
4028
|
+
Description: string;
|
|
4029
|
+
ParentID: number;
|
|
4030
|
+
}
|
|
4031
|
+
export declare class RunDashboardCategoryViewResult {
|
|
4032
|
+
Results: DashboardCategory_[];
|
|
4033
|
+
UserViewRunID?: number;
|
|
4034
|
+
RowCount: number;
|
|
4035
|
+
TotalRowCount: number;
|
|
4036
|
+
ExecutionTime: number;
|
|
4037
|
+
ErrorMessage?: string;
|
|
4038
|
+
Success: boolean;
|
|
4039
|
+
}
|
|
4040
|
+
export declare class DashboardCategoryResolver extends ResolverBase {
|
|
4041
|
+
RunDashboardCategoryViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4042
|
+
RunDashboardCategoryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4043
|
+
RunDashboardCategoryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4044
|
+
DashboardCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DashboardCategory_ | null>;
|
|
4045
|
+
DashboardsArray(dashboardcategory_: DashboardCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4046
|
+
DashboardCategoriesArray(dashboardcategory_: DashboardCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4047
|
+
CreateDashboardCategory(input: CreateDashboardCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4048
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateDashboardCategoryInput): Promise<boolean>;
|
|
4049
|
+
protected AfterCreate(dataSource: DataSource, input: CreateDashboardCategoryInput): Promise<void>;
|
|
4050
|
+
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4051
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateDashboardCategoryInput): Promise<boolean>;
|
|
4052
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateDashboardCategoryInput): Promise<void>;
|
|
4053
|
+
}
|
|
4054
|
+
export declare class ReportCategory_ {
|
|
4055
|
+
ID: number;
|
|
4056
|
+
Name: string;
|
|
4057
|
+
Description?: string;
|
|
4058
|
+
ParentID: number;
|
|
4059
|
+
CreatedAt: Date;
|
|
4060
|
+
UpdatedAt: Date;
|
|
4061
|
+
Parent: string;
|
|
4062
|
+
ReportCategoriesArray: mj_core_schema_server_object_types.ReportCategory_[];
|
|
4063
|
+
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
4064
|
+
}
|
|
4065
|
+
export declare class CreateReportCategoryInput {
|
|
4066
|
+
Name: string;
|
|
4067
|
+
Description: string;
|
|
4068
|
+
ParentID: number;
|
|
4069
|
+
}
|
|
4070
|
+
export declare class UpdateReportCategoryInput {
|
|
4071
|
+
ID: number;
|
|
4072
|
+
Name: string;
|
|
4073
|
+
Description: string;
|
|
4074
|
+
ParentID: number;
|
|
4075
|
+
}
|
|
4076
|
+
export declare class RunReportCategoryViewResult {
|
|
4077
|
+
Results: ReportCategory_[];
|
|
4078
|
+
UserViewRunID?: number;
|
|
4079
|
+
RowCount: number;
|
|
4080
|
+
TotalRowCount: number;
|
|
4081
|
+
ExecutionTime: number;
|
|
4082
|
+
ErrorMessage?: string;
|
|
4083
|
+
Success: boolean;
|
|
4084
|
+
}
|
|
4085
|
+
export declare class ReportCategoryResolver extends ResolverBase {
|
|
4086
|
+
RunReportCategoryViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4087
|
+
RunReportCategoryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4088
|
+
RunReportCategoryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4089
|
+
ReportCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportCategory_ | null>;
|
|
4090
|
+
ReportCategoriesArray(reportcategory_: ReportCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4091
|
+
ReportsArray(reportcategory_: ReportCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4092
|
+
CreateReportCategory(input: CreateReportCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4093
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateReportCategoryInput): Promise<boolean>;
|
|
4094
|
+
protected AfterCreate(dataSource: DataSource, input: CreateReportCategoryInput): Promise<void>;
|
|
4095
|
+
UpdateReportCategory(input: UpdateReportCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4096
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateReportCategoryInput): Promise<boolean>;
|
|
4097
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateReportCategoryInput): Promise<void>;
|
|
4098
|
+
}
|
|
4099
|
+
export declare class FileStorageProvider_ {
|
|
4100
|
+
ID: number;
|
|
4101
|
+
Name: string;
|
|
4102
|
+
Description?: string;
|
|
4103
|
+
ServerDriverKey: string;
|
|
4104
|
+
ClientDriverKey: string;
|
|
4105
|
+
Priority: number;
|
|
4106
|
+
IsActive: boolean;
|
|
4107
|
+
CreatedAt: Date;
|
|
4108
|
+
UpdatedAt: Date;
|
|
4109
|
+
FilesArray: mj_core_schema_server_object_types.File_[];
|
|
4110
|
+
}
|
|
4111
|
+
export declare class CreateFileStorageProviderInput {
|
|
4112
|
+
Name: string;
|
|
4113
|
+
Description: string;
|
|
4114
|
+
ServerDriverKey: string;
|
|
4115
|
+
ClientDriverKey: string;
|
|
4116
|
+
Priority: number;
|
|
4117
|
+
IsActive: boolean;
|
|
4118
|
+
}
|
|
4119
|
+
export declare class UpdateFileStorageProviderInput {
|
|
4120
|
+
ID: number;
|
|
4121
|
+
Name: string;
|
|
4122
|
+
Description: string;
|
|
4123
|
+
ServerDriverKey: string;
|
|
4124
|
+
ClientDriverKey: string;
|
|
4125
|
+
Priority: number;
|
|
4126
|
+
IsActive: boolean;
|
|
4127
|
+
}
|
|
4128
|
+
export declare class RunFileStorageProviderViewResult {
|
|
4129
|
+
Results: FileStorageProvider_[];
|
|
4130
|
+
UserViewRunID?: number;
|
|
4131
|
+
RowCount: number;
|
|
4132
|
+
TotalRowCount: number;
|
|
4133
|
+
ExecutionTime: number;
|
|
4134
|
+
ErrorMessage?: string;
|
|
4135
|
+
Success: boolean;
|
|
4136
|
+
}
|
|
4137
|
+
export declare class FileStorageProviderResolver extends ResolverBase {
|
|
4138
|
+
RunFileStorageProviderViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4139
|
+
RunFileStorageProviderViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4140
|
+
RunFileStorageProviderDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4141
|
+
FileStorageProvider(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileStorageProvider_ | null>;
|
|
4142
|
+
FilesArray(filestorageprovider_: FileStorageProvider_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4143
|
+
CreateFileStorageProvider(input: CreateFileStorageProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4144
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateFileStorageProviderInput): Promise<boolean>;
|
|
4145
|
+
protected AfterCreate(dataSource: DataSource, input: CreateFileStorageProviderInput): Promise<void>;
|
|
4146
|
+
UpdateFileStorageProvider(input: UpdateFileStorageProviderInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4147
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileStorageProviderInput): Promise<boolean>;
|
|
4148
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateFileStorageProviderInput): Promise<void>;
|
|
4149
|
+
}
|
|
4150
|
+
export declare class File_ {
|
|
4151
|
+
ID: number;
|
|
4152
|
+
Name: string;
|
|
4153
|
+
Description?: string;
|
|
4154
|
+
ProviderID: number;
|
|
4155
|
+
ContentType?: string;
|
|
4156
|
+
ProviderKey?: string;
|
|
4157
|
+
CategoryID?: number;
|
|
4158
|
+
Status: string;
|
|
4159
|
+
CreatedAt: Date;
|
|
4160
|
+
UpdatedAt: Date;
|
|
4161
|
+
Provider: string;
|
|
4162
|
+
Category?: string;
|
|
4163
|
+
FileEntityRecordLinksArray: mj_core_schema_server_object_types.FileEntityRecordLink_[];
|
|
4164
|
+
}
|
|
4165
|
+
export declare class CreateFileInput {
|
|
4166
|
+
Name: string;
|
|
4167
|
+
Description: string;
|
|
4168
|
+
ProviderID: number;
|
|
4169
|
+
ContentType: string;
|
|
4170
|
+
ProviderKey: string;
|
|
4171
|
+
CategoryID: number;
|
|
4172
|
+
Status: string;
|
|
4173
|
+
}
|
|
4174
|
+
export declare class UpdateFileInput {
|
|
4175
|
+
ID: number;
|
|
4176
|
+
Name: string;
|
|
4177
|
+
Description: string;
|
|
4178
|
+
ProviderID: number;
|
|
4179
|
+
ContentType: string;
|
|
4180
|
+
ProviderKey: string;
|
|
4181
|
+
CategoryID: number;
|
|
4182
|
+
Status: string;
|
|
4183
|
+
}
|
|
4184
|
+
export declare class RunFileViewResult {
|
|
4185
|
+
Results: File_[];
|
|
4186
|
+
UserViewRunID?: number;
|
|
4187
|
+
RowCount: number;
|
|
4188
|
+
TotalRowCount: number;
|
|
4189
|
+
ExecutionTime: number;
|
|
4190
|
+
ErrorMessage?: string;
|
|
4191
|
+
Success: boolean;
|
|
4192
|
+
}
|
|
4193
|
+
export declare class FileResolver extends ResolverBase {
|
|
4194
|
+
RunFileViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4195
|
+
RunFileViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4196
|
+
RunFileDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4197
|
+
File(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<File_ | null>;
|
|
4198
|
+
FileEntityRecordLinksArray(file_: File_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4199
|
+
CreateFile(input: CreateFileInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4200
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateFileInput): Promise<boolean>;
|
|
4201
|
+
protected AfterCreate(dataSource: DataSource, input: CreateFileInput): Promise<void>;
|
|
4202
|
+
UpdateFile(input: UpdateFileInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4203
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileInput): Promise<boolean>;
|
|
4204
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateFileInput): Promise<void>;
|
|
4205
|
+
}
|
|
4206
|
+
export declare class FileCategory_ {
|
|
4207
|
+
ID: number;
|
|
4208
|
+
Name: string;
|
|
4209
|
+
Description?: string;
|
|
4210
|
+
ParentID?: number;
|
|
4211
|
+
CreatedAt: Date;
|
|
4212
|
+
UpdatedAt: Date;
|
|
4213
|
+
Parent?: string;
|
|
4214
|
+
FilesArray: mj_core_schema_server_object_types.File_[];
|
|
4215
|
+
FileCategoriesArray: mj_core_schema_server_object_types.FileCategory_[];
|
|
4216
|
+
}
|
|
4217
|
+
export declare class CreateFileCategoryInput {
|
|
4218
|
+
Name: string;
|
|
4219
|
+
Description: string;
|
|
4220
|
+
ParentID: number;
|
|
4221
|
+
}
|
|
4222
|
+
export declare class UpdateFileCategoryInput {
|
|
4223
|
+
ID: number;
|
|
4224
|
+
Name: string;
|
|
4225
|
+
Description: string;
|
|
4226
|
+
ParentID: number;
|
|
4227
|
+
}
|
|
4228
|
+
export declare class RunFileCategoryViewResult {
|
|
4229
|
+
Results: FileCategory_[];
|
|
4230
|
+
UserViewRunID?: number;
|
|
4231
|
+
RowCount: number;
|
|
4232
|
+
TotalRowCount: number;
|
|
4233
|
+
ExecutionTime: number;
|
|
4234
|
+
ErrorMessage?: string;
|
|
4235
|
+
Success: boolean;
|
|
4236
|
+
}
|
|
4237
|
+
export declare class FileCategoryResolver extends ResolverBase {
|
|
4238
|
+
RunFileCategoryViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4239
|
+
RunFileCategoryViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4240
|
+
RunFileCategoryDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4241
|
+
FileCategory(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileCategory_ | null>;
|
|
4242
|
+
FilesArray(filecategory_: FileCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4243
|
+
FileCategoriesArray(filecategory_: FileCategory_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4244
|
+
CreateFileCategory(input: CreateFileCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4245
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateFileCategoryInput): Promise<boolean>;
|
|
4246
|
+
protected AfterCreate(dataSource: DataSource, input: CreateFileCategoryInput): Promise<void>;
|
|
4247
|
+
UpdateFileCategory(input: UpdateFileCategoryInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4248
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileCategoryInput): Promise<boolean>;
|
|
4249
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateFileCategoryInput): Promise<void>;
|
|
4250
|
+
}
|
|
4251
|
+
export declare class FileEntityRecordLink_ {
|
|
4252
|
+
ID: number;
|
|
4253
|
+
FileID: number;
|
|
4254
|
+
EntityID: number;
|
|
4255
|
+
RecordID: string;
|
|
4256
|
+
CreatedAt: Date;
|
|
4257
|
+
UpdatedAt: Date;
|
|
4258
|
+
File: string;
|
|
4259
|
+
Entity: string;
|
|
4260
|
+
}
|
|
4261
|
+
export declare class CreateFileEntityRecordLinkInput {
|
|
4262
|
+
FileID: number;
|
|
4263
|
+
EntityID: number;
|
|
4264
|
+
RecordID: string;
|
|
4265
|
+
}
|
|
4266
|
+
export declare class UpdateFileEntityRecordLinkInput {
|
|
4267
|
+
ID: number;
|
|
4268
|
+
FileID: number;
|
|
4269
|
+
EntityID: number;
|
|
4270
|
+
RecordID: string;
|
|
4271
|
+
}
|
|
4272
|
+
export declare class RunFileEntityRecordLinkViewResult {
|
|
4273
|
+
Results: FileEntityRecordLink_[];
|
|
4274
|
+
UserViewRunID?: number;
|
|
4275
|
+
RowCount: number;
|
|
4276
|
+
TotalRowCount: number;
|
|
4277
|
+
ExecutionTime: number;
|
|
4278
|
+
ErrorMessage?: string;
|
|
4279
|
+
Success: boolean;
|
|
4280
|
+
}
|
|
4281
|
+
export declare class FileEntityRecordLinkResolver extends ResolverBase {
|
|
4282
|
+
RunFileEntityRecordLinkViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4283
|
+
RunFileEntityRecordLinkViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4284
|
+
RunFileEntityRecordLinkDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4285
|
+
FileEntityRecordLink(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileEntityRecordLink_ | null>;
|
|
4286
|
+
CreateFileEntityRecordLink(input: CreateFileEntityRecordLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4287
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateFileEntityRecordLinkInput): Promise<boolean>;
|
|
4288
|
+
protected AfterCreate(dataSource: DataSource, input: CreateFileEntityRecordLinkInput): Promise<void>;
|
|
4289
|
+
UpdateFileEntityRecordLink(input: UpdateFileEntityRecordLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4290
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<boolean>;
|
|
4291
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<void>;
|
|
4292
|
+
}
|
|
4293
|
+
//# sourceMappingURL=generated.d.ts.map
|