@airticketss/contracts 1.4.0 → 1.4.1

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/ts/payment.ts CHANGED
@@ -31,6 +31,8 @@ export interface ProcessPaymentEventRequest {
31
31
  providerMethodId: string;
32
32
  cardFirst6: string;
33
33
  cardLast4: string;
34
+ bank: string;
35
+ brand: string;
34
36
  }
35
37
 
36
38
  export interface ProcessPaymentEventResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airticketss/contracts",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Protobuf definitions and generate TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -33,6 +33,8 @@ message ProcessPaymentEventRequest {
33
33
  string provider_method_id = 6;
34
34
  string card_first6 = 7;
35
35
  string card_last4 = 8;
36
+ string bank = 9;
37
+ string brand = 10;
36
38
  }
37
39
 
38
40
  message ProcessPaymentEventResponse {