@embedreach/components 0.3.12 → 0.3.14
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/chunks/index.js +1736 -480
- package/dist/chunks/sandbox-loading-screen.js +10 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.umd.js +14 -14
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -22812,6 +22812,16 @@ const handlers = [
|
|
|
22812
22812
|
data: null
|
|
22813
22813
|
});
|
|
22814
22814
|
}),
|
|
22815
|
+
http.get(`${HOSTNAME}/api/oauth/gtm/connection`, () => {
|
|
22816
|
+
return HttpResponse.json({
|
|
22817
|
+
success: true,
|
|
22818
|
+
message: "Success (Sandbox)",
|
|
22819
|
+
data: {
|
|
22820
|
+
provider: "gtm",
|
|
22821
|
+
status: "connected"
|
|
22822
|
+
}
|
|
22823
|
+
});
|
|
22824
|
+
}),
|
|
22815
22825
|
http.get(
|
|
22816
22826
|
`${HOSTNAME}/api/ad-platform-tracking/meta/check-for-existing?ad_account_id=sandbox-m-act-789`,
|
|
22817
22827
|
async () => {
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare enum AutomationTriggerType {
|
|
|
8
8
|
DATE_BASED = "date_based"
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
export declare function CreateAutomationDialog({ open, setOpen, onClose, automationType, getExtraMergeFields, replyToSettingsText, replyToSettingsLink, fromNameSettingsText, fromNameSettingsLink,
|
|
11
|
+
export declare function CreateAutomationDialog({ open, setOpen, onClose, automationType, getExtraMergeFields, replyToSettingsText, replyToSettingsLink, fromNameSettingsText, fromNameSettingsLink, }: CreateAutomationDialogProps): JSX_2.Element;
|
|
12
12
|
|
|
13
13
|
declare interface CreateAutomationDialogProps extends CreateAutomationModalProps {
|
|
14
14
|
/**
|
|
@@ -110,13 +110,15 @@ declare interface EngageTypedOverrides {
|
|
|
110
110
|
trigger_based?: string;
|
|
111
111
|
insight?: string;
|
|
112
112
|
insight_other?: string;
|
|
113
|
+
merge_field?: string;
|
|
114
|
+
merge_field_other?: string;
|
|
113
115
|
}
|
|
114
116
|
|
|
115
117
|
/**
|
|
116
118
|
* Represents the available features in our application.
|
|
117
119
|
* Each feature corresponds to a specific section of the marketing hub.
|
|
118
120
|
*/
|
|
119
|
-
declare type FeatureKey = 'measure' | 'measure-setup' | 'acquire-setup' | 'engage-segment-builder' | 'engage-automations-create-modal' | 'engage-automations-view-modal' | 'engage';
|
|
121
|
+
declare type FeatureKey = 'measure' | 'measure-setup' | 'acquire-setup' | 'reputation' | 'engage-segment-builder' | 'engage-automations-create-modal' | 'engage-automations-view-modal' | 'engage';
|
|
120
122
|
|
|
121
123
|
declare interface LanguageConfig {
|
|
122
124
|
/** Initial language code (e.g., 'en', 'es', 'fr') */
|