squarecommonblhelper 1.2.0 → 1.4.0

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/README.md CHANGED
@@ -15,6 +15,17 @@ helper for common bl for my projects.
15
15
 
16
16
  ## changelog
17
17
 
18
+ ### v1.4.0
19
+
20
+ - AuthenticationCommonBL:
21
+ - bug fix in updateUsernameV0
22
+ - add types for updateUsernameV0
23
+
24
+ ### v1.3.0
25
+
26
+ - add types in AuthenticationCommonBL:
27
+ - generateAccessTokenV0
28
+
18
29
  ### v1.2.0
19
30
 
20
31
  - add types in greeting:
@@ -8,7 +8,11 @@ declare class AuthenticationCommonBL {
8
8
  }>;
9
9
  generateAccessTokenV0(refreshToken: string): Promise<{
10
10
  message: string | null;
11
- data?: any;
11
+ data: {
12
+ main: {
13
+ access_token: string;
14
+ };
15
+ };
12
16
  log?: any;
13
17
  }>;
14
18
  deleteUserV0(accessToken: string, password: string): Promise<{
@@ -18,7 +22,12 @@ declare class AuthenticationCommonBL {
18
22
  }>;
19
23
  updateUsernameV0(accessToken: string, newUsername: string): Promise<{
20
24
  message: string | null;
21
- data?: any;
25
+ data: {
26
+ main: {
27
+ user_id: string;
28
+ username: string;
29
+ };
30
+ };
22
31
  log?: any;
23
32
  }>;
24
33
  updatePasswordV0(accessToken: string, oldPassword: string, newPassword: string): Promise<{
@@ -1,4 +1,5 @@
1
1
  import { fetchJSONData } from "squarecommons";
2
+ import { GenerateAccessTokenV0ResponseZ, UpdateUsernameV0ResponseZ, } from "./types/AuthenticationResponses.js";
2
3
  class AuthenticationCommonBL {
3
4
  commonBLBaseURL;
4
5
  constructor(commonBLBaseURL = "http://localhost:10110") {
@@ -40,7 +41,7 @@ class AuthenticationCommonBL {
40
41
  undefined,
41
42
  // query params
42
43
  undefined);
43
- return data;
44
+ return GenerateAccessTokenV0ResponseZ.parse(data);
44
45
  }
45
46
  catch (error) {
46
47
  throw error;
@@ -79,10 +80,10 @@ class AuthenticationCommonBL {
79
80
  // headers
80
81
  { access_token: accessToken },
81
82
  // body
82
- { new_username: newUsername },
83
+ undefined,
83
84
  // query params
84
- undefined);
85
- return data;
85
+ { new_username: newUsername });
86
+ return UpdateUsernameV0ResponseZ.parse(data);
86
87
  }
87
88
  catch (error) {
88
89
  throw error;
@@ -5,8 +5,8 @@ declare class GreetingCommonBL {
5
5
  message: string | null;
6
6
  data: {
7
7
  main: {
8
- greeting_anonymous_sender_name: string | null;
9
8
  user_id: string | null;
9
+ greeting_anonymous_sender_name: string | null;
10
10
  greeting_id: number;
11
11
  greeting_datetime: string;
12
12
  greeting_is_anonymous: boolean;
@@ -0,0 +1,89 @@
1
+ import { z } from "zod";
2
+ declare const GenerateAccessTokenV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
3
+ data: z.ZodAny;
4
+ message: z.ZodNullable<z.ZodString>;
5
+ log: z.ZodAny;
6
+ }, {
7
+ data: z.ZodObject<{
8
+ main: z.ZodObject<{
9
+ access_token: z.ZodString;
10
+ }, "strip", z.ZodTypeAny, {
11
+ access_token: string;
12
+ }, {
13
+ access_token: string;
14
+ }>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ main: {
17
+ access_token: string;
18
+ };
19
+ }, {
20
+ main: {
21
+ access_token: string;
22
+ };
23
+ }>;
24
+ }>, "strip", z.ZodTypeAny, {
25
+ message: string | null;
26
+ data: {
27
+ main: {
28
+ access_token: string;
29
+ };
30
+ };
31
+ log?: any;
32
+ }, {
33
+ message: string | null;
34
+ data: {
35
+ main: {
36
+ access_token: string;
37
+ };
38
+ };
39
+ log?: any;
40
+ }>;
41
+ type GenerateAccessTokenV0Response = z.infer<typeof GenerateAccessTokenV0ResponseZ>;
42
+ declare const UpdateUsernameV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
43
+ data: z.ZodAny;
44
+ message: z.ZodNullable<z.ZodString>;
45
+ log: z.ZodAny;
46
+ }, {
47
+ data: z.ZodObject<{
48
+ main: z.ZodObject<{
49
+ user_id: z.ZodString;
50
+ username: z.ZodString;
51
+ }, "strip", z.ZodTypeAny, {
52
+ user_id: string;
53
+ username: string;
54
+ }, {
55
+ user_id: string;
56
+ username: string;
57
+ }>;
58
+ }, "strip", z.ZodTypeAny, {
59
+ main: {
60
+ user_id: string;
61
+ username: string;
62
+ };
63
+ }, {
64
+ main: {
65
+ user_id: string;
66
+ username: string;
67
+ };
68
+ }>;
69
+ }>, "strip", z.ZodTypeAny, {
70
+ message: string | null;
71
+ data: {
72
+ main: {
73
+ user_id: string;
74
+ username: string;
75
+ };
76
+ };
77
+ log?: any;
78
+ }, {
79
+ message: string | null;
80
+ data: {
81
+ main: {
82
+ user_id: string;
83
+ username: string;
84
+ };
85
+ };
86
+ log?: any;
87
+ }>;
88
+ type UpdateUsernameV0Response = z.infer<typeof UpdateUsernameV0ResponseZ>;
89
+ export { GenerateAccessTokenV0ResponseZ, GenerateAccessTokenV0Response, UpdateUsernameV0ResponseZ, UpdateUsernameV0Response, };
@@ -0,0 +1,18 @@
1
+ import { APIOutputZ } from "squarecommons";
2
+ import { z } from "zod";
3
+ const GenerateAccessTokenV0ResponseZ = APIOutputZ.extend({
4
+ data: z.object({
5
+ main: z.object({
6
+ access_token: z.string(),
7
+ }),
8
+ }),
9
+ });
10
+ const UpdateUsernameV0ResponseZ = APIOutputZ.extend({
11
+ data: z.object({
12
+ main: z.object({
13
+ user_id: z.string(),
14
+ username: z.string(),
15
+ }),
16
+ }),
17
+ });
18
+ export { GenerateAccessTokenV0ResponseZ, UpdateUsernameV0ResponseZ, };
@@ -13,15 +13,15 @@ declare const CreateGreetingV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
13
13
  greeting_is_anonymous: z.ZodBoolean;
14
14
  greeting_text: z.ZodNullable<z.ZodString>;
15
15
  }, "strip", z.ZodTypeAny, {
16
- greeting_anonymous_sender_name: string | null;
17
16
  user_id: string | null;
17
+ greeting_anonymous_sender_name: string | null;
18
18
  greeting_id: number;
19
19
  greeting_datetime: string;
20
20
  greeting_is_anonymous: boolean;
21
21
  greeting_text: string | null;
22
22
  }, {
23
- greeting_anonymous_sender_name: string | null;
24
23
  user_id: string | null;
24
+ greeting_anonymous_sender_name: string | null;
25
25
  greeting_id: number;
26
26
  greeting_datetime: string;
27
27
  greeting_is_anonymous: boolean;
@@ -29,8 +29,8 @@ declare const CreateGreetingV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
29
29
  }>, "many">;
30
30
  }, "strip", z.ZodTypeAny, {
31
31
  main: {
32
- greeting_anonymous_sender_name: string | null;
33
32
  user_id: string | null;
33
+ greeting_anonymous_sender_name: string | null;
34
34
  greeting_id: number;
35
35
  greeting_datetime: string;
36
36
  greeting_is_anonymous: boolean;
@@ -38,8 +38,8 @@ declare const CreateGreetingV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
38
38
  }[];
39
39
  }, {
40
40
  main: {
41
- greeting_anonymous_sender_name: string | null;
42
41
  user_id: string | null;
42
+ greeting_anonymous_sender_name: string | null;
43
43
  greeting_id: number;
44
44
  greeting_datetime: string;
45
45
  greeting_is_anonymous: boolean;
@@ -50,8 +50,8 @@ declare const CreateGreetingV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
50
50
  message: string | null;
51
51
  data: {
52
52
  main: {
53
- greeting_anonymous_sender_name: string | null;
54
53
  user_id: string | null;
54
+ greeting_anonymous_sender_name: string | null;
55
55
  greeting_id: number;
56
56
  greeting_datetime: string;
57
57
  greeting_is_anonymous: boolean;
@@ -63,8 +63,8 @@ declare const CreateGreetingV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
63
63
  message: string | null;
64
64
  data: {
65
65
  main: {
66
- greeting_anonymous_sender_name: string | null;
67
66
  user_id: string | null;
67
+ greeting_anonymous_sender_name: string | null;
68
68
  greeting_id: number;
69
69
  greeting_datetime: string;
70
70
  greeting_is_anonymous: boolean;
package/example.js CHANGED
@@ -11,4 +11,12 @@ let utilsCommonBL = new UtilsCommonBL();
11
11
  console.log(await utilsCommonBL.getAppIdV0("test"));
12
12
 
13
13
  let authenticationCommonBL = new AuthenticationCommonBL();
14
- console.log(await authenticationCommonBL.generateAccessTokenV0(""));
14
+ console.log(
15
+ await authenticationCommonBL.generateAccessTokenV0("dummy_refresh_token")
16
+ );
17
+ console.log(
18
+ await authenticationCommonBL.updateUsernameV0(
19
+ "dummy_access_token",
20
+ "new_username"
21
+ )
22
+ );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarecommonblhelper",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "helper for common bl for my projects.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",