@mcpher/gas-fakes 2.0.18 → 2.1.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 +2 -0
- package/api-docs/kdrive_api.json +69958 -0
- package/package.json +1 -1
- package/src/cli/app.js +3 -1
- package/src/cli/setup.js +225 -489
- package/src/cli/utils.js +2 -2
- package/src/services/advcalendar/clapis.js +6 -4
- package/src/services/advdocs/docapis.js +4 -4
- package/src/services/advdrive/drapis.js +1 -1
- package/src/services/advdrive/fakeadvdrivefiles.js +10 -2
- package/src/services/advforms/formsapis.js +4 -4
- package/src/services/advgmail/gmailapis.js +4 -4
- package/src/services/advsheets/shapis.js +5 -3
- package/src/services/advslides/slapis.js +5 -3
- package/src/services/driveapp/fakedriveapp.js +9 -2
- package/src/services/scriptapp/app.js +89 -19
- package/src/services/stores/fakestores.js +4 -3
- package/src/services/stores/gasflex.js +15 -13
- package/src/support/auth.js +149 -205
- package/src/support/env-loader.js +6 -3
- package/src/support/ksuite/kdrive.js +298 -0
- package/src/support/sxauth.js +109 -89
- package/src/support/sxdrive.js +323 -3
- package/src/support/syncit.js +55 -33
- package/src/support/utils.js +5 -0
- package/src/support/workersync/synchronizer.js +5 -1
- package/src/support/workersync/worker.js +16 -11
package/README.md
CHANGED
|
@@ -168,6 +168,8 @@ As I mentioned earlier, to take this further, I'm going to need a lot of help to
|
|
|
168
168
|
- [getting started](GETTING_STARTED.md) - how to handle authentication for restricted scopes.
|
|
169
169
|
- [readme](README.md)
|
|
170
170
|
- [gas fakes cli](gas-fakes-cli.md)
|
|
171
|
+
- [ksuite poc](ksuite_poc.md)
|
|
172
|
+
- [apps script - a lingua franca for workspace platforms](https://ramblings.mcpher.com/apps-script-a-lingua-franca/)
|
|
171
173
|
- [running gas-fakes on google cloud run](https://github.com/brucemcpherson/gas-fakes-containers)
|
|
172
174
|
- [running gas-fakes on google kubernetes engine](https://github.com/brucemcpherson/gas-fakes-containers)
|
|
173
175
|
- [running gas-fakes on Amazon AWS lambda](https://github.com/brucemcpherson/gas-fakes-containers)
|