@createiq/backend 1.0.42 → 1.0.43

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/index.js CHANGED
@@ -1685,6 +1685,18 @@ var approveFinalDocument = (options) => {
1685
1685
  }
1686
1686
  });
1687
1687
  };
1688
+ var negotiationRenderCounterpartyTemplate = (options) => {
1689
+ return (options.client ?? client).get({
1690
+ security: [
1691
+ {
1692
+ name: "Authorization",
1693
+ type: "apiKey"
1694
+ }
1695
+ ],
1696
+ url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/counterpartyPreview",
1697
+ ...options
1698
+ });
1699
+ };
1688
1700
  var resetUserAnswers = (options) => {
1689
1701
  return (options.client ?? client).post({
1690
1702
  security: [
@@ -3869,6 +3881,7 @@ export {
3869
3881
  moveEntity,
3870
3882
  negotiationForkHistory,
3871
3883
  negotiationGetDocumentSchema,
3884
+ negotiationRenderCounterpartyTemplate,
3872
3885
  negotiationRenderTemplate,
3873
3886
  negotiationSendForApproval,
3874
3887
  negotiationsFilter,