@memberjunction/server 0.9.247 → 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
|
@@ -1812,6 +1812,10 @@ export declare class Workflow_ {
|
|
|
1812
1812
|
ExternalSystemRecordID: string;
|
|
1813
1813
|
CreatedAt: Date;
|
|
1814
1814
|
UpdatedAt: Date;
|
|
1815
|
+
AutoRunEnabled: boolean;
|
|
1816
|
+
AutoRunIntervalUnits?: string;
|
|
1817
|
+
AutoRunInterval?: number;
|
|
1818
|
+
SubclassName?: string;
|
|
1815
1819
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
1816
1820
|
WorkflowRunsArray: mj_core_schema_server_object_types.WorkflowRun_[];
|
|
1817
1821
|
}
|
|
@@ -1822,6 +1826,10 @@ export declare class UpdateWorkflowInput {
|
|
|
1822
1826
|
WorkflowEngineName: string;
|
|
1823
1827
|
CompanyName: string;
|
|
1824
1828
|
ExternalSystemRecordID: string;
|
|
1829
|
+
AutoRunEnabled: boolean;
|
|
1830
|
+
AutoRunIntervalUnits: string;
|
|
1831
|
+
AutoRunInterval: number;
|
|
1832
|
+
SubclassName: string;
|
|
1825
1833
|
}
|
|
1826
1834
|
export declare class RunWorkflowViewResult {
|
|
1827
1835
|
Results: Workflow_[];
|
|
@@ -4333,4 +4341,59 @@ export declare class FileEntityRecordLinkResolver extends ResolverBase {
|
|
|
4333
4341
|
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<boolean>;
|
|
4334
4342
|
protected AfterUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<void>;
|
|
4335
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
|
+
}
|
|
4336
4399
|
//# sourceMappingURL=generated.d.ts.map
|