@temporalio/common 1.11.2 → 1.11.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.
@@ -32,14 +32,15 @@ export declare function joinProtoHostPort(components: ProtoHostPort): string;
32
32
  * Parse the address for the gRPC endpoint of a Temporal server.
33
33
  *
34
34
  * - The URI may only contain a hostname and a port.
35
- * - Port is optional; it defaults to 7233.
35
+ * - Port is optional; if not specified, set it to `defaultPort`.
36
36
  *
37
- * Examples of valid URIs:
37
+ * Examples of valid URIs (assuming `defaultPort` is 7233):
38
38
  *
39
39
  * ```
40
- * 127.0.0.1:7233 => { host: '192.168.0.1', port: 7233 }
40
+ * 127.0.0.1 => { host: '127.0.0.1', port: 7233 }
41
+ * 192.168.0.1:7233 => { host: '192.168.0.1', port: 7233 }
41
42
  * my.temporal.service.com:7233 => { host: 'my.temporal.service.com', port: 7233 }
42
43
  * [::ffff:192.0.2.128]:8080 => { host: '[::ffff:192.0.2.128]', port: 8080 }
43
44
  * ```
44
45
  */
45
- export declare function normalizeTemporalGrpcEndpointAddress(uri: string): string;
46
+ export declare function normalizeGrpcEndpointAddress(uri: string, defaultPort: number): string;
@@ -9,7 +9,7 @@
9
9
  * simply using `split(':')` breaks on IPv6 addresses. Hence these helpers.
10
10
  */
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.normalizeTemporalGrpcEndpointAddress = exports.joinProtoHostPort = exports.splitProtoHostPort = void 0;
12
+ exports.normalizeGrpcEndpointAddress = exports.joinProtoHostPort = exports.splitProtoHostPort = void 0;
13
13
  /**
14
14
  * Scheme. Requires but doesn't capture the ':' or '://' separator that follows.
15
15
  * e.g. `http:` will be captured as 'http'.
@@ -70,23 +70,24 @@ exports.joinProtoHostPort = joinProtoHostPort;
70
70
  * Parse the address for the gRPC endpoint of a Temporal server.
71
71
  *
72
72
  * - The URI may only contain a hostname and a port.
73
- * - Port is optional; it defaults to 7233.
73
+ * - Port is optional; if not specified, set it to `defaultPort`.
74
74
  *
75
- * Examples of valid URIs:
75
+ * Examples of valid URIs (assuming `defaultPort` is 7233):
76
76
  *
77
77
  * ```
78
- * 127.0.0.1:7233 => { host: '192.168.0.1', port: 7233 }
78
+ * 127.0.0.1 => { host: '127.0.0.1', port: 7233 }
79
+ * 192.168.0.1:7233 => { host: '192.168.0.1', port: 7233 }
79
80
  * my.temporal.service.com:7233 => { host: 'my.temporal.service.com', port: 7233 }
80
81
  * [::ffff:192.0.2.128]:8080 => { host: '[::ffff:192.0.2.128]', port: 8080 }
81
82
  * ```
82
83
  */
