@dereekb/firebase 13.2.0 → 13.2.2

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/index.cjs.js CHANGED
@@ -6921,7 +6921,7 @@ const createNotificationSummaryParamsType = arktype.type({
6921
6921
  });
6922
6922
  const updateNotificationSummaryParamsType = targetModelParamsType.merge({
6923
6923
  'flagAllRead?': model.clearable('boolean'),
6924
- 'setReadAtTime?': model.clearable('string.date.parse')
6924
+ 'setReadAtTime?': model.clearable(model.ARKTYPE_DATE_DTO_TYPE)
6925
6925
  });
6926
6926
  const createNotificationBoxParamsType = arktype.type({
6927
6927
  model: firestoreModelKeyType
@@ -7912,14 +7912,14 @@ const processStorageFileParamsType = targetModelParamsType.merge({
7912
7912
  });
7913
7913
  const processAllQueuedStorageFilesParamsType = arktype.type({});
7914
7914
  const updateStorageFileParamsType = targetModelParamsType.merge({
7915
- 'sdat?': model.clearable('string.date.parse')
7915
+ 'sdat?': model.clearable(model.ARKTYPE_DATE_DTO_TYPE)
7916
7916
  });
7917
7917
  const deleteStorageFileParamsType = targetModelParamsType.merge({
7918
7918
  'force?': model.clearable('boolean')
7919
7919
  });
7920
7920
  const deleteAllQueuedStorageFilesParamsType = arktype.type({});
7921
7921
  const downloadStorageFileParamsType = targetModelParamsType.merge({
7922
- 'expiresAt?': model.clearable('string.date.parse'),
7922
+ 'expiresAt?': model.clearable(model.ARKTYPE_DATE_DTO_TYPE),
7923
7923
  'expiresIn?': model.clearable('number >= 0'),
7924
7924
  'responseDisposition?': model.clearable('string'),
7925
7925
  'responseContentType?': model.clearable('string'),