conductor-node 9.8.0 → 9.8.1
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/README.md
CHANGED
package/dist/package.json
CHANGED
|
@@ -42,7 +42,6 @@ export type GraphqlIntegrationConnectionFragment = {
|
|
|
42
42
|
endUserSourceId: string;
|
|
43
43
|
endUserEmail: string;
|
|
44
44
|
endUserCompanyName: string;
|
|
45
|
-
lastHeartbeatAt: Date | null;
|
|
46
45
|
};
|
|
47
46
|
export type GraphqlGetIntegrationConnectionQueryVariables = Exact<{
|
|
48
47
|
integrationConnectionId: Scalars["ID"];
|
|
@@ -54,7 +53,6 @@ export type GraphqlGetIntegrationConnectionQuery = {
|
|
|
54
53
|
endUserSourceId: string;
|
|
55
54
|
endUserEmail: string;
|
|
56
55
|
endUserCompanyName: string;
|
|
57
|
-
lastHeartbeatAt: Date | null;
|
|
58
56
|
};
|
|
59
57
|
};
|
|
60
58
|
export type GraphqlGetIntegrationConnectionsQueryVariables = Exact<{
|
|
@@ -67,7 +65,6 @@ export type GraphqlGetIntegrationConnectionsQuery = {
|
|
|
67
65
|
endUserSourceId: string;
|
|
68
66
|
endUserEmail: string;
|
|
69
67
|
endUserCompanyName: string;
|
|
70
|
-
lastHeartbeatAt: Date | null;
|
|
71
68
|
}>;
|
|
72
69
|
};
|
|
73
70
|
export type GraphqlCreateIntegrationConnectionMutationVariables = Exact<{
|
|
@@ -81,7 +78,6 @@ export type GraphqlCreateIntegrationConnectionMutation = {
|
|
|
81
78
|
endUserSourceId: string;
|
|
82
79
|
endUserEmail: string;
|
|
83
80
|
endUserCompanyName: string;
|
|
84
|
-
lastHeartbeatAt: Date | null;
|
|
85
81
|
};
|
|
86
82
|
};
|
|
87
83
|
};
|
|
@@ -101,7 +97,7 @@ export type GraphqlSendIntegrationRequestMutation = {
|
|
|
101
97
|
response: object;
|
|
102
98
|
};
|
|
103
99
|
};
|
|
104
|
-
export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserSourceId\n endUserEmail\n endUserCompanyName\n
|
|
100
|
+
export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserSourceId\n endUserEmail\n endUserCompanyName\n}\n ";
|
|
105
101
|
export declare const GetIntegrationConnectionDocument: string;
|
|
106
102
|
export declare const GetIntegrationConnectionsDocument: string;
|
|
107
103
|
export declare const CreateIntegrationConnectionDocument: string;
|
package/dist/src/utils/misc.js
CHANGED
|
@@ -12,7 +12,7 @@ function checkForUpdates() {
|
|
|
12
12
|
.toString()
|
|
13
13
|
.trim();
|
|
14
14
|
if (currentVersion !== latestVersion) {
|
|
15
|
-
console.warn(`⚠️ A new
|
|
15
|
+
console.warn(`⚠️ A new release of Conductor is available: ${currentVersion} -> ${latestVersion}. To update, run: yarn upgrade ${package_json_1.default.name} --latest`);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
exports.checkForUpdates = checkForUpdates;
|
package/package.json
CHANGED