@epilot/pricing-client 3.35.1-alpha.1 → 3.35.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/dist/openapi.d.ts +4 -0
- package/dist/openapi.json +6 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -4599,6 +4599,10 @@ declare namespace Components {
|
|
|
4599
4599
|
context: JourneyContext;
|
|
4600
4600
|
}
|
|
4601
4601
|
export interface SearchExternalCatalogResult {
|
|
4602
|
+
/**
|
|
4603
|
+
* The number os results returned.
|
|
4604
|
+
*/
|
|
4605
|
+
hits: number;
|
|
4602
4606
|
results: /* An external product & price information (already computed) from an external catalog. */ ExternalProduct[];
|
|
4603
4607
|
}
|
|
4604
4608
|
/**
|
package/dist/openapi.json
CHANGED
|
@@ -5296,6 +5296,10 @@
|
|
|
5296
5296
|
"SearchExternalCatalogResult": {
|
|
5297
5297
|
"type": "object",
|
|
5298
5298
|
"properties": {
|
|
5299
|
+
"hits": {
|
|
5300
|
+
"type": "number",
|
|
5301
|
+
"description": "The number os results returned."
|
|
5302
|
+
},
|
|
5299
5303
|
"results": {
|
|
5300
5304
|
"type": "array",
|
|
5301
5305
|
"items": {
|
|
@@ -5304,7 +5308,8 @@
|
|
|
5304
5308
|
}
|
|
5305
5309
|
},
|
|
5306
5310
|
"required": [
|
|
5307
|
-
"results"
|
|
5311
|
+
"results",
|
|
5312
|
+
"hits"
|
|
5308
5313
|
]
|
|
5309
5314
|
},
|
|
5310
5315
|
"ExternalProduct": {
|