@hobenakicoffee/libraries 4.1.1 → 4.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "4.1.1",
3
+ "version": "4.2.0",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "repository": {
@@ -3,3 +3,4 @@ export * from "./legal";
3
3
  export * from "./payment";
4
4
  export * from "./platforms";
5
5
  export * from "./services";
6
+ export * from "./shop-service";
@@ -0,0 +1,9 @@
1
+ export const MAX_PRODUCT_PRICE = 9_999_999_999;
2
+
3
+ export const ShopProductType = {
4
+ digital: "digital",
5
+ physical: "physical",
6
+ } as const;
7
+
8
+ export type ShopProductType =
9
+ (typeof ShopProductType)[keyof typeof ShopProductType];
@@ -464,30 +464,6 @@ export type Database = {
464
464
  },
465
465
  ];
466
466
  };
467
- messages_2026_03: {
468
- Row: {
469
- content: string;
470
- conversation_id: string;
471
- created_at: string;
472
- id: number;
473
- sender_id: string;
474
- };
475
- Insert: {
476
- content: string;
477
- conversation_id: string;
478
- created_at?: string;
479
- id?: number;
480
- sender_id: string;
481
- };
482
- Update: {
483
- content?: string;
484
- conversation_id?: string;
485
- created_at?: string;
486
- id?: number;
487
- sender_id?: string;
488
- };
489
- Relationships: [];
490
- };
491
467
  messages_2026_04: {
492
468
  Row: {
493
469
  content: string;