dce-reactkit 3.2.0-beta.5 → 3.2.0-beta.6
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.ts
CHANGED
|
@@ -632,10 +632,10 @@ declare type Log = (LogMainInfo & LogSourceSpecificInfo & LogTypeSpecificInfo);
|
|
|
632
632
|
*/
|
|
633
633
|
declare type LogFunction = (opts: ({
|
|
634
634
|
category: string | {
|
|
635
|
-
|
|
635
|
+
_: string;
|
|
636
636
|
};
|
|
637
637
|
subcategory?: string | {
|
|
638
|
-
|
|
638
|
+
_: string;
|
|
639
639
|
};
|
|
640
640
|
tags?: string[];
|
|
641
641
|
metadata?: {
|
package/package.json
CHANGED
package/src/types/LogFunction.ts
CHANGED
|
@@ -11,9 +11,9 @@ type LogFunction = (
|
|
|
11
11
|
// Shared info
|
|
12
12
|
{
|
|
13
13
|
// Category of the event (each app determines how to categorize its events)
|
|
14
|
-
category: string | {
|
|
14
|
+
category: string | { _: string },
|
|
15
15
|
// Subcategory of the event (each app determines how to categorize its events)
|
|
16
|
-
subcategory?: string | {
|
|
16
|
+
subcategory?: string | { _: string },
|
|
17
17
|
// List of tags that apply to this action (each app determines tag usage)
|
|
18
18
|
tags?: string[],
|
|
19
19
|
// Additional optional custom metadata
|