@timardex/cluemart-shared 1.0.63 → 1.0.64

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/index.d.mts CHANGED
@@ -233,7 +233,6 @@ interface MarketInfoFormData {
233
233
  dateTime: DateTimeWithPriceType[];
234
234
  marketId: string;
235
235
  packInTime: number;
236
- packOutTime: number;
237
236
  paymentDueHours: number;
238
237
  paymentInfo: PaymentInfoType[];
239
238
  requirements?: Requirement[];
package/dist/index.d.ts CHANGED
@@ -233,7 +233,6 @@ interface MarketInfoFormData {
233
233
  dateTime: DateTimeWithPriceType[];
234
234
  marketId: string;
235
235
  packInTime: number;
236
- packOutTime: number;
237
236
  paymentDueHours: number;
238
237
  paymentInfo: PaymentInfoType[];
239
238
  requirements?: Requirement[];
package/dist/index.mjs CHANGED
@@ -454,7 +454,6 @@ var marketInfoSchema = yup2.object().shape({
454
454
  dateTime: yup2.array().of(dateTimeWithPriceSchema).required("DateTime is required"),
455
455
  marketId: yup2.string().trim().required("Market ID is required"),
456
456
  packInTime: yup2.number().typeError("Pack in time must be a number").min(1, "Pack in time must be at least 1").required("Pack in time is required").test("no-leading-zeros", "", noLeadingZeros("Pack in time")),
457
- packOutTime: yup2.number().typeError("Pack out time must be a number").min(1, "Pack out time must be at least 1").required("Pack out time is required").test("no-leading-zeros", "", noLeadingZeros("Pack out time")),
458
457
  paymentDueHours: yup2.number().typeError("Payment due hours must be a number").min(1, "Payment due hours must be at least 1").required("Payment due hours is required").test("no-leading-zeros", "", noLeadingZeros("Payment due hours")),
459
458
  paymentInfo: yup2.array().of(paymentInfoSchema).min(1, "At least one payment info is required").required("Payment info is required")
460
459
  });
@@ -647,8 +646,6 @@ var defaultMarketInfoFormValues = {
647
646
  marketId: "",
648
647
  packInTime: 2,
649
648
  // e.g., 2 hours before market opens
650
- packOutTime: 1,
651
- // e.g., 1 hour after market closes
652
649
  paymentDueHours: 24,
653
650
  paymentInfo: [],
654
651
  requirements: []
@@ -948,7 +945,6 @@ function useMarketInfoForm(data) {
948
945
  dateTime: data.dateTime,
949
946
  marketId: data.marketId,
950
947
  packInTime: data.packInTime,
951
- packOutTime: data.packOutTime,
952
948
  paymentDueHours: data.paymentDueHours,
953
949
  paymentInfo: data.paymentInfo,
954
950
  requirements: data.requirements
@@ -963,7 +959,6 @@ function useMarketInfoForm(data) {
963
959
  dateTime,
964
960
  marketId,
965
961
  packInTime,
966
- packOutTime,
967
962
  paymentDueHours,
968
963
  paymentInfo,
969
964
  requirements
@@ -976,7 +971,6 @@ function useMarketInfoForm(data) {
976
971
  dateTime,
977
972
  marketId,
978
973
  packInTime,
979
- packOutTime,
980
974
  paymentDueHours,
981
975
  paymentInfo,
982
976
  requirements
@@ -1773,7 +1767,6 @@ var MARKET_INFO = gql5`
1773
1767
  }
1774
1768
  marketId
1775
1769
  packInTime
1776
- packOutTime
1777
1770
  paymentDueHours
1778
1771
  paymentInfo {
1779
1772
  accountHolderName
@@ -3434,12 +3427,6 @@ var marketInfo = [
3434
3427
  keyboardType: "number-pad",
3435
3428
  name: "packInTime",
3436
3429
  placeholder: "Pack In Time (in hours)"
3437
- },
3438
- {
3439
- helperText: "Pack Out Time *",
3440
- keyboardType: "number-pad",
3441
- name: "packOutTime",
3442
- placeholder: "Pack Out Time (in hours)"
3443
3430
  }
3444
3431
  ];
3445
3432
  var marketInfoPaymentInfo = [