├── .claspignore ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .readme ├── config-gas-0.png ├── config-gas-1.png ├── config-gas-2.png ├── config-gas-3.png ├── config-gcp-0.png ├── config-gcp-1.png ├── config-gcp-2.png ├── config-gcp-3.png ├── config-sheet-0.png └── config-sheet-1.png ├── LICENSE ├── README.md ├── Sunset Supreme Spreadsheet Blockchain Machine.pdf ├── appsscript.json ├── funding.json ├── generateCredentials.js ├── logo.png ├── package.json ├── src ├── Code.js ├── Code.spec.js └── library │ ├── Build.js │ ├── Property.js │ ├── Query.js │ ├── Util.js │ └── Validate.js ├── test ├── auth.js └── mbSheetsAddOn.js └── yarn.lock /.claspignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.claspignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/Version.js 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.gitignore -------------------------------------------------------------------------------- /.readme/config-gas-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gas-0.png -------------------------------------------------------------------------------- /.readme/config-gas-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gas-1.png -------------------------------------------------------------------------------- /.readme/config-gas-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gas-2.png -------------------------------------------------------------------------------- /.readme/config-gas-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gas-3.png -------------------------------------------------------------------------------- /.readme/config-gcp-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gcp-0.png -------------------------------------------------------------------------------- /.readme/config-gcp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gcp-1.png -------------------------------------------------------------------------------- /.readme/config-gcp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gcp-2.png -------------------------------------------------------------------------------- /.readme/config-gcp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-gcp-3.png -------------------------------------------------------------------------------- /.readme/config-sheet-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-sheet-0.png -------------------------------------------------------------------------------- /.readme/config-sheet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/.readme/config-sheet-1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/README.md -------------------------------------------------------------------------------- /Sunset Supreme Spreadsheet Blockchain Machine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/Sunset Supreme Spreadsheet Blockchain Machine.pdf -------------------------------------------------------------------------------- /appsscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/appsscript.json -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/funding.json -------------------------------------------------------------------------------- /generateCredentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/generateCredentials.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/package.json -------------------------------------------------------------------------------- /src/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/Code.js -------------------------------------------------------------------------------- /src/Code.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/Code.spec.js -------------------------------------------------------------------------------- /src/library/Build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/library/Build.js -------------------------------------------------------------------------------- /src/library/Property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/library/Property.js -------------------------------------------------------------------------------- /src/library/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/library/Query.js -------------------------------------------------------------------------------- /src/library/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/library/Util.js -------------------------------------------------------------------------------- /src/library/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/src/library/Validate.js -------------------------------------------------------------------------------- /test/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/test/auth.js -------------------------------------------------------------------------------- /test/mbSheetsAddOn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/test/mbSheetsAddOn.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curvegrid/multibaas-for-google-sheets/HEAD/yarn.lock --------------------------------------------------------------------------------