Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
Upgrading dependencies, dependabot config, and bug templates (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
danitseitlin authored Sep 2, 2021
1 parent c7aaff8 commit b6cbbfd
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 118 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
reviewers:
- "danitseitlin"
commit-message:
prefix: "[bot updates]"
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Unit testing

on: [push, workflow_dispatch]
jobs:
build:
CI:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
48 changes: 24 additions & 24 deletions api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class CloudAPISDK {
return response.data.subscriptions;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -122,7 +122,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -136,7 +136,7 @@ export class CloudAPISDK {
return response.data;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -153,7 +153,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -169,7 +169,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -185,7 +185,7 @@ export class CloudAPISDK {
return taskResponse.response.resource;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -202,7 +202,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -218,7 +218,7 @@ export class CloudAPISDK {
return taskResponse.response.resource.peerings;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -235,7 +235,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -252,7 +252,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -268,7 +268,7 @@ export class CloudAPISDK {
return response.data.subscription[0].databases;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -285,7 +285,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -300,7 +300,7 @@ export class CloudAPISDK {
return response.data;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -318,7 +318,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -335,7 +335,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -352,7 +352,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -370,7 +370,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -384,7 +384,7 @@ export class CloudAPISDK {
return response.data.cloudAccounts;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -400,7 +400,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -414,7 +414,7 @@ export class CloudAPISDK {
return response.data;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -431,7 +431,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -447,7 +447,7 @@ export class CloudAPISDK {
return taskResponse.response;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -461,7 +461,7 @@ export class CloudAPISDK {
return response.data;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -475,7 +475,7 @@ export class CloudAPISDK {
return response.data;
}
catch(error) {
return error;
return error as any;
}
}

Expand Down
14 changes: 7 additions & 7 deletions api/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class General {
return response.data.account;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -23,7 +23,7 @@ export class General {
return response.data.dataPersistence;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -36,7 +36,7 @@ export class General {
return response.data.modules;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -51,7 +51,7 @@ export class General {
return response.data.entries;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -64,7 +64,7 @@ export class General {
return response.data.paymentMethods;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -78,7 +78,7 @@ export class General {
return response.data.plans;
}
catch(error) {
return error;
return error as any;
}
}

Expand All @@ -92,7 +92,7 @@ export class General {
return response.data.regions;
}
catch(error) {
return error;
return error as any;
}
}
}
Loading

0 comments on commit b6cbbfd

Please sign in to comment.