@openvoy/openvoy-typescriptmodels 0.0.4511 → 0.0.4521
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/core.d.ts +10 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -523,6 +523,11 @@ export interface GetDestinationById {
|
|
|
523
523
|
type?: DestinationType;
|
|
524
524
|
}
|
|
525
525
|
|
|
526
|
+
export interface GetDestinationsById {
|
|
527
|
+
destinationIds?: string[];
|
|
528
|
+
type?: DestinationType;
|
|
529
|
+
}
|
|
530
|
+
|
|
526
531
|
export interface GetExchangeRate {
|
|
527
532
|
sourceCurrency?: string;
|
|
528
533
|
targetCurrency?: string;
|
|
@@ -555,6 +560,11 @@ export interface GetTagInfo {
|
|
|
555
560
|
tagId?: string;
|
|
556
561
|
}
|
|
557
562
|
|
|
563
|
+
export interface GetTagInfosById {
|
|
564
|
+
destinationType?: DestinationType;
|
|
565
|
+
ids?: string[];
|
|
566
|
+
}
|
|
567
|
+
|
|
558
568
|
export interface GetTagSummary {
|
|
559
569
|
alias?: string;
|
|
560
570
|
destinationId?: string;
|
package/package.json
CHANGED