@makeswift/runtime 0.2.21 → 0.2.22
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/dist/graphql.cjs.js +5 -1
- package/dist/graphql.cjs.js.map +1 -1
- package/dist/graphql.es.js +5 -1
- package/dist/graphql.es.js.map +1 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/types/src/api/generated/graphql.d.ts +1 -1
- package/dist/types/src/api/generated/graphql.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -125,7 +125,7 @@ const FILE_BY_ID = gql`
|
|
|
125
125
|
file(id: $id) {
|
|
126
126
|
id
|
|
127
127
|
name
|
|
128
|
-
publicUrl
|
|
128
|
+
publicUrl: publicUrlV2
|
|
129
129
|
extension
|
|
130
130
|
dimensions {
|
|
131
131
|
width
|
|
@@ -139,7 +139,7 @@ const FILES_BY_ID = gql`
|
|
|
139
139
|
files(ids: $ids) {
|
|
140
140
|
id
|
|
141
141
|
name
|
|
142
|
-
publicUrl
|
|
142
|
+
publicUrl: publicUrlV2
|
|
143
143
|
extension
|
|
144
144
|
dimensions {
|
|
145
145
|
width
|
|
@@ -243,7 +243,7 @@ const INTROSPECTION_QUERY = gql`
|
|
|
243
243
|
files(ids: $fileIds) {
|
|
244
244
|
id
|
|
245
245
|
name
|
|
246
|
-
|
|
246
|
+
publicUrlV2
|
|
247
247
|
extension
|
|
248
248
|
dimensions {
|
|
249
249
|
width
|
|
@@ -978,7 +978,7 @@ class Document$1 extends NextDocument {
|
|
|
978
978
|
});
|
|
979
979
|
}
|
|
980
980
|
}
|
|
981
|
-
const version = "0.2.
|
|
981
|
+
const version = "0.2.22";
|
|
982
982
|
function isErrorWithMessage(error) {
|
|
983
983
|
return typeof error === "object" && error !== null && "message" in error && typeof error.message === "string";
|
|
984
984
|
}
|