@temporalio/common 0.17.2 → 0.19.0-rc.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 (97) hide show
  1. package/README.md +5 -11
  2. package/lib/converter/data-converter.d.ts +34 -62
  3. package/lib/converter/data-converter.js +0 -101
  4. package/lib/converter/data-converter.js.map +1 -1
  5. package/lib/{encoding.d.ts → converter/encoding.d.ts} +0 -0
  6. package/lib/{encoding.js → converter/encoding.js} +0 -0
  7. package/lib/converter/encoding.js.map +1 -0
  8. package/lib/converter/patch-protobuf-root.d.ts +8 -0
  9. package/lib/converter/patch-protobuf-root.js +43 -0
  10. package/lib/converter/patch-protobuf-root.js.map +1 -0
  11. package/lib/converter/payload-codec.d.ts +27 -0
  12. package/lib/converter/payload-codec.js +11 -0
  13. package/lib/converter/payload-codec.js.map +1 -0
  14. package/lib/converter/payload-converter.d.ts +63 -62
  15. package/lib/converter/payload-converter.js +113 -68
  16. package/lib/converter/payload-converter.js.map +1 -1
  17. package/lib/converter/payload-converters.d.ts +31 -0
  18. package/lib/converter/payload-converters.js +85 -0
  19. package/lib/converter/payload-converters.js.map +1 -0
  20. package/lib/converter/protobuf-payload-converters.d.ts +53 -0
  21. package/lib/converter/protobuf-payload-converters.js +159 -0
  22. package/lib/converter/protobuf-payload-converters.js.map +1 -0
  23. package/lib/converter/types.d.ts +2 -0
  24. package/lib/converter/types.js +3 -2
  25. package/lib/converter/types.js.map +1 -1
  26. package/lib/failure.d.ts +6 -6
  27. package/lib/failure.js +37 -35
  28. package/lib/failure.js.map +1 -1
  29. package/lib/index.d.ts +9 -11
  30. package/lib/index.js +12 -16
  31. package/lib/index.js.map +1 -1
  32. package/lib/protobufs.d.ts +13 -0
  33. package/lib/protobufs.js +31 -0
  34. package/lib/protobufs.js.map +1 -0
  35. package/package.json +11 -8
  36. package/src/converter/data-converter.ts +35 -176
  37. package/src/{encoding.ts → converter/encoding.ts} +0 -0
  38. package/src/converter/patch-protobuf-root.ts +49 -0
  39. package/src/converter/payload-codec.ts +30 -0
  40. package/src/converter/payload-converter.ts +122 -102
  41. package/src/converter/payload-converters.ts +89 -0
  42. package/src/converter/protobuf-payload-converters.ts +192 -0
  43. package/src/converter/types.ts +4 -1
  44. package/src/failure.ts +44 -43
  45. package/src/index.ts +9 -11
  46. package/src/protobufs.ts +15 -0
  47. package/tsconfig.json +2 -2
  48. package/tsconfig.tsbuildinfo +1 -1
  49. package/lib/activity-options.d.ts +0 -81
  50. package/lib/activity-options.js +0 -14
  51. package/lib/activity-options.js.map +0 -1
  52. package/lib/encoding.js.map +0 -1
  53. package/lib/errors.d.ts +0 -16
  54. package/lib/errors.js +0 -41
  55. package/lib/errors.js.map +0 -1
  56. package/lib/interceptors.d.ts +0 -18
  57. package/lib/interceptors.js +0 -24
  58. package/lib/interceptors.js.map +0 -1
  59. package/lib/interfaces.d.ts +0 -31
  60. package/lib/interfaces.js +0 -3
  61. package/lib/interfaces.js.map +0 -1
  62. package/lib/otel.d.ts +0 -26
  63. package/lib/otel.js +0 -82
  64. package/lib/otel.js.map +0 -1
  65. package/lib/retry-policy.d.ts +0 -43
  66. package/lib/retry-policy.js +0 -36
  67. package/lib/retry-policy.js.map +0 -1
  68. package/lib/time.d.ts +0 -16
  69. package/lib/time.js +0 -73
  70. package/lib/time.js.map +0 -1
  71. package/lib/tls-config.d.ts +0 -32
  72. package/lib/tls-config.js +0 -11
  73. package/lib/tls-config.js.map +0 -1
  74. package/lib/type-helpers.d.ts +0 -8
  75. package/lib/type-helpers.js +0 -9
  76. package/lib/type-helpers.js.map +0 -1
  77. package/lib/utils.d.ts +0 -4
  78. package/lib/utils.js +0 -11
  79. package/lib/utils.js.map +0 -1
  80. package/lib/workflow-handle.d.ts +0 -27
  81. package/lib/workflow-handle.js +0 -3
  82. package/lib/workflow-handle.js.map +0 -1
  83. package/lib/workflow-options.d.ts +0 -91
  84. package/lib/workflow-options.js +0 -26
  85. package/lib/workflow-options.js.map +0 -1
  86. package/src/activity-options.ts +0 -97
  87. package/src/errors.ts +0 -27
  88. package/src/interceptors.ts +0 -32
  89. package/src/interfaces.ts +0 -37
  90. package/src/otel.ts +0 -61
  91. package/src/retry-policy.ts +0 -73
  92. package/src/time.ts +0 -72
  93. package/src/tls-config.ts +0 -35
  94. package/src/type-helpers.ts +0 -11
  95. package/src/utils.ts +0 -6
  96. package/src/workflow-handle.ts +0 -30
  97. package/src/workflow-options.ts +0 -127
package/src/failure.ts CHANGED
@@ -1,9 +1,10 @@
1
+ import { checkExtends, hasOwnProperties, isRecord } from '@temporalio/internal-workflow-common';
1
2
  import type { temporal } from '@temporalio/proto/lib/coresdk';
2
- import { DataConverter, arrayFromPayloads } from './converter/data-converter';
3
- import { checkExtends } from './type-helpers';
3
+ import { arrayFromPayloads, fromPayloadsAtIndex, PayloadConverter, toPayloads } from './converter/payload-converter';
4
4
 
5
5
  export const FAILURE_SOURCE = 'TypeScriptSDK';
6
6
  export type ProtoFailure = temporal.api.failure.v1.IFailure;
7
+
7
8
  // Avoid importing the proto implementation to reduce workflow bundle size
8
9
  // Copied from temporal.api.enums.v1.TimeoutType
