@ttoss/appsync-api 0.15.1 → 0.15.4
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/esm/index.js +9 -3
- package/dist/index.js +9 -3
- package/package.json +15 -9
package/dist/esm/index.js
CHANGED
|
@@ -80,11 +80,16 @@ var getPackageLambdaLayerStackName = packageName => {
|
|
|
80
80
|
// package.json
|
|
81
81
|
var package_default = {
|
|
82
82
|
name: "@ttoss/appsync-api",
|
|
83
|
-
version: "0.15.
|
|
83
|
+
version: "0.15.4",
|
|
84
84
|
description: "A library for building GraphQL APIs for AWS AppSync.",
|
|
85
85
|
license: "UNLICENSED",
|
|
86
86
|
author: "ttoss",
|
|
87
87
|
contributors: ["Pedro Arantes <pedro@arantespp.com> (https://arantespp.com)"],
|
|
88
|
+
repository: {
|
|
89
|
+
type: "git",
|
|
90
|
+
url: "https://github.com/ttoss/ttoss.git",
|
|
91
|
+
directory: "packages/appsync-api"
|
|
92
|
+
},
|
|
88
93
|
main: "dist/index.js",
|
|
89
94
|
module: "dist/esm/index.js",
|
|
90
95
|
files: ["dist", "src"],
|
|
@@ -110,11 +115,12 @@ var package_default = {
|
|
|
110
115
|
graphql: "^16.6.0",
|
|
111
116
|
"graphql-shield": "^7.6.5",
|
|
112
117
|
jest: "^29.5.0",
|
|
113
|
-
tsup: "^
|
|
118
|
+
tsup: "^7.0.0"
|
|
114
119
|
},
|
|
115
120
|
keywords: ["api", "appsync", "aws", "graphql"],
|
|
116
121
|
publishConfig: {
|
|
117
|
-
access: "public"
|
|
122
|
+
access: "public",
|
|
123
|
+
provenance: true
|
|
118
124
|
}
|
|
119
125
|
};
|
|
120
126
|
|
package/dist/index.js
CHANGED
|
@@ -112,11 +112,16 @@ var getPackageLambdaLayerStackName = packageName => {
|
|
|
112
112
|
// package.json
|
|
113
113
|
var package_default = {
|
|
114
114
|
name: "@ttoss/appsync-api",
|
|
115
|
-
version: "0.15.
|
|
115
|
+
version: "0.15.4",
|
|
116
116
|
description: "A library for building GraphQL APIs for AWS AppSync.",
|
|
117
117
|
license: "UNLICENSED",
|
|
118
118
|
author: "ttoss",
|
|
119
119
|
contributors: ["Pedro Arantes <pedro@arantespp.com> (https://arantespp.com)"],
|
|
120
|
+
repository: {
|
|
121
|
+
type: "git",
|
|
122
|
+
url: "https://github.com/ttoss/ttoss.git",
|
|
123
|
+
directory: "packages/appsync-api"
|
|
124
|
+
},
|
|
120
125
|
main: "dist/index.js",
|
|
121
126
|
module: "dist/esm/index.js",
|
|
122
127
|
files: ["dist", "src"],
|
|
@@ -142,11 +147,12 @@ var package_default = {
|
|
|
142
147
|
graphql: "^16.6.0",
|
|
143
148
|
"graphql-shield": "^7.6.5",
|
|
144
149
|
jest: "^29.5.0",
|
|
145
|
-
tsup: "^
|
|
150
|
+
tsup: "^7.0.0"
|
|
146
151
|
},
|
|
147
152
|
keywords: ["api", "appsync", "aws", "graphql"],
|
|
148
153
|
publishConfig: {
|
|
149
|
-
access: "public"
|
|
154
|
+
access: "public",
|
|
155
|
+
provenance: true
|
|
150
156
|
}
|
|
151
157
|
};
|
|
152
158
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/appsync-api",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.4",
|
|
4
4
|
"description": "A library for building GraphQL APIs for AWS AppSync.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "ttoss",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Pedro Arantes <pedro@arantespp.com> (https://arantespp.com)"
|
|
9
9
|
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/ttoss/ttoss.git",
|
|
13
|
+
"directory": "packages/appsync-api"
|
|
14
|
+
},
|
|
10
15
|
"main": "dist/index.js",
|
|
11
16
|
"module": "dist/esm/index.js",
|
|
12
17
|
"files": [
|
|
@@ -16,22 +21,22 @@
|
|
|
16
21
|
"sideEffects": false,
|
|
17
22
|
"typings": "dist/index.d.ts",
|
|
18
23
|
"dependencies": {
|
|
19
|
-
"@ttoss/cloudformation": "^0.7.
|
|
24
|
+
"@ttoss/cloudformation": "^0.7.6"
|
|
20
25
|
},
|
|
21
26
|
"peerDependencies": {
|
|
22
27
|
"graphql": "^16.6.0",
|
|
23
|
-
"@ttoss/graphql-api": "^0.3.
|
|
28
|
+
"@ttoss/graphql-api": "^0.3.4"
|
|
24
29
|
},
|
|
25
30
|
"devDependencies": {
|
|
26
31
|
"@types/aws-lambda": "^8.10.115",
|
|
27
32
|
"graphql": "^16.6.0",
|
|
28
33
|
"graphql-shield": "^7.6.5",
|
|
29
34
|
"jest": "^29.5.0",
|
|
30
|
-
"tsup": "^
|
|
31
|
-
"@ttoss/config": "^1.30.
|
|
32
|
-
"@ttoss/graphql-api": "^0.3.
|
|
33
|
-
"@ttoss/relay-amplify": "^0.4.
|
|
34
|
-
"carlin": "^1.29.
|
|
35
|
+
"tsup": "^7.0.0",
|
|
36
|
+
"@ttoss/config": "^1.30.4",
|
|
37
|
+
"@ttoss/graphql-api": "^0.3.4",
|
|
38
|
+
"@ttoss/relay-amplify": "^0.4.12",
|
|
39
|
+
"carlin": "^1.29.5"
|
|
35
40
|
},
|
|
36
41
|
"keywords": [
|
|
37
42
|
"api",
|
|
@@ -40,7 +45,8 @@
|
|
|
40
45
|
"graphql"
|
|
41
46
|
],
|
|
42
47
|
"publishConfig": {
|
|
43
|
-
"access": "public"
|
|
48
|
+
"access": "public",
|
|
49
|
+
"provenance": true
|
|
44
50
|
},
|
|
45
51
|
"scripts": {
|
|
46
52
|
"build": "tsup",
|