@vroskus/library-social 1.0.11 → 1.0.13

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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { Axios } from 'axios';
2
- import type { $Config as Config, $SocialPayload } from './types';
2
+ import type { $SocialPayload, $Config as Config } from './types';
3
3
  export * from './types';
4
4
  declare class Social<C extends Config> {
5
5
  #private;
package/dist/types.d.ts CHANGED
@@ -24,9 +24,9 @@ export type $GooglePayload = {
24
24
  verified_email: boolean;
25
25
  };
26
26
  export type $SocialPayload = {
27
- Uid: string;
28
- Name: string;
29
27
  Email: string;
30
28
  EmailVerified: boolean;
31
- PictureUrl: string | null;
29
+ Name: string;
30
+ PictureUrl: null | string;
31
+ Uid: string;
32
32
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vroskus/library-social",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Social",
5
5
  "author": "Vilius Roškus <vilius@regattas.eu>",
6
6
  "license": "MIT",
@@ -22,16 +22,16 @@
22
22
  "test:e2e:post": "jest-coverage-thresholds-bumper"
23
23
  },
24
24
  "dependencies": {
25
- "@vroskus/library-validator": "1.0.13",
25
+ "@vroskus/library-validator": "1.0.15",
26
26
  "axios": "1.6.5",
27
27
  "axios-mock-adapter": "1.22.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/axios": "0.14.0",
31
31
  "@types/jest": "29.5.11",
32
- "@types/node": "20.10.6",
33
- "@typescript-eslint/eslint-plugin": "6.18.0",
34
- "@typescript-eslint/parser": "6.18.0",
32
+ "@types/node": "20.11.5",
33
+ "@typescript-eslint/eslint-plugin": "6.19.0",
34
+ "@typescript-eslint/parser": "6.19.0",
35
35
  "body-parser": "1.20.2",
36
36
  "eslint": "8.56.0",
37
37
  "eslint-config-airbnb-base": "15.0.0",
@@ -45,7 +45,7 @@
45
45
  "jest": "29.7.0",
46
46
  "jest-coverage-thresholds-bumper": "1.1.0",
47
47
  "npm-check": "6.0.1",
48
- "supertest": "6.3.3",
48
+ "supertest": "6.3.4",
49
49
  "ts-jest": "29.1.1",
50
50
  "typescript": "5.3.3"
51
51
  },