tonightpass 0.0.78 → 0.0.79
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 +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/rest/types/careers/index.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> tonightpass@0.0.
|
|
2
|
+
> tonightpass@0.0.79 build /home/runner/work/tonightpass/tonightpass/packages/node
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
13
|
[32mCJS[39m [1mdist/index.js [22m[32m26.91 KB[39m
|
|
14
14
|
[32mCJS[39m [1mdist/index.js.map [22m[32m84.83 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 730ms
|
|
16
16
|
[32mESM[39m [1mdist/index.mjs [22m[32m22.97 KB[39m
|
|
17
17
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m84.64 KB[39m
|
|
18
|
-
[32mESM[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m44.
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m44.
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 731ms
|
|
19
|
+
[32mDTS[39m ⚡️ Build success in 3710ms
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m44.62 KB[39m
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m44.62 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# tonightpass
|
|
2
2
|
|
|
3
|
+
## 0.0.79
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`969a10d`](https://github.com/tonightpass/tonightpass/commit/969a10df15f0fa15980e0dfc5a25ed8ba7f56991) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update workplace type and remote type in careers types
|
|
8
|
+
|
|
3
9
|
## 0.0.78
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -147,8 +147,8 @@ type CareersJob = {
|
|
|
147
147
|
status: "ALL" | "ONLINE" | "ARCHIVED";
|
|
148
148
|
remote: boolean;
|
|
149
149
|
office: CareersOffice;
|
|
150
|
-
workplaceType:
|
|
151
|
-
remoteType?:
|
|
150
|
+
workplaceType: "ONSITE" | "REMOTE" | "HYBRID";
|
|
151
|
+
remoteType?: "ANYWHERE" | "COUNTRY";
|
|
152
152
|
description?: string;
|
|
153
153
|
categoryId?: number;
|
|
154
154
|
employmentTypeId?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -147,8 +147,8 @@ type CareersJob = {
|
|
|
147
147
|
status: "ALL" | "ONLINE" | "ARCHIVED";
|
|
148
148
|
remote: boolean;
|
|
149
149
|
office: CareersOffice;
|
|
150
|
-
workplaceType:
|
|
151
|
-
remoteType?:
|
|
150
|
+
workplaceType: "ONSITE" | "REMOTE" | "HYBRID";
|
|
151
|
+
remoteType?: "ANYWHERE" | "COUNTRY";
|
|
152
152
|
description?: string;
|
|
153
153
|
categoryId?: number;
|
|
154
154
|
employmentTypeId?: number;
|
package/package.json
CHANGED
|
@@ -17,8 +17,8 @@ export type CareersJob = {
|
|
|
17
17
|
status: "ALL" | "ONLINE" | "ARCHIVED";
|
|
18
18
|
remote: boolean;
|
|
19
19
|
office: CareersOffice;
|
|
20
|
-
workplaceType:
|
|
21
|
-
remoteType?:
|
|
20
|
+
workplaceType: "ONSITE" | "REMOTE" | "HYBRID";
|
|
21
|
+
remoteType?: "ANYWHERE" | "COUNTRY";
|
|
22
22
|
description?: string;
|
|
23
23
|
categoryId?: number;
|
|
24
24
|
employmentTypeId?: number;
|