@wenlarge/communication 1.5.2 → 1.5.3

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.
@@ -32,14 +32,12 @@ export interface CreateCheckoutSessionRequest {
32
32
  planSlug: string;
33
33
  successUrl: string;
34
34
  cancelUrl: string;
35
- idempotencyKey: string;
36
35
  }
37
36
  export interface CreateCheckoutSessionResponse {
38
37
  checkoutUrl: string;
39
38
  }
40
39
  export interface CancelGrantRequest {
41
40
  grantId: string;
42
- idempotencyKey: string;
43
41
  }
44
42
  export interface FindManyEntitlementGrantRequest {
45
43
  skip: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenlarge/communication",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Shared gRPC proto interfaces and generated clients for Wenlarge microservices.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -48,7 +48,6 @@ message CreateCheckoutSessionRequest {
48
48
  string planSlug = 1;
49
49
  string successUrl = 2;
50
50
  string cancelUrl = 3;
51
- string idempotencyKey = 4;
52
51
  }
53
52
 
54
53
  message CreateCheckoutSessionResponse {
@@ -57,7 +56,6 @@ message CreateCheckoutSessionResponse {
57
56
 
58
57
  message CancelGrantRequest {
59
58
  string grantId = 1;
60
- string idempotencyKey = 2;
61
59
  }
62
60
 
63
61
  message FindManyEntitlementGrantRequest {
@@ -46,7 +46,6 @@ export interface CreateCheckoutSessionRequest {
46
46
  planSlug: string;
47
47
  successUrl: string;
48
48
  cancelUrl: string;
49
- idempotencyKey: string;
50
49
  }
51
50
 
52
51
  export interface CreateCheckoutSessionResponse {
@@ -55,7 +54,6 @@ export interface CreateCheckoutSessionResponse {
55
54
 
56
55
  export interface CancelGrantRequest {
57
56
  grantId: string;
58
- idempotencyKey: string;
59
57
  }
60
58
 
61
59
  export interface FindManyEntitlementGrantRequest {