@restaround/react 1.4.11 → 1.4.13

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.
@@ -1,3 +1,11 @@
1
+ export type BranchWorkHour = {
2
+ openAt: string;
3
+ closeAt: string;
4
+ };
5
+ export type BranchWorkDay = {
6
+ day: number;
7
+ hours: BranchWorkHour | null;
8
+ };
1
9
  export interface Branch {
2
10
  id: number;
3
11
  name: string;
@@ -1,3 +1,11 @@
1
+ export type BranchWorkHour = {
2
+ openAt: string;
3
+ closeAt: string;
4
+ };
5
+ export type BranchWorkDay = {
6
+ day: number;
7
+ hours: BranchWorkHour | null;
8
+ };
1
9
  export interface Branch {
2
10
  id: number;
3
11
  name: string;
@@ -1,3 +1,11 @@
1
+ export type BranchWorkHour = {
2
+ openAt: string;
3
+ closeAt: string;
4
+ };
5
+ export type BranchWorkDay = {
6
+ day: number;
7
+ hours: BranchWorkHour | null;
8
+ };
1
9
  export interface Branch {
2
10
  id: number;
3
11
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restaround/react",
3
- "version": "1.4.11",
3
+ "version": "1.4.13",
4
4
  "description": "React Library by restaround.co",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",