@easyling/sanity-connector 0.0.2 → 0.0.3

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.
@@ -55,6 +55,13 @@ export declare class OAuthServiceManager {
55
55
  * @returns Promise that resolves when initialization is complete
56
56
  */
57
57
  initialize(): Promise<void>;
58
+ /**
59
+ * Set up listener for configuration changes
60
+ *
61
+ * Monitors the unified configuration document for changes and reloads
62
+ * the configuration automatically.
63
+ */
64
+ private setupConfigListener;
58
65
  /**
59
66
  * Load OAuth configuration from storage
60
67
  * Requirements: 9.1, 9.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyling/sanity-connector",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A Sanity Studio plugin that enables document translation with support for single and bulk operations. Extracts document content as HTML and prepares translation requests for external services.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "build": "npm run clean && webpack build && tsc --project tsconfig.types.json",
23
- "build:simple": "npm run clean && tsc",
23
+ "build:simple": "npm run clean && tsc --project tsconfig.bundle.json",
24
24
  "build:watch": "tsc --watch",
25
25
  "clean": "rimraf dist dist-types",
26
26
  "dev": "npm run build:watch",