@createiq/backend 1.0.46 → 1.0.47

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 CHANGED
@@ -4143,7 +4143,11 @@ export const renameExecutionAttachment = <ThrowOnError extends boolean = false>(
4143
4143
  }
4144
4144
  ],
4145
4145
  url: '/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment/{oldFileName}',
4146
- ...options
4146
+ ...options,
4147
+ headers: {
4148
+ 'Content-Type': 'application/json',
4149
+ ...options?.headers
4150
+ }
4147
4151
  });
4148
4152
  };
4149
4153
 
@@ -3559,6 +3559,10 @@ export type AdvisorAccountRelationshipsDto = {
3559
3559
  availableActions: ContextAvailableActionsDto;
3560
3560
  };
3561
3561
 
3562
+ export type RenameExecutionAttachmentDto = {
3563
+ newFileName: string;
3564
+ };
3565
+
3562
3566
  export type PresetHealth = 'ok' | 'blocked';
3563
3567
 
3564
3568
  export type AdvisorRequestSummaryDto = {
@@ -10019,7 +10023,7 @@ export type AcceptAllPositionsFromPreviousVersion_Responses = {
10019
10023
  export type AcceptAllPositionsFromPreviousVersion_Response = AcceptAllPositionsFromPreviousVersion_Responses[keyof AcceptAllPositionsFromPreviousVersion_Responses];
10020
10024
 
10021
10025
  export type RenameExecutionAttachment_Data = {
10022
- body?: never;
10026
+ body: RenameExecutionAttachmentDto;
10023
10027
  path: {
10024
10028
  subAccountId: string;
10025
10029
  negotiationId: string;
package/dist/index.cjs CHANGED
@@ -3311,7 +3311,11 @@ var renameExecutionAttachment = (options) => {
3311
3311
  }
3312
3312
  ],
3313
3313
  url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/executionAttachment/{oldFileName}",
3314
- ...options
3314
+ ...options,
3315
+ headers: {
3316
+ "Content-Type": "application/json",
3317
+ ...options?.headers
3318
+ }
3315
3319
  });
3316
3320
  };
3317
3321
  var getNestedAnswers = (options) => {