@connectedxm/admin 3.3.7 → 3.3.8
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -33240,7 +33240,7 @@ var UpdateEventSpeakerTranslation = async ({
|
|
|
33240
33240
|
}) => {
|
|
33241
33241
|
const connectedXM = await GetAdminAPI(adminApiParams);
|
|
33242
33242
|
const { data } = await connectedXM.put(
|
|
33243
|
-
`/events/${eventId}/
|
|
33243
|
+
`/events/${eventId}/speakers/${speakerId}/translations/${locale}`,
|
|
33244
33244
|
speakerTranslation
|
|
33245
33245
|
);
|
|
33246
33246
|
if (queryClient && data.status === "ok") {
|
package/dist/index.js
CHANGED
|
@@ -30121,7 +30121,7 @@ var UpdateEventSpeakerTranslation = async ({
|
|
|
30121
30121
|
}) => {
|
|
30122
30122
|
const connectedXM = await GetAdminAPI(adminApiParams);
|
|
30123
30123
|
const { data } = await connectedXM.put(
|
|
30124
|
-
`/events/${eventId}/
|
|
30124
|
+
`/events/${eventId}/speakers/${speakerId}/translations/${locale}`,
|
|
30125
30125
|
speakerTranslation
|
|
30126
30126
|
);
|
|
30127
30127
|
if (queryClient && data.status === "ok") {
|