@paulirish/trace_engine 0.0.10 → 0.0.12

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.
Files changed (256) hide show
  1. package/README.md +1 -1
  2. package/analyze-trace.mjs +1 -1
  3. package/core/platform/DevToolsPath.d.ts +4 -13
  4. package/core/platform/DevToolsPath.js +7 -4
  5. package/core/platform/DevToolsPath.js.map +1 -7
  6. package/core/platform/MimeType.d.ts +27 -0
  7. package/core/platform/MimeType.js +119 -86
  8. package/core/platform/MimeType.js.map +1 -7
  9. package/core/platform/Timing.d.ts +7 -0
  10. package/core/platform/Timing.js +7 -4
  11. package/core/platform/Timing.js.map +1 -7
  12. package/core/platform/UIString.d.ts +2 -5
  13. package/core/platform/UIString.js +5 -2
  14. package/core/platform/UIString.js.map +1 -7
  15. package/core/platform/UserVisibleError.js +19 -10
  16. package/core/platform/UserVisibleError.js.map +1 -7
  17. package/core/platform/array-utilities.d.ts +48 -10
  18. package/core/platform/array-utilities.js +160 -124
  19. package/core/platform/array-utilities.js.map +1 -7
  20. package/core/platform/brand.d.ts +14 -0
  21. package/core/platform/brand.js +5 -1
  22. package/core/platform/brand.js.map +1 -7
  23. package/core/platform/date-utilities.js +10 -6
  24. package/core/platform/date-utilities.js.map +1 -7
  25. package/core/platform/dom-utilities.d.ts +3 -1
  26. package/core/platform/dom-utilities.js +94 -83
  27. package/core/platform/dom-utilities.js.map +1 -7
  28. package/core/platform/keyboard-utilities.d.ts +2 -0
  29. package/core/platform/keyboard-utilities.js +15 -24
  30. package/core/platform/keyboard-utilities.js.map +1 -7
  31. package/core/platform/map-utilities.d.ts +4 -0
  32. package/core/platform/map-utilities.js +66 -60
  33. package/core/platform/map-utilities.js.map +1 -7
  34. package/core/platform/number-utilities.js +66 -55
  35. package/core/platform/number-utilities.js.map +1 -7
  36. package/core/platform/platform.d.ts +5 -1
  37. package/core/platform/platform.js +54 -37
  38. package/core/platform/platform.js.map +1 -7
  39. package/core/platform/promise-utilities.d.ts +10 -0
  40. package/core/platform/promise-utilities.js +16 -8
  41. package/core/platform/promise-utilities.js.map +1 -7
  42. package/core/platform/set-utilities.js +20 -17
  43. package/core/platform/set-utilities.js.map +1 -7
  44. package/core/platform/string-utilities.d.ts +32 -1
  45. package/core/platform/string-utilities.js +453 -379
  46. package/core/platform/string-utilities.js.map +1 -7
  47. package/core/platform/typescript-utilities.d.ts +5 -5
  48. package/core/platform/typescript-utilities.js +19 -7
  49. package/core/platform/typescript-utilities.js.map +1 -7
  50. package/generated/protocol.d.ts +2081 -347
  51. package/generated/protocol.js +5 -2230
  52. package/models/cpu_profile/CPUProfileDataModel.d.ts +77 -0
  53. package/models/cpu_profile/CPUProfileDataModel.js +492 -359
  54. package/models/cpu_profile/CPUProfileDataModel.js.map +1 -7
  55. package/models/cpu_profile/ProfileTreeModel.d.ts +29 -0
  56. package/models/cpu_profile/ProfileTreeModel.js +87 -82
  57. package/models/cpu_profile/ProfileTreeModel.js.map +1 -7
  58. package/models/cpu_profile/cpu_profile.d.ts +3 -0
  59. package/models/cpu_profile/cpu_profile.js +7 -7
  60. package/models/cpu_profile/cpu_profile.js.map +1 -7
  61. package/models/trace/EntriesFilter.d.ts +55 -0
  62. package/models/trace/EntriesFilter.js +227 -166
  63. package/models/trace/EntriesFilter.js.map +1 -7
  64. package/models/trace/LegacyTracingModel.js.map +1 -7
  65. package/models/trace/ModelImpl.d.ts +110 -0
  66. package/models/trace/ModelImpl.js +161 -102
  67. package/models/trace/ModelImpl.js.map +1 -7
  68. package/models/trace/Processor.d.ts +36 -0
  69. package/models/trace/Processor.js +197 -163
  70. package/models/trace/Processor.js.map +1 -7
  71. package/models/trace/TracingManager.js.map +1 -7
  72. package/models/trace/extras/FetchNodes.d.ts +46 -0
  73. package/models/trace/extras/FetchNodes.js +132 -91
  74. package/models/trace/extras/FetchNodes.js.map +1 -7
  75. package/models/trace/extras/FilmStrip.d.ts +19 -0
  76. package/models/trace/extras/FilmStrip.js +38 -31
  77. package/models/trace/extras/FilmStrip.js.map +1 -7
  78. package/models/trace/extras/MainThreadActivity.d.ts +2 -0
  79. package/models/trace/extras/MainThreadActivity.js +72 -56
  80. package/models/trace/extras/MainThreadActivity.js.map +1 -7
  81. package/models/trace/extras/Metadata.d.ts +2 -0
  82. package/models/trace/extras/Metadata.js +42 -26
  83. package/models/trace/extras/Metadata.js.map +1 -7
  84. package/models/trace/extras/extras.js.map +1 -7
  85. package/models/trace/handlers/AnimationHandler.d.ts +8 -0
  86. package/models/trace/handlers/AnimationHandler.js +22 -20
  87. package/models/trace/handlers/AnimationHandler.js.map +1 -7
  88. package/models/trace/handlers/AuctionWorkletsHandler.d.ts +8 -0
  89. package/models/trace/handlers/AuctionWorkletsHandler.js +143 -89
  90. package/models/trace/handlers/AuctionWorkletsHandler.js.map +1 -7
  91. package/models/trace/handlers/FramesHandler.d.ts +76 -0
  92. package/models/trace/handlers/FramesHandler.js +424 -355
  93. package/models/trace/handlers/FramesHandler.js.map +1 -7
  94. package/models/trace/handlers/GPUHandler.d.ts +11 -0
  95. package/models/trace/handlers/GPUHandler.js +41 -37
  96. package/models/trace/handlers/GPUHandler.js.map +1 -7
  97. package/models/trace/handlers/InitiatorsHandler.d.ts +10 -0
  98. package/models/trace/handlers/InitiatorsHandler.js +164 -113
  99. package/models/trace/handlers/InitiatorsHandler.js.map +1 -7
  100. package/models/trace/handlers/InvalidationsHandler.d.ts +10 -0
  101. package/models/trace/handlers/InvalidationsHandler.js +101 -79
  102. package/models/trace/handlers/InvalidationsHandler.js.map +1 -7
  103. package/models/trace/handlers/LargestImagePaintHandler.d.ts +5 -0
  104. package/models/trace/handlers/LargestImagePaintHandler.js +32 -12
  105. package/models/trace/handlers/LargestImagePaintHandler.js.map +1 -7
  106. package/models/trace/handlers/LargestTextPaintHandler.d.ts +5 -0
  107. package/models/trace/handlers/LargestTextPaintHandler.js +20 -12
  108. package/models/trace/handlers/LargestTextPaintHandler.js.map +1 -7
  109. package/models/trace/handlers/LayerTreeHandler.d.ts +13 -0
  110. package/models/trace/handlers/LayerTreeHandler.js +96 -70
  111. package/models/trace/handlers/LayerTreeHandler.js.map +1 -7
  112. package/models/trace/handlers/LayoutShiftsHandler.d.ts +44 -0
  113. package/models/trace/handlers/LayoutShiftsHandler.js +304 -227
  114. package/models/trace/handlers/LayoutShiftsHandler.js.map +1 -7
  115. package/models/trace/handlers/MemoryHandler.d.ts +7 -0
  116. package/models/trace/handlers/MemoryHandler.js +14 -11
  117. package/models/trace/handlers/MemoryHandler.js.map +1 -7
  118. package/models/trace/handlers/MetaHandler.d.ts +37 -0
  119. package/models/trace/handlers/MetaHandler.js +314 -226
  120. package/models/trace/handlers/MetaHandler.js.map +1 -7
  121. package/models/trace/handlers/ModelHandlers.d.ts +21 -0
  122. package/models/trace/handlers/ModelHandlers.js +25 -22
  123. package/models/trace/handlers/ModelHandlers.js.map +1 -7
  124. package/models/trace/handlers/NetworkRequestsHandler.d.ts +17 -0
  125. package/models/trace/handlers/NetworkRequestsHandler.js +342 -218
  126. package/models/trace/handlers/NetworkRequestsHandler.js.map +1 -7
  127. package/models/trace/handlers/PageLoadMetricsHandler.d.ts +67 -0
  128. package/models/trace/handlers/PageLoadMetricsHandler.js +357 -284
  129. package/models/trace/handlers/PageLoadMetricsHandler.js.map +1 -7
  130. package/models/trace/handlers/RendererHandler.d.ts +101 -0
  131. package/models/trace/handlers/RendererHandler.js +295 -191
  132. package/models/trace/handlers/RendererHandler.js.map +1 -7
  133. package/models/trace/handlers/SamplesHandler.d.ts +46 -0
  134. package/models/trace/handlers/SamplesHandler.js +195 -158
  135. package/models/trace/handlers/SamplesHandler.js.map +1 -7
  136. package/models/trace/handlers/ScreenshotsHandler.d.ts +7 -0
  137. package/models/trace/handlers/ScreenshotsHandler.js +63 -41
  138. package/models/trace/handlers/ScreenshotsHandler.js.map +1 -7
  139. package/models/trace/handlers/Threads.d.ts +33 -0
  140. package/models/trace/handlers/Threads.js +85 -67
  141. package/models/trace/handlers/Threads.js.map +1 -7
  142. package/models/trace/handlers/UserInteractionsHandler.d.ts +57 -0
  143. package/models/trace/handlers/UserInteractionsHandler.js +240 -141
  144. package/models/trace/handlers/UserInteractionsHandler.js.map +1 -7
  145. package/models/trace/handlers/UserTimingsHandler.d.ts +28 -0
  146. package/models/trace/handlers/UserTimingsHandler.js +91 -80
  147. package/models/trace/handlers/UserTimingsHandler.js.map +1 -7
  148. package/models/trace/handlers/WarningsHandler.d.ts +14 -0
  149. package/models/trace/handlers/WarningsHandler.js +100 -62
  150. package/models/trace/handlers/WarningsHandler.js.map +1 -7
  151. package/models/trace/handlers/WorkersHandler.d.ts +11 -0
  152. package/models/trace/handlers/WorkersHandler.js +40 -38
  153. package/models/trace/handlers/WorkersHandler.js.map +1 -7
  154. package/models/trace/handlers/handlers.d.ts +3 -0
  155. package/models/trace/handlers/handlers.js +7 -4
  156. package/models/trace/handlers/handlers.js.map +1 -7
  157. package/models/trace/handlers/types.d.ts +45 -0
  158. package/models/trace/handlers/types.js +15 -15
  159. package/models/trace/handlers/types.js.map +1 -7
  160. package/models/trace/helpers/SamplesIntegrator.d.ts +49 -0
  161. package/models/trace/helpers/SamplesIntegrator.js +381 -204
  162. package/models/trace/helpers/SamplesIntegrator.js.map +1 -7
  163. package/models/trace/helpers/Timing.d.ts +26 -0
  164. package/models/trace/helpers/Timing.js +131 -110
  165. package/models/trace/helpers/Timing.js.map +1 -7
  166. package/models/trace/helpers/Trace.d.ts +37 -0
  167. package/models/trace/helpers/Trace.js +200 -166
  168. package/models/trace/helpers/Trace.js.map +1 -7
  169. package/models/trace/helpers/TreeHelpers.d.ts +90 -0
  170. package/models/trace/helpers/TreeHelpers.js +203 -100
  171. package/models/trace/helpers/TreeHelpers.js.map +1 -7
  172. package/models/trace/helpers/helpers.d.ts +4 -0
  173. package/models/trace/helpers/helpers.js +8 -5
  174. package/models/trace/helpers/helpers.js.map +1 -7
  175. package/models/trace/root-causes/LayoutShift.d.ts +119 -0
  176. package/models/trace/root-causes/LayoutShift.js +470 -323
  177. package/models/trace/root-causes/LayoutShift.js.map +1 -7
  178. package/models/trace/root-causes/RootCauses.d.ts +14 -0
  179. package/models/trace/root-causes/RootCauses.js +9 -6
  180. package/models/trace/root-causes/RootCauses.js.map +1 -7
  181. package/models/trace/root-causes/root-causes.d.ts +1 -0
  182. package/models/trace/root-causes/root-causes.js +5 -2
  183. package/models/trace/root-causes/root-causes.js.map +1 -7
  184. package/models/trace/trace.d.ts +11 -0
  185. package/models/trace/trace.js +17 -23
  186. package/models/trace/trace.js.map +1 -7
  187. package/models/trace/types/Configuration.d.ts +33 -0
  188. package/models/trace/types/Configuration.js +25 -14
  189. package/models/trace/types/Configuration.js.map +1 -7
  190. package/models/trace/types/File.d.ts +23 -0
  191. package/models/trace/types/File.js +5 -6
  192. package/models/trace/types/File.js.map +1 -7
  193. package/models/trace/types/Timing.d.ts +25 -0
  194. package/models/trace/types/Timing.js +10 -11
  195. package/models/trace/types/Timing.js.map +1 -7
  196. package/models/trace/types/TraceEvents.d.ts +1571 -0
  197. package/models/trace/types/TraceEvents.js +174 -381
  198. package/models/trace/types/TraceEvents.js.map +1 -7
  199. package/models/trace/types/types.d.ts +4 -0
  200. package/models/trace/types/types.js +8 -5
  201. package/models/trace/types/types.js.map +1 -7
  202. package/package.json +1 -1
  203. package/TracingManager.js +0 -0
  204. package/core/platform/devtools_entrypoint-bundle-tsconfig-tsconfig.json +0 -40
  205. package/core/platform/platform.js.compressed +0 -0
  206. package/core/platform/platform.js.hash +0 -1
  207. package/core/platform/platform.prebundle.d.ts +0 -15
  208. package/core/platform/platform.prebundle.js +0 -50
  209. package/core/platform/platform.prebundle.js.map +0 -1
  210. package/core/platform/platform.prebundle.ts +0 -64
  211. package/extras/extras.js +0 -0
  212. package/models/trace/SDKServices.js +0 -104
  213. package/models/trace/SDKServices.js.map +0 -7
  214. package/models/trace/TraceProcessor.js +0 -133
  215. package/models/trace/TraceProcessor.js.map +0 -7
  216. package/models/trace/TreeManipulator.js +0 -85
  217. package/models/trace/TreeManipulator.js.map +0 -7
  218. package/models/trace/devtools_entrypoint-legacy-typescript-tsconfig.json +0 -43
  219. package/models/trace/frames/TimelineFrameModel.js +0 -392
  220. package/models/trace/frames/TimelineFrameModel.js.map +0 -7
  221. package/models/trace/frames/bundle-tsconfig.json +0 -1
  222. package/models/trace/frames/devtools_entrypoint-bundle-typescript-tsconfig.json +0 -43
  223. package/models/trace/frames/frames-tsconfig.json +0 -58
  224. package/models/trace/frames/frames.js +0 -5
  225. package/models/trace/frames/frames.js.map +0 -7
  226. package/models/trace/handlers/Migration.js +0 -27
  227. package/models/trace/handlers/Migration.js.map +0 -7
  228. package/models/trace/handlers/UberFramesHandler.js +0 -293
  229. package/models/trace/handlers/UberFramesHandler.js.map +0 -7
  230. package/models/trace/legacy-tsconfig.json +0 -1
  231. package/models/trace/sdk_services/DOMNodeLookup.js +0 -41
  232. package/models/trace/sdk_services/DOMNodeLookup.js.map +0 -7
  233. package/models/trace/sdk_services/LayoutShifts.js +0 -68
  234. package/models/trace/sdk_services/LayoutShifts.js.map +0 -7
  235. package/models/trace/sdk_services/bundle-tsconfig.json +0 -1
  236. package/models/trace/sdk_services/devtools_entrypoint-bundle-typescript-tsconfig.json +0 -41
  237. package/models/trace/sdk_services/sdk_services-tsconfig.json +0 -57
  238. package/models/trace/sdk_services/sdk_services.js +0 -7
  239. package/models/trace/sdk_services/sdk_services.js.map +0 -7
  240. package/models/trace/trace-legacy.js +0 -16
  241. package/models/trace/trace-legacy.js.map +0 -7
  242. package/models/trace/worker/Processor.js +0 -143
  243. package/models/trace/worker/Processor.js.map +0 -7
  244. package/models/trace/worker/Types.js +0 -1
  245. package/models/trace/worker/Types.js.map +0 -7
  246. package/models/trace/worker/bundle-tsconfig.json +0 -1
  247. package/models/trace/worker/devtools_entrypoint-bundle-typescript-tsconfig.json +0 -41
  248. package/models/trace/worker/devtools_entrypoint-worker_entrypoint-typescript-tsconfig.json +0 -41
  249. package/models/trace/worker/processor-tsconfig.json +0 -45
  250. package/models/trace/worker/worker.js +0 -7
  251. package/models/trace/worker/worker.js.map +0 -7
  252. package/models/trace/worker/worker_entrypoint-tsconfig.json +0 -1
  253. package/models/trace/worker/worker_entrypoint.js +0 -36
  254. package/models/trace/worker/worker_entrypoint.js.map +0 -7
  255. package/trace.mjs +0 -6980
  256. package/trace.mjs.map +0 -8
