@memberjunction/server 0.9.246 → 0.9.248
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;
|
|
@@ -1802,6 +1812,10 @@ export declare class Workflow_ {
|
|
|
1802
1812
|
ExternalSystemRecordID: string;
|
|
1803
1813
|
CreatedAt: Date;
|
|
1804
1814
|
UpdatedAt: Date;
|
|
1815
|
+
AutoRunEnabled: boolean;
|
|
1816
|
+
AutoRunIntervalUnits?: string;
|
|
1817
|
+
AutoRunInterval?: number;
|
|
1818
|
+
SubclassName?: string;
|
|
1805
1819
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
1806
1820
|
WorkflowRunsArray: mj_core_schema_server_object_types.WorkflowRun_[];
|
|
1807
1821
|
}
|
|
@@ -1812,6 +1826,10 @@ export declare class UpdateWorkflowInput {
|
|
|
1812
1826
|
WorkflowEngineName: string;
|
|
1813
1827
|
CompanyName: string;
|
|
1814
1828
|
ExternalSystemRecordID: string;
|
|
1829
|
+
AutoRunEnabled: boolean;
|
|
1830
|
+
AutoRunIntervalUnits: string;
|
|
1831
|
+
AutoRunInterval: number;
|
|
1832
|
+
SubclassName: string;
|
|
1815
1833
|
}
|
|
1816
1834
|
export declare class RunWorkflowViewResult {
|
|
1817
1835
|
Results: Workflow_[];
|
|
@@ -4323,4 +4341,59 @@ export declare class FileEntityRecordLinkResolver extends ResolverBase {
|
|
|
4323
4341
|
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<boolean>;
|
|
4324
4342
|
protected AfterUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<void>;
|
|
4325
4343
|
}
|
|
4344
|
+
export declare class VersionInstallation_ {
|
|
4345
|
+
ID: number;
|
|
4346
|
+
MajorVersion: number;
|
|
4347
|
+
MinorVersion: number;
|
|
4348
|
+
PatchVersion: number;
|
|
4349
|
+
Type?: string;
|
|
4350
|
+
InstalledAt: Date;
|
|
4351
|
+
Status: string;
|
|
4352
|
+
InstallLog?: string;
|
|
4353
|
+
Comments?: string;
|
|
4354
|
+
CreatedAt: Date;
|
|
4355
|
+
UpdatedAt: Date;
|
|
4356
|
+
}
|
|
4357
|
+
export declare class CreateVersionInstallationInput {
|
|
4358
|
+
MajorVersion: number;
|
|
4359
|
+
MinorVersion: number;
|
|
4360
|
+
PatchVersion: number;
|
|
4361
|
+
Type: string;
|
|
4362
|
+
InstalledAt: Date;
|
|
4363
|
+
Status: string;
|
|
4364
|
+
InstallLog: string;
|
|
4365
|
+
Comments: string;
|
|
4366
|
+
}
|
|
4367
|
+
export declare class UpdateVersionInstallationInput {
|
|
4368
|
+
ID: number;
|
|
4369
|
+
MajorVersion: number;
|
|
4370
|
+
MinorVersion: number;
|
|
4371
|
+
PatchVersion: number;
|
|
4372
|
+
Type: string;
|
|
4373
|
+
InstalledAt: Date;
|
|
4374
|
+
Status: string;
|
|
4375
|
+
InstallLog: string;
|
|
4376
|
+
Comments: string;
|
|
4377
|
+
}
|
|
4378
|
+
export declare class RunVersionInstallationViewResult {
|
|
4379
|
+
Results: VersionInstallation_[];
|
|
4380
|
+
UserViewRunID?: number;
|
|
4381
|
+
RowCount: number;
|
|
4382
|
+
TotalRowCount: number;
|
|
4383
|
+
ExecutionTime: number;
|
|
4384
|
+
ErrorMessage?: string;
|
|
4385
|
+
Success: boolean;
|
|
4386
|
+
}
|
|
4387
|
+
export declare class VersionInstallationResolver extends ResolverBase {
|
|
4388
|
+
RunVersionInstallationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4389
|
+
RunVersionInstallationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4390
|
+
RunVersionInstallationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4391
|
+
VersionInstallation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VersionInstallation_ | null>;
|
|
4392
|
+
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4393
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateVersionInstallationInput): Promise<boolean>;
|
|
4394
|
+
protected AfterCreate(dataSource: DataSource, input: CreateVersionInstallationInput): Promise<void>;
|
|
4395
|
+
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4396
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateVersionInstallationInput): Promise<boolean>;
|
|
4397
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateVersionInstallationInput): Promise<void>;
|
|
4398
|
+
}
|
|
4326
4399
|
//# sourceMappingURL=generated.d.ts.map
|