@epilot/pricing-client 3.17.5 → 3.17.6

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/dist/openapi.d.ts CHANGED
@@ -2652,6 +2652,10 @@ declare namespace Components {
2652
2652
  */
2653
2653
  city: string | null;
2654
2654
  }
2655
+ /**
2656
+ * The search providers payload
2657
+ */
2658
+ export type SearchStreetsResult = /* The street entity */ Street[];
2655
2659
  /**
2656
2660
  * The street entity
2657
2661
  */
@@ -3083,7 +3087,7 @@ declare namespace Paths {
3083
3087
  }
3084
3088
  export type RequestBody = /* A search streets payload */ Components.Schemas.SearchStreetsParams;
3085
3089
  namespace Responses {
3086
- export type $200 = /* The search providers payload */ Components.Schemas.SearchProvidersResult;
3090
+ export type $200 = /* The search providers payload */ Components.Schemas.SearchStreetsResult;
3087
3091
  export type $400 = Components.Schemas.Error;
3088
3092
  export type $403 = Components.Schemas.Error;
3089
3093
  }
package/dist/openapi.json CHANGED
@@ -971,7 +971,7 @@
971
971
  "content": {
972
972
  "application/json": {
973
973
  "schema": {
974
- "$ref": "#/components/schemas/SearchProvidersResult"
974
+ "$ref": "#/components/schemas/SearchStreetsResult"
975
975
  },
976
976
  "examples": {
977
977
  "Response with available streets": {
@@ -2551,6 +2551,13 @@
2551
2551
  "password"
2552
2552
  ]
2553
2553
  },
2554
+ "SearchStreetsResult": {
2555
+ "description": "The search providers payload",
2556
+ "type": "array",
2557
+ "items": {
2558
+ "$ref": "#/components/schemas/Street"
2559
+ }
2560
+ },
2554
2561
  "SearchProvidersResult": {
2555
2562
  "description": "The search providers payload",
2556
2563
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.17.5",
3
+ "version": "3.17.6",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",