@@ -1,2230 +1,5 @@
1
- export var Accessibility;
2
- ((Accessibility2) => {
3
- let AXValueType;
4
- ((AXValueType2) => {
5
- AXValueType2["Boolean"] = "boolean";
6
- AXValueType2["Tristate"] = "tristate";
7
- AXValueType2["BooleanOrUndefined"] = "booleanOrUndefined";
8
- AXValueType2["Idref"] = "idref";
9
- AXValueType2["IdrefList"] = "idrefList";
10
- AXValueType2["Integer"] = "integer";
11
- AXValueType2["Node"] = "node";
12
- AXValueType2["NodeList"] = "nodeList";
13
- AXValueType2["Number"] = "number";
14
- AXValueType2["String"] = "string";
15
- AXValueType2["ComputedString"] = "computedString";
16
- AXValueType2["Token"] = "token";
17
- AXValueType2["TokenList"] = "tokenList";
18
- AXValueType2["DomRelation"] = "domRelation";
19
- AXValueType2["Role"] = "role";
20
- AXValueType2["InternalRole"] = "internalRole";
21
- AXValueType2["ValueUndefined"] = "valueUndefined";
22
- })(AXValueType = Accessibility2.AXValueType || (Accessibility2.AXValueType = {}));
23
- let AXValueSourceType;
24
- ((AXValueSourceType2) => {
25
- AXValueSourceType2["Attribute"] = "attribute";
26
- AXValueSourceType2["Implicit"] = "implicit";
27
- AXValueSourceType2["Style"] = "style";
28
- AXValueSourceType2["Contents"] = "contents";
29
- AXValueSourceType2["Placeholder"] = "placeholder";
30
- AXValueSourceType2["RelatedElement"] = "relatedElement";
31
- })(AXValueSourceType = Accessibility2.AXValueSourceType || (Accessibility2.AXValueSourceType = {}));
32
- let AXValueNativeSourceType;
33
- ((AXValueNativeSourceType2) => {
34
- AXValueNativeSourceType2["Description"] = "description";
35
- AXValueNativeSourceType2["Figcaption"] = "figcaption";
36
- AXValueNativeSourceType2["Label"] = "label";
37
- AXValueNativeSourceType2["Labelfor"] = "labelfor";
38
- AXValueNativeSourceType2["Labelwrapped"] = "labelwrapped";
39
- AXValueNativeSourceType2["Legend"] = "legend";
40
- AXValueNativeSourceType2["Rubyannotation"] = "rubyannotation";
41
- AXValueNativeSourceType2["Tablecaption"] = "tablecaption";
42
- AXValueNativeSourceType2["Title"] = "title";
43
- AXValueNativeSourceType2["Other"] = "other";
44
- })(AXValueNativeSourceType = Accessibility2.AXValueNativeSourceType || (Accessibility2.AXValueNativeSourceType = {}));
45
- let AXPropertyName;
46
- ((AXPropertyName2) => {
47
- AXPropertyName2["Busy"] = "busy";
48
- AXPropertyName2["Disabled"] = "disabled";
49
- AXPropertyName2["Editable"] = "editable";
50
- AXPropertyName2["Focusable"] = "focusable";
51
- AXPropertyName2["Focused"] = "focused";
52
- AXPropertyName2["Hidden"] = "hidden";
53
- AXPropertyName2["HiddenRoot"] = "hiddenRoot";
54
- AXPropertyName2["Invalid"] = "invalid";
55
- AXPropertyName2["Keyshortcuts"] = "keyshortcuts";
56
- AXPropertyName2["Settable"] = "settable";
57
- AXPropertyName2["Roledescription"] = "roledescription";
58
- AXPropertyName2["Live"] = "live";
59
- AXPropertyName2["Atomic"] = "atomic";
60
- AXPropertyName2["Relevant"] = "relevant";
61
- AXPropertyName2["Root"] = "root";
62
- AXPropertyName2["Autocomplete"] = "autocomplete";
63
- AXPropertyName2["HasPopup"] = "hasPopup";
64
- AXPropertyName2["Level"] = "level";
65
- AXPropertyName2["Multiselectable"] = "multiselectable";
66
- AXPropertyName2["Orientation"] = "orientation";
67
- AXPropertyName2["Multiline"] = "multiline";
68
- AXPropertyName2["Readonly"] = "readonly";
69
- AXPropertyName2["Required"] = "required";
70
- AXPropertyName2["Valuemin"] = "valuemin";
71
- AXPropertyName2["Valuemax"] = "valuemax";
72
- AXPropertyName2["Valuetext"] = "valuetext";
73
- AXPropertyName2["Checked"] = "checked";
74
- AXPropertyName2["Expanded"] = "expanded";
75
- AXPropertyName2["Modal"] = "modal";
76
- AXPropertyName2["Pressed"] = "pressed";
77
- AXPropertyName2["Selected"] = "selected";
78
- AXPropertyName2["Activedescendant"] = "activedescendant";
79
- AXPropertyName2["Controls"] = "controls";
80
- AXPropertyName2["Describedby"] = "describedby";
81
- AXPropertyName2["Details"] = "details";
82
- AXPropertyName2["Errormessage"] = "errormessage";
83
- AXPropertyName2["Flowto"] = "flowto";
84
- AXPropertyName2["Labelledby"] = "labelledby";
85
- AXPropertyName2["Owns"] = "owns";
86
- })(AXPropertyName = Accessibility2.AXPropertyName || (Accessibility2.AXPropertyName = {}));
87
- })(Accessibility || (Accessibility = {}));
88
- export var Animation;
89
- ((Animation2) => {
90
- let AnimationType;
91
- ((AnimationType2) => {
92
- AnimationType2["CSSTransition"] = "CSSTransition";
93
- AnimationType2["CSSAnimation"] = "CSSAnimation";
94
- AnimationType2["WebAnimation"] = "WebAnimation";
95
- })(AnimationType = Animation2.AnimationType || (Animation2.AnimationType = {}));
96
- })(Animation || (Animation = {}));
97
- export var Audits;
98
- ((Audits2) => {
99
- let CookieExclusionReason;
100
- ((CookieExclusionReason2) => {
101
- CookieExclusionReason2["ExcludeSameSiteUnspecifiedTreatedAsLax"] = "ExcludeSameSiteUnspecifiedTreatedAsLax";
102
- CookieExclusionReason2["ExcludeSameSiteNoneInsecure"] = "ExcludeSameSiteNoneInsecure";
103
- CookieExclusionReason2["ExcludeSameSiteLax"] = "ExcludeSameSiteLax";
104
- CookieExclusionReason2["ExcludeSameSiteStrict"] = "ExcludeSameSiteStrict";
105
- CookieExclusionReason2["ExcludeInvalidSameParty"] = "ExcludeInvalidSameParty";
106
- CookieExclusionReason2["ExcludeSamePartyCrossPartyContext"] = "ExcludeSamePartyCrossPartyContext";
107
- CookieExclusionReason2["ExcludeDomainNonASCII"] = "ExcludeDomainNonASCII";
108
- CookieExclusionReason2["ExcludeThirdPartyCookieBlockedInFirstPartySet"] = "ExcludeThirdPartyCookieBlockedInFirstPartySet";
109
- CookieExclusionReason2["ExcludeThirdPartyPhaseout"] = "ExcludeThirdPartyPhaseout";
110
- })(CookieExclusionReason = Audits2.CookieExclusionReason || (Audits2.CookieExclusionReason = {}));
111
- let CookieWarningReason;
112
- ((CookieWarningReason2) => {
113
- CookieWarningReason2["WarnSameSiteUnspecifiedCrossSiteContext"] = "WarnSameSiteUnspecifiedCrossSiteContext";
114
- CookieWarningReason2["WarnSameSiteNoneInsecure"] = "WarnSameSiteNoneInsecure";
115
- CookieWarningReason2["WarnSameSiteUnspecifiedLaxAllowUnsafe"] = "WarnSameSiteUnspecifiedLaxAllowUnsafe";
116
- CookieWarningReason2["WarnSameSiteStrictLaxDowngradeStrict"] = "WarnSameSiteStrictLaxDowngradeStrict";
117
- CookieWarningReason2["WarnSameSiteStrictCrossDowngradeStrict"] = "WarnSameSiteStrictCrossDowngradeStrict";
118
- CookieWarningReason2["WarnSameSiteStrictCrossDowngradeLax"] = "WarnSameSiteStrictCrossDowngradeLax";
119
- CookieWarningReason2["WarnSameSiteLaxCrossDowngradeStrict"] = "WarnSameSiteLaxCrossDowngradeStrict";
120
- CookieWarningReason2["WarnSameSiteLaxCrossDowngradeLax"] = "WarnSameSiteLaxCrossDowngradeLax";
121
- CookieWarningReason2["WarnAttributeValueExceedsMaxSize"] = "WarnAttributeValueExceedsMaxSize";
122
- CookieWarningReason2["WarnDomainNonASCII"] = "WarnDomainNonASCII";
123
- CookieWarningReason2["WarnThirdPartyPhaseout"] = "WarnThirdPartyPhaseout";
124
- CookieWarningReason2["WarnCrossSiteRedirectDowngradeChangesInclusion"] = "WarnCrossSiteRedirectDowngradeChangesInclusion";
125
- })(CookieWarningReason = Audits2.CookieWarningReason || (Audits2.CookieWarningReason = {}));
126
- let CookieOperation;
127
- ((CookieOperation2) => {
128
- CookieOperation2["SetCookie"] = "SetCookie";
129
- CookieOperation2["ReadCookie"] = "ReadCookie";
130
- })(CookieOperation = Audits2.CookieOperation || (Audits2.CookieOperation = {}));
131
- let MixedContentResolutionStatus;
132
- ((MixedContentResolutionStatus2) => {
133
- MixedContentResolutionStatus2["MixedContentBlocked"] = "MixedContentBlocked";
134
- MixedContentResolutionStatus2["MixedContentAutomaticallyUpgraded"] = "MixedContentAutomaticallyUpgraded";
135
- MixedContentResolutionStatus2["MixedContentWarning"] = "MixedContentWarning";
136
- })(MixedContentResolutionStatus = Audits2.MixedContentResolutionStatus || (Audits2.MixedContentResolutionStatus = {}));
137
- let MixedContentResourceType;
138
- ((MixedContentResourceType2) => {
139
- MixedContentResourceType2["AttributionSrc"] = "AttributionSrc";
140
- MixedContentResourceType2["Audio"] = "Audio";
141
- MixedContentResourceType2["Beacon"] = "Beacon";
142
- MixedContentResourceType2["CSPReport"] = "CSPReport";
143
- MixedContentResourceType2["Download"] = "Download";
144
- MixedContentResourceType2["EventSource"] = "EventSource";
145
- MixedContentResourceType2["Favicon"] = "Favicon";
146
- MixedContentResourceType2["Font"] = "Font";
147
- MixedContentResourceType2["Form"] = "Form";
148
- MixedContentResourceType2["Frame"] = "Frame";
149
- MixedContentResourceType2["Image"] = "Image";
150
- MixedContentResourceType2["Import"] = "Import";
151
- MixedContentResourceType2["JSON"] = "JSON";
152
- MixedContentResourceType2["Manifest"] = "Manifest";
153
- MixedContentResourceType2["Ping"] = "Ping";
154
- MixedContentResourceType2["PluginData"] = "PluginData";
155
- MixedContentResourceType2["PluginResource"] = "PluginResource";
156
- MixedContentResourceType2["Prefetch"] = "Prefetch";
157
- MixedContentResourceType2["Resource"] = "Resource";
158
- MixedContentResourceType2["Script"] = "Script";
159
- MixedContentResourceType2["ServiceWorker"] = "ServiceWorker";
160
- MixedContentResourceType2["SharedWorker"] = "SharedWorker";
161
- MixedContentResourceType2["SpeculationRules"] = "SpeculationRules";
162
- MixedContentResourceType2["Stylesheet"] = "Stylesheet";
163
- MixedContentResourceType2["Track"] = "Track";
164
- MixedContentResourceType2["Video"] = "Video";
165
- MixedContentResourceType2["Worker"] = "Worker";
166
- MixedContentResourceType2["XMLHttpRequest"] = "XMLHttpRequest";
167
- MixedContentResourceType2["XSLT"] = "XSLT";
168
- })(MixedContentResourceType = Audits2.MixedContentResourceType || (Audits2.MixedContentResourceType = {}));
169
- let BlockedByResponseReason;
170
- ((BlockedByResponseReason2) => {
171
- BlockedByResponseReason2["CoepFrameResourceNeedsCoepHeader"] = "CoepFrameResourceNeedsCoepHeader";
172
- BlockedByResponseReason2["CoopSandboxedIFrameCannotNavigateToCoopPage"] = "CoopSandboxedIFrameCannotNavigateToCoopPage";
173
- BlockedByResponseReason2["CorpNotSameOrigin"] = "CorpNotSameOrigin";
174
- BlockedByResponseReason2["CorpNotSameOriginAfterDefaultedToSameOriginByCoep"] = "CorpNotSameOriginAfterDefaultedToSameOriginByCoep";
175
- BlockedByResponseReason2["CorpNotSameSite"] = "CorpNotSameSite";
176
- })(BlockedByResponseReason = Audits2.BlockedByResponseReason || (Audits2.BlockedByResponseReason = {}));
177
- let HeavyAdResolutionStatus;
178
- ((HeavyAdResolutionStatus2) => {
179
- HeavyAdResolutionStatus2["HeavyAdBlocked"] = "HeavyAdBlocked";
180
- HeavyAdResolutionStatus2["HeavyAdWarning"] = "HeavyAdWarning";
181
- })(HeavyAdResolutionStatus = Audits2.HeavyAdResolutionStatus || (Audits2.HeavyAdResolutionStatus = {}));
182
- let HeavyAdReason;
183
- ((HeavyAdReason2) => {
184
- HeavyAdReason2["NetworkTotalLimit"] = "NetworkTotalLimit";
185
- HeavyAdReason2["CpuTotalLimit"] = "CpuTotalLimit";
186
- HeavyAdReason2["CpuPeakLimit"] = "CpuPeakLimit";
187
- })(HeavyAdReason = Audits2.HeavyAdReason || (Audits2.HeavyAdReason = {}));
188
- let ContentSecurityPolicyViolationType;
189
- ((ContentSecurityPolicyViolationType2) => {
190
- ContentSecurityPolicyViolationType2["KInlineViolation"] = "kInlineViolation";
191
- ContentSecurityPolicyViolationType2["KEvalViolation"] = "kEvalViolation";
192
- ContentSecurityPolicyViolationType2["KURLViolation"] = "kURLViolation";
193
- ContentSecurityPolicyViolationType2["KTrustedTypesSinkViolation"] = "kTrustedTypesSinkViolation";
194
- ContentSecurityPolicyViolationType2["KTrustedTypesPolicyViolation"] = "kTrustedTypesPolicyViolation";
195
- ContentSecurityPolicyViolationType2["KWasmEvalViolation"] = "kWasmEvalViolation";
196
- })(ContentSecurityPolicyViolationType = Audits2.ContentSecurityPolicyViolationType || (Audits2.ContentSecurityPolicyViolationType = {}));
197
- let SharedArrayBufferIssueType;
198
- ((SharedArrayBufferIssueType2) => {
199
- SharedArrayBufferIssueType2["TransferIssue"] = "TransferIssue";
200
- SharedArrayBufferIssueType2["CreationIssue"] = "CreationIssue";
201
- })(SharedArrayBufferIssueType = Audits2.SharedArrayBufferIssueType || (Audits2.SharedArrayBufferIssueType = {}));
202
- let AttributionReportingIssueType;
203
- ((AttributionReportingIssueType2) => {
204
- AttributionReportingIssueType2["PermissionPolicyDisabled"] = "PermissionPolicyDisabled";
205
- AttributionReportingIssueType2["UntrustworthyReportingOrigin"] = "UntrustworthyReportingOrigin";
206
- AttributionReportingIssueType2["InsecureContext"] = "InsecureContext";
207
- AttributionReportingIssueType2["InvalidHeader"] = "InvalidHeader";
208
- AttributionReportingIssueType2["InvalidRegisterTriggerHeader"] = "InvalidRegisterTriggerHeader";
209
- AttributionReportingIssueType2["SourceAndTriggerHeaders"] = "SourceAndTriggerHeaders";
210
- AttributionReportingIssueType2["SourceIgnored"] = "SourceIgnored";
211
- AttributionReportingIssueType2["TriggerIgnored"] = "TriggerIgnored";
212
- AttributionReportingIssueType2["OsSourceIgnored"] = "OsSourceIgnored";
213
- AttributionReportingIssueType2["OsTriggerIgnored"] = "OsTriggerIgnored";
214
- AttributionReportingIssueType2["InvalidRegisterOsSourceHeader"] = "InvalidRegisterOsSourceHeader";
215
- AttributionReportingIssueType2["InvalidRegisterOsTriggerHeader"] = "InvalidRegisterOsTriggerHeader";
216
- AttributionReportingIssueType2["WebAndOsHeaders"] = "WebAndOsHeaders";
217
- AttributionReportingIssueType2["NoWebOrOsSupport"] = "NoWebOrOsSupport";
218
- AttributionReportingIssueType2["NavigationRegistrationWithoutTransientUserActivation"] = "NavigationRegistrationWithoutTransientUserActivation";
219
- })(AttributionReportingIssueType = Audits2.AttributionReportingIssueType || (Audits2.AttributionReportingIssueType = {}));
220
- let GenericIssueErrorType;
221
- ((GenericIssueErrorType2) => {
222
- GenericIssueErrorType2["CrossOriginPortalPostMessageError"] = "CrossOriginPortalPostMessageError";
223
- GenericIssueErrorType2["FormLabelForNameError"] = "FormLabelForNameError";
224
- GenericIssueErrorType2["FormDuplicateIdForInputError"] = "FormDuplicateIdForInputError";
225
- GenericIssueErrorType2["FormInputWithNoLabelError"] = "FormInputWithNoLabelError";
226
- GenericIssueErrorType2["FormAutocompleteAttributeEmptyError"] = "FormAutocompleteAttributeEmptyError";
227
- GenericIssueErrorType2["FormEmptyIdAndNameAttributesForInputError"] = "FormEmptyIdAndNameAttributesForInputError";
228
- GenericIssueErrorType2["FormAriaLabelledByToNonExistingId"] = "FormAriaLabelledByToNonExistingId";
229
- GenericIssueErrorType2["FormInputAssignedAutocompleteValueToIdOrNameAttributeError"] = "FormInputAssignedAutocompleteValueToIdOrNameAttributeError";
230
- GenericIssueErrorType2["FormLabelHasNeitherForNorNestedInput"] = "FormLabelHasNeitherForNorNestedInput";
231
- GenericIssueErrorType2["FormLabelForMatchesNonExistingIdError"] = "FormLabelForMatchesNonExistingIdError";
232
- GenericIssueErrorType2["FormInputHasWrongButWellIntendedAutocompleteValueError"] = "FormInputHasWrongButWellIntendedAutocompleteValueError";
233
- GenericIssueErrorType2["ResponseWasBlockedByORB"] = "ResponseWasBlockedByORB";
234
- })(GenericIssueErrorType = Audits2.GenericIssueErrorType || (Audits2.GenericIssueErrorType = {}));
235
- let ClientHintIssueReason;
236
- ((ClientHintIssueReason2) => {
237
- ClientHintIssueReason2["MetaTagAllowListInvalidOrigin"] = "MetaTagAllowListInvalidOrigin";
238
- ClientHintIssueReason2["MetaTagModifiedHTML"] = "MetaTagModifiedHTML";
239
- })(ClientHintIssueReason = Audits2.ClientHintIssueReason || (Audits2.ClientHintIssueReason = {}));
240
- let FederatedAuthRequestIssueReason;
241
- ((FederatedAuthRequestIssueReason2) => {
242
- FederatedAuthRequestIssueReason2["ShouldEmbargo"] = "ShouldEmbargo";
243
- FederatedAuthRequestIssueReason2["TooManyRequests"] = "TooManyRequests";
244
- FederatedAuthRequestIssueReason2["WellKnownHttpNotFound"] = "WellKnownHttpNotFound";
245
- FederatedAuthRequestIssueReason2["WellKnownNoResponse"] = "WellKnownNoResponse";
246
- FederatedAuthRequestIssueReason2["WellKnownInvalidResponse"] = "WellKnownInvalidResponse";
247
- FederatedAuthRequestIssueReason2["WellKnownListEmpty"] = "WellKnownListEmpty";
248
- FederatedAuthRequestIssueReason2["WellKnownInvalidContentType"] = "WellKnownInvalidContentType";
249
- FederatedAuthRequestIssueReason2["ConfigNotInWellKnown"] = "ConfigNotInWellKnown";
250
- FederatedAuthRequestIssueReason2["WellKnownTooBig"] = "WellKnownTooBig";
251
- FederatedAuthRequestIssueReason2["ConfigHttpNotFound"] = "ConfigHttpNotFound";
252
- FederatedAuthRequestIssueReason2["ConfigNoResponse"] = "ConfigNoResponse";
253
- FederatedAuthRequestIssueReason2["ConfigInvalidResponse"] = "ConfigInvalidResponse";
254
- FederatedAuthRequestIssueReason2["ConfigInvalidContentType"] = "ConfigInvalidContentType";
255
- FederatedAuthRequestIssueReason2["ClientMetadataHttpNotFound"] = "ClientMetadataHttpNotFound";
256
- FederatedAuthRequestIssueReason2["ClientMetadataNoResponse"] = "ClientMetadataNoResponse";
257
- FederatedAuthRequestIssueReason2["ClientMetadataInvalidResponse"] = "ClientMetadataInvalidResponse";
258
- FederatedAuthRequestIssueReason2["ClientMetadataInvalidContentType"] = "ClientMetadataInvalidContentType";
259
- FederatedAuthRequestIssueReason2["DisabledInSettings"] = "DisabledInSettings";
260
- FederatedAuthRequestIssueReason2["ErrorFetchingSignin"] = "ErrorFetchingSignin";
261
- FederatedAuthRequestIssueReason2["InvalidSigninResponse"] = "InvalidSigninResponse";
262
- FederatedAuthRequestIssueReason2["AccountsHttpNotFound"] = "AccountsHttpNotFound";
263
- FederatedAuthRequestIssueReason2["AccountsNoResponse"] = "AccountsNoResponse";
264
- FederatedAuthRequestIssueReason2["AccountsInvalidResponse"] = "AccountsInvalidResponse";
265
- FederatedAuthRequestIssueReason2["AccountsListEmpty"] = "AccountsListEmpty";
266
- FederatedAuthRequestIssueReason2["AccountsInvalidContentType"] = "AccountsInvalidContentType";
267
- FederatedAuthRequestIssueReason2["IdTokenHttpNotFound"] = "IdTokenHttpNotFound";
268
- FederatedAuthRequestIssueReason2["IdTokenNoResponse"] = "IdTokenNoResponse";
269
- FederatedAuthRequestIssueReason2["IdTokenInvalidResponse"] = "IdTokenInvalidResponse";
270
- FederatedAuthRequestIssueReason2["IdTokenIdpErrorResponse"] = "IdTokenIdpErrorResponse";
271
- FederatedAuthRequestIssueReason2["IdTokenCrossSiteIdpErrorResponse"] = "IdTokenCrossSiteIdpErrorResponse";
272
- FederatedAuthRequestIssueReason2["IdTokenInvalidRequest"] = "IdTokenInvalidRequest";
273
- FederatedAuthRequestIssueReason2["IdTokenInvalidContentType"] = "IdTokenInvalidContentType";
274
- FederatedAuthRequestIssueReason2["ErrorIdToken"] = "ErrorIdToken";
275
- FederatedAuthRequestIssueReason2["Canceled"] = "Canceled";
276
- FederatedAuthRequestIssueReason2["RpPageNotVisible"] = "RpPageNotVisible";
277
- FederatedAuthRequestIssueReason2["SilentMediationFailure"] = "SilentMediationFailure";
278
- FederatedAuthRequestIssueReason2["ThirdPartyCookiesBlocked"] = "ThirdPartyCookiesBlocked";
279
- FederatedAuthRequestIssueReason2["NotSignedInWithIdp"] = "NotSignedInWithIdp";
280
- })(FederatedAuthRequestIssueReason = Audits2.FederatedAuthRequestIssueReason || (Audits2.FederatedAuthRequestIssueReason = {}));
281
- let FederatedAuthUserInfoRequestIssueReason;
282
- ((FederatedAuthUserInfoRequestIssueReason2) => {
283
- FederatedAuthUserInfoRequestIssueReason2["NotSameOrigin"] = "NotSameOrigin";
284
- FederatedAuthUserInfoRequestIssueReason2["NotIframe"] = "NotIframe";
285
- FederatedAuthUserInfoRequestIssueReason2["NotPotentiallyTrustworthy"] = "NotPotentiallyTrustworthy";
286
- FederatedAuthUserInfoRequestIssueReason2["NoAPIPermission"] = "NoApiPermission";
287
- FederatedAuthUserInfoRequestIssueReason2["NotSignedInWithIdp"] = "NotSignedInWithIdp";
288
- FederatedAuthUserInfoRequestIssueReason2["NoAccountSharingPermission"] = "NoAccountSharingPermission";
289
- FederatedAuthUserInfoRequestIssueReason2["InvalidConfigOrWellKnown"] = "InvalidConfigOrWellKnown";
290
- FederatedAuthUserInfoRequestIssueReason2["InvalidAccountsResponse"] = "InvalidAccountsResponse";
291
- FederatedAuthUserInfoRequestIssueReason2["NoReturningUserFromFetchedAccounts"] = "NoReturningUserFromFetchedAccounts";
292
- })(FederatedAuthUserInfoRequestIssueReason = Audits2.FederatedAuthUserInfoRequestIssueReason || (Audits2.FederatedAuthUserInfoRequestIssueReason = {}));
293
- let StyleSheetLoadingIssueReason;
294
- ((StyleSheetLoadingIssueReason2) => {
295
- StyleSheetLoadingIssueReason2["LateImportRule"] = "LateImportRule";
296
- StyleSheetLoadingIssueReason2["RequestFailed"] = "RequestFailed";
297
- })(StyleSheetLoadingIssueReason = Audits2.StyleSheetLoadingIssueReason || (Audits2.StyleSheetLoadingIssueReason = {}));
298
- let PropertyRuleIssueReason;
299
- ((PropertyRuleIssueReason2) => {
300
- PropertyRuleIssueReason2["InvalidSyntax"] = "InvalidSyntax";
301
- PropertyRuleIssueReason2["InvalidInitialValue"] = "InvalidInitialValue";
302
- PropertyRuleIssueReason2["InvalidInherits"] = "InvalidInherits";
303
- PropertyRuleIssueReason2["InvalidName"] = "InvalidName";
304
- })(PropertyRuleIssueReason = Audits2.PropertyRuleIssueReason || (Audits2.PropertyRuleIssueReason = {}));
305
- let InspectorIssueCode;
306
- ((InspectorIssueCode2) => {
307
- InspectorIssueCode2["CookieIssue"] = "CookieIssue";
308
- InspectorIssueCode2["MixedContentIssue"] = "MixedContentIssue";
309
- InspectorIssueCode2["BlockedByResponseIssue"] = "BlockedByResponseIssue";
310
- InspectorIssueCode2["HeavyAdIssue"] = "HeavyAdIssue";
311
- InspectorIssueCode2["ContentSecurityPolicyIssue"] = "ContentSecurityPolicyIssue";
312
- InspectorIssueCode2["SharedArrayBufferIssue"] = "SharedArrayBufferIssue";
313
- InspectorIssueCode2["LowTextContrastIssue"] = "LowTextContrastIssue";
314
- InspectorIssueCode2["CorsIssue"] = "CorsIssue";
315
- InspectorIssueCode2["AttributionReportingIssue"] = "AttributionReportingIssue";
316
- InspectorIssueCode2["QuirksModeIssue"] = "QuirksModeIssue";
317
- InspectorIssueCode2["NavigatorUserAgentIssue"] = "NavigatorUserAgentIssue";
318
- InspectorIssueCode2["GenericIssue"] = "GenericIssue";
319
- InspectorIssueCode2["DeprecationIssue"] = "DeprecationIssue";
320
- InspectorIssueCode2["ClientHintIssue"] = "ClientHintIssue";
321
- InspectorIssueCode2["FederatedAuthRequestIssue"] = "FederatedAuthRequestIssue";
322
- InspectorIssueCode2["BounceTrackingIssue"] = "BounceTrackingIssue";
323
- InspectorIssueCode2["CookieDeprecationMetadataIssue"] = "CookieDeprecationMetadataIssue";
324
- InspectorIssueCode2["StylesheetLoadingIssue"] = "StylesheetLoadingIssue";
325
- InspectorIssueCode2["FederatedAuthUserInfoRequestIssue"] = "FederatedAuthUserInfoRequestIssue";
326
- InspectorIssueCode2["PropertyRuleIssue"] = "PropertyRuleIssue";
327
- })(InspectorIssueCode = Audits2.InspectorIssueCode || (Audits2.InspectorIssueCode = {}));
328
- let GetEncodedResponseRequestEncoding;
329
- ((GetEncodedResponseRequestEncoding2) => {
330
- GetEncodedResponseRequestEncoding2["Webp"] = "webp";
331
- GetEncodedResponseRequestEncoding2["Jpeg"] = "jpeg";
332
- GetEncodedResponseRequestEncoding2["Png"] = "png";
333
- })(GetEncodedResponseRequestEncoding = Audits2.GetEncodedResponseRequestEncoding || (Audits2.GetEncodedResponseRequestEncoding = {}));
334
- })(Audits || (Audits = {}));
335
- export var Autofill;
336
- ((Autofill2) => {
337
- let FillingStrategy;
338
- ((FillingStrategy2) => {
339
- FillingStrategy2["AutocompleteAttribute"] = "autocompleteAttribute";
340
- FillingStrategy2["AutofillInferred"] = "autofillInferred";
341
- })(FillingStrategy = Autofill2.FillingStrategy || (Autofill2.FillingStrategy = {}));
342
- })(Autofill || (Autofill = {}));
343
- export var BackgroundService;
344
- ((BackgroundService2) => {
345
- let ServiceName;
346
- ((ServiceName2) => {
347
- ServiceName2["BackgroundFetch"] = "backgroundFetch";
348
- ServiceName2["BackgroundSync"] = "backgroundSync";
349
- ServiceName2["PushMessaging"] = "pushMessaging";
350
- ServiceName2["Notifications"] = "notifications";
351
- ServiceName2["PaymentHandler"] = "paymentHandler";
352
- ServiceName2["PeriodicBackgroundSync"] = "periodicBackgroundSync";
353
- })(ServiceName = BackgroundService2.ServiceName || (BackgroundService2.ServiceName = {}));
354
- })(BackgroundService || (BackgroundService = {}));
355
- export var Browser;
356
- ((Browser2) => {
357
- let WindowState;
358
- ((WindowState2) => {
359
- WindowState2["Normal"] = "normal";
360
- WindowState2["Minimized"] = "minimized";
361
- WindowState2["Maximized"] = "maximized";
362
- WindowState2["Fullscreen"] = "fullscreen";
363
- })(WindowState = Browser2.WindowState || (Browser2.WindowState = {}));
364
- let PermissionType;
365
- ((PermissionType2) => {
366
- PermissionType2["AccessibilityEvents"] = "accessibilityEvents";
367
- PermissionType2["AudioCapture"] = "audioCapture";
368
- PermissionType2["BackgroundSync"] = "backgroundSync";
369
- PermissionType2["BackgroundFetch"] = "backgroundFetch";
370
- PermissionType2["CapturedSurfaceControl"] = "capturedSurfaceControl";
371
- PermissionType2["ClipboardReadWrite"] = "clipboardReadWrite";
372
- PermissionType2["ClipboardSanitizedWrite"] = "clipboardSanitizedWrite";
373
- PermissionType2["DisplayCapture"] = "displayCapture";
374
- PermissionType2["DurableStorage"] = "durableStorage";
375
- PermissionType2["Flash"] = "flash";
376
- PermissionType2["Geolocation"] = "geolocation";
377
- PermissionType2["IdleDetection"] = "idleDetection";
378
- PermissionType2["LocalFonts"] = "localFonts";
379
- PermissionType2["Midi"] = "midi";
380
- PermissionType2["MidiSysex"] = "midiSysex";
381
- PermissionType2["Nfc"] = "nfc";
382
- PermissionType2["Notifications"] = "notifications";
383
- PermissionType2["PaymentHandler"] = "paymentHandler";
384
- PermissionType2["PeriodicBackgroundSync"] = "periodicBackgroundSync";
385
- PermissionType2["ProtectedMediaIdentifier"] = "protectedMediaIdentifier";
386
- PermissionType2["Sensors"] = "sensors";
387
- PermissionType2["StorageAccess"] = "storageAccess";
388
- PermissionType2["TopLevelStorageAccess"] = "topLevelStorageAccess";
389
- PermissionType2["VideoCapture"] = "videoCapture";
390
- PermissionType2["VideoCapturePanTiltZoom"] = "videoCapturePanTiltZoom";
391
- PermissionType2["WakeLockScreen"] = "wakeLockScreen";
392
- PermissionType2["WakeLockSystem"] = "wakeLockSystem";
393
- PermissionType2["WindowManagement"] = "windowManagement";
394
- })(PermissionType = Browser2.PermissionType || (Browser2.PermissionType = {}));
395
- let PermissionSetting;
396
- ((PermissionSetting2) => {
397
- PermissionSetting2["Granted"] = "granted";
398
- PermissionSetting2["Denied"] = "denied";
399
- PermissionSetting2["Prompt"] = "prompt";
400
- })(PermissionSetting = Browser2.PermissionSetting || (Browser2.PermissionSetting = {}));
401
- let BrowserCommandId;
402
- ((BrowserCommandId2) => {
403
- BrowserCommandId2["OpenTabSearch"] = "openTabSearch";
404
- BrowserCommandId2["CloseTabSearch"] = "closeTabSearch";
405
- })(BrowserCommandId = Browser2.BrowserCommandId || (Browser2.BrowserCommandId = {}));
406
- let SetDownloadBehaviorRequestBehavior;
407
- ((SetDownloadBehaviorRequestBehavior2) => {
408
- SetDownloadBehaviorRequestBehavior2["Deny"] = "deny";
409
- SetDownloadBehaviorRequestBehavior2["Allow"] = "allow";
410
- SetDownloadBehaviorRequestBehavior2["AllowAndName"] = "allowAndName";
411
- SetDownloadBehaviorRequestBehavior2["Default"] = "default";
412
- })(SetDownloadBehaviorRequestBehavior = Browser2.SetDownloadBehaviorRequestBehavior || (Browser2.SetDownloadBehaviorRequestBehavior = {}));
413
- let DownloadProgressEventState;
414
- ((DownloadProgressEventState2) => {
415
- DownloadProgressEventState2["InProgress"] = "inProgress";
416
- DownloadProgressEventState2["Completed"] = "completed";
417
- DownloadProgressEventState2["Canceled"] = "canceled";
418
- })(DownloadProgressEventState = Browser2.DownloadProgressEventState || (Browser2.DownloadProgressEventState = {}));
419
- })(Browser || (Browser = {}));
420
- export var CSS;
421
- ((CSS2) => {
422
- let StyleSheetOrigin;
423
- ((StyleSheetOrigin2) => {
424
- StyleSheetOrigin2["Injected"] = "injected";
425
- StyleSheetOrigin2["UserAgent"] = "user-agent";
426
- StyleSheetOrigin2["Inspector"] = "inspector";
427
- StyleSheetOrigin2["Regular"] = "regular";
428
- })(StyleSheetOrigin = CSS2.StyleSheetOrigin || (CSS2.StyleSheetOrigin = {}));
429
- let CSSRuleType;
430
- ((CSSRuleType2) => {
431
- CSSRuleType2["MediaRule"] = "MediaRule";
432
- CSSRuleType2["SupportsRule"] = "SupportsRule";
433
- CSSRuleType2["ContainerRule"] = "ContainerRule";
434
- CSSRuleType2["LayerRule"] = "LayerRule";
435
- CSSRuleType2["ScopeRule"] = "ScopeRule";
436
- CSSRuleType2["StyleRule"] = "StyleRule";
437
- })(CSSRuleType = CSS2.CSSRuleType || (CSS2.CSSRuleType = {}));
438
- let CSSMediaSource;
439
- ((CSSMediaSource2) => {
440
- CSSMediaSource2["MediaRule"] = "mediaRule";
441
- CSSMediaSource2["ImportRule"] = "importRule";
442
- CSSMediaSource2["LinkedSheet"] = "linkedSheet";
443
- CSSMediaSource2["InlineSheet"] = "inlineSheet";
444
- })(CSSMediaSource = CSS2.CSSMediaSource || (CSS2.CSSMediaSource = {}));
445
- })(CSS || (CSS = {}));
446
- export var CacheStorage;
447
- ((CacheStorage2) => {
448
- let CachedResponseType;
449
- ((CachedResponseType2) => {
450
- CachedResponseType2["Basic"] = "basic";
451
- CachedResponseType2["Cors"] = "cors";
452
- CachedResponseType2["Default"] = "default";
453
- CachedResponseType2["Error"] = "error";
454
- CachedResponseType2["OpaqueResponse"] = "opaqueResponse";
455
- CachedResponseType2["OpaqueRedirect"] = "opaqueRedirect";
456
- })(CachedResponseType = CacheStorage2.CachedResponseType || (CacheStorage2.CachedResponseType = {}));
457
- })(CacheStorage || (CacheStorage = {}));
458
- export var DOM;
459
- ((DOM2) => {
460
- let PseudoType;
461
- ((PseudoType2) => {
462
- PseudoType2["FirstLine"] = "first-line";
463
- PseudoType2["FirstLetter"] = "first-letter";
464
- PseudoType2["Before"] = "before";
465
- PseudoType2["After"] = "after";
466
- PseudoType2["Marker"] = "marker";
467
- PseudoType2["Backdrop"] = "backdrop";
468
- PseudoType2["Selection"] = "selection";
469
- PseudoType2["TargetText"] = "target-text";
470
- PseudoType2["SpellingError"] = "spelling-error";
471
- PseudoType2["GrammarError"] = "grammar-error";
472
- PseudoType2["Highlight"] = "highlight";
473
- PseudoType2["FirstLineInherited"] = "first-line-inherited";
474
- PseudoType2["Scrollbar"] = "scrollbar";
475
- PseudoType2["ScrollbarThumb"] = "scrollbar-thumb";
476
- PseudoType2["ScrollbarButton"] = "scrollbar-button";
477
- PseudoType2["ScrollbarTrack"] = "scrollbar-track";
478
- PseudoType2["ScrollbarTrackPiece"] = "scrollbar-track-piece";
479
- PseudoType2["ScrollbarCorner"] = "scrollbar-corner";
480
- PseudoType2["Resizer"] = "resizer";
481
- PseudoType2["InputListButton"] = "input-list-button";
482
- PseudoType2["ViewTransition"] = "view-transition";
483
- PseudoType2["ViewTransitionGroup"] = "view-transition-group";
484
- PseudoType2["ViewTransitionImagePair"] = "view-transition-image-pair";
485
- PseudoType2["ViewTransitionOld"] = "view-transition-old";
486
- PseudoType2["ViewTransitionNew"] = "view-transition-new";
487
- })(PseudoType = DOM2.PseudoType || (DOM2.PseudoType = {}));
488
- let ShadowRootType;
489
- ((ShadowRootType2) => {
490
- ShadowRootType2["UserAgent"] = "user-agent";
491
- ShadowRootType2["Open"] = "open";
492
- ShadowRootType2["Closed"] = "closed";
493
- })(ShadowRootType = DOM2.ShadowRootType || (DOM2.ShadowRootType = {}));
494
- let CompatibilityMode;
495
- ((CompatibilityMode2) => {
496
- CompatibilityMode2["QuirksMode"] = "QuirksMode";
497
- CompatibilityMode2["LimitedQuirksMode"] = "LimitedQuirksMode";
498
- CompatibilityMode2["NoQuirksMode"] = "NoQuirksMode";
499
- })(CompatibilityMode = DOM2.CompatibilityMode || (DOM2.CompatibilityMode = {}));
500
- let PhysicalAxes;
501
- ((PhysicalAxes2) => {
502
- PhysicalAxes2["Horizontal"] = "Horizontal";
503
- PhysicalAxes2["Vertical"] = "Vertical";
504
- PhysicalAxes2["Both"] = "Both";
505
- })(PhysicalAxes = DOM2.PhysicalAxes || (DOM2.PhysicalAxes = {}));
506
- let LogicalAxes;
507
- ((LogicalAxes2) => {
508
- LogicalAxes2["Inline"] = "Inline";
509
- LogicalAxes2["Block"] = "Block";
510
- LogicalAxes2["Both"] = "Both";
511
- })(LogicalAxes = DOM2.LogicalAxes || (DOM2.LogicalAxes = {}));
512
- let ScrollOrientation;
513
- ((ScrollOrientation2) => {
514
- ScrollOrientation2["Horizontal"] = "horizontal";
515
- ScrollOrientation2["Vertical"] = "vertical";
516
- })(ScrollOrientation = DOM2.ScrollOrientation || (DOM2.ScrollOrientation = {}));
517
- let EnableRequestIncludeWhitespace;
518
- ((EnableRequestIncludeWhitespace2) => {
519
- EnableRequestIncludeWhitespace2["None"] = "none";
520
- EnableRequestIncludeWhitespace2["All"] = "all";
521
- })(EnableRequestIncludeWhitespace = DOM2.EnableRequestIncludeWhitespace || (DOM2.EnableRequestIncludeWhitespace = {}));
522
- })(DOM || (DOM = {}));
523
- export var DOMDebugger;
524
- ((DOMDebugger2) => {
525
- let DOMBreakpointType;
526
- ((DOMBreakpointType2) => {
527
- DOMBreakpointType2["SubtreeModified"] = "subtree-modified";
528
- DOMBreakpointType2["AttributeModified"] = "attribute-modified";
529
- DOMBreakpointType2["NodeRemoved"] = "node-removed";
530
- })(DOMBreakpointType = DOMDebugger2.DOMBreakpointType || (DOMDebugger2.DOMBreakpointType = {}));
531
- let CSPViolationType;
532
- ((CSPViolationType2) => {
533
- CSPViolationType2["TrustedtypeSinkViolation"] = "trustedtype-sink-violation";
534
- CSPViolationType2["TrustedtypePolicyViolation"] = "trustedtype-policy-violation";
535
- })(CSPViolationType = DOMDebugger2.CSPViolationType || (DOMDebugger2.CSPViolationType = {}));
536
- })(DOMDebugger || (DOMDebugger = {}));
537
- export var Emulation;
538
- ((Emulation2) => {
539
- let ScreenOrientationType;
540
- ((ScreenOrientationType2) => {
541
- ScreenOrientationType2["PortraitPrimary"] = "portraitPrimary";
542
- ScreenOrientationType2["PortraitSecondary"] = "portraitSecondary";
543
- ScreenOrientationType2["LandscapePrimary"] = "landscapePrimary";
544
- ScreenOrientationType2["LandscapeSecondary"] = "landscapeSecondary";
545
- })(ScreenOrientationType = Emulation2.ScreenOrientationType || (Emulation2.ScreenOrientationType = {}));
546
- let DisplayFeatureOrientation;
547
- ((DisplayFeatureOrientation2) => {
548
- DisplayFeatureOrientation2["Vertical"] = "vertical";
549
- DisplayFeatureOrientation2["Horizontal"] = "horizontal";
550
- })(DisplayFeatureOrientation = Emulation2.DisplayFeatureOrientation || (Emulation2.DisplayFeatureOrientation = {}));
551
- let DevicePostureType;
552
- ((DevicePostureType2) => {
553
- DevicePostureType2["Continuous"] = "continuous";
554
- DevicePostureType2["Folded"] = "folded";
555
- })(DevicePostureType = Emulation2.DevicePostureType || (Emulation2.DevicePostureType = {}));
556
- let VirtualTimePolicy;
557
- ((VirtualTimePolicy2) => {
558
- VirtualTimePolicy2["Advance"] = "advance";
559
- VirtualTimePolicy2["Pause"] = "pause";
560
- VirtualTimePolicy2["PauseIfNetworkFetchesPending"] = "pauseIfNetworkFetchesPending";
561
- })(VirtualTimePolicy = Emulation2.VirtualTimePolicy || (Emulation2.VirtualTimePolicy = {}));
562
- let SensorType;
563
- ((SensorType2) => {
564
- SensorType2["AbsoluteOrientation"] = "absolute-orientation";
565
- SensorType2["Accelerometer"] = "accelerometer";
566
- SensorType2["AmbientLight"] = "ambient-light";
567
- SensorType2["Gravity"] = "gravity";
568
- SensorType2["Gyroscope"] = "gyroscope";
569
- SensorType2["LinearAcceleration"] = "linear-acceleration";
570
- SensorType2["Magnetometer"] = "magnetometer";
571
- SensorType2["Proximity"] = "proximity";
572
- SensorType2["RelativeOrientation"] = "relative-orientation";
573
- })(SensorType = Emulation2.SensorType || (Emulation2.SensorType = {}));
574
- let DisabledImageType;
575
- ((DisabledImageType2) => {
576
- DisabledImageType2["Avif"] = "avif";
577
- DisabledImageType2["Webp"] = "webp";
578
- })(DisabledImageType = Emulation2.DisabledImageType || (Emulation2.DisabledImageType = {}));
579
- let SetEmitTouchEventsForMouseRequestConfiguration;
580
- ((SetEmitTouchEventsForMouseRequestConfiguration2) => {
581
- SetEmitTouchEventsForMouseRequestConfiguration2["Mobile"] = "mobile";
582
- SetEmitTouchEventsForMouseRequestConfiguration2["Desktop"] = "desktop";
583
- })(SetEmitTouchEventsForMouseRequestConfiguration = Emulation2.SetEmitTouchEventsForMouseRequestConfiguration || (Emulation2.SetEmitTouchEventsForMouseRequestConfiguration = {}));
584
- let SetEmulatedVisionDeficiencyRequestType;
585
- ((SetEmulatedVisionDeficiencyRequestType2) => {
586
- SetEmulatedVisionDeficiencyRequestType2["None"] = "none";
587
- SetEmulatedVisionDeficiencyRequestType2["BlurredVision"] = "blurredVision";
588
- SetEmulatedVisionDeficiencyRequestType2["ReducedContrast"] = "reducedContrast";
589
- SetEmulatedVisionDeficiencyRequestType2["Achromatopsia"] = "achromatopsia";
590
- SetEmulatedVisionDeficiencyRequestType2["Deuteranopia"] = "deuteranopia";
591
- SetEmulatedVisionDeficiencyRequestType2["Protanopia"] = "protanopia";
592
- SetEmulatedVisionDeficiencyRequestType2["Tritanopia"] = "tritanopia";
593
- })(SetEmulatedVisionDeficiencyRequestType = Emulation2.SetEmulatedVisionDeficiencyRequestType || (Emulation2.SetEmulatedVisionDeficiencyRequestType = {}));
594
- })(Emulation || (Emulation = {}));
595
- export var HeadlessExperimental;
596
- ((HeadlessExperimental2) => {
597
- let ScreenshotParamsFormat;
598
- ((ScreenshotParamsFormat2) => {
599
- ScreenshotParamsFormat2["Jpeg"] = "jpeg";
600
- ScreenshotParamsFormat2["Png"] = "png";
601
- ScreenshotParamsFormat2["Webp"] = "webp";
602
- })(ScreenshotParamsFormat = HeadlessExperimental2.ScreenshotParamsFormat || (HeadlessExperimental2.ScreenshotParamsFormat = {}));
603
- })(HeadlessExperimental || (HeadlessExperimental = {}));
604
- export var IndexedDB;
605
- ((IndexedDB2) => {
606
- let KeyType;
607
- ((KeyType2) => {
608
- KeyType2["Number"] = "number";
609
- KeyType2["String"] = "string";
610
- KeyType2["Date"] = "date";
611
- KeyType2["Array"] = "array";
612
- })(KeyType = IndexedDB2.KeyType || (IndexedDB2.KeyType = {}));
613
- let KeyPathType;
614
- ((KeyPathType2) => {
615
- KeyPathType2["Null"] = "null";
616
- KeyPathType2["String"] = "string";
617
- KeyPathType2["Array"] = "array";
618
- })(KeyPathType = IndexedDB2.KeyPathType || (IndexedDB2.KeyPathType = {}));
619
- })(IndexedDB || (IndexedDB = {}));
620
- export var Input;
621
- ((Input2) => {
622
- let GestureSourceType;
623
- ((GestureSourceType2) => {
624
- GestureSourceType2["Default"] = "default";
625
- GestureSourceType2["Touch"] = "touch";
626
- GestureSourceType2["Mouse"] = "mouse";
627
- })(GestureSourceType = Input2.GestureSourceType || (Input2.GestureSourceType = {}));
628
- let MouseButton;
629
- ((MouseButton2) => {
630
- MouseButton2["None"] = "none";
631
- MouseButton2["Left"] = "left";
632
- MouseButton2["Middle"] = "middle";
633
- MouseButton2["Right"] = "right";
634
- MouseButton2["Back"] = "back";
635
- MouseButton2["Forward"] = "forward";
636
- })(MouseButton = Input2.MouseButton || (Input2.MouseButton = {}));
637
- let DispatchDragEventRequestType;
638
- ((DispatchDragEventRequestType2) => {
639
- DispatchDragEventRequestType2["DragEnter"] = "dragEnter";
640
- DispatchDragEventRequestType2["DragOver"] = "dragOver";
641
- DispatchDragEventRequestType2["Drop"] = "drop";
642
- DispatchDragEventRequestType2["DragCancel"] = "dragCancel";
643
- })(DispatchDragEventRequestType = Input2.DispatchDragEventRequestType || (Input2.DispatchDragEventRequestType = {}));
644
- let DispatchKeyEventRequestType;
645
- ((DispatchKeyEventRequestType2) => {
646
- DispatchKeyEventRequestType2["KeyDown"] = "keyDown";
647
- DispatchKeyEventRequestType2["KeyUp"] = "keyUp";
648
- DispatchKeyEventRequestType2["RawKeyDown"] = "rawKeyDown";
649
- DispatchKeyEventRequestType2["Char"] = "char";
650
- })(DispatchKeyEventRequestType = Input2.DispatchKeyEventRequestType || (Input2.DispatchKeyEventRequestType = {}));
651
- let DispatchMouseEventRequestType;
652
- ((DispatchMouseEventRequestType2) => {
653
- DispatchMouseEventRequestType2["MousePressed"] = "mousePressed";
654
- DispatchMouseEventRequestType2["MouseReleased"] = "mouseReleased";
655
- DispatchMouseEventRequestType2["MouseMoved"] = "mouseMoved";
656
- DispatchMouseEventRequestType2["MouseWheel"] = "mouseWheel";
657
- })(DispatchMouseEventRequestType = Input2.DispatchMouseEventRequestType || (Input2.DispatchMouseEventRequestType = {}));
658
- let DispatchMouseEventRequestPointerType;
659
- ((DispatchMouseEventRequestPointerType2) => {
660
- DispatchMouseEventRequestPointerType2["Mouse"] = "mouse";
661
- DispatchMouseEventRequestPointerType2["Pen"] = "pen";
662
- })(DispatchMouseEventRequestPointerType = Input2.DispatchMouseEventRequestPointerType || (Input2.DispatchMouseEventRequestPointerType = {}));
663
- let DispatchTouchEventRequestType;
664
- ((DispatchTouchEventRequestType2) => {
665
- DispatchTouchEventRequestType2["TouchStart"] = "touchStart";
666
- DispatchTouchEventRequestType2["TouchEnd"] = "touchEnd";
667
- DispatchTouchEventRequestType2["TouchMove"] = "touchMove";
668
- DispatchTouchEventRequestType2["TouchCancel"] = "touchCancel";
669
- })(DispatchTouchEventRequestType = Input2.DispatchTouchEventRequestType || (Input2.DispatchTouchEventRequestType = {}));
670
- let EmulateTouchFromMouseEventRequestType;
671
- ((EmulateTouchFromMouseEventRequestType2) => {
672
- EmulateTouchFromMouseEventRequestType2["MousePressed"] = "mousePressed";
673
- EmulateTouchFromMouseEventRequestType2["MouseReleased"] = "mouseReleased";
674
- EmulateTouchFromMouseEventRequestType2["MouseMoved"] = "mouseMoved";
675
- EmulateTouchFromMouseEventRequestType2["MouseWheel"] = "mouseWheel";
676
- })(EmulateTouchFromMouseEventRequestType = Input2.EmulateTouchFromMouseEventRequestType || (Input2.EmulateTouchFromMouseEventRequestType = {}));
677
- })(Input || (Input = {}));
678
- export var LayerTree;
679
- ((LayerTree2) => {
680
- let ScrollRectType;
681
- ((ScrollRectType2) => {
682
- ScrollRectType2["RepaintsOnScroll"] = "RepaintsOnScroll";
683
- ScrollRectType2["TouchEventHandler"] = "TouchEventHandler";
684
- ScrollRectType2["WheelEventHandler"] = "WheelEventHandler";
685
- })(ScrollRectType = LayerTree2.ScrollRectType || (LayerTree2.ScrollRectType = {}));
686
- })(LayerTree || (LayerTree = {}));
687
- export var Log;
688
- ((Log2) => {
689
- let LogEntrySource;
690
- ((LogEntrySource2) => {
691
- LogEntrySource2["XML"] = "xml";
692
- LogEntrySource2["Javascript"] = "javascript";
693
- LogEntrySource2["Network"] = "network";
694
- LogEntrySource2["Storage"] = "storage";
695
- LogEntrySource2["Appcache"] = "appcache";
696
- LogEntrySource2["Rendering"] = "rendering";
697
- LogEntrySource2["Security"] = "security";
698
- LogEntrySource2["Deprecation"] = "deprecation";
699
- LogEntrySource2["Worker"] = "worker";
700
- LogEntrySource2["Violation"] = "violation";
701
- LogEntrySource2["Intervention"] = "intervention";
702
- LogEntrySource2["Recommendation"] = "recommendation";
703
- LogEntrySource2["Other"] = "other";
704
- })(LogEntrySource = Log2.LogEntrySource || (Log2.LogEntrySource = {}));
705
- let LogEntryLevel;
706
- ((LogEntryLevel2) => {
707
- LogEntryLevel2["Verbose"] = "verbose";
708
- LogEntryLevel2["Info"] = "info";
709
- LogEntryLevel2["Warning"] = "warning";
710
- LogEntryLevel2["Error"] = "error";
711
- })(LogEntryLevel = Log2.LogEntryLevel || (Log2.LogEntryLevel = {}));
712
- let LogEntryCategory;
713
- ((LogEntryCategory2) => {
714
- LogEntryCategory2["Cors"] = "cors";
715
- })(LogEntryCategory = Log2.LogEntryCategory || (Log2.LogEntryCategory = {}));
716
- let ViolationSettingName;
717
- ((ViolationSettingName2) => {
718
- ViolationSettingName2["LongTask"] = "longTask";
719
- ViolationSettingName2["LongLayout"] = "longLayout";
720
- ViolationSettingName2["BlockedEvent"] = "blockedEvent";
721
- ViolationSettingName2["BlockedParser"] = "blockedParser";
722
- ViolationSettingName2["DiscouragedAPIUse"] = "discouragedAPIUse";
723
- ViolationSettingName2["Handler"] = "handler";
724
- ViolationSettingName2["RecurringHandler"] = "recurringHandler";
725
- })(ViolationSettingName = Log2.ViolationSettingName || (Log2.ViolationSettingName = {}));
726
- })(Log || (Log = {}));
727
- export var Memory;
728
- ((Memory2) => {
729
- let PressureLevel;
730
- ((PressureLevel2) => {
731
- PressureLevel2["Moderate"] = "moderate";
732
- PressureLevel2["Critical"] = "critical";
733
- })(PressureLevel = Memory2.PressureLevel || (Memory2.PressureLevel = {}));
734
- })(Memory || (Memory = {}));
735
- export var Network;
736
- ((Network2) => {
737
- let ResourceType;
738
- ((ResourceType2) => {
739
- ResourceType2["Document"] = "Document";
740
- ResourceType2["Stylesheet"] = "Stylesheet";
741
- ResourceType2["Image"] = "Image";
742
- ResourceType2["Media"] = "Media";
743
- ResourceType2["Font"] = "Font";
744
- ResourceType2["Script"] = "Script";
745
- ResourceType2["TextTrack"] = "TextTrack";
746
- ResourceType2["XHR"] = "XHR";
747
- ResourceType2["Fetch"] = "Fetch";
748
- ResourceType2["Prefetch"] = "Prefetch";
749
- ResourceType2["EventSource"] = "EventSource";
750
- ResourceType2["WebSocket"] = "WebSocket";
751
- ResourceType2["Manifest"] = "Manifest";
752
- ResourceType2["SignedExchange"] = "SignedExchange";
753
- ResourceType2["Ping"] = "Ping";
754
- ResourceType2["CSPViolationReport"] = "CSPViolationReport";
755
- ResourceType2["Preflight"] = "Preflight";
756
- ResourceType2["Other"] = "Other";
757
- })(ResourceType = Network2.ResourceType || (Network2.ResourceType = {}));
758
- let ErrorReason;
759
- ((ErrorReason2) => {
760
- ErrorReason2["Failed"] = "Failed";
761
- ErrorReason2["Aborted"] = "Aborted";
762
- ErrorReason2["TimedOut"] = "TimedOut";
763
- ErrorReason2["AccessDenied"] = "AccessDenied";
764
- ErrorReason2["ConnectionClosed"] = "ConnectionClosed";
765
- ErrorReason2["ConnectionReset"] = "ConnectionReset";
766
- ErrorReason2["ConnectionRefused"] = "ConnectionRefused";
767
- ErrorReason2["ConnectionAborted"] = "ConnectionAborted";
768
- ErrorReason2["ConnectionFailed"] = "ConnectionFailed";
769
- ErrorReason2["NameNotResolved"] = "NameNotResolved";
770
- ErrorReason2["InternetDisconnected"] = "InternetDisconnected";
771
- ErrorReason2["AddressUnreachable"] = "AddressUnreachable";
772
- ErrorReason2["BlockedByClient"] = "BlockedByClient";
773
- ErrorReason2["BlockedByResponse"] = "BlockedByResponse";
774
- })(ErrorReason = Network2.ErrorReason || (Network2.ErrorReason = {}));
775
- let ConnectionType;
776
- ((ConnectionType2) => {
777
- ConnectionType2["None"] = "none";
778
- ConnectionType2["Cellular2g"] = "cellular2g";
779
- ConnectionType2["Cellular3g"] = "cellular3g";
780
- ConnectionType2["Cellular4g"] = "cellular4g";
781
- ConnectionType2["Bluetooth"] = "bluetooth";
782
- ConnectionType2["Ethernet"] = "ethernet";
783
- ConnectionType2["Wifi"] = "wifi";
784
- ConnectionType2["Wimax"] = "wimax";
785
- ConnectionType2["Other"] = "other";
786
- })(ConnectionType = Network2.ConnectionType || (Network2.ConnectionType = {}));
787
- let CookieSameSite;
788
- ((CookieSameSite2) => {
789
- CookieSameSite2["Strict"] = "Strict";
790
- CookieSameSite2["Lax"] = "Lax";
791
- CookieSameSite2["None"] = "None";
792
- })(CookieSameSite = Network2.CookieSameSite || (Network2.CookieSameSite = {}));
793
- let CookiePriority;
794
- ((CookiePriority2) => {
795
- CookiePriority2["Low"] = "Low";
796
- CookiePriority2["Medium"] = "Medium";
797
- CookiePriority2["High"] = "High";
798
- })(CookiePriority = Network2.CookiePriority || (Network2.CookiePriority = {}));
799
- let CookieSourceScheme;
800
- ((CookieSourceScheme2) => {
801
- CookieSourceScheme2["Unset"] = "Unset";
802
- CookieSourceScheme2["NonSecure"] = "NonSecure";
803
- CookieSourceScheme2["Secure"] = "Secure";
804
- })(CookieSourceScheme = Network2.CookieSourceScheme || (Network2.CookieSourceScheme = {}));
805
- let ResourcePriority;
806
- ((ResourcePriority2) => {
807
- ResourcePriority2["VeryLow"] = "VeryLow";
808
- ResourcePriority2["Low"] = "Low";
809
- ResourcePriority2["Medium"] = "Medium";
810
- ResourcePriority2["High"] = "High";
811
- ResourcePriority2["VeryHigh"] = "VeryHigh";
812
- })(ResourcePriority = Network2.ResourcePriority || (Network2.ResourcePriority = {}));
813
- let RequestReferrerPolicy;
814
- ((RequestReferrerPolicy2) => {
815
- RequestReferrerPolicy2["UnsafeUrl"] = "unsafe-url";
816
- RequestReferrerPolicy2["NoReferrerWhenDowngrade"] = "no-referrer-when-downgrade";
817
- RequestReferrerPolicy2["NoReferrer"] = "no-referrer";
818
- RequestReferrerPolicy2["Origin"] = "origin";
819
- RequestReferrerPolicy2["OriginWhenCrossOrigin"] = "origin-when-cross-origin";
820
- RequestReferrerPolicy2["SameOrigin"] = "same-origin";
821
- RequestReferrerPolicy2["StrictOrigin"] = "strict-origin";
822
- RequestReferrerPolicy2["StrictOriginWhenCrossOrigin"] = "strict-origin-when-cross-origin";
823
- })(RequestReferrerPolicy = Network2.RequestReferrerPolicy || (Network2.RequestReferrerPolicy = {}));
824
- let CertificateTransparencyCompliance;
825
- ((CertificateTransparencyCompliance2) => {
826
- CertificateTransparencyCompliance2["Unknown"] = "unknown";
827
- CertificateTransparencyCompliance2["NotCompliant"] = "not-compliant";
828
- CertificateTransparencyCompliance2["Compliant"] = "compliant";
829
- })(CertificateTransparencyCompliance = Network2.CertificateTransparencyCompliance || (Network2.CertificateTransparencyCompliance = {}));
830
- let BlockedReason;
831
- ((BlockedReason2) => {
832
- BlockedReason2["Other"] = "other";
833
- BlockedReason2["Csp"] = "csp";
834
- BlockedReason2["MixedContent"] = "mixed-content";
835
- BlockedReason2["Origin"] = "origin";
836
- BlockedReason2["Inspector"] = "inspector";
837
- BlockedReason2["SubresourceFilter"] = "subresource-filter";
838
- BlockedReason2["ContentType"] = "content-type";
839
- BlockedReason2["CoepFrameResourceNeedsCoepHeader"] = "coep-frame-resource-needs-coep-header";
840
- BlockedReason2["CoopSandboxedIframeCannotNavigateToCoopPage"] = "coop-sandboxed-iframe-cannot-navigate-to-coop-page";
841
- BlockedReason2["CorpNotSameOrigin"] = "corp-not-same-origin";
842
- BlockedReason2["CorpNotSameOriginAfterDefaultedToSameOriginByCoep"] = "corp-not-same-origin-after-defaulted-to-same-origin-by-coep";
843
- BlockedReason2["CorpNotSameSite"] = "corp-not-same-site";
844
- })(BlockedReason = Network2.BlockedReason || (Network2.BlockedReason = {}));
845
- let CorsError;
846
- ((CorsError2) => {
847
- CorsError2["DisallowedByMode"] = "DisallowedByMode";
848
- CorsError2["InvalidResponse"] = "InvalidResponse";
849
- CorsError2["WildcardOriginNotAllowed"] = "WildcardOriginNotAllowed";
850
- CorsError2["MissingAllowOriginHeader"] = "MissingAllowOriginHeader";
851
- CorsError2["MultipleAllowOriginValues"] = "MultipleAllowOriginValues";
852
- CorsError2["InvalidAllowOriginValue"] = "InvalidAllowOriginValue";
853
- CorsError2["AllowOriginMismatch"] = "AllowOriginMismatch";
854
- CorsError2["InvalidAllowCredentials"] = "InvalidAllowCredentials";
855
- CorsError2["CorsDisabledScheme"] = "CorsDisabledScheme";
856
- CorsError2["PreflightInvalidStatus"] = "PreflightInvalidStatus";
857
- CorsError2["PreflightDisallowedRedirect"] = "PreflightDisallowedRedirect";
858
- CorsError2["PreflightWildcardOriginNotAllowed"] = "PreflightWildcardOriginNotAllowed";
859
- CorsError2["PreflightMissingAllowOriginHeader"] = "PreflightMissingAllowOriginHeader";
860
- CorsError2["PreflightMultipleAllowOriginValues"] = "PreflightMultipleAllowOriginValues";
861
- CorsError2["PreflightInvalidAllowOriginValue"] = "PreflightInvalidAllowOriginValue";
862
- CorsError2["PreflightAllowOriginMismatch"] = "PreflightAllowOriginMismatch";
863
- CorsError2["PreflightInvalidAllowCredentials"] = "PreflightInvalidAllowCredentials";
864
- CorsError2["PreflightMissingAllowExternal"] = "PreflightMissingAllowExternal";
865
- CorsError2["PreflightInvalidAllowExternal"] = "PreflightInvalidAllowExternal";
866
- CorsError2["PreflightMissingAllowPrivateNetwork"] = "PreflightMissingAllowPrivateNetwork";
867
- CorsError2["PreflightInvalidAllowPrivateNetwork"] = "PreflightInvalidAllowPrivateNetwork";
868
- CorsError2["InvalidAllowMethodsPreflightResponse"] = "InvalidAllowMethodsPreflightResponse";
869
- CorsError2["InvalidAllowHeadersPreflightResponse"] = "InvalidAllowHeadersPreflightResponse";
870
- CorsError2["MethodDisallowedByPreflightResponse"] = "MethodDisallowedByPreflightResponse";
871
- CorsError2["HeaderDisallowedByPreflightResponse"] = "HeaderDisallowedByPreflightResponse";
872
- CorsError2["RedirectContainsCredentials"] = "RedirectContainsCredentials";
873
- CorsError2["InsecurePrivateNetwork"] = "InsecurePrivateNetwork";
874
- CorsError2["InvalidPrivateNetworkAccess"] = "InvalidPrivateNetworkAccess";
875
- CorsError2["UnexpectedPrivateNetworkAccess"] = "UnexpectedPrivateNetworkAccess";
876
- CorsError2["NoCorsRedirectModeNotFollow"] = "NoCorsRedirectModeNotFollow";
877
- CorsError2["PreflightMissingPrivateNetworkAccessId"] = "PreflightMissingPrivateNetworkAccessId";
878
- CorsError2["PreflightMissingPrivateNetworkAccessName"] = "PreflightMissingPrivateNetworkAccessName";
879
- CorsError2["PrivateNetworkAccessPermissionUnavailable"] = "PrivateNetworkAccessPermissionUnavailable";
880
- CorsError2["PrivateNetworkAccessPermissionDenied"] = "PrivateNetworkAccessPermissionDenied";
881
- })(CorsError = Network2.CorsError || (Network2.CorsError = {}));
882
- let ServiceWorkerResponseSource;
883
- ((ServiceWorkerResponseSource2) => {
884
- ServiceWorkerResponseSource2["CacheStorage"] = "cache-storage";
885
- ServiceWorkerResponseSource2["HttpCache"] = "http-cache";
886
- ServiceWorkerResponseSource2["FallbackCode"] = "fallback-code";
887
- ServiceWorkerResponseSource2["Network"] = "network";
888
- })(ServiceWorkerResponseSource = Network2.ServiceWorkerResponseSource || (Network2.ServiceWorkerResponseSource = {}));
889
- let TrustTokenParamsRefreshPolicy;
890
- ((TrustTokenParamsRefreshPolicy2) => {
891
- TrustTokenParamsRefreshPolicy2["UseCached"] = "UseCached";
892
- TrustTokenParamsRefreshPolicy2["Refresh"] = "Refresh";
893
- })(TrustTokenParamsRefreshPolicy = Network2.TrustTokenParamsRefreshPolicy || (Network2.TrustTokenParamsRefreshPolicy = {}));
894
- let TrustTokenOperationType;
895
- ((TrustTokenOperationType2) => {
896
- TrustTokenOperationType2["Issuance"] = "Issuance";
897
- TrustTokenOperationType2["Redemption"] = "Redemption";
898
- TrustTokenOperationType2["Signing"] = "Signing";
899
- })(TrustTokenOperationType = Network2.TrustTokenOperationType || (Network2.TrustTokenOperationType = {}));
900
- let AlternateProtocolUsage;
901
- ((AlternateProtocolUsage2) => {
902
- AlternateProtocolUsage2["AlternativeJobWonWithoutRace"] = "alternativeJobWonWithoutRace";
903
- AlternateProtocolUsage2["AlternativeJobWonRace"] = "alternativeJobWonRace";
904
- AlternateProtocolUsage2["MainJobWonRace"] = "mainJobWonRace";
905
- AlternateProtocolUsage2["MappingMissing"] = "mappingMissing";
906
- AlternateProtocolUsage2["Broken"] = "broken";
907
- AlternateProtocolUsage2["DnsAlpnH3JobWonWithoutRace"] = "dnsAlpnH3JobWonWithoutRace";
908
- AlternateProtocolUsage2["DnsAlpnH3JobWonRace"] = "dnsAlpnH3JobWonRace";
909
- AlternateProtocolUsage2["UnspecifiedReason"] = "unspecifiedReason";
910
- })(AlternateProtocolUsage = Network2.AlternateProtocolUsage || (Network2.AlternateProtocolUsage = {}));
911
- let InitiatorType;
912
- ((InitiatorType2) => {
913
- InitiatorType2["Parser"] = "parser";
914
- InitiatorType2["Script"] = "script";
915
- InitiatorType2["Preload"] = "preload";
916
- InitiatorType2["SignedExchange"] = "SignedExchange";
917
- InitiatorType2["Preflight"] = "preflight";
918
- InitiatorType2["Other"] = "other";
919
- })(InitiatorType = Network2.InitiatorType || (Network2.InitiatorType = {}));
920
- let SetCookieBlockedReason;
921
- ((SetCookieBlockedReason2) => {
922
- SetCookieBlockedReason2["SecureOnly"] = "SecureOnly";
923
- SetCookieBlockedReason2["SameSiteStrict"] = "SameSiteStrict";
924
- SetCookieBlockedReason2["SameSiteLax"] = "SameSiteLax";
925
- SetCookieBlockedReason2["SameSiteUnspecifiedTreatedAsLax"] = "SameSiteUnspecifiedTreatedAsLax";
926
- SetCookieBlockedReason2["SameSiteNoneInsecure"] = "SameSiteNoneInsecure";
927
- SetCookieBlockedReason2["UserPreferences"] = "UserPreferences";
928
- SetCookieBlockedReason2["ThirdPartyPhaseout"] = "ThirdPartyPhaseout";
929
- SetCookieBlockedReason2["ThirdPartyBlockedInFirstPartySet"] = "ThirdPartyBlockedInFirstPartySet";
930
- SetCookieBlockedReason2["SyntaxError"] = "SyntaxError";
931
- SetCookieBlockedReason2["SchemeNotSupported"] = "SchemeNotSupported";
932
- SetCookieBlockedReason2["OverwriteSecure"] = "OverwriteSecure";
933
- SetCookieBlockedReason2["InvalidDomain"] = "InvalidDomain";
934
- SetCookieBlockedReason2["InvalidPrefix"] = "InvalidPrefix";
935
- SetCookieBlockedReason2["UnknownError"] = "UnknownError";
936
- SetCookieBlockedReason2["SchemefulSameSiteStrict"] = "SchemefulSameSiteStrict";
937
- SetCookieBlockedReason2["SchemefulSameSiteLax"] = "SchemefulSameSiteLax";
938
- SetCookieBlockedReason2["SchemefulSameSiteUnspecifiedTreatedAsLax"] = "SchemefulSameSiteUnspecifiedTreatedAsLax";
939
- SetCookieBlockedReason2["SamePartyFromCrossPartyContext"] = "SamePartyFromCrossPartyContext";
940
- SetCookieBlockedReason2["SamePartyConflictsWithOtherAttributes"] = "SamePartyConflictsWithOtherAttributes";
941
- SetCookieBlockedReason2["NameValuePairExceedsMaxSize"] = "NameValuePairExceedsMaxSize";
942
- SetCookieBlockedReason2["DisallowedCharacter"] = "DisallowedCharacter";
943
- SetCookieBlockedReason2["NoCookieContent"] = "NoCookieContent";
944
- })(SetCookieBlockedReason = Network2.SetCookieBlockedReason || (Network2.SetCookieBlockedReason = {}));
945
- let CookieBlockedReason;
946
- ((CookieBlockedReason2) => {
947
- CookieBlockedReason2["SecureOnly"] = "SecureOnly";
948
- CookieBlockedReason2["NotOnPath"] = "NotOnPath";
949
- CookieBlockedReason2["DomainMismatch"] = "DomainMismatch";
950
- CookieBlockedReason2["SameSiteStrict"] = "SameSiteStrict";
951
- CookieBlockedReason2["SameSiteLax"] = "SameSiteLax";
952
- CookieBlockedReason2["SameSiteUnspecifiedTreatedAsLax"] = "SameSiteUnspecifiedTreatedAsLax";
953
- CookieBlockedReason2["SameSiteNoneInsecure"] = "SameSiteNoneInsecure";
954
- CookieBlockedReason2["UserPreferences"] = "UserPreferences";
955
- CookieBlockedReason2["ThirdPartyPhaseout"] = "ThirdPartyPhaseout";
956
- CookieBlockedReason2["ThirdPartyBlockedInFirstPartySet"] = "ThirdPartyBlockedInFirstPartySet";
957
- CookieBlockedReason2["UnknownError"] = "UnknownError";
958
- CookieBlockedReason2["SchemefulSameSiteStrict"] = "SchemefulSameSiteStrict";
959
- CookieBlockedReason2["SchemefulSameSiteLax"] = "SchemefulSameSiteLax";
960
- CookieBlockedReason2["SchemefulSameSiteUnspecifiedTreatedAsLax"] = "SchemefulSameSiteUnspecifiedTreatedAsLax";
961
- CookieBlockedReason2["SamePartyFromCrossPartyContext"] = "SamePartyFromCrossPartyContext";
962
- CookieBlockedReason2["NameValuePairExceedsMaxSize"] = "NameValuePairExceedsMaxSize";
963
- })(CookieBlockedReason = Network2.CookieBlockedReason || (Network2.CookieBlockedReason = {}));
964
- let CookieExemptionReason;
965
- ((CookieExemptionReason2) => {
966
- CookieExemptionReason2["None"] = "None";
967
- CookieExemptionReason2["UserSetting"] = "UserSetting";
968
- CookieExemptionReason2["TPCDMetadata"] = "TPCDMetadata";
969
- CookieExemptionReason2["TPCDDeprecationTrial"] = "TPCDDeprecationTrial";
970
- CookieExemptionReason2["TPCDHeuristics"] = "TPCDHeuristics";
971
- CookieExemptionReason2["EnterprisePolicy"] = "EnterprisePolicy";
972
- CookieExemptionReason2["StorageAccess"] = "StorageAccess";
973
- CookieExemptionReason2["TopLevelStorageAccess"] = "TopLevelStorageAccess";
974
- CookieExemptionReason2["CorsOptIn"] = "CorsOptIn";
975
- })(CookieExemptionReason = Network2.CookieExemptionReason || (Network2.CookieExemptionReason = {}));
976
- let AuthChallengeSource;
977
- ((AuthChallengeSource2) => {
978
- AuthChallengeSource2["Server"] = "Server";
979
- AuthChallengeSource2["Proxy"] = "Proxy";
980
- })(AuthChallengeSource = Network2.AuthChallengeSource || (Network2.AuthChallengeSource = {}));
981
- let AuthChallengeResponseResponse;
982
- ((AuthChallengeResponseResponse2) => {
983
- AuthChallengeResponseResponse2["Default"] = "Default";
984
- AuthChallengeResponseResponse2["CancelAuth"] = "CancelAuth";
985
- AuthChallengeResponseResponse2["ProvideCredentials"] = "ProvideCredentials";
986
- })(AuthChallengeResponseResponse = Network2.AuthChallengeResponseResponse || (Network2.AuthChallengeResponseResponse = {}));
987
- let InterceptionStage;
988
- ((InterceptionStage2) => {
989
- InterceptionStage2["Request"] = "Request";
990
- InterceptionStage2["HeadersReceived"] = "HeadersReceived";
991
- })(InterceptionStage = Network2.InterceptionStage || (Network2.InterceptionStage = {}));
992
- let SignedExchangeErrorField;
993
- ((SignedExchangeErrorField2) => {
994
- SignedExchangeErrorField2["SignatureSig"] = "signatureSig";
995
- SignedExchangeErrorField2["SignatureIntegrity"] = "signatureIntegrity";
996
- SignedExchangeErrorField2["SignatureCertUrl"] = "signatureCertUrl";
997
- SignedExchangeErrorField2["SignatureCertSha256"] = "signatureCertSha256";
998
- SignedExchangeErrorField2["SignatureValidityUrl"] = "signatureValidityUrl";
999
- SignedExchangeErrorField2["SignatureTimestamps"] = "signatureTimestamps";
1000
- })(SignedExchangeErrorField = Network2.SignedExchangeErrorField || (Network2.SignedExchangeErrorField = {}));
1001
- let ContentEncoding;
1002
- ((ContentEncoding2) => {
1003
- ContentEncoding2["Deflate"] = "deflate";
1004
- ContentEncoding2["Gzip"] = "gzip";
1005
- ContentEncoding2["Br"] = "br";
1006
- ContentEncoding2["Zstd"] = "zstd";
1007
- })(ContentEncoding = Network2.ContentEncoding || (Network2.ContentEncoding = {}));
1008
- let PrivateNetworkRequestPolicy;
1009
- ((PrivateNetworkRequestPolicy2) => {
1010
- PrivateNetworkRequestPolicy2["Allow"] = "Allow";
1011
- PrivateNetworkRequestPolicy2["BlockFromInsecureToMorePrivate"] = "BlockFromInsecureToMorePrivate";
1012
- PrivateNetworkRequestPolicy2["WarnFromInsecureToMorePrivate"] = "WarnFromInsecureToMorePrivate";
1013
- PrivateNetworkRequestPolicy2["PreflightBlock"] = "PreflightBlock";
1014
- PrivateNetworkRequestPolicy2["PreflightWarn"] = "PreflightWarn";
1015
- })(PrivateNetworkRequestPolicy = Network2.PrivateNetworkRequestPolicy || (Network2.PrivateNetworkRequestPolicy = {}));
1016
- let IPAddressSpace;
1017
- ((IPAddressSpace2) => {
1018
- IPAddressSpace2["Local"] = "Local";
1019
- IPAddressSpace2["Private"] = "Private";
1020
- IPAddressSpace2["Public"] = "Public";
1021
- IPAddressSpace2["Unknown"] = "Unknown";
1022
- })(IPAddressSpace = Network2.IPAddressSpace || (Network2.IPAddressSpace = {}));
1023
- let CrossOriginOpenerPolicyValue;
1024
- ((CrossOriginOpenerPolicyValue2) => {
1025
- CrossOriginOpenerPolicyValue2["SameOrigin"] = "SameOrigin";
1026
- CrossOriginOpenerPolicyValue2["SameOriginAllowPopups"] = "SameOriginAllowPopups";
1027
- CrossOriginOpenerPolicyValue2["RestrictProperties"] = "RestrictProperties";
1028
- CrossOriginOpenerPolicyValue2["UnsafeNone"] = "UnsafeNone";
1029
- CrossOriginOpenerPolicyValue2["SameOriginPlusCoep"] = "SameOriginPlusCoep";
1030
- CrossOriginOpenerPolicyValue2["RestrictPropertiesPlusCoep"] = "RestrictPropertiesPlusCoep";
1031
- })(CrossOriginOpenerPolicyValue = Network2.CrossOriginOpenerPolicyValue || (Network2.CrossOriginOpenerPolicyValue = {}));
1032
- let CrossOriginEmbedderPolicyValue;
1033
- ((CrossOriginEmbedderPolicyValue2) => {
1034
- CrossOriginEmbedderPolicyValue2["None"] = "None";
1035
- CrossOriginEmbedderPolicyValue2["Credentialless"] = "Credentialless";
1036
- CrossOriginEmbedderPolicyValue2["RequireCorp"] = "RequireCorp";
1037
- })(CrossOriginEmbedderPolicyValue = Network2.CrossOriginEmbedderPolicyValue || (Network2.CrossOriginEmbedderPolicyValue = {}));
1038
- let ContentSecurityPolicySource;
1039
- ((ContentSecurityPolicySource2) => {
1040
- ContentSecurityPolicySource2["HTTP"] = "HTTP";
1041
- ContentSecurityPolicySource2["Meta"] = "Meta";
1042
- })(ContentSecurityPolicySource = Network2.ContentSecurityPolicySource || (Network2.ContentSecurityPolicySource = {}));
1043
- let ReportStatus;
1044
- ((ReportStatus2) => {
1045
- ReportStatus2["Queued"] = "Queued";
1046
- ReportStatus2["Pending"] = "Pending";
1047
- ReportStatus2["MarkedForRemoval"] = "MarkedForRemoval";
1048
- ReportStatus2["Success"] = "Success";
1049
- })(ReportStatus = Network2.ReportStatus || (Network2.ReportStatus = {}));
1050
- let TrustTokenOperationDoneEventStatus;
1051
- ((TrustTokenOperationDoneEventStatus2) => {
1052
- TrustTokenOperationDoneEventStatus2["Ok"] = "Ok";
1053
- TrustTokenOperationDoneEventStatus2["InvalidArgument"] = "InvalidArgument";
1054
- TrustTokenOperationDoneEventStatus2["MissingIssuerKeys"] = "MissingIssuerKeys";
1055
- TrustTokenOperationDoneEventStatus2["FailedPrecondition"] = "FailedPrecondition";
1056
- TrustTokenOperationDoneEventStatus2["ResourceExhausted"] = "ResourceExhausted";
1057
- TrustTokenOperationDoneEventStatus2["AlreadyExists"] = "AlreadyExists";
1058
- TrustTokenOperationDoneEventStatus2["Unavailable"] = "Unavailable";
1059
- TrustTokenOperationDoneEventStatus2["Unauthorized"] = "Unauthorized";
1060
- TrustTokenOperationDoneEventStatus2["BadResponse"] = "BadResponse";
1061
- TrustTokenOperationDoneEventStatus2["InternalError"] = "InternalError";
1062
- TrustTokenOperationDoneEventStatus2["UnknownError"] = "UnknownError";
1063
- TrustTokenOperationDoneEventStatus2["FulfilledLocally"] = "FulfilledLocally";
1064
- })(TrustTokenOperationDoneEventStatus = Network2.TrustTokenOperationDoneEventStatus || (Network2.TrustTokenOperationDoneEventStatus = {}));
1065
- })(Network || (Network = {}));
1066
- export var Overlay;
1067
- ((Overlay2) => {
1068
- let LineStylePattern;
1069
- ((LineStylePattern2) => {
1070
- LineStylePattern2["Dashed"] = "dashed";
1071
- LineStylePattern2["Dotted"] = "dotted";
1072
- })(LineStylePattern = Overlay2.LineStylePattern || (Overlay2.LineStylePattern = {}));
1073
- let ContrastAlgorithm;
1074
- ((ContrastAlgorithm2) => {
1075
- ContrastAlgorithm2["Aa"] = "aa";
1076
- ContrastAlgorithm2["Aaa"] = "aaa";
1077
- ContrastAlgorithm2["Apca"] = "apca";
1078
- })(ContrastAlgorithm = Overlay2.ContrastAlgorithm || (Overlay2.ContrastAlgorithm = {}));
1079
- let ColorFormat;
1080
- ((ColorFormat2) => {
1081
- ColorFormat2["Rgb"] = "rgb";
1082
- ColorFormat2["Hsl"] = "hsl";
1083
- ColorFormat2["Hwb"] = "hwb";
1084
- ColorFormat2["Hex"] = "hex";
1085
- })(ColorFormat = Overlay2.ColorFormat || (Overlay2.ColorFormat = {}));
1086
- let InspectMode;
1087
- ((InspectMode2) => {
1088
- InspectMode2["SearchForNode"] = "searchForNode";
1089
- InspectMode2["SearchForUAShadowDOM"] = "searchForUAShadowDOM";
1090
- InspectMode2["CaptureAreaScreenshot"] = "captureAreaScreenshot";
1091
- InspectMode2["ShowDistances"] = "showDistances";
1092
- InspectMode2["None"] = "none";
1093
- })(InspectMode = Overlay2.InspectMode || (Overlay2.InspectMode = {}));
1094
- })(Overlay || (Overlay = {}));
1095
- export var Page;
1096
- ((Page2) => {
1097
- let AdFrameType;
1098
- ((AdFrameType2) => {
1099
- AdFrameType2["None"] = "none";
1100
- AdFrameType2["Child"] = "child";
1101
- AdFrameType2["Root"] = "root";
1102
- })(AdFrameType = Page2.AdFrameType || (Page2.AdFrameType = {}));
1103
- let AdFrameExplanation;
1104
- ((AdFrameExplanation2) => {
1105
- AdFrameExplanation2["ParentIsAd"] = "ParentIsAd";
1106
- AdFrameExplanation2["CreatedByAdScript"] = "CreatedByAdScript";
1107
- AdFrameExplanation2["MatchedBlockingRule"] = "MatchedBlockingRule";
1108
- })(AdFrameExplanation = Page2.AdFrameExplanation || (Page2.AdFrameExplanation = {}));
1109
- let SecureContextType;
1110
- ((SecureContextType2) => {
1111
- SecureContextType2["Secure"] = "Secure";
1112
- SecureContextType2["SecureLocalhost"] = "SecureLocalhost";
1113
- SecureContextType2["InsecureScheme"] = "InsecureScheme";
1114
- SecureContextType2["InsecureAncestor"] = "InsecureAncestor";
1115
- })(SecureContextType = Page2.SecureContextType || (Page2.SecureContextType = {}));
1116
- let CrossOriginIsolatedContextType;
1117
- ((CrossOriginIsolatedContextType2) => {
1118
- CrossOriginIsolatedContextType2["Isolated"] = "Isolated";
1119
- CrossOriginIsolatedContextType2["NotIsolated"] = "NotIsolated";
1120
- CrossOriginIsolatedContextType2["NotIsolatedFeatureDisabled"] = "NotIsolatedFeatureDisabled";
1121
- })(CrossOriginIsolatedContextType = Page2.CrossOriginIsolatedContextType || (Page2.CrossOriginIsolatedContextType = {}));
1122
- let GatedAPIFeatures;
1123
- ((GatedAPIFeatures2) => {
1124
- GatedAPIFeatures2["SharedArrayBuffers"] = "SharedArrayBuffers";
1125
- GatedAPIFeatures2["SharedArrayBuffersTransferAllowed"] = "SharedArrayBuffersTransferAllowed";
1126
- GatedAPIFeatures2["PerformanceMeasureMemory"] = "PerformanceMeasureMemory";
1127
- GatedAPIFeatures2["PerformanceProfile"] = "PerformanceProfile";
1128
- })(GatedAPIFeatures = Page2.GatedAPIFeatures || (Page2.GatedAPIFeatures = {}));
1129
- let PermissionsPolicyFeature;
1130
- ((PermissionsPolicyFeature2) => {
1131
- PermissionsPolicyFeature2["Accelerometer"] = "accelerometer";
1132
- PermissionsPolicyFeature2["AmbientLightSensor"] = "ambient-light-sensor";
1133
- PermissionsPolicyFeature2["AttributionReporting"] = "attribution-reporting";
1134
- PermissionsPolicyFeature2["Autoplay"] = "autoplay";
1135
- PermissionsPolicyFeature2["Bluetooth"] = "bluetooth";
1136
- PermissionsPolicyFeature2["BrowsingTopics"] = "browsing-topics";
1137
- PermissionsPolicyFeature2["Camera"] = "camera";
1138
- PermissionsPolicyFeature2["CapturedSurfaceControl"] = "captured-surface-control";
1139
- PermissionsPolicyFeature2["ChDpr"] = "ch-dpr";
1140
- PermissionsPolicyFeature2["ChDeviceMemory"] = "ch-device-memory";
1141
- PermissionsPolicyFeature2["ChDownlink"] = "ch-downlink";
1142
- PermissionsPolicyFeature2["ChEct"] = "ch-ect";
1143
- PermissionsPolicyFeature2["ChPrefersColorScheme"] = "ch-prefers-color-scheme";
1144
- PermissionsPolicyFeature2["ChPrefersReducedMotion"] = "ch-prefers-reduced-motion";
1145
- PermissionsPolicyFeature2["ChPrefersReducedTransparency"] = "ch-prefers-reduced-transparency";
1146
- PermissionsPolicyFeature2["ChRtt"] = "ch-rtt";
1147
- PermissionsPolicyFeature2["ChSaveData"] = "ch-save-data";
1148
- PermissionsPolicyFeature2["ChUa"] = "ch-ua";
1149
- PermissionsPolicyFeature2["ChUaArch"] = "ch-ua-arch";
1150
- PermissionsPolicyFeature2["ChUaBitness"] = "ch-ua-bitness";
1151
- PermissionsPolicyFeature2["ChUaPlatform"] = "ch-ua-platform";
1152
- PermissionsPolicyFeature2["ChUaModel"] = "ch-ua-model";
1153
- PermissionsPolicyFeature2["ChUaMobile"] = "ch-ua-mobile";
1154
- PermissionsPolicyFeature2["ChUaFormFactor"] = "ch-ua-form-factor";
1155
- PermissionsPolicyFeature2["ChUaFullVersion"] = "ch-ua-full-version";
1156
- PermissionsPolicyFeature2["ChUaFullVersionList"] = "ch-ua-full-version-list";
1157
- PermissionsPolicyFeature2["ChUaPlatformVersion"] = "ch-ua-platform-version";
1158
- PermissionsPolicyFeature2["ChUaWow64"] = "ch-ua-wow64";
1159
- PermissionsPolicyFeature2["ChViewportHeight"] = "ch-viewport-height";
1160
- PermissionsPolicyFeature2["ChViewportWidth"] = "ch-viewport-width";
1161
- PermissionsPolicyFeature2["ChWidth"] = "ch-width";
1162
- PermissionsPolicyFeature2["ClipboardRead"] = "clipboard-read";
1163
- PermissionsPolicyFeature2["ClipboardWrite"] = "clipboard-write";
1164
- PermissionsPolicyFeature2["ComputePressure"] = "compute-pressure";
1165
- PermissionsPolicyFeature2["CrossOriginIsolated"] = "cross-origin-isolated";
1166
- PermissionsPolicyFeature2["DirectSockets"] = "direct-sockets";
1167
- PermissionsPolicyFeature2["DisplayCapture"] = "display-capture";
1168
- PermissionsPolicyFeature2["DocumentDomain"] = "document-domain";
1169
- PermissionsPolicyFeature2["EncryptedMedia"] = "encrypted-media";
1170
- PermissionsPolicyFeature2["ExecutionWhileOutOfViewport"] = "execution-while-out-of-viewport";
1171
- PermissionsPolicyFeature2["ExecutionWhileNotRendered"] = "execution-while-not-rendered";
1172
- PermissionsPolicyFeature2["FocusWithoutUserActivation"] = "focus-without-user-activation";
1173
- PermissionsPolicyFeature2["Fullscreen"] = "fullscreen";
1174
- PermissionsPolicyFeature2["Frobulate"] = "frobulate";
1175
- PermissionsPolicyFeature2["Gamepad"] = "gamepad";
1176
- PermissionsPolicyFeature2["Geolocation"] = "geolocation";
1177
- PermissionsPolicyFeature2["Gyroscope"] = "gyroscope";
1178
- PermissionsPolicyFeature2["Hid"] = "hid";
1179
- PermissionsPolicyFeature2["IdentityCredentialsGet"] = "identity-credentials-get";
1180
- PermissionsPolicyFeature2["IdleDetection"] = "idle-detection";
1181
- PermissionsPolicyFeature2["InterestCohort"] = "interest-cohort";
1182
- PermissionsPolicyFeature2["JoinAdInterestGroup"] = "join-ad-interest-group";
1183
- PermissionsPolicyFeature2["KeyboardMap"] = "keyboard-map";
1184
- PermissionsPolicyFeature2["LocalFonts"] = "local-fonts";
1185
- PermissionsPolicyFeature2["Magnetometer"] = "magnetometer";
1186
- PermissionsPolicyFeature2["Microphone"] = "microphone";
1187
- PermissionsPolicyFeature2["Midi"] = "midi";
1188
- PermissionsPolicyFeature2["OtpCredentials"] = "otp-credentials";
1189
- PermissionsPolicyFeature2["Payment"] = "payment";
1190
- PermissionsPolicyFeature2["PictureInPicture"] = "picture-in-picture";
1191
- PermissionsPolicyFeature2["PrivateAggregation"] = "private-aggregation";
1192
- PermissionsPolicyFeature2["PrivateStateTokenIssuance"] = "private-state-token-issuance";
1193
- PermissionsPolicyFeature2["PrivateStateTokenRedemption"] = "private-state-token-redemption";
1194
- PermissionsPolicyFeature2["PublickeyCredentialsCreate"] = "publickey-credentials-create";
1195
- PermissionsPolicyFeature2["PublickeyCredentialsGet"] = "publickey-credentials-get";
1196
- PermissionsPolicyFeature2["RunAdAuction"] = "run-ad-auction";
1197
- PermissionsPolicyFeature2["ScreenWakeLock"] = "screen-wake-lock";
1198
- PermissionsPolicyFeature2["Serial"] = "serial";
1199
- PermissionsPolicyFeature2["SharedAutofill"] = "shared-autofill";
1200
- PermissionsPolicyFeature2["SharedStorage"] = "shared-storage";
1201
- PermissionsPolicyFeature2["SharedStorageSelectUrl"] = "shared-storage-select-url";
1202
- PermissionsPolicyFeature2["SmartCard"] = "smart-card";
1203
- PermissionsPolicyFeature2["StorageAccess"] = "storage-access";
1204
- PermissionsPolicyFeature2["SubApps"] = "sub-apps";
1205
- PermissionsPolicyFeature2["SyncXhr"] = "sync-xhr";
1206
- PermissionsPolicyFeature2["Unload"] = "unload";
1207
- PermissionsPolicyFeature2["Usb"] = "usb";
1208
- PermissionsPolicyFeature2["UsbUnrestricted"] = "usb-unrestricted";
1209
- PermissionsPolicyFeature2["VerticalScroll"] = "vertical-scroll";
1210
- PermissionsPolicyFeature2["WebPrinting"] = "web-printing";
1211
- PermissionsPolicyFeature2["WebShare"] = "web-share";
1212
- PermissionsPolicyFeature2["WindowManagement"] = "window-management";
1213
- PermissionsPolicyFeature2["WindowPlacement"] = "window-placement";
1214
- PermissionsPolicyFeature2["XrSpatialTracking"] = "xr-spatial-tracking";
1215
- })(PermissionsPolicyFeature = Page2.PermissionsPolicyFeature || (Page2.PermissionsPolicyFeature = {}));
1216
- let PermissionsPolicyBlockReason;
1217
- ((PermissionsPolicyBlockReason2) => {
1218
- PermissionsPolicyBlockReason2["Header"] = "Header";
1219
- PermissionsPolicyBlockReason2["IframeAttribute"] = "IframeAttribute";
1220
- PermissionsPolicyBlockReason2["InFencedFrameTree"] = "InFencedFrameTree";
1221
- PermissionsPolicyBlockReason2["InIsolatedApp"] = "InIsolatedApp";
1222
- })(PermissionsPolicyBlockReason = Page2.PermissionsPolicyBlockReason || (Page2.PermissionsPolicyBlockReason = {}));
1223
- let OriginTrialTokenStatus;
1224
- ((OriginTrialTokenStatus2) => {
1225
- OriginTrialTokenStatus2["Success"] = "Success";
1226
- OriginTrialTokenStatus2["NotSupported"] = "NotSupported";
1227
- OriginTrialTokenStatus2["Insecure"] = "Insecure";
1228
- OriginTrialTokenStatus2["Expired"] = "Expired";
1229
- OriginTrialTokenStatus2["WrongOrigin"] = "WrongOrigin";
1230
- OriginTrialTokenStatus2["InvalidSignature"] = "InvalidSignature";
1231
- OriginTrialTokenStatus2["Malformed"] = "Malformed";
1232
- OriginTrialTokenStatus2["WrongVersion"] = "WrongVersion";
1233
- OriginTrialTokenStatus2["FeatureDisabled"] = "FeatureDisabled";
1234
- OriginTrialTokenStatus2["TokenDisabled"] = "TokenDisabled";
1235
- OriginTrialTokenStatus2["FeatureDisabledForUser"] = "FeatureDisabledForUser";
1236
- OriginTrialTokenStatus2["UnknownTrial"] = "UnknownTrial";
1237
- })(OriginTrialTokenStatus = Page2.OriginTrialTokenStatus || (Page2.OriginTrialTokenStatus = {}));
1238
- let OriginTrialStatus;
1239
- ((OriginTrialStatus2) => {
1240
- OriginTrialStatus2["Enabled"] = "Enabled";
1241
- OriginTrialStatus2["ValidTokenNotProvided"] = "ValidTokenNotProvided";
1242
- OriginTrialStatus2["OSNotSupported"] = "OSNotSupported";
1243
- OriginTrialStatus2["TrialNotAllowed"] = "TrialNotAllowed";
1244
- })(OriginTrialStatus = Page2.OriginTrialStatus || (Page2.OriginTrialStatus = {}));
1245
- let OriginTrialUsageRestriction;
1246
- ((OriginTrialUsageRestriction2) => {
1247
- OriginTrialUsageRestriction2["None"] = "None";
1248
- OriginTrialUsageRestriction2["Subset"] = "Subset";
1249
- })(OriginTrialUsageRestriction = Page2.OriginTrialUsageRestriction || (Page2.OriginTrialUsageRestriction = {}));
1250
- let TransitionType;
1251
- ((TransitionType2) => {
1252
- TransitionType2["Link"] = "link";
1253
- TransitionType2["Typed"] = "typed";
1254
- TransitionType2["Address_bar"] = "address_bar";
1255
- TransitionType2["Auto_bookmark"] = "auto_bookmark";
1256
- TransitionType2["Auto_subframe"] = "auto_subframe";
1257
- TransitionType2["Manual_subframe"] = "manual_subframe";
1258
- TransitionType2["Generated"] = "generated";
1259
- TransitionType2["Auto_toplevel"] = "auto_toplevel";
1260
- TransitionType2["Form_submit"] = "form_submit";
1261
- TransitionType2["Reload"] = "reload";
1262
- TransitionType2["Keyword"] = "keyword";
1263
- TransitionType2["Keyword_generated"] = "keyword_generated";
1264
- TransitionType2["Other"] = "other";
1265
- })(TransitionType = Page2.TransitionType || (Page2.TransitionType = {}));
1266
- let DialogType;
1267
- ((DialogType2) => {
1268
- DialogType2["Alert"] = "alert";
1269
- DialogType2["Confirm"] = "confirm";
1270
- DialogType2["Prompt"] = "prompt";
1271
- DialogType2["Beforeunload"] = "beforeunload";
1272
- })(DialogType = Page2.DialogType || (Page2.DialogType = {}));
1273
- let ClientNavigationReason;
1274
- ((ClientNavigationReason2) => {
1275
- ClientNavigationReason2["FormSubmissionGet"] = "formSubmissionGet";
1276
- ClientNavigationReason2["FormSubmissionPost"] = "formSubmissionPost";
1277
- ClientNavigationReason2["HttpHeaderRefresh"] = "httpHeaderRefresh";
1278
- ClientNavigationReason2["ScriptInitiated"] = "scriptInitiated";
1279
- ClientNavigationReason2["MetaTagRefresh"] = "metaTagRefresh";
1280
- ClientNavigationReason2["PageBlockInterstitial"] = "pageBlockInterstitial";
1281
- ClientNavigationReason2["Reload"] = "reload";
1282
- ClientNavigationReason2["AnchorClick"] = "anchorClick";
1283
- })(ClientNavigationReason = Page2.ClientNavigationReason || (Page2.ClientNavigationReason = {}));
1284
- let ClientNavigationDisposition;
1285
- ((ClientNavigationDisposition2) => {
1286
- ClientNavigationDisposition2["CurrentTab"] = "currentTab";
1287
- ClientNavigationDisposition2["NewTab"] = "newTab";
1288
- ClientNavigationDisposition2["NewWindow"] = "newWindow";
1289
- ClientNavigationDisposition2["Download"] = "download";
1290
- })(ClientNavigationDisposition = Page2.ClientNavigationDisposition || (Page2.ClientNavigationDisposition = {}));
1291
- let ReferrerPolicy;
1292
- ((ReferrerPolicy2) => {
1293
- ReferrerPolicy2["NoReferrer"] = "noReferrer";
1294
- ReferrerPolicy2["NoReferrerWhenDowngrade"] = "noReferrerWhenDowngrade";
1295
- ReferrerPolicy2["Origin"] = "origin";
1296
- ReferrerPolicy2["OriginWhenCrossOrigin"] = "originWhenCrossOrigin";
1297
- ReferrerPolicy2["SameOrigin"] = "sameOrigin";
1298
- ReferrerPolicy2["StrictOrigin"] = "strictOrigin";
1299
- ReferrerPolicy2["StrictOriginWhenCrossOrigin"] = "strictOriginWhenCrossOrigin";
1300
- ReferrerPolicy2["UnsafeUrl"] = "unsafeUrl";
1301
- })(ReferrerPolicy = Page2.ReferrerPolicy || (Page2.ReferrerPolicy = {}));
1302
- let AutoResponseMode;
1303
- ((AutoResponseMode2) => {
1304
- AutoResponseMode2["None"] = "none";
1305
- AutoResponseMode2["AutoAccept"] = "autoAccept";
1306
- AutoResponseMode2["AutoReject"] = "autoReject";
1307
- AutoResponseMode2["AutoOptOut"] = "autoOptOut";
1308
- })(AutoResponseMode = Page2.AutoResponseMode || (Page2.AutoResponseMode = {}));
1309
- let NavigationType;
1310
- ((NavigationType2) => {
1311
- NavigationType2["Navigation"] = "Navigation";
1312
- NavigationType2["BackForwardCacheRestore"] = "BackForwardCacheRestore";
1313
- })(NavigationType = Page2.NavigationType || (Page2.NavigationType = {}));
1314
- let BackForwardCacheNotRestoredReason;
1315
- ((BackForwardCacheNotRestoredReason2) => {
1316
- BackForwardCacheNotRestoredReason2["NotPrimaryMainFrame"] = "NotPrimaryMainFrame";
1317
- BackForwardCacheNotRestoredReason2["BackForwardCacheDisabled"] = "BackForwardCacheDisabled";
1318
- BackForwardCacheNotRestoredReason2["RelatedActiveContentsExist"] = "RelatedActiveContentsExist";
1319
- BackForwardCacheNotRestoredReason2["HTTPStatusNotOK"] = "HTTPStatusNotOK";
1320
- BackForwardCacheNotRestoredReason2["SchemeNotHTTPOrHTTPS"] = "SchemeNotHTTPOrHTTPS";
1321
- BackForwardCacheNotRestoredReason2["Loading"] = "Loading";
1322
- BackForwardCacheNotRestoredReason2["WasGrantedMediaAccess"] = "WasGrantedMediaAccess";
1323
- BackForwardCacheNotRestoredReason2["DisableForRenderFrameHostCalled"] = "DisableForRenderFrameHostCalled";
1324
- BackForwardCacheNotRestoredReason2["DomainNotAllowed"] = "DomainNotAllowed";
1325
- BackForwardCacheNotRestoredReason2["HTTPMethodNotGET"] = "HTTPMethodNotGET";
1326
- BackForwardCacheNotRestoredReason2["SubframeIsNavigating"] = "SubframeIsNavigating";
1327
- BackForwardCacheNotRestoredReason2["Timeout"] = "Timeout";
1328
- BackForwardCacheNotRestoredReason2["CacheLimit"] = "CacheLimit";
1329
- BackForwardCacheNotRestoredReason2["JavaScriptExecution"] = "JavaScriptExecution";
1330
- BackForwardCacheNotRestoredReason2["RendererProcessKilled"] = "RendererProcessKilled";
1331
- BackForwardCacheNotRestoredReason2["RendererProcessCrashed"] = "RendererProcessCrashed";
1332
- BackForwardCacheNotRestoredReason2["SchedulerTrackedFeatureUsed"] = "SchedulerTrackedFeatureUsed";
1333
- BackForwardCacheNotRestoredReason2["ConflictingBrowsingInstance"] = "ConflictingBrowsingInstance";
1334
- BackForwardCacheNotRestoredReason2["CacheFlushed"] = "CacheFlushed";
1335
- BackForwardCacheNotRestoredReason2["ServiceWorkerVersionActivation"] = "ServiceWorkerVersionActivation";
1336
- BackForwardCacheNotRestoredReason2["SessionRestored"] = "SessionRestored";
1337
- BackForwardCacheNotRestoredReason2["ServiceWorkerPostMessage"] = "ServiceWorkerPostMessage";
1338
- BackForwardCacheNotRestoredReason2["EnteredBackForwardCacheBeforeServiceWorkerHostAdded"] = "EnteredBackForwardCacheBeforeServiceWorkerHostAdded";
1339
- BackForwardCacheNotRestoredReason2["RenderFrameHostReused_SameSite"] = "RenderFrameHostReused_SameSite";
1340
- BackForwardCacheNotRestoredReason2["RenderFrameHostReused_CrossSite"] = "RenderFrameHostReused_CrossSite";
1341
- BackForwardCacheNotRestoredReason2["ServiceWorkerClaim"] = "ServiceWorkerClaim";
1342
- BackForwardCacheNotRestoredReason2["IgnoreEventAndEvict"] = "IgnoreEventAndEvict";
1343
- BackForwardCacheNotRestoredReason2["HaveInnerContents"] = "HaveInnerContents";
1344
- BackForwardCacheNotRestoredReason2["TimeoutPuttingInCache"] = "TimeoutPuttingInCache";
1345
- BackForwardCacheNotRestoredReason2["BackForwardCacheDisabledByLowMemory"] = "BackForwardCacheDisabledByLowMemory";
1346
- BackForwardCacheNotRestoredReason2["BackForwardCacheDisabledByCommandLine"] = "BackForwardCacheDisabledByCommandLine";
1347
- BackForwardCacheNotRestoredReason2["NetworkRequestDatAPIpeDrainedAsBytesConsumer"] = "NetworkRequestDatapipeDrainedAsBytesConsumer";
1348
- BackForwardCacheNotRestoredReason2["NetworkRequestRedirected"] = "NetworkRequestRedirected";
1349
- BackForwardCacheNotRestoredReason2["NetworkRequestTimeout"] = "NetworkRequestTimeout";
1350
- BackForwardCacheNotRestoredReason2["NetworkExceedsBufferLimit"] = "NetworkExceedsBufferLimit";
1351
- BackForwardCacheNotRestoredReason2["NavigationCancelledWhileRestoring"] = "NavigationCancelledWhileRestoring";
1352
- BackForwardCacheNotRestoredReason2["NotMostRecentNavigationEntry"] = "NotMostRecentNavigationEntry";
1353
- BackForwardCacheNotRestoredReason2["BackForwardCacheDisabledForPrerender"] = "BackForwardCacheDisabledForPrerender";
1354
- BackForwardCacheNotRestoredReason2["UserAgentOverrideDiffers"] = "UserAgentOverrideDiffers";
1355
- BackForwardCacheNotRestoredReason2["ForegroundCacheLimit"] = "ForegroundCacheLimit";
1356
- BackForwardCacheNotRestoredReason2["BrowsingInstanceNotSwapped"] = "BrowsingInstanceNotSwapped";
1357
- BackForwardCacheNotRestoredReason2["BackForwardCacheDisabledForDelegate"] = "BackForwardCacheDisabledForDelegate";
1358
- BackForwardCacheNotRestoredReason2["UnloadHandlerExistsInMainFrame"] = "UnloadHandlerExistsInMainFrame";
1359
- BackForwardCacheNotRestoredReason2["UnloadHandlerExistsInSubFrame"] = "UnloadHandlerExistsInSubFrame";
1360
- BackForwardCacheNotRestoredReason2["ServiceWorkerUnregistration"] = "ServiceWorkerUnregistration";
1361
- BackForwardCacheNotRestoredReason2["CacheControlNoStore"] = "CacheControlNoStore";
1362
- BackForwardCacheNotRestoredReason2["CacheControlNoStoreCookieModified"] = "CacheControlNoStoreCookieModified";
1363
- BackForwardCacheNotRestoredReason2["CacheControlNoStoreHTTPOnlyCookieModified"] = "CacheControlNoStoreHTTPOnlyCookieModified";
1364
- BackForwardCacheNotRestoredReason2["NoResponseHead"] = "NoResponseHead";
1365
- BackForwardCacheNotRestoredReason2["Unknown"] = "Unknown";
1366
- BackForwardCacheNotRestoredReason2["ActivationNavigationsDisallowedForBug1234857"] = "ActivationNavigationsDisallowedForBug1234857";
1367
- BackForwardCacheNotRestoredReason2["ErrorDocument"] = "ErrorDocument";
1368
- BackForwardCacheNotRestoredReason2["FencedFramesEmbedder"] = "FencedFramesEmbedder";
1369
- BackForwardCacheNotRestoredReason2["CookieDisabled"] = "CookieDisabled";
1370
- BackForwardCacheNotRestoredReason2["HTTPAuthRequired"] = "HTTPAuthRequired";
1371
- BackForwardCacheNotRestoredReason2["CookieFlushed"] = "CookieFlushed";
1372
- BackForwardCacheNotRestoredReason2["WebSocket"] = "WebSocket";
1373
- BackForwardCacheNotRestoredReason2["WebTransport"] = "WebTransport";
1374
- BackForwardCacheNotRestoredReason2["WebRTC"] = "WebRTC";
1375
- BackForwardCacheNotRestoredReason2["MainResourceHasCacheControlNoStore"] = "MainResourceHasCacheControlNoStore";
1376
- BackForwardCacheNotRestoredReason2["MainResourceHasCacheControlNoCache"] = "MainResourceHasCacheControlNoCache";
1377
- BackForwardCacheNotRestoredReason2["SubresourceHasCacheControlNoStore"] = "SubresourceHasCacheControlNoStore";
1378
- BackForwardCacheNotRestoredReason2["SubresourceHasCacheControlNoCache"] = "SubresourceHasCacheControlNoCache";
1379
- BackForwardCacheNotRestoredReason2["ContainsPlugins"] = "ContainsPlugins";
1380
- BackForwardCacheNotRestoredReason2["DocumentLoaded"] = "DocumentLoaded";
1381
- BackForwardCacheNotRestoredReason2["DedicatedWorkerOrWorklet"] = "DedicatedWorkerOrWorklet";
1382
- BackForwardCacheNotRestoredReason2["OutstandingNetworkRequestOthers"] = "OutstandingNetworkRequestOthers";
1383
- BackForwardCacheNotRestoredReason2["RequestedMIDIPermission"] = "RequestedMIDIPermission";
1384
- BackForwardCacheNotRestoredReason2["RequestedAudioCapturePermission"] = "RequestedAudioCapturePermission";
1385
- BackForwardCacheNotRestoredReason2["RequestedVideoCapturePermission"] = "RequestedVideoCapturePermission";
1386
- BackForwardCacheNotRestoredReason2["RequestedBackForwardCacheBlockedSensors"] = "RequestedBackForwardCacheBlockedSensors";
1387
- BackForwardCacheNotRestoredReason2["RequestedBackgroundWorkPermission"] = "RequestedBackgroundWorkPermission";
1388
- BackForwardCacheNotRestoredReason2["BroadcastChannel"] = "BroadcastChannel";
1389
- BackForwardCacheNotRestoredReason2["WebXR"] = "WebXR";
1390
- BackForwardCacheNotRestoredReason2["SharedWorker"] = "SharedWorker";
1391
- BackForwardCacheNotRestoredReason2["WebLocks"] = "WebLocks";
1392
- BackForwardCacheNotRestoredReason2["WebHID"] = "WebHID";
1393
- BackForwardCacheNotRestoredReason2["WebShare"] = "WebShare";
1394
- BackForwardCacheNotRestoredReason2["RequestedStorageAccessGrant"] = "RequestedStorageAccessGrant";
1395
- BackForwardCacheNotRestoredReason2["WebNfc"] = "WebNfc";
1396
- BackForwardCacheNotRestoredReason2["OutstandingNetworkRequestFetch"] = "OutstandingNetworkRequestFetch";
1397
- BackForwardCacheNotRestoredReason2["OutstandingNetworkRequestXHR"] = "OutstandingNetworkRequestXHR";
1398
- BackForwardCacheNotRestoredReason2["AppBanner"] = "AppBanner";
1399
- BackForwardCacheNotRestoredReason2["Printing"] = "Printing";
1400
- BackForwardCacheNotRestoredReason2["WebDatabase"] = "WebDatabase";
1401
- BackForwardCacheNotRestoredReason2["PictureInPicture"] = "PictureInPicture";
1402
- BackForwardCacheNotRestoredReason2["Portal"] = "Portal";
1403
- BackForwardCacheNotRestoredReason2["SpeechRecognizer"] = "SpeechRecognizer";
1404
- BackForwardCacheNotRestoredReason2["IdleManager"] = "IdleManager";
1405
- BackForwardCacheNotRestoredReason2["PaymentManager"] = "PaymentManager";
1406
- BackForwardCacheNotRestoredReason2["SpeechSynthesis"] = "SpeechSynthesis";
1407
- BackForwardCacheNotRestoredReason2["KeyboardLock"] = "KeyboardLock";
1408
- BackForwardCacheNotRestoredReason2["WebOTPService"] = "WebOTPService";
1409
- BackForwardCacheNotRestoredReason2["OutstandingNetworkRequestDirectSocket"] = "OutstandingNetworkRequestDirectSocket";
1410
- BackForwardCacheNotRestoredReason2["InjectedJavascript"] = "InjectedJavascript";
1411
- BackForwardCacheNotRestoredReason2["InjectedStyleSheet"] = "InjectedStyleSheet";
1412
- BackForwardCacheNotRestoredReason2["KeepaliveRequest"] = "KeepaliveRequest";
1413
- BackForwardCacheNotRestoredReason2["IndexedDBEvent"] = "IndexedDBEvent";
1414
- BackForwardCacheNotRestoredReason2["Dummy"] = "Dummy";
1415
- BackForwardCacheNotRestoredReason2["JsNetworkRequestReceivedCacheControlNoStoreResource"] = "JsNetworkRequestReceivedCacheControlNoStoreResource";
1416
- BackForwardCacheNotRestoredReason2["WebRTCSticky"] = "WebRTCSticky";
1417
- BackForwardCacheNotRestoredReason2["WebTransportSticky"] = "WebTransportSticky";
1418
- BackForwardCacheNotRestoredReason2["WebSocketSticky"] = "WebSocketSticky";
1419
- BackForwardCacheNotRestoredReason2["SmartCard"] = "SmartCard";
1420
- BackForwardCacheNotRestoredReason2["LiveMediaStreamTrack"] = "LiveMediaStreamTrack";
1421
- BackForwardCacheNotRestoredReason2["UnloadHandler"] = "UnloadHandler";
1422
- BackForwardCacheNotRestoredReason2["ContentSecurityHandler"] = "ContentSecurityHandler";
1423
- BackForwardCacheNotRestoredReason2["ContentWebAuthenticationAPI"] = "ContentWebAuthenticationAPI";
1424
- BackForwardCacheNotRestoredReason2["ContentFileChooser"] = "ContentFileChooser";
1425
- BackForwardCacheNotRestoredReason2["ContentSerial"] = "ContentSerial";
1426
- BackForwardCacheNotRestoredReason2["ContentFileSystemAccess"] = "ContentFileSystemAccess";
1427
- BackForwardCacheNotRestoredReason2["ContentMediaDevicesDispatcherHost"] = "ContentMediaDevicesDispatcherHost";
1428
- BackForwardCacheNotRestoredReason2["ContentWebBluetooth"] = "ContentWebBluetooth";
1429
- BackForwardCacheNotRestoredReason2["ContentWebUSB"] = "ContentWebUSB";
1430
- BackForwardCacheNotRestoredReason2["ContentMediaSessionService"] = "ContentMediaSessionService";
1431
- BackForwardCacheNotRestoredReason2["ContentScreenReader"] = "ContentScreenReader";
1432
- BackForwardCacheNotRestoredReason2["EmbedderPopupBlockerTabHelper"] = "EmbedderPopupBlockerTabHelper";
1433
- BackForwardCacheNotRestoredReason2["EmbedderSafeBrowsingTriggeredPopupBlocker"] = "EmbedderSafeBrowsingTriggeredPopupBlocker";
1434
- BackForwardCacheNotRestoredReason2["EmbedderSafeBrowsingThreatDetails"] = "EmbedderSafeBrowsingThreatDetails";
1435
- BackForwardCacheNotRestoredReason2["EmbedderAppBannerManager"] = "EmbedderAppBannerManager";
1436
- BackForwardCacheNotRestoredReason2["EmbedderDomDistillerViewerSource"] = "EmbedderDomDistillerViewerSource";
1437
- BackForwardCacheNotRestoredReason2["EmbedderDomDistillerSelfDeletingRequestDelegate"] = "EmbedderDomDistillerSelfDeletingRequestDelegate";
1438
- BackForwardCacheNotRestoredReason2["EmbedderOomInterventionTabHelper"] = "EmbedderOomInterventionTabHelper";
1439
- BackForwardCacheNotRestoredReason2["EmbedderOfflinePage"] = "EmbedderOfflinePage";
1440
- BackForwardCacheNotRestoredReason2["EmbedderChromePasswordManagerClientBindCredentialManager"] = "EmbedderChromePasswordManagerClientBindCredentialManager";
1441
- BackForwardCacheNotRestoredReason2["EmbedderPermissionRequestManager"] = "EmbedderPermissionRequestManager";
1442
- BackForwardCacheNotRestoredReason2["EmbedderModalDialog"] = "EmbedderModalDialog";
1443
- BackForwardCacheNotRestoredReason2["EmbedderExtensions"] = "EmbedderExtensions";
1444
- BackForwardCacheNotRestoredReason2["EmbedderExtensionMessaging"] = "EmbedderExtensionMessaging";
1445
- BackForwardCacheNotRestoredReason2["EmbedderExtensionMessagingForOpenPort"] = "EmbedderExtensionMessagingForOpenPort";
1446
- BackForwardCacheNotRestoredReason2["EmbedderExtensionSentMessageToCachedFrame"] = "EmbedderExtensionSentMessageToCachedFrame";
1447
- })(BackForwardCacheNotRestoredReason = Page2.BackForwardCacheNotRestoredReason || (Page2.BackForwardCacheNotRestoredReason = {}));
1448
- let BackForwardCacheNotRestoredReasonType;
1449
- ((BackForwardCacheNotRestoredReasonType2) => {
1450
- BackForwardCacheNotRestoredReasonType2["SupportPending"] = "SupportPending";
1451
- BackForwardCacheNotRestoredReasonType2["PageSupportNeeded"] = "PageSupportNeeded";
1452
- BackForwardCacheNotRestoredReasonType2["Circumstantial"] = "Circumstantial";
1453
- })(BackForwardCacheNotRestoredReasonType = Page2.BackForwardCacheNotRestoredReasonType || (Page2.BackForwardCacheNotRestoredReasonType = {}));
1454
- let CaptureScreenshotRequestFormat;
1455
- ((CaptureScreenshotRequestFormat2) => {
1456
- CaptureScreenshotRequestFormat2["Jpeg"] = "jpeg";
1457
- CaptureScreenshotRequestFormat2["Png"] = "png";
1458
- CaptureScreenshotRequestFormat2["Webp"] = "webp";
1459
- })(CaptureScreenshotRequestFormat = Page2.CaptureScreenshotRequestFormat || (Page2.CaptureScreenshotRequestFormat = {}));
1460
- let CaptureSnapshotRequestFormat;
1461
- ((CaptureSnapshotRequestFormat2) => {
1462
- CaptureSnapshotRequestFormat2["MHTML"] = "mhtml";
1463
- })(CaptureSnapshotRequestFormat = Page2.CaptureSnapshotRequestFormat || (Page2.CaptureSnapshotRequestFormat = {}));
1464
- let PrintToPDFRequestTransferMode;
1465
- ((PrintToPDFRequestTransferMode2) => {
1466
- PrintToPDFRequestTransferMode2["ReturnAsBase64"] = "ReturnAsBase64";
1467
- PrintToPDFRequestTransferMode2["ReturnAsStream"] = "ReturnAsStream";
1468
- })(PrintToPDFRequestTransferMode = Page2.PrintToPDFRequestTransferMode || (Page2.PrintToPDFRequestTransferMode = {}));
1469
- let SetDownloadBehaviorRequestBehavior;
1470
- ((SetDownloadBehaviorRequestBehavior2) => {
1471
- SetDownloadBehaviorRequestBehavior2["Deny"] = "deny";
1472
- SetDownloadBehaviorRequestBehavior2["Allow"] = "allow";
1473
- SetDownloadBehaviorRequestBehavior2["Default"] = "default";
1474
- })(SetDownloadBehaviorRequestBehavior = Page2.SetDownloadBehaviorRequestBehavior || (Page2.SetDownloadBehaviorRequestBehavior = {}));
1475
- let SetTouchEmulationEnabledRequestConfiguration;
1476
- ((SetTouchEmulationEnabledRequestConfiguration2) => {
1477
- SetTouchEmulationEnabledRequestConfiguration2["Mobile"] = "mobile";
1478
- SetTouchEmulationEnabledRequestConfiguration2["Desktop"] = "desktop";
1479
- })(SetTouchEmulationEnabledRequestConfiguration = Page2.SetTouchEmulationEnabledRequestConfiguration || (Page2.SetTouchEmulationEnabledRequestConfiguration = {}));
1480
- let StartScreencastRequestFormat;
1481
- ((StartScreencastRequestFormat2) => {
1482
- StartScreencastRequestFormat2["Jpeg"] = "jpeg";
1483
- StartScreencastRequestFormat2["Png"] = "png";
1484
- })(StartScreencastRequestFormat = Page2.StartScreencastRequestFormat || (Page2.StartScreencastRequestFormat = {}));
1485
- let SetWebLifecycleStateRequestState;
1486
- ((SetWebLifecycleStateRequestState2) => {
1487
- SetWebLifecycleStateRequestState2["Frozen"] = "frozen";
1488
- SetWebLifecycleStateRequestState2["Active"] = "active";
1489
- })(SetWebLifecycleStateRequestState = Page2.SetWebLifecycleStateRequestState || (Page2.SetWebLifecycleStateRequestState = {}));
1490
- let FileChooserOpenedEventMode;
1491
- ((FileChooserOpenedEventMode2) => {
1492
- FileChooserOpenedEventMode2["SelectSingle"] = "selectSingle";
1493
- FileChooserOpenedEventMode2["SelectMultiple"] = "selectMultiple";
1494
- })(FileChooserOpenedEventMode = Page2.FileChooserOpenedEventMode || (Page2.FileChooserOpenedEventMode = {}));
1495
- let FrameDetachedEventReason;
1496
- ((FrameDetachedEventReason2) => {
1497
- FrameDetachedEventReason2["Remove"] = "remove";
1498
- FrameDetachedEventReason2["Swap"] = "swap";
1499
- })(FrameDetachedEventReason = Page2.FrameDetachedEventReason || (Page2.FrameDetachedEventReason = {}));
1500
- let DownloadProgressEventState;
1501
- ((DownloadProgressEventState2) => {
1502
- DownloadProgressEventState2["InProgress"] = "inProgress";
1503
- DownloadProgressEventState2["Completed"] = "completed";
1504
- DownloadProgressEventState2["Canceled"] = "canceled";
1505
- })(DownloadProgressEventState = Page2.DownloadProgressEventState || (Page2.DownloadProgressEventState = {}));
1506
- })(Page || (Page = {}));
1507
- export var Performance;
1508
- ((Performance2) => {
1509
- let EnableRequestTimeDomain;
1510
- ((EnableRequestTimeDomain2) => {
1511
- EnableRequestTimeDomain2["TimeTicks"] = "timeTicks";
1512
- EnableRequestTimeDomain2["ThreadTicks"] = "threadTicks";
1513
- })(EnableRequestTimeDomain = Performance2.EnableRequestTimeDomain || (Performance2.EnableRequestTimeDomain = {}));
1514
- let SetTimeDomainRequestTimeDomain;
1515
- ((SetTimeDomainRequestTimeDomain2) => {
1516
- SetTimeDomainRequestTimeDomain2["TimeTicks"] = "timeTicks";
1517
- SetTimeDomainRequestTimeDomain2["ThreadTicks"] = "threadTicks";
1518
- })(SetTimeDomainRequestTimeDomain = Performance2.SetTimeDomainRequestTimeDomain || (Performance2.SetTimeDomainRequestTimeDomain = {}));
1519
- })(Performance || (Performance = {}));
1520
- export var Security;
1521
- ((Security2) => {
1522
- let MixedContentType;
1523
- ((MixedContentType2) => {
1524
- MixedContentType2["Blockable"] = "blockable";
1525
- MixedContentType2["OptionallyBlockable"] = "optionally-blockable";
1526
- MixedContentType2["None"] = "none";
1527
- })(MixedContentType = Security2.MixedContentType || (Security2.MixedContentType = {}));
1528
- let SecurityState;
1529
- ((SecurityState2) => {
1530
- SecurityState2["Unknown"] = "unknown";
1531
- SecurityState2["Neutral"] = "neutral";
1532
- SecurityState2["Insecure"] = "insecure";
1533
- SecurityState2["Secure"] = "secure";
1534
- SecurityState2["Info"] = "info";
1535
- SecurityState2["InsecureBroken"] = "insecure-broken";
1536
- })(SecurityState = Security2.SecurityState || (Security2.SecurityState = {}));
1537
- let SafetyTipStatus;
1538
- ((SafetyTipStatus2) => {
1539
- SafetyTipStatus2["BadReputation"] = "badReputation";
1540
- SafetyTipStatus2["Lookalike"] = "lookalike";
1541
- })(SafetyTipStatus = Security2.SafetyTipStatus || (Security2.SafetyTipStatus = {}));
1542
- let CertificateErrorAction;
1543
- ((CertificateErrorAction2) => {
1544
- CertificateErrorAction2["Continue"] = "continue";
1545
- CertificateErrorAction2["Cancel"] = "cancel";
1546
- })(CertificateErrorAction = Security2.CertificateErrorAction || (Security2.CertificateErrorAction = {}));
1547
- })(Security || (Security = {}));
1548
- export var ServiceWorker;
1549
- ((ServiceWorker2) => {
1550
- let ServiceWorkerVersionRunningStatus;
1551
- ((ServiceWorkerVersionRunningStatus2) => {
1552
- ServiceWorkerVersionRunningStatus2["Stopped"] = "stopped";
1553
- ServiceWorkerVersionRunningStatus2["Starting"] = "starting";
1554
- ServiceWorkerVersionRunningStatus2["Running"] = "running";
1555
- ServiceWorkerVersionRunningStatus2["Stopping"] = "stopping";
1556
- })(ServiceWorkerVersionRunningStatus = ServiceWorker2.ServiceWorkerVersionRunningStatus || (ServiceWorker2.ServiceWorkerVersionRunningStatus = {}));
1557
- let ServiceWorkerVersionStatus;
1558
- ((ServiceWorkerVersionStatus2) => {
1559
- ServiceWorkerVersionStatus2["New"] = "new";
1560
- ServiceWorkerVersionStatus2["Installing"] = "installing";
1561
- ServiceWorkerVersionStatus2["Installed"] = "installed";
1562
- ServiceWorkerVersionStatus2["Activating"] = "activating";
1563
- ServiceWorkerVersionStatus2["Activated"] = "activated";
1564
- ServiceWorkerVersionStatus2["Redundant"] = "redundant";
1565
- })(ServiceWorkerVersionStatus = ServiceWorker2.ServiceWorkerVersionStatus || (ServiceWorker2.ServiceWorkerVersionStatus = {}));
1566
- })(ServiceWorker || (ServiceWorker = {}));
1567
- export var Storage;
1568
- ((Storage2) => {
1569
- let StorageType;
1570
- ((StorageType2) => {
1571
- StorageType2["Appcache"] = "appcache";
1572
- StorageType2["Cookies"] = "cookies";
1573
- StorageType2["File_systems"] = "file_systems";
1574
- StorageType2["Indexeddb"] = "indexeddb";
1575
- StorageType2["Local_storage"] = "local_storage";
1576
- StorageType2["Shader_cache"] = "shader_cache";
1577
- StorageType2["Websql"] = "websql";
1578
- StorageType2["Service_workers"] = "service_workers";
1579
- StorageType2["Cache_storage"] = "cache_storage";
1580
- StorageType2["Interest_groups"] = "interest_groups";
1581
- StorageType2["Shared_storage"] = "shared_storage";
1582
- StorageType2["Storage_buckets"] = "storage_buckets";
1583
- StorageType2["All"] = "all";
1584
- StorageType2["Other"] = "other";
1585
- })(StorageType = Storage2.StorageType || (Storage2.StorageType = {}));
1586
- let InterestGroupAccessType;
1587
- ((InterestGroupAccessType2) => {
1588
- InterestGroupAccessType2["Join"] = "join";
1589
- InterestGroupAccessType2["Leave"] = "leave";
1590
- InterestGroupAccessType2["Update"] = "update";
1591
- InterestGroupAccessType2["Loaded"] = "loaded";
1592
- InterestGroupAccessType2["Bid"] = "bid";
1593
- InterestGroupAccessType2["Win"] = "win";
1594
- InterestGroupAccessType2["AdditionalBid"] = "additionalBid";
1595
- InterestGroupAccessType2["AdditionalBidWin"] = "additionalBidWin";
1596
- InterestGroupAccessType2["TopLevelBid"] = "topLevelBid";
1597
- InterestGroupAccessType2["TopLevelAdditionalBid"] = "topLevelAdditionalBid";
1598
- InterestGroupAccessType2["Clear"] = "clear";
1599
- })(InterestGroupAccessType = Storage2.InterestGroupAccessType || (Storage2.InterestGroupAccessType = {}));
1600
- let InterestGroupAuctionEventType;
1601
- ((InterestGroupAuctionEventType2) => {
1602
- InterestGroupAuctionEventType2["Started"] = "started";
1603
- InterestGroupAuctionEventType2["ConfigResolved"] = "configResolved";
1604
- })(InterestGroupAuctionEventType = Storage2.InterestGroupAuctionEventType || (Storage2.InterestGroupAuctionEventType = {}));
1605
- let InterestGroupAuctionFetchType;
1606
- ((InterestGroupAuctionFetchType2) => {
1607
- InterestGroupAuctionFetchType2["BidderJs"] = "bidderJs";
1608
- InterestGroupAuctionFetchType2["BidderWasm"] = "bidderWasm";
1609
- InterestGroupAuctionFetchType2["SellerJs"] = "sellerJs";
1610
- InterestGroupAuctionFetchType2["BidderTrustedSignals"] = "bidderTrustedSignals";
1611
- InterestGroupAuctionFetchType2["SellerTrustedSignals"] = "sellerTrustedSignals";
1612
- })(InterestGroupAuctionFetchType = Storage2.InterestGroupAuctionFetchType || (Storage2.InterestGroupAuctionFetchType = {}));
1613
- let SharedStorageAccessType;
1614
- ((SharedStorageAccessType2) => {
1615
- SharedStorageAccessType2["DocumentAddModule"] = "documentAddModule";
1616
- SharedStorageAccessType2["DocumentSelectURL"] = "documentSelectURL";
1617
- SharedStorageAccessType2["DocumentRun"] = "documentRun";
1618
- SharedStorageAccessType2["DocumentSet"] = "documentSet";
1619
- SharedStorageAccessType2["DocumentAppend"] = "documentAppend";
1620
- SharedStorageAccessType2["DocumentDelete"] = "documentDelete";
1621
- SharedStorageAccessType2["DocumentClear"] = "documentClear";
1622
- SharedStorageAccessType2["WorkletSet"] = "workletSet";
1623
- SharedStorageAccessType2["WorkletAppend"] = "workletAppend";
1624
- SharedStorageAccessType2["WorkletDelete"] = "workletDelete";
1625
- SharedStorageAccessType2["WorkletClear"] = "workletClear";
1626
- SharedStorageAccessType2["WorkletGet"] = "workletGet";
1627
- SharedStorageAccessType2["WorkletKeys"] = "workletKeys";
1628
- SharedStorageAccessType2["WorkletEntries"] = "workletEntries";
1629
- SharedStorageAccessType2["WorkletLength"] = "workletLength";
1630
- SharedStorageAccessType2["WorkletRemainingBudget"] = "workletRemainingBudget";
1631
- })(SharedStorageAccessType = Storage2.SharedStorageAccessType || (Storage2.SharedStorageAccessType = {}));
1632
- let StorageBucketsDurability;
1633
- ((StorageBucketsDurability2) => {
1634
- StorageBucketsDurability2["Relaxed"] = "relaxed";
1635
- StorageBucketsDurability2["Strict"] = "strict";
1636
- })(StorageBucketsDurability = Storage2.StorageBucketsDurability || (Storage2.StorageBucketsDurability = {}));
1637
- let AttributionReportingSourceType;
1638
- ((AttributionReportingSourceType2) => {
1639
- AttributionReportingSourceType2["Navigation"] = "navigation";
1640
- AttributionReportingSourceType2["Event"] = "event";
1641
- })(AttributionReportingSourceType = Storage2.AttributionReportingSourceType || (Storage2.AttributionReportingSourceType = {}));
1642
- let AttributionReportingTriggerDataMatching;
1643
- ((AttributionReportingTriggerDataMatching2) => {
1644
- AttributionReportingTriggerDataMatching2["Exact"] = "exact";
1645
- AttributionReportingTriggerDataMatching2["Modulus"] = "modulus";
1646
- })(AttributionReportingTriggerDataMatching = Storage2.AttributionReportingTriggerDataMatching || (Storage2.AttributionReportingTriggerDataMatching = {}));
1647
- let AttributionReportingSourceRegistrationResult;
1648
- ((AttributionReportingSourceRegistrationResult2) => {
1649
- AttributionReportingSourceRegistrationResult2["Success"] = "success";
1650
- AttributionReportingSourceRegistrationResult2["InternalError"] = "internalError";
1651
- AttributionReportingSourceRegistrationResult2["InsufficientSourceCapacity"] = "insufficientSourceCapacity";
1652
- AttributionReportingSourceRegistrationResult2["InsufficientUniqueDestinationCapacity"] = "insufficientUniqueDestinationCapacity";
1653
- AttributionReportingSourceRegistrationResult2["ExcessiveReportingOrigins"] = "excessiveReportingOrigins";
1654
- AttributionReportingSourceRegistrationResult2["ProhibitedByBrowserPolicy"] = "prohibitedByBrowserPolicy";
1655
- AttributionReportingSourceRegistrationResult2["SuccessNoised"] = "successNoised";
1656
- AttributionReportingSourceRegistrationResult2["DestinationReportingLimitReached"] = "destinationReportingLimitReached";
1657
- AttributionReportingSourceRegistrationResult2["DestinationGlobalLimitReached"] = "destinationGlobalLimitReached";
1658
- AttributionReportingSourceRegistrationResult2["DestinationBothLimitsReached"] = "destinationBothLimitsReached";
1659
- AttributionReportingSourceRegistrationResult2["ReportingOriginsPerSiteLimitReached"] = "reportingOriginsPerSiteLimitReached";
1660
- AttributionReportingSourceRegistrationResult2["ExceedsMaxChannelCapacity"] = "exceedsMaxChannelCapacity";
1661
- })(AttributionReportingSourceRegistrationResult = Storage2.AttributionReportingSourceRegistrationResult || (Storage2.AttributionReportingSourceRegistrationResult = {}));
1662
- let AttributionReportingSourceRegistrationTimeConfig;
1663
- ((AttributionReportingSourceRegistrationTimeConfig2) => {
1664
- AttributionReportingSourceRegistrationTimeConfig2["Include"] = "include";
1665
- AttributionReportingSourceRegistrationTimeConfig2["Exclude"] = "exclude";
1666
- })(AttributionReportingSourceRegistrationTimeConfig = Storage2.AttributionReportingSourceRegistrationTimeConfig || (Storage2.AttributionReportingSourceRegistrationTimeConfig = {}));
1667
- let AttributionReportingEventLevelResult;
1668
- ((AttributionReportingEventLevelResult2) => {
1669
- AttributionReportingEventLevelResult2["Success"] = "success";
1670
- AttributionReportingEventLevelResult2["SuccessDroppedLowerPriority"] = "successDroppedLowerPriority";
1671
- AttributionReportingEventLevelResult2["InternalError"] = "internalError";
1672
- AttributionReportingEventLevelResult2["NoCapacityForAttributionDestination"] = "noCapacityForAttributionDestination";
1673
- AttributionReportingEventLevelResult2["NoMatchingSources"] = "noMatchingSources";
1674
- AttributionReportingEventLevelResult2["Deduplicated"] = "deduplicated";
1675
- AttributionReportingEventLevelResult2["ExcessiveAttributions"] = "excessiveAttributions";
1676
- AttributionReportingEventLevelResult2["PriorityTooLow"] = "priorityTooLow";
1677
- AttributionReportingEventLevelResult2["NeverAttributedSource"] = "neverAttributedSource";
1678
- AttributionReportingEventLevelResult2["ExcessiveReportingOrigins"] = "excessiveReportingOrigins";
1679
- AttributionReportingEventLevelResult2["NoMatchingSourceFilterData"] = "noMatchingSourceFilterData";
1680
- AttributionReportingEventLevelResult2["ProhibitedByBrowserPolicy"] = "prohibitedByBrowserPolicy";
1681
- AttributionReportingEventLevelResult2["NoMatchingConfigurations"] = "noMatchingConfigurations";
1682
- AttributionReportingEventLevelResult2["ExcessiveReports"] = "excessiveReports";
1683
- AttributionReportingEventLevelResult2["FalselyAttributedSource"] = "falselyAttributedSource";
1684
- AttributionReportingEventLevelResult2["ReportWindowPassed"] = "reportWindowPassed";
1685
- AttributionReportingEventLevelResult2["NotRegistered"] = "notRegistered";
1686
- AttributionReportingEventLevelResult2["ReportWindowNotStarted"] = "reportWindowNotStarted";
1687
- AttributionReportingEventLevelResult2["NoMatchingTriggerData"] = "noMatchingTriggerData";
1688
- })(AttributionReportingEventLevelResult = Storage2.AttributionReportingEventLevelResult || (Storage2.AttributionReportingEventLevelResult = {}));
1689
- let AttributionReportingAggregatableResult;
1690
- ((AttributionReportingAggregatableResult2) => {
1691
- AttributionReportingAggregatableResult2["Success"] = "success";
1692
- AttributionReportingAggregatableResult2["InternalError"] = "internalError";
1693
- AttributionReportingAggregatableResult2["NoCapacityForAttributionDestination"] = "noCapacityForAttributionDestination";
1694
- AttributionReportingAggregatableResult2["NoMatchingSources"] = "noMatchingSources";
1695
- AttributionReportingAggregatableResult2["ExcessiveAttributions"] = "excessiveAttributions";
1696
- AttributionReportingAggregatableResult2["ExcessiveReportingOrigins"] = "excessiveReportingOrigins";
1697
- AttributionReportingAggregatableResult2["NoHistograms"] = "noHistograms";
1698
- AttributionReportingAggregatableResult2["InsufficientBudget"] = "insufficientBudget";
1699
- AttributionReportingAggregatableResult2["NoMatchingSourceFilterData"] = "noMatchingSourceFilterData";
1700
- AttributionReportingAggregatableResult2["NotRegistered"] = "notRegistered";
1701
- AttributionReportingAggregatableResult2["ProhibitedByBrowserPolicy"] = "prohibitedByBrowserPolicy";
1702
- AttributionReportingAggregatableResult2["Deduplicated"] = "deduplicated";
1703
- AttributionReportingAggregatableResult2["ReportWindowPassed"] = "reportWindowPassed";
1704
- AttributionReportingAggregatableResult2["ExcessiveReports"] = "excessiveReports";
1705
- })(AttributionReportingAggregatableResult = Storage2.AttributionReportingAggregatableResult || (Storage2.AttributionReportingAggregatableResult = {}));
1706
- })(Storage || (Storage = {}));
1707
- export var SystemInfo;
1708
- ((SystemInfo2) => {
1709
- let SubsamplingFormat;
1710
- ((SubsamplingFormat2) => {
1711
- SubsamplingFormat2["Yuv420"] = "yuv420";
1712
- SubsamplingFormat2["Yuv422"] = "yuv422";
1713
- SubsamplingFormat2["Yuv444"] = "yuv444";
1714
- })(SubsamplingFormat = SystemInfo2.SubsamplingFormat || (SystemInfo2.SubsamplingFormat = {}));
1715
- let ImageType;
1716
- ((ImageType2) => {
1717
- ImageType2["Jpeg"] = "jpeg";
1718
- ImageType2["Webp"] = "webp";
1719
- ImageType2["Unknown"] = "unknown";
1720
- })(ImageType = SystemInfo2.ImageType || (SystemInfo2.ImageType = {}));
1721
- })(SystemInfo || (SystemInfo = {}));
1722
- export var Tracing;
1723
- ((Tracing2) => {
1724
- let TraceConfigRecordMode;
1725
- ((TraceConfigRecordMode2) => {
1726
- TraceConfigRecordMode2["RecordUntilFull"] = "recordUntilFull";
1727
- TraceConfigRecordMode2["RecordContinuously"] = "recordContinuously";
1728
- TraceConfigRecordMode2["RecordAsMuchAsPossible"] = "recordAsMuchAsPossible";
1729
- TraceConfigRecordMode2["EchoToConsole"] = "echoToConsole";
1730
- })(TraceConfigRecordMode = Tracing2.TraceConfigRecordMode || (Tracing2.TraceConfigRecordMode = {}));
1731
- let StreamFormat;
1732
- ((StreamFormat2) => {
1733
- StreamFormat2["Json"] = "json";
1734
- StreamFormat2["Proto"] = "proto";
1735
- })(StreamFormat = Tracing2.StreamFormat || (Tracing2.StreamFormat = {}));
1736
- let StreamCompression;
1737
- ((StreamCompression2) => {
1738
- StreamCompression2["None"] = "none";
1739
- StreamCompression2["Gzip"] = "gzip";
1740
- })(StreamCompression = Tracing2.StreamCompression || (Tracing2.StreamCompression = {}));
1741
- let MemoryDumpLevelOfDetail;
1742
- ((MemoryDumpLevelOfDetail2) => {
1743
- MemoryDumpLevelOfDetail2["Background"] = "background";
1744
- MemoryDumpLevelOfDetail2["Light"] = "light";
1745
- MemoryDumpLevelOfDetail2["Detailed"] = "detailed";
1746
- })(MemoryDumpLevelOfDetail = Tracing2.MemoryDumpLevelOfDetail || (Tracing2.MemoryDumpLevelOfDetail = {}));
1747
- let TracingBackend;
1748
- ((TracingBackend2) => {
1749
- TracingBackend2["Auto"] = "auto";
1750
- TracingBackend2["Chrome"] = "chrome";
1751
- TracingBackend2["System"] = "system";
1752
- })(TracingBackend = Tracing2.TracingBackend || (Tracing2.TracingBackend = {}));
1753
- let StartRequestTransferMode;
1754
- ((StartRequestTransferMode2) => {
1755
- StartRequestTransferMode2["ReportEvents"] = "ReportEvents";
1756
- StartRequestTransferMode2["ReturnAsStream"] = "ReturnAsStream";
1757
- })(StartRequestTransferMode = Tracing2.StartRequestTransferMode || (Tracing2.StartRequestTransferMode = {}));
1758
- })(Tracing || (Tracing = {}));
1759
- export var Fetch;
1760
- ((Fetch2) => {
1761
- let RequestStage;
1762
- ((RequestStage2) => {
1763
- RequestStage2["Request"] = "Request";
1764
- RequestStage2["Response"] = "Response";
1765
- })(RequestStage = Fetch2.RequestStage || (Fetch2.RequestStage = {}));
1766
- let AuthChallengeSource;
1767
- ((AuthChallengeSource2) => {
1768
- AuthChallengeSource2["Server"] = "Server";
1769
- AuthChallengeSource2["Proxy"] = "Proxy";
1770
- })(AuthChallengeSource = Fetch2.AuthChallengeSource || (Fetch2.AuthChallengeSource = {}));
1771
- let AuthChallengeResponseResponse;
1772
- ((AuthChallengeResponseResponse2) => {
1773
- AuthChallengeResponseResponse2["Default"] = "Default";
1774
- AuthChallengeResponseResponse2["CancelAuth"] = "CancelAuth";
1775
- AuthChallengeResponseResponse2["ProvideCredentials"] = "ProvideCredentials";
1776
- })(AuthChallengeResponseResponse = Fetch2.AuthChallengeResponseResponse || (Fetch2.AuthChallengeResponseResponse = {}));
1777
- })(Fetch || (Fetch = {}));
1778
- export var WebAudio;
1779
- ((WebAudio2) => {
1780
- let ContextType;
1781
- ((ContextType2) => {
1782
- ContextType2["Realtime"] = "realtime";
1783
- ContextType2["Offline"] = "offline";
1784
- })(ContextType = WebAudio2.ContextType || (WebAudio2.ContextType = {}));
1785
- let ContextState;
1786
- ((ContextState2) => {
1787
- ContextState2["Suspended"] = "suspended";
1788
- ContextState2["Running"] = "running";
1789
- ContextState2["Closed"] = "closed";
1790
- })(ContextState = WebAudio2.ContextState || (WebAudio2.ContextState = {}));
1791
- let ChannelCountMode;
1792
- ((ChannelCountMode2) => {
1793
- ChannelCountMode2["ClampedMax"] = "clamped-max";
1794
- ChannelCountMode2["Explicit"] = "explicit";
1795
- ChannelCountMode2["Max"] = "max";
1796
- })(ChannelCountMode = WebAudio2.ChannelCountMode || (WebAudio2.ChannelCountMode = {}));
1797
- let ChannelInterpretation;
1798
- ((ChannelInterpretation2) => {
1799
- ChannelInterpretation2["Discrete"] = "discrete";
1800
- ChannelInterpretation2["Speakers"] = "speakers";
1801
- })(ChannelInterpretation = WebAudio2.ChannelInterpretation || (WebAudio2.ChannelInterpretation = {}));
1802
- let AutomationRate;
1803
- ((AutomationRate2) => {
1804
- AutomationRate2["ARate"] = "a-rate";
1805
- AutomationRate2["KRate"] = "k-rate";
1806
- })(AutomationRate = WebAudio2.AutomationRate || (WebAudio2.AutomationRate = {}));
1807
- })(WebAudio || (WebAudio = {}));
1808
- export var WebAuthn;
1809
- ((WebAuthn2) => {
1810
- let AuthenticatorProtocol;
1811
- ((AuthenticatorProtocol2) => {
1812
- AuthenticatorProtocol2["U2f"] = "u2f";
1813
- AuthenticatorProtocol2["Ctap2"] = "ctap2";
1814
- })(AuthenticatorProtocol = WebAuthn2.AuthenticatorProtocol || (WebAuthn2.AuthenticatorProtocol = {}));
1815
- let Ctap2Version;
1816
- ((Ctap2Version2) => {
1817
- Ctap2Version2["Ctap2_0"] = "ctap2_0";
1818
- Ctap2Version2["Ctap2_1"] = "ctap2_1";
1819
- })(Ctap2Version = WebAuthn2.Ctap2Version || (WebAuthn2.Ctap2Version = {}));
1820
- let AuthenticatorTransport;
1821
- ((AuthenticatorTransport2) => {
1822
- AuthenticatorTransport2["Usb"] = "usb";
1823
- AuthenticatorTransport2["Nfc"] = "nfc";
1824
- AuthenticatorTransport2["Ble"] = "ble";
1825
- AuthenticatorTransport2["Cable"] = "cable";
1826
- AuthenticatorTransport2["Internal"] = "internal";
1827
- })(AuthenticatorTransport = WebAuthn2.AuthenticatorTransport || (WebAuthn2.AuthenticatorTransport = {}));
1828
- })(WebAuthn || (WebAuthn = {}));
1829
- export var Media;
1830
- ((Media2) => {
1831
- let PlayerMessageLevel;
1832
- ((PlayerMessageLevel2) => {
1833
- PlayerMessageLevel2["Error"] = "error";
1834
- PlayerMessageLevel2["Warning"] = "warning";
1835
- PlayerMessageLevel2["Info"] = "info";
1836
- PlayerMessageLevel2["Debug"] = "debug";
1837
- })(PlayerMessageLevel = Media2.PlayerMessageLevel || (Media2.PlayerMessageLevel = {}));
1838
- })(Media || (Media = {}));
1839
- export var Preload;
1840
- ((Preload2) => {
1841
- let RuleSetErrorType;
1842
- ((RuleSetErrorType2) => {
1843
- RuleSetErrorType2["SourceIsNotJsonObject"] = "SourceIsNotJsonObject";
1844
- RuleSetErrorType2["InvalidRulesSkipped"] = "InvalidRulesSkipped";
1845
- })(RuleSetErrorType = Preload2.RuleSetErrorType || (Preload2.RuleSetErrorType = {}));
1846
- let SpeculationAction;
1847
- ((SpeculationAction2) => {
1848
- SpeculationAction2["Prefetch"] = "Prefetch";
1849
- SpeculationAction2["Prerender"] = "Prerender";
1850
- })(SpeculationAction = Preload2.SpeculationAction || (Preload2.SpeculationAction = {}));
1851
- let SpeculationTargetHint;
1852
- ((SpeculationTargetHint2) => {
1853
- SpeculationTargetHint2["Blank"] = "Blank";
1854
- SpeculationTargetHint2["Self"] = "Self";
1855
- })(SpeculationTargetHint = Preload2.SpeculationTargetHint || (Preload2.SpeculationTargetHint = {}));
1856
- let PrerenderFinalStatus;
1857
- ((PrerenderFinalStatus2) => {
1858
- PrerenderFinalStatus2["Activated"] = "Activated";
1859
- PrerenderFinalStatus2["Destroyed"] = "Destroyed";
1860
- PrerenderFinalStatus2["LowEndDevice"] = "LowEndDevice";
1861
- PrerenderFinalStatus2["InvalidSchemeRedirect"] = "InvalidSchemeRedirect";
1862
- PrerenderFinalStatus2["InvalidSchemeNavigation"] = "InvalidSchemeNavigation";
1863
- PrerenderFinalStatus2["NavigationRequestBlockedByCsp"] = "NavigationRequestBlockedByCsp";
1864
- PrerenderFinalStatus2["MainFrameNavigation"] = "MainFrameNavigation";
1865
- PrerenderFinalStatus2["MojoBinderPolicy"] = "MojoBinderPolicy";
1866
- PrerenderFinalStatus2["RendererProcessCrashed"] = "RendererProcessCrashed";
1867
- PrerenderFinalStatus2["RendererProcessKilled"] = "RendererProcessKilled";
1868
- PrerenderFinalStatus2["Download"] = "Download";
1869
- PrerenderFinalStatus2["TriggerDestroyed"] = "TriggerDestroyed";
1870
- PrerenderFinalStatus2["NavigationNotCommitted"] = "NavigationNotCommitted";
1871
- PrerenderFinalStatus2["NavigationBadHttpStatus"] = "NavigationBadHttpStatus";
1872
- PrerenderFinalStatus2["ClientCertRequested"] = "ClientCertRequested";
1873
- PrerenderFinalStatus2["NavigationRequestNetworkError"] = "NavigationRequestNetworkError";
1874
- PrerenderFinalStatus2["CancelAllHostsForTesting"] = "CancelAllHostsForTesting";
1875
- PrerenderFinalStatus2["DidFailLoad"] = "DidFailLoad";
1876
- PrerenderFinalStatus2["Stop"] = "Stop";
1877
- PrerenderFinalStatus2["SslCertificateError"] = "SslCertificateError";
1878
- PrerenderFinalStatus2["LoginAuthRequested"] = "LoginAuthRequested";
1879
- PrerenderFinalStatus2["UaChangeRequiresReload"] = "UaChangeRequiresReload";
1880
- PrerenderFinalStatus2["BlockedByClient"] = "BlockedByClient";
1881
- PrerenderFinalStatus2["AudioOutputDeviceRequested"] = "AudioOutputDeviceRequested";
1882
- PrerenderFinalStatus2["MixedContent"] = "MixedContent";
1883
- PrerenderFinalStatus2["TriggerBackgrounded"] = "TriggerBackgrounded";
1884
- PrerenderFinalStatus2["MemoryLimitExceeded"] = "MemoryLimitExceeded";
1885
- PrerenderFinalStatus2["DataSaverEnabled"] = "DataSaverEnabled";
1886
- PrerenderFinalStatus2["TriggerUrlHasEffectiveUrl"] = "TriggerUrlHasEffectiveUrl";
1887
- PrerenderFinalStatus2["ActivatedBeforeStarted"] = "ActivatedBeforeStarted";
1888
- PrerenderFinalStatus2["InactivePageRestriction"] = "InactivePageRestriction";
1889
- PrerenderFinalStatus2["StartFailed"] = "StartFailed";
1890
- PrerenderFinalStatus2["TimeoutBackgrounded"] = "TimeoutBackgrounded";
1891
- PrerenderFinalStatus2["CrossSiteRedirectInInitialNavigation"] = "CrossSiteRedirectInInitialNavigation";
1892
- PrerenderFinalStatus2["CrossSiteNavigationInInitialNavigation"] = "CrossSiteNavigationInInitialNavigation";
1893
- PrerenderFinalStatus2["SameSiteCrossOriginRedirectNotOptInInInitialNavigation"] = "SameSiteCrossOriginRedirectNotOptInInInitialNavigation";
1894
- PrerenderFinalStatus2["SameSiteCrossOriginNavigationNotOptInInInitialNavigation"] = "SameSiteCrossOriginNavigationNotOptInInInitialNavigation";
1895
- PrerenderFinalStatus2["ActivationNavigationParameterMismatch"] = "ActivationNavigationParameterMismatch";
1896
- PrerenderFinalStatus2["ActivatedInBackground"] = "ActivatedInBackground";
1897
- PrerenderFinalStatus2["EmbedderHostDisallowed"] = "EmbedderHostDisallowed";
1898
- PrerenderFinalStatus2["ActivationNavigationDestroyedBeforeSuccess"] = "ActivationNavigationDestroyedBeforeSuccess";
1899
- PrerenderFinalStatus2["TabClosedByUserGesture"] = "TabClosedByUserGesture";
1900
- PrerenderFinalStatus2["TabClosedWithoutUserGesture"] = "TabClosedWithoutUserGesture";
1901
- PrerenderFinalStatus2["PrimaryMainFrameRendererProcessCrashed"] = "PrimaryMainFrameRendererProcessCrashed";
1902
- PrerenderFinalStatus2["PrimaryMainFrameRendererProcessKilled"] = "PrimaryMainFrameRendererProcessKilled";
1903
- PrerenderFinalStatus2["ActivationFramePolicyNotCompatible"] = "ActivationFramePolicyNotCompatible";
1904
- PrerenderFinalStatus2["PreloadingDisabled"] = "PreloadingDisabled";
1905
- PrerenderFinalStatus2["BatterySaverEnabled"] = "BatterySaverEnabled";
1906
- PrerenderFinalStatus2["ActivatedDuringMainFrameNavigation"] = "ActivatedDuringMainFrameNavigation";
1907
- PrerenderFinalStatus2["PreloadingUnsupportedByWebContents"] = "PreloadingUnsupportedByWebContents";
1908
- PrerenderFinalStatus2["CrossSiteRedirectInMainFrameNavigation"] = "CrossSiteRedirectInMainFrameNavigation";
1909
- PrerenderFinalStatus2["CrossSiteNavigationInMainFrameNavigation"] = "CrossSiteNavigationInMainFrameNavigation";
1910
- PrerenderFinalStatus2["SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"] = "SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation";
1911
- PrerenderFinalStatus2["SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"] = "SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation";
1912
- PrerenderFinalStatus2["MemoryPressureOnTrigger"] = "MemoryPressureOnTrigger";
1913
- PrerenderFinalStatus2["MemoryPressureAfterTriggered"] = "MemoryPressureAfterTriggered";
1914
- PrerenderFinalStatus2["PrerenderingDisabledByDevTools"] = "PrerenderingDisabledByDevTools";
1915
- PrerenderFinalStatus2["SpeculationRuleRemoved"] = "SpeculationRuleRemoved";
1916
- PrerenderFinalStatus2["ActivatedWithAuxiliaryBrowsingContexts"] = "ActivatedWithAuxiliaryBrowsingContexts";
1917
- PrerenderFinalStatus2["MaxNumOfRunningEagerPrerendersExceeded"] = "MaxNumOfRunningEagerPrerendersExceeded";
1918
- PrerenderFinalStatus2["MaxNumOfRunningNonEagerPrerendersExceeded"] = "MaxNumOfRunningNonEagerPrerendersExceeded";
1919
- PrerenderFinalStatus2["MaxNumOfRunningEmbedderPrerendersExceeded"] = "MaxNumOfRunningEmbedderPrerendersExceeded";
1920
- PrerenderFinalStatus2["PrerenderingUrlHasEffectiveUrl"] = "PrerenderingUrlHasEffectiveUrl";
1921
- PrerenderFinalStatus2["RedirectedPrerenderingUrlHasEffectiveUrl"] = "RedirectedPrerenderingUrlHasEffectiveUrl";
1922
- PrerenderFinalStatus2["ActivationUrlHasEffectiveUrl"] = "ActivationUrlHasEffectiveUrl";
1923
- })(PrerenderFinalStatus = Preload2.PrerenderFinalStatus || (Preload2.PrerenderFinalStatus = {}));
1924
- let PreloadingStatus;
1925
- ((PreloadingStatus2) => {
1926
- PreloadingStatus2["Pending"] = "Pending";
1927
- PreloadingStatus2["Running"] = "Running";
1928
- PreloadingStatus2["Ready"] = "Ready";
1929
- PreloadingStatus2["Success"] = "Success";
1930
- PreloadingStatus2["Failure"] = "Failure";
1931
- PreloadingStatus2["NotSupported"] = "NotSupported";
1932
- })(PreloadingStatus = Preload2.PreloadingStatus || (Preload2.PreloadingStatus = {}));
1933
- let PrefetchStatus;
1934
- ((PrefetchStatus2) => {
1935
- PrefetchStatus2["PrefetchAllowed"] = "PrefetchAllowed";
1936
- PrefetchStatus2["PrefetchFailedIneligibleRedirect"] = "PrefetchFailedIneligibleRedirect";
1937
- PrefetchStatus2["PrefetchFailedInvalidRedirect"] = "PrefetchFailedInvalidRedirect";
1938
- PrefetchStatus2["PrefetchFailedMIMENotSupported"] = "PrefetchFailedMIMENotSupported";
1939
- PrefetchStatus2["PrefetchFailedNetError"] = "PrefetchFailedNetError";
1940
- PrefetchStatus2["PrefetchFailedNon2XX"] = "PrefetchFailedNon2XX";
1941
- PrefetchStatus2["PrefetchFailedPerPageLimitExceeded"] = "PrefetchFailedPerPageLimitExceeded";
1942
- PrefetchStatus2["PrefetchEvictedAfterCandidateRemoved"] = "PrefetchEvictedAfterCandidateRemoved";
1943
- PrefetchStatus2["PrefetchEvictedForNewerPrefetch"] = "PrefetchEvictedForNewerPrefetch";
1944
- PrefetchStatus2["PrefetchHeldback"] = "PrefetchHeldback";
1945
- PrefetchStatus2["PrefetchIneligibleRetryAfter"] = "PrefetchIneligibleRetryAfter";
1946
- PrefetchStatus2["PrefetchIsPrivacyDecoy"] = "PrefetchIsPrivacyDecoy";
1947
- PrefetchStatus2["PrefetchIsStale"] = "PrefetchIsStale";
1948
- PrefetchStatus2["PrefetchNotEligibleBrowserContextOffTheRecord"] = "PrefetchNotEligibleBrowserContextOffTheRecord";
1949
- PrefetchStatus2["PrefetchNotEligibleDataSaverEnabled"] = "PrefetchNotEligibleDataSaverEnabled";
1950
- PrefetchStatus2["PrefetchNotEligibleExistingProxy"] = "PrefetchNotEligibleExistingProxy";
1951
- PrefetchStatus2["PrefetchNotEligibleHostIsNonUnique"] = "PrefetchNotEligibleHostIsNonUnique";
1952
- PrefetchStatus2["PrefetchNotEligibleNonDefaultStoragePartition"] = "PrefetchNotEligibleNonDefaultStoragePartition";
1953
- PrefetchStatus2["PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy"] = "PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy";
1954
- PrefetchStatus2["PrefetchNotEligibleSchemeIsNotHttps"] = "PrefetchNotEligibleSchemeIsNotHttps";
1955
- PrefetchStatus2["PrefetchNotEligibleUserHasCookies"] = "PrefetchNotEligibleUserHasCookies";
1956
- PrefetchStatus2["PrefetchNotEligibleUserHasServiceWorker"] = "PrefetchNotEligibleUserHasServiceWorker";
1957
- PrefetchStatus2["PrefetchNotEligibleBatterySaverEnabled"] = "PrefetchNotEligibleBatterySaverEnabled";
1958
- PrefetchStatus2["PrefetchNotEligiblePreloadingDisabled"] = "PrefetchNotEligiblePreloadingDisabled";
1959
- PrefetchStatus2["PrefetchNotFinishedInTime"] = "PrefetchNotFinishedInTime";
1960
- PrefetchStatus2["PrefetchNotStarted"] = "PrefetchNotStarted";
1961
- PrefetchStatus2["PrefetchNotUsedCookiesChanged"] = "PrefetchNotUsedCookiesChanged";
1962
- PrefetchStatus2["PrefetchProxyNotAvailable"] = "PrefetchProxyNotAvailable";
1963
- PrefetchStatus2["PrefetchResponseUsed"] = "PrefetchResponseUsed";
1964
- PrefetchStatus2["PrefetchSuccessfulButNotUsed"] = "PrefetchSuccessfulButNotUsed";
1965
- PrefetchStatus2["PrefetchNotUsedProbeFailed"] = "PrefetchNotUsedProbeFailed";
1966
- })(PrefetchStatus = Preload2.PrefetchStatus || (Preload2.PrefetchStatus = {}));
1967
- })(Preload || (Preload = {}));
1968
- export var FedCm;
1969
- ((FedCm2) => {
1970
- let LoginState;
1971
- ((LoginState2) => {
1972
- LoginState2["SignIn"] = "SignIn";
1973
- LoginState2["SignUp"] = "SignUp";
1974
- })(LoginState = FedCm2.LoginState || (FedCm2.LoginState = {}));
1975
- let DialogType;
1976
- ((DialogType2) => {
1977
- DialogType2["AccountChooser"] = "AccountChooser";
1978
- DialogType2["AutoReauthn"] = "AutoReauthn";
1979
- DialogType2["ConfirmIdpLogin"] = "ConfirmIdpLogin";
1980
- DialogType2["Error"] = "Error";
1981
- })(DialogType = FedCm2.DialogType || (FedCm2.DialogType = {}));
1982
- let DialogButton;
1983
- ((DialogButton2) => {
1984
- DialogButton2["ConfirmIdpLoginContinue"] = "ConfirmIdpLoginContinue";
1985
- DialogButton2["ErrorGotIt"] = "ErrorGotIt";
1986
- DialogButton2["ErrorMoreDetails"] = "ErrorMoreDetails";
1987
- })(DialogButton = FedCm2.DialogButton || (FedCm2.DialogButton = {}));
1988
- let AccountUrlType;
1989
- ((AccountUrlType2) => {
1990
- AccountUrlType2["TermsOfService"] = "TermsOfService";
1991
- AccountUrlType2["PrivacyPolicy"] = "PrivacyPolicy";
1992
- })(AccountUrlType = FedCm2.AccountUrlType || (FedCm2.AccountUrlType = {}));
1993
- })(FedCm || (FedCm = {}));
1994
- export var Debugger;
1995
- ((Debugger2) => {
1996
- let ScopeType;
1997
- ((ScopeType2) => {
1998
- ScopeType2["Global"] = "global";
1999
- ScopeType2["Local"] = "local";
2000
- ScopeType2["With"] = "with";
2001
- ScopeType2["Closure"] = "closure";
2002
- ScopeType2["Catch"] = "catch";
2003
- ScopeType2["Block"] = "block";
2004
- ScopeType2["Script"] = "script";
2005
- ScopeType2["Eval"] = "eval";
2006
- ScopeType2["Module"] = "module";
2007
- ScopeType2["WasmExpressionStack"] = "wasm-expression-stack";
2008
- })(ScopeType = Debugger2.ScopeType || (Debugger2.ScopeType = {}));
2009
- let BreakLocationType;
2010
- ((BreakLocationType2) => {
2011
- BreakLocationType2["DebuggerStatement"] = "debuggerStatement";
2012
- BreakLocationType2["Call"] = "call";
2013
- BreakLocationType2["Return"] = "return";
2014
- })(BreakLocationType = Debugger2.BreakLocationType || (Debugger2.BreakLocationType = {}));
2015
- let ScriptLanguage;
2016
- ((ScriptLanguage2) => {
2017
- ScriptLanguage2["JavaScript"] = "JavaScript";
2018
- ScriptLanguage2["WebAssembly"] = "WebAssembly";
2019
- })(ScriptLanguage = Debugger2.ScriptLanguage || (Debugger2.ScriptLanguage = {}));
2020
- let DebugSymbolsType;
2021
- ((DebugSymbolsType2) => {
2022
- DebugSymbolsType2["None"] = "None";
2023
- DebugSymbolsType2["SourceMap"] = "SourceMap";
2024
- DebugSymbolsType2["EmbeddedDWARF"] = "EmbeddedDWARF";
2025
- DebugSymbolsType2["ExternalDWARF"] = "ExternalDWARF";
2026
- })(DebugSymbolsType = Debugger2.DebugSymbolsType || (Debugger2.DebugSymbolsType = {}));
2027
- let ContinueToLocationRequestTargetCallFrames;
2028
- ((ContinueToLocationRequestTargetCallFrames2) => {
2029
- ContinueToLocationRequestTargetCallFrames2["Any"] = "any";
2030
- ContinueToLocationRequestTargetCallFrames2["Current"] = "current";
2031
- })(ContinueToLocationRequestTargetCallFrames = Debugger2.ContinueToLocationRequestTargetCallFrames || (Debugger2.ContinueToLocationRequestTargetCallFrames = {}));
2032
- let RestartFrameRequestMode;
2033
- ((RestartFrameRequestMode2) => {
2034
- RestartFrameRequestMode2["StepInto"] = "StepInto";
2035
- })(RestartFrameRequestMode = Debugger2.RestartFrameRequestMode || (Debugger2.RestartFrameRequestMode = {}));
2036
- let SetInstrumentationBreakpointRequestInstrumentation;
2037
- ((SetInstrumentationBreakpointRequestInstrumentation2) => {
2038
- SetInstrumentationBreakpointRequestInstrumentation2["BeforeScriptExecution"] = "beforeScriptExecution";
2039
- SetInstrumentationBreakpointRequestInstrumentation2["BeforeScriptWithSourceMapExecution"] = "beforeScriptWithSourceMapExecution";
2040
- })(SetInstrumentationBreakpointRequestInstrumentation = Debugger2.SetInstrumentationBreakpointRequestInstrumentation || (Debugger2.SetInstrumentationBreakpointRequestInstrumentation = {}));
2041
- let SetPauseOnExceptionsRequestState;
2042
- ((SetPauseOnExceptionsRequestState2) => {
2043
- SetPauseOnExceptionsRequestState2["None"] = "none";
2044
- SetPauseOnExceptionsRequestState2["Caught"] = "caught";
2045
- SetPauseOnExceptionsRequestState2["Uncaught"] = "uncaught";
2046
- SetPauseOnExceptionsRequestState2["All"] = "all";
2047
- })(SetPauseOnExceptionsRequestState = Debugger2.SetPauseOnExceptionsRequestState || (Debugger2.SetPauseOnExceptionsRequestState = {}));
2048
- let SetScriptSourceResponseStatus;
2049
- ((SetScriptSourceResponseStatus2) => {
2050
- SetScriptSourceResponseStatus2["Ok"] = "Ok";
2051
- SetScriptSourceResponseStatus2["CompileError"] = "CompileError";
2052
- SetScriptSourceResponseStatus2["BlockedByActiveGenerator"] = "BlockedByActiveGenerator";
2053
- SetScriptSourceResponseStatus2["BlockedByActiveFunction"] = "BlockedByActiveFunction";
2054
- SetScriptSourceResponseStatus2["BlockedByTopLevelEsModuleChange"] = "BlockedByTopLevelEsModuleChange";
2055
- })(SetScriptSourceResponseStatus = Debugger2.SetScriptSourceResponseStatus || (Debugger2.SetScriptSourceResponseStatus = {}));
2056
- let PausedEventReason;
2057
- ((PausedEventReason2) => {
2058
- PausedEventReason2["Ambiguous"] = "ambiguous";
2059
- PausedEventReason2["Assert"] = "assert";
2060
- PausedEventReason2["CSPViolation"] = "CSPViolation";
2061
- PausedEventReason2["DebugCommand"] = "debugCommand";
2062
- PausedEventReason2["DOM"] = "DOM";
2063
- PausedEventReason2["EventListener"] = "EventListener";
2064
- PausedEventReason2["Exception"] = "exception";
2065
- PausedEventReason2["Instrumentation"] = "instrumentation";
2066
- PausedEventReason2["OOM"] = "OOM";
2067
- PausedEventReason2["Other"] = "other";
2068
- PausedEventReason2["PromiseRejection"] = "promiseRejection";
2069
- PausedEventReason2["XHR"] = "XHR";
2070
- PausedEventReason2["Step"] = "step";
2071
- })(PausedEventReason = Debugger2.PausedEventReason || (Debugger2.PausedEventReason = {}));
2072
- })(Debugger || (Debugger = {}));
2073
- export var Runtime;
2074
- ((Runtime2) => {
2075
- let SerializationOptionsSerialization;
2076
- ((SerializationOptionsSerialization2) => {
2077
- SerializationOptionsSerialization2["Deep"] = "deep";
2078
- SerializationOptionsSerialization2["Json"] = "json";
2079
- SerializationOptionsSerialization2["IdOnly"] = "idOnly";
2080
- })(SerializationOptionsSerialization = Runtime2.SerializationOptionsSerialization || (Runtime2.SerializationOptionsSerialization = {}));
2081
- let DeepSerializedValueType;
2082
- ((DeepSerializedValueType2) => {
2083
- DeepSerializedValueType2["Undefined"] = "undefined";
2084
- DeepSerializedValueType2["Null"] = "null";
2085
- DeepSerializedValueType2["String"] = "string";
2086
- DeepSerializedValueType2["Number"] = "number";
2087
- DeepSerializedValueType2["Boolean"] = "boolean";
2088
- DeepSerializedValueType2["Bigint"] = "bigint";
2089
- DeepSerializedValueType2["Regexp"] = "regexp";
2090
- DeepSerializedValueType2["Date"] = "date";
2091
- DeepSerializedValueType2["Symbol"] = "symbol";
2092
- DeepSerializedValueType2["Array"] = "array";
2093
- DeepSerializedValueType2["Object"] = "object";
2094
- DeepSerializedValueType2["Function"] = "function";
2095
- DeepSerializedValueType2["Map"] = "map";
2096
- DeepSerializedValueType2["Set"] = "set";
2097
- DeepSerializedValueType2["Weakmap"] = "weakmap";
2098
- DeepSerializedValueType2["Weakset"] = "weakset";
2099
- DeepSerializedValueType2["Error"] = "error";
2100
- DeepSerializedValueType2["Proxy"] = "proxy";
2101
- DeepSerializedValueType2["Promise"] = "promise";
2102
- DeepSerializedValueType2["Typedarray"] = "typedarray";
2103
- DeepSerializedValueType2["Arraybuffer"] = "arraybuffer";
2104
- DeepSerializedValueType2["Node"] = "node";
2105
- DeepSerializedValueType2["Window"] = "window";
2106
- DeepSerializedValueType2["Generator"] = "generator";
2107
- })(DeepSerializedValueType = Runtime2.DeepSerializedValueType || (Runtime2.DeepSerializedValueType = {}));
2108
- let RemoteObjectType;
2109
- ((RemoteObjectType2) => {
2110
- RemoteObjectType2["Object"] = "object";
2111
- RemoteObjectType2["Function"] = "function";
2112
- RemoteObjectType2["Undefined"] = "undefined";
2113
- RemoteObjectType2["String"] = "string";
2114
- RemoteObjectType2["Number"] = "number";
2115
- RemoteObjectType2["Boolean"] = "boolean";
2116
- RemoteObjectType2["Symbol"] = "symbol";
2117
- RemoteObjectType2["Bigint"] = "bigint";
2118
- })(RemoteObjectType = Runtime2.RemoteObjectType || (Runtime2.RemoteObjectType = {}));
2119
- let RemoteObjectSubtype;
2120
- ((RemoteObjectSubtype2) => {
2121
- RemoteObjectSubtype2["Array"] = "array";
2122
- RemoteObjectSubtype2["Null"] = "null";
2123
- RemoteObjectSubtype2["Node"] = "node";
2124
- RemoteObjectSubtype2["Regexp"] = "regexp";
2125
- RemoteObjectSubtype2["Date"] = "date";
2126
- RemoteObjectSubtype2["Map"] = "map";
2127
- RemoteObjectSubtype2["Set"] = "set";
2128
- RemoteObjectSubtype2["Weakmap"] = "weakmap";
2129
- RemoteObjectSubtype2["Weakset"] = "weakset";
2130
- RemoteObjectSubtype2["Iterator"] = "iterator";
2131
- RemoteObjectSubtype2["Generator"] = "generator";
2132
- RemoteObjectSubtype2["Error"] = "error";
2133
- RemoteObjectSubtype2["Proxy"] = "proxy";
2134
- RemoteObjectSubtype2["Promise"] = "promise";
2135
- RemoteObjectSubtype2["Typedarray"] = "typedarray";
2136
- RemoteObjectSubtype2["Arraybuffer"] = "arraybuffer";
2137
- RemoteObjectSubtype2["Dataview"] = "dataview";
2138
- RemoteObjectSubtype2["Webassemblymemory"] = "webassemblymemory";
2139
- RemoteObjectSubtype2["Wasmvalue"] = "wasmvalue";
2140
- })(RemoteObjectSubtype = Runtime2.RemoteObjectSubtype || (Runtime2.RemoteObjectSubtype = {}));
2141
- let ObjectPreviewType;
2142
- ((ObjectPreviewType2) => {
2143
- ObjectPreviewType2["Object"] = "object";
2144
- ObjectPreviewType2["Function"] = "function";
2145
- ObjectPreviewType2["Undefined"] = "undefined";
2146
- ObjectPreviewType2["String"] = "string";
2147
- ObjectPreviewType2["Number"] = "number";
2148
- ObjectPreviewType2["Boolean"] = "boolean";
2149
- ObjectPreviewType2["Symbol"] = "symbol";
2150
- ObjectPreviewType2["Bigint"] = "bigint";
2151
- })(ObjectPreviewType = Runtime2.ObjectPreviewType || (Runtime2.ObjectPreviewType = {}));
2152
- let ObjectPreviewSubtype;
2153
- ((ObjectPreviewSubtype2) => {
2154
- ObjectPreviewSubtype2["Array"] = "array";
2155
- ObjectPreviewSubtype2["Null"] = "null";
2156
- ObjectPreviewSubtype2["Node"] = "node";
2157
- ObjectPreviewSubtype2["Regexp"] = "regexp";
2158
- ObjectPreviewSubtype2["Date"] = "date";
2159
- ObjectPreviewSubtype2["Map"] = "map";
2160
- ObjectPreviewSubtype2["Set"] = "set";
2161
- ObjectPreviewSubtype2["Weakmap"] = "weakmap";
2162
- ObjectPreviewSubtype2["Weakset"] = "weakset";
2163
- ObjectPreviewSubtype2["Iterator"] = "iterator";
2164
- ObjectPreviewSubtype2["Generator"] = "generator";
2165
- ObjectPreviewSubtype2["Error"] = "error";
2166
- ObjectPreviewSubtype2["Proxy"] = "proxy";
2167
- ObjectPreviewSubtype2["Promise"] = "promise";
2168
- ObjectPreviewSubtype2["Typedarray"] = "typedarray";
2169
- ObjectPreviewSubtype2["Arraybuffer"] = "arraybuffer";
2170
- ObjectPreviewSubtype2["Dataview"] = "dataview";
2171
- ObjectPreviewSubtype2["Webassemblymemory"] = "webassemblymemory";
2172
- ObjectPreviewSubtype2["Wasmvalue"] = "wasmvalue";
2173
- })(ObjectPreviewSubtype = Runtime2.ObjectPreviewSubtype || (Runtime2.ObjectPreviewSubtype = {}));
2174
- let PropertyPreviewType;
2175
- ((PropertyPreviewType2) => {
2176
- PropertyPreviewType2["Object"] = "object";
2177
- PropertyPreviewType2["Function"] = "function";
2178
- PropertyPreviewType2["Undefined"] = "undefined";
2179
- PropertyPreviewType2["String"] = "string";
2180
- PropertyPreviewType2["Number"] = "number";
2181
- PropertyPreviewType2["Boolean"] = "boolean";
2182
- PropertyPreviewType2["Symbol"] = "symbol";
2183
- PropertyPreviewType2["Accessor"] = "accessor";
2184
- PropertyPreviewType2["Bigint"] = "bigint";
2185
- })(PropertyPreviewType = Runtime2.PropertyPreviewType || (Runtime2.PropertyPreviewType = {}));
2186
- let PropertyPreviewSubtype;
2187
- ((PropertyPreviewSubtype2) => {
2188
- PropertyPreviewSubtype2["Array"] = "array";
2189
- PropertyPreviewSubtype2["Null"] = "null";
2190
- PropertyPreviewSubtype2["Node"] = "node";
2191
- PropertyPreviewSubtype2["Regexp"] = "regexp";
2192
- PropertyPreviewSubtype2["Date"] = "date";
2193
- PropertyPreviewSubtype2["Map"] = "map";
2194
- PropertyPreviewSubtype2["Set"] = "set";
2195
- PropertyPreviewSubtype2["Weakmap"] = "weakmap";
2196
- PropertyPreviewSubtype2["Weakset"] = "weakset";
2197
- PropertyPreviewSubtype2["Iterator"] = "iterator";
2198
- PropertyPreviewSubtype2["Generator"] = "generator";
2199
- PropertyPreviewSubtype2["Error"] = "error";
2200
- PropertyPreviewSubtype2["Proxy"] = "proxy";
2201
- PropertyPreviewSubtype2["Promise"] = "promise";
2202
- PropertyPreviewSubtype2["Typedarray"] = "typedarray";
2203
- PropertyPreviewSubtype2["Arraybuffer"] = "arraybuffer";
2204
- PropertyPreviewSubtype2["Dataview"] = "dataview";
2205
- PropertyPreviewSubtype2["Webassemblymemory"] = "webassemblymemory";
2206
- PropertyPreviewSubtype2["Wasmvalue"] = "wasmvalue";
2207
- })(PropertyPreviewSubtype = Runtime2.PropertyPreviewSubtype || (Runtime2.PropertyPreviewSubtype = {}));
2208
- let ConsoleAPICalledEventType;
2209
- ((ConsoleAPICalledEventType2) => {
2210
- ConsoleAPICalledEventType2["Log"] = "log";
2211
- ConsoleAPICalledEventType2["Debug"] = "debug";
2212
- ConsoleAPICalledEventType2["Info"] = "info";
2213
- ConsoleAPICalledEventType2["Error"] = "error";
2214
- ConsoleAPICalledEventType2["Warning"] = "warning";
2215
- ConsoleAPICalledEventType2["Dir"] = "dir";
2216
- ConsoleAPICalledEventType2["DirXML"] = "dirxml";
2217
- ConsoleAPICalledEventType2["Table"] = "table";
2218
- ConsoleAPICalledEventType2["Trace"] = "trace";
2219
- ConsoleAPICalledEventType2["Clear"] = "clear";
2220
- ConsoleAPICalledEventType2["StartGroup"] = "startGroup";
2221
- ConsoleAPICalledEventType2["StartGroupCollapsed"] = "startGroupCollapsed";
2222
- ConsoleAPICalledEventType2["EndGroup"] = "endGroup";
2223
- ConsoleAPICalledEventType2["Assert"] = "assert";
2224
- ConsoleAPICalledEventType2["Profile"] = "profile";
2225
- ConsoleAPICalledEventType2["ProfileEnd"] = "profileEnd";
2226
- ConsoleAPICalledEventType2["Count"] = "count";
2227
- ConsoleAPICalledEventType2["TimeEnd"] = "timeEnd";
2228
- })(ConsoleAPICalledEventType = Runtime2.ConsoleAPICalledEventType || (Runtime2.ConsoleAPICalledEventType = {}));
2229
- })(Runtime || (Runtime = {}));
2230
- //# sourceMappingURL=protocol.js.map
1
+ // Copyright (c) 2020 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+ export {};
5
+ //# sourceMappingURL=protocol.js.map