@allthings/sdk 6.6.0 → 7.0.0
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/README.md +20 -0
- package/dist/cli.js +1313 -1209
- package/dist/lib.cjs.js +1313 -1257
- package/dist/lib.esm.js +1314 -1256
- package/dist/lib.umd.min.js +1 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/rest/methods/conversation.d.ts +1 -0
- package/dist/src/rest/methods/file.d.ts +1 -0
- package/dist/src/rest/methods/group.d.ts +3 -2
- package/dist/src/rest/methods/property.d.ts +2 -1
- package/dist/src/rest/methods/registrationCode.d.ts +1 -0
- package/dist/src/rest/methods/ticket.d.ts +1 -0
- package/dist/src/rest/methods/unit.d.ts +1 -0
- package/dist/src/rest/methods/user.d.ts +8 -0
- package/dist/src/rest/methods/utilisationPeriod.d.ts +2 -1
- package/dist/src/utils/upload.d.ts +1 -0
- package/dist/test/helpers.d.ts +1 -0
- package/package.json +9 -11
- package/dist/src/aws/index.d.ts +0 -2
- package/dist/src/aws/parameterStore.d.ts +0 -16
- package/dist/src/aws/parameterStore.test.d.ts +0 -1
package/README.md
CHANGED
|
@@ -473,3 +473,23 @@ When you squash merge, GitHub takes the title of the PR for the squash-merge's c
|
|
|
473
473
|
|
|
474
474
|
By choosing a proper PR title e.g. `feat: my new feature` your merged PR will trigger a new release.
|
|
475
475
|
See semantic-releases [docs](https://github.com/semantic-release/semantic-release#how-does-it-work) for available prefixes.
|
|
476
|
+
|
|
477
|
+
## Local tests
|
|
478
|
+
|
|
479
|
+
To run local tests, init the shell from devenv and use this command:
|
|
480
|
+
|
|
481
|
+
```shell
|
|
482
|
+
ALLTHINGS_OAUTH_CLIENT_ID='<oauth_client_id>' \
|
|
483
|
+
ALLTHINGS_OAUTH_CLIENT_SECRET='<oauth_client_secret>' \
|
|
484
|
+
ALLTHINGS_OAUTH_USERNAME='<oauth_username' \
|
|
485
|
+
ALLTHINGS_OAUTH_PASSWORD="<oauth_password>" \
|
|
486
|
+
./bin/test-ci.sh --update --log accounts,events,php
|
|
487
|
+
|
|
488
|
+
```
|
|
489
|
+
|
|
490
|
+
if you don't want to init the shell, please also provide next env variables to command as well:
|
|
491
|
+
- ALLTHINGS_ACCOUNTS_RECAPTCHA_SECRET_KEY
|
|
492
|
+
- SSL_PASS
|
|
493
|
+
|
|
494
|
+
Credentials could be found in `dev.secrets` repo.
|
|
495
|
+
|