@justins-home/api-services 1.1.4 → 1.1.6
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +16 -0
- package/dist/index.js +5 -0
- package/dist/index.mjs +4 -0
- package/package.json +2 -2
- package/src/helpers/authTokenInit.ts +1 -0
- package/src/index.ts +3 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @justins-home/api-services@1.1.
|
|
2
|
+
> @justins-home/api-services@1.1.6 build /home/runner/work/justins-home-platform-ui/justins-home-platform-ui/packages/api-services
|
|
3
3
|
> tsup src/index.ts --format esm,cjs
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[34mCLI[39m Target: node16
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
|
-
[32mCJS[39m [1mdist/index.js [22m[32m26.
|
|
11
|
-
[32mCJS[39m ⚡️ Build success in
|
|
12
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m25.
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
10
|
+
[32mCJS[39m [1mdist/index.js [22m[32m26.89 KB[39m
|
|
11
|
+
[32mCJS[39m ⚡️ Build success in 44ms
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m25.23 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 44ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @justins-home/api-services
|
|
2
2
|
|
|
3
|
+
## 1.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix validated script
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @justins-home/http-client@1.0.4
|
|
10
|
+
|
|
11
|
+
## 1.1.5
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- created a setup auth handler for handling token
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @justins-home/http-client@1.0.3
|
|
18
|
+
|
|
3
19
|
## 1.1.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -38,6 +38,7 @@ __export(index_exports, {
|
|
|
38
38
|
notification: () => notification,
|
|
39
39
|
plan: () => plan,
|
|
40
40
|
review: () => review,
|
|
41
|
+
setupAuth: () => import_http_client2.initApiToken,
|
|
41
42
|
tenancy: () => tenancy,
|
|
42
43
|
tenant: () => tenant,
|
|
43
44
|
userverification: () => userverification,
|
|
@@ -97,6 +98,9 @@ var api = {
|
|
|
97
98
|
}
|
|
98
99
|
};
|
|
99
100
|
|
|
101
|
+
// src/helpers/authTokenInit.ts
|
|
102
|
+
var import_http_client2 = require("@justins-home/http-client");
|
|
103
|
+
|
|
100
104
|
// src/generated/admin.ts
|
|
101
105
|
var admin = {
|
|
102
106
|
new: (payload) => {
|
|
@@ -675,6 +679,7 @@ var wishlist = {
|
|
|
675
679
|
notification,
|
|
676
680
|
plan,
|
|
677
681
|
review,
|
|
682
|
+
setupAuth,
|
|
678
683
|
tenancy,
|
|
679
684
|
tenant,
|
|
680
685
|
userverification,
|
package/dist/index.mjs
CHANGED
|
@@ -50,6 +50,9 @@ var api = {
|
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
+
// src/helpers/authTokenInit.ts
|
|
54
|
+
import { initApiToken } from "@justins-home/http-client";
|
|
55
|
+
|
|
53
56
|
// src/generated/admin.ts
|
|
54
57
|
var admin = {
|
|
55
58
|
new: (payload) => {
|
|
@@ -627,6 +630,7 @@ export {
|
|
|
627
630
|
notification,
|
|
628
631
|
plan,
|
|
629
632
|
review,
|
|
633
|
+
initApiToken as setupAuth,
|
|
630
634
|
tenancy,
|
|
631
635
|
tenant,
|
|
632
636
|
userverification,
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justins-home/api-services",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@justins-home/http-client": "1.0.
|
|
7
|
+
"@justins-home/http-client": "1.0.4",
|
|
8
8
|
"@justins-home/types": "1.0.0"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { initApiToken as setupAuth } from '@justins-home/http-client';
|