next-tinacms-dos 0.0.0-20231018200355 → 0.0.0-20231019134209
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/LICENSE +1 -9
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
package/LICENSE
CHANGED
|
@@ -1,12 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Portions of the TinaCMS software are licensed as follows:
|
|
4
|
-
|
|
5
|
-
* All software that resides under the "packages/@tinacms/datalayer/" and the "packages/@tinacms/graphql/" directories (the "Tina Data Layer"), is licensed under the license defined in "packages/@tinacms/datalayer/LICENSE".
|
|
6
|
-
|
|
7
|
-
* All software outside of the above-mentioned directories is available under the "Apache 2.0" license as set forth below.
|
|
8
|
-
|
|
9
|
-
Apache License
|
|
1
|
+
Apache License
|
|
10
2
|
Version 2.0, January 2004
|
|
11
3
|
http://www.apache.org/licenses/
|
|
12
4
|
|
package/dist/index.js
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
try {
|
|
120
120
|
const url = input.toString();
|
|
121
121
|
const query = `${url.includes("?") ? "&" : "?"}clientID=${client.clientId}`;
|
|
122
|
-
const res = client.
|
|
122
|
+
const res = client.fetchWithToken(url + query, init);
|
|
123
123
|
return res;
|
|
124
124
|
} catch (error) {
|
|
125
125
|
console.error(error);
|
package/dist/index.mjs
CHANGED
|
@@ -116,7 +116,7 @@ class TinaCloudDOSMediaStore extends DOSMediaStore {
|
|
|
116
116
|
try {
|
|
117
117
|
const url = input.toString();
|
|
118
118
|
const query = `${url.includes("?") ? "&" : "?"}clientID=${client.clientId}`;
|
|
119
|
-
const res = client.
|
|
119
|
+
const res = client.fetchWithToken(url + query, init);
|
|
120
120
|
return res;
|
|
121
121
|
} catch (error) {
|
|
122
122
|
console.error(error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-tinacms-dos",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-20231019134209",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"multer": "1.4.5-lts.1"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"tinacms": "0.0.0-
|
|
25
|
+
"tinacms": "0.0.0-20231019134209"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/crypto-js": "^3.1.47",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"react": "17.0.2",
|
|
33
33
|
"react-dom": "17.0.2",
|
|
34
34
|
"typescript": "4.3.5",
|
|
35
|
-
"@tinacms/scripts": "
|
|
36
|
-
"tinacms": "0.0.0-
|
|
35
|
+
"@tinacms/scripts": "1.1.2",
|
|
36
|
+
"tinacms": "0.0.0-20231019134209"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"registry": "https://registry.npmjs.org"
|