@memberjunction/server 2.9.0 → 2.11.0
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/dist/generated/generated.d.ts +9 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +46 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +4 -0
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +28 -2
- package/src/resolvers/AskSkipResolver.ts +4 -0
|
@@ -1649,6 +1649,9 @@ export declare class CompanyIntegrationRun_ {
|
|
|
1649
1649
|
Comments?: string;
|
|
1650
1650
|
_mj__CreatedAt: Date;
|
|
1651
1651
|
_mj__UpdatedAt: Date;
|
|
1652
|
+
Status: string;
|
|
1653
|
+
ErrorLog?: string;
|
|
1654
|
+
ConfigData?: string;
|
|
1652
1655
|
Integration: string;
|
|
1653
1656
|
Company: string;
|
|
1654
1657
|
RunByUser: string;
|
|
@@ -1663,6 +1666,9 @@ export declare class CreateCompanyIntegrationRunInput {
|
|
|
1663
1666
|
EndedAt?: Date;
|
|
1664
1667
|
TotalRecords: number;
|
|
1665
1668
|
Comments?: string;
|
|
1669
|
+
Status: string;
|
|
1670
|
+
ErrorLog?: string;
|
|
1671
|
+
ConfigData?: string;
|
|
1666
1672
|
}
|
|
1667
1673
|
export declare class UpdateCompanyIntegrationRunInput {
|
|
1668
1674
|
ID: string;
|
|
@@ -1672,6 +1678,9 @@ export declare class UpdateCompanyIntegrationRunInput {
|
|
|
1672
1678
|
EndedAt?: Date;
|
|
1673
1679
|
TotalRecords: number;
|
|
1674
1680
|
Comments?: string;
|
|
1681
|
+
Status: string;
|
|
1682
|
+
ErrorLog?: string;
|
|
1683
|
+
ConfigData?: string;
|
|
1675
1684
|
OldValues___?: KeyValuePairInput[];
|
|
1676
1685
|
}
|
|
1677
1686
|
export declare class RunCompanyIntegrationRunViewResult {
|