@dereekb/firebase 13.2.1 → 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 +3 -3
- package/index.cjs.js.map +1 -1
- package/index.esm.js +4 -4
- package/index.esm.js.map +1 -1
- package/package.json +5 -5
- package/test/package.json +6 -6
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(
|
|
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(
|
|
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(
|
|
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'),
|