@createiq/backend 1.0.24 → 1.0.26
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 +112 -2
- package/client/types.gen.ts +194 -19
- package/dist/index.cjs +92 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +198 -20
- package/dist/index.d.ts +198 -20
- package/dist/index.js +86 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/dist/index.js
CHANGED
|
@@ -276,6 +276,18 @@ var presetSetMultipleNestedAnswers = (options) => {
|
|
|
276
276
|
}
|
|
277
277
|
});
|
|
278
278
|
};
|
|
279
|
+
var approve = (options) => {
|
|
280
|
+
return (options.client ?? client).put({
|
|
281
|
+
security: [
|
|
282
|
+
{
|
|
283
|
+
name: "Authorization",
|
|
284
|
+
type: "apiKey"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
url: "/api/v1/presets/{presetId}/approvals/approve",
|
|
288
|
+
...options
|
|
289
|
+
});
|
|
290
|
+
};
|
|
279
291
|
var overrideApproveFinalDocument = (options) => {
|
|
280
292
|
return (options.client ?? client).put({
|
|
281
293
|
security: [
|
|
@@ -648,6 +660,22 @@ var listEntities = (options) => {
|
|
|
648
660
|
...options
|
|
649
661
|
});
|
|
650
662
|
};
|
|
663
|
+
var shareSubAccount = (options) => {
|
|
664
|
+
return (options.client ?? client).post({
|
|
665
|
+
security: [
|
|
666
|
+
{
|
|
667
|
+
name: "Authorization",
|
|
668
|
+
type: "apiKey"
|
|
669
|
+
}
|
|
670
|
+
],
|
|
671
|
+
url: "/api/v1/subAccounts/{subAccountId}/share",
|
|
672
|
+
...options,
|
|
673
|
+
headers: {
|
|
674
|
+
"Content-Type": "application/json",
|
|
675
|
+
...options?.headers
|
|
676
|
+
}
|
|
677
|
+
});
|
|
678
|
+
};
|
|
651
679
|
var assignEntity = (options) => {
|
|
652
680
|
return (options.client ?? client).put({
|
|
653
681
|
security: [
|
|
@@ -2674,6 +2702,18 @@ var scheduleExtraction = (options) => {
|
|
|
2674
2702
|
...options
|
|
2675
2703
|
});
|
|
2676
2704
|
};
|
|
2705
|
+
var approveAccessRequest = (options) => {
|
|
2706
|
+
return (options.client ?? client).put({
|
|
2707
|
+
security: [
|
|
2708
|
+
{
|
|
2709
|
+
name: "Authorization",
|
|
2710
|
+
type: "apiKey"
|
|
2711
|
+
}
|
|
2712
|
+
],
|
|
2713
|
+
url: "/api/v1/subAccounts/{subAccountId}/accessRequest/{accessRequestId}/approve",
|
|
2714
|
+
...options
|
|
2715
|
+
});
|
|
2716
|
+
};
|
|
2677
2717
|
var negotiationsFilter = (options) => {
|
|
2678
2718
|
return (options.client ?? client).get({
|
|
2679
2719
|
security: [
|
|
@@ -2802,6 +2842,34 @@ var updateSubAccount = (options) => {
|
|
|
2802
2842
|
}
|
|
2803
2843
|
});
|
|
2804
2844
|
};
|
|
2845
|
+
var presetRequestApproval = (options) => {
|
|
2846
|
+
return (options.client ?? client).put({
|
|
2847
|
+
security: [
|
|
2848
|
+
{
|
|
2849
|
+
name: "Authorization",
|
|
2850
|
+
type: "apiKey"
|
|
2851
|
+
}
|
|
2852
|
+
],
|
|
2853
|
+
url: "/api/v1/presets/{presetId}/approvals/requestApproval",
|
|
2854
|
+
...options
|
|
2855
|
+
});
|
|
2856
|
+
};
|
|
2857
|
+
var rejectPresetApproval = (options) => {
|
|
2858
|
+
return (options.client ?? client).put({
|
|
2859
|
+
security: [
|
|
2860
|
+
{
|
|
2861
|
+
name: "Authorization",
|
|
2862
|
+
type: "apiKey"
|
|
2863
|
+
}
|
|
2864
|
+
],
|
|
2865
|
+
url: "/api/v1/presets/{presetId}/approvals/reject",
|
|
2866
|
+
...options,
|
|
2867
|
+
headers: {
|
|
2868
|
+
"Content-Type": "application/json",
|
|
2869
|
+
...options?.headers
|
|
2870
|
+
}
|
|
2871
|
+
});
|
|
2872
|
+
};
|
|
2805
2873
|
var setOwnerEntity = (options) => {
|
|
2806
2874
|
return (options.client ?? client).put({
|
|
2807
2875
|
security: [
|
|
@@ -3395,6 +3463,18 @@ var sendElectionApprovalReminder = (options) => {
|
|
|
3395
3463
|
...options
|
|
3396
3464
|
});
|
|
3397
3465
|
};
|
|
3466
|
+
var rejectAccessRequest = (options) => {
|
|
3467
|
+
return (options.client ?? client).put({
|
|
3468
|
+
security: [
|
|
3469
|
+
{
|
|
3470
|
+
name: "Authorization",
|
|
3471
|
+
type: "apiKey"
|
|
3472
|
+
}
|
|
3473
|
+
],
|
|
3474
|
+
url: "/api/v1/subAccounts/{subAccountId}/accessRequest/{accessRequestId}/reject",
|
|
3475
|
+
...options
|
|
3476
|
+
});
|
|
3477
|
+
};
|
|
3398
3478
|
var getExecutedNegotiationSummary = (options) => {
|
|
3399
3479
|
return (options.client ?? client).get({
|
|
3400
3480
|
security: [
|
|
@@ -3590,6 +3670,8 @@ export {
|
|
|
3590
3670
|
addElectionRejection,
|
|
3591
3671
|
addWatchers,
|
|
3592
3672
|
applyExtractedAnswers,
|
|
3673
|
+
approve,
|
|
3674
|
+
approveAccessRequest,
|
|
3593
3675
|
approveFinalDocument,
|
|
3594
3676
|
assignEntity,
|
|
3595
3677
|
assignToMe,
|
|
@@ -3773,6 +3855,7 @@ export {
|
|
|
3773
3855
|
presetGetMultipleNestedAnswers,
|
|
3774
3856
|
presetGetNestedAnswers,
|
|
3775
3857
|
presetRenderTemplate,
|
|
3858
|
+
presetRequestApproval,
|
|
3776
3859
|
presetSendForApproval,
|
|
3777
3860
|
presetSetElectionApproval,
|
|
3778
3861
|
presetSetFinalApproval,
|
|
@@ -3781,7 +3864,9 @@ export {
|
|
|
3781
3864
|
presetSwapParties,
|
|
3782
3865
|
publisherSummaries,
|
|
3783
3866
|
queueGenerateNegotiationDocumentJob,
|
|
3867
|
+
rejectAccessRequest,
|
|
3784
3868
|
rejectFinalDocument,
|
|
3869
|
+
rejectPresetApproval,
|
|
3785
3870
|
removeWatchers,
|
|
3786
3871
|
renameExecutionAttachment,
|
|
3787
3872
|
resetUserAnswers,
|
|
@@ -3819,6 +3904,7 @@ export {
|
|
|
3819
3904
|
setSignedExecutedVersion,
|
|
3820
3905
|
setSignedSignaturePageForParty,
|
|
3821
3906
|
shareNegotiation,
|
|
3907
|
+
shareSubAccount,
|
|
3822
3908
|
suggestGroupName,
|
|
3823
3909
|
swapParties,
|
|
3824
3910
|
syncNewApprover,
|