Skip to content

Commit 71e7eae

Browse files
committed
fix: remove circular dependency in ConsentPlugin
1 parent 463600e commit 71e7eae

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

examples/AnalyticsReactNativeExample/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,4 +760,4 @@ SPEC CHECKSUMS:
760760

761761
PODFILE CHECKSUM: 329f06ebb76294acf15c298d0af45530e2797740
762762

763-
COCOAPODS: 1.12.1
763+
COCOAPODS: 1.14.3

examples/E2E/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,4 +760,4 @@ SPEC CHECKSUMS:
760760

761761
PODFILE CHECKSUM: 9d352ca8db1e31a063d2585ed47fdadabf87fe90
762762

763-
COCOAPODS: 1.12.1
763+
COCOAPODS: 1.14.3

packages/core/src/plugins/ConsentPlugin.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import {
2-
Plugin,
3-
type SegmentClient,
4-
type DestinationPlugin,
1+
import { Plugin } from '../plugin';
2+
import { PluginType } from '../types';
3+
import type {
54
IntegrationSettings,
6-
PluginType,
75
SegmentAPIIntegration,
86
SegmentEvent,
97
TrackEventType,
10-
} from '..';
8+
} from '../types';
9+
import type { DestinationPlugin } from '../plugin';
10+
import type { SegmentClient } from '../analytics';
1111

1212
import { SEGMENT_DESTINATION_KEY } from './SegmentDestination';
1313

0 commit comments

Comments
 (0)