narrat 3.8.2 → 3.8.3
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/config/common-config.d.ts +2 -0
- package/dist/config/config-input.d.ts +4 -0
- package/dist/data/all-stores.d.ts +5 -0
- package/dist/narrat.es.js +1426 -1424
- package/dist/narrat.es.js.map +1 -1
- package/dist/narrat.umd.js +64 -64
- package/dist/narrat.umd.js.map +1 -1
- package/dist/stores/main-store.d.ts +4 -0
- package/dist/utils/data-helpers.d.ts +1 -0
- package/package.json +1 -1
|
@@ -98,6 +98,7 @@ export declare const SavesConfigSchema: import("@sinclair/typebox").TObject<{
|
|
|
98
98
|
mode: import("@sinclair/typebox").TString;
|
|
99
99
|
slots: import("@sinclair/typebox").TNumber;
|
|
100
100
|
runOnReload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
101
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
101
102
|
}>;
|
|
102
103
|
export type SavesConfig = Static<typeof SavesConfigSchema>;
|
|
103
104
|
export declare const ScriptsConfigSchema: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
|
@@ -231,6 +232,7 @@ export declare const CommonConfigInputSchema: import("@sinclair/typebox").TObjec
|
|
|
231
232
|
mode: import("@sinclair/typebox").TString;
|
|
232
233
|
slots: import("@sinclair/typebox").TNumber;
|
|
233
234
|
runOnReload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
235
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
234
236
|
}>>;
|
|
235
237
|
}>;
|
|
236
238
|
export type CommonConfigInput = Static<typeof CommonConfigInputSchema>;
|
|
@@ -676,6 +676,7 @@ export declare const ConfigInputSchemaWithCommon: import("@sinclair/typebox").TI
|
|
|
676
676
|
mode: import("@sinclair/typebox").TString;
|
|
677
677
|
slots: import("@sinclair/typebox").TNumber;
|
|
678
678
|
runOnReload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
679
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
679
680
|
}>>;
|
|
680
681
|
}>;
|
|
681
682
|
}>]>;
|
|
@@ -1081,6 +1082,7 @@ export declare const ConfigInputSchemaWithoutCommon: import("@sinclair/typebox")
|
|
|
1081
1082
|
mode: import("@sinclair/typebox").TString;
|
|
1082
1083
|
slots: import("@sinclair/typebox").TNumber;
|
|
1083
1084
|
runOnReload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
1085
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1084
1086
|
}>>;
|
|
1085
1087
|
}>]>;
|
|
1086
1088
|
export type ConfigInputWithoutCommon = Static<typeof ConfigInputSchemaWithoutCommon>;
|
|
@@ -1486,6 +1488,7 @@ export declare const ConfigInputSchema: import("@sinclair/typebox").TUnion<[impo
|
|
|
1486
1488
|
mode: import("@sinclair/typebox").TString;
|
|
1487
1489
|
slots: import("@sinclair/typebox").TNumber;
|
|
1488
1490
|
runOnReload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
1491
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1489
1492
|
}>>;
|
|
1490
1493
|
}>;
|
|
1491
1494
|
}>]>, import("@sinclair/typebox").TIntersect<[import("@sinclair/typebox").TObject<{
|
|
@@ -1889,6 +1892,7 @@ export declare const ConfigInputSchema: import("@sinclair/typebox").TUnion<[impo
|
|
|
1889
1892
|
mode: import("@sinclair/typebox").TString;
|
|
1890
1893
|
slots: import("@sinclair/typebox").TNumber;
|
|
1891
1894
|
runOnReload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
1895
|
+
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1892
1896
|
}>>;
|
|
1893
1897
|
}>]>]>;
|
|
1894
1898
|
export declare function isConfigInputWithCommon(config: ConfigInput): config is ConfigInputWithCommon;
|
|
@@ -458,6 +458,7 @@ export declare const sourceAllStores: {
|
|
|
458
458
|
} | undefined;
|
|
459
459
|
saves?: {
|
|
460
460
|
runOnReload?: string | undefined;
|
|
461
|
+
disabled?: boolean | undefined;
|
|
461
462
|
slots: number;
|
|
462
463
|
mode: string;
|
|
463
464
|
} | undefined;
|
|
@@ -1106,6 +1107,7 @@ export declare const sourceAllStores: {
|
|
|
1106
1107
|
} | undefined;
|
|
1107
1108
|
saves?: {
|
|
1108
1109
|
runOnReload?: string | undefined;
|
|
1110
|
+
disabled?: boolean | undefined;
|
|
1109
1111
|
slots: number;
|
|
1110
1112
|
mode: string;
|
|
1111
1113
|
} | undefined;
|
|
@@ -1754,6 +1756,7 @@ export declare const sourceAllStores: {
|
|
|
1754
1756
|
} | undefined;
|
|
1755
1757
|
saves?: {
|
|
1756
1758
|
runOnReload?: string | undefined;
|
|
1759
|
+
disabled?: boolean | undefined;
|
|
1757
1760
|
slots: number;
|
|
1758
1761
|
mode: string;
|
|
1759
1762
|
} | undefined;
|
|
@@ -2402,6 +2405,7 @@ export declare const sourceAllStores: {
|
|
|
2402
2405
|
} | undefined;
|
|
2403
2406
|
saves?: {
|
|
2404
2407
|
runOnReload?: string | undefined;
|
|
2408
|
+
disabled?: boolean | undefined;
|
|
2405
2409
|
slots: number;
|
|
2406
2410
|
mode: string;
|
|
2407
2411
|
} | undefined;
|
|
@@ -2851,6 +2855,7 @@ export declare const sourceAllStores: {
|
|
|
2851
2855
|
} | undefined;
|
|
2852
2856
|
saves?: {
|
|
2853
2857
|
runOnReload?: string | undefined;
|
|
2858
|
+
disabled?: boolean | undefined;
|
|
2854
2859
|
slots?: number | undefined;
|
|
2855
2860
|
mode?: string | undefined;
|
|
2856
2861
|
} | undefined;
|