83
- function normalizeTemporalGrpcEndpointAddress(uri) {
84
+ function normalizeGrpcEndpointAddress(uri, defaultPort) {
84
85
  const splitted = splitProtoHostPort(uri);
85
86
  if (!splitted || splitted.scheme !== undefined) {
86
87
  throw new TypeError(`Invalid address for Temporal gRPC endpoint: expected URI of the form 'hostname' or 'hostname:port'; got '${uri}'`);
87
88
  }
88
- splitted.port ??= 7233;
89
+ splitted.port ??= defaultPort;
89
90
  return joinProtoHostPort(splitted);
90
91
  }
91
- exports.normalizeTemporalGrpcEndpointAddress = normalizeTemporalGrpcEndpointAddress;
92
+ exports.normalizeGrpcEndpointAddress = normalizeGrpcEndpointAddress;
92
93
  //# sourceMappingURL=parse-host-uri.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"parse-host-uri.js","sourceRoot":"","sources":["../../src/internal-non-workflow/parse-host-uri.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;AAEH;;;GAGG;AACH,MAAM,MAAM,GAAG,2CAA2C,CAAC;AAE3D;;;GAGG;AACH,MAAM,YAAY,GAAG,gCAAgC,CAAC;AAEtD;;;GAGG;AACH,MAAM,YAAY,GAAG,mCAAmC,CAAC;AAEzD,oCAAoC;AACpC,mCAAmC;AACnC,MAAM,WAAW,GAAG,YAAY,CAAC;AAEjC,MAAM,QAAQ,GAAG,MAAM,YAAY,IAAI,YAAY,IAAI,WAAW,GAAG,CAAC;AAEtE,sEAAsE;AACtE,mDAAmD;AACnD,MAAM,IAAI,GAAG,oBAAoB,CAAC;AAElC,MAAM,kBAAkB,GAAG,IAAI,MAAM,CAAC,IAAI,MAAM,iBAAiB,QAAQ,IAAI,IAAI,IAAI,CAAC,CAAC;AAQvF;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,GAAW;IAC5C,MAAM,KAAK,GAAG,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAC3C,IAAI,CAAC,KAAK,EAAE,MAAM;QAAE,OAAO,SAAS,CAAC;IACrC,OAAO;QACL,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM;QAC3B,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,MAAM,CAAC,QAAQ;QACpD,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;KAC9E,CAAC;AACJ,CAAC;AARD,gDAQC;AAED,SAAgB,iBAAiB,CAAC,UAAyB;IACzD,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,UAAU,CAAC;IAC9C,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9C,MAAM,YAAY,GAAG,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,QAAQ,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC;IACzE,MAAM,QAAQ,GAAG,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACtD,OAAO,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,EAAE,CAAC;AACnD,CAAC;AAND,8CAMC;AAED;;;;;;;;;;;;;GAaG;AACH,SAAgB,oCAAoC,CAAC,GAAW;IAC9D,MAAM,QAAQ,GAAG,kBAAkB,CAAC,GAAG,CAAC,CAAC;IACzC,IAAI,CAAC,QAAQ,IAAI,QAAQ,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC;QAC/C,MAAM,IAAI,SAAS,CACjB,4GAA4G,GAAG,GAAG,CACnH,CAAC;IACJ,CAAC;IACD,QAAQ,CAAC,IAAI,KAAK,IAAI,CAAC;IACvB,OAAO,iBAAiB,CAAC,QAAQ,CAAC,CAAC;AACrC,CAAC;AATD,oFASC"}
1
+ {"version":3,"file":"parse-host-uri.js","sourceRoot":"","sources":["../../src/internal-non-workflow/parse-host-uri.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;AAEH;;;GAGG;AACH,MAAM,MAAM,GAAG,2CAA2C,CAAC;AAE3D;;;GAGG;AACH,MAAM,YAAY,GAAG,gCAAgC,CAAC;AAEtD;;;GAGG;AACH,MAAM,YAAY,GAAG,mCAAmC,CAAC;AAEzD,oCAAoC;AACpC,mCAAmC;AACnC,MAAM,WAAW,GAAG,YAAY,CAAC;AAEjC,MAAM,QAAQ,GAAG,MAAM,YAAY,IAAI,YAAY,IAAI,WAAW,GAAG,CAAC;AAEtE,sEAAsE;AACtE,mDAAmD;AACnD,MAAM,IAAI,GAAG,oBAAoB,CAAC;AAElC,MAAM,kBAAkB,GAAG,IAAI,MAAM,CAAC,IAAI,MAAM,iBAAiB,QAAQ,IAAI,IAAI,IAAI,CAAC,CAAC;AAQvF;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,GAAW;IAC5C,MAAM,KAAK,GAAG,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAC3C,IAAI,CAAC,KAAK,EAAE,MAAM;QAAE,OAAO,SAAS,CAAC;IACrC,OAAO;QACL,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM;QAC3B,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,MAAM,CAAC,QAAQ;QACpD,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;KAC9E,CAAC;AACJ,CAAC;AARD,gDAQC;AAED,SAAgB,iBAAiB,CAAC,UAAyB;IACzD,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,UAAU,CAAC;IAC9C,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;IAC9C,MAAM,YAAY,GAAG,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,QAAQ,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC;IACzE,MAAM,QAAQ,GAAG,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACtD,OAAO,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,EAAE,CAAC;AACnD,CAAC;AAND,8CAMC;AAED;;;;;;;;;;;;;;GAcG;AACH,SAAgB,4BAA4B,CAAC,GAAW,EAAE,WAAmB;IAC3E,MAAM,QAAQ,GAAG,kBAAkB,CAAC,GAAG,CAAC,CAAC;IACzC,IAAI,CAAC,QAAQ,IAAI,QAAQ,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC;QAC/C,MAAM,IAAI,SAAS,CACjB,4GAA4G,GAAG,GAAG,CACnH,CAAC;IACJ,CAAC;IACD,QAAQ,CAAC,IAAI,KAAK,WAAW,CAAC;IAC9B,OAAO,iBAAiB,CAAC,QAAQ,CAAC,CAAC;AACrC,CAAC;AATD,oEASC"}
@@ -27,8 +27,8 @@ export interface TLSConfig {
27
27
  * Pass a falsy value to use a non-encrypted connection or `true` or `{}` to
28
28
  * connect with TLS without any customization.
29
29
  */
30
- export type TLSConfigOption = TLSConfig | boolean | null;
30
+ export type TLSConfigOption = TLSConfig | boolean | undefined | null;
31
31
  /**
32
32
  * Normalize {@link TLSConfigOption} by turning false and null to undefined and true to and empty object
33
33
  */
34
- export declare function normalizeTlsConfig(tls?: TLSConfigOption): TLSConfig | undefined;
34
+ export declare function normalizeTlsConfig(tls: TLSConfigOption): TLSConfig | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"tls-config.js","sourceRoot":"","sources":["../../src/internal-non-workflow/tls-config.ts"],"names":[],"mappings":";;;AA+BA;;GAEG;AACH,SAAgB,kBAAkB,CAAC,GAAqB;IACtD,OAAO,OAAO,GAAG,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;AAC3F,CAAC;AAFD,gDAEC"}
1
+ {"version":3,"file":"tls-config.js","sourceRoot":"","sources":["../../src/internal-non-workflow/tls-config.ts"],"names":[],"mappings":";;;AA+BA;;GAEG;AACH,SAAgB,kBAAkB,CAAC,GAAoB;IACrD,OAAO,OAAO,GAAG,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;AAC3F,CAAC;AAFD,gDAEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temporalio/common",
3
- "version": "1.11.2",
3
+ "version": "1.11.3",
4
4
  "description": "Common library for code that's used across the Client, Worker, and/or Workflow",
5
5
  "main": "lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "author": "Temporal Technologies Inc. <sdk@temporal.io>",
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@temporalio/proto": "1.11.2",
15
+ "@temporalio/proto": "1.11.3",
16
16
  "long": "^5.2.3",
17
17
  "ms": "^3.0.0-canary.1",
18
18
  "proto3-json-serializer": "^2.0.0"
@@ -36,5 +36,5 @@
36
36
  "src",
37
37
  "lib"
38
38
  ],
39
- "gitHead": "e78b4f71236ccd3227e674bad68439e961fec639"
39
+ "gitHead": "4c90f9d844710abf7e085662373aac226ec09017"
40
40
  }
@@ -80,23 +80,24 @@ export function joinProtoHostPort(components: ProtoHostPort): string {
80
80
  * Parse the address for the gRPC endpoint of a Temporal server.
81
81
  *
82
82
  * - The URI may only contain a hostname and a port.
83
- * - Port is optional; it defaults to 7233.
83
+ * - Port is optional; if not specified, set it to `defaultPort`.
84
84
  *
85
- * Examples of valid URIs:
85
+ * Examples of valid URIs (assuming `defaultPort` is 7233):
86
86
  *
87
87
  * ```
88
- * 127.0.0.1:7233 => { host: '192.168.0.1', port: 7233 }
88
+ * 127.0.0.1 => { host: '127.0.0.1', port: 7233 }
89
+ * 192.168.0.1:7233 => { host: '192.168.0.1', port: 7233 }
89
90
  * my.temporal.service.com:7233 => { host: 'my.temporal.service.com', port: 7233 }
90
91
  * [::ffff:192.0.2.128]:8080 => { host: '[::ffff:192.0.2.128]', port: 8080 }
91
92
  * ```
92
93
  */
93
- export function normalizeTemporalGrpcEndpointAddress(uri: string): string {
94
+ export function normalizeGrpcEndpointAddress(uri: string, defaultPort: number): string {
94
95
  const splitted = splitProtoHostPort(uri);
95
96
  if (!splitted || splitted.scheme !== undefined) {
96
97
  throw new TypeError(
97
98
  `Invalid address for Temporal gRPC endpoint: expected URI of the form 'hostname' or 'hostname:port'; got '${uri}'`
98
99
  );
99
100
  }
100
- splitted.port ??= 7233;
101
+ splitted.port ??= defaultPort;
101
102
  return joinProtoHostPort(splitted);
102
103
  }
@@ -27,11 +27,11 @@ export interface TLSConfig {
27
27
  * Pass a falsy value to use a non-encrypted connection or `true` or `{}` to
28
28
  * connect with TLS without any customization.
29
29
  */
30
- export type TLSConfigOption = TLSConfig | boolean | null;
30
+ export type TLSConfigOption = TLSConfig | boolean | undefined | null;
31
31
 
32
32
  /**
33
33
  * Normalize {@link TLSConfigOption} by turning false and null to undefined and true to and empty object
34
34
  */
35
- export function normalizeTlsConfig(tls?: TLSConfigOption): TLSConfig | undefined {
35
+ export function normalizeTlsConfig(tls: TLSConfigOption): TLSConfig | undefined {
36
36
  return typeof tls === 'object' ? (tls === null ? undefined : tls) : tls ? {} : undefined;
37
37
  }