@adobe/acc-js-sdk 1.1.61 → 1.1.62
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/docs/changeLog.html +8 -0
- package/docs/connectionParameters.html +5 -0
- package/package-lock.json +3585 -2091
- package/package.json +1 -1
- package/src/client.js +15 -10
- package/test/client.test.js +34 -4
package/docs/changeLog.html
CHANGED
|
@@ -3,6 +3,14 @@ layout: page
|
|
|
3
3
|
title: Change Log
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
<section class="changelog"><h1>Version 1.1.62</h1>
|
|
7
|
+
<h2>2025/09/16</h2>
|
|
8
|
+
<li>
|
|
9
|
+
Add enableRequestId option to connection parameters to pass the x-request-id parameter. This was passed by default and causing the SDK to be incompatible with older campaign instances
|
|
10
|
+
</li>
|
|
11
|
+
</section>
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
<section class="changelog"><h1>Version 1.1.61</h1>
|
|
7
15
|
<h2>2025/09/16</h2>
|
|
8
16
|
<li>
|
|
@@ -114,6 +114,11 @@ const connectionParameters = sdk.ConnectionParameters.ofUserAndPassword(
|
|
|
114
114
|
<td>string</td>
|
|
115
115
|
<td>An optional value to override the instance key which is used for the caches of schemas, options, etc.</td>
|
|
116
116
|
</tr>
|
|
117
|
+
<tr>
|
|
118
|
+
<td>enableRequestIdHeader</td>
|
|
119
|
+
<td>boolean</td>
|
|
120
|
+
<td>Enable the request ID header for SOAP API calls</td>
|
|
121
|
+
</tr>
|
|
117
122
|
</tbody>
|
|
118
123
|
</table>
|
|
119
124
|
|