@memberjunction/server 0.9.247 → 0.9.250
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 +9 -0
- package/dist/generated/generated.d.ts +66 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +335 -1
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/FileCategoryResolver.d.ts +6 -0
- package/dist/resolvers/FileCategoryResolver.d.ts.map +1 -0
- package/dist/resolvers/FileCategoryResolver.js +53 -0
- package/dist/resolvers/FileCategoryResolver.js.map +1 -0
- package/dist/resolvers/FileResolver.d.ts.map +1 -1
- package/dist/resolvers/FileResolver.js +9 -4
- package/dist/resolvers/FileResolver.js.map +1 -1
- package/package.json +9 -9
- package/src/generated/generated.ts +18689 -18428
- package/src/resolvers/FileCategoryResolver.ts +38 -0
- package/src/resolvers/FileResolver.ts +14 -10
package/build.log.json
CHANGED
|
@@ -406,5 +406,14 @@
|
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
408
|
"buildTime": "2024-03-23T19:33:09.8818168-05:00"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"buildTime": "2024-03-24T12:06:03.0617152-05:00"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"buildTime": "2024-03-29T15:54:03.7491738-05:00"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"buildTime": "2024-03-29T17:34:53.8234977-05:00"
|
|
409
418
|
}
|
|
410
419
|
]
|
|
@@ -1812,6 +1812,11 @@ 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;
|
|
1819
|
+
AutoRunIntervalMinutes?: number;
|
|
1815
1820
|
ReportsArray: mj_core_schema_server_object_types.Report_[];
|
|
1816
1821
|
WorkflowRunsArray: mj_core_schema_server_object_types.WorkflowRun_[];
|
|
1817
1822
|
}
|
|
@@ -1822,6 +1827,10 @@ export declare class UpdateWorkflowInput {
|
|
|
1822
1827
|
WorkflowEngineName: string;
|
|
1823
1828
|
CompanyName: string;
|
|
1824
1829
|
ExternalSystemRecordID: string;
|
|
1830
|
+
AutoRunEnabled: boolean;
|
|
1831
|
+
AutoRunIntervalUnits: string;
|
|
1832
|
+
AutoRunInterval: number;
|
|
1833
|
+
SubclassName: string;
|
|
1825
1834
|
}
|
|
1826
1835
|
export declare class RunWorkflowViewResult {
|
|
1827
1836
|
Results: Workflow_[];
|
|
@@ -2137,6 +2146,7 @@ export declare class EntityFieldValue_ {
|
|
|
2137
2146
|
Description?: string;
|
|
2138
2147
|
CreatedAt: Date;
|
|
2139
2148
|
UpdatedAt: Date;
|
|
2149
|
+
EntityField: string;
|
|
2140
2150
|
Entity: string;
|
|
2141
2151
|
}
|
|
2142
2152
|
export declare class RunEntityFieldValueViewResult {
|
|
@@ -4333,4 +4343,60 @@ export declare class FileEntityRecordLinkResolver extends ResolverBase {
|
|
|
4333
4343
|
protected BeforeUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<boolean>;
|
|
4334
4344
|
protected AfterUpdate(dataSource: DataSource, input: UpdateFileEntityRecordLinkInput): Promise<void>;
|
|
4335
4345
|
}
|
|
4346
|
+
export declare class VersionInstallation_ {
|
|
4347
|
+
ID: number;
|
|
4348
|
+
MajorVersion: number;
|
|
4349
|
+
MinorVersion: number;
|
|
4350
|
+
PatchVersion: number;
|
|
4351
|
+
Type?: string;
|
|
4352
|
+
InstalledAt: Date;
|
|
4353
|
+
Status: string;
|
|
4354
|
+
InstallLog?: string;
|
|
4355
|
+
Comments?: string;
|
|
4356
|
+
CreatedAt: Date;
|
|
4357
|
+
UpdatedAt: Date;
|
|
4358
|
+
CompleteVersion?: string;
|
|
4359
|
+
}
|
|
4360
|
+
export declare class CreateVersionInstallationInput {
|
|
4361
|
+
MajorVersion: number;
|
|
4362
|
+
MinorVersion: number;
|
|
4363
|
+
PatchVersion: number;
|
|
4364
|
+
Type: string;
|
|
4365
|
+
InstalledAt: Date;
|
|
4366
|
+
Status: string;
|
|
4367
|
+
InstallLog: string;
|
|
4368
|
+
Comments: string;
|
|
4369
|
+
}
|
|
4370
|
+
export declare class UpdateVersionInstallationInput {
|
|
4371
|
+
ID: number;
|
|
4372
|
+
MajorVersion: number;
|
|
4373
|
+
MinorVersion: number;
|
|
4374
|
+
PatchVersion: number;
|
|
4375
|
+
Type: string;
|
|
4376
|
+
InstalledAt: Date;
|
|
4377
|
+
Status: string;
|
|
4378
|
+
InstallLog: string;
|
|
4379
|
+
Comments: string;
|
|
4380
|
+
}
|
|
4381
|
+
export declare class RunVersionInstallationViewResult {
|
|
4382
|
+
Results: VersionInstallation_[];
|
|
4383
|
+
UserViewRunID?: number;
|
|
4384
|
+
RowCount: number;
|
|
4385
|
+
TotalRowCount: number;
|
|
4386
|
+
ExecutionTime: number;
|
|
4387
|
+
ErrorMessage?: string;
|
|
4388
|
+
Success: boolean;
|
|
4389
|
+
}
|
|
4390
|
+
export declare class VersionInstallationResolver extends ResolverBase {
|
|
4391
|
+
RunVersionInstallationViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4392
|
+
RunVersionInstallationViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4393
|
+
RunVersionInstallationDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult>;
|
|
4394
|
+
VersionInstallation(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VersionInstallation_ | null>;
|
|
4395
|
+
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4396
|
+
protected BeforeCreate(dataSource: DataSource, input: CreateVersionInstallationInput): Promise<boolean>;
|
|
4397
|
+
protected AfterCreate(dataSource: DataSource, input: CreateVersionInstallationInput): Promise<void>;
|
|
4398
|
+
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
|
|
4399
|
+
protected BeforeUpdate(dataSource: DataSource, input: UpdateVersionInstallationInput): Promise<boolean>;
|
|
4400
|
+
protected AfterUpdate(dataSource: DataSource, input: UpdateVersionInstallationInput): Promise<void>;
|
|
4401
|
+
}
|
|
4336
4402
|
//# sourceMappingURL=generated.d.ts.map
|