@memberjunction/server 0.9.246 → 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
|
@@ -1311,6 +1311,10 @@ export declare class Application_ {
|
|
|
1311
1311
|
ApplicationEntitiesArray: mj_core_schema_server_object_types.ApplicationEntity_[];
|
|
1312
1312
|
UserApplicationsArray: mj_core_schema_server_object_types.UserApplication_[];
|
|
1313
1313
|
}
|
|
1314
|
+
export declare class CreateApplicationInput {
|
|
1315
|
+
Name: string;
|
|
1316
|
+
Description: string;
|
|
1317
|
+
}
|
|
1314
1318
|
export declare class UpdateApplicationInput {
|
|
1315
1319
|
ID: number;
|
|
1316
1320
|
Name: string;
|
|
@@ -1333,9 +1337,15 @@ export declare class ApplicationResolver extends ResolverBase {
|
|
|
1333
1337
|
AllApplications({ dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1334
1338
|
ApplicationEntitiesArray(application_: Application_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1335
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>;
|
|
1336
1343
|
UpdateApplication(input: UpdateApplicationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
1337
1344
|
protected BeforeUpdate(dataSource: DataSource, input: UpdateApplicationInput): Promise<boolean>;
|
|
1338
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>;
|
|
1339
1349
|
}
|
|
1340
1350
|
export declare class ApplicationEntity_ {
|
|
1341
1351
|
ID: number;
|