@justins-home/types 1.0.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/.turbo/turbo-build.log +14 -0
- package/CHANGELOG.md +17 -0
- package/dist/index.js +17 -0
- package/dist/index.mjs +0 -0
- package/generated/api-types.ts +11742 -0
- package/package.json +16 -0
- package/src/api.types.ts +33 -0
- package/src/common.types.ts +37 -0
- package/src/compliance.types.ts +93 -0
- package/src/feature.types.ts +38 -0
- package/src/index.ts +20 -0
- package/src/inspection.types.ts +37 -0
- package/src/listing.types.ts +65 -0
- package/src/maintenance.types.ts +59 -0
- package/src/messaging.types.ts +36 -0
- package/src/notification.types.ts +15 -0
- package/src/plan.types.ts +43 -0
- package/src/review.types.ts +16 -0
- package/src/tenancy.types.ts +43 -0
- package/src/user.types.ts +17 -0
- package/src/verification.types.ts +65 -0
- package/src/wishlist.types.ts +7 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
WARN Issue while reading "/home/runner/work/justins-home-platform-ui/justins-home-platform-ui/.npmrc". Failed to replace env in config: ${NODE_AUTH_TOKEN}
|
|
2
|
+
|
|
3
|
+
> @justins-home/types@1.0.0 build /home/runner/work/justins-home-platform-ui/justins-home-platform-ui/packages/types
|
|
4
|
+
> tsup src/index.ts --format esm,cjs
|
|
5
|
+
|
|
6
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
7
|
+
[34mCLI[39m tsup v8.5.1
|
|
8
|
+
[34mCLI[39m Target: node16
|
|
9
|
+
[34mESM[39m Build start
|
|
10
|
+
[34mCJS[39m Build start
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m0 B[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 120ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m744.00 B[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 121ms
|
package/CHANGELOG.md
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
|
6
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
7
|
+
for (let key of __getOwnPropNames(from))
|
|
8
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
9
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
+
}
|
|
11
|
+
return to;
|
|
12
|
+
};
|
|
13
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
14
|
+
|
|
15
|
+
// src/index.ts
|
|
16
|
+
var index_exports = {};
|
|
17
|
+
module.exports = __toCommonJS(index_exports);
|
package/dist/index.mjs
ADDED
|
File without changes
|