File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ export const isJSON = (obj: unknown): obj is JSON => {
2222 )
2323}
2424
25+ /**
26+ * Validates an unknown object is a JSON Object.
27+ *
28+ * @internal
29+ */
2530export const isJSONObject = ( obj : unknown ) : obj is JSONObject => {
2631 const objT : string = typeof obj
2732
Original file line number Diff line number Diff line change 1- export { API } from './scw/api '
1+ export { isJSONObject } from './helpers/json '
22export { waitForResource } from './internal/async/interval-retrier'
3- export { authenticateWithSessionToken } from './scw/auth'
43export type { RequestInterceptor } from './internal/interceptors/request'
54export type { ResponseInterceptor } from './internal/interceptors/response'
5+ export { API } from './scw/api'
6+ export { authenticateWithSessionToken } from './scw/auth'
67export type { DefaultValues } from './scw/client-ini-profile'
7- export type { ServiceInfo } from './scw/custom-types'
88export {
99 marshalScwFile ,
1010 marshalMoney ,
@@ -15,6 +15,7 @@ export {
1515 unmarshalTimeSeries ,
1616 unmarshalTimeSeriesPoint ,
1717} from './scw/custom-marshalling'
18+ export type { ServiceInfo } from './scw/custom-types'
1819export {
1920 resolveOneOf ,
2021 unmarshalDate ,
You can’t perform that action at this time.
0 commit comments