@juhuu/sdk-ts 1.2.109 → 1.2.111

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
@@ -199,7 +199,7 @@ type GeoPoint = {
199
199
  coordinates: [number, number];
200
200
  };
201
201
  type VisualPriority = "none" | "highlight" | "important";
202
- type PlatformUrl = {
202
+ type PlatformString = {
203
203
  ios: string;
204
204
  android: string;
205
205
  web: string;
@@ -418,7 +418,7 @@ type GraphNode = {
418
418
  id: string;
419
419
  type: "open.browser";
420
420
  nodeIdArray: string[];
421
- url: PlatformUrl;
421
+ url: PlatformString;
422
422
  } | {
423
423
  id: string;
424
424
  type: "open.phone";
@@ -1834,7 +1834,6 @@ declare namespace JUHUU {
1834
1834
  readonly object: "licenseTemplate";
1835
1835
  name: LocaleString;
1836
1836
  description: LocaleString;
1837
- validFor: "endOfYear" | "endOfMonth" | "endOfWeek" | "endOfDay" | "year" | "always" | "month" | "week" | "day";
1838
1837
  obtainDescription: LocaleString;
1839
1838
  };
1840
1839
  export interface RegexLicenseTemplate extends Base {
@@ -1845,7 +1844,17 @@ declare namespace JUHUU {
1845
1844
  export interface AutomaticLicenseTemplate extends Base {
1846
1845
  type: "automatic";
1847
1846
  }
1848
- export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate;
1847
+ export interface UrlLicenseTemplate extends Base {
1848
+ type: "url";
1849
+ url: PlatformString;
1850
+ propertyId: string | null;
1851
+ attachRedirectUrl: boolean;
1852
+ contentWarning: boolean;
1853
+ attachUserId: boolean;
1854
+ attachPropertyId: boolean;
1855
+ linkText: LocaleString;
1856
+ }
1857
+ export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate | UrlLicenseTemplate;
1849
1858
  export namespace Create {
1850
1859
  type Params = {
1851
1860
  propertyId: string;
@@ -2564,11 +2573,6 @@ declare namespace JUHUU {
2564
2573
  deviceTemplateId: string;
2565
2574
  source: "fluctuo" | null;
2566
2575
  location: GeoPoint | null;
2567
- fuel: {
2568
- type: FuelType;
2569
- level: number;
2570
- } | null;
2571
- rangeRemaining: number | null;
2572
2576
  invalidAt: Date | null;
2573
2577
  connectorId: string | null;
2574
2578
  connectorParameter: string | null;
@@ -2625,11 +2629,6 @@ declare namespace JUHUU {
2625
2629
  description?: string | null;
2626
2630
  latitude?: number | null;
2627
2631
  longitude?: number | null;
2628
- fuel?: {
2629
- type?: FuelType;
2630
- level?: number;
2631
- } | null;
2632
- rangeRemaining?: number | null;
2633
2632
  connectorId?: string | null;
2634
2633
  connectorParameter?: string | null;
2635
2634
  disabled?: boolean;
@@ -2983,4 +2982,4 @@ declare namespace JUHUU {
2983
2982
  }
2984
2983
  }
2985
2984
 
2986
- 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 DevicePermission, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type Frontend, 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 PaymentRefundReason, type PaymentRefundStatus, 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 RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
2985
+ 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 DevicePermission, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type Frontend, 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 PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.d.ts CHANGED
@@ -199,7 +199,7 @@ type GeoPoint = {
199
199
  coordinates: [number, number];
200
200
  };
201
201
  type VisualPriority = "none" | "highlight" | "important";
202
- type PlatformUrl = {
202
+ type PlatformString = {
203
203
  ios: string;
204
204
  android: string;
205
205
  web: string;
@@ -418,7 +418,7 @@ type GraphNode = {
418
418
  id: string;
419
419
  type: "open.browser";
420
420
  nodeIdArray: string[];
421
- url: PlatformUrl;
421
+ url: PlatformString;
422
422
  } | {
423
423
  id: string;
424
424
  type: "open.phone";
@@ -1834,7 +1834,6 @@ declare namespace JUHUU {
1834
1834
  readonly object: "licenseTemplate";
1835
1835
  name: LocaleString;
1836
1836
  description: LocaleString;
1837
- validFor: "endOfYear" | "endOfMonth" | "endOfWeek" | "endOfDay" | "year" | "always" | "month" | "week" | "day";
1838
1837
  obtainDescription: LocaleString;
1839
1838
  };
1840
1839
  export interface RegexLicenseTemplate extends Base {
@@ -1845,7 +1844,17 @@ declare namespace JUHUU {
1845
1844
  export interface AutomaticLicenseTemplate extends Base {
1846
1845
  type: "automatic";
1847
1846
  }
1848
- export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate;
1847
+ export interface UrlLicenseTemplate extends Base {
1848
+ type: "url";
1849
+ url: PlatformString;
1850
+ propertyId: string | null;
1851
+ attachRedirectUrl: boolean;
1852
+ contentWarning: boolean;
1853
+ attachUserId: boolean;
1854
+ attachPropertyId: boolean;
1855
+ linkText: LocaleString;
1856
+ }
1857
+ export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate | UrlLicenseTemplate;
1849
1858
  export namespace Create {
1850
1859
  type Params = {
1851
1860
  propertyId: string;
@@ -2564,11 +2573,6 @@ declare namespace JUHUU {
2564
2573
  deviceTemplateId: string;
2565
2574
  source: "fluctuo" | null;
2566
2575
  location: GeoPoint | null;
2567
- fuel: {
2568
- type: FuelType;
2569
- level: number;
2570
- } | null;
2571
- rangeRemaining: number | null;
2572
2576
  invalidAt: Date | null;
2573
2577
  connectorId: string | null;
2574
2578
  connectorParameter: string | null;
@@ -2625,11 +2629,6 @@ declare namespace JUHUU {
2625
2629
  description?: string | null;
2626
2630
  latitude?: number | null;
2627
2631
  longitude?: number | null;
2628
- fuel?: {
2629
- type?: FuelType;
2630
- level?: number;
2631
- } | null;
2632
- rangeRemaining?: number | null;
2633
2632
  connectorId?: string | null;
2634
2633
  connectorParameter?: string | null;
2635
2634
  disabled?: boolean;
@@ -2983,4 +2982,4 @@ declare namespace JUHUU {
2983
2982
  }
2984
2983
  }
2985
2984
 
2986
- 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 DevicePermission, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type Frontend, 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 PaymentRefundReason, type PaymentRefundStatus, 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 RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
2985
+ 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 DevicePermission, type DeviceStatus, type DeviceType, type Environment, type EnvironmentSettings, type ExtractType, type Frontend, 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 PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TimeZone, type Unit, type UserGroup, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
package/dist/index.js CHANGED
@@ -1031,8 +1031,6 @@ var DevicesService = class extends Service {
1031
1031
  description: DeviceUpdateParams.description,
1032
1032
  latitude: DeviceUpdateParams.latitude,
1033
1033
  longitude: DeviceUpdateParams.longitude,
1034
- fuel: DeviceUpdateParams.fuel,
1035
- rangeRemaining: DeviceUpdateParams.rangeRemaining,
1036
1034
  connectorId: DeviceUpdateParams.connectorId,
1037
1035
  connectorParameter: DeviceUpdateParams.connectorParameter,
1038
1036
  disabled: DeviceUpdateParams.disabled
package/dist/index.mjs CHANGED
@@ -987,8 +987,6 @@ var DevicesService = class extends Service {
987
987
  description: DeviceUpdateParams.description,
988
988
  latitude: DeviceUpdateParams.latitude,
989
989
  longitude: DeviceUpdateParams.longitude,
990
- fuel: DeviceUpdateParams.fuel,
991
- rangeRemaining: DeviceUpdateParams.rangeRemaining,
992
990
  connectorId: DeviceUpdateParams.connectorId,
993
991
  connectorParameter: DeviceUpdateParams.connectorParameter,
994
992
  disabled: DeviceUpdateParams.disabled
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.109",
3
+ "version": "1.2.111",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",