@qite/tide-client 1.1.112 → 1.1.114

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
+ }
@@ -5,6 +5,7 @@ import {
5
5
  GenerateBookingAccommodationRequest,
6
6
  TideClientConfig,
7
7
  } from "../types";
8
+ import { Tag } from "../types/web/tag";
8
9
  /**
9
10
  * api/web/crmcontact
10
11
  * Creates a CRM contact.
@@ -56,3 +57,7 @@ export declare const generateBookingAccommodations: (
56
57
  ) => Promise<{
57
58
  [key: string]: string;
58
59
  }>;
60
+ export declare const getTags: (
61
+ config: TideClientConfig,
62
+ signal?: AbortSignal | undefined
63
+ ) => Promise<[Tag]>;
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.114",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {