@temporalio/client
Advanced tools
Comparing version 1.0.1 to 1.1.0
@@ -1,5 +0,5 @@ | ||
/// <reference types="long" /> | ||
import type { SearchAttributes } from '@temporalio/internal-workflow-common'; | ||
import { temporal } from '@temporalio/proto'; | ||
import type * as grpc from '@grpc/grpc-js'; | ||
import Long from 'long'; | ||
export interface WorkflowExecution { | ||
@@ -6,0 +6,0 @@ workflowId: string; |
@@ -522,2 +522,5 @@ "use strict"; | ||
}, | ||
// Technically safe to convert to number, unfortunately this was overlooked when this was originally | ||
// implemented. | ||
// Max history length is 50k, which is much less than Number.MAX_SAFE_INTEGER | ||
historyLength: raw.workflowExecutionInfo.historyLength, | ||
@@ -524,0 +527,0 @@ startTime: (0, internal_workflow_common_1.tsToDate)(raw.workflowExecutionInfo.startTime), |
{ | ||
"name": "@temporalio/client", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"description": "Temporal.io SDK Client sub-package", | ||
@@ -17,6 +17,8 @@ "main": "lib/index.js", | ||
"@grpc/grpc-js": "^1.6.7", | ||
"@temporalio/common": "^1.0.1", | ||
"@temporalio/internal-non-workflow-common": "^1.0.1", | ||
"@temporalio/internal-workflow-common": "^1.0.1", | ||
"@temporalio/proto": "^1.0.1", | ||
"@temporalio/common": "^1.1.0", | ||
"@temporalio/internal-non-workflow-common": "^1.1.0", | ||
"@temporalio/internal-workflow-common": "^1.1.0", | ||
"@temporalio/proto": "^1.1.0", | ||
"@types/long": "^5.0.0", | ||
"long": "^5.2.0", | ||
"ms": "^2.1.3", | ||
@@ -37,3 +39,3 @@ "protobufjs": "^7.0.0", | ||
], | ||
"gitHead": "a1dae539e72b6b088b400998d7bef482e8ed52f1" | ||
"gitHead": "132f23a47a93fecf3f39836b31f08ea837b30320" | ||
} |
import type { SearchAttributes } from '@temporalio/internal-workflow-common'; | ||
import { temporal } from '@temporalio/proto'; | ||
import type * as grpc from '@grpc/grpc-js'; | ||
import Long from 'long'; | ||
@@ -5,0 +6,0 @@ export interface WorkflowExecution { |
@@ -856,2 +856,5 @@ import { status as grpcStatus } from '@grpc/grpc-js'; | ||
}, | ||
// Technically safe to convert to number, unfortunately this was overlooked when this was originally | ||
// implemented. | ||
// Max history length is 50k, which is much less than Number.MAX_SAFE_INTEGER | ||
historyLength: raw.workflowExecutionInfo!.historyLength!, | ||
@@ -858,0 +861,0 @@ startTime: tsToDate(raw.workflowExecutionInfo!.startTime!), |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
211873
4263
10
+ Added@types/long@^5.0.0
+ Addedlong@^5.2.0
+ Added@types/long@5.0.0(transitive)
Updated@temporalio/common@^1.1.0
Updated@temporalio/proto@^1.1.0