bt-core-app 1.4.511 → 1.4.512
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/bt-core-app.js +5851 -5804
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -456,7 +456,7 @@ declare interface CreateStoreBuilderOptions {
|
|
|
456
456
|
builderQuery?: (params: any) => string;
|
|
457
457
|
/**overrides the default */
|
|
458
458
|
buildUrl?: (path: PathOptions) => string;
|
|
459
|
-
dates
|
|
459
|
+
dates: BTDates;
|
|
460
460
|
demo?: BTDemo;
|
|
461
461
|
/**ideally required. For determining store mode */
|
|
462
462
|
navigation?: BTNavigation;
|
|
@@ -2039,7 +2039,7 @@ export declare interface UseStoreOptions {
|
|
|
2039
2039
|
builderQuery?: (params: any) => string;
|
|
2040
2040
|
/**overrides the default */
|
|
2041
2041
|
buildUrl?: (path: PathOptions) => string;
|
|
2042
|
-
dates
|
|
2042
|
+
dates: BTDates;
|
|
2043
2043
|
demo?: BTDemo;
|
|
2044
2044
|
/**custom override for getting the key to store */
|
|
2045
2045
|
getStorageKey?: (dOptions: GetStorageKeyOptions) => string;
|
|
@@ -2076,7 +2076,7 @@ declare interface UseWholeLastUpdateStoreOptions {
|
|
|
2076
2076
|
api?: BTApi;
|
|
2077
2077
|
/**ideally required. For setting unique local storage keys */
|
|
2078
2078
|
auth?: BTAuth;
|
|
2079
|
-
dates
|
|
2079
|
+
dates: BTDates;
|
|
2080
2080
|
demo?: BTDemo;
|
|
2081
2081
|
/**custom override for getting the key to store */
|
|
2082
2082
|
getStorageKey?: (dOptions: GetStorageKeyOptions) => string;
|
package/package.json
CHANGED