@tinywork/glass 1.0.44 → 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 +2 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -195,7 +195,7 @@ declare global {
|
|
|
195
195
|
|
|
196
196
|
type MockMode = "None" | "Local" | "Advance";
|
|
197
197
|
type ActionMode = "Modify" | "Add" | "Remove";
|
|
198
|
-
type ActionTarget = "Origin";
|
|
198
|
+
type ActionTarget = "Origin" | "Headers";
|
|
199
199
|
type ContextMenuType =
|
|
200
200
|
| "log"
|
|
201
201
|
| "group"
|
|
@@ -248,7 +248,6 @@ declare global {
|
|
|
248
248
|
statusCode?: number;
|
|
249
249
|
status?: boolean;
|
|
250
250
|
updatedAt?: string;
|
|
251
|
-
cache?: boolean;
|
|
252
251
|
};
|
|
253
252
|
|
|
254
253
|
type RewriteActionSchema = {
|
|
@@ -262,7 +261,7 @@ declare global {
|
|
|
262
261
|
regex?: boolean;
|
|
263
262
|
status?: boolean;
|
|
264
263
|
updatedAt?: string;
|
|
265
|
-
|
|
264
|
+
sync?: boolean;
|
|
266
265
|
};
|
|
267
266
|
|
|
268
267
|
type FilterSchema = {
|