9
10
  export enum TimeoutType {
@@ -210,17 +211,17 @@ export class ChildWorkflowFailure extends TemporalFailure {
210
211
  /**
211
212
  * Converts an error to a Failure proto message if defined or returns undefined
212
213
  */
213
- export async function optionalErrorToOptionalFailure(
214
+ export function optionalErrorToOptionalFailure(
214
215
  err: unknown,
215
- dataConverter: DataConverter
216
- ): Promise<ProtoFailure | undefined> {
217
- return err ? await errorToFailure(err, dataConverter) : undefined;
216
+ payloadConverter: PayloadConverter
217
+ ): ProtoFailure | undefined {
218
+ return err ? errorToFailure(err, payloadConverter) : undefined;
218
219
  }
219
220
 
220
221
  /**
221
222
  * Stack traces will be cutoff when on of these patterns is matched
222
223
  */
223
- const CUTTOFF_STACK_PATTERNS = [
224
+ const CUTOFF_STACK_PATTERNS = [
224
225
  /** Activity execution */
225
226
  /\s+at Activity\.execute \(.*[\\/]worker[\\/](?:src|lib)[\\/]activity\.[jt]s:\d+:\d+\)/,
226
227
  /** Workflow activation */
@@ -234,7 +235,7 @@ export function cutoffStackTrace(stack?: string): string {
234
235
  const lines = (stack ?? '').split(/\r?\n/);
235
236
  const acc = Array<string>();
236
237
  lineLoop: for (const line of lines) {
237
- for (const pattern of CUTTOFF_STACK_PATTERNS) {
238
+ for (const pattern of CUTOFF_STACK_PATTERNS) {
238
239
  if (pattern.test(line)) break lineLoop;
239
240
  }
240
241
  acc.push(line);
@@ -245,14 +246,14 @@ export function cutoffStackTrace(stack?: string): string {
245
246
  /**
246
247
  * Converts a caught error to a Failure proto message
247
248
  */
248
- export async function errorToFailure(err: unknown, dataConverter: DataConverter): Promise<ProtoFailure> {
249
+ export function errorToFailure(err: unknown, payloadConverter: PayloadConverter): ProtoFailure {
249
250
  if (err instanceof TemporalFailure) {
250
251
  if (err.failure) return err.failure;
251
252
 
252
253
  const base = {
253
254
  message: err.message,
254
255
  stackTrace: cutoffStackTrace(err.stack),
255
- cause: await optionalErrorToOptionalFailure(err.cause, dataConverter),
256
+ cause: optionalErrorToOptionalFailure(err.cause, payloadConverter),
256
257
  source: FAILURE_SOURCE,
257
258
  };
258
259
  if (err instanceof ActivityFailure) {
@@ -281,9 +282,7 @@ export async function errorToFailure(err: unknown, dataConverter: DataConverter)
281
282
  type: err.type,
282
283
  nonRetryable: err.nonRetryable,
283
284
  details:
284
- err.details && err.details.length
285
- ? { payloads: await dataConverter.toPayloads(...err.details) }
286
- : undefined,
285
+ err.details && err.details.length ? { payloads: toPayloads(payloadConverter, ...err.details) } : undefined,
287
286
  },
288
287
  };
289
288
  }
@@ -292,9 +291,7 @@ export async function errorToFailure(err: unknown, dataConverter: DataConverter)
292
291
  ...base,
293
292
  canceledFailureInfo: {
294
293
  details:
295
- err.details && err.details.length
296
- ? { payloads: await dataConverter.toPayloads(...err.details) }
297
- : undefined,
294
+ err.details && err.details.length ? { payloads: toPayloads(payloadConverter, ...err.details) } : undefined,
298
295
  },
299
296
  };
300
297
  }
@@ -304,7 +301,7 @@ export async function errorToFailure(err: unknown, dataConverter: DataConverter)
304
301
  timeoutFailureInfo: {
305
302
  timeoutType: err.timeoutType,
306
303
  lastHeartbeatDetails: err.lastHeartbeatDetails
307
- ? { payloads: await dataConverter.toPayloads(err.lastHeartbeatDetails) }
304
+ ? { payloads: toPayloads(payloadConverter, err.lastHeartbeatDetails) }
308
305
  : undefined,
309
306
  },
310
307
  };
@@ -329,15 +326,22 @@ export async function errorToFailure(err: unknown, dataConverter: DataConverter)
329
326
  source: FAILURE_SOURCE,
330
327
  };
331
328
 
332
- if (err instanceof Error) {
333
- return { ...base, message: err.message ?? '', stackTrace: cutoffStackTrace(err.stack) };
329
+ if (isRecord(err) && hasOwnProperties(err, ['message', 'stack'])) {
330
+ return {
331
+ ...base,
332
+ message: String(err.message) ?? '',
333
+ stackTrace: cutoffStackTrace(String(err.stack)),
334
+ cause: optionalErrorToOptionalFailure(err.cause, payloadConverter),
335
+ };
334
336
  }
335
337
 
338
+ const recommendation = ` [A non-Error value was thrown from your code. We recommend throwing Error objects so that we can provide a stack trace.]`;
339
+
336
340
  if (typeof err === 'string') {
337
- return { ...base, message: err };
341
+ return { ...base, message: err + recommendation };
338
342
  }
339
343
 
340
- return { ...base, message: String(err) };
344
+ return { ...base, message: JSON.stringify(err) + recommendation };
341
345
  }
342
346
 
343
347
  /**
@@ -364,11 +368,11 @@ export function ensureTemporalFailure(err: unknown): TemporalFailure {
364
368
  /**
365
369
  * Converts a Failure proto message to a JS Error object if defined or returns undefined.
366
370
  */
367
- export async function optionalFailureToOptionalError(
371
+ export function optionalFailureToOptionalError(
368
372
  failure: ProtoFailure | undefined | null,
369
- dataConverter: DataConverter
370
- ): Promise<TemporalFailure | undefined> {
371
- return failure ? await failureToError(failure, dataConverter) : undefined;
373
+ payloadConverter: PayloadConverter
374
+ ): TemporalFailure | undefined {
375
+ return failure ? failureToError(failure, payloadConverter) : undefined;
372
376
  }
373
377
 
374
378
  /**
@@ -376,44 +380,41 @@ export async function optionalFailureToOptionalError(
376
380
  *
377
381
  * Does not set common properties, that is done in {@link failureToError}.
378
382
  */
379
- export async function failureToErrorInner(
380
- failure: ProtoFailure,
381
- dataConverter: DataConverter
382
- ): Promise<TemporalFailure> {
383
+ export function failureToErrorInner(failure: ProtoFailure, payloadConverter: PayloadConverter): TemporalFailure {
383
384
  if (failure.applicationFailureInfo) {
384
385
  return new ApplicationFailure(
385
386
  failure.message ?? undefined,
386
387
  failure.applicationFailureInfo.type,
387
388
  Boolean(failure.applicationFailureInfo.nonRetryable),
388
- await arrayFromPayloads(dataConverter, failure.applicationFailureInfo.details?.payloads),
389
- await optionalFailureToOptionalError(failure.cause, dataConverter)
389
+ arrayFromPayloads(payloadConverter, failure.applicationFailureInfo.details?.payloads),
390
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
390
391
  );
391
392
  }
392
393
  if (failure.serverFailureInfo) {
393
394
  return new ServerFailure(
394
395
  failure.message ?? undefined,
395
396
  Boolean(failure.serverFailureInfo.nonRetryable),
396
- await optionalFailureToOptionalError(failure.cause, dataConverter)
397
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
397
398
  );
398
399
  }
399
400
  if (failure.timeoutFailureInfo) {
400
401
  return new TimeoutFailure(
401
402
  failure.message ?? undefined,
402
- await dataConverter.fromPayloads(0, failure.timeoutFailureInfo.lastHeartbeatDetails?.payloads),
403
+ fromPayloadsAtIndex(payloadConverter, 0, failure.timeoutFailureInfo.lastHeartbeatDetails?.payloads),
403
404
  failure.timeoutFailureInfo.timeoutType ?? TimeoutType.TIMEOUT_TYPE_UNSPECIFIED
404
405
  );
405
406
  }
406
407
  if (failure.terminatedFailureInfo) {
407
408
  return new TerminatedFailure(
408
409
  failure.message ?? undefined,
409
- await optionalFailureToOptionalError(failure.cause, dataConverter)
410
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
410
411
  );
411
412
  }
412
413
  if (failure.canceledFailureInfo) {
413
414
  return new CancelledFailure(
414
415
  failure.message ?? undefined,
415
- await arrayFromPayloads(dataConverter, failure.canceledFailureInfo.details?.payloads),
416
- await optionalFailureToOptionalError(failure.cause, dataConverter)
416
+ arrayFromPayloads(payloadConverter, failure.canceledFailureInfo.details?.payloads),
417
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
417
418
  );
418
419
  }
419
420
  if (failure.resetWorkflowFailureInfo) {
@@ -421,8 +422,8 @@ export async function failureToErrorInner(
421
422
  failure.message ?? undefined,
422
423
  'ResetWorkflow',
423
424
  false,
424
- await arrayFromPayloads(dataConverter, failure.resetWorkflowFailureInfo.lastHeartbeatDetails?.payloads),
425
- await optionalFailureToOptionalError(failure.cause, dataConverter)
425
+ arrayFromPayloads(payloadConverter, failure.resetWorkflowFailureInfo.lastHeartbeatDetails?.payloads),
426
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
426
427
  );
427
428
  }
428
429
  if (failure.childWorkflowExecutionFailureInfo) {
@@ -435,7 +436,7 @@ export async function failureToErrorInner(
435
436
  workflowExecution,
436
437
  workflowType.name,
437
438
  retryState ?? RetryState.RETRY_STATE_UNSPECIFIED,
438
- await optionalFailureToOptionalError(failure.cause, dataConverter)
439
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
439
440
  );
440
441
  }
441
442
  if (failure.activityFailureInfo) {
@@ -447,20 +448,20 @@ export async function failureToErrorInner(
447
448
  failure.activityFailureInfo.activityId ?? undefined,
448
449
  failure.activityFailureInfo.retryState ?? RetryState.RETRY_STATE_UNSPECIFIED,
449
450
  failure.activityFailureInfo.identity ?? undefined,
450
- await optionalFailureToOptionalError(failure.cause, dataConverter)
451
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
451
452
  );
452
453
  }
453
454
  return new TemporalFailure(
454
455
  failure.message ?? undefined,
455
- await optionalFailureToOptionalError(failure.cause, dataConverter)
456
+ optionalFailureToOptionalError(failure.cause, payloadConverter)
456
457
  );
457
458
  }
458
459
 
459
460
  /**
460
461
  * Converts a Failure proto message to a JS Error object.
461
462
  */
462
- export async function failureToError(failure: ProtoFailure, dataConverter: DataConverter): Promise<TemporalFailure> {
463
- const err = await failureToErrorInner(failure, dataConverter);
463
+ export function failureToError(failure: ProtoFailure, payloadConverter: PayloadConverter): TemporalFailure {
464
+ const err = failureToErrorInner(failure, payloadConverter);
464
465
  err.stack = failure.stackTrace ?? '';
465
466
  err.failure = failure;
466
467
  return err;
package/src/index.ts CHANGED
@@ -1,17 +1,15 @@
1
1
  /**
2
- * Common library for both isolated Workflow and normal non-Workflow code
2
+ * Common library for code that's used across the Client, Worker, and/or Workflow
3
3
  *
4
4
  * @module
5
5
  */
6
- export * from './activity-options';
6
+ export { ActivityFunction, ActivityInterface, Headers, Next, RetryPolicy } from '@temporalio/internal-workflow-common';
7
+ export * from '@temporalio/internal-workflow-common/lib/errors';
8
+ export * from '@temporalio/internal-workflow-common/lib/interfaces';
9
+ export * from '@temporalio/internal-workflow-common/lib/time';
7
10
  export * from './converter/data-converter';
8
- export * from './errors';
11
+ export * from './converter/payload-codec';
12
+ export * from './converter/payload-converter';
13
+ export * from './converter/payload-converters';
14
+ export * from './converter/types';
9
15
  export * from './failure';
10
- export * from './interceptors';
11
- export * from './interfaces';
12
- export * from './retry-policy';
13
- export * from './time';
14
- export * from './tls-config';
15
- export * from './workflow-handle';
16
- export * from './workflow-options';
17
- export * from './utils';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Entry point for classes and utilities related to using
3
+ * [Protobufs](https://docs.temporal.io/docs/typescript/data-converters#protobufs) for serialization.
4
+ *
5
+ * Import from `@temporalio/common/lib/protobufs`, for example:
6
+ *
7
+ * ```
8
+ * import { patchProtobufRoot } from '@temporalio/common/lib/protobufs';
9
+ * ```
10
+ * @module
11
+ */
12
+
13
+ // Don't export from index, so we save space in Workflow bundles of users who don't use Protobufs
14
+ export * from './converter/protobuf-payload-converters';
15
+ export * from './converter/patch-protobuf-root';
package/tsconfig.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "outDir": "./lib",
5
5
  "rootDir": "./src"
6
6
  },
7
- "include": ["./src/**/*.ts"],
8
- "exclude": ["node_modules"]
7
+ "references": [{ "path": "../internal-workflow-common" }],
8
+ "include": ["./src/**/*.ts"]
9
9
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/protobufjs/index.d.ts","../proto/lib/coresdk.d.ts","../proto/lib/temporal.d.ts","../proto/lib/index.d.ts","./src/errors.ts","./src/encoding.ts","./src/converter/types.ts","./src/converter/payload-converter.ts","./src/converter/data-converter.ts","./src/type-helpers.ts","./src/failure.ts","./src/interceptors.ts","./src/interfaces.ts","../../node_modules/@types/ms/index.d.ts","./src/time.ts","./src/tls-config.ts","./src/workflow-handle.ts","./src/workflow-options.ts","./src/utils.ts","./src/index.ts","./src/retry-policy.ts","./src/activity-options.ts","../../node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.d.ts","../../node_modules/@opentelemetry/api/build/src/baggage/types.d.ts","../../node_modules/@opentelemetry/api/build/src/baggage/utils.d.ts","../../node_modules/@opentelemetry/api/build/src/common/exception.d.ts","../../node_modules/@opentelemetry/api/build/src/common/time.d.ts","../../node_modules/@opentelemetry/api/build/src/diag/types.d.ts","../../node_modules/@opentelemetry/api/build/src/diag/consolelogger.d.ts","../../node_modules/@opentelemetry/api/build/src/diag/index.d.ts","../../node_modules/@opentelemetry/api/build/src/context/types.d.ts","../../node_modules/@opentelemetry/api/build/src/propagation/textmappropagator.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/attributes.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/trace_state.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/span_context.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/link.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/status.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/span.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/span_kind.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/spanoptions.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/tracer.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/proxytracer.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/tracer_provider.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/proxytracerprovider.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/samplingresult.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/sampler.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/trace_flags.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.d.ts","../../node_modules/@opentelemetry/api/build/src/context/context.d.ts","../../node_modules/@opentelemetry/api/build/src/api/context.d.ts","../../node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts","../../node_modules/@opentelemetry/api/build/src/api/trace.d.ts","../../node_modules/@opentelemetry/api/build/src/baggage/context-helpers.d.ts","../../node_modules/@opentelemetry/api/build/src/api/propagation.d.ts","../../node_modules/@opentelemetry/api/build/src/api/diag.d.ts","../../node_modules/@opentelemetry/api/build/src/index.d.ts","./src/otel.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/async-retry/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/dedent/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/minipass/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/pidusage/index.d.ts","../../node_modules/@types/prompts/index.d.ts","../../node_modules/ts-toolbelt/out/index.d.ts","../../node_modules/@types/ramda/tools.d.ts","../../node_modules/@types/ramda/index.d.ts","../../node_modules/@types/rimraf/index.d.ts","../../node_modules/@types/tar/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/validate-npm-package-name/index.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","1558c642e03689d42843e7b047b9c20e77ee09ab388ff854484db5dcfbed11da","f87577177b8099a7370923a26ae62e580639d45430196b8d500ce1c7cdce1eef","ee45dfb34be7183967781c4f1fe3d16b434bf1e95da56c0fbb1144e08e19d70b","64d277c707a84956da70e9f30dd63dd507bbe0ed532b236e6bcedb08530f9eb5","fadbcb98548455f18159af410b79939a9ebb79030da1cf55a43a5ad473cc5bd6","d95f9e88aa9f69a1127b31321137dd97a58668f17cc764603a693314a038a3dd","a3bc0a3686d7ad733f899b5cb50931560066b04d94732a281ff836a3f79b33c1","891092d04d6ae4cee181495683768dcd5e4afb04bb5abc5e132a9247d561be77","b62953ae9d2f47bf040387fd43f0ca19c231608315dc1781721b1f91b09c5e5e","a7f91cf71a31b81bb2e307e1686ce809e845ce2c1076b18fbd1a9ed50e2e5a3c","5c91abadfd45413027abdeba1784b184b06c9a6a7df6e78453365491e91a6aa8","da47da3e11c594d6774034ea7c0a5fa6bb08c61b1e1453d56af07d64a8b60622","bfe268c0a4cd1acddb8e88ec90b726217133e6cb5053c6f2e33269d9d129cce3","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","a68f167cb5868b46cde114a40f8840d6a0451d1bd7fa772fdfedecd30b3d0e61","595b97f94582ecaa0cc1a2d97be4223495ae718a62895af169be93b53066f905","d3b36f73e1462b5e9ef21be195ec2b6f996730bff67753140f2db1ff6089cbdc","a40174bd247b13ba64154c8bb3a160e49250864ff603e7779588e1ee084c6fe9","addda838f275a4345d7907b1a0aba6e8e54628ace5d898a14d2a546333e3bd4f","d81a4fa5df537ff1b6b5eca8daaee4a421901d6b3c5e82e5f19a95ad3d4c7974","3f4c7070470eda53a0a22cabb81e947614b666f91dc84f4ae3778ef18958d835","25fc6e932487884f446c3497172f72aa3fb1187d1ca95bdac2f734a39efcd61e","4a36c925dcd89ed988b3c2844b0099416d176c898a7bd93159fda60b8441ccc8","fc2220a0370fe4c178159294a3aad1dbe1f790bd3544cc6d864aa3d7b1df1b5d","aaf3741cf4a11ead5269c782f0d8f579d631fed8f5f080ee369ab2f09ab0a5e6","b820818bb5f8ebb713633be7a3db6191aa12341ba23deb85af009006a9277a20","d6b875234878a2aa1febbfbcf59f6f8ee5bdf01b55a111238416bf00bc4f4d74","2ea9ab59e2b3f625d63e524f82dba5fad02412e13e29132023c0917977d0c0e6","a8b7eec40be2f16f3a276fd99e1c5ad5ef3565f56319c763be2d8983810033a2","e5ca18285f6adbee0ea27e89012e3e5e0816210eba73b60bcc534247543d7a46","2d7fed266cd1b54dece5de5cb58b2ef6f72736163b988bb0cbb090b8b152d3a8","4bb9ec99d41a4b7a433ae8b61bcf5a1c0b4e0eff253ff459f4ccfda64fe4bf51","f6607c445de0dbca0a1e0cdedff690ad27a01b230817e0074cda28574e7399cf","5bd1d2dde43d2f2dbe8370fd5e0bffbb17f98a75940f47fe7ee94b50f12e3e12","264f343285aca3a0cbc0f2609ba69b664b3ec714404dd4a09d2860de9e7c6c02","f342fa6a03a2941e83b795586ab91ef410ec59fdebf21e97027ce1eac273fc5f","79b0d8826c506b6eb75937a8a466dd29fad2fb8cff0f05f97bcacb962ed3f56e","10080687eba89fc69232f38ffc45da8f90d3ca137507453ee62497d6f458f740","496689ce350fd7e4c939966118517b0cb174f5acb2e1e6163688b18bef8de8b2","1c8a2cc119fc139415f49681634254b218d4c5c495ca11103db50ae9c90d54d1","76c71c77e675f16b339789d17fc1e6589a98241d731dda429828cee107904857","0f1e60175a7fe4a1a9d6ddde857a19333c7f4682ec4f2ff4347cb8ff729cbe92","975fda3a8a7e46679765f9fc272235e07f36646b8af9d989a622d782b0cd3c2b","b3214b6a5e14b5a994f856fda1562c89cd208caf0c44040980a59cffa9ad3e63","9d34f34601bf2058f5045ad6c15fab3c323e69353c14713b5365e0ecc0c87d75","e73ea58406c7aa00e04d16a93ac1a8dd614433396ae3e0b6855ddb83d0544837","9d6796534f08ea5b84c211e224fd6ec1430113c07195c6e29dd5fd52f804df7c","d4dc45e2085acd5b61836f9ca03f148d620b781c983411d0963317a155ffd32c","76388575482f6c37a446179cc8c6825f910cdafc9ed55daaee7abf3f6b73a29e","6116ea81a38eb614b32317eb87c2f903915eaae16bf5a59e9838723e7cb06ab4","538bef0ddc796f3d6e5c7d90816e1972e11acc7d962e7e9b1eec3e192cbf1a99","b60cdf96b6934a221ce3b66b9bb82734843c4df27da12acc6c43c3a0e46adea5","3de96ee1d0e54cac8396ff88bab0be56fd2149daaba05d1b08968932ae5cec37","8ece80ff440d4aec6bfa8bb50685599cd199c19082f256bdea2c95c3ba7b3ea6","374421af52bad74f65653c9524fba315c9157b6cbce117d902e9d1ad625abb01","bcb58afb796b9b35068ca86768aac0934b738f141e54ed803a2be867f229a4a6","b357fcf1b0a37b9c3e2fec33fb2949e4fed07c6b2c617185de90f6d81da7a5e6","923df0e4714decae8f51ec4d17ab60974dd495e19045dcbb313b91479dea5f24","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","79d2fdaa1e0bf1a62b59de50e185374b74d22dc43144a78eab1bbcca0a4a2550","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","70646d9cb37b62611766d18a9bcca6cbf28ca9aec33a66244e974056ab1193f6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","6c29066d1acba21f6fde8042da49ba4df5cad690dac19416a8f7af17d451ed40","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","19bf3ca55fd356755cda33e6e8c753d3d13d4aaa54ad9c5c032927f362188066","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","97057c24c7f25f01fa0db7a48b7885e0d9e73ace397d8cd71d9f7fcbdc4fab6f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fadd7bd4cb8b67e1f89b5688e9d896c3d3241c7aa816faba9bda78e3e166be22","4c8239bedbe72ce9405efb578f03f56219dba4ceb5a57ca3d2dc10334612f210","9df147746b0cbd11d022b564e6fdd43ac79b643dc579d2123317ee01cc4f0d70","ecbb2d349861fff68730a3b3ec9adce77cd491268c6186a685b7965c2c4b60bc","61772dfd5eee2b54128f72e352ed42696721359cacf81086a89f1bd527726258","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","239f0c1d83d1ca9677327198196ee2ce6827dc7b469771ab5abf7bea7fbdb674","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","bae219fc966077e88ec22d2dc2eb24617d3244d3593afdc5f2457fabd27d7462"],"options":{"composite":true,"esModuleInterop":true,"module":1,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7},"fileIdsList":[[70,143],[67,143],[64,70,71,93,143],[80,82,87,91,143],[63,70,143],[143],[62,143],[63,143],[67,68,143],[63,64,65,66,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,143],[70,74,77,143],[74,143],[72,74,143],[70,77,79,80,143],[80,82,143],[70,72,75,78,84,143],[72,143],[65,66,72,74,76,143],[73,143],[74,77,143],[66,72,75,78,143],[70,77,79,143],[80,143],[98,143],[115,118,142,143,150,151,152,153],[105,143,150],[143,159,160],[143,157,158,159],[116,143,150],[115,116,143,150,163],[118,120,132,142,143,150,165],[115,143,150],[118,142,143,150,169,170],[118,132,143,150],[100,143],[103,143],[104,109,143],[105,115,116,123,132,142,143],[105,106,115,123,143],[107,143],[108,109,116,124,143],[109,132,139,143],[110,112,115,123,143],[111,143],[112,113,143],[114,115,143],[115,143],[115,116,117,132,142,143],[115,116,117,132,143],[118,123,132,142,143],[115,116,118,119,123,132,139,142,143],[118,120,132,139,142,143],[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149],[115,121,143],[122,142,143],[112,115,123,132,143],[124,143],[125,143],[103,126,143],[127,141,143,147],[128,143],[129,143],[115,130,143],[130,131,143,145],[115,132,133,134,143],[132,134,143],[132,133,143],[135,143],[136,143],[115,137,138,143],[137,138,143],[109,123,139,143],[140,143],[123,141,143],[104,118,129,142,143],[109,143],[132,143,144],[143,145],[143,146],[104,109,115,117,126,132,142,143,145,147],[132,143,148],[143,176,177],[143,176],[116,143,150,164],[115,132,143,148,150,168],[41,49,60,143],[44,46,47,143],[44,46,143],[41,45,143],[41,48,49,143],[44,48,50,51,52,54,55,56,57,58,60,61,143],[41,49,143],[48,51,96,143],[43,54,59,143],[39,41,44,53,143],[52,143],[41,49,52,54,60,143],[39,40,143],[41,42,143]],"referencedMap":[[90,1],[95,2],[94,3],[92,4],[93,5],[62,6],[63,7],[64,8],[65,6],[66,6],[89,1],[70,6],[68,2],[69,9],[67,6],[96,10],[71,1],[72,6],[91,11],[88,12],[75,13],[81,14],[83,15],[85,16],[84,17],[77,18],[74,19],[78,6],[87,20],[79,21],[76,6],[86,6],[73,6],[80,22],[82,23],[99,24],[154,25],[155,26],[156,6],[161,27],[157,6],[160,28],[159,6],[162,29],[164,30],[166,31],[152,6],[158,6],[151,32],[39,6],[163,6],[167,6],[168,32],[53,6],[170,6],[171,33],[169,34],[100,35],[101,35],[103,36],[104,37],[105,38],[106,39],[107,40],[108,41],[109,42],[110,43],[111,44],[112,45],[113,45],[114,46],[115,47],[116,48],[117,49],[102,6],[149,6],[118,50],[119,51],[120,52],[150,53],[121,54],[122,55],[123,56],[124,57],[125,58],[126,59],[127,60],[128,61],[129,62],[130,63],[131,64],[132,65],[134,66],[133,67],[135,68],[136,69],[137,70],[138,71],[139,72],[140,73],[141,74],[142,75],[143,76],[144,77],[145,78],[146,79],[147,80],[148,81],[172,6],[173,6],[174,6],[175,6],[178,82],[177,83],[153,34],[98,6],[179,84],[180,85],[165,6],[181,6],[182,6],[40,6],[176,83],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[29,6],[30,6],[31,6],[32,6],[7,6],[37,6],[33,6],[34,6],[35,6],[36,6],[1,6],[38,6],[61,86],[48,87],[47,88],[46,89],[45,6],[44,6],[50,90],[59,91],[51,92],[52,6],[97,93],[60,94],[54,95],[55,6],[49,6],[58,6],[56,96],[57,97],[41,98],[43,99],[42,98]],"exportedModulesMap":[[90,1],[95,2],[94,3],[92,4],[93,5],[62,6],[63,7],[64,8],[65,6],[66,6],[89,1],[70,6],[68,2],[69,9],[67,6],[96,10],[71,1],[72,6],[91,11],[88,12],[75,13],[81,14],[83,15],[85,16],[84,17],[77,18],[74,19],[78,6],[87,20],[79,21],[76,6],[86,6],[73,6],[80,22],[82,23],[99,24],[154,25],[155,26],[156,6],[161,27],[157,6],[160,28],[159,6],[162,29],[164,30],[166,31],[152,6],[158,6],[151,32],[39,6],[163,6],[167,6],[168,32],[53,6],[170,6],[171,33],[169,34],[100,35],[101,35],[103,36],[104,37],[105,38],[106,39],[107,40],[108,41],[109,42],[110,43],[111,44],[112,45],[113,45],[114,46],[115,47],[116,48],[117,49],[102,6],[149,6],[118,50],[119,51],[120,52],[150,53],[121,54],[122,55],[123,56],[124,57],[125,58],[126,59],[127,60],[128,61],[129,62],[130,63],[131,64],[132,65],[134,66],[133,67],[135,68],[136,69],[137,70],[138,71],[139,72],[140,73],[141,74],[142,75],[143,76],[144,77],[145,78],[146,79],[147,80],[148,81],[172,6],[173,6],[174,6],[175,6],[178,82],[177,83],[153,34],[98,6],[179,84],[180,85],[165,6],[181,6],[182,6],[40,6],[176,83],[9,6],[8,6],[2,6],[10,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[3,6],[4,6],[21,6],[18,6],[19,6],[20,6],[22,6],[23,6],[24,6],[5,6],[25,6],[26,6],[27,6],[28,6],[6,6],[29,6],[30,6],[31,6],[32,6],[7,6],[37,6],[33,6],[34,6],[35,6],[36,6],[1,6],[38,6],[61,86],[48,87],[47,88],[46,89],[45,6],[44,6],[50,90],[59,91],[51,92],[52,6],[97,93],[60,94],[54,95],[55,6],[49,6],[58,6],[56,96],[57,97],[41,98],[43,99],[42,98]],"semanticDiagnosticsPerFile":[90,95,94,92,93,62,63,64,65,66,89,70,68,69,67,96,71,72,91,88,75,81,83,85,84,77,74,78,87,79,76,86,73,80,82,99,154,155,156,161,157,160,159,162,164,166,152,158,151,39,163,167,168,53,170,171,169,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,102,149,118,119,120,150,121,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,172,173,174,175,178,177,153,98,179,180,165,181,182,40,176,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,61,48,47,46,45,44,50,59,51,52,97,60,54,55,49,58,56,57,41,43,42]},"version":"4.5.2"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/protobufjs/index.d.ts","../proto/lib/coresdk.d.ts","../proto/lib/temporal.d.ts","../proto/lib/index.d.ts","../internal-workflow-common/lib/retry-policy.d.ts","../internal-workflow-common/lib/activity-options.d.ts","../internal-workflow-common/lib/errors.d.ts","../internal-workflow-common/lib/type-helpers.d.ts","../internal-workflow-common/lib/interceptors.d.ts","../internal-workflow-common/lib/interfaces.d.ts","../internal-workflow-common/lib/time.d.ts","../internal-workflow-common/lib/workflow-handle.d.ts","../internal-workflow-common/lib/workflow-options.d.ts","../internal-workflow-common/lib/index.d.ts","./src/converter/encoding.ts","./src/converter/types.ts","./src/converter/payload-converters.ts","./src/converter/payload-converter.ts","./src/failure.ts","./src/converter/payload-codec.ts","./src/converter/data-converter.ts","./src/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/proto3-json-serializer/build/src/types.d.ts","../../node_modules/proto3-json-serializer/build/src/toproto3json.d.ts","../../node_modules/proto3-json-serializer/build/src/fromproto3json.d.ts","../../node_modules/proto3-json-serializer/build/src/index.d.ts","./src/converter/protobuf-payload-converters.ts","./src/converter/patch-protobuf-root.ts","./src/protobufs.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/async-retry/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/dedent/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/minipass/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/pidusage/index.d.ts","../../node_modules/@types/prompts/index.d.ts","../../node_modules/ts-toolbelt/out/index.d.ts","../../node_modules/@types/ramda/tools.d.ts","../../node_modules/@types/ramda/index.d.ts","../../node_modules/@types/rimraf/index.d.ts","../../node_modules/@types/tar/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/validate-npm-package-name/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","1558c642e03689d42843e7b047b9c20e77ee09ab388ff854484db5dcfbed11da","f3711f5ccd4cf052119f2dd8f191060b7da4c6ceac1c3b71cee66d5e7cb786f5","bf8e706db64403ea040ab45f113feeaf208d5fa80d7199bdcac47506369b8154","3f5308f7cb3ceb51729ace158af580057fda957b9d26efd8095b0fe0df4dfbfd","82a29801c5e4e2a6cf192da6a810b79e7be27a3a3e846d38fc6f1a67750a940f","ea7bef2a23ede6fc45a9982e734ffe0971ab11a840a8939db9f74d5e92b5f423","e6a153915ebf3d92d5cfa88c1169dbbf6cc425db01dde390c1c126bcfdbb238b","8c1c7f187912d5dadec77f8bd1fdf1f4099bf86ddf33525525beaf290f5d1789","c7626d481061af580de1503cb881a080a9d1d58952bf381f215ba9edf8f73f5e","bafd8944f9cbefccff23b2af47517925f3fa0be29251308fdc4485cf2e99afb4","7673b9c480431209ed07b33d6f210a7f2d6c886ed8cc77efaaff0d0dc2a51af4","1a7689daffa54e39ebac4d793b9a38605e6c1354ba4f82a2777599d2e316d118","e995729f09b4105b115500877a56945d866e3f978f343b1389fd15f3011e8787","9863b273003f68928bab5740056d3de2f3344749b4a24cf3dedc6d3cbda79d81","d95f9e88aa9f69a1127b31321137dd97a58668f17cc764603a693314a038a3dd","08fdbe127634773f91def50b7627b5049de80d620aae6864be14747b0814ccf7","1db3f8043ea37b0a3925c82eef592e9216ef36b2f121ee157bd39d41777b1c56","f62265e40bf6c1766f6c9488c60e0753d5dd6b823be258fc24683ef2906dd897","0f3b23d84cbf072c2b4c209e8ecc12475a343a5952071f19b209fdb27bc96f42","0e0830bf3fdf7a5c22178395e0db35de4757bccaea8bbc9f14371edaacff5f2e","bacb4f44fea680dfd39cacc59dad66bba4e605a5b38b106df04ea7cc94699dc1","14f6f636bc1fa19519f1895ada98bbdd77bf144383fb94fc3196e5c534d321fa","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"839e0b959028f5385ca8de7b9d9c00d71a5955d52d2c98cb3e488a626f7b90b3","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","8d5ad6a07dc84c0fba4041cba09bfc9c75bc06b04e8843405e3fb2456c721438","e680ff882bccd2bb6574128a17e1a32d7a49b8eb161a9a739dd60f8362e3d4d9","a4d6781f2d709fe9f1378181deb3f457036c7ebc7968a233f7bc16f343b98ced","aa7d0095b9763a3b47c1851036d87152872a3d7f1733732b0a0e14655b0ee34b","f15772b5bc8d544ffcca3aeeb66e2d6f3892aededf706bd2be41192bff366c52","663adbd3df156248b5d008072e58a13b97469ab951794328cbb01e851463e259","c0b119add21c1647a84c7403e45611c89e404536ca145b30334ad1c66becdb99","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","79d2fdaa1e0bf1a62b59de50e185374b74d22dc43144a78eab1bbcca0a4a2550","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","70646d9cb37b62611766d18a9bcca6cbf28ca9aec33a66244e974056ab1193f6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","19bf3ca55fd356755cda33e6e8c753d3d13d4aaa54ad9c5c032927f362188066","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","2d7833f437e0f41a91d9ac5b156157fde7e5380558ff44832afae705ac0e795d","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","bef99c239e4fb2f51b7cc4952d019cb30bacd8c2e9fa07884886dbe3624cbcfb","4c8239bedbe72ce9405efb578f03f56219dba4ceb5a57ca3d2dc10334612f210","9df147746b0cbd11d022b564e6fdd43ac79b643dc579d2123317ee01cc4f0d70","fcd714a42a6b383a6240c056da9326afcea41a0d289a23206990f2550e5c1988","19392d5faf0ddca7ecdf300ace20ff6a5a120a11b6536a767fb1d9feb592cec5","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","239f0c1d83d1ca9677327198196ee2ce6827dc7b469771ab5abf7bea7fbdb674","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","bae219fc966077e88ec22d2dc2eb24617d3244d3593afdc5f2457fabd27d7462"],"options":{"composite":true,"esModuleInterop":true,"module":1,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7},"fileIdsList":[[105,120],[77,80,104,105,112,122,123,124],[67,105,112],[105],[105,130,131],[105,128,129,130],[78,105,112],[77,78,105,112,134],[80,82,94,104,105,112,136],[77,105,112],[105,138,140,141,142,143,144,145,146,147,148,149,150],[105,138,139,141,142,143,144,145,146,147,148,149,150],[105,139,140,141,142,143,144,145,146,147,148,149,150],[105,138,139,140,142,143,144,145,146,147,148,149,150],[105,138,139,140,141,143,144,145,146,147,148,149,150],[105,138,139,140,141,142,144,145,146,147,148,149,150],[105,138,139,140,141,142,143,145,146,147,148,149,150],[105,138,139,140,141,142,143,144,146,147,148,149,150],[105,138,139,140,141,142,143,144,145,147,148,149,150],[105,138,139,140,141,142,143,144,145,146,148,149,150],[105,138,139,140,141,142,143,144,145,146,147,149,150],[105,138,139,140,141,142,143,144,145,146,147,148,150],[105,138,139,140,141,142,143,144,145,146,147,148,149],[80,104,105,112,154,155],[80,94,105,112],[62,105],[65,105],[66,71,105],[67,77,78,85,94,104,105],[67,68,77,85,105],[69,105],[70,71,78,86,105],[71,94,101,105],[72,74,77,85,105],[73,105],[74,75,105],[76,77,105],[77,105],[77,78,79,94,104,105],[77,78,79,94,105],[80,85,94,104,105],[77,78,80,81,85,94,101,104,105],[80,82,94,101,104,105],[62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111],[77,83,105],[84,104,105],[74,77,85,94,105],[86,105],[87,105],[65,88,105],[89,103,105,109],[90,105],[91,105],[77,92,105],[92,93,105,107],[77,94,95,96,105],[94,96,105],[94,95,105],[97,105],[98,105],[77,99,100,105],[99,100,105],[71,85,101,105],[102,105],[85,103,105],[66,80,91,104,105],[71,105],[94,105,106],[105,107],[105,108],[66,71,77,79,88,94,104,105,107,109],[94,105,110],[105,161,162],[105,161],[78,105,112,135],[77,94,105,110,112,152],[40,105,113],[105,113,114,115],[105,112],[57,59,105],[53,105],[55,105],[53,55,56,105],[53,55,57,105],[40,53,55,56,57,105,116],[41,54,105],[41,53,57,105],[46,49,50,53,55,56,57,58,59,60,105],[105,117,118],[41,44,105],[44,45,46,47,48,49,50,51,52,105],[41,47,105],[43,105],[41,105],[49,105],[41,44,47,49,105],[39,40,105],[41,42,105]],"referencedMap":[[121,1],[125,2],[126,3],[127,4],[132,5],[128,4],[131,6],[130,4],[133,7],[135,8],[137,9],[123,4],[129,4],[122,10],[139,11],[140,12],[138,13],[141,14],[142,15],[143,16],[144,17],[145,18],[146,19],[147,20],[148,21],[149,22],[150,23],[39,4],[134,4],[151,4],[152,10],[153,4],[155,4],[156,24],[154,25],[62,26],[63,26],[65,27],[66,28],[67,29],[68,30],[69,31],[70,32],[71,33],[72,34],[73,35],[74,36],[75,36],[76,37],[77,38],[78,39],[79,40],[64,4],[111,4],[80,41],[81,42],[82,43],[112,44],[83,45],[84,46],[85,47],[86,48],[87,49],[88,50],[89,51],[90,52],[91,53],[92,54],[93,55],[94,56],[96,57],[95,58],[97,59],[98,60],[99,61],[100,62],[101,63],[102,64],[103,65],[104,66],[105,67],[106,68],[107,69],[108,70],[109,71],[110,72],[157,4],[158,4],[159,4],[160,4],[163,73],[162,74],[124,25],[120,4],[164,75],[165,76],[136,4],[166,4],[167,4],[115,77],[116,78],[114,77],[113,79],[40,4],[161,74],[9,4],[8,4],[2,4],[10,4],[11,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[3,4],[4,4],[21,4],[18,4],[19,4],[20,4],[22,4],[23,4],[24,4],[5,4],[25,4],[26,4],[27,4],[28,4],[6,4],[29,4],[30,4],[31,4],[32,4],[7,4],[37,4],[33,4],[34,4],[35,4],[36,4],[1,4],[38,4],[60,80],[54,4],[118,81],[59,82],[57,83],[56,84],[117,85],[55,86],[58,87],[61,88],[119,89],[45,90],[46,4],[53,91],[48,92],[49,4],[44,93],[50,94],[47,4],[51,95],[52,96],[41,97],[43,98],[42,97]],"exportedModulesMap":[[121,1],[125,2],[126,3],[127,4],[132,5],[128,4],[131,6],[130,4],[133,7],[135,8],[137,9],[123,4],[129,4],[122,10],[139,11],[140,12],[138,13],[141,14],[142,15],[143,16],[144,17],[145,18],[146,19],[147,20],[148,21],[149,22],[150,23],[39,4],[134,4],[151,4],[152,10],[153,4],[155,4],[156,24],[154,25],[62,26],[63,26],[65,27],[66,28],[67,29],[68,30],[69,31],[70,32],[71,33],[72,34],[73,35],[74,36],[75,36],[76,37],[77,38],[78,39],[79,40],[64,4],[111,4],[80,41],[81,42],[82,43],[112,44],[83,45],[84,46],[85,47],[86,48],[87,49],[88,50],[89,51],[90,52],[91,53],[92,54],[93,55],[94,56],[96,57],[95,58],[97,59],[98,60],[99,61],[100,62],[101,63],[102,64],[103,65],[104,66],[105,67],[106,68],[107,69],[108,70],[109,71],[110,72],[157,4],[158,4],[159,4],[160,4],[163,73],[162,74],[124,25],[120,4],[164,75],[165,76],[136,4],[166,4],[167,4],[115,77],[116,78],[114,77],[113,79],[40,4],[161,74],[9,4],[8,4],[2,4],[10,4],[11,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[3,4],[4,4],[21,4],[18,4],[19,4],[20,4],[22,4],[23,4],[24,4],[5,4],[25,4],[26,4],[27,4],[28,4],[6,4],[29,4],[30,4],[31,4],[32,4],[7,4],[37,4],[33,4],[34,4],[35,4],[36,4],[1,4],[38,4],[60,80],[54,4],[118,81],[59,82],[57,83],[56,84],[117,85],[55,86],[58,87],[61,88],[119,89],[45,90],[46,4],[53,91],[48,92],[49,4],[44,93],[50,94],[47,4],[51,95],[52,96],[41,97],[43,98],[42,97]],"semanticDiagnosticsPerFile":[121,125,126,127,132,128,131,130,133,135,137,123,129,122,139,140,138,141,142,143,144,145,146,147,148,149,150,39,134,151,152,153,155,156,154,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,64,111,80,81,82,112,83,84,85,86,87,88,89,90,91,92,93,94,96,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,157,158,159,160,163,162,124,120,164,165,136,166,167,115,116,114,113,40,161,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,60,54,118,59,57,56,117,55,58,61,119,45,46,53,48,49,44,50,47,51,52,41,43,42]},"version":"4.6.2"}
@@ -1,81 +0,0 @@
1
- import type { coresdk } from '@temporalio/proto/lib/coresdk';
2
- import { RetryPolicy } from './retry-policy';
3
- export declare enum ActivityCancellationType {
4
- TRY_CANCEL = 0,
5
- WAIT_CANCELLATION_COMPLETED = 1,
6
- ABANDON = 2
7
- }
8
- /**
9
- * Options for remote activity invocation - will be processed from a task queue.
10
- * @see https://www.javadoc.io/doc/io.temporal/temporal-sdk/latest/io/temporal/activity/ActivityOptions.Builder.html
11
- */
12
- export interface ActivityOptions {
13
- /**
14
- * Identifier to use for tracking the activity in Workflow history.
15
- * The `activityId` can be accessed by the activity function.
16
- * Does not need to be unique.
17
- *
18
- * @default an incremental sequence number
19
- */
20
- activityId?: string;
21
- /**
22
- * Namespace to schedule this activity in.
23
- * @default current worker namespace
24
- */
25
- namespace?: string;
26
- /**
27
- * Task queue name.
28
- *
29
- * @default current worker task queue
30
- */
31
- taskQueue?: string;
32
- /**
33
- * Heartbeat interval. Activity must heartbeat before this interval passes after a last heartbeat or activity start.
34
- * @format {@link https://www.npmjs.com/package/ms | ms} formatted string or number of milliseconds
35
- */
36
- heartbeatTimeout?: string | number;
37
- /**
38
- * RetryPolicy that define how activity is retried in case of failure. If this is not set, then the server-defined default activity retry policy will be used. To ensure zero retries, set maximum attempts to 1.
39
- */
40
- retry?: RetryPolicy;
41
- /**
42
- * Maximum time of a single Activity execution attempt.
43
- Note that the Temporal Server doesn't detect Worker process failures directly. It relies on this timeout to detect that an Activity that didn't complete on time. So this timeout should be as short as the longest possible execution of the Activity body. Potentially long running Activities must specify {@link heartbeatTimeout} and call {@link activity.Context.heartbeat} periodically for timely failure detection.
44
-
45
- * Either this option or {@link scheduleToCloseTimeout} is required.
46
- * @format {@link https://www.npmjs.com/package/ms | ms} formatted string or number of milliseconds
47
- */
48
- startToCloseTimeout?: string | number;
49
- /**
50
- * Time that the Activity Task can stay in the Task Queue before it is picked up by a Worker. Do not specify this timeout unless using host specific Task Queues for Activity Tasks are being used for routing.
51
- * `scheduleToStartTimeout` is always non-retryable. Retrying after this timeout doesn't make sense as it would just put the Activity Task back into the same Task Queue.
52
- * @default unlimited
53
- * @format {@link https://www.npmjs.com/package/ms | ms} formatted string or number of milliseconds
54
- */
55
- scheduleToStartTimeout?: string | number;
56
- /**
57
- * Total time that a workflow is willing to wait for Activity to complete.
58
- * `scheduleToCloseTimeout` limits the total time of an Activity's execution including retries (use {@link startToCloseTimeout} to limit the time of a single attempt).
59
- *
60
- * Either this option or {@link startToCloseTimeout} is required
61
- * @default unlimited
62
- * @format {@link https://www.npmjs.com/package/ms | ms} formatted string or number of milliseconds
63
- */
64
- scheduleToCloseTimeout?: string | number;
65
- /**
66
- * Determines what the SDK does when the Activity is cancelled.
67
- * - `TRY_CANCEL` - Initiate a cancellation request and immediately report cancellation to the workflow.
68
- * - `WAIT_CANCELLATION_COMPLETED` - Wait for activity cancellation completion. Note that activity must heartbeat to receive a
69
- * cancellation notification. This can block the cancellation for a long time if activity doesn't
70
- * heartbeat or chooses to ignore the cancellation request.
71
- * - `ABANDON` - Do not request cancellation of the activity and immediately report cancellation to the workflow.
72
- */
73
- cancellationType?: coresdk.workflow_commands.ActivityCancellationType;
74
- }
75
- export interface ActivityFunction<P extends any[], R> {
76
- (...args: P): Promise<R>;
77
- }
78
- /**
79
- * Mapping of Activity name to function
80
- */
81
- export declare type ActivityInterface = Record<string, ActivityFunction<any[], any>>;
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ActivityCancellationType = void 0;
4
- const type_helpers_1 = require("./type-helpers");
5
- // Avoid importing the proto implementation to reduce workflow bundle size
6
- // Copied from coresdk.workflow_commands.ActivityCancellationType
7
- var ActivityCancellationType;
8
- (function (ActivityCancellationType) {
9
- ActivityCancellationType[ActivityCancellationType["TRY_CANCEL"] = 0] = "TRY_CANCEL";
10
- ActivityCancellationType[ActivityCancellationType["WAIT_CANCELLATION_COMPLETED"] = 1] = "WAIT_CANCELLATION_COMPLETED";
11
- ActivityCancellationType[ActivityCancellationType["ABANDON"] = 2] = "ABANDON";
12
- })(ActivityCancellationType = exports.ActivityCancellationType || (exports.ActivityCancellationType = {}));
13
- (0, type_helpers_1.checkExtends)();
14
- //# sourceMappingURL=activity-options.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"activity-options.js","sourceRoot":"","sources":["../src/activity-options.ts"],"names":[],"mappings":";;;AAEA,iDAA8C;AAE9C,0EAA0E;AAC1E,iEAAiE;AACjE,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,mFAAc,CAAA;IACd,qHAA+B,CAAA;IAC/B,6EAAW,CAAA;AACb,CAAC,EAJW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAInC;AAED,IAAA,2BAAY,GAAgF,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"encoding.js","sourceRoot":"","sources":["../src/encoding.ts"],"names":[],"mappings":";AAAA,mJAAmJ;AACnJ,8BAA8B;;;AAE9B,MAAM,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;AACzC,MAAM,aAAa,GAAG,6DAA6D,CAAC;AACpF,MAAM,YAAY,GAAG,IAAI,WAAW,CAAC,EAAE,CAAC,CAAC;AAEzC,MAAa,WAAW;IACtB,MAAM,CAAC,kBAAgE;QACrE,MAAM,QAAQ,GAAG,kBAAkB,YAAY,UAAU,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,kBAAkB,CAAC,CAAC;QAEpH,IAAI,eAAe,GAAG,EAAE,EACtB,MAAM,GAAG,EAAE,EACX,KAAK,GAAG,CAAC,EACT,OAAO,GAAG,CAAC,EACX,GAAG,GAAG,CAAC,EACP,SAAS,GAAG,CAAC,EACb,OAAO,GAAG,CAAC,EACX,GAAG,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,CAAC,CAAC;QACX,MAAM,GAAG,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;QAChC,MAAM,UAAU,GAAG,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC;QAClC,2GAA2G;QAC3G,OAAO,KAAK,GAAG,GAAG,GAAI;YACpB,OAAO,GAAG,KAAK,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;YACvD,OAAO,GAAG,GAAG,OAAO,EAAE,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE;gBAClE,GAAG,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;gBAC7B,QAAQ,GAAG,IAAI,CAAC,EAAE;oBAChB,KAAK,EAAE;wBACL,GAAG,GAAG,QAAQ,CAAC,CAAC,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;wBACjD,IAAI,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,UAAU,GAAG,GAAG,EAAE;4BACzC,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;4BACxB,MAAM;yBACP;wBACD,SAAS,GAAG,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,UAAU,CAAC,CAAC;wBACtD,OAAO,GAAG,CAAC,CAAC,CAAC,yDAAyD;wBACtE,GAAG,GAAG,KAAK,CAAC,CAAC,6BAA6B;oBAC5C,KAAK,EAAE;wBACL,GAAG,GAAG,QAAQ,CAAC,CAAC,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;wBACjD,SAAS,KAAK,CAAC,CAAC;wBAChB,SAAS,IAAI,CAAC,CAAC,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,UAAU,CAAC,CAAC;wBACxD,OAAO,GAAG,GAAG,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,yDAAyD;wBAC/G,GAAG,GAAG,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,4BAA4B;oBAC3D,KAAK,EAAE,CAAC;oBACR,KAAK,EAAE;wBACL,GAAG,GAAG,QAAQ,CAAC,CAAC,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;wBACjD,SAAS,KAAK,CAAC,CAAC;wBAChB,SAAS,IAAI,CAAC,CAAC,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,GAAG,GAAG,UAAU,CAAC,CAAC;wBACzD,OAAO,GAAG,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;wBAE5B,8BAA8B;wBAC9B,IAAI,KAAK,GAAG,GAAG,IAAI,GAAG,IAAI,CAAC,KAAK,IAAI,IAAI,SAAS,IAAI,OAAO,IAAI,SAAS,GAAG,QAAQ,EAAE;4BACpF,GAAG,GAAG,SAAS,CAAC;4BAChB,SAAS,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;4BACtC,IAAI,CAAC,IAAI,SAAS,CAAC,sBAAsB,EAAE;gCACzC,iBAAiB;gCACjB,0BAA0B;gCAE1B,GAAG,GAAG,CAAC,CAAC,SAAS,IAAI,EAAE,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,gBAAgB;gCACxD,GAAG,GAAG,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,gEAAgE;gCAE1G,IAAI,GAAG,GAAG,EAAE,EAAE;oCACZ,0BAA0B;oCAC1B,YAAY,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC;oCACxB,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;oCACpB,GAAG,GAAG,CAAC,CAAC,CAAC;iCACV;qCAAM;oCACL,6EAA6E;oCAC7E,uFAAuF;oCACvF,GAAG,GAAG,GAAG,CAAC;oCACV,GAAG,GAAG,GAAG,CAAC;oCACV,GAAG,GAAG,GAAG,CAAC;iCACX;6BACF;;gCAAM,OAAO,GAAG,CAAC,OAAO,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,mDAAmD;yBACxF;6BAAM;4BACL,sFAAsF;4BACtF,GAAG,KAAK,CAAC,CAAC;4BACV,KAAK,GAAG,CAAC,KAAK,GAAG,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,0CAA0C;4BACzE,GAAG,GAAG,MAAM,CAAC;yBACd;wBAED,sDAAsD;wBACtD,OAAO,GAAG,CAAC,CAAC;wBACZ,SAAS,GAAG,CAAC,CAAC;wBACd,OAAO,GAAG,KAAK,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;oBACzD;;;;;;;;;;;;;;+BAcW;oBACX;wBACE,YAAY,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,0CAA0C;wBACnE,SAAS;oBACX,KAAK,EAAE,CAAC;oBACR,KAAK,EAAE,CAAC;oBACR,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;iBACR;gBACD,YAAY,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,CAAC,0CAA0C;aACvE;YACD,MAAM,IAAI,YAAY,CACpB,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,CAAC,CAAC,EACf,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,EAChB,YAAY,CAAC,EAAE,CAAC,CACjB,CAAC;YACF,IAAI,GAAG,GAAG,EAAE;gBAAE,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,aAAa;YACrE,IAAI,KAAK,GAAG,GAAG,EAAE;gBACf,+GAA+G;gBAC/G,YAAY,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;gBACtB,GAAG,GAAG,CAAC,GAAG,KAAK,EAAE,CAAC,CAAC,qBAAqB;gBACxC,GAAG,GAAG,CAAC,CAAC,CAAC;gBAET,IAAI,MAAM,CAAC,MAAM,GAAG,eAAe,CAAC,MAAM;oBAAE,SAAS;aACtD;iBAAM,IAAI,GAAG,KAAK,CAAC,CAAC,EAAE;gBACrB,MAAM,IAAI,YAAY,CAAC,GAAG,CAAC,CAAC;aAC7B;YAED,eAAe,IAAI,MAAM,CAAC;YAC1B,MAAM,GAAG,EAAE,CAAC;SACb;QAED,OAAO,eAAe,CAAC;IACzB,CAAC;CACF;AA5JD,kCA4JC;AAED,sFAAsF;AACtF,SAAS,eAAe,CAAC,aAAqB;IAC5C,yDAAyD;IACzD,IAAI,KAAK,GAAG,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;IAC5C,IAAI,MAAM,IAAI,KAAK,EAAE;QACnB,IAAI,KAAK,IAAI,MAAM,EAAE;YACnB,MAAM,QAAQ,GAAG,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,6DAA6D;YAE/G,IAAI,MAAM,IAAI,QAAQ,IAAI,QAAQ,IAAI,MAAM,EAAE;gBAC5C,iEAAiE;gBACjE,KAAK,GAAG,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,GAAG,QAAQ,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC;gBACnD,IAAI,KAAK,GAAG,MAAM;oBAChB,OAAO,YAAY,CACjB,CAAC,IAAI,CAAC,WAAW,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAC,EACvC,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC,cAAc,EAC3D,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,cAAc,EAC1D,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC,cAAc,CACpD,CAAC;aACL;;gBAAM,KAAK,GAAG,KAAK,CAAC,sBAAsB,CAAC,CAAC,yDAAyD;SACvG;aAAM,IAAI,KAAK,IAAI,MAAM,EAAE;YAC1B,KAAK,GAAG,KAAK,CAAC,sBAAsB,CAAC,CAAC,yDAAyD;SAChG;KACF;IACD;WACO,CAAC,IAAI,KAAK,IAAI,MAAM,EAAE;QAC3B,OAAO,YAAY,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC;KAC7E;;QACC,OAAO,YAAY,CACjB,CAAC,GAAG,CAAC,UAAU,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAC,EACrC,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,cAAc,EAC1D,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC,cAAc,CACpD,CAAC;AACN,CAAC;AAED,MAAa,WAAW;IACf,MAAM,CAAC,WAAmB;QAC/B,kEAAkE;QAClE,kEAAkE;QAClE,MAAM,aAAa,GAAG,WAAW,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,GAAG,WAAW,EAClE,GAAG,GAAG,aAAa,CAAC,MAAM,GAAG,CAAC,CAAC;QACjC,IAAI,MAAM,GAAG,IAAI,UAAU,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QAClD,IAAI,SAAqB,CAAC;QAC1B,IAAI,CAAC,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,EACP,KAAK,GAAG,CAAC,EACT,QAAQ,GAAG,CAAC,CAAC;QACf,IAAI,mBAAmB,GAAG,CAAC,UAAU,CAAC,CAAC,mCAAmC;QAC1E,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE;YACzD,KAAK,GAAG,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;YACxC,IAAI,KAAK,IAAI,MAAM,EAAE;gBACnB,MAAM,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;aACrB;iBAAM,IAAI,KAAK,IAAI,MAAM,EAAE;gBAC1B,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;gBACxC,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC;aAC7D;iBAAM;gBACL,UAAU,EAAE;oBACV,IAAI,MAAM,IAAI,KAAK,EAAE;wBACnB,IAAI,KAAK,IAAI,MAAM,EAAE;4BACnB,QAAQ,GAAG,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,6DAA6D;4BAEzH,IAAI,MAAM,IAAI,QAAQ,IAAI,QAAQ,IAAI,MAAM,EAAE;gCAC5C,iEAAiE;gCACjE,KAAK,GAAG,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,GAAG,QAAQ,GAAG,SAAS,CAAC,GAAG,CAAC,CAAC;gCACnD,IAAI,KAAK,GAAG,MAAM,EAAE;oCAClB,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,WAAW,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC;oCACtD,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC,cAAc,CAAC;oCAC5F,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,cAAc,CAAC;oCAC3F,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC,cAAc,CAAC;oCACpF,SAAS;iCACV;gCACD,MAAM,UAAU,CAAC;6BAClB;4BACD,KAAK,GAAG,KAAK,CAAC,sBAAsB,CAAC,CAAC,yDAAyD;yBAChG;6BAAM,IAAI,KAAK,IAAI,MAAM,EAAE;4BAC1B,KAAK,GAAG,KAAK,CAAC,sBAAsB,CAAC,CAAC,yDAAyD;yBAChG;qBACF;oBACD,IAAI,CAAC,mBAAmB,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE;wBACpE,mBAAmB,GAAG,IAAI,CAAC;wBAC3B,SAAS,GAAG,IAAI,UAAU,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;wBACpC,SAAS,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;wBACtB,MAAM,GAAG,SAAS,CAAC;qBACpB;iBACF;gBACD,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,UAAU,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC;gBACpD,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,cAAc,CAAC;gBAC3F,MAAM,CAAC,CAAC,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC,cAAc,CAAC;aACrF;SACF;QACD,OAAO,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;IACrE,CAAC;IAEM,UAAU,CAAC,WAAmB,EAAE,KAAiB;QACtD,MAAM,aAAa,GAAG,WAAW,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,WAAW,CAAC,CAAC,OAAO,CAAC,aAAa,EAAE,eAAe,CAAC,CAAC;QAC/G,IAAI,GAAG,GAAG,aAAa,CAAC,MAAM,GAAG,CAAC,EAChC,CAAC,GAAG,CAAC,EACL,IAAI,GAAG,CAAC,EACR,IAAI,GAAG,CAAC,CAAC;QACX,MAAM,QAAQ,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;QAClC,MAAM,WAAW,GAAG,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC;QAC3C,IAAI,QAAQ,GAAG,GAAG;YAAE,GAAG,GAAG,QAAQ,CAAC;QACnC,QAAQ,EAAE;YACR,OAAO,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE;gBAC/B,IAAI,GAAG,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;gBACvC,QAAQ,IAAI,IAAI,CAAC,EAAE;oBACjB,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC;wBACJ,IAAI,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;oBACxB,oBAAoB;oBACpB,KAAK,CAAC,CAAC;oBACP,KAAK,CAAC,CAAC;oBACP,KAAK,EAAE,CAAC;oBACR,KAAK,EAAE;wBACL,MAAM;oBACR,KAAK,EAAE,CAAC;oBACR,KAAK,EAAE;wBACL,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,QAAQ,EAAE;4BAC5B,IAAI,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;4BACtB,MAAM;yBACP;oBACH,KAAK,EAAE;wBACL,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,QAAQ,EAAE;4BAC5B,uEAAuE;4BACvE,IAAI,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;4BACtB,MAAM;yBACP;oBACH,KAAK,EAAE;wBACL,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,QAAQ,EAAE;4BAC5B,IAAI,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;4BACtB,MAAM;yBACP;oBACH;wBACE,MAAM,QAAQ,CAAC;iBAClB;gBACD,uCAAuC;gBACvC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;aACjB;SACF;QACD,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,GAAG,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;IACvE,CAAC;CACF;AAhHD,kCAgHC"}
package/lib/errors.d.ts DELETED
@@ -1,16 +0,0 @@
1
- export declare class ValueError extends Error {
2
- readonly name: string;
3
- }
4
- export declare class DataConverterError extends Error {
5
- readonly name: string;
6
- }
7
- /**
8
- * Used in different parts of the project to signal that something unexpected has happened
9
- */
10
- export declare class IllegalStateError extends Error {
11
- readonly name: string;
12
- }
13
- /**
14
- * Get error message from an Error or string or return undefined
15
- */
16
- export declare function errorMessage(err: unknown): string | undefined;