@juhuu/sdk-ts 1.2.51 → 1.2.53

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
@@ -188,19 +188,17 @@ type Purpose = {
188
188
  category: Category;
189
189
  modality: Modality;
190
190
  };
191
- declare const ReadonlyIntegrationStateArray: readonly ["full", "partial"];
192
- type IntegrationState = (typeof ReadonlyIntegrationStateArray)[number];
193
191
  type GeoPoint = {
194
192
  type: "Point";
195
193
  coordinates: [number, number];
196
194
  };
195
+ type visualPriority = "none" | "highlight" | "important";
197
196
  type PlatformUrl = {
198
197
  ios: string;
199
198
  android: string;
200
199
  web: string;
201
200
  };
202
201
  interface MapFilter {
203
- integrationStateArray: IntegrationState[];
204
202
  categoryArray: Category[];
205
203
  modalityArray: Modality[];
206
204
  sectorArray: Sector[];
@@ -1330,6 +1328,7 @@ declare namespace JUHUU {
1330
1328
  languageCodeArray: LanguageCode[];
1331
1329
  embeddingsGenerated: boolean;
1332
1330
  autoTranslateEnabled: boolean;
1331
+ embeddingsGenerationEnabled: boolean;
1333
1332
  };
1334
1333
  namespace Create {
1335
1334
  type Params = {
@@ -1498,6 +1497,13 @@ declare namespace JUHUU {
1498
1497
  export interface AiChatMessage extends Base {
1499
1498
  type: "ai";
1500
1499
  articleEmbeddingArray: JUHUU.ArticleEmbedding.Object[];
1500
+ starRating: 1 | 2 | 3 | 4 | 5 | null;
1501
+ feedbackText: string | null;
1502
+ contradictionDetection: {
1503
+ status: "neutral" | "contradiction" | "entailment";
1504
+ contradictionConfidence: number;
1505
+ isContradiction: boolean;
1506
+ } | null;
1501
1507
  }
1502
1508
  export type Object = AiChatMessage | UserChatMessage;
1503
1509
  export namespace Create {
@@ -1803,7 +1809,6 @@ declare namespace JUHUU {
1803
1809
  location: GeoPoint;
1804
1810
  altitudeRange: [number, number];
1805
1811
  invalidAt: Date;
1806
- source: "fluctuo" | null;
1807
1812
  purposeArray: Purpose[];
1808
1813
  };
1809
1814
  export interface Single extends Base {
@@ -2575,4 +2580,4 @@ declare namespace JUHUU {
2575
2580
  }
2576
2581
  }
2577
2582
 
2578
- 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, type IntegrationState, 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, ReadonlyIntegrationStateArray, 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 };
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 hexColor, type visualPriority };
package/dist/index.d.ts CHANGED
@@ -188,19 +188,17 @@ type Purpose = {
188
188
  category: Category;
189
189
  modality: Modality;
190
190
  };
191
- declare const ReadonlyIntegrationStateArray: readonly ["full", "partial"];
192
- type IntegrationState = (typeof ReadonlyIntegrationStateArray)[number];
193
191
  type GeoPoint = {
194
192
  type: "Point";
195
193
  coordinates: [number, number];
196
194
  };
195
+ type visualPriority = "none" | "highlight" | "important";
197
196
  type PlatformUrl = {
198
197
  ios: string;
199
198
  android: string;
200
199
  web: string;
201
200
  };
202
201
  interface MapFilter {
203
- integrationStateArray: IntegrationState[];
204
202
  categoryArray: Category[];
205
203
  modalityArray: Modality[];
206
204
  sectorArray: Sector[];
@@ -1330,6 +1328,7 @@ declare namespace JUHUU {
1330
1328
  languageCodeArray: LanguageCode[];
1331
1329
  embeddingsGenerated: boolean;
1332
1330
  autoTranslateEnabled: boolean;
1331
+ embeddingsGenerationEnabled: boolean;
1333
1332
  };
1334
1333
  namespace Create {
1335
1334
  type Params = {
@@ -1498,6 +1497,13 @@ declare namespace JUHUU {
1498
1497
  export interface AiChatMessage extends Base {
1499
1498
  type: "ai";
1500
1499
  articleEmbeddingArray: JUHUU.ArticleEmbedding.Object[];
1500
+ starRating: 1 | 2 | 3 | 4 | 5 | null;
1501
+ feedbackText: string | null;
1502
+ contradictionDetection: {
1503
+ status: "neutral" | "contradiction" | "entailment";
1504
+ contradictionConfidence: number;
1505
+ isContradiction: boolean;
1506
+ } | null;
1501
1507
  }
1502
1508
  export type Object = AiChatMessage | UserChatMessage;
1503
1509
  export namespace Create {
@@ -1803,7 +1809,6 @@ declare namespace JUHUU {
1803
1809
  location: GeoPoint;
1804
1810
  altitudeRange: [number, number];
1805
1811
  invalidAt: Date;
1806
- source: "fluctuo" | null;
1807
1812
  purposeArray: Purpose[];
1808
1813
  };
1809
1814
  export interface Single extends Base {
@@ -2575,4 +2580,4 @@ declare namespace JUHUU {
2575
2580
  }
2576
2581
  }
2577
2582
 
2578
- 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, type IntegrationState, 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, ReadonlyIntegrationStateArray, 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 };
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 hexColor, type visualPriority };
package/dist/index.js CHANGED
@@ -37,7 +37,6 @@ __export(src_exports, {
37
37
  Juhuu: () => Juhuu,
38
38
  LanguageCodeArray: () => LanguageCodeArray,
39
39
  ReadonlyCategoryArray: () => ReadonlyCategoryArray,
40
- ReadonlyIntegrationStateArray: () => ReadonlyIntegrationStateArray,
41
40
  ReadonlyModalityArray: () => ReadonlyModalityArray,
42
41
  ReadonlySectorArray: () => ReadonlySectorArray
43
42
  });
@@ -2300,7 +2299,6 @@ var ReadonlyModalityArray = [
2300
2299
  "wash",
2301
2300
  "repair"
2302
2301
  ];
2303
- var ReadonlyIntegrationStateArray = ["full", "partial"];
2304
2302
  var ConditionType = /* @__PURE__ */ ((ConditionType2) => {
2305
2303
  ConditionType2["Equal"] = "==";
2306
2304
  ConditionType2["NotEqual"] = "!=";
@@ -2394,7 +2392,6 @@ var JUHUU;
2394
2392
  Juhuu,
2395
2393
  LanguageCodeArray,
2396
2394
  ReadonlyCategoryArray,
2397
- ReadonlyIntegrationStateArray,
2398
2395
  ReadonlyModalityArray,
2399
2396
  ReadonlySectorArray
2400
2397
  });
package/dist/index.mjs CHANGED
@@ -2255,7 +2255,6 @@ var ReadonlyModalityArray = [
2255
2255
  "wash",
2256
2256
  "repair"
2257
2257
  ];
2258
- var ReadonlyIntegrationStateArray = ["full", "partial"];
2259
2258
  var ConditionType = /* @__PURE__ */ ((ConditionType2) => {
2260
2259
  ConditionType2["Equal"] = "==";
2261
2260
  ConditionType2["NotEqual"] = "!=";
@@ -2348,7 +2347,6 @@ export {
2348
2347
  Juhuu,
2349
2348
  LanguageCodeArray,
2350
2349
  ReadonlyCategoryArray,
2351
- ReadonlyIntegrationStateArray,
2352
2350
  ReadonlyModalityArray,
2353
2351
  ReadonlySectorArray
2354
2352
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.51",
3
+ "version": "1.2.53",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",