Skip to content

Commit 9f11073

Browse files
committed
chore: only emit action count in Actions message
1 parent 43c6f36 commit 9f11073

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

openapi/openapiv2.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10048,9 +10048,6 @@
1004810048
"v1Action": {
1004910049
"type": "object",
1005010050
"properties": {
10051-
"id": {
10052-
"type": "string"
10053-
},
1005410051
"actionCount": {
1005510052
"type": "integer",
1005610053
"format": "int32"

openapi/openapiv3.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7240,8 +7240,6 @@ components:
72407240
Action:
72417241
type: object
72427242
properties:
7243-
id:
7244-
type: string
72457243
actionCount:
72467244
type: integer
72477245
format: int32

temporal/api/server/v1/message.proto

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ message ActionsMetering {
1515
}
1616

1717
message Action {
18-
string id = 1;
19-
int32 action_count = 2;
18+
int32 action_count = 1;
2019
}

0 commit comments

Comments
 (0)