@memberjunction/server 2.16.0 → 2.17.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 +298 -43
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +1896 -302
- 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 +5 -2
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +31 -8
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +1151 -156
- package/src/generic/ResolverBase.ts +5 -2
- package/src/resolvers/AskSkipResolver.ts +37 -9
|
@@ -173,6 +173,212 @@ 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
|
+
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
264
|
+
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
265
|
+
AIAgentActions_AgentIDArray: AIAgentAction_[];
|
|
266
|
+
AIAgentNotes_AgentIDArray: AIAgentNote_[];
|
|
267
|
+
}
|
|
268
|
+
export declare class CreateAIAgentInput {
|
|
269
|
+
Name?: string;
|
|
270
|
+
Description?: string;
|
|
271
|
+
LogoURL?: string;
|
|
272
|
+
}
|
|
273
|
+
export declare class UpdateAIAgentInput {
|
|
274
|
+
ID: string;
|
|
275
|
+
Name?: string;
|
|
276
|
+
Description?: string;
|
|
277
|
+
LogoURL?: string;
|
|
278
|
+
OldValues___?: KeyValuePairInput[];
|
|
279
|
+
}
|
|
280
|
+
export declare class RunAIAgentViewResult {
|
|
281
|
+
Results: AIAgent_[];
|
|
282
|
+
UserViewRunID?: string;
|
|
283
|
+
RowCount: number;
|
|
284
|
+
TotalRowCount: number;
|
|
285
|
+
ExecutionTime: number;
|
|
286
|
+
ErrorMessage?: string;
|
|
287
|
+
Success: boolean;
|
|
288
|
+
}
|
|
289
|
+
export declare class AIAgentResolver extends ResolverBase {
|
|
290
|
+
RunAIAgentViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
291
|
+
RunAIAgentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
292
|
+
RunAIAgentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
293
|
+
AIAgent(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
294
|
+
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
295
|
+
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
296
|
+
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
297
|
+
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
298
|
+
CreateAIAgent(input: CreateAIAgentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
299
|
+
UpdateAIAgent(input: UpdateAIAgentInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
300
|
+
DeleteAIAgent(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
301
|
+
}
|
|
302
|
+
export declare class AIAgentNote_ {
|
|
303
|
+
ID: string;
|
|
304
|
+
AgentID?: string;
|
|
305
|
+
AgentNoteTypeID?: string;
|
|
306
|
+
Note?: string;
|
|
307
|
+
_mj__CreatedAt: Date;
|
|
308
|
+
_mj__UpdatedAt: Date;
|
|
309
|
+
Agent?: string;
|
|
310
|
+
AgentNoteType?: string;
|
|
311
|
+
}
|
|
312
|
+
export declare class CreateAIAgentNoteInput {
|
|
313
|
+
AgentID?: string;
|
|
314
|
+
AgentNoteTypeID?: string;
|
|
315
|
+
Note?: string;
|
|
316
|
+
}
|
|
317
|
+
export declare class UpdateAIAgentNoteInput {
|
|
318
|
+
ID: string;
|
|
319
|
+
AgentID?: string;
|
|
320
|
+
AgentNoteTypeID?: string;
|
|
321
|
+
Note?: string;
|
|
322
|
+
OldValues___?: KeyValuePairInput[];
|
|
323
|
+
}
|
|
324
|
+
export declare class RunAIAgentNoteViewResult {
|
|
325
|
+
Results: AIAgentNote_[];
|
|
326
|
+
UserViewRunID?: string;
|
|
327
|
+
RowCount: number;
|
|
328
|
+
TotalRowCount: number;
|
|
329
|
+
ExecutionTime: number;
|
|
330
|
+
ErrorMessage?: string;
|
|
331
|
+
Success: boolean;
|
|
332
|
+
}
|
|
333
|
+
export declare class AIAgentNoteResolver extends ResolverBase {
|
|
334
|
+
RunAIAgentNoteViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
335
|
+
RunAIAgentNoteViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
336
|
+
RunAIAgentNoteDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
337
|
+
AIAgentNote(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentNote_ | null>;
|
|
338
|
+
CreateAIAgentNote(input: CreateAIAgentNoteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
339
|
+
UpdateAIAgentNote(input: UpdateAIAgentNoteInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
340
|
+
DeleteAIAgentNote(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
341
|
+
}
|
|
342
|
+
export declare class AIAgentAction_ {
|
|
343
|
+
ID: string;
|
|
344
|
+
AgentID?: string;
|
|
345
|
+
ActionID?: string;
|
|
346
|
+
Status: string;
|
|
347
|
+
_mj__CreatedAt: Date;
|
|
348
|
+
_mj__UpdatedAt: Date;
|
|
349
|
+
Agent?: string;
|
|
350
|
+
Action?: string;
|
|
351
|
+
}
|
|
352
|
+
export declare class CreateAIAgentActionInput {
|
|
353
|
+
AgentID?: string;
|
|
354
|
+
ActionID?: string;
|
|
355
|
+
Status: string;
|
|
356
|
+
}
|
|
357
|
+
export declare class UpdateAIAgentActionInput {
|
|
358
|
+
ID: string;
|
|
359
|
+
AgentID?: string;
|
|
360
|
+
ActionID?: string;
|
|
361
|
+
Status: string;
|
|
362
|
+
OldValues___?: KeyValuePairInput[];
|
|
363
|
+
}
|
|
364
|
+
export declare class RunAIAgentActionViewResult {
|
|
365
|
+
Results: AIAgentAction_[];
|
|
366
|
+
UserViewRunID?: string;
|
|
367
|
+
RowCount: number;
|
|
368
|
+
TotalRowCount: number;
|
|
369
|
+
ExecutionTime: number;
|
|
370
|
+
ErrorMessage?: string;
|
|
371
|
+
Success: boolean;
|
|
372
|
+
}
|
|
373
|
+
export declare class AIAgentActionResolver extends ResolverBase {
|
|
374
|
+
RunAIAgentActionViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
375
|
+
RunAIAgentActionViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
376
|
+
RunAIAgentActionDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
377
|
+
AIAgentAction(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentAction_ | null>;
|
|
378
|
+
CreateAIAgentAction(input: CreateAIAgentActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
379
|
+
UpdateAIAgentAction(input: UpdateAIAgentActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
380
|
+
DeleteAIAgentAction(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
381
|
+
}
|
|
176
382
|
export declare class AIPrompt_ {
|
|
177
383
|
ID: string;
|
|
178
384
|
Name: string;
|
|
@@ -2688,6 +2894,7 @@ export declare class AIModel_ {
|
|
|
2688
2894
|
ContentTypes_AIModelIDArray: ContentType_[];
|
|
2689
2895
|
AIResultCache_AIModelIDArray: AIResultCache_[];
|
|
2690
2896
|
EntityAIActions_AIModelIDArray: EntityAIAction_[];
|
|
2897
|
+
AIAgentModels_ModelIDArray: AIAgentModel_[];
|
|
2691
2898
|
}
|
|
2692
2899
|
export declare class CreateAIModelInput {
|
|
2693
2900
|
Name: string;
|
|
@@ -2743,6 +2950,7 @@ export declare class AIModelResolver extends ResolverBase {
|
|
|
2743
2950
|
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2744
2951
|
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2745
2952
|
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2953
|
+
AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2746
2954
|
CreateAIModel(input: CreateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2747
2955
|
UpdateAIModel(input: UpdateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2748
2956
|
DeleteAIModel(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5483,6 +5691,7 @@ export declare class Action_ {
|
|
|
5483
5691
|
ActionLibraries_ActionIDArray: ActionLibrary_[];
|
|
5484
5692
|
ScheduledActions_ActionIDArray: ScheduledAction_[];
|
|
5485
5693
|
ActionResultCodes_ActionIDArray: ActionResultCode_[];
|
|
5694
|
+
AIAgentActions_ActionIDArray: AIAgentAction_[];
|
|
5486
5695
|
ActionContexts_ActionIDArray: ActionContext_[];
|
|
5487
5696
|
EntityActions_ActionIDArray: EntityAction_[];
|
|
5488
5697
|
ActionExecutionLogs_ActionIDArray: ActionExecutionLog_[];
|
|
@@ -5544,6 +5753,7 @@ export declare class ActionResolver extends ResolverBase {
|
|
|
5544
5753
|
ActionLibraries_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5545
5754
|
ScheduledActions_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5546
5755
|
ActionResultCodes_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5756
|
+
AIAgentActions_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5547
5757
|
ActionContexts_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5548
5758
|
EntityActions_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5549
5759
|
ActionExecutionLogs_ActionIDArray(action_: Action_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
@@ -7019,6 +7229,63 @@ export declare class ResourceLinkResolver extends ResolverBase {
|
|
|
7019
7229
|
UpdateResourceLink(input: UpdateResourceLinkInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7020
7230
|
DeleteResourceLink(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7021
7231
|
}
|
|
7232
|
+
export declare class flyway_schema_history_ {
|
|
7233
|
+
installed_rank: number;
|
|
7234
|
+
version?: string;
|
|
7235
|
+
description?: string;
|
|
7236
|
+
type: string;
|
|
7237
|
+
script: string;
|
|
7238
|
+
checksum?: number;
|
|
7239
|
+
installed_by: string;
|
|
7240
|
+
installed_on: Date;
|
|
7241
|
+
execution_time: number;
|
|
7242
|
+
success: boolean;
|
|
7243
|
+
_mj__CreatedAt: Date;
|
|
7244
|
+
_mj__UpdatedAt: Date;
|
|
7245
|
+
}
|
|
7246
|
+
export declare class Createflyway_schema_historyInput {
|
|
7247
|
+
installed_rank: number;
|
|
7248
|
+
version?: string;
|
|
7249
|
+
description?: string;
|
|
7250
|
+
type: string;
|
|
7251
|
+
script: string;
|
|
7252
|
+
checksum?: number;
|
|
7253
|
+
installed_by: string;
|
|
7254
|
+
installed_on: Date;
|
|
7255
|
+
execution_time: number;
|
|
7256
|
+
success: boolean;
|
|
7257
|
+
}
|
|
7258
|
+
export declare class Updateflyway_schema_historyInput {
|
|
7259
|
+
installed_rank: number;
|
|
7260
|
+
version?: string;
|
|
7261
|
+
description?: string;
|
|
7262
|
+
type: string;
|
|
7263
|
+
script: string;
|
|
7264
|
+
checksum?: number;
|
|
7265
|
+
installed_by: string;
|
|
7266
|
+
installed_on: Date;
|
|
7267
|
+
execution_time: number;
|
|
7268
|
+
success: boolean;
|
|
7269
|
+
OldValues___?: KeyValuePairInput[];
|
|
7270
|
+
}
|
|
7271
|
+
export declare class Runflyway_schema_historyViewResult {
|
|
7272
|
+
Results: flyway_schema_history_[];
|
|
7273
|
+
UserViewRunID?: string;
|
|
7274
|
+
RowCount: number;
|
|
7275
|
+
TotalRowCount: number;
|
|
7276
|
+
ExecutionTime: number;
|
|
7277
|
+
ErrorMessage?: string;
|
|
7278
|
+
Success: boolean;
|
|
7279
|
+
}
|
|
7280
|
+
export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
7281
|
+
Runflyway_schema_historyViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7282
|
+
Runflyway_schema_historyViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7283
|
+
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7284
|
+
flyway_schema_history(installed_rank: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<flyway_schema_history_ | null>;
|
|
7285
|
+
Createflyway_schema_history(input: Createflyway_schema_historyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7286
|
+
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7287
|
+
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7288
|
+
}
|
|
7022
7289
|
export declare class QueryEntity_ {
|
|
7023
7290
|
ID: string;
|
|
7024
7291
|
QueryID: string;
|
|
@@ -7544,47 +7811,35 @@ export declare class ContentItemTagResolver extends ResolverBase {
|
|
|
7544
7811
|
UpdateContentItemTag(input: UpdateContentItemTagInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7545
7812
|
DeleteContentItemTag(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7546
7813
|
}
|
|
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;
|
|
7814
|
+
export declare class AIAgentLearningCycle_ {
|
|
7815
|
+
ID: string;
|
|
7816
|
+
AgentID: string;
|
|
7817
|
+
StartedAt: Date;
|
|
7818
|
+
EndedAt?: Date;
|
|
7819
|
+
Status: string;
|
|
7820
|
+
AgentSummary?: string;
|
|
7558
7821
|
_mj__CreatedAt: Date;
|
|
7559
7822
|
_mj__UpdatedAt: Date;
|
|
7823
|
+
Agent?: string;
|
|
7560
7824
|
}
|
|
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;
|
|
7825
|
+
export declare class CreateAIAgentLearningCycleInput {
|
|
7826
|
+
AgentID: string;
|
|
7827
|
+
StartedAt: Date;
|
|
7828
|
+
EndedAt?: Date;
|
|
7829
|
+
Status: string;
|
|
7830
|
+
AgentSummary?: string;
|
|
7572
7831
|
}
|
|
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;
|
|
7832
|
+
export declare class UpdateAIAgentLearningCycleInput {
|
|
7833
|
+
ID: string;
|
|
7834
|
+
AgentID: string;
|
|
7835
|
+
StartedAt: Date;
|
|
7836
|
+
EndedAt?: Date;
|
|
7837
|
+
Status: string;
|
|
7838
|
+
AgentSummary?: string;
|
|
7584
7839
|
OldValues___?: KeyValuePairInput[];
|
|
7585
7840
|
}
|
|
7586
|
-
export declare class
|
|
7587
|
-
Results:
|
|
7841
|
+
export declare class RunAIAgentLearningCycleViewResult {
|
|
7842
|
+
Results: AIAgentLearningCycle_[];
|
|
7588
7843
|
UserViewRunID?: string;
|
|
7589
7844
|
RowCount: number;
|
|
7590
7845
|
TotalRowCount: number;
|
|
@@ -7592,13 +7847,13 @@ export declare class Runflyway_schema_historyViewResult {
|
|
|
7592
7847
|
ErrorMessage?: string;
|
|
7593
7848
|
Success: boolean;
|
|
7594
7849
|
}
|
|
7595
|
-
export declare class
|
|
7596
|
-
|
|
7597
|
-
|
|
7598
|
-
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7850
|
+
export declare class AIAgentLearningCycleResolver extends ResolverBase {
|
|
7851
|
+
RunAIAgentLearningCycleViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7852
|
+
RunAIAgentLearningCycleViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7853
|
+
RunAIAgentLearningCycleDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7854
|
+
AIAgentLearningCycle(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentLearningCycle_ | null>;
|
|
7855
|
+
CreateAIAgentLearningCycle(input: CreateAIAgentLearningCycleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7856
|
+
UpdateAIAgentLearningCycle(input: UpdateAIAgentLearningCycleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7857
|
+
DeleteAIAgentLearningCycle(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7603
7858
|
}
|
|
7604
7859
|
//# sourceMappingURL=generated.d.ts.map
|