@createiq/backend 1.0.27 → 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.
- package/client/sdk.gen.ts +5 -1
- package/client/types.gen.ts +8 -2
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -4
- package/dist/index.d.ts +9 -4
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/client/sdk.gen.ts
CHANGED
|
@@ -3165,7 +3165,11 @@ export const clonePreset = <ThrowOnError extends boolean = false>(options: Optio
|
|
|
3165
3165
|
}
|
|
3166
3166
|
],
|
|
3167
3167
|
url: '/api/v1/presets/{presetId}/clone',
|
|
3168
|
-
...options
|
|
3168
|
+
...options,
|
|
3169
|
+
headers: {
|
|
3170
|
+
'Content-Type': 'application/json',
|
|
3171
|
+
...options?.headers
|
|
3172
|
+
}
|
|
3169
3173
|
});
|
|
3170
3174
|
};
|
|
3171
3175
|
|
package/client/types.gen.ts
CHANGED
|
@@ -3668,6 +3668,12 @@ export type DocumentListAvailableActionsDto = {
|
|
|
3668
3668
|
canInviteNoPreset: boolean;
|
|
3669
3669
|
};
|
|
3670
3670
|
|
|
3671
|
+
export type ClonePresetDto = {
|
|
3672
|
+
newName?: string;
|
|
3673
|
+
newDescription?: string;
|
|
3674
|
+
withApprovers?: boolean;
|
|
3675
|
+
};
|
|
3676
|
+
|
|
3671
3677
|
export type UserNegotiationStatisticsDto = {
|
|
3672
3678
|
lastName: string;
|
|
3673
3679
|
firstName: string;
|
|
@@ -8507,7 +8513,7 @@ export type CreatePresetAuditTrailXlsx_Responses = {
|
|
|
8507
8513
|
export type CreatePresetAuditTrailXlsx_Response = CreatePresetAuditTrailXlsx_Responses[keyof CreatePresetAuditTrailXlsx_Responses];
|
|
8508
8514
|
|
|
8509
8515
|
export type ClonePreset_Data = {
|
|
8510
|
-
body?:
|
|
8516
|
+
body?: RejectPresetDto;
|
|
8511
8517
|
path: {
|
|
8512
8518
|
presetId: string;
|
|
8513
8519
|
};
|
|
@@ -8531,7 +8537,7 @@ export type ClonePreset_Responses = {
|
|
|
8531
8537
|
/**
|
|
8532
8538
|
* The new, cloned preset
|
|
8533
8539
|
*/
|
|
8534
|
-
200:
|
|
8540
|
+
200: ClonePresetDto;
|
|
8535
8541
|
};
|
|
8536
8542
|
|
|
8537
8543
|
export type ClonePreset_Response = ClonePreset_Responses[keyof ClonePreset_Responses];
|
package/dist/index.cjs
CHANGED
|
@@ -2594,7 +2594,11 @@ var clonePreset = (options) => {
|
|
|
2594
2594
|
}
|
|
2595
2595
|
],
|
|
2596
2596
|
url: "/api/v1/presets/{presetId}/clone",
|
|
2597
|
-
...options
|
|
2597
|
+
...options,
|
|
2598
|
+
headers: {
|
|
2599
|
+
"Content-Type": "application/json",
|
|
2600
|
+
...options?.headers
|
|
2601
|
+
}
|
|
2598
2602
|
});
|
|
2599
2603
|
};
|
|
2600
2604
|
var obtainConsent = (options) => {
|