@openvoy/openvoy-typescriptmodels 0.0.6381 → 0.0.6401
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 +32 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -265,6 +265,9 @@ export interface EntityChanged<T> {
|
|
|
265
265
|
type?: any;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
+
export interface Exception extends Throwable {
|
|
269
|
+
}
|
|
270
|
+
|
|
268
271
|
export interface ExchangeRate {
|
|
269
272
|
exchangeRateId?: ExchangeRateId;
|
|
270
273
|
expiry?: string;
|
|
@@ -290,6 +293,10 @@ export interface ExportRow {
|
|
|
290
293
|
tourCount?: number;
|
|
291
294
|
}
|
|
292
295
|
|
|
296
|
+
export interface ExternalApiException extends RuntimeException {
|
|
297
|
+
response?: string;
|
|
298
|
+
}
|
|
299
|
+
|
|
293
300
|
export interface FacetFilter {
|
|
294
301
|
facetName?: string;
|
|
295
302
|
values?: any[];
|
|
@@ -728,6 +735,9 @@ export interface ReviewSummary {
|
|
|
728
735
|
rating?: number;
|
|
729
736
|
}
|
|
730
737
|
|
|
738
|
+
export interface RuntimeException extends Exception {
|
|
739
|
+
}
|
|
740
|
+
|
|
731
741
|
export interface SearchCategories extends FacetedSearch<Page> {
|
|
732
742
|
activeOnly?: boolean;
|
|
733
743
|
term?: string;
|
|
@@ -767,6 +777,9 @@ export interface SeoSettings {
|
|
|
767
777
|
seoTitle?: string;
|
|
768
778
|
}
|
|
769
779
|
|
|
780
|
+
export interface Serializable {
|
|
781
|
+
}
|
|
782
|
+
|
|
770
783
|
export interface SerpSettings {
|
|
771
784
|
marketingButtonEnabled?: boolean;
|
|
772
785
|
marketingButtonText?: string;
|
|
@@ -808,6 +821,17 @@ export interface SortableSearch {
|
|
|
808
821
|
sortableFilters?: SortableFilter<any>[];
|
|
809
822
|
}
|
|
810
823
|
|
|
824
|
+
export interface StackTraceElement extends Serializable {
|
|
825
|
+
classLoaderName?: string;
|
|
826
|
+
className?: string;
|
|
827
|
+
fileName?: string;
|
|
828
|
+
lineNumber?: number;
|
|
829
|
+
methodName?: string;
|
|
830
|
+
moduleName?: string;
|
|
831
|
+
moduleVersion?: string;
|
|
832
|
+
nativeMethod?: boolean;
|
|
833
|
+
}
|
|
834
|
+
|
|
811
835
|
export interface Supplier<T> {
|
|
812
836
|
}
|
|
813
837
|
|
|
@@ -932,6 +956,14 @@ export interface TagUpdate extends TagCommand {
|
|
|
932
956
|
export interface TagUpdater {
|
|
933
957
|
}
|
|
934
958
|
|
|
959
|
+
export interface Throwable extends Serializable {
|
|
960
|
+
cause?: Throwable;
|
|
961
|
+
localizedMessage?: string;
|
|
962
|
+
message?: string;
|
|
963
|
+
stackTrace?: StackTraceElement[];
|
|
964
|
+
suppressed?: Throwable[];
|
|
965
|
+
}
|
|
966
|
+
|
|
935
967
|
export interface Tour {
|
|
936
968
|
attractions?: string[];
|
|
937
969
|
cityId?: string;
|
package/package.json
CHANGED