@juhuu/sdk-ts 1.2.54 → 1.2.56

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/dist/index.d.mts CHANGED
@@ -192,7 +192,7 @@ type GeoPoint = {
192
192
  type: "Point";
193
193
  coordinates: [number, number];
194
194
  };
195
- type visualPriority = "none" | "highlight" | "important";
195
+ type VisualPriority = "none" | "highlight" | "important";
196
196
  type PlatformUrl = {
197
197
  ios: string;
198
198
  android: string;
@@ -1806,7 +1806,7 @@ declare namespace JUHUU {
1806
1806
  readonly object: "point";
1807
1807
  location: GeoPoint;
1808
1808
  altitudeRange: [number, number];
1809
- invalidAt: Date;
1809
+ invalidAt: Date | null;
1810
1810
  purposeArray: Purpose[];
1811
1811
  };
1812
1812
  export interface Single extends Base {
@@ -1817,6 +1817,7 @@ declare namespace JUHUU {
1817
1817
  iconLight: string | null;
1818
1818
  iconDark: string | null;
1819
1819
  utilization: Utilization | null;
1820
+ visualPriority: VisualPriority;
1820
1821
  }
1821
1822
  export interface Aggregation extends Base {
1822
1823
  type: "aggregation";
@@ -2115,6 +2116,7 @@ declare namespace JUHUU {
2115
2116
  technologyArray: JUHUU.Technology[];
2116
2117
  invalidAt: Date;
2117
2118
  source: "fluctuo" | null;
2119
+ articleId: string | null;
2118
2120
  };
2119
2121
  interface PhysicalProduct extends Base {
2120
2122
  type: "physicalProduct";
@@ -2578,4 +2580,4 @@ declare namespace JUHUU {
2578
2580
  }
2579
2581
  }
2580
2582
 
2581
- export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, type Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type hexColor, type visualPriority };
2583
+ export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, type Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.d.ts CHANGED
@@ -192,7 +192,7 @@ type GeoPoint = {
192
192
  type: "Point";
193
193
  coordinates: [number, number];
194
194
  };
195
- type visualPriority = "none" | "highlight" | "important";
195
+ type VisualPriority = "none" | "highlight" | "important";
196
196
  type PlatformUrl = {
197
197
  ios: string;
198
198
  android: string;
@@ -1806,7 +1806,7 @@ declare namespace JUHUU {
1806
1806
  readonly object: "point";
1807
1807
  location: GeoPoint;
1808
1808
  altitudeRange: [number, number];
1809
- invalidAt: Date;
1809
+ invalidAt: Date | null;
1810
1810
  purposeArray: Purpose[];
1811
1811
  };
1812
1812
  export interface Single extends Base {
@@ -1817,6 +1817,7 @@ declare namespace JUHUU {
1817
1817
  iconLight: string | null;
1818
1818
  iconDark: string | null;
1819
1819
  utilization: Utilization | null;
1820
+ visualPriority: VisualPriority;
1820
1821
  }
1821
1822
  export interface Aggregation extends Base {
1822
1823
  type: "aggregation";
@@ -2115,6 +2116,7 @@ declare namespace JUHUU {
2115
2116
  technologyArray: JUHUU.Technology[];
2116
2117
  invalidAt: Date;
2117
2118
  source: "fluctuo" | null;
2119
+ articleId: string | null;
2118
2120
  };
2119
2121
  interface PhysicalProduct extends Base {
2120
2122
  type: "physicalProduct";
@@ -2578,4 +2580,4 @@ declare namespace JUHUU {
2578
2580
  }
2579
2581
  }
2580
2582
 
2581
- export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, type Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type hexColor, type visualPriority };
2583
+ export { type AccessControlListElement, type Address, type AutoRenewMode, type BusinessType, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type FuelType, type GeneralSettings, type GeoPoint, type GraphNode, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Offer, type OfferTime, type Parameter, type Party, type PaymentMethod, type PaymentReason, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformUrl, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, type Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.54",
3
+ "version": "1.2.56",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",