-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Expose nodejs templates to django (#28078)
- Loading branch information
1 parent
8b9f06a
commit 97c3f54
Showing
26 changed files
with
755 additions
and
66 deletions.
There are no files selected for viewing
Binary file modified
BIN
+2.67 KB
(100%)
...nd/__snapshots__/scenes-app-pipeline--pipeline-node-new-hog-function--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { template as downsamplingPlugin } from '../legacy-plugins/_transformations/downsampling-plugin/template' | ||
import { template as languageUrlSplitterTemplate } from '../legacy-plugins/_transformations/language-url-splitter-app/template' | ||
import { template as posthogAppUrlParametersToEventPropertiesTemplate } from '../legacy-plugins/_transformations/posthog-app-url-parameters-to-event-properties/template' | ||
import { template as posthogFilterOutTemplate } from '../legacy-plugins/_transformations/posthog-filter-out-plugin/template' | ||
import { template as posthogUrlNormalizerTemplate } from '../legacy-plugins/_transformations/posthog-url-normalizer-plugin/template' | ||
import { template as propertyFilterTemplate } from '../legacy-plugins/_transformations/property-filter-plugin/template' | ||
import { template as semverFlattenerTemplate } from '../legacy-plugins/_transformations/semver-flattener-plugin/template' | ||
import { template as taxonomyTemplate } from '../legacy-plugins/_transformations/taxonomy-plugin/template' | ||
import { template as timestampParserTemplate } from '../legacy-plugins/_transformations/timestamp-parser-plugin/template' | ||
import { template as userAgentTemplate } from '../legacy-plugins/_transformations/user-agent-plugin/template' | ||
import { template as webhookTemplate } from './_destinations/webhook/webhook.template' | ||
import { template as defaultTransformationTemplate } from './_transformations/default/default.template' | ||
import { template as geoipTemplate } from './_transformations/geoip/geoip.template' | ||
import { HogFunctionTemplate } from './types' | ||
|
||
export const HOG_FUNCTION_TEMPLATES_DESTINATIONS: HogFunctionTemplate[] = [webhookTemplate] | ||
|
||
export const HOG_FUNCTION_TEMPLATES_TRANSFORMATIONS: HogFunctionTemplate[] = [ | ||
defaultTransformationTemplate, | ||
geoipTemplate, | ||
downsamplingPlugin, | ||
languageUrlSplitterTemplate, | ||
posthogAppUrlParametersToEventPropertiesTemplate, | ||
posthogFilterOutTemplate, | ||
posthogUrlNormalizerTemplate, | ||
propertyFilterTemplate, | ||
semverFlattenerTemplate, | ||
taxonomyTemplate, | ||
timestampParserTemplate, | ||
userAgentTemplate, | ||
] | ||
|
||
export const HOG_FUNCTION_TEMPLATES: HogFunctionTemplate[] = [ | ||
...HOG_FUNCTION_TEMPLATES_DESTINATIONS, | ||
...HOG_FUNCTION_TEMPLATES_TRANSFORMATIONS, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.