@pisell/pisellos 1.0.111 → 1.0.112

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.
@@ -49,5 +49,5 @@ export declare class Product extends BaseModule implements Module {
49
49
  getCategories(): ProductCategory[];
50
50
  setOtherParams(key: string, value: any): void;
51
51
  getOtherParams(): any;
52
- getProductType(): "normal" | "duration" | "session";
52
+ getProductType(): "duration" | "session" | "normal";
53
53
  }
@@ -300,6 +300,16 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
300
300
  errorList: any[];
301
301
  };
302
302
  getTimeSlotByAllResources(resources_code: string): any[];
303
+ getTimeSlotByAllResourcesForDate({ resources_code, startDate, endDate }: {
304
+ resources_code: string;
305
+ startDate: string;
306
+ endDate: string;
307
+ }): Promise<{
308
+ date: string;
309
+ status: string;
310
+ week: string;
311
+ weekNum: 0 | 2 | 1 | 3 | 4 | 5 | 6;
312
+ }[]>;
303
313
  submitTimeSlot(timeSlots: TimeSliceItem): void;
304
314
  private getScheduleDataByIds;
305
315
  openProductDetail(productId: number): Promise<void>;