@voyantjs/sellability 0.1.0 → 0.1.1
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/dist/routes.d.ts +1 -1
- package/dist/service.d.ts +1 -1
- package/package.json +15 -10
package/dist/routes.d.ts
CHANGED
|
@@ -439,8 +439,8 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
439
439
|
createdAt: string;
|
|
440
440
|
isPrimary: boolean;
|
|
441
441
|
role: "other" | "traveler" | "occupant" | "primary_contact" | "beneficiary" | "service_assignee";
|
|
442
|
-
offerItemId: string;
|
|
443
442
|
participantId: string;
|
|
443
|
+
offerItemId: string;
|
|
444
444
|
}[];
|
|
445
445
|
};
|
|
446
446
|
};
|
package/dist/service.d.ts
CHANGED
|
@@ -227,8 +227,8 @@ export declare const sellabilityService: {
|
|
|
227
227
|
createdAt: Date;
|
|
228
228
|
isPrimary: boolean;
|
|
229
229
|
role: "other" | "traveler" | "occupant" | "primary_contact" | "beneficiary" | "service_assignee";
|
|
230
|
-
offerItemId: string;
|
|
231
230
|
participantId: string;
|
|
231
|
+
offerItemId: string;
|
|
232
232
|
}[];
|
|
233
233
|
} | null>;
|
|
234
234
|
persistSnapshot(db: PostgresJsDatabase, input: SellabilityPersistSnapshotInput): Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/sellability",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "FSL-1.1-Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"drizzle-orm": "^0.45.2",
|
|
26
26
|
"hono": "^4.12.10",
|
|
27
27
|
"zod": "^4.3.6",
|
|
28
|
-
"@voyantjs/
|
|
29
|
-
"@voyantjs/db": "0.1.
|
|
30
|
-
"@voyantjs/
|
|
31
|
-
"@voyantjs/distribution": "0.1.
|
|
32
|
-
"@voyantjs/
|
|
33
|
-
"@voyantjs/
|
|
34
|
-
"@voyantjs/
|
|
35
|
-
"@voyantjs/
|
|
36
|
-
"@voyantjs/
|
|
28
|
+
"@voyantjs/core": "0.1.1",
|
|
29
|
+
"@voyantjs/db": "0.1.1",
|
|
30
|
+
"@voyantjs/hono": "0.1.1",
|
|
31
|
+
"@voyantjs/distribution": "0.1.1",
|
|
32
|
+
"@voyantjs/availability": "0.1.1",
|
|
33
|
+
"@voyantjs/markets": "0.1.1",
|
|
34
|
+
"@voyantjs/pricing": "0.1.1",
|
|
35
|
+
"@voyantjs/products": "0.1.1",
|
|
36
|
+
"@voyantjs/transactions": "0.1.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"typescript": "^6.0.2",
|
|
@@ -45,6 +45,11 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/voyantjs/voyant.git",
|
|
51
|
+
"directory": "packages/sellability"
|
|
52
|
+
},
|
|
48
53
|
"scripts": {
|
|
49
54
|
"typecheck": "tsc --noEmit",
|
|
50
55
|
"lint": "biome check src/",
|