├── .compodocrc ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── .OwlBot.lock.yaml ├── .OwlBot.yaml ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ ├── question.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-approve.yml ├── auto-label.yaml ├── generated-files-bot.yml ├── publish.yml ├── release-please.yml ├── release-trigger.yml ├── sync-repo-settings.yaml └── workflows │ └── ci.yaml ├── .gitignore ├── .jsdoc.js ├── .kokoro ├── .gitattributes ├── common.cfg ├── continuous │ └── node14 │ │ ├── common.cfg │ │ ├── lint.cfg │ │ ├── samples-test.cfg │ │ ├── system-test.cfg │ │ └── test.cfg ├── docs.sh ├── lint.sh ├── populate-secrets.sh ├── pre-samples-test.sh ├── pre-system-test.sh ├── presubmit │ ├── node14 │ │ ├── common.cfg │ │ ├── samples-test.cfg │ │ ├── system-test.cfg │ │ └── test.cfg │ └── windows │ │ ├── common.cfg │ │ └── test.cfg ├── publish.sh ├── release │ ├── common.cfg │ ├── docs-devsite.cfg │ ├── docs-devsite.sh │ ├── docs.cfg │ ├── docs.sh │ └── publish.cfg ├── samples-test.sh ├── setup-vars.sh ├── system-test.sh ├── test.bat ├── test.sh ├── trampoline.sh └── trampoline_v2.sh ├── .mocharc.js ├── .nycrc ├── .prettierignore ├── .prettierrc.js ├── .readme-partials.yaml ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── linkinator.config.json ├── owlbot.py ├── package.json ├── renovate.json ├── samples ├── .eslintrc.yml ├── README.md ├── package.json ├── quickstart.js └── test │ └── test.js ├── src └── index.ts ├── system-test └── session.ts ├── test └── test.ts └── tsconfig.json /.compodocrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.compodocrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.OwlBot.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/.OwlBot.lock.yaml -------------------------------------------------------------------------------- /.github/.OwlBot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/.OwlBot.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/auto-approve.yml -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- 1 | requestsize: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /.github/generated-files-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/generated-files-bot.yml -------------------------------------------------------------------------------- /.github/publish.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.jsdoc.js -------------------------------------------------------------------------------- /.kokoro/.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-generated=true 2 | -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/continuous/node14/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node14/lint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/continuous/node14/lint.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node14/samples-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/continuous/node14/samples-test.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node14/system-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/continuous/node14/system-test.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node14/test.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.kokoro/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/docs.sh -------------------------------------------------------------------------------- /.kokoro/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/lint.sh -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/pre-samples-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/pre-samples-test.sh -------------------------------------------------------------------------------- /.kokoro/pre-system-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/pre-system-test.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/node14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/presubmit/node14/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node14/samples-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/presubmit/node14/samples-test.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node14/system-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/presubmit/node14/system-test.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node14/test.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/presubmit/windows/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/presubmit/windows/test.cfg -------------------------------------------------------------------------------- /.kokoro/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/publish.sh -------------------------------------------------------------------------------- /.kokoro/release/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/release/common.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs-devsite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/release/docs-devsite.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs-devsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/release/docs-devsite.sh -------------------------------------------------------------------------------- /.kokoro/release/docs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/release/docs.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/release/docs.sh -------------------------------------------------------------------------------- /.kokoro/release/publish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/release/publish.cfg -------------------------------------------------------------------------------- /.kokoro/samples-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/samples-test.sh -------------------------------------------------------------------------------- /.kokoro/setup-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/setup-vars.sh -------------------------------------------------------------------------------- /.kokoro/system-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/system-test.sh -------------------------------------------------------------------------------- /.kokoro/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/test.bat -------------------------------------------------------------------------------- /.kokoro/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/test.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.readme-partials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.readme-partials.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/SECURITY.md -------------------------------------------------------------------------------- /linkinator.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/linkinator.config.json -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/owlbot.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | rules: 3 | no-console: off -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/samples/package.json -------------------------------------------------------------------------------- /samples/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/samples/quickstart.js -------------------------------------------------------------------------------- /samples/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/samples/test/test.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/src/index.ts -------------------------------------------------------------------------------- /system-test/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/system-test/session.ts -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/test/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-firestore-session/HEAD/tsconfig.json --------------------------------------------------------------------------------