appium 3.3.0 → 3.3.1

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 (196) hide show
  1. package/build/lib/appium.d.ts +147 -205
  2. package/build/lib/appium.d.ts.map +1 -1
  3. package/build/lib/appium.js +169 -282
  4. package/build/lib/appium.js.map +1 -1
  5. package/build/lib/bidi-commands.d.ts.map +1 -1
  6. package/build/lib/bidi-commands.js +11 -11
  7. package/build/lib/bidi-commands.js.map +1 -1
  8. package/build/lib/bootstrap/appium-initializer.d.ts +21 -0
  9. package/build/lib/bootstrap/appium-initializer.d.ts.map +1 -0
  10. package/build/lib/bootstrap/appium-initializer.js +146 -0
  11. package/build/lib/bootstrap/appium-initializer.js.map +1 -0
  12. package/build/lib/bootstrap/appium-main-runner.d.ts +22 -0
  13. package/build/lib/bootstrap/appium-main-runner.d.ts.map +1 -0
  14. package/build/lib/bootstrap/appium-main-runner.js +109 -0
  15. package/build/lib/bootstrap/appium-main-runner.js.map +1 -0
  16. package/build/lib/bootstrap/config-file.d.ts +37 -0
  17. package/build/lib/bootstrap/config-file.d.ts.map +1 -0
  18. package/build/lib/{config-file.js → bootstrap/config-file.js} +9 -26
  19. package/build/lib/bootstrap/config-file.js.map +1 -0
  20. package/build/lib/bootstrap/grid-v3-register.d.ts +20 -0
  21. package/build/lib/bootstrap/grid-v3-register.d.ts.map +1 -0
  22. package/build/lib/{grid-register.js → bootstrap/grid-v3-register.js} +28 -13
  23. package/build/lib/bootstrap/grid-v3-register.js.map +1 -0
  24. package/build/lib/bootstrap/init-types.d.ts +16 -0
  25. package/build/lib/bootstrap/init-types.d.ts.map +1 -0
  26. package/build/lib/bootstrap/init-types.js +3 -0
  27. package/build/lib/bootstrap/init-types.js.map +1 -0
  28. package/build/lib/bootstrap/main-helpers.d.ts +55 -0
  29. package/build/lib/bootstrap/main-helpers.d.ts.map +1 -0
  30. package/build/lib/bootstrap/main-helpers.js +187 -0
  31. package/build/lib/bootstrap/main-helpers.js.map +1 -0
  32. package/build/lib/bootstrap/node-helpers.d.ts +32 -0
  33. package/build/lib/bootstrap/node-helpers.d.ts.map +1 -0
  34. package/build/lib/bootstrap/node-helpers.js +201 -0
  35. package/build/lib/bootstrap/node-helpers.js.map +1 -0
  36. package/build/lib/bootstrap/startup-config.d.ts +22 -0
  37. package/build/lib/bootstrap/startup-config.d.ts.map +1 -0
  38. package/build/lib/bootstrap/startup-config.js +111 -0
  39. package/build/lib/bootstrap/startup-config.js.map +1 -0
  40. package/build/lib/cli/args.d.ts.map +1 -1
  41. package/build/lib/cli/args.js +9 -9
  42. package/build/lib/cli/args.js.map +1 -1
  43. package/build/lib/cli/extension-command.d.ts +95 -95
  44. package/build/lib/cli/extension-command.d.ts.map +1 -1
  45. package/build/lib/cli/extension-command.js +18 -18
  46. package/build/lib/cli/extension-command.js.map +1 -1
  47. package/build/lib/cli/extension.d.ts +1 -1
  48. package/build/lib/cli/extension.d.ts.map +1 -1
  49. package/build/lib/cli/extension.js +5 -5
  50. package/build/lib/cli/extension.js.map +1 -1
  51. package/build/lib/cli/parser.d.ts +8 -8
  52. package/build/lib/cli/parser.d.ts.map +1 -1
  53. package/build/lib/cli/parser.js +49 -49
  54. package/build/lib/cli/parser.js.map +1 -1
  55. package/build/lib/cli/setup-command.js +6 -6
  56. package/build/lib/cli/setup-command.js.map +1 -1
  57. package/build/lib/cli/utils.d.ts +17 -17
  58. package/build/lib/cli/utils.d.ts.map +1 -1
  59. package/build/lib/cli/utils.js +29 -29
  60. package/build/lib/cli/utils.js.map +1 -1
  61. package/build/lib/doctor/doctor.d.ts +2 -2
  62. package/build/lib/doctor/doctor.d.ts.map +1 -1
  63. package/build/lib/doctor/doctor.js +6 -6
  64. package/build/lib/doctor/doctor.js.map +1 -1
  65. package/build/lib/extension/driver-config.d.ts +18 -77
  66. package/build/lib/extension/driver-config.d.ts.map +1 -1
  67. package/build/lib/extension/driver-config.js +37 -125
  68. package/build/lib/extension/driver-config.js.map +1 -1
  69. package/build/lib/extension/extension-config.d.ts +103 -210
  70. package/build/lib/extension/extension-config.d.ts.map +1 -1
  71. package/build/lib/extension/extension-config.js +180 -342
  72. package/build/lib/extension/extension-config.js.map +1 -1
  73. package/build/lib/extension/index.d.ts +12 -29
  74. package/build/lib/extension/index.d.ts.map +1 -1
  75. package/build/lib/extension/index.js +33 -75
  76. package/build/lib/extension/index.js.map +1 -1
  77. package/build/lib/extension/manifest-migrations.d.ts +3 -20
  78. package/build/lib/extension/manifest-migrations.d.ts.map +1 -1
  79. package/build/lib/extension/manifest-migrations.js +20 -101
  80. package/build/lib/extension/manifest-migrations.js.map +1 -1
  81. package/build/lib/extension/manifest.d.ts +61 -107
  82. package/build/lib/extension/manifest.d.ts.map +1 -1
  83. package/build/lib/extension/manifest.js +181 -356
  84. package/build/lib/extension/manifest.js.map +1 -1
  85. package/build/lib/extension/package-changed.d.ts +1 -3
  86. package/build/lib/extension/package-changed.d.ts.map +1 -1
  87. package/build/lib/extension/package-changed.js +8 -15
  88. package/build/lib/extension/package-changed.js.map +1 -1
  89. package/build/lib/extension/plugin-config.d.ts +10 -52
  90. package/build/lib/extension/plugin-config.d.ts.map +1 -1
  91. package/build/lib/extension/plugin-config.js +11 -63
  92. package/build/lib/extension/plugin-config.js.map +1 -1
  93. package/build/lib/helpers/build.d.ts +22 -0
  94. package/build/lib/helpers/build.d.ts.map +1 -0
  95. package/build/lib/helpers/build.js +109 -0
  96. package/build/lib/helpers/build.js.map +1 -0
  97. package/build/lib/helpers/capability.d.ts +38 -0
  98. package/build/lib/helpers/capability.d.ts.map +1 -0
  99. package/build/lib/helpers/capability.js +128 -0
  100. package/build/lib/helpers/capability.js.map +1 -0
  101. package/build/lib/helpers/network.d.ts +14 -0
  102. package/build/lib/helpers/network.d.ts.map +1 -0
  103. package/build/lib/helpers/network.js +35 -0
  104. package/build/lib/helpers/network.js.map +1 -0
  105. package/build/lib/insecure-features.js +6 -6
  106. package/build/lib/insecure-features.js.map +1 -1
  107. package/build/lib/inspector-commands.d.ts +6 -0
  108. package/build/lib/inspector-commands.d.ts.map +1 -1
  109. package/build/lib/inspector-commands.js +6 -0
  110. package/build/lib/inspector-commands.js.map +1 -1
  111. package/build/lib/logger.d.ts +2 -3
  112. package/build/lib/logger.d.ts.map +1 -1
  113. package/build/lib/logger.js +2 -3
  114. package/build/lib/logger.js.map +1 -1
  115. package/build/lib/main.d.ts +15 -58
  116. package/build/lib/main.d.ts.map +1 -1
  117. package/build/lib/main.js +25 -425
  118. package/build/lib/main.js.map +1 -1
  119. package/build/lib/schema/cli-args-guards.d.ts +34 -0
  120. package/build/lib/schema/cli-args-guards.d.ts.map +1 -0
  121. package/build/lib/schema/cli-args-guards.js +49 -0
  122. package/build/lib/schema/cli-args-guards.js.map +1 -0
  123. package/build/lib/schema/cli-args.js +2 -2
  124. package/build/lib/schema/cli-args.js.map +1 -1
  125. package/build/lib/schema/format-errors.d.ts +28 -0
  126. package/build/lib/schema/format-errors.d.ts.map +1 -0
  127. package/build/lib/schema/format-errors.js +29 -0
  128. package/build/lib/schema/format-errors.js.map +1 -0
  129. package/build/lib/schema/index.d.ts +2 -0
  130. package/build/lib/schema/index.d.ts.map +1 -1
  131. package/build/lib/schema/index.js +2 -0
  132. package/build/lib/schema/index.js.map +1 -1
  133. package/build/lib/schema/schema.d.ts +15 -15
  134. package/build/lib/schema/schema.d.ts.map +1 -1
  135. package/build/lib/schema/schema.js +37 -37
  136. package/build/lib/schema/schema.js.map +1 -1
  137. package/build/lib/utils.d.ts +0 -81
  138. package/build/lib/utils.d.ts.map +1 -1
  139. package/build/lib/utils.js +1 -248
  140. package/build/lib/utils.js.map +1 -1
  141. package/lib/{appium.js → appium.ts} +297 -341
  142. package/lib/bidi-commands.ts +10 -14
  143. package/lib/bootstrap/appium-initializer.ts +212 -0
  144. package/lib/bootstrap/appium-main-runner.ts +172 -0
  145. package/lib/{config-file.ts → bootstrap/config-file.ts} +29 -63
  146. package/lib/{grid-register.ts → bootstrap/grid-v3-register.ts} +35 -35
  147. package/lib/bootstrap/init-types.ts +31 -0
  148. package/lib/bootstrap/main-helpers.ts +223 -0
  149. package/lib/bootstrap/node-helpers.ts +180 -0
  150. package/lib/bootstrap/startup-config.ts +143 -0
  151. package/lib/cli/args.ts +10 -10
  152. package/lib/cli/extension-command.ts +132 -132
  153. package/lib/cli/extension.ts +7 -7
  154. package/lib/cli/parser.ts +50 -50
  155. package/lib/cli/setup-command.ts +2 -2
  156. package/lib/cli/utils.ts +33 -33
  157. package/lib/doctor/doctor.ts +8 -8
  158. package/lib/extension/driver-config.ts +165 -0
  159. package/lib/extension/{extension-config.js → extension-config.ts} +291 -405
  160. package/lib/extension/index.ts +143 -0
  161. package/lib/extension/manifest-migrations.ts +57 -0
  162. package/lib/extension/manifest.ts +369 -0
  163. package/lib/extension/{package-changed.js → package-changed.ts} +9 -18
  164. package/lib/extension/plugin-config.ts +62 -0
  165. package/lib/helpers/build.ts +111 -0
  166. package/lib/helpers/capability.ts +171 -0
  167. package/lib/helpers/network.ts +30 -0
  168. package/lib/insecure-features.ts +1 -1
  169. package/lib/inspector-commands.ts +6 -1
  170. package/lib/{logger.js → logger.ts} +1 -2
  171. package/lib/main.ts +60 -0
  172. package/lib/schema/cli-args-guards.ts +67 -0
  173. package/lib/schema/cli-args.ts +1 -1
  174. package/lib/schema/format-errors.ts +43 -0
  175. package/lib/schema/index.ts +2 -0
  176. package/lib/schema/schema.ts +51 -52
  177. package/lib/utils.ts +0 -331
  178. package/package.json +12 -13
  179. package/scripts/autoinstall-extensions.js +3 -0
  180. package/build/lib/config-file.d.ts +0 -57
  181. package/build/lib/config-file.d.ts.map +0 -1
  182. package/build/lib/config-file.js.map +0 -1
  183. package/build/lib/config.d.ts +0 -68
  184. package/build/lib/config.d.ts.map +0 -1
  185. package/build/lib/config.js +0 -358
  186. package/build/lib/config.js.map +0 -1
  187. package/build/lib/grid-register.d.ts +0 -35
  188. package/build/lib/grid-register.d.ts.map +0 -1
  189. package/build/lib/grid-register.js.map +0 -1
  190. package/lib/config.ts +0 -377
  191. package/lib/extension/driver-config.js +0 -245
  192. package/lib/extension/index.js +0 -169
  193. package/lib/extension/manifest-migrations.js +0 -136
  194. package/lib/extension/manifest.js +0 -550
  195. package/lib/extension/plugin-config.js +0 -112
  196. package/lib/main.js +0 -545
