@temporalio/proto 0.23.0 → 1.0.0
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.
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/package.json +7 -9
- package/protos/index.d.ts +1 -1
- package/protos/json-module.js +1753 -481
- package/protos/root.d.ts +18911 -13025
- package/src/patch-protobuf-root.ts +66 -0
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Temporal TypeScript SDK
|
|
|
2
2
|
|
|
3
3
|
MIT License
|
|
4
4
|
|
|
5
|
-
Copyright (c) 2021 Temporal Technologies
|
|
5
|
+
Copyright (c) 2021 Temporal Technologies Inc. All Rights Reserved
|
|
6
6
|
|
|
7
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
8
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@temporalio/proto)
|
|
4
4
|
|
|
5
|
-
Part of [Temporal](https://temporal.io)'s TypeScript SDK (see [docs](https://docs.temporal.io/
|
|
5
|
+
Part of [Temporal](https://temporal.io)'s TypeScript SDK (see [docs](https://docs.temporal.io/typescript/introduction/) and [samples](https://github.com/temporalio/samples-typescript)).
|
|
6
6
|
|
|
7
7
|
You should usually not be using this package directly. Instead use:
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporalio/proto",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Temporal.io SDK compiled protobuf definitions",
|
|
5
5
|
"main": "protos/index.js",
|
|
6
6
|
"types": "protos/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"protos/",
|
|
9
|
+
"src/",
|
|
9
10
|
"lib/"
|
|
10
11
|
],
|
|
11
12
|
"scripts": {
|
|
@@ -16,15 +17,12 @@
|
|
|
16
17
|
"workflow",
|
|
17
18
|
"isolate"
|
|
18
19
|
],
|
|
19
|
-
"author": "
|
|
20
|
+
"author": "Temporal Technologies Inc. <sdk@temporal.io>",
|
|
20
21
|
"license": "MIT",
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@types/long": "^4.0.
|
|
23
|
-
"long": "^
|
|
24
|
-
"protobufjs": "
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"glob": "^7.1.7"
|
|
23
|
+
"@types/long": "^4.0.2",
|
|
24
|
+
"long": "^5.2.0",
|
|
25
|
+
"protobufjs": "6.11.2"
|
|
28
26
|
},
|
|
29
27
|
"bugs": {
|
|
30
28
|
"url": "https://github.com/temporalio/sdk-typescript/issues"
|
|
@@ -33,5 +31,5 @@
|
|
|
33
31
|
"publishConfig": {
|
|
34
32
|
"access": "public"
|
|
35
33
|
},
|
|
36
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "c4fc4dc608bf58701c11b6ae02d1d63b4457718d"
|
|
37
35
|
}
|
package/protos/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
*
|
|
26
26
|
* The source protos are in [sdk-core/protos/api_upstream/temporal/api/](https://github.com/temporalio/sdk-core/tree/ts-release/protos/api_upstream/temporal/api), for example [`RetryPolicy` in `temporal/api/common/v1/message.proto`](https://github.com/temporalio/sdk-core/blob/85454935e39f789aaaa81f8a05773f8e2cdbcde2/protos/api_upstream/temporal/api/common/v1/message.proto#L96).
|
|
27
27
|
*
|
|
28
|
-
* The gRPC service methods are documented in the proto comments and in the corresponding [`tctl` docs](https://docs.temporal.io/
|
|
28
|
+
* The gRPC service methods are documented in the proto comments and in the corresponding [`tctl` docs](https://docs.temporal.io/tctl/).
|
|
29
29
|
* @module
|
|
30
30
|
*/
|
|
31
31
|
|