├── .codecov.yml ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .nycrc ├── CHANGELOG ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── contributing.md ├── format.md ├── getting-started.md ├── index.md ├── license.md ├── reference │ ├── isotope-select │ │ ├── limit.md │ │ ├── new.md │ │ ├── order.md │ │ └── where.md │ └── isotope │ │ ├── create.md │ │ ├── delete.md │ │ ├── destroy.md │ │ ├── get-query-builder.md │ │ ├── get.md │ │ ├── new.md │ │ ├── put.md │ │ └── select.md └── release-notes.md ├── mkdocs.yml ├── package.json ├── src ├── index.ts └── isotopes │ ├── client │ └── index.ts │ ├── format │ ├── encoding │ │ └── index.ts │ └── index.ts │ ├── index.ts │ ├── select │ └── index.ts │ └── utilities │ └── index.ts ├── tests ├── helpers │ └── index.ts ├── index.ts ├── mocks │ ├── data │ │ └── index.ts │ ├── isotopes │ │ └── client │ │ │ └── index.ts │ └── vendor │ │ └── aws-sdk │ │ ├── error │ │ └── index.ts │ │ ├── index.ts │ │ └── simpledb │ │ ├── create-domain.ts │ │ ├── delete-attributes.ts │ │ ├── delete-domain.ts │ │ ├── get-attributes.ts │ │ ├── put-attributes.ts │ │ └── select.ts ├── suites │ └── unit │ │ └── isotopes │ │ ├── client │ │ └── index.spec.ts │ │ ├── format │ │ └── index.spec.ts │ │ ├── index.spec.ts │ │ └── select │ │ └── index.spec.ts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── typings └── aws-sdk-mock.d.ts /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/.nycrc -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/README.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/format.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/reference/isotope-select/limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope-select/limit.md -------------------------------------------------------------------------------- /docs/reference/isotope-select/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope-select/new.md -------------------------------------------------------------------------------- /docs/reference/isotope-select/order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope-select/order.md -------------------------------------------------------------------------------- /docs/reference/isotope-select/where.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope-select/where.md -------------------------------------------------------------------------------- /docs/reference/isotope/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/create.md -------------------------------------------------------------------------------- /docs/reference/isotope/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/delete.md -------------------------------------------------------------------------------- /docs/reference/isotope/destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/destroy.md -------------------------------------------------------------------------------- /docs/reference/isotope/get-query-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/get-query-builder.md -------------------------------------------------------------------------------- /docs/reference/isotope/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/get.md -------------------------------------------------------------------------------- /docs/reference/isotope/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/new.md -------------------------------------------------------------------------------- /docs/reference/isotope/put.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/put.md -------------------------------------------------------------------------------- /docs/reference/isotope/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/reference/isotope/select.md -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/isotopes/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/isotopes/client/index.ts -------------------------------------------------------------------------------- /src/isotopes/format/encoding/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/isotopes/format/encoding/index.ts -------------------------------------------------------------------------------- /src/isotopes/format/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/isotopes/format/index.ts -------------------------------------------------------------------------------- /src/isotopes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/isotopes/index.ts -------------------------------------------------------------------------------- /src/isotopes/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/isotopes/select/index.ts -------------------------------------------------------------------------------- /src/isotopes/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/src/isotopes/utilities/index.ts -------------------------------------------------------------------------------- /tests/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/helpers/index.ts -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tests/mocks/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/data/index.ts -------------------------------------------------------------------------------- /tests/mocks/isotopes/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/isotopes/client/index.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/error/index.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/index.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/simpledb/create-domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/simpledb/create-domain.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/simpledb/delete-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/simpledb/delete-attributes.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/simpledb/delete-domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/simpledb/delete-domain.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/simpledb/get-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/simpledb/get-attributes.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/simpledb/put-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/simpledb/put-attributes.ts -------------------------------------------------------------------------------- /tests/mocks/vendor/aws-sdk/simpledb/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/mocks/vendor/aws-sdk/simpledb/select.ts -------------------------------------------------------------------------------- /tests/suites/unit/isotopes/client/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/suites/unit/isotopes/client/index.spec.ts -------------------------------------------------------------------------------- /tests/suites/unit/isotopes/format/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/suites/unit/isotopes/format/index.spec.ts -------------------------------------------------------------------------------- /tests/suites/unit/isotopes/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/suites/unit/isotopes/index.spec.ts -------------------------------------------------------------------------------- /tests/suites/unit/isotopes/select/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/suites/unit/isotopes/select/index.spec.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/aws-sdk-mock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/isotopes/HEAD/typings/aws-sdk-mock.d.ts --------------------------------------------------------------------------------