@juhuu/sdk-ts 1.2.0 → 1.2.1
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 +60 -1
- package/dist/index.d.ts +60 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -255,6 +255,7 @@ type AccessControlListElement = {
|
|
255
255
|
topic: string;
|
256
256
|
acc: number;
|
257
257
|
};
|
258
|
+
type SimStatus = "online" | "offline";
|
258
259
|
type Parameter = {
|
259
260
|
name: string;
|
260
261
|
type: "number";
|
@@ -1776,6 +1777,64 @@ declare namespace JUHUU {
|
|
1776
1777
|
type Response = JUHUU.DeviceTemplate.Object[];
|
1777
1778
|
}
|
1778
1779
|
}
|
1780
|
+
namespace Sim {
|
1781
|
+
type Object = {
|
1782
|
+
id: string;
|
1783
|
+
readonly object: "sim";
|
1784
|
+
iccid: string;
|
1785
|
+
status: SimStatus;
|
1786
|
+
provider: "1nce" | null;
|
1787
|
+
countryCode: CountryCode | null;
|
1788
|
+
imei: string | null;
|
1789
|
+
propertyId: string;
|
1790
|
+
description: string | null;
|
1791
|
+
name: string;
|
1792
|
+
};
|
1793
|
+
namespace Retrieve {
|
1794
|
+
type Params = {
|
1795
|
+
simId: string;
|
1796
|
+
};
|
1797
|
+
type Options = JUHUU.RequestOptions;
|
1798
|
+
type Response = {
|
1799
|
+
sim: JUHUU.Sim.Object;
|
1800
|
+
};
|
1801
|
+
}
|
1802
|
+
namespace List {
|
1803
|
+
type Params = {
|
1804
|
+
propertyId?: string;
|
1805
|
+
};
|
1806
|
+
type Options = JUHUU.RequestOptions;
|
1807
|
+
type Response = JUHUU.Sim.Object[];
|
1808
|
+
}
|
1809
|
+
}
|
1810
|
+
namespace ConnectorMessage {
|
1811
|
+
type Object = {
|
1812
|
+
id: string;
|
1813
|
+
readonly object: "connectorMessage";
|
1814
|
+
message: string;
|
1815
|
+
connectorId: string;
|
1816
|
+
direction: "inbound" | "outbound";
|
1817
|
+
createdAt: Date;
|
1818
|
+
deviceId: string | null;
|
1819
|
+
propertyId: string;
|
1820
|
+
};
|
1821
|
+
namespace Retrieve {
|
1822
|
+
type Params = {
|
1823
|
+
connectorMessageId: string;
|
1824
|
+
};
|
1825
|
+
type Options = JUHUU.RequestOptions;
|
1826
|
+
type Response = {
|
1827
|
+
connectorMessage: JUHUU.ConnectorMessage.Object;
|
1828
|
+
};
|
1829
|
+
}
|
1830
|
+
namespace List {
|
1831
|
+
type Params = {
|
1832
|
+
propertyId?: string;
|
1833
|
+
};
|
1834
|
+
type Options = JUHUU.RequestOptions;
|
1835
|
+
type Response = JUHUU.ConnectorMessage.Object[];
|
1836
|
+
}
|
1837
|
+
}
|
1779
1838
|
}
|
1780
1839
|
|
1781
|
-
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 IntegrationState, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Node$1 as Node, 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, Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyIntegrationStateArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type ServiceMonth, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, type Settings, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type hexColor };
|
1840
|
+
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 IntegrationState, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Node$1 as Node, 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, Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyIntegrationStateArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type ServiceMonth, 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 };
|
package/dist/index.d.ts
CHANGED
@@ -255,6 +255,7 @@ type AccessControlListElement = {
|
|
255
255
|
topic: string;
|
256
256
|
acc: number;
|
257
257
|
};
|
258
|
+
type SimStatus = "online" | "offline";
|
258
259
|
type Parameter = {
|
259
260
|
name: string;
|
260
261
|
type: "number";
|
@@ -1776,6 +1777,64 @@ declare namespace JUHUU {
|
|
1776
1777
|
type Response = JUHUU.DeviceTemplate.Object[];
|
1777
1778
|
}
|
1778
1779
|
}
|
1780
|
+
namespace Sim {
|
1781
|
+
type Object = {
|
1782
|
+
id: string;
|
1783
|
+
readonly object: "sim";
|
1784
|
+
iccid: string;
|
1785
|
+
status: SimStatus;
|
1786
|
+
provider: "1nce" | null;
|
1787
|
+
countryCode: CountryCode | null;
|
1788
|
+
imei: string | null;
|
1789
|
+
propertyId: string;
|
1790
|
+
description: string | null;
|
1791
|
+
name: string;
|
1792
|
+
};
|
1793
|
+
namespace Retrieve {
|
1794
|
+
type Params = {
|
1795
|
+
simId: string;
|
1796
|
+
};
|
1797
|
+
type Options = JUHUU.RequestOptions;
|
1798
|
+
type Response = {
|
1799
|
+
sim: JUHUU.Sim.Object;
|
1800
|
+
};
|
1801
|
+
}
|
1802
|
+
namespace List {
|
1803
|
+
type Params = {
|
1804
|
+
propertyId?: string;
|
1805
|
+
};
|
1806
|
+
type Options = JUHUU.RequestOptions;
|
1807
|
+
type Response = JUHUU.Sim.Object[];
|
1808
|
+
}
|
1809
|
+
}
|
1810
|
+
namespace ConnectorMessage {
|
1811
|
+
type Object = {
|
1812
|
+
id: string;
|
1813
|
+
readonly object: "connectorMessage";
|
1814
|
+
message: string;
|
1815
|
+
connectorId: string;
|
1816
|
+
direction: "inbound" | "outbound";
|
1817
|
+
createdAt: Date;
|
1818
|
+
deviceId: string | null;
|
1819
|
+
propertyId: string;
|
1820
|
+
};
|
1821
|
+
namespace Retrieve {
|
1822
|
+
type Params = {
|
1823
|
+
connectorMessageId: string;
|
1824
|
+
};
|
1825
|
+
type Options = JUHUU.RequestOptions;
|
1826
|
+
type Response = {
|
1827
|
+
connectorMessage: JUHUU.ConnectorMessage.Object;
|
1828
|
+
};
|
1829
|
+
}
|
1830
|
+
namespace List {
|
1831
|
+
type Params = {
|
1832
|
+
propertyId?: string;
|
1833
|
+
};
|
1834
|
+
type Options = JUHUU.RequestOptions;
|
1835
|
+
type Response = JUHUU.ConnectorMessage.Object[];
|
1836
|
+
}
|
1837
|
+
}
|
1779
1838
|
}
|
1780
1839
|
|
1781
|
-
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 IntegrationState, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Node$1 as Node, 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, Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyIntegrationStateArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type ServiceMonth, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, type Settings, type StarRating, type TarifType, type TimeZone, type Unit, type UserType, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type hexColor };
|
1840
|
+
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 IntegrationState, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type Modality, type Node$1 as Node, 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, Purpose, type PushToken, ReadonlyCategoryArray, ReadonlyIntegrationStateArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundReason, type RefundStatus, type Sector, type ServiceMonth, 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 };
|