@qite/tide-client 1.1.149 → 1.1.151

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.
@@ -3,6 +3,7 @@ export interface PackagingAccommodationRequest {
3
3
  officeId: number;
4
4
  catalogueId: number;
5
5
  searchConfigurationId: number;
6
+ portalId?: number | null;
6
7
  vendorConfigurationId?: number | null;
7
8
  language: string;
8
9
  serviceType?: number | null;
@@ -3,6 +3,7 @@ export interface PackagingAccommodationResponse {
3
3
  name: string;
4
4
  serviceType: number;
5
5
  vendorType?: number | null;
6
+ vendorId?: number | null;
6
7
  countryId?: number | null;
7
8
  countryName: string;
8
9
  regionId?: number | null;
@@ -16,3 +16,4 @@ export * from "./tide-location";
16
16
  export * from "./portal";
17
17
  export * from "./airport";
18
18
  export * from "./website-configuration";
19
+ export * from "./style-sheet";
@@ -0,0 +1,7 @@
1
+ export interface StyleSheet {
2
+ id: number;
3
+ folderId?: number;
4
+ name: string;
5
+ format: string;
6
+ body: string;
7
+ }
@@ -7,6 +7,7 @@ import {
7
7
  TideClientConfig,
8
8
  TideLocation,
9
9
  WebsiteConfiguration,
10
+ StyleSheet,
10
11
  } from "../types";
11
12
  /**
12
13
  * api/web/crmcontact
@@ -69,3 +70,8 @@ export declare const getWebsiteConfiguration: (
69
70
  id: number,
70
71
  signal?: AbortSignal | undefined
71
72
  ) => Promise<WebsiteConfiguration>;
73
+ export declare const getStyleSheet: (
74
+ config: TideClientConfig,
75
+ id: number,
76
+ signal?: AbortSignal | undefined
77
+ ) => Promise<StyleSheet>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.149",
3
+ "version": "1.1.151",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {