@vladimirdev635/gql-client-react 0.0.111 → 0.0.113

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/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { type OperationLoadingState, type OperationSuccessState, type OperationFailureState, type OperationState, type UseOperationHookReturnType, useOperation, } from './useOperation.jsx';
1
+ export { type OperationLoadingState, type OperationSuccessState, type OperationFailureState, type OperationState, type UseOperationHookReturnType, useOperation, } from './useOperation.js';
2
2
  export { type LazyOperationInitialState, type LazyOperationState, type LazyOperationExecuteReturnType, type UseLazyOperationHookReturnType, useLazyOperation, } from './use-lazy-operation/index.js';
3
- export { type UseSubscriptionHookReturnType, useSubscription, } from './useSubscription.jsx';
3
+ export { type UseSubscriptionHookReturnType, useSubscription, } from './useSubscription.js';
4
4
  export * as types from './types.js';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { useOperation, } from './useOperation.jsx';
1
+ export { useOperation, } from './useOperation.js';
2
2
  export { useLazyOperation, } from './use-lazy-operation/index.js';
3
- export { useSubscription, } from './useSubscription.jsx';
3
+ export { useSubscription, } from './useSubscription.js';
4
4
  export * as types from './types.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vladimirdev635/gql-client-react",
3
- "version": "0.0.111",
3
+ "version": "0.0.113",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1,4 +1,4 @@
1
- import { useOperation } from '../useOperation.jsx';
1
+ import { useOperation } from '../useOperation.js';
2
2
  import { describe, expect, it } from 'vitest';
3
3
  import { renderHook, act } from '@testing-library/react';
4
4
  import assert from 'assert';
@@ -1,4 +1,4 @@
1
- import { useSubscription } from '../useSubscription.jsx';
1
+ import { useSubscription } from '../useSubscription.js';
2
2
  import { describe, expect, it } from 'vitest';
3
3
  import { renderHook, act } from '@testing-library/react';
4
4
  import assert from 'assert';
File without changes
File without changes