@@ -1,147 +1,101 @@
1
+ import _ from 'lodash';
2
+ import type { ExtensionType } from '@appium/types';
3
+ import type { ExtManifest, ExtPackageJson, ExtRecord, ManifestData } from 'appium/types';
4
+ import { INSTALL_TYPE_DEV, INSTALL_TYPE_NPM } from './extension-config';
1
5
  /**
2
6
  * Handles reading & writing of extension config files.
3
7
  *
4
8
  * Only one instance of this class exists per value of `APPIUM_HOME`.
5
9
  */
6
- export class Manifest {
10
+ export declare class Manifest {
11
+ #private;
7
12
  /**
8
- * Returns a new or existing {@link Manifest} instance, based on the value of `appiumHome`.
13
+ * Returns the memoized manifest for an `APPIUM_HOME` directory (one instance per home).
9
14
  *
10
- * Maintains one instance per value of `appiumHome`.
15
+ * @param appiumHome - `APPIUM_HOME` path used as the cache key
11
16
  */
12
17
  static getInstance: ((appiumHome: string) => Manifest) & _.MemoizedFunction;
18
+ private constructor();
19
+ /** `APPIUM_HOME` directory this manifest is tied to. */
20
+ get appiumHome(): string;
13
21
  /**
14
- * Sets internal data to a fresh clone of {@link INITIAL_MANIFEST_DATA}
15
- *
16
- * Use {@link Manifest.getInstance} instead.
17
- * @param {string} appiumHome
18
- * @private
22
+ * Absolute path to the extension manifest file after {@link Manifest.read} or {@link Manifest.write} has resolved it.
23
+ * Before that, this is `undefined`.
19
24
  */
20
- private constructor();
25
+ get manifestPath(): string | undefined;
26
+ /** Schema revision of the in-memory manifest data (from YAML `schemaRev`). */
27
+ get schemaRev(): number;
21
28
  /**
22
- * Searches `APPIUM_HOME` for installed extensions and adds them to the manifest.
23
- * @param {boolean} hasAppiumDependency - This affects whether or not the "dev" `InstallType` is used
24
- * @returns {Promise<boolean>} `true` if any extensions were added, `false` otherwise.
29
+ * Returns the live installed-extension map for drivers or plugins (same object as stored in memory).
30
+ * Mutations affect the manifest until replaced by a new object (e.g. via `read()`); `setExtension` / `deleteExtension` update this record.
31
+ *
32
+ * @param extType - `"driver"` or `"plugin"`
25
33
  */
26
- syncWithInstalledExtensions(hasAppiumDependency?: boolean): Promise<boolean>;
34
+ getExtensionData<ExtType extends ExtensionType>(extType: ExtType): ExtRecord<ExtType>;
27
35
  /**
28
- * Returns `true` if driver with name `name` is registered.
29
- * @param {string} name - Driver name
30
- * @returns {boolean}
36
+ * Whether a driver with the given manifest key is present.
37
+ *
38
+ * @param name - Driver name as stored under `drivers` in the manifest
31
39
  */
32
40
  hasDriver(name: string): boolean;
33
41
  /**
34
- * Returns `true` if plugin with name `name` is registered.
35
- * @param {string} name - Plugin name
36
- * @returns {boolean}
42
+ * Whether a plugin with the given manifest key is present.
43
+ *
44
+ * @param name - Plugin name as stored under `plugins` in the manifest
37
45
  */
38
46
  hasPlugin(name: string): boolean;
39
47
  /**
40
- * Given a path to a `package.json`, add it as either a driver or plugin to the manifest.
48
+ * Loads manifest YAML from disk into memory, runs migration when needed, may sync with installed packages, and writes back if required.
49
+ * Concurrent calls while a read is in flight share the same in-flight work.
41
50
  *
42
- * @template {ExtensionType} ExtType
43
- * @param {ExtPackageJson<ExtType>} pkgJson
44
- * @param {string} pkgPath
45
- * @param {typeof INSTALL_TYPE_NPM | typeof INSTALL_TYPE_DEV} [installType]
46
- * @returns {boolean} - `true` if this method did anything.
51
+ * @returns The parsed in-memory manifest data
47
52
  */
48
- addExtensionFromPackage<ExtType extends ExtensionType>(pkgJson: ExtPackageJson<ExtType>, pkgPath: string, installType?: typeof INSTALL_TYPE_NPM | typeof INSTALL_TYPE_DEV): boolean;
53
+ read(): Promise<ManifestData>;
49
54
  /**
50
- * Adds an extension to the manifest as was installed by the `appium` CLI. The
51
- * `extData`, `extType`, and `extName` have already been determined.
55
+ * Serializes the current in-memory manifest to the resolved manifest path.
56
+ * Concurrent calls while a write is in flight share the same in-flight work.
52
57
  *
53
- * See {@link Manifest.addExtensionFromPackage} for adding an extension from an on-disk package.
54
- * @template {ExtensionType} ExtType
55
- * @param {ExtType} extType - `driver` or `plugin`
56
- * @param {string} extName - Name of extension
57
- * @param {ExtManifest<ExtType>} extData - Extension metadata
58
- * @returns {ExtManifest<ExtType>} A clone of `extData`, potentially with a mutated `appiumVersion` field
59
- */
60
- setExtension<ExtType extends ExtensionType>(extType: ExtType, extName: string, extData: ExtManifest<ExtType>): ExtManifest<ExtType>;
61
- /**
62
- * Sets the schema revision
63
- * @param {keyof import('./manifest-migrations').ManifestDataVersions} rev
64
- */
65
- setSchemaRev(rev: keyof import("./manifest-migrations").ManifestDataVersions): void;
66
- /**
67
- * Remove an extension from the manifest.
68
- * @param {ExtensionType} extType
69
- * @param {string} extName
58
+ * @returns `true` when the file was written successfully
70
59
  */
71
- deleteExtension(extType: ExtensionType, extName: string): void;
72
- /**
73
- * Returns the `APPIUM_HOME` path
74
- */
75
- get appiumHome(): string;
60
+ write(): Promise<boolean>;
76
61
  /**
77
- * Returns the path to the manifest file (`extensions.yaml`)
62
+ * Scans `APPIUM_HOME` (root and `node_modules`) for Appium extension packages and merges them into the manifest.
63
+ *
64
+ * @param hasAppiumDependency - When true and the root `package.json` depends on Appium, matching extensions use the `"dev"` install type
65
+ * @returns `true` if any extension entries changed, `false` otherwise
78
66
  */
79
- get manifestPath(): string;
67
+ syncWithInstalledExtensions(hasAppiumDependency?: boolean): Promise<boolean>;
80
68
  /**
81
- * Returns the schema rev of this manifest
69
+ * Builds manifest metadata from a `package.json` and registers it if it is a driver or plugin and the entry changed.
70
+ *
71
+ * @param pkgJson - Parsed extension `package.json`
72
+ * @param pkgPath - Path to that `package.json` (install path is derived from its directory)
73
+ * @param installType - How the package was discovered (`npm` vs `dev`)
74
+ * @returns `true` if the manifest was updated, `false` if unchanged or already matched
75
+ * @throws TypeError if the package is not a valid driver or plugin extension
82
76
  */
83
- get schemaRev(): number;
77
+ addExtensionFromPackage(pkgJson: ExtPackageJson<ExtensionType>, pkgPath: string, installType?: typeof INSTALL_TYPE_NPM | typeof INSTALL_TYPE_DEV): boolean;
84
78
  /**
85
- * Returns extension data for a particular type.
79
+ * Stores a deep-cloned copy of extension metadata under the given type and name.
86
80
  *
87
- * @template {ExtensionType} ExtType
88
- * @param {ExtType} extType
89
- * @returns {Readonly<ExtRecord<ExtType>>}
81
+ * @param extType - `"driver"` or `"plugin"`
82
+ * @param extName - Manifest key for the extension
83
+ * @param extData - Full extension entry to persist in memory
84
+ * @returns The cloned data now held in the manifest
90
85
  */
91
- getExtensionData<ExtType extends ExtensionType>(extType: ExtType): Readonly<ExtRecord<ExtType>>;
86
+ setExtension<ExtType extends ExtensionType>(extType: ExtType, extName: string, extData: ExtManifest<ExtType>): ExtManifest<ExtType>;
92
87
  /**
93
- * Reads manifest from disk and _overwrites_ the internal data.
94
- *
95
- * If the manifest does not exist on disk, an
96
- * {@link INITIAL_MANIFEST_DATA "empty"} manifest file will be created, as
97
- * well as its directory if needed.
88
+ * Updates the in-memory manifest schema revision (typically during migration).
98
89
  *
99
- * This will also, if necessary:
100
- * 1. perform a migration of the manifest data
101
- * 2. sync the manifest with extensions on-disk (kind of like "auto
102
- * discovery")
103
- * 3. write the manifest to disk.
104
- *
105
- * Only one read operation can happen at a time.
106
- *
107
- * @returns {Promise<ManifestData>} The data
90
+ * @param rev - New `schemaRev` value
108
91
  */
109
- read(): Promise<ManifestData>;
92
+ setSchemaRev(rev: number): void;
110
93
  /**
111
- * Writes the data if it need s writing.
94
+ * Removes an extension entry from the manifest data in memory (does not write to disk by itself).
112
95
  *
113
- * If the `schemaRev` prop needs updating, the file will be written.
114
- *
115
- * @todo If this becomes too much of a bottleneck, throttle it.
116
- * @returns {Promise<boolean>} Whether the data was written
96
+ * @param extType - `"driver"` or `"plugin"`
97
+ * @param extName - Manifest key to remove
117
98
  */
118
- write(): Promise<boolean>;
119
- #private;
99
+ deleteExtension(extType: ExtensionType, extName: string): void;
120
100
  }
121
- /**
122
- * Type of the string referring to a driver (typically as a key or type string)
123
- */
124
- export type DriverType = import("@appium/types").DriverType;
125
- /**
126
- * Type of the string referring to a plugin (typically as a key or type string)
127
- */
128
- export type PluginType = import("@appium/types").PluginType;
129
- export type SyncWithInstalledExtensionsOpts = {
130
- /**
131
- * - Maximum depth to recurse into subdirectories
132
- */
133
- depthLimit?: number | undefined;
134
- };
135
- export type ManifestData = import("appium/types").ManifestData;
136
- export type InternalMetadata = import("appium/types").InternalMetadata;
137
- export type ExtPackageJson<ExtType extends ExtensionType> = import("appium/types").ExtPackageJson<ExtType>;
138
- export type ExtManifest<ExtType extends ExtensionType> = import("appium/types").ExtManifest<ExtType>;
139
- export type ExtRecord<ExtType extends ExtensionType> = import("appium/types").ExtRecord<ExtType>;
140
- /**
141
- * Either `driver` or `plugin` rn
142
- */
143
- export type ExtensionType = import("@appium/types").ExtensionType;
144
- import { INSTALL_TYPE_NPM } from './extension-config';
145
- import { INSTALL_TYPE_DEV } from './extension-config';
146
- import _ from 'lodash';
147
101
  //# sourceMappingURL=manifest.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../lib/extension/manifest.js"],"names":[],"mappings":"AAmFA;;;;GAIG;AACH;IAwDE;;;;OAIG;IACH,kCAEa,MAAM,KACJ,QAAQ,uBAKrB;IAzBF;;;;;;OAMG;IACH,sBAGC;IAiBD;;;;OAIG;IACH,kDAHW,OAAO,GACL,OAAO,CAAC,OAAO,CAAC,CA8C5B;IAED;;;;OAIG;IACH,gBAHW,MAAM,GACJ,OAAO,CAInB;IAED;;;;OAIG;IACH,gBAHW,MAAM,GACJ,OAAO,CAInB;IAED;;;;;;;;OAQG;IACH,wBAN6B,OAAO,SAAtB,aAAc,WACjB,cAAc,CAAC,OAAO,CAAC,WACvB,MAAM,gBACN,OAAO,gBAAgB,GAAG,OAAO,gBAAgB,GAC/C,OAAO,CAkDnB;IAED;;;;;;;;;;OAUG;IACH,aAN6B,OAAO,SAAtB,aAAc,WACjB,OAAO,WACP,MAAM,WACN,WAAW,CAAC,OAAO,CAAC,GAClB,WAAW,CAAC,OAAO,CAAC,CAMhC;IAED;;;OAGG;IACH,kBAFW,MAAM,OAAO,uBAAuB,EAAE,oBAAoB,QAIpE;IAED;;;;OAIG;IACH,yBAHW,aAAa,WACb,MAAM,QAIhB;IAED;;OAEG;IACH,yBAEC;IAED;;OAEG;IACH,2BAEC;IAED;;OAEG;IACH,wBAEC;IAED;;;;;;OAMG;IACH,iBAJ6B,OAAO,SAAtB,aAAc,WACjB,OAAO,GACL,QAAQ,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAIxC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,QAFa,OAAO,CAAC,YAAY,CAAC,CA4EjC;IAyBD;;;;;;;OAOG;IACH,SAFa,OAAO,CAAC,OAAO,CAAC,CAiC5B;;CACF;;;;yBAIY,OAAO,eAAe,EAAE,UAAU;;;;yBAKlC,OAAO,eAAe,EAAE,UAAU;;;;;;;2BASlC,OAAO,cAAc,EAAE,YAAY;+BACnC,OAAO,cAAc,EAAE,gBAAgB;2BAIvB,OAAO,SAAtB,aAAc,IACf,OAAO,cAAc,EAAE,cAAc,CAAC,OAAO,CAAC;wBAI9B,OAAO,SAAtB,aAAc,IACf,OAAO,cAAc,EAAE,WAAW,CAAC,OAAO,CAAC;sBAI3B,OAAO,SAAtB,aAAc,IACf,OAAO,cAAc,EAAE,SAAS,CAAC,OAAO,CAAC;;;;4BAKzC,OAAO,eAAe,EAAE,aAAa;iCA1hBD,oBAAoB;iCAApB,oBAAoB;cAJvD,QAAQ"}
1
+ {"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../lib/extension/manifest.ts"],"names":[],"mappings":"AAEA,OAAO,CAAC,MAAM,QAAQ,CAAC;AAGvB,OAAO,KAAK,EAAa,aAAa,EAAa,MAAM,eAAe,CAAC;AACzE,OAAO,KAAK,EAAC,WAAW,EAAE,cAAc,EAAE,SAAS,EAAoB,YAAY,EAAC,MAAM,cAAc,CAAC;AAEzG,OAAO,EAAC,gBAAgB,EAAE,gBAAgB,EAAC,MAAM,oBAAoB,CAAC;AAatE;;;;GAIG;AACH,qBAAa,QAAQ;;IACnB;;;;OAIG;IACH,MAAM,CAAC,WAAW,gBAA0B,MAAM,KAAG,QAAQ,uBAA8B;IAQ3F,OAAO;IAKP,wDAAwD;IACxD,IAAI,UAAU,IAAI,MAAM,CAEvB;IAED;;;OAGG;IACH,IAAI,YAAY,IAAI,MAAM,GAAG,SAAS,CAErC;IAED,8EAA8E;IAC9E,IAAI,SAAS,IAAI,MAAM,CAEtB;IAED;;;;;OAKG;IACH,gBAAgB,CAAC,OAAO,SAAS,aAAa,EAAE,OAAO,EAAE,OAAO,GAAG,SAAS,CAAC,OAAO,CAAC;IAKrF;;;;OAIG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAIhC;;;;OAIG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAIhC;;;;;OAKG;IACG,IAAI,IAAI,OAAO,CAAC,YAAY,CAAC;IAoDnC;;;;;OAKG;IACG,KAAK,IAAI,OAAO,CAAC,OAAO,CAAC;IAiC/B;;;;;OAKG;IACG,2BAA2B,CAAC,mBAAmB,UAAQ,GAAG,OAAO,CAAC,OAAO,CAAC;IAiChF;;;;;;;;OAQG;IACH,uBAAuB,CACrB,OAAO,EAAE,cAAc,CAAC,aAAa,CAAC,EACtC,OAAO,EAAE,MAAM,EACf,WAAW,GAAE,OAAO,gBAAgB,GAAG,OAAO,gBAAmC,GAChF,OAAO;IAyCV;;;;;;;OAOG;IACH,YAAY,CAAC,OAAO,SAAS,aAAa,EACxC,OAAO,EAAE,OAAO,EAChB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,WAAW,CAAC,OAAO,CAAC,GAC5B,WAAW,CAAC,OAAO,CAAC;IAUvB;;;;OAIG;IACH,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAI/B;;;;;OAKG;IACH,eAAe,CAAC,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;CAwB/D"}