├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── jest.config.ts ├── jest.preset.js ├── migrations.json ├── nx.json ├── package.json ├── packages ├── .gitkeep └── digitalocean-js │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── axios-instance.ts │ │ ├── conf │ │ │ └── environment.ts │ │ ├── digitalocean.spec.ts │ │ ├── digitalocean.ts │ │ ├── models │ │ │ ├── account.ts │ │ │ ├── action.ts │ │ │ ├── backup.ts │ │ │ ├── balance.ts │ │ │ ├── billing-history.ts │ │ │ ├── block-storage.ts │ │ │ ├── cdn.ts │ │ │ ├── certificate.ts │ │ │ ├── domain-record.ts │ │ │ ├── domain.ts │ │ │ ├── droplet.ts │ │ │ ├── firewall.ts │ │ │ ├── floating-ip.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── kernel.ts │ │ │ ├── kubernetes-cluster.ts │ │ │ ├── load-balancer.ts │ │ │ ├── network.ts │ │ │ ├── networks.ts │ │ │ ├── project.ts │ │ │ ├── region.ts │ │ │ ├── size.ts │ │ │ ├── snapshot.ts │ │ │ ├── ssh-key.ts │ │ │ └── tag.ts │ │ └── services │ │ │ ├── account │ │ │ ├── account.service.spec.ts │ │ │ └── account.service.ts │ │ │ ├── actions │ │ │ ├── actions.service.spec.ts │ │ │ └── actions.service.ts │ │ │ ├── billing-history │ │ │ ├── billing-history.service.spec.ts │ │ │ └── billing-history.service.ts │ │ │ ├── block-storage │ │ │ ├── block-storage-actions.service.ts │ │ │ └── block-storage.service.ts │ │ │ ├── cdn │ │ │ ├── cdn.service.spec.ts │ │ │ └── cdn.service.ts │ │ │ ├── certificate │ │ │ └── certificate.service.ts │ │ │ ├── domain │ │ │ ├── domain-record.service.ts │ │ │ └── domain.service.ts │ │ │ ├── droplet │ │ │ ├── droplet-actions.service.ts │ │ │ └── droplet.service.ts │ │ │ ├── firewall │ │ │ └── firewall.service.ts │ │ │ ├── floating-ip │ │ │ ├── floating-ip-actions.service.ts │ │ │ └── floating-ip.service.ts │ │ │ ├── image │ │ │ ├── image-actions.service.ts │ │ │ └── image.service.ts │ │ │ ├── index.ts │ │ │ ├── kubernetes │ │ │ └── kubernetes.service.ts │ │ │ ├── load-balancer │ │ │ └── load-balancer.service.ts │ │ │ ├── project │ │ │ ├── project.service.spec.ts │ │ │ └── project.service.ts │ │ │ ├── region │ │ │ └── region.service.ts │ │ │ ├── size │ │ │ └── size.service.ts │ │ │ ├── snapshot │ │ │ └── snapshot.service.ts │ │ │ ├── ssh │ │ │ └── ssh.service.ts │ │ │ └── tag │ │ │ └── tag.service.ts │ └── test │ │ ├── errors.ts │ │ ├── fixtures │ │ ├── accounts.fixture.ts │ │ ├── actions.fixture.ts │ │ ├── balance.fixture.ts │ │ ├── billing-history.fixture.ts │ │ ├── block-storage.fixture.ts │ │ ├── cdn.fixture.ts │ │ ├── error.fixture.ts │ │ └── projects.fixture.ts │ │ ├── index.ts │ │ └── models.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── tools └── tsconfig.tools.json ├── tsconfig.base.json ├── typedoc.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/jest.preset.js -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/digitalocean-js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/.eslintrc.json -------------------------------------------------------------------------------- /packages/digitalocean-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/README.md -------------------------------------------------------------------------------- /packages/digitalocean-js/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/jest.config.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/package.json -------------------------------------------------------------------------------- /packages/digitalocean-js/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/project.json -------------------------------------------------------------------------------- /packages/digitalocean-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/index.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/axios-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/axios-instance.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/conf/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/conf/environment.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/digitalocean.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/digitalocean.spec.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/digitalocean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/digitalocean.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/account.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/action.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/backup.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/balance.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/billing-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/billing-history.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/block-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/block-storage.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/cdn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/cdn.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/certificate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/certificate.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/domain-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/domain-record.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/domain.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/droplet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/droplet.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/firewall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/firewall.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/floating-ip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/floating-ip.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/image.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/index.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/kernel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/kernel.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/kubernetes-cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/kubernetes-cluster.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/load-balancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/load-balancer.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/network.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/networks.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/project.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/region.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/size.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/snapshot.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/ssh-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/ssh-key.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/models/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/models/tag.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/account/account.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/account/account.service.spec.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/account/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/account/account.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/actions/actions.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/actions/actions.service.spec.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/actions/actions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/actions/actions.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/billing-history/billing-history.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/billing-history/billing-history.service.spec.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/billing-history/billing-history.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/billing-history/billing-history.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/block-storage/block-storage-actions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/block-storage/block-storage-actions.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/block-storage/block-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/block-storage/block-storage.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/cdn/cdn.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/cdn/cdn.service.spec.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/cdn/cdn.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/cdn/cdn.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/certificate/certificate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/certificate/certificate.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/domain/domain-record.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/domain/domain-record.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/domain/domain.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/domain/domain.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/droplet/droplet-actions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/droplet/droplet-actions.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/droplet/droplet.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/droplet/droplet.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/firewall/firewall.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/firewall/firewall.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/floating-ip/floating-ip-actions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/floating-ip/floating-ip-actions.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/floating-ip/floating-ip.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/floating-ip/floating-ip.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/image/image-actions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/image/image-actions.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/image/image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/image/image.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/index.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/kubernetes/kubernetes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/kubernetes/kubernetes.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/load-balancer/load-balancer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/load-balancer/load-balancer.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/project/project.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/project/project.service.spec.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/project/project.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/project/project.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/region/region.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/region/region.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/size/size.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/size/size.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/snapshot/snapshot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/snapshot/snapshot.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/ssh/ssh.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/ssh/ssh.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/lib/services/tag/tag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/lib/services/tag/tag.service.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/errors.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/accounts.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/accounts.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/actions.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/actions.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/balance.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/balance.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/billing-history.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/billing-history.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/block-storage.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/block-storage.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/cdn.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/cdn.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/error.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/error.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/fixtures/projects.fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/fixtures/projects.fixture.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/index.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/src/test/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/src/test/models.ts -------------------------------------------------------------------------------- /packages/digitalocean-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/tsconfig.json -------------------------------------------------------------------------------- /packages/digitalocean-js/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/digitalocean-js/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/packages/digitalocean-js/tsconfig.spec.json -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbwoodruff/digitalocean-js/HEAD/yarn.lock --------------------------------------------------------------------------------