@stinkycomputing/sesame-api-client 1.4.1-beta.11 → 1.4.1-beta.13
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/command-list.d.ts +25 -1
- package/dist/command-list.d.ts.map +1 -1
- package/dist/generated/property-types.d.ts +845 -0
- package/dist/generated/property-types.d.ts.map +1 -0
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs.map +2 -2
- package/docs/protocol-reference.md +1749 -765
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stinkycomputing/sesame-api-client",
|
|
3
|
-
"version": "1.4.1-beta.
|
|
3
|
+
"version": "1.4.1-beta.13",
|
|
4
4
|
"description": "Sesame API client library with protobuf definitions and command list helpers",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -19,11 +19,13 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "npm run compile-proto && npm run build-bundle && npm run build-types",
|
|
22
|
+
"build": "npm run generate-property-types && npm run compile-proto && npm run build-bundle && npm run build-types",
|
|
23
|
+
"generate-property-types": "node scripts/generate-property-types.cjs",
|
|
23
24
|
"compile-proto": "node scripts/compile-proto.cjs",
|
|
24
25
|
"build-bundle": "node scripts/build.cjs",
|
|
25
26
|
"build-types": "tsc --emitDeclarationOnly",
|
|
26
|
-
"
|
|
27
|
+
"copy-docs": "node -e \"require('fs').cpSync('../../server/docs/protocol-reference.md','docs/protocol-reference.md')\"",
|
|
28
|
+
"prepublishOnly": "npm run build && npm run copy-docs",
|
|
27
29
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
28
30
|
},
|
|
29
31
|
"keywords": [
|