@createiq/backend 1.0.33 → 1.0.34
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/client/sdk.gen.ts +18 -1
- package/client/types.gen.ts +26 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -1
- package/dist/index.d.ts +28 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/dist/index.js
CHANGED
|
@@ -3107,6 +3107,18 @@ var generateActiveNegotiationsReportAsExcel = (options) => {
|
|
|
3107
3107
|
}
|
|
3108
3108
|
});
|
|
3109
3109
|
};
|
|
3110
|
+
var phase1Answers = (options) => {
|
|
3111
|
+
return (options.client ?? client).get({
|
|
3112
|
+
security: [
|
|
3113
|
+
{
|
|
3114
|
+
name: "Authorization",
|
|
3115
|
+
type: "apiKey"
|
|
3116
|
+
}
|
|
3117
|
+
],
|
|
3118
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/phaseOneAnswers",
|
|
3119
|
+
...options
|
|
3120
|
+
});
|
|
3121
|
+
};
|
|
3110
3122
|
var setCounterparties = (options) => {
|
|
3111
3123
|
return (options.client ?? client).put({
|
|
3112
3124
|
security: [
|
|
@@ -3867,6 +3879,7 @@ export {
|
|
|
3867
3879
|
overrideElectionRejection,
|
|
3868
3880
|
overrideRejectFinalDocument,
|
|
3869
3881
|
patchEmailPreferences,
|
|
3882
|
+
phase1Answers,
|
|
3870
3883
|
presetEditAnswers,
|
|
3871
3884
|
presetGetDocumentSchema,
|
|
3872
3885
|
presetGetMultipleNestedAnswers,
|