@openvoy/openvoy-typescriptmodels 0.0.1831 → 0.0.1861
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 +8 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -383,6 +383,10 @@ export interface GetTagByAlias {
|
|
|
383
383
|
alias?: string;
|
|
384
384
|
}
|
|
385
385
|
|
|
386
|
+
export interface GetTagById {
|
|
387
|
+
tagId?: string;
|
|
388
|
+
}
|
|
389
|
+
|
|
386
390
|
export interface GetTagInfo {
|
|
387
391
|
alias?: string;
|
|
388
392
|
}
|
|
@@ -490,6 +494,10 @@ export interface SubContinentInfo {
|
|
|
490
494
|
export interface Supplier<T> {
|
|
491
495
|
}
|
|
492
496
|
|
|
497
|
+
export interface SyncTagInfoWithTours {
|
|
498
|
+
tagId?: string;
|
|
499
|
+
}
|
|
500
|
+
|
|
493
501
|
export interface SystemUserKey {
|
|
494
502
|
issuedAt?: string;
|
|
495
503
|
}
|
package/package.json
CHANGED