@memberjunction/server 2.27.1 → 2.29.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 +21 -59
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +114 -353
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/QueryResolver.d.ts +2 -0
- package/dist/resolvers/QueryResolver.d.ts.map +1 -1
- package/dist/resolvers/QueryResolver.js +27 -0
- package/dist/resolvers/QueryResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +71 -225
- package/src/resolvers/QueryResolver.ts +19 -0
|
@@ -253,63 +253,6 @@ export declare class AIAgentNoteTypeResolver extends ResolverBase {
|
|
|
253
253
|
UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
254
254
|
DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
255
255
|
}
|
|
256
|
-
export declare class flyway_schema_history_ {
|
|
257
|
-
installed_rank: number;
|
|
258
|
-
version?: string;
|
|
259
|
-
description?: string;
|
|
260
|
-
type: string;
|
|
261
|
-
script: string;
|
|
262
|
-
checksum?: number;
|
|
263
|
-
installed_by: string;
|
|
264
|
-
installed_on: Date;
|
|
265
|
-
execution_time: number;
|
|
266
|
-
success: boolean;
|
|
267
|
-
_mj__CreatedAt: Date;
|
|
268
|
-
_mj__UpdatedAt: Date;
|
|
269
|
-
}
|
|
270
|
-
export declare class Createflyway_schema_historyInput {
|
|
271
|
-
installed_rank: number;
|
|
272
|
-
version: string | null;
|
|
273
|
-
description: string | null;
|
|
274
|
-
type?: string;
|
|
275
|
-
script?: string;
|
|
276
|
-
checksum: number | null;
|
|
277
|
-
installed_by?: string;
|
|
278
|
-
installed_on?: Date;
|
|
279
|
-
execution_time?: number;
|
|
280
|
-
success?: boolean;
|
|
281
|
-
}
|
|
282
|
-
export declare class Updateflyway_schema_historyInput {
|
|
283
|
-
installed_rank: number;
|
|
284
|
-
version?: string | null;
|
|
285
|
-
description?: string | null;
|
|
286
|
-
type?: string;
|
|
287
|
-
script?: string;
|
|
288
|
-
checksum?: number | null;
|
|
289
|
-
installed_by?: string;
|
|
290
|
-
installed_on?: Date;
|
|
291
|
-
execution_time?: number;
|
|
292
|
-
success?: boolean;
|
|
293
|
-
OldValues___?: KeyValuePairInput[];
|
|
294
|
-
}
|
|
295
|
-
export declare class Runflyway_schema_historyViewResult {
|
|
296
|
-
Results: flyway_schema_history_[];
|
|
297
|
-
UserViewRunID?: string;
|
|
298
|
-
RowCount: number;
|
|
299
|
-
TotalRowCount: number;
|
|
300
|
-
ExecutionTime: number;
|
|
301
|
-
ErrorMessage?: string;
|
|
302
|
-
Success: boolean;
|
|
303
|
-
}
|
|
304
|
-
export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
305
|
-
Runflyway_schema_historyViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
306
|
-
Runflyway_schema_historyViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
307
|
-
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
308
|
-
flyway_schema_history(installed_rank: number, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<flyway_schema_history_ | null>;
|
|
309
|
-
Createflyway_schema_history(input: Createflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
310
|
-
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
311
|
-
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
312
|
-
}
|
|
313
256
|
export declare class AIAgent_ {
|
|
314
257
|
ID: string;
|
|
315
258
|
Name?: string;
|
|
@@ -1174,6 +1117,11 @@ export declare class EntityField_ {
|
|
|
1174
1117
|
ScopeDefault?: string;
|
|
1175
1118
|
AutoUpdateRelatedEntityInfo: boolean;
|
|
1176
1119
|
ValuesToPackWithSchema: string;
|
|
1120
|
+
GeneratedValidationFunctionName?: string;
|
|
1121
|
+
GeneratedValidationFunctionDescription?: string;
|
|
1122
|
+
GeneratedValidationFunctionCode?: string;
|
|
1123
|
+
GeneratedValidationFunctionCheckConstraint?: string;
|
|
1124
|
+
FieldCodeName?: string;
|
|
1177
1125
|
Entity: string;
|
|
1178
1126
|
SchemaName: string;
|
|
1179
1127
|
BaseTable: string;
|
|
@@ -1218,6 +1166,10 @@ export declare class CreateEntityFieldInput {
|
|
|
1218
1166
|
ScopeDefault: string | null;
|
|
1219
1167
|
AutoUpdateRelatedEntityInfo?: boolean;
|
|
1220
1168
|
ValuesToPackWithSchema?: string;
|
|
1169
|
+
GeneratedValidationFunctionName: string | null;
|
|
1170
|
+
GeneratedValidationFunctionDescription: string | null;
|
|
1171
|
+
GeneratedValidationFunctionCode: string | null;
|
|
1172
|
+
GeneratedValidationFunctionCheckConstraint: string | null;
|
|
1221
1173
|
}
|
|
1222
1174
|
export declare class UpdateEntityFieldInput {
|
|
1223
1175
|
ID: string;
|
|
@@ -1250,6 +1202,10 @@ export declare class UpdateEntityFieldInput {
|
|
|
1250
1202
|
ScopeDefault?: string | null;
|
|
1251
1203
|
AutoUpdateRelatedEntityInfo?: boolean;
|
|
1252
1204
|
ValuesToPackWithSchema?: string;
|
|
1205
|
+
GeneratedValidationFunctionName?: string | null;
|
|
1206
|
+
GeneratedValidationFunctionDescription?: string | null;
|
|
1207
|
+
GeneratedValidationFunctionCode?: string | null;
|
|
1208
|
+
GeneratedValidationFunctionCheckConstraint?: string | null;
|
|
1253
1209
|
OldValues___?: KeyValuePairInput[];
|
|
1254
1210
|
}
|
|
1255
1211
|
export declare class RunEntityFieldViewResult {
|
|
@@ -1574,9 +1530,9 @@ export declare class User_ {
|
|
|
1574
1530
|
UserNotifications_UserIDArray: UserNotification_[];
|
|
1575
1531
|
Templates_UserIDArray: Template_[];
|
|
1576
1532
|
UserFavorites_UserIDArray: UserFavorite_[];
|
|
1533
|
+
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
1577
1534
|
ListCategories_UserIDArray: ListCategory_[];
|
|
1578
1535
|
ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
|
|
1579
|
-
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
1580
1536
|
AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
|
|
1581
1537
|
AIAgentNotes_UserIDArray: AIAgentNote_[];
|
|
1582
1538
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
@@ -1656,9 +1612,9 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
1656
1612
|
UserNotifications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1657
1613
|
Templates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1658
1614
|
UserFavorites_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1615
|
+
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1659
1616
|
ListCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1660
1617
|
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1661
|
-
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1662
1618
|
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1663
1619
|
AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1664
1620
|
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
@@ -6353,6 +6309,8 @@ export declare class CommunicationProvider_ {
|
|
|
6353
6309
|
_mj__CreatedAt: Date;
|
|
6354
6310
|
_mj__UpdatedAt: Date;
|
|
6355
6311
|
SupportsScheduledSending: boolean;
|
|
6312
|
+
SupportsForwarding: boolean;
|
|
6313
|
+
SupportsReplying: boolean;
|
|
6356
6314
|
CommunicationLogs_CommunicationProviderIDArray: CommunicationLog_[];
|
|
6357
6315
|
CommunicationProviderMessageTypes_CommunicationProviderIDArray: CommunicationProviderMessageType_[];
|
|
6358
6316
|
}
|
|
@@ -6363,6 +6321,8 @@ export declare class CreateCommunicationProviderInput {
|
|
|
6363
6321
|
SupportsSending?: boolean;
|
|
6364
6322
|
SupportsReceiving?: boolean;
|
|
6365
6323
|
SupportsScheduledSending?: boolean;
|
|
6324
|
+
SupportsForwarding?: boolean;
|
|
6325
|
+
SupportsReplying?: boolean;
|
|
6366
6326
|
}
|
|
6367
6327
|
export declare class UpdateCommunicationProviderInput {
|
|
6368
6328
|
ID: string;
|
|
@@ -6372,6 +6332,8 @@ export declare class UpdateCommunicationProviderInput {
|
|
|
6372
6332
|
SupportsSending?: boolean;
|
|
6373
6333
|
SupportsReceiving?: boolean;
|
|
6374
6334
|
SupportsScheduledSending?: boolean;
|
|
6335
|
+
SupportsForwarding?: boolean;
|
|
6336
|
+
SupportsReplying?: boolean;
|
|
6375
6337
|
OldValues___?: KeyValuePairInput[];
|
|
6376
6338
|
}
|
|
6377
6339
|
export declare class RunCommunicationProviderViewResult {
|