@stravigor/socialite 0.4.0 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stravigor/socialite",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "type": "module",
5
5
  "description": "OAuth social authentication for the Strav framework",
6
6
  "license": "MIT",
@@ -8,7 +8,13 @@
8
8
  ".": "./src/index.ts",
9
9
  "./*": "./src/*.ts"
10
10
  },
11
- "files": ["src/", "stubs/", "package.json", "tsconfig.json", "CHANGELOG.md"],
11
+ "files": [
12
+ "src/",
13
+ "stubs/",
14
+ "package.json",
15
+ "tsconfig.json",
16
+ "CHANGELOG.md"
17
+ ],
12
18
  "peerDependencies": {
13
19
  "@stravigor/core": "0.3.3"
14
20
  },
@@ -1,6 +1,6 @@
1
1
  import { inject } from '@stravigor/core/core'
2
- import type Configuration from '@stravigor/core/config/configuration'
3
- import type Database from '@stravigor/core/database/database'
2
+ import Configuration from '@stravigor/core/config/configuration'
3
+ import Database from '@stravigor/core/database/database'
4
4
  import { ConfigurationError } from '@stravigor/core/exceptions/errors'
5
5
  import { toSnakeCase } from '@stravigor/core/schema'
6
6
  import type { AbstractProvider } from './abstract_provider.ts'