randmar-api-client 1.328.0 → 1.329.0
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.
|
@@ -746,6 +746,8 @@ export type PutV4PartnerByApplicationIdAttachmentAndAttachmentUuidApiArg = {
|
|
|
746
746
|
applicationId: string;
|
|
747
747
|
/** The current attachment UUID to replace. */
|
|
748
748
|
attachmentUuid: string;
|
|
749
|
+
/** The replacement text content as a JSON string. */
|
|
750
|
+
body: string;
|
|
749
751
|
};
|
|
750
752
|
export type DeleteV4PartnerByApplicationIdAttachmentAndAttachmentUuidApiResponse = unknown;
|
|
751
753
|
export type DeleteV4PartnerByApplicationIdAttachmentAndAttachmentUuidApiArg = {
|
package/dist/store/randmarApi.js
CHANGED
|
@@ -339,6 +339,7 @@ const injectedRtkApi = api.injectEndpoints({
|
|
|
339
339
|
query: (queryArg) => ({
|
|
340
340
|
url: `/V4/Partner/${queryArg.applicationId}/Attachment/${queryArg.attachmentUuid}`,
|
|
341
341
|
method: "PUT",
|
|
342
|
+
body: queryArg.body,
|
|
342
343
|
}),
|
|
343
344
|
}),
|
|
344
345
|
deleteV4PartnerByApplicationIdAttachmentAndAttachmentUuid: build.mutation({
|