@b-jones-rfd/qualtrics-api-tasks 0.3.2 → 0.3.3
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/CHANGELOG.md +6 -0
- package/dist/index.js +2 -4
- package/dist/index.mjs +2 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -501,10 +501,8 @@ var startResponseExport = (connectionOptions) => async ({
|
|
|
501
501
|
try {
|
|
502
502
|
const headers = getAuthHeaders(connectionOptions.apiToken, bearerToken);
|
|
503
503
|
const body = JSON.stringify({
|
|
504
|
-
startDate:
|
|
505
|
-
|
|
506
|
-
endDate: "2024-03-05T06:00:00Z",
|
|
507
|
-
//endDate.toISOString(),
|
|
504
|
+
startDate: startDate.toISOString(),
|
|
505
|
+
endDate: endDate.toISOString(),
|
|
508
506
|
format,
|
|
509
507
|
...rest
|
|
510
508
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -458,10 +458,8 @@ var startResponseExport = (connectionOptions) => async ({
|
|
|
458
458
|
try {
|
|
459
459
|
const headers = getAuthHeaders(connectionOptions.apiToken, bearerToken);
|
|
460
460
|
const body = JSON.stringify({
|
|
461
|
-
startDate:
|
|
462
|
-
|
|
463
|
-
endDate: "2024-03-05T06:00:00Z",
|
|
464
|
-
//endDate.toISOString(),
|
|
461
|
+
startDate: startDate.toISOString(),
|
|
462
|
+
endDate: endDate.toISOString(),
|
|
465
463
|
format,
|
|
466
464
|
...rest
|
|
467
465
|
});
|