@tinywork/glass 1.0.43 → 1.0.45
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.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ declare global {
|
|
|
97
97
|
readonly?: boolean;
|
|
98
98
|
|
|
99
99
|
prefix?: string;
|
|
100
|
+
exp?: number;
|
|
100
101
|
};
|
|
101
102
|
|
|
102
103
|
type DocFullSchema = DocSchema & {
|
|
@@ -194,7 +195,7 @@ declare global {
|
|
|
194
195
|
|
|
195
196
|
type MockMode = "None" | "Local" | "Advance";
|
|
196
197
|
type ActionMode = "Modify" | "Add" | "Remove";
|
|
197
|
-
type ActionTarget = "Origin";
|
|
198
|
+
type ActionTarget = "Origin" | "Headers";
|
|
198
199
|
type ContextMenuType =
|
|
199
200
|
| "log"
|
|
200
201
|
| "group"
|
|
@@ -247,7 +248,6 @@ declare global {
|
|
|
247
248
|
statusCode?: number;
|
|
248
249
|
status?: boolean;
|
|
249
250
|
updatedAt?: string;
|
|
250
|
-
cache?: boolean;
|
|
251
251
|
};
|
|
252
252
|
|
|
253
253
|
type RewriteActionSchema = {
|
|
@@ -261,7 +261,7 @@ declare global {
|
|
|
261
261
|
regex?: boolean;
|
|
262
262
|
status?: boolean;
|
|
263
263
|
updatedAt?: string;
|
|
264
|
-
|
|
264
|
+
sync?: boolean;
|
|
265
265
|
};
|
|
266
266
|
|
|
267
267
|
type FilterSchema = {
|