@cloudbase/wx-cloud-client-sdk 1.6.1 → 1.7.1
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/lib/db/mysql/MySqlClient.d.ts +26 -0
- package/lib/db/mysql/MySqlFilterBuilder.d.ts +11 -0
- package/lib/db/mysql/MySqlQueryBuilder.d.ts +11 -0
- package/lib/db/mysql/index.d.ts +7 -0
- package/lib/db/mysql/polyfill.d.ts +72 -0
- package/lib/db/postgrest/PostgrestBuilder.d.ts +70 -0
- package/lib/db/postgrest/PostgrestClient.d.ts +73 -0
- package/lib/db/postgrest/PostgrestError.d.ts +16 -0
- package/lib/db/postgrest/PostgrestFilterBuilder.d.ts +107 -0
- package/lib/db/postgrest/PostgrestQueryBuilder.d.ts +116 -0
- package/lib/db/postgrest/PostgrestTransformBuilder.d.ts +156 -0
- package/lib/db/postgrest/constants.d.ts +3 -0
- package/lib/db/postgrest/index.d.ts +18 -0
- package/lib/db/postgrest/select-query-parser/parser.d.ts +302 -0
- package/lib/db/postgrest/select-query-parser/result.d.ts +156 -0
- package/lib/db/postgrest/select-query-parser/types.d.ts +33 -0
- package/lib/db/postgrest/select-query-parser/utils.d.ts +266 -0
- package/lib/db/postgrest/types.d.ts +109 -0
- package/lib/db/postgrest/version.d.ts +1 -0
- package/lib/index.d.ts +15 -3
- package/lib/types/index.d.ts +7 -0
- package/lib/wxCloudClientSDK.cjs.js +5084 -10
- package/lib/wxCloudClientSDK.esm.js +5084 -11
- package/lib/wxCloudClientSDK.umd.js +5084 -10
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/wx-cloud-client-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -21,10 +21,14 @@
|
|
|
21
21
|
"sync-dts": "cd demo && tcb model sync-dts --envId=lowcode-4gs26nnz095f6f4d",
|
|
22
22
|
"build-demo": "npx rimraf dist/* && parcel build demo/index.html --public-url ./",
|
|
23
23
|
"publish": "npm publish --access public",
|
|
24
|
+
"publish:local": "npm run build && npx yalc push --all",
|
|
24
25
|
"publish-demo": "tcb hosting deploy dist wx-cloud-client-sdk-demo -e lowcode-4gs26nnz095f6f4d",
|
|
25
26
|
"docs": "typedoc --options typedoc.json",
|
|
26
27
|
"deploy": "node ./scripts/deploy.mjs"
|
|
27
28
|
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"core-js-pure": "^3.45.0"
|
|
31
|
+
},
|
|
28
32
|
"devDependencies": {
|
|
29
33
|
"@cloudbase/adapter-interface": "^0.5.0",
|
|
30
34
|
"@cloudbase/js-sdk": "2.15.0",
|