@pisell/pisellos 0.0.360 → 0.0.362

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
  }
@@ -299,6 +299,12 @@ export declare class BookingByStepImpl extends BaseModule implements Module {
299
299
  errorList: any[];
300
300
  };
301
301
  getTimeSlotByAllResources(resources_code: string): any[];
302
+ getTimeSlotByAllResourcesForDate(resources_code: string, start_date: string, end_date: string): Promise<{
303
+ date: string;
304
+ status: string;
305
+ week: string;
306
+ weekNum: 0 | 2 | 1 | 5 | 3 | 4 | 6;
307
+ }[]>;
302
308
  submitTimeSlot(timeSlots: TimeSliceItem): void;
303
309
  private getScheduleDataByIds;
304
310
  openProductDetail(productId: number): Promise<void>;