@chift/chift-nodejs 1.0.26 → 1.0.28

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.
@@ -56,6 +56,10 @@ const Consumer = (internalApi, body) => {
56
56
  const { data, } = yield _internalApi.delete(`/consumers/${consumerId}/connections/${connectionId}`);
57
57
  return data;
58
58
  });
59
+ const getTransactionByClientRequestId = (connectionId, params) => __awaiter(void 0, void 0, void 0, function* () {
60
+ const { data, } = yield _internalApi.get(`/consumers/${consumerId}/connections/${connectionId}/transactions`, { params });
61
+ return data;
62
+ });
59
63
  const getSyncUrl = (body) => __awaiter(void 0, void 0, void 0, function* () {
60
64
  const { data } = yield _internalApi.post(`/consumers/${consumerId}/syncs`, body);
61
65
  return data;
@@ -125,6 +129,7 @@ const Consumer = (internalApi, body) => {
125
129
  createConnection,
126
130
  updateConnection,
127
131
  deleteConnection,
132
+ getTransactionByClientRequestId,
128
133
  enableFlow,
129
134
  getSyncUrl,
130
135
  name,