@mamindom/contracts 1.0.37 → 1.0.38

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.
@@ -91,6 +91,7 @@ export interface UpdateAddressRequest {
91
91
  building?: string | undefined;
92
92
  apartment?: string | undefined;
93
93
  deliveryRef?: string | undefined;
94
+ isDefault?: boolean | undefined;
94
95
  }
95
96
  export interface AddressResponse {
96
97
  address: Address | undefined;
@@ -137,6 +137,7 @@ message UpdateAddressRequest {
137
137
  optional string building = 6;
138
138
  optional string apartment = 7;
139
139
  optional string delivery_ref = 8;
140
+ optional bool is_default = 9;
140
141
  }
141
142
 
142
143
  message AddressResponse {
package/gen/users.ts CHANGED
@@ -116,6 +116,7 @@ export interface UpdateAddressRequest {
116
116
  building?: string | undefined;
117
117
  apartment?: string | undefined;
118
118
  deliveryRef?: string | undefined;
119
+ isDefault?: boolean | undefined;
119
120
  }
120
121
 
121
122
  export interface AddressResponse {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.37",
4
+ "version": "1.0.38",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
package/proto/users.proto CHANGED
@@ -137,6 +137,7 @@ message UpdateAddressRequest {
137
137
  optional string building = 6;
138
138
  optional string apartment = 7;
139
139
  optional string delivery_ref = 8;
140
+ optional bool is_default = 9;
140
141
  }
141
142
 
142
143
  message AddressResponse {