@memberjunction/server 2.17.0 → 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 +74 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +523 -63
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +32 -40
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +371 -88
- package/src/resolvers/AskSkipResolver.ts +42 -44
|
@@ -260,6 +260,7 @@ export declare class AIAgent_ {
|
|
|
260
260
|
LogoURL?: string;
|
|
261
261
|
_mj__CreatedAt: Date;
|
|
262
262
|
_mj__UpdatedAt: Date;
|
|
263
|
+
AIAgentRequests_AgentIDArray: AIAgentRequest_[];
|
|
263
264
|
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
264
265
|
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
265
266
|
AIAgentActions_AgentIDArray: AIAgentAction_[];
|
|
@@ -291,6 +292,7 @@ export declare class AIAgentResolver extends ResolverBase {
|
|
|
291
292
|
RunAIAgentViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
292
293
|
RunAIAgentDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
293
294
|
AIAgent(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
295
|
+
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
294
296
|
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
295
297
|
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
296
298
|
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
@@ -306,19 +308,26 @@ export declare class AIAgentNote_ {
|
|
|
306
308
|
Note?: string;
|
|
307
309
|
_mj__CreatedAt: Date;
|
|
308
310
|
_mj__UpdatedAt: Date;
|
|
311
|
+
Type: string;
|
|
312
|
+
UserID?: string;
|
|
309
313
|
Agent?: string;
|
|
310
314
|
AgentNoteType?: string;
|
|
315
|
+
User?: string;
|
|
311
316
|
}
|
|
312
317
|
export declare class CreateAIAgentNoteInput {
|
|
313
318
|
AgentID?: string;
|
|
314
319
|
AgentNoteTypeID?: string;
|
|
315
320
|
Note?: string;
|
|
321
|
+
Type: string;
|
|
322
|
+
UserID?: string;
|
|
316
323
|
}
|
|
317
324
|
export declare class UpdateAIAgentNoteInput {
|
|
318
325
|
ID: string;
|
|
319
326
|
AgentID?: string;
|
|
320
327
|
AgentNoteTypeID?: string;
|
|
321
328
|
Note?: string;
|
|
329
|
+
Type: string;
|
|
330
|
+
UserID?: string;
|
|
322
331
|
OldValues___?: KeyValuePairInput[];
|
|
323
332
|
}
|
|
324
333
|
export declare class RunAIAgentNoteViewResult {
|
|
@@ -1476,7 +1485,10 @@ export declare class User_ {
|
|
|
1476
1485
|
ListCategories_UserIDArray: ListCategory_[];
|
|
1477
1486
|
ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
|
|
1478
1487
|
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
1488
|
+
AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
|
|
1489
|
+
AIAgentNotes_UserIDArray: AIAgentNote_[];
|
|
1479
1490
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
1491
|
+
AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
|
|
1480
1492
|
}
|
|
1481
1493
|
export declare class CreateUserInput {
|
|
1482
1494
|
Name: string;
|
|
@@ -1554,7 +1566,10 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
1554
1566
|
ListCategories_UserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1555
1567
|
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1556
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<[]>;
|
|
1557
1571
|
ResourcePermissions_UserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1572
|
+
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1558
1573
|
CreateUser(input: CreateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1559
1574
|
UpdateUser(input: UpdateUserInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1560
1575
|
DeleteUser(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7286,6 +7301,65 @@ export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
|
7286
7301
|
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7287
7302
|
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7288
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
|
+
}
|
|
7289
7363
|
export declare class QueryEntity_ {
|
|
7290
7364
|
ID: string;
|
|
7291
7365
|
QueryID: string;
|