@anker-in/ui 0.1.9 → 0.1.11
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/demo-room.d.mts +3 -57
- package/dist/demo-room.d.ts +3 -57
- package/dist/demo-room.js +123 -303
- package/dist/demo-room.js.map +1 -1
- package/dist/demo-room.mjs +124 -302
- package/dist/demo-room.mjs.map +1 -1
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +559 -359
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +559 -359
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -158,6 +158,7 @@ interface DemoRoom {
|
|
|
158
158
|
code: string;
|
|
159
159
|
name: string;
|
|
160
160
|
description: string;
|
|
161
|
+
equipment?: string[];
|
|
161
162
|
address: string;
|
|
162
163
|
location?: DemoRoomLocation;
|
|
163
164
|
type: DemoRoomType;
|
|
@@ -213,7 +214,7 @@ interface Booking {
|
|
|
213
214
|
demoroom_code: string;
|
|
214
215
|
demoroom_name?: string;
|
|
215
216
|
address?: string;
|
|
216
|
-
equipment?: string;
|
|
217
|
+
equipment?: string[];
|
|
217
218
|
latitude?: number;
|
|
218
219
|
longitude?: number;
|
|
219
220
|
timezone?: string;
|
|
@@ -319,7 +320,7 @@ interface BookingSuccessProps {
|
|
|
319
320
|
bookingData?: Booking;
|
|
320
321
|
token?: string;
|
|
321
322
|
apiConfig?: DemoRoomApiConfig;
|
|
322
|
-
onScheduleAgain?: () => void;
|
|
323
|
+
onScheduleAgain?: (demoRoomCode: string) => void;
|
|
323
324
|
onCancelSuccess?: (booking: Booking) => void;
|
|
324
325
|
className?: string;
|
|
325
326
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -158,6 +158,7 @@ interface DemoRoom {
|
|
|
158
158
|
code: string;
|
|
159
159
|
name: string;
|
|
160
160
|
description: string;
|
|
161
|
+
equipment?: string[];
|
|
161
162
|
address: string;
|
|
162
163
|
location?: DemoRoomLocation;
|
|
163
164
|
type: DemoRoomType;
|
|
@@ -213,7 +214,7 @@ interface Booking {
|
|
|
213
214
|
demoroom_code: string;
|
|
214
215
|
demoroom_name?: string;
|
|
215
216
|
address?: string;
|
|
216
|
-
equipment?: string;
|
|
217
|
+
equipment?: string[];
|
|
217
218
|
latitude?: number;
|
|
218
219
|
longitude?: number;
|
|
219
220
|
timezone?: string;
|
|
@@ -319,7 +320,7 @@ interface BookingSuccessProps {
|
|
|
319
320
|
bookingData?: Booking;
|
|
320
321
|
token?: string;
|
|
321
322
|
apiConfig?: DemoRoomApiConfig;
|
|
322
|
-
onScheduleAgain?: () => void;
|
|
323
|
+
onScheduleAgain?: (demoRoomCode: string) => void;
|
|
323
324
|
onCancelSuccess?: (booking: Booking) => void;
|
|
324
325
|
className?: string;
|
|
325
326
|
/**
|