Skip to content

Commit

Permalink
Remove default exports from Iterable classes and enums
Browse files Browse the repository at this point in the history
  • Loading branch information
lposen committed Nov 15, 2024
1 parent 65aa68c commit 4216fa7
Show file tree
Hide file tree
Showing 20 changed files with 0 additions and 40 deletions.
2 changes: 0 additions & 2 deletions src/core/classes/Iterable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,5 +664,3 @@ export class Iterable {
return version;
}
}

export default Iterable;
2 changes: 0 additions & 2 deletions src/core/classes/IterableAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ export class IterableAction {
return new IterableAction(dict.type, dict.data, dict.userInput);
}
}

export default IterableAction;
2 changes: 0 additions & 2 deletions src/core/classes/IterableActionContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,3 @@ export class IterableActionContext {
return new IterableActionContext(action, source);
}
}

export default IterableActionContext;
2 changes: 0 additions & 2 deletions src/core/classes/IterableAttributionInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,3 @@ export class IterableAttributionInfo {
this.messageId = messageId;
}
}

export default IterableAttributionInfo;
2 changes: 0 additions & 2 deletions src/core/classes/IterableAuthResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,3 @@ export class IterableAuthResponse {
successCallback?: () => void;
failureCallback?: () => void;
}

export default IterableAuthResponse;
2 changes: 0 additions & 2 deletions src/core/classes/IterableCommerceItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,3 @@ export class IterableCommerceItem {
this.dataFields = dataFields;
}
}

export default IterableCommerceItem;
2 changes: 0 additions & 2 deletions src/core/classes/IterableConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,3 @@ export class IterableConfig {
};
}
}

export default IterableConfig;
2 changes: 0 additions & 2 deletions src/core/classes/IterableEdgeInsets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,3 @@ export class IterableEdgeInsets {
);
}
}

export default IterableEdgeInsets;
2 changes: 0 additions & 2 deletions src/core/enums/IterableActionSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,3 @@ export enum IterableActionSource {
appLink = 1,
inApp = 2,
}

export default IterableActionSource;
2 changes: 0 additions & 2 deletions src/core/enums/IterableAuthResponseResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@ export enum IterableAuthResponseResult {
SUCCESS,
FAILURE,
}

export default IterableAuthResponseResult;
2 changes: 0 additions & 2 deletions src/core/enums/IterableEventName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,3 @@ export enum IterableEventName {
handleAuthSuccessCalled = 'handleAuthSuccessCalled',
handleAuthFailureCalled = 'handleAuthFailureCalled',
}

export default IterableEventName;
2 changes: 0 additions & 2 deletions src/core/enums/IterableLogLevel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,3 @@ export enum IterableLogLevel {
info = 2,
error = 3,
}

export default IterableLogLevel;
2 changes: 0 additions & 2 deletions src/core/enums/IterablePushPlatform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ export enum IterablePushPlatform {
production = 1,
auto = 2,
}

export default IterablePushPlatform;
2 changes: 0 additions & 2 deletions src/inApp/classes/IterableInboxMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,3 @@ export class IterableInboxMetadata {
return new IterableInboxMetadata(dict.title, dict.subtitle, dict.icon);
}
}

export default IterableInboxMetadata;
2 changes: 0 additions & 2 deletions src/inApp/enums/IterableInAppCloseSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ export enum IterableInAppCloseSource {
link = 1,
unknown = 100,
}

export default IterableInAppCloseSource;
2 changes: 0 additions & 2 deletions src/inApp/enums/IterableInAppContentType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ export enum IterableInAppContentType {
alert = 1,
banner = 2,
}

export default IterableInAppContentType;
2 changes: 0 additions & 2 deletions src/inApp/enums/IterableInAppDeleteSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ export enum IterableInAppDeleteSource {
deleteButton = 1,
unknown = 100,
}

export default IterableInAppDeleteSource;
2 changes: 0 additions & 2 deletions src/inApp/enums/IterableInAppLocation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@ export enum IterableInAppLocation {
inApp = 0,
inbox = 1,
}

export default IterableInAppLocation;
2 changes: 0 additions & 2 deletions src/inApp/enums/IterableInAppShowResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,3 @@ export enum IterableInAppShowResponse {
/** Skip showing in-app */
skip = 1,
}

export default IterableInAppShowResponse;
2 changes: 0 additions & 2 deletions src/inApp/enums/IterableInAppTriggerType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ export enum IterableInAppTriggerType {
/** Do not display the in-app automatically via the SDK */
never = 2,
}

export default IterableInAppTriggerType;

0 comments on commit 4216fa7

Please sign in to comment.