@hobenakicoffee/libraries 1.16.0 → 1.17.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": "1.16.0",
3
+ "version": "1.17.0",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "exports": {
@@ -519,13 +519,17 @@ export type Database = {
519
519
  bio: string | null;
520
520
  created_at: string | null;
521
521
  display_name: string | null;
522
+ first_service_name: string | null;
522
523
  follower_count: number | null;
523
524
  following_count: number | null;
524
525
  full_name: string | null;
526
+ has_first_service: boolean | null;
525
527
  has_wallet_balance: boolean | null;
526
528
  id: string;
527
529
  is_page_active: boolean | null;
528
530
  layout: Json | null;
531
+ onboarding_completed_at: string | null;
532
+ onboarding_step: number | null;
529
533
  page_slug: string;
530
534
  role: Database["public"]["Enums"]["user_role"];
531
535
  social_links: Json | null;
@@ -542,13 +546,17 @@ export type Database = {
542
546
  bio?: string | null;
543
547
  created_at?: string | null;
544
548
  display_name?: string | null;
549
+ first_service_name?: string | null;
545
550
  follower_count?: number | null;
546
551
  following_count?: number | null;
547
552
  full_name?: string | null;
553
+ has_first_service?: boolean | null;
548
554
  has_wallet_balance?: boolean | null;
549
555
  id: string;
550
556
  is_page_active?: boolean | null;
551
557
  layout?: Json | null;
558
+ onboarding_completed_at?: string | null;
559
+ onboarding_step?: number | null;
552
560
  page_slug: string;
553
561
  role?: Database["public"]["Enums"]["user_role"];
554
562
  social_links?: Json | null;
@@ -565,13 +573,17 @@ export type Database = {
565
573
  bio?: string | null;
566
574
  created_at?: string | null;
567
575
  display_name?: string | null;
576
+ first_service_name?: string | null;
568
577
  follower_count?: number | null;
569
578
  following_count?: number | null;
570
579
  full_name?: string | null;
580
+ has_first_service?: boolean | null;
571
581
  has_wallet_balance?: boolean | null;
572
582
  id?: string;
573
583
  is_page_active?: boolean | null;
574
584
  layout?: Json | null;
585
+ onboarding_completed_at?: string | null;
586
+ onboarding_step?: number | null;
575
587
  page_slug?: string;
576
588
  role?: Database["public"]["Enums"]["user_role"];
577
589
  social_links?: Json | null;