squarecommonblhelper 1.1.0 → 1.3.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 +10 -0
- package/dist/authentication.d.ts +34 -6
- package/dist/authentication.js +2 -1
- package/dist/greeting.d.ts +14 -1
- package/dist/greeting.js +2 -1
- package/dist/types/AuthenticationResponses.d.ts +42 -0
- package/dist/types/AuthenticationResponses.js +10 -0
- package/dist/types/GreetingResponses.d.ts +77 -0
- package/dist/types/GreetingResponses.js +15 -0
- package/dist/utils.d.ts +5 -1
- package/example.js +3 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -15,6 +15,16 @@ helper for common bl for my projects.
|
|
|
15
15
|
|
|
16
16
|
## changelog
|
|
17
17
|
|
|
18
|
+
### v1.3.0
|
|
19
|
+
|
|
20
|
+
- add types in AuthenticationCommonBL:
|
|
21
|
+
- generateAccessTokenV0
|
|
22
|
+
|
|
23
|
+
### v1.2.0
|
|
24
|
+
|
|
25
|
+
- add types in greeting:
|
|
26
|
+
- createGreetingV0
|
|
27
|
+
|
|
18
28
|
### v1.1.0
|
|
19
29
|
|
|
20
30
|
- add AuthenticationCommonBL class with the following methods:
|
package/dist/authentication.d.ts
CHANGED
|
@@ -1,11 +1,39 @@
|
|
|
1
1
|
declare class AuthenticationCommonBL {
|
|
2
2
|
private commonBLBaseURL;
|
|
3
3
|
constructor(commonBLBaseURL?: string);
|
|
4
|
-
logoutV0(refreshToken: string): Promise<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
logoutV0(refreshToken: string): Promise<{
|
|
5
|
+
message: string | null;
|
|
6
|
+
data?: any;
|
|
7
|
+
log?: any;
|
|
8
|
+
}>;
|
|
9
|
+
generateAccessTokenV0(refreshToken: string): Promise<{
|
|
10
|
+
message: string | null;
|
|
11
|
+
data: {
|
|
12
|
+
main: {
|
|
13
|
+
access_token: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
log?: any;
|
|
17
|
+
}>;
|
|
18
|
+
deleteUserV0(accessToken: string, password: string): Promise<{
|
|
19
|
+
message: string | null;
|
|
20
|
+
data?: any;
|
|
21
|
+
log?: any;
|
|
22
|
+
}>;
|
|
23
|
+
updateUsernameV0(accessToken: string, newUsername: string): Promise<{
|
|
24
|
+
message: string | null;
|
|
25
|
+
data?: any;
|
|
26
|
+
log?: any;
|
|
27
|
+
}>;
|
|
28
|
+
updatePasswordV0(accessToken: string, oldPassword: string, newPassword: string): Promise<{
|
|
29
|
+
message: string | null;
|
|
30
|
+
data?: any;
|
|
31
|
+
log?: any;
|
|
32
|
+
}>;
|
|
33
|
+
getUserDetailsV0(accessToken: string): Promise<{
|
|
34
|
+
message: string | null;
|
|
35
|
+
data?: any;
|
|
36
|
+
log?: any;
|
|
37
|
+
}>;
|
|
10
38
|
}
|
|
11
39
|
export { AuthenticationCommonBL };
|
package/dist/authentication.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { fetchJSONData } from "squarecommons";
|
|
2
|
+
import { GenerateAccessTokenV0ResponseZ } 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;
|
package/dist/greeting.d.ts
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
declare class GreetingCommonBL {
|
|
2
2
|
private commonBLBaseURL;
|
|
3
3
|
constructor(commonBLBaseURL?: string);
|
|
4
|
-
createGreetingV0(greetingIsAnonymous: boolean, greetingAnonymousSenderName?: string, accessToken?: string, greetingText?: string): Promise<
|
|
4
|
+
createGreetingV0(greetingIsAnonymous: boolean, greetingAnonymousSenderName?: string, accessToken?: string, greetingText?: string): Promise<{
|
|
5
|
+
message: string | null;
|
|
6
|
+
data: {
|
|
7
|
+
main: {
|
|
8
|
+
greeting_anonymous_sender_name: string | null;
|
|
9
|
+
user_id: string | null;
|
|
10
|
+
greeting_id: number;
|
|
11
|
+
greeting_datetime: string;
|
|
12
|
+
greeting_is_anonymous: boolean;
|
|
13
|
+
greeting_text: string | null;
|
|
14
|
+
}[];
|
|
15
|
+
};
|
|
16
|
+
log?: any;
|
|
17
|
+
}>;
|
|
5
18
|
}
|
|
6
19
|
export { GreetingCommonBL };
|
package/dist/greeting.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { fetchJSONData } from "squarecommons";
|
|
2
|
+
import { CreateGreetingV0ResponseZ } from "./types/GreetingResponses.js";
|
|
2
3
|
class GreetingCommonBL {
|
|
3
4
|
commonBLBaseURL;
|
|
4
5
|
constructor(commonBLBaseURL = "http://localhost:10110") {
|
|
@@ -20,7 +21,7 @@ class GreetingCommonBL {
|
|
|
20
21
|
greeting_anonymous_sender_name: greetingAnonymousSenderName,
|
|
21
22
|
greeting_text: greetingText,
|
|
22
23
|
});
|
|
23
|
-
return data;
|
|
24
|
+
return CreateGreetingV0ResponseZ.parse(data);
|
|
24
25
|
}
|
|
25
26
|
catch (error) {
|
|
26
27
|
throw error;
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
export { GenerateAccessTokenV0ResponseZ, GenerateAccessTokenV0Response };
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
export { GenerateAccessTokenV0ResponseZ };
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
declare const CreateGreetingV0ResponseZ: 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.ZodArray<z.ZodObject<{
|
|
9
|
+
greeting_anonymous_sender_name: z.ZodNullable<z.ZodString>;
|
|
10
|
+
user_id: z.ZodNullable<z.ZodString>;
|
|
11
|
+
greeting_id: z.ZodNumber;
|
|
12
|
+
greeting_datetime: z.ZodString;
|
|
13
|
+
greeting_is_anonymous: z.ZodBoolean;
|
|
14
|
+
greeting_text: z.ZodNullable<z.ZodString>;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
greeting_anonymous_sender_name: string | null;
|
|
17
|
+
user_id: string | null;
|
|
18
|
+
greeting_id: number;
|
|
19
|
+
greeting_datetime: string;
|
|
20
|
+
greeting_is_anonymous: boolean;
|
|
21
|
+
greeting_text: string | null;
|
|
22
|
+
}, {
|
|
23
|
+
greeting_anonymous_sender_name: string | null;
|
|
24
|
+
user_id: string | null;
|
|
25
|
+
greeting_id: number;
|
|
26
|
+
greeting_datetime: string;
|
|
27
|
+
greeting_is_anonymous: boolean;
|
|
28
|
+
greeting_text: string | null;
|
|
29
|
+
}>, "many">;
|
|
30
|
+
}, "strip", z.ZodTypeAny, {
|
|
31
|
+
main: {
|
|
32
|
+
greeting_anonymous_sender_name: string | null;
|
|
33
|
+
user_id: string | null;
|
|
34
|
+
greeting_id: number;
|
|
35
|
+
greeting_datetime: string;
|
|
36
|
+
greeting_is_anonymous: boolean;
|
|
37
|
+
greeting_text: string | null;
|
|
38
|
+
}[];
|
|
39
|
+
}, {
|
|
40
|
+
main: {
|
|
41
|
+
greeting_anonymous_sender_name: string | null;
|
|
42
|
+
user_id: string | null;
|
|
43
|
+
greeting_id: number;
|
|
44
|
+
greeting_datetime: string;
|
|
45
|
+
greeting_is_anonymous: boolean;
|
|
46
|
+
greeting_text: string | null;
|
|
47
|
+
}[];
|
|
48
|
+
}>;
|
|
49
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50
|
+
message: string | null;
|
|
51
|
+
data: {
|
|
52
|
+
main: {
|
|
53
|
+
greeting_anonymous_sender_name: string | null;
|
|
54
|
+
user_id: string | null;
|
|
55
|
+
greeting_id: number;
|
|
56
|
+
greeting_datetime: string;
|
|
57
|
+
greeting_is_anonymous: boolean;
|
|
58
|
+
greeting_text: string | null;
|
|
59
|
+
}[];
|
|
60
|
+
};
|
|
61
|
+
log?: any;
|
|
62
|
+
}, {
|
|
63
|
+
message: string | null;
|
|
64
|
+
data: {
|
|
65
|
+
main: {
|
|
66
|
+
greeting_anonymous_sender_name: string | null;
|
|
67
|
+
user_id: string | null;
|
|
68
|
+
greeting_id: number;
|
|
69
|
+
greeting_datetime: string;
|
|
70
|
+
greeting_is_anonymous: boolean;
|
|
71
|
+
greeting_text: string | null;
|
|
72
|
+
}[];
|
|
73
|
+
};
|
|
74
|
+
log?: any;
|
|
75
|
+
}>;
|
|
76
|
+
type CreateGreetingV0Response = z.infer<typeof CreateGreetingV0ResponseZ>;
|
|
77
|
+
export { CreateGreetingV0ResponseZ, CreateGreetingV0Response };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { APIOutputZ } from "squarecommons";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const CreateGreetingV0ResponseZ = APIOutputZ.extend({
|
|
4
|
+
data: z.object({
|
|
5
|
+
main: z.array(z.object({
|
|
6
|
+
greeting_anonymous_sender_name: z.string().nullable(),
|
|
7
|
+
user_id: z.string().nullable(),
|
|
8
|
+
greeting_id: z.number(),
|
|
9
|
+
greeting_datetime: z.string(),
|
|
10
|
+
greeting_is_anonymous: z.boolean(),
|
|
11
|
+
greeting_text: z.string().nullable(),
|
|
12
|
+
})),
|
|
13
|
+
}),
|
|
14
|
+
});
|
|
15
|
+
export { CreateGreetingV0ResponseZ };
|
package/dist/utils.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
declare class UtilsCommonBL {
|
|
2
2
|
private commonBLBaseURL;
|
|
3
3
|
constructor(commonBLBaseURL?: string);
|
|
4
|
-
getAppIdV0(appName: string): Promise<
|
|
4
|
+
getAppIdV0(appName: string): Promise<{
|
|
5
|
+
message: string | null;
|
|
6
|
+
data?: any;
|
|
7
|
+
log?: any;
|
|
8
|
+
}>;
|
|
5
9
|
}
|
|
6
10
|
export { UtilsCommonBL };
|
package/example.js
CHANGED
|
@@ -11,4 +11,6 @@ let utilsCommonBL = new UtilsCommonBL();
|
|
|
11
11
|
console.log(await utilsCommonBL.getAppIdV0("test"));
|
|
12
12
|
|
|
13
13
|
let authenticationCommonBL = new AuthenticationCommonBL();
|
|
14
|
-
console.log(
|
|
14
|
+
console.log(
|
|
15
|
+
await authenticationCommonBL.generateAccessTokenV0("dummy_refresh_token")
|
|
16
|
+
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "squarecommonblhelper",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "helper for common bl for my projects.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"node": ">=18.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"squarecommons": "^
|
|
37
|
+
"squarecommons": "^2.0.0",
|
|
38
|
+
"zod": "^3.24.1"
|
|
38
39
|
}
|
|
39
40
|
}
|