@memberjunction/server 0.9.245 → 0.9.247
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
CHANGED
|
@@ -399,6 +399,12 @@
|
|
|
399
399
|
"buildTime": "2024-03-22T14:27:18.1997484-05:00"
|
|
400
400
|
},
|
|
401
401
|
{
|
|
402
|
-
"buildTime": "2024-03-23T10:20:37.
|
|
402
|
+
"buildTime": "2024-03-23T10:20:37.830181-05:00"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"buildTime": "2024-03-23T10:45:04.9437293-05:00"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"buildTime": "2024-03-23T19:33:09.8818168-05:00"
|
|
403
409
|
}
|
|
404
410
|
]
|
|
@@ -287,6 +287,12 @@ export declare class Role_ {
|
|
|
287
287
|
AuthorizationRolesArray: mj_core_schema_server_object_types.AuthorizationRole_[];
|
|
288
288
|
QueryPermissionsArray: mj_core_schema_server_object_types.QueryPermission_[];
|
|
289
289
|
}
|
|
290
|
+
export declare class CreateRoleInput {
|
|
291
|
+
Name: string;
|
|
292
|
+
Description: string;
|
|
293
|
+
DirectoryID: string;
|
|
294
|
+
SQLName: string;
|
|
295
|
+
}
|
|
290
296
|
export declare class UpdateRoleInput {
|
|
291
297
|
ID: number;
|
|
292
298
|
Name: string;
|
|
@@ -314,9 +320,15 @@ export declare class RoleResolver extends ResolverBase {
|
|
|
314
320
|
UserRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
315
321
|
AuthorizationRolesArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
316
322
|
QueryPermissionsArray(role_: Role_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
323
|
+
CreateRole(input: CreateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
324
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateRoleInput): Promise<boolean>;
|
|
325
|
+
protected AfterCreate(dataSource: DataSource, input: CreateRoleInput): Promise<void>;
|
|
317
326
|
UpdateRole(input: UpdateRoleInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
318
327
|
protected BeforeUpdate(dataSource: DataSource, input: UpdateRoleInput): Promise<boolean>;
|
|
319
328
|
protected AfterUpdate(dataSource: DataSource, input: UpdateRoleInput): Promise<void>;
|
|
329
|
+
DeleteRole(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
330
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
331
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
320
332
|
}
|
|
321
333
|
export declare class Skill_ {
|
|
322
334
|
ID: number;
|
|
@@ -1299,6 +1311,10 @@ export declare class Application_ {
|
|
|
1299
1311
|
ApplicationEntitiesArray: mj_core_schema_server_object_types.ApplicationEntity_[];
|
|
1300
1312
|
UserApplicationsArray: mj_core_schema_server_object_types.UserApplication_[];
|
|
1301
1313
|
}
|
|
1314
|
+
export declare class CreateApplicationInput {
|
|
1315
|
+
Name: string;
|
|
1316
|
+
Description: string;
|
|
1317
|
+
}
|
|
1302
1318
|
export declare class UpdateApplicationInput {
|
|
1303
1319
|
ID: number;
|
|
1304
1320
|
Name: string;
|
|
@@ -1321,9 +1337,15 @@ export declare class ApplicationResolver extends ResolverBase {
|
|
|
1321
1337
|
AllApplications({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1322
1338
|
ApplicationEntitiesArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1323
1339
|
UserApplicationsArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1340
|
+
CreateApplication(input: CreateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1341
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateApplicationInput): Promise<boolean>;
|
|
1342
|
+
protected AfterCreate(dataSource: DataSource, input: CreateApplicationInput): Promise<void>;
|
|
1324
1343
|
UpdateApplication(input: UpdateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1325
1344
|
protected BeforeUpdate(dataSource: DataSource, input: UpdateApplicationInput): Promise<boolean>;
|
|
1326
1345
|
protected AfterUpdate(dataSource: DataSource, input: UpdateApplicationInput): Promise<void>;
|
|
1346
|
+
DeleteApplication(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1347
|
+
protected BeforeDelete(dataSource: DataSource, ID: number): Promise<boolean>;
|
|
1348
|
+
protected AfterDelete(dataSource: DataSource, ID: number): Promise<void>;
|
|
1327
1349
|
}
|
|
1328
1350
|
export declare class ApplicationEntity_ {
|
|
1329
1351
|
ID: number;
|