conductor-node 7.3.2 → 7.3.3
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
|
@@ -87,7 +87,7 @@ export type GraphqlIntegrationConnectionFragment = {
|
|
|
87
87
|
id: string;
|
|
88
88
|
integrationKey: string;
|
|
89
89
|
endUserEmail: string;
|
|
90
|
-
|
|
90
|
+
endUserCompanyName: string;
|
|
91
91
|
lastHeartbeatAt: Date | null;
|
|
92
92
|
};
|
|
93
93
|
export type GraphqlGetIntegrationConnectionQueryVariables = Exact<{
|
|
@@ -98,7 +98,7 @@ export type GraphqlGetIntegrationConnectionQuery = {
|
|
|
98
98
|
id: string;
|
|
99
99
|
integrationKey: string;
|
|
100
100
|
endUserEmail: string;
|
|
101
|
-
|
|
101
|
+
endUserCompanyName: string;
|
|
102
102
|
lastHeartbeatAt: Date | null;
|
|
103
103
|
};
|
|
104
104
|
};
|
|
@@ -110,7 +110,7 @@ export type GraphqlGetIntegrationConnectionsQuery = {
|
|
|
110
110
|
id: string;
|
|
111
111
|
integrationKey: string;
|
|
112
112
|
endUserEmail: string;
|
|
113
|
-
|
|
113
|
+
endUserCompanyName: string;
|
|
114
114
|
lastHeartbeatAt: Date | null;
|
|
115
115
|
}>;
|
|
116
116
|
};
|
|
@@ -125,7 +125,7 @@ export type GraphqlCreateIntegrationConnectionMutation = {
|
|
|
125
125
|
id: string;
|
|
126
126
|
integrationKey: string;
|
|
127
127
|
endUserEmail: string;
|
|
128
|
-
|
|
128
|
+
endUserCompanyName: string;
|
|
129
129
|
lastHeartbeatAt: Date | null;
|
|
130
130
|
};
|
|
131
131
|
};
|
|
@@ -157,7 +157,7 @@ export type GraphqlIntegrationRequestQueryVariables = Exact<{
|
|
|
157
157
|
export type GraphqlIntegrationRequestQuery = {
|
|
158
158
|
integrationRequest: object;
|
|
159
159
|
};
|
|
160
|
-
export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserEmail\n
|
|
160
|
+
export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserEmail\n endUserCompanyName\n lastHeartbeatAt\n}\n ";
|
|
161
161
|
export declare const GetIntegrationConnectionDocument: string;
|
|
162
162
|
export declare const GetIntegrationConnectionsDocument: string;
|
|
163
163
|
export declare const CreateIntegrationConnectionDocument: string;
|
package/package.json
CHANGED