Skip to content

Commit dc5da96

Browse files
committed
Export from current entry points
1 parent 2d952c4 commit dc5da96

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

src/euidExports.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export { EventType, Uid2CallbackHandler } from './uid2CallbackManager';
2+
export { CallbackContainer, ProductDetails, UID2SdkBase, UID2Setup } from './sdkBase';

src/euidSdk.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { EventType, Uid2CallbackHandler } from './uid2CallbackManager';
22
import { CallbackContainer, ProductDetails, UID2SdkBase, UID2Setup } from './sdkBase';
33

4+
export * from './euidExports';
5+
46
export class EUID extends UID2SdkBase {
57
private static cookieName = '__euid';
68
// Deprecated. Integrators should never access the cookie directly!

src/uid2Exports.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export { EventType, Uid2CallbackHandler } from './uid2CallbackManager';
2+
export {
3+
ClientSideIdentityOptions,
4+
isClientSideIdentityOptionsOrThrow,
5+
} from './uid2ClientSideIdentityOptions';
6+
export { isNormalizedPhone } from './uid2DiiNormalization';
7+
export { isBase64Hash } from './uid2HashedDii';
8+
export { hashAndEncodeIdentifier } from './encoding/hash';
9+
export { CallbackContainer, ProductDetails, UID2SdkBase, UID2Setup } from './sdkBase';

src/uid2Sdk.ts

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { isBase64Hash } from './uid2HashedDii';
88
import { hashAndEncodeIdentifier } from './encoding/hash';
99
import { CallbackContainer, ProductDetails, UID2SdkBase, UID2Setup } from './sdkBase';
1010

11+
export * from './uid2Exports';
12+
1113
export class UID2 extends UID2SdkBase {
1214
private static cookieName = '__uid_2';
1315
// Deprecated. Integrators should never access the cookie directly!

0 commit comments

Comments
 (0)