@voyantjs/sellability 0.9.0 → 0.10.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/dist/routes.d.ts +4 -4
- package/dist/service.d.ts +4 -4
- package/package.json +10 -10
package/dist/routes.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
41
41
|
} | null;
|
|
42
42
|
channel: {
|
|
43
43
|
id: string;
|
|
44
|
-
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner";
|
|
44
|
+
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner" | "connect";
|
|
45
45
|
} | null;
|
|
46
46
|
sellability: {
|
|
47
47
|
mode: "on_request" | "sellable" | "unavailable";
|
|
@@ -167,7 +167,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
167
167
|
} | null;
|
|
168
168
|
channel: {
|
|
169
169
|
id: string;
|
|
170
|
-
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner";
|
|
170
|
+
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner" | "connect";
|
|
171
171
|
} | null;
|
|
172
172
|
sellability: {
|
|
173
173
|
mode: "on_request" | "sellable" | "unavailable";
|
|
@@ -279,7 +279,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
279
279
|
} | null;
|
|
280
280
|
channel: {
|
|
281
281
|
id: string;
|
|
282
|
-
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner";
|
|
282
|
+
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner" | "connect";
|
|
283
283
|
} | null;
|
|
284
284
|
sellability: {
|
|
285
285
|
mode: "on_request" | "sellable" | "unavailable";
|
|
@@ -665,9 +665,9 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
665
665
|
updatedAt: string;
|
|
666
666
|
scope: "product" | "option" | "channel" | "market" | "global";
|
|
667
667
|
notes: string | null;
|
|
668
|
+
active: boolean;
|
|
668
669
|
productId: string | null;
|
|
669
670
|
optionId: string | null;
|
|
670
|
-
active: boolean;
|
|
671
671
|
channelId: string | null;
|
|
672
672
|
marketId: string | null;
|
|
673
673
|
priority: number;
|
package/dist/service.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ export declare const sellabilityService: {
|
|
|
99
99
|
} | null;
|
|
100
100
|
channel: {
|
|
101
101
|
id: string;
|
|
102
|
-
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner";
|
|
102
|
+
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner" | "connect";
|
|
103
103
|
} | null;
|
|
104
104
|
sellability: {
|
|
105
105
|
mode: "on_request" | "sellable" | "unavailable";
|
|
@@ -326,7 +326,7 @@ export declare const sellabilityService: {
|
|
|
326
326
|
} | null;
|
|
327
327
|
channel: {
|
|
328
328
|
id: string;
|
|
329
|
-
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner";
|
|
329
|
+
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner" | "connect";
|
|
330
330
|
} | null;
|
|
331
331
|
sellability: {
|
|
332
332
|
mode: "on_request" | "sellable" | "unavailable";
|
|
@@ -483,9 +483,9 @@ export declare const sellabilityService: {
|
|
|
483
483
|
updatedAt: Date;
|
|
484
484
|
scope: "product" | "option" | "channel" | "market" | "global";
|
|
485
485
|
notes: string | null;
|
|
486
|
+
active: boolean;
|
|
486
487
|
productId: string | null;
|
|
487
488
|
optionId: string | null;
|
|
488
|
-
active: boolean;
|
|
489
489
|
channelId: string | null;
|
|
490
490
|
marketId: string | null;
|
|
491
491
|
priority: number;
|
|
@@ -762,7 +762,7 @@ export declare const sellabilityService: {
|
|
|
762
762
|
} | null;
|
|
763
763
|
channel: {
|
|
764
764
|
id: string;
|
|
765
|
-
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner";
|
|
765
|
+
kind: "reseller" | "direct" | "affiliate" | "ota" | "marketplace" | "api_partner" | "connect";
|
|
766
766
|
} | null;
|
|
767
767
|
sellability: {
|
|
768
768
|
mode: "on_request" | "sellable" | "unavailable";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/sellability",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
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/availability": "0.
|
|
29
|
-
"@voyantjs/core": "0.
|
|
30
|
-
"@voyantjs/db": "0.
|
|
31
|
-
"@voyantjs/distribution": "0.
|
|
32
|
-
"@voyantjs/hono": "0.
|
|
33
|
-
"@voyantjs/markets": "0.
|
|
34
|
-
"@voyantjs/pricing": "0.
|
|
35
|
-
"@voyantjs/products": "0.
|
|
36
|
-
"@voyantjs/transactions": "0.
|
|
28
|
+
"@voyantjs/availability": "0.10.0",
|
|
29
|
+
"@voyantjs/core": "0.10.0",
|
|
30
|
+
"@voyantjs/db": "0.10.0",
|
|
31
|
+
"@voyantjs/distribution": "0.10.0",
|
|
32
|
+
"@voyantjs/hono": "0.10.0",
|
|
33
|
+
"@voyantjs/markets": "0.10.0",
|
|
34
|
+
"@voyantjs/pricing": "0.10.0",
|
|
35
|
+
"@voyantjs/products": "0.10.0",
|
|
36
|
+
"@voyantjs/transactions": "0.10.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"typescript": "^6.0.2",
|