@pushwoosh/rpc-v2-http-api-data 0.1.948 → 0.1.949
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/data.js +3 -0
- package/geozones.d.ts +2 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -10391,6 +10391,9 @@ export const data = {
|
|
|
10391
10391
|
},
|
|
10392
10392
|
"perPage": {
|
|
10393
10393
|
"type": "number"
|
|
10394
|
+
},
|
|
10395
|
+
"searchByName": {
|
|
10396
|
+
"type": "string"
|
|
10394
10397
|
}
|
|
10395
10398
|
}
|
|
10396
10399
|
},
|
package/geozones.d.ts
CHANGED
|
@@ -101,6 +101,8 @@ export type ListGeozonesRequest = {
|
|
|
101
101
|
orderDirection?: ListGeozonesRequest_OrderDirection;
|
|
102
102
|
page?: number;
|
|
103
103
|
perPage?: number;
|
|
104
|
+
/** like %name% on name or code */
|
|
105
|
+
searchByName?: string;
|
|
104
106
|
};
|
|
105
107
|
export type ListGeozonesResponse = {
|
|
106
108
|
geozones: Geozone[];
|