@sdlcworks/components 0.0.21 → 0.0.22

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 (2) hide show
  1. package/dist/index.d.ts +2 -5
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -192,12 +192,9 @@ export type ConnectionHandlerCtx<S, ConnectorData, ConnectionType extends string
192
192
  };
193
193
  /**
194
194
  * Result returned by connection handlers.
195
- * Can return:
196
- * - A record mapping component names to their URIs
197
- * - A single URI string
198
- * - void if no URIs need to be returned
195
+ * Must return a record mapping component names to their URIs.
199
196
  */
200
- export type ConnectionHandlerResult = Record<string, PulumiOutput<string>> | PulumiOutput<string> | void;
197
+ export type ConnectionHandlerResult = Record<string, PulumiOutput<string>>;
201
198
  /**
202
199
  * A connection handler entry mapping a ConnectionInterface to its handler function.
203
200
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdlcworks/components",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "module": "dist/index.js",
5
5
  "files": [
6
6
  "dist"