@memberjunction/server 2.16.1 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/generated.d.ts +372 -43
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +4161 -2107
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +1 -1
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts +6 -3
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +44 -29
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +9219 -7941
- package/src/generic/ResolverBase.ts +5 -2
- package/src/resolvers/AskSkipResolver.ts +56 -30
|
@@ -173,6 +173,221 @@ export declare class ExplorerNavigationItemResolver extends ResolverBase {
|
|
|
173
173
|
UpdateExplorerNavigationItem(input: UpdateExplorerNavigationItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
174
174
|
DeleteExplorerNavigationItem(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
175
175
|
}
|
|
176
|
+
export declare class AIAgentModel_ {
|
|
177
|
+
ID: string;
|
|
178
|
+
AgentID?: string;
|
|
179
|
+
ModelID?: string;
|
|
180
|
+
Active?: boolean;
|
|
181
|
+
Priority?: number;
|
|
182
|
+
_mj__CreatedAt: Date;
|
|
183
|
+
_mj__UpdatedAt: Date;
|
|
184
|
+
Agent?: string;
|
|
185
|
+
Model?: string;
|
|
186
|
+
}
|
|
187
|
+
export declare class CreateAIAgentModelInput {
|
|
188
|
+
AgentID?: string;
|
|
189
|
+
ModelID?: string;
|
|
190
|
+
Active?: boolean;
|
|
191
|
+
Priority?: number;
|
|
192
|
+
}
|
|
193
|
+
export declare class UpdateAIAgentModelInput {
|
|
194
|
+
ID: string;
|
|
195
|
+
AgentID?: string;
|
|
196
|
+
ModelID?: string;
|
|
197
|
+
Active?: boolean;
|
|
198
|
+
Priority?: number;
|
|
199
|
+
OldValues___?: KeyValuePairInput[];
|
|
200
|
+
}
|
|
201
|
+
export declare class RunAIAgentModelViewResult {
|
|
202
|
+
Results: AIAgentModel_[];
|
|
203
|
+
UserViewRunID?: string;
|
|
204
|
+
RowCount: number;
|
|
205
|
+
TotalRowCount: number;
|
|
206
|
+
ExecutionTime: number;
|
|
207
|
+
ErrorMessage?: string;
|
|
208
|
+
Success: boolean;
|
|
209
|
+
}
|
|
210
|
+
export declare class AIAgentModelResolver extends ResolverBase {
|
|
211
|
+
RunAIAgentModelViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
212
|
+
RunAIAgentModelViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
213
|
+
RunAIAgentModelDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
214
|
+
AIAgentModel(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentModel_ | null>;
|
|
215
|
+
CreateAIAgentModel(input: CreateAIAgentModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
216
|
+
UpdateAIAgentModel(input: UpdateAIAgentModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
217
|
+
DeleteAIAgentModel(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
218
|
+
}
|
|
219
|
+
export declare class AIAgentNoteType_ {
|
|
220
|
+
ID: string;
|
|
221
|
+
Name?: string;
|
|
222
|
+
Description?: string;
|
|
223
|
+
_mj__CreatedAt: Date;
|
|
224
|
+
_mj__UpdatedAt: Date;
|
|
225
|
+
AIAgentNotes_AgentNoteTypeIDArray: AIAgentNote_[];
|
|
226
|
+
}
|
|
227
|
+
export declare class CreateAIAgentNoteTypeInput {
|
|
228
|
+
Name?: string;
|
|
229
|
+
Description?: string;
|
|
230
|
+
}
|
|
231
|
+
export declare class UpdateAIAgentNoteTypeInput {
|
|
232
|
+
ID: string;
|
|
233
|
+
Name?: string;
|
|
234
|
+
Description?: string;
|
|
235
|
+
OldValues___?: KeyValuePairInput[];
|
|
236
|
+
}
|
|
237
|
+
export declare class RunAIAgentNoteTypeViewResult {
|
|
238
|
+
Results: AIAgentNoteType_[];
|
|
239
|
+
UserViewRunID?: string;
|
|
240
|
+
RowCount: number;
|
|
241
|
+
TotalRowCount: number;
|
|
242
|
+
ExecutionTime: number;
|
|
243
|
+
ErrorMessage?: string;
|
|
244
|
+
Success: boolean;
|
|
245
|
+
}
|
|
246
|
+
export declare class AIAgentNoteTypeResolver extends ResolverBase {
|
|
247
|
+
RunAIAgentNoteTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
248
|
+
RunAIAgentNoteTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
249
|
+
RunAIAgentNoteTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
250
|
+
AIAgentNoteType(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentNoteType_ | null>;
|
|
251
|
+
AIAgentNotes_AgentNoteTypeIDArray(aiagentnotetype_: AIAgentNoteType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
252
|
+
CreateAIAgentNoteType(input: CreateAIAgentNoteTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
253
|
+
UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
254
|
+
DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
255
|
+
}
|
|
256
|
+
export declare class AIAgent_ {
|
|
257
|
+
ID: string;
|
|
258
|
+
Name?: string;
|
|
259
|
+
Description?: string;
|
|
260
|
+
LogoURL?: string;
|
|
261
|
+
_mj__CreatedAt: Date;
|
|
262
|
+
_mj__UpdatedAt: Date;
|
|
263
|
+
AIAgentRequests_AgentIDArray: AIAgentRequest_[];
|
|
264
|
+
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
265
|
+
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
266
|
+
AIAgentActions_AgentIDArray: AIAgentAction_[];
|
|
267
|
+
AIAgentNotes_AgentIDArray: AIAgentNote_[];
|
|
268
|
+
}
|
|
269
|
+
export declare class CreateAIAgentInput {
|
|
270
|
+
Name?: string;
|
|
271
|
+
Description?: string;
|
|
272
|
+
LogoURL?: string;
|
|
273
|
+
}
|
|
274
|
+
export declare class UpdateAIAgentInput {
|
|
275
|
+
ID: string;
|
|
276
|
+
Name?: string;
|
|
277
|
+
Description?: string;
|
|
278
|
+
LogoURL?: string;
|
|
279
|
+
OldValues___?: KeyValuePairInput[];
|
|
280
|
+
}
|
|
281
|
+
export declare class RunAIAgentViewResult {
|
|
282
|
+
Results: AIAgent_[];
|
|
283
|
+
UserViewRunID?: string;
|
|
284
|
+
RowCount: number;
|
|
285
|
+
TotalRowCount: number;
|
|
286
|
+
ExecutionTime: number;
|
|
287
|
+
ErrorMessage?: string;
|
|
288
|
+
Success: boolean;
|
|
289
|
+
}
|
|
290
|
+
export declare class AIAgentResolver extends ResolverBase {
|
|
291
|
+
RunAIAgentViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
292
|
+
RunAIAgentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
293
|
+
RunAIAgentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
294
|
+
AIAgent(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
295
|
+
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
296
|
+
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
297
|
+
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
298
|
+
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
299
|
+
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
300
|
+
CreateAIAgent(input: CreateAIAgentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
301
|
+
UpdateAIAgent(input: UpdateAIAgentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
302
|
+
DeleteAIAgent(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
303
|
+
}
|
|
304
|
+
export declare class AIAgentNote_ {
|
|
305
|
+
ID: string;
|
|
306
|
+
AgentID?: string;
|
|
307
|
+
AgentNoteTypeID?: string;
|
|
308
|
+
Note?: string;
|
|
309
|
+
_mj__CreatedAt: Date;
|
|
310
|
+
_mj__UpdatedAt: Date;
|
|
311
|
+
Type: string;
|
|
312
|
+
UserID?: string;
|
|
313
|
+
Agent?: string;
|
|
314
|
+
AgentNoteType?: string;
|
|
315
|
+
User?: string;
|
|
316
|
+
}
|
|
317
|
+
export declare class CreateAIAgentNoteInput {
|
|
318
|
+
AgentID?: string;
|
|
319
|
+
AgentNoteTypeID?: string;
|
|
320
|
+
Note?: string;
|
|
321
|
+
Type: string;
|
|
322
|
+
UserID?: string;
|
|
323
|
+
}
|
|
324
|
+
export declare class UpdateAIAgentNoteInput {
|
|
325
|
+
ID: string;
|
|
326
|
+
AgentID?: string;
|
|
327
|
+
AgentNoteTypeID?: string;
|
|
328
|
+
Note?: string;
|
|
329
|
+
Type: string;
|
|
330
|
+
UserID?: string;
|
|
331
|
+
OldValues___?: KeyValuePairInput[];
|
|
332
|
+
}
|
|
333
|
+
export declare class RunAIAgentNoteViewResult {
|
|
334
|
+
Results: AIAgentNote_[];
|
|
335
|
+
UserViewRunID?: string;
|
|
336
|
+
RowCount: number;
|
|
337
|
+
TotalRowCount: number;
|
|
338
|
+
ExecutionTime: number;
|
|
339
|
+
ErrorMessage?: string;
|
|
340
|
+
Success: boolean;
|
|
341
|
+
}
|
|
342
|
+
export declare class AIAgentNoteResolver extends ResolverBase {
|
|
343
|
+
RunAIAgentNoteViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
344
|
+
RunAIAgentNoteViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
345
|
+
RunAIAgentNoteDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
346
|
+
AIAgentNote(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentNote_ | null>;
|
|
347
|
+
CreateAIAgentNote(input: CreateAIAgentNoteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
348
|
+
UpdateAIAgentNote(input: UpdateAIAgentNoteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
349
|
+
DeleteAIAgentNote(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
350
|
+
}
|
|
351
|
+
export declare class AIAgentAction_ {
|
|
352
|
+
ID: string;
|
|
353
|
+
AgentID?: string;
|
|
354
|
+
ActionID?: string;
|
|
355
|
+
Status: string;
|
|
356
|
+
_mj__CreatedAt: Date;
|
|
357
|
+
_mj__UpdatedAt: Date;
|
|
358
|
+
Agent?: string;
|
|
359
|
+
Action?: string;
|
|
360
|
+
}
|
|
361
|
+
export declare class CreateAIAgentActionInput {
|
|
362
|
+
AgentID?: string;
|
|
363
|
+
ActionID?: string;
|
|
364
|
+
Status: string;
|
|
365
|
+
}
|
|
366
|
+
export declare class UpdateAIAgentActionInput {
|
|
367
|
+
ID: string;
|
|
368
|
+
AgentID?: string;
|
|
369
|
+
ActionID?: string;
|
|
370
|
+
Status: string;
|
|
371
|
+
OldValues___?: KeyValuePairInput[];
|
|
372
|
+
}
|
|
373
|
+
export declare class RunAIAgentActionViewResult {
|
|
374
|
+
Results: AIAgentAction_[];
|
|
375
|
+
UserViewRunID?: string;
|
|
376
|
+
RowCount: number;
|
|
377
|
+
TotalRowCount: number;
|
|
378
|
+
ExecutionTime: number;
|
|
379
|
+
ErrorMessage?: string;
|
|
380
|
+
Success: boolean;
|
|
381
|
+
}
|
|
382
|
+
export declare class AIAgentActionResolver extends ResolverBase {
|
|
383
|
+
RunAIAgentActionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
384
|
+
RunAIAgentActionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
385
|
+
RunAIAgentActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
386
|
+
AIAgentAction(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentAction_ | null>;
|
|
387
|
+
CreateAIAgentAction(input: CreateAIAgentActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
388
|
+
UpdateAIAgentAction(input: UpdateAIAgentActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
389
|
+
DeleteAIAgentAction(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
390
|
+
}
|
|
176
391
|
export declare class AIPrompt_ {
|
|
177
392
|
ID: string;
|
|
178
393
|
Name: string;
|
|
@@ -1270,7 +1485,10 @@ export declare class User_ {
|
|
|
1270
1485
|
ListCategories_UserIDArray: ListCategory_[];
|
|
1271
1486
|
ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
|
|
1272
1487
|
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
1488
|
+
AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
|
|
1489
|
+
AIAgentNotes_UserIDArray: AIAgentNote_[];
|
|
1273
1490
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
1491
|
+
AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
|
|
1274
1492
|
}
|
|
1275
1493
|
export declare class CreateUserInput {
|
|
1276
1494
|
Name: string;
|
|
@@ -1348,7 +1566,10 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
1348
1566
|
ListCategories_UserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1349
1567
|
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1350
1568
|
ResourceLinks_UserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1569
|
+
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1570
|
+
AIAgentNotes_UserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1351
1571
|
ResourcePermissions_UserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1572
|
+
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1352
1573
|
CreateUser(input: CreateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1353
1574
|
UpdateUser(input: UpdateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1354
1575
|
DeleteUser(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2688,6 +2909,7 @@ export declare class AIModel_ {
|
|
|
2688
2909
|
ContentTypes_AIModelIDArray: ContentType_[];
|
|
2689
2910
|
AIResultCache_AIModelIDArray: AIResultCache_[];
|
|
2690
2911
|
EntityAIActions_AIModelIDArray: EntityAIAction_[];
|
|
2912
|
+
AIAgentModels_ModelIDArray: AIAgentModel_[];
|
|
2691
2913
|
}
|
|
2692
2914
|
export declare class CreateAIModelInput {
|
|
2693
2915
|
Name: string;
|
|
@@ -2743,6 +2965,7 @@ export declare class AIModelResolver extends ResolverBase {
|
|
|
2743
2965
|
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2744
2966
|
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2745
2967
|
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2968
|
+
AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2746
2969
|
CreateAIModel(input: CreateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2747
2970
|
UpdateAIModel(input: UpdateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2748
2971
|
DeleteAIModel(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5483,6 +5706,7 @@ export declare class Action_ {
|
|
|
5483
5706
|
ActionLibraries_ActionIDArray: ActionLibrary_[];
|
|
5484
5707
|
ScheduledActions_ActionIDArray: ScheduledAction_[];
|
|
5485
5708
|
ActionResultCodes_ActionIDArray: ActionResultCode_[];
|
|
5709
|
+
AIAgentActions_ActionIDArray: AIAgentAction_[];
|
|
5486
5710
|
ActionContexts_ActionIDArray: ActionContext_[];
|
|
5487
5711
|
EntityActions_ActionIDArray: EntityAction_[];
|
|
5488
5712
|
ActionExecutionLogs_ActionIDArray: ActionExecutionLog_[];
|
|
@@ -5544,6 +5768,7 @@ export declare class ActionResolver extends ResolverBase {
|
|
|
5544
5768
|
ActionLibraries_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5545
5769
|
ScheduledActions_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5546
5770
|
ActionResultCodes_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5771
|
+
AIAgentActions_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5547
5772
|
ActionContexts_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5548
5773
|
EntityActions_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5549
5774
|
ActionExecutionLogs_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
@@ -7019,6 +7244,122 @@ export declare class ResourceLinkResolver extends ResolverBase {
|
|
|
7019
7244
|
UpdateResourceLink(input: UpdateResourceLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7020
7245
|
DeleteResourceLink(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7021
7246
|
}
|
|
7247
|
+
export declare class flyway_schema_history_ {
|
|
7248
|
+
installed_rank: number;
|
|
7249
|
+
version?: string;
|
|
7250
|
+
description?: string;
|
|
7251
|
+
type: string;
|
|
7252
|
+
script: string;
|
|
7253
|
+
checksum?: number;
|
|
7254
|
+
installed_by: string;
|
|
7255
|
+
installed_on: Date;
|
|
7256
|
+
execution_time: number;
|
|
7257
|
+
success: boolean;
|
|
7258
|
+
_mj__CreatedAt: Date;
|
|
7259
|
+
_mj__UpdatedAt: Date;
|
|
7260
|
+
}
|
|
7261
|
+
export declare class Createflyway_schema_historyInput {
|
|
7262
|
+
installed_rank: number;
|
|
7263
|
+
version?: string;
|
|
7264
|
+
description?: string;
|
|
7265
|
+
type: string;
|
|
7266
|
+
script: string;
|
|
7267
|
+
checksum?: number;
|
|
7268
|
+
installed_by: string;
|
|
7269
|
+
installed_on: Date;
|
|
7270
|
+
execution_time: number;
|
|
7271
|
+
success: boolean;
|
|
7272
|
+
}
|
|
7273
|
+
export declare class Updateflyway_schema_historyInput {
|
|
7274
|
+
installed_rank: number;
|
|
7275
|
+
version?: string;
|
|
7276
|
+
description?: string;
|
|
7277
|
+
type: string;
|
|
7278
|
+
script: string;
|
|
7279
|
+
checksum?: number;
|
|
7280
|
+
installed_by: string;
|
|
7281
|
+
installed_on: Date;
|
|
7282
|
+
execution_time: number;
|
|
7283
|
+
success: boolean;
|
|
7284
|
+
OldValues___?: KeyValuePairInput[];
|
|
7285
|
+
}
|
|
7286
|
+
export declare class Runflyway_schema_historyViewResult {
|
|
7287
|
+
Results: flyway_schema_history_[];
|
|
7288
|
+
UserViewRunID?: string;
|
|
7289
|
+
RowCount: number;
|
|
7290
|
+
TotalRowCount: number;
|
|
7291
|
+
ExecutionTime: number;
|
|
7292
|
+
ErrorMessage?: string;
|
|
7293
|
+
Success: boolean;
|
|
7294
|
+
}
|
|
7295
|
+
export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
7296
|
+
Runflyway_schema_historyViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7297
|
+
Runflyway_schema_historyViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7298
|
+
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7299
|
+
flyway_schema_history(installed_rank: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<flyway_schema_history_ | null>;
|
|
7300
|
+
Createflyway_schema_history(input: Createflyway_schema_historyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7301
|
+
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7302
|
+
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7303
|
+
}
|
|
7304
|
+
export declare class AIAgentRequest_ {
|
|
7305
|
+
ID: string;
|
|
7306
|
+
AgentID: string;
|
|
7307
|
+
RequestedAt: Date;
|
|
7308
|
+
RequestForUserID?: string;
|
|
7309
|
+
Status: string;
|
|
7310
|
+
Request: string;
|
|
7311
|
+
Response?: string;
|
|
7312
|
+
ResponseByUserID?: string;
|
|
7313
|
+
RespondedAt?: Date;
|
|
7314
|
+
Comments?: string;
|
|
7315
|
+
_mj__CreatedAt: Date;
|
|
7316
|
+
_mj__UpdatedAt: Date;
|
|
7317
|
+
Agent?: string;
|
|
7318
|
+
RequestForUser?: string;
|
|
7319
|
+
ResponseByUser?: string;
|
|
7320
|
+
}
|
|
7321
|
+
export declare class CreateAIAgentRequestInput {
|
|
7322
|
+
AgentID: string;
|
|
7323
|
+
RequestedAt: Date;
|
|
7324
|
+
RequestForUserID?: string;
|
|
7325
|
+
Status: string;
|
|
7326
|
+
Request: string;
|
|
7327
|
+
Response?: string;
|
|
7328
|
+
ResponseByUserID?: string;
|
|
7329
|
+
RespondedAt?: Date;
|
|
7330
|
+
Comments?: string;
|
|
7331
|
+
}
|
|
7332
|
+
export declare class UpdateAIAgentRequestInput {
|
|
7333
|
+
ID: string;
|
|
7334
|
+
AgentID: string;
|
|
7335
|
+
RequestedAt: Date;
|
|
7336
|
+
RequestForUserID?: string;
|
|
7337
|
+
Status: string;
|
|
7338
|
+
Request: string;
|
|
7339
|
+
Response?: string;
|
|
7340
|
+
ResponseByUserID?: string;
|
|
7341
|
+
RespondedAt?: Date;
|
|
7342
|
+
Comments?: string;
|
|
7343
|
+
OldValues___?: KeyValuePairInput[];
|
|
7344
|
+
}
|
|
7345
|
+
export declare class RunAIAgentRequestViewResult {
|
|
7346
|
+
Results: AIAgentRequest_[];
|
|
7347
|
+
UserViewRunID?: string;
|
|
7348
|
+
RowCount: number;
|
|
7349
|
+
TotalRowCount: number;
|
|
7350
|
+
ExecutionTime: number;
|
|
7351
|
+
ErrorMessage?: string;
|
|
7352
|
+
Success: boolean;
|
|
7353
|
+
}
|
|
7354
|
+
export declare class AIAgentRequestResolver extends ResolverBase {
|
|
7355
|
+
RunAIAgentRequestViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7356
|
+
RunAIAgentRequestViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7357
|
+
RunAIAgentRequestDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7358
|
+
AIAgentRequest(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentRequest_ | null>;
|
|
7359
|
+
CreateAIAgentRequest(input: CreateAIAgentRequestInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7360
|
+
UpdateAIAgentRequest(input: UpdateAIAgentRequestInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7361
|
+
DeleteAIAgentRequest(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7362
|
+
}
|
|
7022
7363
|
export declare class QueryEntity_ {
|
|
7023
7364
|
ID: string;
|
|
7024
7365
|
QueryID: string;
|
|
@@ -7544,47 +7885,35 @@ export declare class ContentItemTagResolver extends ResolverBase {
|
|
|
7544
7885
|
UpdateContentItemTag(input: UpdateContentItemTagInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7545
7886
|
DeleteContentItemTag(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7546
7887
|
}
|
|
7547
|
-
export declare class
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7554
|
-
installed_by: string;
|
|
7555
|
-
installed_on: Date;
|
|
7556
|
-
execution_time: number;
|
|
7557
|
-
success: boolean;
|
|
7888
|
+
export declare class AIAgentLearningCycle_ {
|
|
7889
|
+
ID: string;
|
|
7890
|
+
AgentID: string;
|
|
7891
|
+
StartedAt: Date;
|
|
7892
|
+
EndedAt?: Date;
|
|
7893
|
+
Status: string;
|
|
7894
|
+
AgentSummary?: string;
|
|
7558
7895
|
_mj__CreatedAt: Date;
|
|
7559
7896
|
_mj__UpdatedAt: Date;
|
|
7897
|
+
Agent?: string;
|
|
7560
7898
|
}
|
|
7561
|
-
export declare class
|
|
7562
|
-
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
checksum?: number;
|
|
7568
|
-
installed_by: string;
|
|
7569
|
-
installed_on: Date;
|
|
7570
|
-
execution_time: number;
|
|
7571
|
-
success: boolean;
|
|
7899
|
+
export declare class CreateAIAgentLearningCycleInput {
|
|
7900
|
+
AgentID: string;
|
|
7901
|
+
StartedAt: Date;
|
|
7902
|
+
EndedAt?: Date;
|
|
7903
|
+
Status: string;
|
|
7904
|
+
AgentSummary?: string;
|
|
7572
7905
|
}
|
|
7573
|
-
export declare class
|
|
7574
|
-
|
|
7575
|
-
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7580
|
-
installed_by: string;
|
|
7581
|
-
installed_on: Date;
|
|
7582
|
-
execution_time: number;
|
|
7583
|
-
success: boolean;
|
|
7906
|
+
export declare class UpdateAIAgentLearningCycleInput {
|
|
7907
|
+
ID: string;
|
|
7908
|
+
AgentID: string;
|
|
7909
|
+
StartedAt: Date;
|
|
7910
|
+
EndedAt?: Date;
|
|
7911
|
+
Status: string;
|
|
7912
|
+
AgentSummary?: string;
|
|
7584
7913
|
OldValues___?: KeyValuePairInput[];
|
|
7585
7914
|
}
|
|
7586
|
-
export declare class
|
|
7587
|
-
Results:
|
|
7915
|
+
export declare class RunAIAgentLearningCycleViewResult {
|
|
7916
|
+
Results: AIAgentLearningCycle_[];
|
|
7588
7917
|
UserViewRunID?: string;
|
|
7589
7918
|
RowCount: number;
|
|
7590
7919
|
TotalRowCount: number;
|
|
@@ -7592,13 +7921,13 @@ export declare class Runflyway_schema_historyViewResult {
|
|
|
7592
7921
|
ErrorMessage?: string;
|
|
7593
7922
|
Success: boolean;
|
|
7594
7923
|
}
|
|
7595
|
-
export declare class
|
|
7596
|
-
|
|
7597
|
-
|
|
7598
|
-
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7924
|
+
export declare class AIAgentLearningCycleResolver extends ResolverBase {
|
|
7925
|
+
RunAIAgentLearningCycleViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7926
|
+
RunAIAgentLearningCycleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7927
|
+
RunAIAgentLearningCycleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7928
|
+
AIAgentLearningCycle(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentLearningCycle_ | null>;
|
|
7929
|
+
CreateAIAgentLearningCycle(input: CreateAIAgentLearningCycleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7930
|
+
UpdateAIAgentLearningCycle(input: UpdateAIAgentLearningCycleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7931
|
+
DeleteAIAgentLearningCycle(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7603
7932
|
}
|
|
7604
7933
|
//# sourceMappingURL=generated.d.ts.map
|