zapier-platform-core 18.0.1 → 18.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zapier-platform-core",
3
- "version": "18.0.1",
3
+ "version": "18.0.5",
4
4
  "description": "The core SDK for CLI apps in the Zapier Developer Platform.",
5
5
  "repository": "zapier/zapier-platform",
6
6
  "homepage": "https://platform.zapier.com/",
@@ -24,28 +24,6 @@
24
24
  "/src/",
25
25
  "/types/"
26
26
  ],
27
- "scripts": {
28
- "preversion": "git pull && yarn test",
29
- "version": "node bin/bump-dependencies.js && yarn && git add package.json yarn.lock",
30
- "postversion": "git push && git push --tags",
31
- "main-tests": "mocha -t 20s --recursive test --exit",
32
- "type-tests": "tsd --files types/**/*.test-d.ts",
33
- "solo-test": "test $(OPT_OUT_PATCH_TEST_ONLY=yes mocha --recursive test -g 'should be able to opt out of patch' -R json | jq '.stats.passes') -eq 1 && echo 'Ran 1 test and it passed!'",
34
- "test": "yarn main-tests && yarn solo-test && yarn type-tests",
35
- "test:debug": "mocha inspect -t 10s --recursive test",
36
- "debug": "mocha -t 10s --inspect-brk --recursive test",
37
- "test:w": "mocha -t 10s --recursive test --watch",
38
- "integration-test": "mocha -t 20s integration-test",
39
- "local-integration-test": "mocha -t 10s integration-test --local",
40
- "lambda-integration-test": "mocha -t 10s integration-test --lambda",
41
- "smoke-test": "mocha -t 2m smoke-test",
42
- "lint": "eslint src test",
43
- "lint:fix": "eslint --fix src test",
44
- "build-integration-test": "bin/build.sh local.bundle.zip",
45
- "upload-integration-test": "bin/upload-lambda.js local.bundle.zip",
46
- "deploy-integration-test": "yarn build-integration-test && yarn upload-integration-test",
47
- "validate": "yarn test && yarn smoke-test && yarn lint"
48
- },
49
27
  "engines": {
50
28
  "node": ">=16",
51
29
  "npm": ">=5.6.0"
@@ -63,7 +41,7 @@
63
41
  "node-fetch": "2.7.0",
64
42
  "oauth-sign": "0.9.0",
65
43
  "semver": "7.7.2",
66
- "zapier-platform-schema": "18.0.1"
44
+ "zapier-platform-schema": "18.0.5"
67
45
  },
68
46
  "devDependencies": {
69
47
  "@types/node-fetch": "^2.6.11",
@@ -77,5 +55,27 @@
77
55
  },
78
56
  "optionalDependencies": {
79
57
  "@types/node": "^20.3.1"
58
+ },
59
+ "scripts": {
60
+ "preversion": "git pull && pnpm test",
61
+ "version": "node bin/bump-dependencies.js && pnpm install && git add package.json pnpm-lock.yaml",
62
+ "postversion": "git push && git push --tags",
63
+ "main-tests": "mocha -t 20s --recursive test --exit",
64
+ "type-tests": "tsd --files types/**/*.test-d.ts",
65
+ "solo-test": "test $(OPT_OUT_PATCH_TEST_ONLY=yes mocha --recursive test -g 'should be able to opt out of patch' -R json | jq '.stats.passes') -eq 1 && echo 'Ran 1 test and it passed!'",
66
+ "test": "pnpm main-tests && pnpm solo-test && pnpm type-tests",
67
+ "test:debug": "mocha inspect -t 10s --recursive test",
68
+ "debug": "mocha -t 10s --inspect-brk --recursive test",
69
+ "test:w": "mocha -t 10s --recursive test --watch",
70
+ "integration-test": "mocha -t 20s integration-test",
71
+ "local-integration-test": "mocha -t 10s integration-test --local",
72
+ "lambda-integration-test": "mocha -t 10s integration-test --lambda",
73
+ "smoke-test": "mocha -t 2m smoke-test",
74
+ "lint": "eslint src test",
75
+ "lint:fix": "eslint --fix src test",
76
+ "build-integration-test": "bin/build.sh local.bundle.zip",
77
+ "upload-integration-test": "bin/upload-lambda.js local.bundle.zip",
78
+ "deploy-integration-test": "pnpm build-integration-test && pnpm upload-integration-test",
79
+ "validate": "pnpm test && pnpm smoke-test && pnpm lint"
80
80
  }
81
- }
81
+ }
@@ -4,7 +4,7 @@
4
4
  * files, and/or the schema-to-ts tool and run its CLI to regenerate
5
5
  * these typings.
6
6
  *
7
- * zapier-platform-schema version: 18.0.0
7
+ * zapier-platform-schema version: 18.0.5
8
8
  * schema-to-ts compiler version: 0.1.0
9
9
  */
10
10
  import type {
package/CHANGELOG.md DELETED
@@ -1 +0,0 @@
1
- See [CHANGELOG.md](https://github.com/zapier/zapier-platform/blob/main/CHANGELOG.md).