lucid-package 0.0.72 → 0.0.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-package",
3
- "version": "0.0.72",
3
+ "version": "0.0.74",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/package.js CHANGED
@@ -20,7 +20,7 @@ function currentlyInPackage() {
20
20
  return (fsOld.existsSync('editorextensions') && fsOld.existsSync('shapelibraries') && fsOld.existsSync('manifest.json'));
21
21
  }
22
22
  exports.currentlyInPackage = currentlyInPackage;
23
- const allScopes = new Set(['DOWNLOAD', 'NETWORK', 'READ', 'SHOW_MODAL', 'CUSTOM_UI', 'WRITE', 'USER_INFO']);
23
+ const allScopes = new Set(['DOWNLOAD', 'NETWORK', 'READ', 'SHOW_MODAL', 'CUSTOM_UI', 'WRITE', 'USER_INFO', 'OAUTH_TOKEN']);
24
24
  const uuidRegex = /^[a-f\d]{8}-[a-f\d]{4}-[a-f\d]{4}-[a-f\d]{4}-[a-f\d]{12}$/i;
25
25
  async function modifyManifest(callback, manifestOverrideEnv) {
26
26
  const manifest = await (0, packagemanifest_1.readManifest)(manifestOverrideEnv);
@@ -2,7 +2,7 @@ import { SupportedProduct } from './supportedproduct';
2
2
  export declare enum SettingType {
3
3
  STRING = "string"
4
4
  }
5
- export declare type PackageManifest = {
5
+ export type PackageManifest = {
6
6
  'id'?: string;
7
7
  'version': string;
8
8
  'extensions'?: {