File tree 2 files changed +9
-3
lines changed
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 => {
22
22
)
23
23
}
24
24
25
+ /**
26
+ * Validates an unknown object is a JSON Object.
27
+ *
28
+ * @internal
29
+ */
25
30
export const isJSONObject = ( obj : unknown ) : obj is JSONObject => {
26
31
const objT : string = typeof obj
27
32
Original file line number Diff line number Diff line change 1
- export { API } from './scw/api '
1
+ export { isJSONObject } from './helpers/json '
2
2
export { waitForResource } from './internal/async/interval-retrier'
3
- export { authenticateWithSessionToken } from './scw/auth'
4
3
export type { RequestInterceptor } from './internal/interceptors/request'
5
4
export type { ResponseInterceptor } from './internal/interceptors/response'
5
+ export { API } from './scw/api'
6
+ export { authenticateWithSessionToken } from './scw/auth'
6
7
export type { DefaultValues } from './scw/client-ini-profile'
7
- export type { ServiceInfo } from './scw/custom-types'
8
8
export {
9
9
marshalScwFile ,
10
10
marshalMoney ,
@@ -15,6 +15,7 @@ export {
15
15
unmarshalTimeSeries ,
16
16
unmarshalTimeSeriesPoint ,
17
17
} from './scw/custom-marshalling'
18
+ export type { ServiceInfo } from './scw/custom-types'
18
19
export {
19
20
resolveOneOf ,
20
21
unmarshalDate ,
You can’t perform that action at this time.
0 commit comments