nylas 7.7.0 → 7.7.1
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/lib/cjs/apiClient.js +1 -3
- package/lib/cjs/version.js +1 -1
- package/lib/esm/apiClient.js +1 -3
- package/lib/esm/version.js +1 -1
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/lib/cjs/apiClient.js
CHANGED
|
@@ -34,9 +34,7 @@ class APIClient {
|
|
|
34
34
|
url.searchParams.set('metadata_pair', metadataPair.join(','));
|
|
35
35
|
}
|
|
36
36
|
else if (Array.isArray(value)) {
|
|
37
|
-
|
|
38
|
-
url.searchParams.append(snakeCaseKey, item);
|
|
39
|
-
}
|
|
37
|
+
url.searchParams.append(snakeCaseKey, value.join(','));
|
|
40
38
|
}
|
|
41
39
|
else if (typeof value === 'object') {
|
|
42
40
|
for (const item in value) {
|
package/lib/cjs/version.js
CHANGED
package/lib/esm/apiClient.js
CHANGED
|
@@ -32,9 +32,7 @@ export default class APIClient {
|
|
|
32
32
|
url.searchParams.set('metadata_pair', metadataPair.join(','));
|
|
33
33
|
}
|
|
34
34
|
else if (Array.isArray(value)) {
|
|
35
|
-
|
|
36
|
-
url.searchParams.append(snakeCaseKey, item);
|
|
37
|
-
}
|
|
35
|
+
url.searchParams.append(snakeCaseKey, value.join(','));
|
|
38
36
|
}
|
|
39
37
|
else if (typeof value === 'object') {
|
|
40
38
|
for (const item in value) {
|
package/lib/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// This file is generated by scripts/exportVersion.js
|
|
2
|
-
export const SDK_VERSION = '7.7.
|
|
2
|
+
export const SDK_VERSION = '7.7.1';
|
package/lib/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "7.7.
|
|
1
|
+
export declare const SDK_VERSION = "7.7.1";
|