@readytomog/contracts 1.5.4 → 1.5.5

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/gen/payment.ts CHANGED
@@ -21,6 +21,7 @@ export interface Transaction {
21
21
  amount: number;
22
22
  userId: string;
23
23
  planId: string;
24
+ subscriptionId: string;
24
25
  }
25
26
 
26
27
  export interface GetHistoryResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readytomog/contracts",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Protobuf definitions and generated Typescript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -25,6 +25,7 @@ message Transaction {
25
25
  int32 amount = 7;
26
26
  string userId = 8;
27
27
  string planId = 9;
28
+ string subscriptionId = 10;
28
29
  }
29
30
 
30
31
  message GetHistoryResponse {