@qite/tide-client 1.1.112 → 1.1.113

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.
@@ -0,0 +1,10 @@
1
+ export interface Tag {
2
+ id: number;
3
+ name: string;
4
+ tagGroupId: number;
5
+ localizedNames: TagLocalization[];
6
+ }
7
+ export interface TagLocalization {
8
+ languageCode: string;
9
+ value: string;
10
+ }
@@ -56,3 +56,7 @@ export declare const generateBookingAccommodations: (
56
56
  ) => Promise<{
57
57
  [key: string]: string;
58
58
  }>;
59
+ export declare const getTags: (
60
+ config: TideClientConfig,
61
+ signal?: AbortSignal | undefined
62
+ ) => Promise<[Affiliate]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.112",
3
+ "version": "1.1.113",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {