@platelet-app/types 1.0.6 → 1.0.8
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/API.d.ts +485 -393
- package/dist/API.js +9 -9
- package/dist/graphql/mutations.d.ts +53 -47
- package/dist/graphql/mutations.js +2907 -2959
- package/dist/graphql/queries.d.ts +53 -47
- package/dist/graphql/queries.js +1684 -1735
- package/dist/graphql/subscriptions.d.ts +45 -39
- package/dist/graphql/subscriptions.js +2357 -2396
- package/dist/index.js +7 -17
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -15,23 +15,13 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) ||
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
35
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
26
|
exports.subscriptions = exports.queries = exports.mutations = exports.models = exports.API = void 0;
|
|
37
27
|
exports.API = __importStar(require("./API"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platelet-app/types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Types for the platelet.app project",
|
|
5
5
|
"homepage": "https://github.com/platelet-app/platelet#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsc"
|
|
22
|
+
"build": "amplify api gql-compile && amplify codegen && amplify codegen models && cp -r src/models src/API.ts src/graphql . && tsc",
|
|
23
|
+
"prepublishOnly": "npm run build && npm version patch"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
26
|
"esm": "^3.2.25"
|