@openvoy/openvoy-typescriptmodels 0.0.5211 → 0.0.5231

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.
Files changed (2) hide show
  1. package/core.d.ts +7 -9
  2. package/package.json +1 -1
package/core.d.ts CHANGED
@@ -543,6 +543,11 @@ export interface GetTagById {
543
543
  tagId?: string;
544
544
  }
545
545
 
546
+ export interface GetTagForProvider {
547
+ name?: string;
548
+ providerId?: TagProviderId;
549
+ }
550
+
546
551
  export interface GetTagInfo {
547
552
  destinationType?: DestinationType;
548
553
  tagId?: string;
@@ -763,8 +768,8 @@ export interface Tag {
763
768
  enabled?: boolean;
764
769
  internalDetails?: TagInternalDetails;
765
770
  parentTags?: { [index: string]: TagDetails };
766
- providerAlias?: string;
767
- providerDetails?: TagProviderDetails;
771
+ providerAliases?: string[];
772
+ providerDetails?: { [index: string]: TagProviderDetails };
768
773
  root?: boolean;
769
774
  tagId?: string;
770
775
  }
@@ -1034,13 +1039,6 @@ export interface UpsertFeaturedCountriesFromRefData {
1034
1039
  refData?: Supplier<CountryDetails[]>;
1035
1040
  }
1036
1041
 
1037
- /**
1038
- * @deprecated for removal
1039
- */
1040
- export interface UpsertParentTags extends TagUpdate {
1041
- parentTags?: { [index: string]: TagDetails };
1042
- }
1043
-
1044
1042
  export interface UpsertPublicKey extends UserUpdate {
1045
1043
  issuedAt?: string;
1046
1044
  keyId?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@openvoy/openvoy-typescriptmodels",
3
- "version": "0.0.5211",
3
+ "version": "0.0.5231",
4
4
  "types": "core.d.ts"
5
5
  }