@tmdb-graphql-api/rest-client 0.0.7 → 0.0.8
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/cjs/index.cjs +1 -161
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.mjs +1 -131
- package/dist/esm/index.mjs.map +1 -1
- package/dist/production.analysis.txt +45 -0
- package/dist/types/cjs/main.d.cts +1 -1
- package/dist/types/cjs/main.d.cts.map +1 -1
- package/dist/types/cjs/types.d.cts +3 -3
- package/dist/types/cjs/types.d.cts.map +1 -1
- package/dist/types/esm/main.d.ts +1 -1
- package/dist/types/esm/main.d.ts.map +1 -1
- package/dist/types/esm/types.d.ts +3 -3
- package/dist/types/esm/types.d.ts.map +1 -1
- package/dist/types/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/main.test.ts +1 -1
- package/src/main.ts +1 -1
- package/src/types.ts +3 -3
package/package.json
CHANGED
package/src/main.test.ts
CHANGED
package/src/main.ts
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
WATCH_PROVIDER_PATH,
|
|
29
29
|
} from './constants.ts';
|
|
30
30
|
import { pathTemplateCallback } from './helpers/pathTemplateCallback.ts';
|
|
31
|
-
import type
|
|
31
|
+
import { type CreateRestClientParams, type ShortcutMethodNames } from './types.ts';
|
|
32
32
|
|
|
33
33
|
const { NODE_ENV } = process.env;
|
|
34
34
|
|
package/src/types.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type
|
|
3
|
-
import type
|
|
1
|
+
import { type Core } from '@cachemap/core';
|
|
2
|
+
import { type DebugManagerDef } from '@graphql-box/core';
|
|
3
|
+
import { type JsonObject } from 'type-fest';
|
|
4
4
|
|
|
5
5
|
export type ShortcutMethodNames =
|
|
6
6
|
| 'authenticate'
|