@voyantjs/sellability 0.20.0 → 0.21.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 CHANGED
@@ -968,7 +968,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
968
968
  id: string;
969
969
  offerId: string;
970
970
  snapshotId: string | null;
971
- status: "pending" | "expired" | "failed" | "running" | "completed";
971
+ status: "pending" | "failed" | "expired" | "running" | "completed";
972
972
  startedAt: string;
973
973
  completedAt: string | null;
974
974
  notes: string | null;
@@ -998,7 +998,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
998
998
  id: string;
999
999
  createdAt: string;
1000
1000
  updatedAt: string;
1001
- status: "pending" | "expired" | "failed" | "running" | "completed";
1001
+ status: "pending" | "failed" | "expired" | "running" | "completed";
1002
1002
  notes: string | null;
1003
1003
  startedAt: string;
1004
1004
  completedAt: string | null;
@@ -1034,7 +1034,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
1034
1034
  id: string;
1035
1035
  offerId: string;
1036
1036
  snapshotId: string | null;
1037
- status: "pending" | "expired" | "failed" | "running" | "completed";
1037
+ status: "pending" | "failed" | "expired" | "running" | "completed";
1038
1038
  startedAt: string;
1039
1039
  completedAt: string | null;
1040
1040
  notes: string | null;
@@ -1073,7 +1073,7 @@ export declare const sellabilityRoutes: import("hono/hono-base").HonoBase<Env, {
1073
1073
  id: string;
1074
1074
  offerId: string;
1075
1075
  snapshotId: string | null;
1076
- status: "pending" | "expired" | "failed" | "running" | "completed";
1076
+ status: "pending" | "failed" | "expired" | "running" | "completed";
1077
1077
  startedAt: string;
1078
1078
  completedAt: string | null;
1079
1079
  notes: string | null;
package/dist/schema.d.ts CHANGED
@@ -1211,7 +1211,7 @@ export declare const offerRefreshRuns: import("drizzle-orm/pg-core").PgTableWith
1211
1211
  tableName: "offer_refresh_runs";
1212
1212
  dataType: "string";
1213
1213
  columnType: "PgEnumColumn";
1214
- data: "pending" | "expired" | "failed" | "running" | "completed";
1214
+ data: "pending" | "failed" | "expired" | "running" | "completed";
1215
1215
  driverParam: string;
1216
1216
  notNull: true;
1217
1217
  hasDefault: true;
package/dist/service.d.ts CHANGED
@@ -571,7 +571,7 @@ export declare const sellabilityService: {
571
571
  id: string;
572
572
  offerId: string;
573
573
  snapshotId: string | null;
574
- status: "pending" | "expired" | "failed" | "running" | "completed";
574
+ status: "pending" | "failed" | "expired" | "running" | "completed";
575
575
  startedAt: Date;
576
576
  completedAt: Date | null;
577
577
  notes: string | null;
@@ -587,7 +587,7 @@ export declare const sellabilityService: {
587
587
  id: string;
588
588
  offerId: string;
589
589
  snapshotId: string | null;
590
- status: "pending" | "expired" | "failed" | "running" | "completed";
590
+ status: "pending" | "failed" | "expired" | "running" | "completed";
591
591
  startedAt: Date;
592
592
  completedAt: Date | null;
593
593
  notes: string | null;
@@ -600,7 +600,7 @@ export declare const sellabilityService: {
600
600
  id: string;
601
601
  createdAt: Date;
602
602
  updatedAt: Date;
603
- status: "pending" | "expired" | "failed" | "running" | "completed";
603
+ status: "pending" | "failed" | "expired" | "running" | "completed";
604
604
  notes: string | null;
605
605
  startedAt: Date;
606
606
  completedAt: Date | null;
@@ -611,7 +611,7 @@ export declare const sellabilityService: {
611
611
  id: string;
612
612
  offerId: string;
613
613
  snapshotId: string | null;
614
- status: "pending" | "expired" | "failed" | "running" | "completed";
614
+ status: "pending" | "failed" | "expired" | "running" | "completed";
615
615
  startedAt: Date;
616
616
  completedAt: Date | null;
617
617
  notes: string | null;
@@ -53,8 +53,8 @@ export declare const sellabilityPolicyResultStatusSchema: z.ZodEnum<{
53
53
  }>;
54
54
  export declare const offerRefreshRunStatusSchema: z.ZodEnum<{
55
55
  pending: "pending";
56
- expired: "expired";
57
56
  failed: "failed";
57
+ expired: "expired";
58
58
  running: "running";
59
59
  completed: "completed";
60
60
  }>;
@@ -450,8 +450,8 @@ export declare const offerRefreshRunCoreSchema: z.ZodObject<{
450
450
  snapshotId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
451
451
  status: z.ZodDefault<z.ZodEnum<{
452
452
  pending: "pending";
453
- expired: "expired";
454
453
  failed: "failed";
454
+ expired: "expired";
455
455
  running: "running";
456
456
  completed: "completed";
457
457
  }>>;
@@ -465,8 +465,8 @@ export declare const insertOfferRefreshRunSchema: z.ZodObject<{
465
465
  snapshotId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
466
466
  status: z.ZodDefault<z.ZodEnum<{
467
467
  pending: "pending";
468
- expired: "expired";
469
468
  failed: "failed";
469
+ expired: "expired";
470
470
  running: "running";
471
471
  completed: "completed";
472
472
  }>>;
@@ -480,8 +480,8 @@ export declare const updateOfferRefreshRunSchema: z.ZodObject<{
480
480
  snapshotId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
481
481
  status: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
482
482
  pending: "pending";
483
- expired: "expired";
484
483
  failed: "failed";
484
+ expired: "expired";
485
485
  running: "running";
486
486
  completed: "completed";
487
487
  }>>>;
@@ -497,8 +497,8 @@ export declare const offerRefreshRunListQuerySchema: z.ZodObject<{
497
497
  snapshotId: z.ZodOptional<z.ZodString>;
498
498
  status: z.ZodOptional<z.ZodEnum<{
499
499
  pending: "pending";
500
- expired: "expired";
501
500
  failed: "failed";
501
+ expired: "expired";
502
502
  running: "running";
503
503
  completed: "completed";
504
504
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/sellability",
3
- "version": "0.20.0",
3
+ "version": "0.21.1",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -29,15 +29,15 @@
29
29
  "drizzle-orm": "^0.45.2",
30
30
  "hono": "^4.12.10",
31
31
  "zod": "^4.3.6",
32
- "@voyantjs/availability": "0.20.0",
33
- "@voyantjs/core": "0.20.0",
34
- "@voyantjs/db": "0.20.0",
35
- "@voyantjs/distribution": "0.20.0",
36
- "@voyantjs/hono": "0.20.0",
37
- "@voyantjs/markets": "0.20.0",
38
- "@voyantjs/pricing": "0.20.0",
39
- "@voyantjs/products": "0.20.0",
40
- "@voyantjs/transactions": "0.20.0"
32
+ "@voyantjs/availability": "0.21.1",
33
+ "@voyantjs/core": "0.21.1",
34
+ "@voyantjs/db": "0.21.1",
35
+ "@voyantjs/distribution": "0.21.1",
36
+ "@voyantjs/hono": "0.21.1",
37
+ "@voyantjs/markets": "0.21.1",
38
+ "@voyantjs/pricing": "0.21.1",
39
+ "@voyantjs/products": "0.21.1",
40
+ "@voyantjs/transactions": "0.21.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "typescript": "^6.0.2",