@juhuu/sdk-ts 1.2.80 → 1.2.82
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 +6 -2
- package/dist/index.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -11,6 +11,7 @@ type ExtractType<T> = T extends {
|
|
11
11
|
type: infer U;
|
12
12
|
} ? U : never;
|
13
13
|
type UserGroup = "retailer" | "engineer" | "operator" | "user";
|
14
|
+
type Frontend = "dashboard" | "app";
|
14
15
|
interface Offer {
|
15
16
|
tariffId: string;
|
16
17
|
licenseTemplateIdArray: string[];
|
@@ -1092,6 +1093,7 @@ declare namespace JUHUU {
|
|
1092
1093
|
pushTokenArray: PushToken[];
|
1093
1094
|
};
|
1094
1095
|
};
|
1096
|
+
group: UserGroup;
|
1095
1097
|
};
|
1096
1098
|
export interface Standard extends Base {
|
1097
1099
|
type: "standard";
|
@@ -1579,7 +1581,9 @@ declare namespace JUHUU {
|
|
1579
1581
|
articleIdArray?: string[];
|
1580
1582
|
ownerPropertyId?: string;
|
1581
1583
|
userName?: string;
|
1582
|
-
userGroup
|
1584
|
+
userGroup?: UserGroup;
|
1585
|
+
platform?: Platform;
|
1586
|
+
frontend?: Frontend;
|
1583
1587
|
} | null;
|
1584
1588
|
};
|
1585
1589
|
export interface UserChatMessage extends Base {
|
@@ -2679,4 +2683,4 @@ declare namespace JUHUU {
|
|
2679
2683
|
}
|
2680
2684
|
}
|
2681
2685
|
|
2682
|
-
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 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, 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 };
|
2686
|
+
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 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, 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
@@ -11,6 +11,7 @@ type ExtractType<T> = T extends {
|
|
11
11
|
type: infer U;
|
12
12
|
} ? U : never;
|
13
13
|
type UserGroup = "retailer" | "engineer" | "operator" | "user";
|
14
|
+
type Frontend = "dashboard" | "app";
|
14
15
|
interface Offer {
|
15
16
|
tariffId: string;
|
16
17
|
licenseTemplateIdArray: string[];
|
@@ -1092,6 +1093,7 @@ declare namespace JUHUU {
|
|
1092
1093
|
pushTokenArray: PushToken[];
|
1093
1094
|
};
|
1094
1095
|
};
|
1096
|
+
group: UserGroup;
|
1095
1097
|
};
|
1096
1098
|
export interface Standard extends Base {
|
1097
1099
|
type: "standard";
|
@@ -1579,7 +1581,9 @@ declare namespace JUHUU {
|
|
1579
1581
|
articleIdArray?: string[];
|
1580
1582
|
ownerPropertyId?: string;
|
1581
1583
|
userName?: string;
|
1582
|
-
userGroup
|
1584
|
+
userGroup?: UserGroup;
|
1585
|
+
platform?: Platform;
|
1586
|
+
frontend?: Frontend;
|
1583
1587
|
} | null;
|
1584
1588
|
};
|
1585
1589
|
export interface UserChatMessage extends Base {
|
@@ -2679,4 +2683,4 @@ declare namespace JUHUU {
|
|
2679
2683
|
}
|
2680
2684
|
}
|
2681
2685
|
|
2682
|
-
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 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, 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 };
|
2686
|
+
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 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, 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 };
|