@quintype/framework 7.23.3-test-env.0 → 7.23.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.
@@ -8,6 +8,6 @@
8
8
  "files.insertFinalNewline": true,
9
9
  "files.trimTrailingWhitespace": true,
10
10
  "editor.codeActionsOnSave": {
11
- "source.organizeImports": "explicit"
11
+ "source.organizeImports": true
12
12
  }
13
13
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [7.23.3](https://github.com/quintype/quintype-node-framework/compare/v7.23.2...v7.23.3) (2024-02-14)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **bulk request:** POST bulk to a get ([#415](https://github.com/quintype/quintype-node-framework/issues/415)) ([93ada22](https://github.com/quintype/quintype-node-framework/commit/93ada2239266cb61775d40163d77e1858f25aebc))
11
+
5
12
  ### [7.23.2](https://github.com/quintype/quintype-node-framework/compare/v7.23.1...v7.23.2) (2024-02-07)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/framework",
3
- "version": "7.23.3-test-env.0",
3
+ "version": "7.23.3",
4
4
  "description": "Libraries to help build Quintype Node.js apps",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "@ampproject/toolbox-optimizer": "2.8.3",
34
34
  "@quintype/amp": "^2.17.13",
35
- "@quintype/backend": "^2.3.4",
35
+ "@quintype/backend": "^2.3.5",
36
36
  "@quintype/components": "^3.5.0",
37
37
  "@quintype/prerender-node": "^3.2.26",
38
38
  "@quintype/seo": "^1.43.0-config-amp-story-path.1",
@@ -11,7 +11,6 @@ exports.addCacheHeadersToResult = function addCacheHeadersToResult({
11
11
  sMaxAge = "900",
12
12
  networkOnly = false,
13
13
  }) {
14
- console.log('test')
15
14
  let cdnProviderVal = null;
16
15
  cdnProviderVal =
17
16
  typeof cdnProvider === "function" && Object.keys(config).length > 0 ? cdnProvider(config) : cdnProvider;