├── .dockerignore ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ └── issue-template.md ├── actions │ ├── slack-notify │ │ └── action.yml │ └── version │ │ └── action.yml └── workflows │ ├── build-builder-image.yml │ ├── claude-review.yml │ ├── client-libraries-build.yaml │ ├── close-stale-issues.yml │ ├── docker-build.yml │ ├── lint.yml │ ├── services-build.yaml │ └── test-slack-notification.yml ├── .gitignore ├── .husky └── pre-commit ├── .jsclient.version.json ├── .node-version ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .readme-assets ├── github-hero-dark-mode.png ├── github-hero-light-mode.png └── overview-screenshot.png ├── .services.version.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── all.Dockerfile ├── bulker ├── .dockerignore ├── .docs │ ├── assets │ │ ├── bulker-summary.excalidraw.png │ │ └── stream-batch.excalidraw.png │ ├── db-feature-matrix.md │ ├── http-api.md │ ├── rfcs │ │ ├── data_types.md │ │ └── http.md │ └── server-config.md ├── .gitignore ├── CONTRIBUTING.md ├── GOWORK.md ├── LICENSE ├── README.md ├── TODO.md ├── admin │ ├── REPROCESSING_K8S.md │ ├── app.go │ ├── config.go │ ├── failover_reprocessor.go │ ├── go.mod │ ├── go.sum │ ├── k8s_client.go │ ├── kafka.go │ ├── main.go │ ├── reprocessing_db.go │ ├── reprocessing_db_schema.go │ ├── router.go │ ├── router_reprocessing_handler.go │ └── types.go ├── all.Dockerfile ├── allbuild.sh ├── bulker.Dockerfile ├── bulkerapp │ ├── app │ │ ├── abstract_batch_consumer.go │ │ ├── abstract_consumer.go │ │ ├── app.go │ │ ├── app_config.go │ │ ├── batch_consumer.go │ │ ├── configuration_source.go │ │ ├── cron.go │ │ ├── fast_store.go │ │ ├── http_configuration_source.go │ │ ├── integration_test.go │ │ ├── load_test.go │ │ ├── metrics_server.go │ │ ├── multi_configuration_source.go │ │ ├── postgres_configuration_source.go │ │ ├── producer.go │ │ ├── redis_configuration_source.go │ │ ├── repository.go │ │ ├── retry_consumer.go │ │ ├── router.go │ │ ├── stream_consumer.go │ │ ├── test_data │ │ │ ├── badbatch.ndjson │ │ │ ├── bulker.env │ │ │ ├── config.yaml │ │ │ ├── goodbatch.ndjson │ │ │ └── single.ndjson │ │ ├── testcontainers │ │ │ └── kafka │ │ │ │ ├── docker-compose.yml │ │ │ │ └── kafka_container.go │ │ ├── topic_manager.go │ │ └── topic_manager_test.go │ ├── default.pgo │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── metrics │ │ └── metrics.go ├── bulkerbuild.sh ├── bulkerlib │ ├── bulker.go │ ├── bulker_state_test.go │ ├── go.mod │ ├── go.sum │ ├── implementations │ │ ├── api_based │ │ │ ├── mixpanel.go │ │ │ ├── transactional_stream.go │ │ │ └── webhook.go │ │ ├── file.go │ │ ├── file_storage │ │ │ ├── abstract.go │ │ │ ├── bulker_test.go │ │ │ ├── gcs_bulker.go │ │ │ ├── replacepartition_stream.go │ │ │ ├── replacetable_stream.go │ │ │ ├── s3_bulker.go │ │ │ ├── test_data │ │ │ │ ├── empty.ndjson │ │ │ │ ├── no_repeated_ids.ndjson │ │ │ │ ├── repeated_ids.ndjson │ │ │ │ └── repeated_ids_discr.ndjson │ │ │ ├── testcontainers │ │ │ │ └── minio_container.go │ │ │ └── transactional_stream.go │ │ ├── flattener.go │ │ ├── google_cloud_storage.go │ │ ├── s3.go │ │ └── sql │ │ │ ├── abstract.go │ │ │ ├── abstract_transactional.go │ │ │ ├── autocommit_stream.go │ │ │ ├── autocommit_stream_test.go │ │ │ ├── batch_header.go │ │ │ ├── batch_header_test.go │ │ │ ├── bigdata_test.go │ │ │ ├── bigquery.go │ │ │ ├── bulker_test.go │ │ │ ├── clickhouse.go │ │ │ ├── datasource_config.go │ │ │ ├── dedup_with_discr_test.go │ │ │ ├── delete_condition.go │ │ │ ├── duckdb.go │ │ │ ├── existing_table_test.go │ │ │ ├── mergewindow_test.go │ │ │ ├── mysql.go │ │ │ ├── namespace_test.go │ │ │ ├── naming_test.go │ │ │ ├── options.go │ │ │ ├── postgres.go │ │ │ ├── processor.go │ │ │ ├── reconnect_test.go │ │ │ ├── redshift.go │ │ │ ├── redshift_driver │ │ │ ├── client.go │ │ │ ├── connection.go │ │ │ ├── connection_test.go │ │ │ ├── connector.go │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ ├── dsn.go │ │ │ ├── dsn_test.go │ │ │ ├── errors.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── tx.go │ │ │ └── utils.go │ │ │ ├── redshift_iam.go │ │ │ ├── replacepartition_stream.go │ │ │ ├── replacepartition_stream_test.go │ │ │ ├── replacetable_stream.go │ │ │ ├── replacetable_stream_test.go │ │ │ ├── schema_freeze_test.go │ │ │ ├── snowflake.go │ │ │ ├── sql_adapter.go │ │ │ ├── sql_adapter_base.go │ │ │ ├── table.go │ │ │ ├── table_helper.go │ │ │ ├── test_data │ │ │ ├── columns_added.ndjson │ │ │ ├── columns_added2.ndjson │ │ │ ├── columns_added_partial.ndjson │ │ │ ├── columns_added_partial2.ndjson │ │ │ ├── data_types.ndjson │ │ │ ├── date_mix.ndjson │ │ │ ├── date_type.ndjson │ │ │ ├── emoji.ndjson │ │ │ ├── empty.ndjson │ │ │ ├── existing_table1.ndjson │ │ │ ├── existing_table2.ndjson │ │ │ ├── existing_table_num.ndjson │ │ │ ├── existing_table_text.ndjson │ │ │ ├── identifiers.ndjson │ │ │ ├── merge_window1.ndjson │ │ │ ├── merge_window2.ndjson │ │ │ ├── merge_window3.ndjson │ │ │ ├── merge_window4.ndjson │ │ │ ├── multiline.ndjson │ │ │ ├── nested.ndjson │ │ │ ├── non_utc_timestamp.ndjson │ │ │ ├── partition1.ndjson │ │ │ ├── partition1_1.ndjson │ │ │ ├── partition2.ndjson │ │ │ ├── repeated_ids.ndjson │ │ │ ├── repeated_ids2.ndjson │ │ │ ├── repeated_ids_discr.ndjson │ │ │ ├── repeated_ids_multi.ndjson │ │ │ ├── repeated_ids_multi2.ndjson │ │ │ ├── replace_table.ndjson │ │ │ ├── schema_option.ndjson │ │ │ ├── simple.ndjson │ │ │ ├── simple2.ndjson │ │ │ ├── type_hints.ndjson │ │ │ ├── type_hints_bq.ndjson │ │ │ ├── types.ndjson │ │ │ ├── types2.ndjson │ │ │ ├── types_coalesce.ndjson │ │ │ ├── types_collision.ndjson │ │ │ ├── types_collision2.ndjson │ │ │ ├── types_json.ndjson │ │ │ ├── types_json_noarr_part1.ndjson │ │ │ ├── types_json_noarr_part2.ndjson │ │ │ ├── types_json_part1.ndjson │ │ │ ├── types_json_part2.ndjson │ │ │ └── types_json_part3.ndjson │ │ │ ├── testcontainers │ │ │ ├── ch_container.go │ │ │ ├── clickhouse │ │ │ │ ├── ch_cluster_container.go │ │ │ │ ├── clickhouse01 │ │ │ │ │ ├── config.xml │ │ │ │ │ └── users.xml │ │ │ │ ├── clickhouse02 │ │ │ │ │ ├── config.xml │ │ │ │ │ └── users.xml │ │ │ │ ├── clickhouse03 │ │ │ │ │ ├── config.xml │ │ │ │ │ └── users.xml │ │ │ │ ├── clickhouse04 │ │ │ │ │ ├── config.xml │ │ │ │ │ └── users.xml │ │ │ │ └── docker-compose.yml │ │ │ ├── clickhouse_noshards │ │ │ │ ├── ch_cluster_container.go │ │ │ │ ├── clickhouse01 │ │ │ │ │ ├── config.xml │ │ │ │ │ └── users.xml │ │ │ │ ├── clickhouse02 │ │ │ │ │ ├── config.xml │ │ │ │ │ └── users.xml │ │ │ │ └── docker-compose.yml │ │ │ ├── mysql_container.go │ │ │ └── pg_container.go │ │ │ ├── transactional_stream.go │ │ │ ├── transactional_stream_test.go │ │ │ ├── tx_wrapper.go │ │ │ ├── type_resolver.go │ │ │ ├── types_test.go │ │ │ └── utils.go │ ├── loader.go │ ├── options.go │ └── types │ │ ├── avro.go │ │ ├── converter.go │ │ ├── datatype.go │ │ ├── datatype_test.go │ │ ├── error.go │ │ ├── marshaller.go │ │ ├── object.go │ │ ├── schema.go │ │ └── sqltype.go ├── config-keeper │ ├── app.go │ ├── config.go │ ├── go.mod │ ├── main.go │ └── router.go ├── connectors │ ├── airbytecdk │ │ ├── LICENCE │ │ ├── README.md │ │ ├── cmdparser.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── inferschema.go │ │ ├── protocol.go │ │ ├── safewriter.go │ │ ├── schema │ │ │ └── schema.go │ │ ├── source.go │ │ ├── sourceRunner.go │ │ └── trackers.go │ ├── firebase.Dockerfile │ ├── firebase │ │ ├── firebase.go │ │ ├── firebase_test.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── firebasebuild.sh ├── eventslog │ ├── ch_events_log.go │ ├── events_log.go │ ├── events_log_config.go │ ├── events_log_test.go │ ├── go.mod │ ├── go.sum │ ├── metrics.go │ ├── redis_events_log.go │ └── testcontainers │ │ └── redis.go ├── go.work ├── go.work.sum ├── ingest.Dockerfile ├── ingest │ ├── app.go │ ├── backup_logger.go │ ├── config.go │ ├── consumer_monitor.go │ ├── default.pgo │ ├── destination_types.go │ ├── filters.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── metrics.go │ ├── metrics_server.go │ ├── repository.go │ ├── router.go │ ├── router_batch_handler.go │ ├── router_batch_handler_test.go │ ├── router_classic_handler.go │ ├── router_ingest_handler.go │ ├── router_pixel_handler.go │ ├── router_script_handler.go │ ├── router_segment_settings_handler.go │ ├── script_repository.go │ └── types.go ├── ingestbuild.sh ├── ingress-manager │ ├── app.go │ ├── config.go │ ├── go.mod │ ├── go.sum │ ├── k8s.go │ ├── main.go │ ├── manager.go │ └── router.go ├── jitsubase │ ├── appbase │ │ ├── abstract_repository.go │ │ ├── app_base.go │ │ ├── http_repository.go │ │ ├── router_base.go │ │ ├── router_base_test.go │ │ └── service_base.go │ ├── coordination │ │ └── interface.go │ ├── errorj │ │ └── types.go │ ├── go.mod │ ├── go.sum │ ├── jsoniter │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── config.go │ │ ├── example_test.go │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_sloppy_test.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── stream_test.go │ ├── jsonorder │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── config.go │ │ ├── example_test.go │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_sloppy_test.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── json_test.go │ │ ├── jsoniter.go │ │ ├── list.go │ │ ├── orderedmap.go │ │ ├── orderedset.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_orderedmap.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── stream_test.go │ ├── locks │ │ └── types.go │ ├── logging │ │ ├── dual.go │ │ ├── global_logger.go │ │ ├── level.go │ │ ├── object_logger.go │ │ ├── proxy.go │ │ ├── query_logger.go │ │ ├── rolling_writer.go │ │ ├── string_writer.go │ │ ├── task_logger.go │ │ ├── utils.go │ │ └── writer_mock.go │ ├── main.go │ ├── pg │ │ └── pgpool.go │ ├── safego │ │ ├── safego.go │ │ └── safego_test.go │ ├── timestamp │ │ ├── format.go │ │ ├── timestamp.go │ │ └── timestamp_test.go │ ├── types │ │ ├── LICENSE │ │ ├── README.md │ │ ├── json.go │ │ ├── json_test.go │ │ └── set.go │ ├── utils │ │ ├── arrays.go │ │ ├── bool.go │ │ ├── bytes.go │ │ ├── bytes_test.go │ │ ├── cache.go │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── errors.go │ │ ├── hash.go │ │ ├── maps.go │ │ ├── net.go │ │ ├── numbers.go │ │ ├── objects.go │ │ ├── sets.go │ │ ├── strings.go │ │ └── time.go │ └── uuid │ │ └── uuid.go ├── kafkabase │ ├── failover_config.go │ ├── failover_logger.go │ ├── failover_logger_test.go │ ├── go.mod │ ├── go.sum │ ├── kafka_config.go │ ├── metrics.go │ ├── producer.go │ └── utils.go ├── operator │ ├── app.go │ ├── config.go │ ├── go.mod │ ├── go.sum │ ├── k8s.go │ ├── main.go │ ├── operator.go │ ├── repository.go │ ├── router.go │ └── types.go ├── release.sh ├── reprocessing-worker-build.sh ├── reprocessing-worker.Dockerfile ├── reprocessing-worker │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── repository.go ├── sidecar.Dockerfile ├── sidecarbuild.sh ├── sync-controller │ ├── README.md │ ├── app.go │ ├── config.go │ ├── db_schema.go │ ├── examples │ │ ├── docker-compose │ │ │ ├── README.md │ │ │ ├── catalog.json │ │ │ ├── config.json │ │ │ ├── github_compose.yaml │ │ │ └── state.json │ │ └── k8s │ │ │ ├── README.md │ │ │ └── github_pod.yaml │ ├── go.mod │ ├── go.sum │ ├── job_runner.go │ ├── k8s.go │ ├── main.go │ ├── router.go │ ├── task.go │ └── task_manager.go ├── sync-sidecar │ ├── README.md │ ├── db │ │ └── db.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── read.go │ ├── spec_catalog.go │ └── types.go ├── syncctl.Dockerfile └── syncctlbuild.sh ├── cli └── jitsu-cli │ ├── bin │ └── jitsu-cli │ ├── build.mts │ ├── data │ └── page.json │ ├── package.json │ ├── src │ ├── commands │ │ ├── build.ts │ │ ├── deploy.ts │ │ ├── init.ts │ │ ├── login.ts │ │ ├── shared.ts │ │ ├── test.ts │ │ └── whoami.ts │ ├── index.ts │ ├── lib │ │ ├── chalk-code-highlight.ts │ │ ├── compiled-function.ts │ │ ├── indent.ts │ │ ├── template.ts │ │ └── version.ts │ └── templates │ │ └── functions.ts │ └── tsconfig.json ├── console.cron ├── docker-start-console.sh ├── docker ├── .env ├── .gitignore ├── README.md └── docker-compose.yml ├── e2e ├── jest.config.js ├── package.json ├── src │ ├── env.ts │ └── rotor.test.ts └── tsconfig.json ├── emulate-ci-build.sh ├── libs ├── common-config │ ├── README.md │ ├── index.d.ts │ ├── package.json │ ├── swc.config.json │ ├── tsconfig.json │ ├── vitest.config.ts │ └── vitest.setup.ts ├── core-functions-lib │ ├── .gitignore │ ├── __tests__ │ │ └── strings.test.ts │ ├── package.json │ ├── src │ │ ├── functions │ │ │ └── lib │ │ │ │ ├── browser.ts │ │ │ │ ├── index.ts │ │ │ │ ├── json-fetch.ts │ │ │ │ ├── store.ts │ │ │ │ ├── strings.ts │ │ │ │ └── ua.ts │ │ ├── index.ts │ │ └── lib │ │ │ ├── config-types.ts │ │ │ ├── entity-store.ts │ │ │ └── inmem-store.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── destination-functions │ ├── .gitignore │ ├── __tests__ │ │ ├── datalayout-segment.test.ts │ │ ├── facebook-conversions.test.ts │ │ ├── hubspot-destination.test.ts │ │ ├── intercom-destination.test.ts │ │ ├── lib │ │ │ ├── datalayout-test-data.ts │ │ │ ├── mem-store.ts │ │ │ ├── test-data.ts │ │ │ └── testing-lib.ts │ │ ├── mixpanel.test.ts │ │ ├── posthog.test.ts │ │ └── user-recognition.test.ts │ ├── package.json │ ├── src │ │ ├── functions │ │ │ ├── amplitude-destination.ts │ │ │ ├── braze-destination.ts │ │ │ ├── bulker-destination.ts │ │ │ ├── facebook-conversions.ts │ │ │ ├── ga4-destination.ts │ │ │ ├── hubspot-destination.ts │ │ │ ├── intercom-destination.ts │ │ │ ├── june-destination.ts │ │ │ ├── lib │ │ │ │ ├── nango-config.ts │ │ │ │ └── oauth.ts │ │ │ ├── mixpanel-destination.ts │ │ │ ├── mongodb-destination.ts │ │ │ ├── posthog-destination.ts │ │ │ ├── salesforce-destination.ts │ │ │ ├── segment-destination.ts │ │ │ ├── statsig-destination.ts │ │ │ ├── user-recognition.ts │ │ │ └── webhook-destination.ts │ │ ├── index.ts │ │ └── meta.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── functions │ ├── __tests__ │ │ ├── classic-mapping.test.ts │ │ └── data │ │ │ └── classic-events.ts │ ├── bundle.mts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── functions.ts │ │ │ ├── objects.ts │ │ │ └── strings.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── jitsu-js │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── node │ │ │ ├── method-queue.test.ts │ │ │ └── nodejs.test.ts │ │ ├── playwright │ │ │ ├── cases │ │ │ │ ├── anonymous-id-bug.html │ │ │ │ ├── basic.html │ │ │ │ ├── callbacks.html │ │ │ │ ├── cookie-names.html │ │ │ │ ├── disable-user-ids.html │ │ │ │ ├── dont-send.html │ │ │ │ ├── ip-policy.html │ │ │ │ ├── reset.html │ │ │ │ ├── segment-reference.html │ │ │ │ ├── spa-navigation.html │ │ │ │ └── url-bug.html │ │ │ └── integration.test.ts │ │ └── simple-syrup.ts │ ├── bundle.mts │ ├── package.json │ ├── playwrite.config.ts │ ├── rollup.config.js │ ├── src │ │ ├── analytics-plugin.ts │ │ ├── browser.ts │ │ ├── destination-plugins │ │ │ ├── ga4.ts │ │ │ ├── gtm.ts │ │ │ ├── index.ts │ │ │ ├── logrocket.ts │ │ │ ├── no-destination-plugins.ts │ │ │ └── tag.ts │ │ ├── index.ts │ │ ├── method-queue.ts │ │ ├── script-loader.ts │ │ ├── tlds.ts │ │ └── version.ts │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── vitest.config.ts ├── jitsu-react │ ├── README.md │ ├── bundle.mts │ ├── package.json │ ├── src │ │ ├── JitsuContext.tsx │ │ ├── JitsuProvider.tsx │ │ ├── index.ts │ │ └── useJitsu.ts │ └── tsconfig.json ├── jsondiffpatch │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── jest.config.cjs │ ├── package.json │ ├── src │ │ ├── contexts │ │ │ ├── context.ts │ │ │ ├── diff.ts │ │ │ └── patch.ts │ │ ├── diffpatcher.ts │ │ ├── filters │ │ │ ├── dates.ts │ │ │ ├── nested.ts │ │ │ └── trivial.ts │ │ ├── index.ts │ │ ├── pipe.ts │ │ ├── processor.ts │ │ └── types.ts │ ├── test │ │ ├── examples │ │ │ └── diffpatch.ts │ │ ├── index.spec.ts │ │ └── tsconfig.json │ └── tsconfig.json └── juava │ ├── .gitignore │ ├── __tests__ │ ├── id.test.ts │ ├── objects.test.ts │ ├── security.test.ts │ └── sql-params.test.ts │ ├── package.json │ ├── src │ ├── asserts.ts │ ├── boolean.ts │ ├── cache.ts │ ├── collections.ts │ ├── color.ts │ ├── date.ts │ ├── debounce.ts │ ├── error.ts │ ├── id.ts │ ├── index.ts │ ├── interval.ts │ ├── log.ts │ ├── number.ts │ ├── objects.ts │ ├── rpc.ts │ ├── security.ts │ ├── shorts.ts │ ├── singleton.ts │ ├── sql-params.ts │ ├── stopwatch.ts │ ├── strings.ts │ └── throttle.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── services └── rotor │ ├── .gitignore │ ├── __tests__ │ ├── functions-chain-data.ts │ ├── functions-chain.test.ts │ ├── inmem-store.test.ts │ ├── kafka.test.ts │ ├── simple-syrup.ts │ └── udf.test.ts │ ├── build.mts │ ├── entrypoint.sh │ ├── eslint.config.js │ ├── package.json │ ├── src │ ├── functions-server.ts │ ├── http │ │ ├── functions.ts │ │ ├── profile-events.ts │ │ ├── profiles-udf.ts │ │ └── udf.ts │ ├── index.ts │ ├── lib │ │ ├── builder.ts │ │ ├── clickhouse-logger.ts │ │ ├── crypto-code.ts │ │ ├── crypto-code.txtjs │ │ ├── db.ts │ │ ├── functions-chain.ts │ │ ├── kafka-config.ts │ │ ├── kafka.ts │ │ ├── maxmind.ts │ │ ├── message-handler.ts │ │ ├── metrics.ts │ │ ├── mongodb-destination.ts │ │ ├── mongodb.ts │ │ ├── pb-functions-chain.ts │ │ ├── priority-consumer.ts │ │ ├── profiles-functions.ts │ │ ├── profiles-udf-wrapper-code.ts │ │ ├── profiles-udf-wrapper-code.txtjs │ │ ├── profiles-udf-wrapper.ts │ │ ├── redis.ts │ │ ├── repositories.ts │ │ ├── retries.ts │ │ ├── rotor.ts │ │ ├── store.ts │ │ ├── udf-wrapper-code.ts │ │ ├── udf-wrapper-code.txtjs │ │ ├── udf_wrapper.ts │ │ ├── version.ts │ │ └── warehouse-store.ts │ └── serverEnv.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── sync-bulker.sh ├── turbo.jsonc ├── types └── protocols │ ├── analytics.d.ts │ ├── async-request.d.ts │ ├── functions.d.ts │ ├── iso8601.d.ts │ ├── package.json │ ├── profile.d.ts │ └── tsconfig.json ├── vercel.json ├── versions.sh └── webapps ├── console ├── .eslintrc.json ├── .gitignore ├── .storybook │ ├── main.ts │ └── preview.ts ├── components │ ├── AntdTheme │ │ └── AntdTheme.tsx │ ├── ApiKeyEditor │ │ └── ApiKeyEditor.tsx │ ├── AsyncButton │ │ └── AsyncButton.tsx │ ├── BackButton │ │ └── BackButton.tsx │ ├── Billing │ │ ├── BillingBlockingDialog.tsx │ │ ├── BillingManager.module.css │ │ ├── BillingManager.tsx │ │ ├── BillingProvider.tsx │ │ ├── UpgradeDialog.tsx │ │ ├── copy.tsx │ │ └── use-events-usage.ts │ ├── BillingDetails │ │ └── BillingDetails.tsx │ ├── ButtonGroup │ │ ├── ButtonGroup.module.css │ │ └── ButtonGroup.tsx │ ├── ButtonLabel │ │ ├── ButtonLabel.module.css │ │ └── ButtonLabel.tsx │ ├── Callout │ │ └── Callout.tsx │ ├── Center │ │ └── Center.tsx │ ├── ChangePassword │ │ └── ChangePassword.tsx │ ├── CodeBlock │ │ ├── CodeBlock.module.css │ │ ├── CodeBlock.tsx │ │ └── CodeBlockLight.tsx │ ├── CodeEditor │ │ ├── CodeEditor.module.css │ │ ├── CodeEditor.tsx │ │ └── SnippedEditor.tsx │ ├── ConfigObjectEditor │ │ ├── ConfigEditor.module.css │ │ ├── ConfigEditor.tsx │ │ ├── EditorBase.tsx │ │ ├── EditorButtons.tsx │ │ ├── EditorField.tsx │ │ ├── EditorTitle.tsx │ │ ├── Editors.module.css │ │ ├── Editors.tsx │ │ └── SchemaForm.tsx │ ├── ConnectionEditorPage │ │ ├── ConnectionEditorPage.module.css │ │ └── ConnectionEditorPage.tsx │ ├── ConnectionsDiagram │ │ └── ConnectionsDiagram.tsx │ ├── CopyButton │ │ └── CopyButton.tsx │ ├── DataRentionEditor │ │ └── DataRentionEditor.tsx │ ├── DataView │ │ ├── DataView.tsx │ │ ├── EventsBrowser.tsx │ │ ├── JSONView.tsx │ │ └── TableWithDrawer.tsx │ ├── DestinationsCatalog │ │ ├── DestinationsCatalog.module.css │ │ └── DestinationsCatalog.tsx │ ├── Disable │ │ └── Disable.tsx │ ├── DocumentedLabel │ │ └── DocumentedLabel.tsx │ ├── DomainsEditor │ │ └── DomainsEditor.tsx │ ├── EditorToolbar │ │ └── EditorToolbar.tsx │ ├── EventStat │ │ └── EventStatPage.tsx │ ├── Expandable │ │ └── Expandable.tsx │ ├── ExpandableButton │ │ ├── ExpandableButton.module.css │ │ └── ExpandableButton.tsx │ ├── FieldListEditorLayout │ │ ├── FieldListEditorLayout.module.css │ │ └── FieldListEditorLayout.tsx │ ├── FunctionsDebugger │ │ ├── CodeViewer.tsx │ │ ├── FunctionLogs.tsx │ │ ├── FunctionResult.tsx │ │ ├── FunctionVariables.tsx │ │ ├── FunctionsDebugger.module.css │ │ ├── FunctionsDebugger.tsx │ │ ├── code_templates.ts │ │ └── example_events.ts │ ├── FunctionsSelector │ │ └── FunctionsSelector.tsx │ ├── GlobalError │ │ └── GlobalError.tsx │ ├── GlobalLoader │ │ └── GlobalLoader.tsx │ ├── Htmlizer │ │ └── Htmlizer.tsx │ ├── Icons │ │ ├── ExternalLink.tsx │ │ └── FileText.tsx │ ├── JitsuButton │ │ └── JitsuButton.tsx │ ├── JsonAsTable │ │ ├── JsonAsTable.module.css │ │ └── JsonAsTable.tsx │ ├── LabelEllipsis │ │ └── LabelEllipsis.tsx │ ├── MultiSelectWithCustomOptions │ │ └── MultiSelectWithCustomOptions.tsx │ ├── ObjectTitle │ │ └── ObjectTitle.tsx │ ├── OidcAuthorizer │ │ └── OidcAuthorizer.tsx │ ├── Overlay │ │ ├── Overlay.module.css │ │ └── Overlay.tsx │ ├── PageLayout │ │ ├── WorkspacePageLayout.module.css │ │ └── WorkspacePageLayout.tsx │ ├── PriorityQueueBar │ │ └── PriorityQueueBar.tsx │ ├── ProfileBuilderPage │ │ ├── ProfileBuilderPage.module.css │ │ ├── ProfileBuilderPage.tsx │ │ └── example.ts │ ├── ProvisionDatabaseButton │ │ └── ProvisionDatabaseButton.tsx │ ├── QueryResponse │ │ └── QueryResponse.tsx │ ├── Redirect │ │ └── Redirect.tsx │ ├── SQLViewer │ │ ├── SQLViewer.module.css │ │ └── SQLViewer.tsx │ ├── Selectors │ │ ├── DestinationSelector.tsx │ │ └── SourceSelector.tsx │ ├── ServiceEditor │ │ └── ServiceEditor.tsx │ ├── ServicesCatalog │ │ ├── ServicesCatalog.module.css │ │ └── ServicesCatalog.tsx │ ├── SignInOrUp │ │ ├── EmailFirstLogin.tsx │ │ ├── GoogleLogo.tsx │ │ ├── OAuthButtons.tsx │ │ ├── SignInOrUp.tsx │ │ └── use-query-string-copy.ts │ ├── SyncEditorPage │ │ └── SyncEditorPage.tsx │ ├── TrackingIntegrationDocumentation │ │ ├── HTTPApi.tsx │ │ ├── Html.tsx │ │ ├── NPMPackage.tsx │ │ ├── Other.tsx │ │ ├── React.tsx │ │ ├── TrackingIntegrationDocumentation.module.css │ │ ├── TrackingIntegrationDocumentation.tsx │ │ └── params.tsx │ ├── UserNotificationSettings │ │ └── UserNotificationSettings.tsx │ ├── Workspace │ │ └── WLink.tsx │ └── WorkspaceNameAndSlugEditor │ │ └── WorkspaceNameAndSlugEditor.tsx ├── emails │ ├── connection-dead-lettered.tsx │ ├── connection-status-failed.tsx │ ├── connection-status-firstrun.tsx │ ├── connection-status-flapping.tsx │ ├── connection-status-ongoing.tsx │ ├── connection-status-partial.tsx │ ├── connection-status-recovered.tsx │ ├── shared.tsx │ └── styles.ts ├── lib │ ├── api.ts │ ├── auth-redirect.ts │ ├── auth.ts │ ├── branding.tsx │ ├── code.ts │ ├── context.tsx │ ├── domains.ts │ ├── firebase-client.tsx │ ├── modal.tsx │ ├── nextauth.config.ts │ ├── oidc.ts │ ├── openapi.ts │ ├── previous-route.tsx │ ├── recovery-log.ts │ ├── schema │ │ ├── clickhouse-connection-credentials.ts │ │ ├── config-objects.ts │ │ ├── destinations.tsx │ │ ├── icons │ │ │ ├── amplitude.tsx │ │ │ ├── bigquery.tsx │ │ │ ├── blaze.tsx │ │ │ ├── clickhouse.tsx │ │ │ ├── devnull.tsx │ │ │ ├── facebook.tsx │ │ │ ├── ga4.tsx │ │ │ ├── gcs.tsx │ │ │ ├── gtm.tsx │ │ │ ├── hubspot.tsx │ │ │ ├── intercom.tsx │ │ │ ├── june.tsx │ │ │ ├── logrocket.tsx │ │ │ ├── mixpanel.tsx │ │ │ ├── mongodb.tsx │ │ │ ├── motherduck.tsx │ │ │ ├── mysql.tsx │ │ │ ├── postgres.tsx │ │ │ ├── posthog.tsx │ │ │ ├── redshift.tsx │ │ │ ├── s3.tsx │ │ │ ├── salesforce.tsx │ │ │ ├── segment.tsx │ │ │ ├── snowflake.tsx │ │ │ ├── statsig.tsx │ │ │ ├── tag.tsx │ │ │ └── webhook.tsx │ │ ├── index.ts │ │ └── secrets.ts │ ├── server │ │ ├── audit-log.ts │ │ ├── clickhouse.ts │ │ ├── custom-domains.ts │ │ ├── data-domains.ts │ │ ├── db.ts │ │ ├── dead-letter.ts │ │ ├── ee.ts │ │ ├── events-log.ts │ │ ├── firebase-server.ts │ │ ├── http-agent.ts │ │ ├── log.ts │ │ ├── mail.tsx │ │ ├── oauth │ │ │ ├── destinations.ts │ │ │ ├── nango-config.ts │ │ │ └── services.ts │ │ ├── oidc-discovery.ts │ │ ├── oidc-error-handler.ts │ │ ├── oidc-token-service.ts │ │ ├── oidc-types.ts │ │ ├── origin.ts │ │ ├── read-only-mode.ts │ │ ├── seed.ts │ │ ├── serverEnv.ts │ │ ├── sync.ts │ │ ├── syncs │ │ │ └── mixpanel.ts │ │ ├── telemetry.ts │ │ ├── templates.tsx │ │ ├── user-preferences.ts │ │ └── whoami.ts │ ├── shared │ │ ├── arrays.ts │ │ ├── chores.ts │ │ ├── clientEnv.ts │ │ ├── countries.ts │ │ ├── data-retention.ts │ │ ├── domain-check-response.ts │ │ ├── email-domains.ts │ │ ├── errors.ts │ │ ├── json.ts │ │ ├── name-utils.ts │ │ ├── reporting.ts │ │ ├── url.ts │ │ └── zod.ts │ ├── sources.ts │ ├── store │ │ └── index.tsx │ ├── ui.tsx │ ├── useApi.ts │ ├── useQueryStringState.ts │ ├── version.ts │ ├── workspace-roles.ts │ └── zod.ts ├── middleware.ts_ ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── 403.tsx │ ├── 404.tsx │ ├── 405.tsx │ ├── 500.tsx │ ├── [workspaceId] │ │ ├── connections │ │ │ ├── edit.tsx │ │ │ └── index.tsx │ │ ├── custom-images.tsx │ │ ├── data.tsx │ │ ├── destinations.tsx │ │ ├── event-stat.tsx │ │ ├── functions.tsx │ │ ├── index.tsx │ │ ├── miscs.tsx │ │ ├── profile-builder.tsx │ │ ├── services.tsx │ │ ├── settings │ │ │ ├── billing │ │ │ │ ├── details.tsx │ │ │ │ └── index.tsx │ │ │ ├── data-retention.tsx │ │ │ ├── domains.tsx │ │ │ ├── index.tsx │ │ │ └── notifications.tsx │ │ ├── sql.tsx │ │ ├── streams.tsx │ │ ├── support.tsx │ │ └── syncs │ │ │ ├── edit.tsx │ │ │ ├── index.tsx │ │ │ ├── logs.tsx │ │ │ ├── state.tsx │ │ │ └── tasks.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── accept.tsx │ ├── admin │ │ ├── [workspaceId] │ │ │ └── email.tsx │ │ ├── email-preview.tsx │ │ ├── events-debug.tsx │ │ ├── oauth-test.tsx │ │ ├── overage-billing.tsx │ │ ├── users.tsx │ │ └── workspaces.tsx │ ├── api │ │ ├── [...not-found-404].ts │ │ ├── [workspaceId] │ │ │ ├── config │ │ │ │ ├── [type] │ │ │ │ │ ├── [id].ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── test.ts │ │ │ │ ├── link.ts │ │ │ │ └── profile-builder.ts │ │ │ ├── dead-letter │ │ │ │ └── [actorId].ts │ │ │ ├── domain-check.ts │ │ │ ├── ee │ │ │ │ ├── [...proxyPath].ts │ │ │ │ └── provision-db │ │ │ │ │ ├── credentials.ts │ │ │ │ │ └── index.ts │ │ │ ├── function │ │ │ │ └── run.ts │ │ │ ├── listen.ts │ │ │ ├── log │ │ │ │ └── [type] │ │ │ │ │ └── [actorId].ts │ │ │ ├── metrics │ │ │ │ └── index.ts │ │ │ ├── notification-test.ts │ │ │ ├── profile-builder │ │ │ │ ├── events.ts │ │ │ │ ├── run.ts │ │ │ │ └── state.ts │ │ │ ├── reports │ │ │ │ ├── active-events.ts │ │ │ │ ├── event-stat.ts │ │ │ │ └── sync-stat.ts │ │ │ ├── sources │ │ │ │ ├── cancel.ts │ │ │ │ ├── check.ts │ │ │ │ ├── discover.ts │ │ │ │ ├── logs.ts │ │ │ │ ├── run.ts │ │ │ │ ├── spec.ts │ │ │ │ ├── state.ts │ │ │ │ └── tasks.ts │ │ │ └── sql │ │ │ │ ├── query.ts │ │ │ │ └── schema.ts │ │ ├── admin │ │ │ ├── become.ts │ │ │ ├── catalog-refresh.ts │ │ │ ├── domains-report.ts │ │ │ ├── domains.ts │ │ │ ├── email-templates │ │ │ │ ├── [template].tsx │ │ │ │ └── index.ts │ │ │ ├── env.ts │ │ │ ├── events-log-init.ts │ │ │ ├── events-log-trim.ts │ │ │ ├── export │ │ │ │ └── [name] │ │ │ │ │ └── index.ts │ │ │ ├── notifications.ts │ │ │ ├── sync-logs-trim.ts │ │ │ └── users.ts │ │ ├── app-config.ts │ │ ├── auth │ │ │ ├── [...nextauth].ts │ │ │ ├── check-email.ts │ │ │ └── dynamic-oidc │ │ │ │ ├── authorize.ts │ │ │ │ ├── callback.ts │ │ │ │ ├── logout.ts │ │ │ │ ├── renew.ts │ │ │ │ └── session.ts │ │ ├── destinations.ts │ │ ├── ee │ │ │ └── jwt.ts │ │ ├── fb-auth │ │ │ ├── create-session.ts │ │ │ ├── create-user.ts │ │ │ └── revoke-session.ts │ │ ├── healthcheck │ │ │ ├── db.ts │ │ │ └── index.ts │ │ ├── id.ts │ │ ├── init-user.ts │ │ ├── make-error.ts │ │ ├── me.ts │ │ ├── oauth │ │ │ ├── catalog.ts │ │ │ ├── init.ts │ │ │ └── service.ts │ │ ├── ping.ts │ │ ├── s │ │ │ └── javascript-library.ts │ │ ├── schema │ │ │ ├── [...type].ts │ │ │ └── index.ts │ │ ├── sources │ │ │ ├── [packageType] │ │ │ │ └── [...packageId].ts │ │ │ ├── index.ts │ │ │ ├── logo.ts │ │ │ └── versions.ts │ │ ├── user │ │ │ ├── accept.ts │ │ │ ├── change-password.ts │ │ │ ├── cli-key.ts │ │ │ ├── invitations.ts │ │ │ ├── keys.ts │ │ │ ├── notifications-settings.ts │ │ │ ├── properties.ts │ │ │ └── reject.ts │ │ ├── version.ts │ │ └── workspace │ │ │ ├── [workspaceIdOrSlug] │ │ │ ├── [section] │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── users │ │ │ │ ├── [userId] │ │ │ │ └── role.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── validate.ts │ ├── cli.tsx │ ├── custom-plan.tsx │ ├── index.tsx │ ├── new-workspace.tsx │ ├── reset-password.tsx │ ├── signin.tsx │ ├── signup.tsx │ ├── user.tsx │ └── workspaces.tsx ├── postcss.config.js ├── prisma │ ├── events_log.sql │ ├── metrics.sql │ ├── schema.prisma │ └── workspace-sync-runs.sql ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── external-link.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── logo-classic-gray.svg │ ├── logo-classic.svg │ ├── logo-with-text.svg │ ├── logo.svg │ └── safari-pinned-tab.svg ├── scripts │ └── manage.ts ├── styles │ └── globals.css ├── tailwind.config.js ├── theme.config.js ├── tsconfig.json └── vercel.sh ├── ee-api ├── .eslintrc.json ├── .gitignore ├── README.md ├── components │ └── email-component.tsx ├── emails │ ├── billing-issues.tsx │ ├── churned.tsx │ ├── connection-status-failed.tsx │ ├── connection-status-success.tsx │ ├── quota-about-to-exceed.tsx │ ├── quota-exceeded.tsx │ ├── styles.ts │ ├── throttling-reminder.tsx │ ├── throttling-started.tsx │ └── welcome.tsx ├── lib │ ├── auth.ts │ ├── email.tsx │ ├── firebase-auth.ts │ ├── log.ts │ ├── route-helpers.ts │ ├── services.ts │ ├── sql │ │ └── workspace-info.sql │ ├── store.ts │ └── stripe.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ ├── billing │ │ │ ├── custom-plan.ts │ │ │ ├── export-subscriptions.ts │ │ │ ├── manage.ts │ │ │ ├── plans.ts │ │ │ ├── rotate-stripe-customer.ts │ │ │ ├── settings.ts │ │ │ ├── upgrade.ts │ │ │ └── workspaces.ts │ │ ├── custom-token.ts │ │ ├── email-history.tsx │ │ ├── email.tsx │ │ ├── healthcheck │ │ │ └── index.ts │ │ ├── is-active.ts │ │ ├── provision-db.ts │ │ ├── quotas │ │ │ └── sync.ts │ │ ├── report │ │ │ ├── overage.ts │ │ │ └── workspace-stat.ts │ │ ├── s3-connections.ts │ │ ├── s3-init.ts │ │ ├── set-throttle.ts │ │ ├── sync-cache.ts │ │ ├── unsubscribe.ts │ │ └── user-created.ts │ └── index.tsx ├── scripts │ ├── sql-exec.ts │ └── sql │ │ ├── 01-kv-schema.sql │ │ ├── 02-backup-connections.sql │ │ ├── 03-debug-views.sql │ │ ├── 04-events-export.sql │ │ └── 05-stat-cache.sql ├── tsconfig.json ├── vercel.json └── vercel.sh └── shared ├── package.json ├── src ├── email-template.tsx ├── email.tsx ├── index.ts ├── styles.ts ├── template-example.tsx └── types.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.github/actions/slack-notify/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/actions/slack-notify/action.yml -------------------------------------------------------------------------------- /.github/actions/version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/actions/version/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-builder-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/build-builder-image.yml -------------------------------------------------------------------------------- /.github/workflows/claude-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/claude-review.yml -------------------------------------------------------------------------------- /.github/workflows/client-libraries-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/client-libraries-build.yaml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/close-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/services-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/services-build.yaml -------------------------------------------------------------------------------- /.github/workflows/test-slack-notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.github/workflows/test-slack-notification.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | pnpm pre-commit 5 | -------------------------------------------------------------------------------- /.jsclient.version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.jsclient.version.json -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v24.11.0 -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.readme-assets/github-hero-dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.readme-assets/github-hero-dark-mode.png -------------------------------------------------------------------------------- /.readme-assets/github-hero-light-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.readme-assets/github-hero-light-mode.png -------------------------------------------------------------------------------- /.readme-assets/overview-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.readme-assets/overview-screenshot.png -------------------------------------------------------------------------------- /.services.version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/.services.version.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/README.md -------------------------------------------------------------------------------- /all.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/all.Dockerfile -------------------------------------------------------------------------------- /bulker/.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /bulker/.docs/assets/bulker-summary.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/assets/bulker-summary.excalidraw.png -------------------------------------------------------------------------------- /bulker/.docs/assets/stream-batch.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/assets/stream-batch.excalidraw.png -------------------------------------------------------------------------------- /bulker/.docs/db-feature-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/db-feature-matrix.md -------------------------------------------------------------------------------- /bulker/.docs/http-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/http-api.md -------------------------------------------------------------------------------- /bulker/.docs/rfcs/data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/rfcs/data_types.md -------------------------------------------------------------------------------- /bulker/.docs/rfcs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/rfcs/http.md -------------------------------------------------------------------------------- /bulker/.docs/server-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.docs/server-config.md -------------------------------------------------------------------------------- /bulker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/.gitignore -------------------------------------------------------------------------------- /bulker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/CONTRIBUTING.md -------------------------------------------------------------------------------- /bulker/GOWORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/GOWORK.md -------------------------------------------------------------------------------- /bulker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/LICENSE -------------------------------------------------------------------------------- /bulker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/README.md -------------------------------------------------------------------------------- /bulker/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/TODO.md -------------------------------------------------------------------------------- /bulker/admin/REPROCESSING_K8S.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/REPROCESSING_K8S.md -------------------------------------------------------------------------------- /bulker/admin/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/app.go -------------------------------------------------------------------------------- /bulker/admin/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/config.go -------------------------------------------------------------------------------- /bulker/admin/failover_reprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/failover_reprocessor.go -------------------------------------------------------------------------------- /bulker/admin/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/go.mod -------------------------------------------------------------------------------- /bulker/admin/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/go.sum -------------------------------------------------------------------------------- /bulker/admin/k8s_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/k8s_client.go -------------------------------------------------------------------------------- /bulker/admin/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/kafka.go -------------------------------------------------------------------------------- /bulker/admin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/main.go -------------------------------------------------------------------------------- /bulker/admin/reprocessing_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/reprocessing_db.go -------------------------------------------------------------------------------- /bulker/admin/reprocessing_db_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/reprocessing_db_schema.go -------------------------------------------------------------------------------- /bulker/admin/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/router.go -------------------------------------------------------------------------------- /bulker/admin/router_reprocessing_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/router_reprocessing_handler.go -------------------------------------------------------------------------------- /bulker/admin/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/admin/types.go -------------------------------------------------------------------------------- /bulker/all.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/all.Dockerfile -------------------------------------------------------------------------------- /bulker/allbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/allbuild.sh -------------------------------------------------------------------------------- /bulker/bulker.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulker.Dockerfile -------------------------------------------------------------------------------- /bulker/bulkerapp/app/abstract_batch_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/abstract_batch_consumer.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/abstract_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/abstract_consumer.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/app.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/app_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/app_config.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/batch_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/batch_consumer.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/configuration_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/configuration_source.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/cron.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/fast_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/fast_store.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/http_configuration_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/http_configuration_source.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/integration_test.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/load_test.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/metrics_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/metrics_server.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/producer.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/repository.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/retry_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/retry_consumer.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/router.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/stream_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/stream_consumer.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/test_data/badbatch.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/test_data/badbatch.ndjson -------------------------------------------------------------------------------- /bulker/bulkerapp/app/test_data/bulker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/test_data/bulker.env -------------------------------------------------------------------------------- /bulker/bulkerapp/app/test_data/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/test_data/config.yaml -------------------------------------------------------------------------------- /bulker/bulkerapp/app/test_data/goodbatch.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/test_data/goodbatch.ndjson -------------------------------------------------------------------------------- /bulker/bulkerapp/app/test_data/single.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/test_data/single.ndjson -------------------------------------------------------------------------------- /bulker/bulkerapp/app/topic_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/topic_manager.go -------------------------------------------------------------------------------- /bulker/bulkerapp/app/topic_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/app/topic_manager_test.go -------------------------------------------------------------------------------- /bulker/bulkerapp/default.pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/default.pgo -------------------------------------------------------------------------------- /bulker/bulkerapp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/go.mod -------------------------------------------------------------------------------- /bulker/bulkerapp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/go.sum -------------------------------------------------------------------------------- /bulker/bulkerapp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/main.go -------------------------------------------------------------------------------- /bulker/bulkerapp/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerapp/metrics/metrics.go -------------------------------------------------------------------------------- /bulker/bulkerbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerbuild.sh -------------------------------------------------------------------------------- /bulker/bulkerlib/bulker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/bulker.go -------------------------------------------------------------------------------- /bulker/bulkerlib/bulker_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/bulker_state_test.go -------------------------------------------------------------------------------- /bulker/bulkerlib/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/go.mod -------------------------------------------------------------------------------- /bulker/bulkerlib/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/go.sum -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/file.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/file_storage/test_data/empty.ndjson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/flattener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/flattener.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/s3.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/abstract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/abstract.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/bigquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/bigquery.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/duckdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/duckdb.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/mysql.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/options.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/postgres.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/processor.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/redshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/redshift.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/snowflake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/snowflake.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/table.go -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/test_data/empty.ndjson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/test_data/existing_table_text.ndjson: -------------------------------------------------------------------------------- 1 | {"id": "string_id"} -------------------------------------------------------------------------------- /bulker/bulkerlib/implementations/sql/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/implementations/sql/utils.go -------------------------------------------------------------------------------- /bulker/bulkerlib/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/loader.go -------------------------------------------------------------------------------- /bulker/bulkerlib/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/options.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/avro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/avro.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/converter.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/datatype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/datatype.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/datatype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/datatype_test.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/error.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/marshaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/marshaller.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/object.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/schema.go -------------------------------------------------------------------------------- /bulker/bulkerlib/types/sqltype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/bulkerlib/types/sqltype.go -------------------------------------------------------------------------------- /bulker/config-keeper/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/config-keeper/app.go -------------------------------------------------------------------------------- /bulker/config-keeper/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/config-keeper/config.go -------------------------------------------------------------------------------- /bulker/config-keeper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/config-keeper/go.mod -------------------------------------------------------------------------------- /bulker/config-keeper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/config-keeper/main.go -------------------------------------------------------------------------------- /bulker/config-keeper/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/config-keeper/router.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/LICENCE -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/README.md -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/cmdparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/cmdparser.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/doc.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/go.mod -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/inferschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/inferschema.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/protocol.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/safewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/safewriter.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/schema/schema.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/source.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/sourceRunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/sourceRunner.go -------------------------------------------------------------------------------- /bulker/connectors/airbytecdk/trackers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/airbytecdk/trackers.go -------------------------------------------------------------------------------- /bulker/connectors/firebase.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebase.Dockerfile -------------------------------------------------------------------------------- /bulker/connectors/firebase/firebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebase/firebase.go -------------------------------------------------------------------------------- /bulker/connectors/firebase/firebase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebase/firebase_test.go -------------------------------------------------------------------------------- /bulker/connectors/firebase/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebase/go.mod -------------------------------------------------------------------------------- /bulker/connectors/firebase/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebase/go.sum -------------------------------------------------------------------------------- /bulker/connectors/firebase/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebase/main.go -------------------------------------------------------------------------------- /bulker/connectors/firebasebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/connectors/firebasebuild.sh -------------------------------------------------------------------------------- /bulker/eventslog/ch_events_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/ch_events_log.go -------------------------------------------------------------------------------- /bulker/eventslog/events_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/events_log.go -------------------------------------------------------------------------------- /bulker/eventslog/events_log_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/events_log_config.go -------------------------------------------------------------------------------- /bulker/eventslog/events_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/events_log_test.go -------------------------------------------------------------------------------- /bulker/eventslog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/go.mod -------------------------------------------------------------------------------- /bulker/eventslog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/go.sum -------------------------------------------------------------------------------- /bulker/eventslog/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/metrics.go -------------------------------------------------------------------------------- /bulker/eventslog/redis_events_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/redis_events_log.go -------------------------------------------------------------------------------- /bulker/eventslog/testcontainers/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/eventslog/testcontainers/redis.go -------------------------------------------------------------------------------- /bulker/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/go.work -------------------------------------------------------------------------------- /bulker/go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/go.work.sum -------------------------------------------------------------------------------- /bulker/ingest.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest.Dockerfile -------------------------------------------------------------------------------- /bulker/ingest/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/app.go -------------------------------------------------------------------------------- /bulker/ingest/backup_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/backup_logger.go -------------------------------------------------------------------------------- /bulker/ingest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/config.go -------------------------------------------------------------------------------- /bulker/ingest/consumer_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/consumer_monitor.go -------------------------------------------------------------------------------- /bulker/ingest/default.pgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/default.pgo -------------------------------------------------------------------------------- /bulker/ingest/destination_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/destination_types.go -------------------------------------------------------------------------------- /bulker/ingest/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/filters.go -------------------------------------------------------------------------------- /bulker/ingest/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/go.mod -------------------------------------------------------------------------------- /bulker/ingest/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/go.sum -------------------------------------------------------------------------------- /bulker/ingest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/main.go -------------------------------------------------------------------------------- /bulker/ingest/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/metrics.go -------------------------------------------------------------------------------- /bulker/ingest/metrics_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/metrics_server.go -------------------------------------------------------------------------------- /bulker/ingest/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/repository.go -------------------------------------------------------------------------------- /bulker/ingest/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router.go -------------------------------------------------------------------------------- /bulker/ingest/router_batch_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_batch_handler.go -------------------------------------------------------------------------------- /bulker/ingest/router_batch_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_batch_handler_test.go -------------------------------------------------------------------------------- /bulker/ingest/router_classic_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_classic_handler.go -------------------------------------------------------------------------------- /bulker/ingest/router_ingest_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_ingest_handler.go -------------------------------------------------------------------------------- /bulker/ingest/router_pixel_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_pixel_handler.go -------------------------------------------------------------------------------- /bulker/ingest/router_script_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_script_handler.go -------------------------------------------------------------------------------- /bulker/ingest/router_segment_settings_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/router_segment_settings_handler.go -------------------------------------------------------------------------------- /bulker/ingest/script_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/script_repository.go -------------------------------------------------------------------------------- /bulker/ingest/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingest/types.go -------------------------------------------------------------------------------- /bulker/ingestbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingestbuild.sh -------------------------------------------------------------------------------- /bulker/ingress-manager/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/app.go -------------------------------------------------------------------------------- /bulker/ingress-manager/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/config.go -------------------------------------------------------------------------------- /bulker/ingress-manager/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/go.mod -------------------------------------------------------------------------------- /bulker/ingress-manager/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/go.sum -------------------------------------------------------------------------------- /bulker/ingress-manager/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/k8s.go -------------------------------------------------------------------------------- /bulker/ingress-manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/main.go -------------------------------------------------------------------------------- /bulker/ingress-manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/manager.go -------------------------------------------------------------------------------- /bulker/ingress-manager/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/ingress-manager/router.go -------------------------------------------------------------------------------- /bulker/jitsubase/appbase/abstract_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/appbase/abstract_repository.go -------------------------------------------------------------------------------- /bulker/jitsubase/appbase/app_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/appbase/app_base.go -------------------------------------------------------------------------------- /bulker/jitsubase/appbase/http_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/appbase/http_repository.go -------------------------------------------------------------------------------- /bulker/jitsubase/appbase/router_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/appbase/router_base.go -------------------------------------------------------------------------------- /bulker/jitsubase/appbase/router_base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/appbase/router_base_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/appbase/service_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/appbase/service_base.go -------------------------------------------------------------------------------- /bulker/jitsubase/coordination/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/coordination/interface.go -------------------------------------------------------------------------------- /bulker/jitsubase/errorj/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/errorj/types.go -------------------------------------------------------------------------------- /bulker/jitsubase/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/go.mod -------------------------------------------------------------------------------- /bulker/jitsubase/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/go.sum -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/LICENSE -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/README.md -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/adapter.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_array.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_bool.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_float.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_int32.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_int64.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_invalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_invalid.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_nil.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_number.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_object.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_str.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_uint32.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/any_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/any_uint64.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/config.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/example_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_array.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_float.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_int.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_object.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_skip.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_skip_sloppy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_skip_sloppy.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_skip_strict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_skip_strict.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/iter_str.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/jsoniter.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/pool.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_array.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_dynamic.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_extension.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_json_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_json_number.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_map.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_marshaler.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_native.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_optional.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/reflect_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/reflect_slice.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/stream.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/stream_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/stream_float.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/stream_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/stream_int.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/stream_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/stream_str.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsoniter/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsoniter/stream_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/LICENSE -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/README.md -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/adapter.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_array.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_bool.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_float.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_int32.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_int64.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_invalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_invalid.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_nil.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_number.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_object.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_str.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_uint32.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/any_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/any_uint64.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/config.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/example_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_array.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_float.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_int.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_object.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_skip.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_skip_sloppy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_skip_sloppy.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_skip_strict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_skip_strict.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/iter_str.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/json_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/jsoniter.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/list.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/orderedmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/orderedmap.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/orderedset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/orderedset.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/pool.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_array.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_dynamic.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_extension.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_json_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_json_number.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_map.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_marshaler.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_native.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_optional.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_orderedmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_orderedmap.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/reflect_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/reflect_slice.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/stream.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/stream_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/stream_float.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/stream_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/stream_int.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/stream_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/stream_str.go -------------------------------------------------------------------------------- /bulker/jitsubase/jsonorder/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/jsonorder/stream_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/locks/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/locks/types.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/dual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/dual.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/global_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/global_logger.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/level.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/object_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/object_logger.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/proxy.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/query_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/query_logger.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/rolling_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/rolling_writer.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/string_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/string_writer.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/task_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/task_logger.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/utils.go -------------------------------------------------------------------------------- /bulker/jitsubase/logging/writer_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/logging/writer_mock.go -------------------------------------------------------------------------------- /bulker/jitsubase/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/main.go -------------------------------------------------------------------------------- /bulker/jitsubase/pg/pgpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/pg/pgpool.go -------------------------------------------------------------------------------- /bulker/jitsubase/safego/safego.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/safego/safego.go -------------------------------------------------------------------------------- /bulker/jitsubase/safego/safego_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/safego/safego_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/timestamp/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/timestamp/format.go -------------------------------------------------------------------------------- /bulker/jitsubase/timestamp/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/timestamp/timestamp.go -------------------------------------------------------------------------------- /bulker/jitsubase/timestamp/timestamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/timestamp/timestamp_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/types/LICENSE -------------------------------------------------------------------------------- /bulker/jitsubase/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/types/README.md -------------------------------------------------------------------------------- /bulker/jitsubase/types/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/types/json.go -------------------------------------------------------------------------------- /bulker/jitsubase/types/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/types/json_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/types/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/types/set.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/arrays.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/bool.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/bytes.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/bytes_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/cache.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/crypto.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/crypto_test.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/errors.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/hash.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/maps.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/net.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/numbers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/numbers.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/objects.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/sets.go: -------------------------------------------------------------------------------- 1 | package utils 2 | -------------------------------------------------------------------------------- /bulker/jitsubase/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/strings.go -------------------------------------------------------------------------------- /bulker/jitsubase/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/utils/time.go -------------------------------------------------------------------------------- /bulker/jitsubase/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/jitsubase/uuid/uuid.go -------------------------------------------------------------------------------- /bulker/kafkabase/failover_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/failover_config.go -------------------------------------------------------------------------------- /bulker/kafkabase/failover_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/failover_logger.go -------------------------------------------------------------------------------- /bulker/kafkabase/failover_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/failover_logger_test.go -------------------------------------------------------------------------------- /bulker/kafkabase/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/go.mod -------------------------------------------------------------------------------- /bulker/kafkabase/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/go.sum -------------------------------------------------------------------------------- /bulker/kafkabase/kafka_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/kafka_config.go -------------------------------------------------------------------------------- /bulker/kafkabase/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/metrics.go -------------------------------------------------------------------------------- /bulker/kafkabase/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/producer.go -------------------------------------------------------------------------------- /bulker/kafkabase/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/kafkabase/utils.go -------------------------------------------------------------------------------- /bulker/operator/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/app.go -------------------------------------------------------------------------------- /bulker/operator/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/config.go -------------------------------------------------------------------------------- /bulker/operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/go.mod -------------------------------------------------------------------------------- /bulker/operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/go.sum -------------------------------------------------------------------------------- /bulker/operator/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/k8s.go -------------------------------------------------------------------------------- /bulker/operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/main.go -------------------------------------------------------------------------------- /bulker/operator/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/operator.go -------------------------------------------------------------------------------- /bulker/operator/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/repository.go -------------------------------------------------------------------------------- /bulker/operator/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/router.go -------------------------------------------------------------------------------- /bulker/operator/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/operator/types.go -------------------------------------------------------------------------------- /bulker/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/release.sh -------------------------------------------------------------------------------- /bulker/reprocessing-worker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker-build.sh -------------------------------------------------------------------------------- /bulker/reprocessing-worker.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker.Dockerfile -------------------------------------------------------------------------------- /bulker/reprocessing-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker/README.md -------------------------------------------------------------------------------- /bulker/reprocessing-worker/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker/go.mod -------------------------------------------------------------------------------- /bulker/reprocessing-worker/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker/go.sum -------------------------------------------------------------------------------- /bulker/reprocessing-worker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker/main.go -------------------------------------------------------------------------------- /bulker/reprocessing-worker/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/reprocessing-worker/repository.go -------------------------------------------------------------------------------- /bulker/sidecar.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sidecar.Dockerfile -------------------------------------------------------------------------------- /bulker/sidecarbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sidecarbuild.sh -------------------------------------------------------------------------------- /bulker/sync-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/README.md -------------------------------------------------------------------------------- /bulker/sync-controller/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/app.go -------------------------------------------------------------------------------- /bulker/sync-controller/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/config.go -------------------------------------------------------------------------------- /bulker/sync-controller/db_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/db_schema.go -------------------------------------------------------------------------------- /bulker/sync-controller/examples/docker-compose/catalog.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /bulker/sync-controller/examples/docker-compose/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /bulker/sync-controller/examples/docker-compose/state.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /bulker/sync-controller/examples/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/examples/k8s/README.md -------------------------------------------------------------------------------- /bulker/sync-controller/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/go.mod -------------------------------------------------------------------------------- /bulker/sync-controller/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/go.sum -------------------------------------------------------------------------------- /bulker/sync-controller/job_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/job_runner.go -------------------------------------------------------------------------------- /bulker/sync-controller/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/k8s.go -------------------------------------------------------------------------------- /bulker/sync-controller/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/main.go -------------------------------------------------------------------------------- /bulker/sync-controller/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/router.go -------------------------------------------------------------------------------- /bulker/sync-controller/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/task.go -------------------------------------------------------------------------------- /bulker/sync-controller/task_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-controller/task_manager.go -------------------------------------------------------------------------------- /bulker/sync-sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/README.md -------------------------------------------------------------------------------- /bulker/sync-sidecar/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/db/db.go -------------------------------------------------------------------------------- /bulker/sync-sidecar/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/go.mod -------------------------------------------------------------------------------- /bulker/sync-sidecar/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/go.sum -------------------------------------------------------------------------------- /bulker/sync-sidecar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/main.go -------------------------------------------------------------------------------- /bulker/sync-sidecar/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/read.go -------------------------------------------------------------------------------- /bulker/sync-sidecar/spec_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/spec_catalog.go -------------------------------------------------------------------------------- /bulker/sync-sidecar/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/sync-sidecar/types.go -------------------------------------------------------------------------------- /bulker/syncctl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/syncctl.Dockerfile -------------------------------------------------------------------------------- /bulker/syncctlbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/bulker/syncctlbuild.sh -------------------------------------------------------------------------------- /cli/jitsu-cli/bin/jitsu-cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("../dist/main.js"); -------------------------------------------------------------------------------- /cli/jitsu-cli/build.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/build.mts -------------------------------------------------------------------------------- /cli/jitsu-cli/data/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/data/page.json -------------------------------------------------------------------------------- /cli/jitsu-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/package.json -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/build.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/deploy.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/init.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/login.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/shared.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/test.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/commands/whoami.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/commands/whoami.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/index.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/lib/chalk-code-highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/lib/chalk-code-highlight.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/lib/compiled-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/lib/compiled-function.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/lib/indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/lib/indent.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/lib/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/lib/template.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/lib/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/lib/version.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/src/templates/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/src/templates/functions.ts -------------------------------------------------------------------------------- /cli/jitsu-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/cli/jitsu-cli/tsconfig.json -------------------------------------------------------------------------------- /console.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/console.cron -------------------------------------------------------------------------------- /docker-start-console.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/docker-start-console.sh -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | /data/ 2 | .env.local -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/e2e/jest.config.js -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/e2e/src/env.ts -------------------------------------------------------------------------------- /e2e/src/rotor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/e2e/src/rotor.test.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /emulate-ci-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/emulate-ci-build.sh -------------------------------------------------------------------------------- /libs/common-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/README.md -------------------------------------------------------------------------------- /libs/common-config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/index.d.ts -------------------------------------------------------------------------------- /libs/common-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/package.json -------------------------------------------------------------------------------- /libs/common-config/swc.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/swc.config.json -------------------------------------------------------------------------------- /libs/common-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/tsconfig.json -------------------------------------------------------------------------------- /libs/common-config/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/vitest.config.ts -------------------------------------------------------------------------------- /libs/common-config/vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/common-config/vitest.setup.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /libs/core-functions-lib/__tests__/strings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/__tests__/strings.test.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/package.json -------------------------------------------------------------------------------- /libs/core-functions-lib/src/functions/lib/ua.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/src/functions/lib/ua.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/src/index.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/src/lib/config-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/src/lib/config-types.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/src/lib/entity-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/src/lib/entity-store.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/src/lib/inmem-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/src/lib/inmem-store.ts -------------------------------------------------------------------------------- /libs/core-functions-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/tsconfig.json -------------------------------------------------------------------------------- /libs/core-functions-lib/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/core-functions-lib/vitest.config.ts -------------------------------------------------------------------------------- /libs/destination-functions/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /libs/destination-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/destination-functions/package.json -------------------------------------------------------------------------------- /libs/destination-functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/destination-functions/src/index.ts -------------------------------------------------------------------------------- /libs/destination-functions/src/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/destination-functions/src/meta.ts -------------------------------------------------------------------------------- /libs/destination-functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/destination-functions/tsconfig.json -------------------------------------------------------------------------------- /libs/destination-functions/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/destination-functions/vitest.config.ts -------------------------------------------------------------------------------- /libs/functions/__tests__/classic-mapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/__tests__/classic-mapping.test.ts -------------------------------------------------------------------------------- /libs/functions/__tests__/data/classic-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/__tests__/data/classic-events.ts -------------------------------------------------------------------------------- /libs/functions/bundle.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/bundle.mts -------------------------------------------------------------------------------- /libs/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/package.json -------------------------------------------------------------------------------- /libs/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/src/index.ts -------------------------------------------------------------------------------- /libs/functions/src/lib/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/src/lib/functions.ts -------------------------------------------------------------------------------- /libs/functions/src/lib/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/src/lib/objects.ts -------------------------------------------------------------------------------- /libs/functions/src/lib/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/src/lib/strings.ts -------------------------------------------------------------------------------- /libs/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/tsconfig.json -------------------------------------------------------------------------------- /libs/functions/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/functions/vitest.config.ts -------------------------------------------------------------------------------- /libs/jitsu-js/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /compiled/ 3 | /__tests__/playwright/artifacts/ 4 | -------------------------------------------------------------------------------- /libs/jitsu-js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/CHANGELOG.md -------------------------------------------------------------------------------- /libs/jitsu-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/README.md -------------------------------------------------------------------------------- /libs/jitsu-js/__tests__/node/method-queue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/__tests__/node/method-queue.test.ts -------------------------------------------------------------------------------- /libs/jitsu-js/__tests__/node/nodejs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/__tests__/node/nodejs.test.ts -------------------------------------------------------------------------------- /libs/jitsu-js/__tests__/simple-syrup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/__tests__/simple-syrup.ts -------------------------------------------------------------------------------- /libs/jitsu-js/bundle.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/bundle.mts -------------------------------------------------------------------------------- /libs/jitsu-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/package.json -------------------------------------------------------------------------------- /libs/jitsu-js/playwrite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/playwrite.config.ts -------------------------------------------------------------------------------- /libs/jitsu-js/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/rollup.config.js -------------------------------------------------------------------------------- /libs/jitsu-js/src/analytics-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/analytics-plugin.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/browser.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/destination-plugins/ga4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/destination-plugins/ga4.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/destination-plugins/gtm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/destination-plugins/gtm.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/destination-plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/destination-plugins/index.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/destination-plugins/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/destination-plugins/tag.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/index.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/method-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/method-queue.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/script-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/script-loader.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/tlds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/tlds.ts -------------------------------------------------------------------------------- /libs/jitsu-js/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/src/version.ts -------------------------------------------------------------------------------- /libs/jitsu-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/tsconfig.json -------------------------------------------------------------------------------- /libs/jitsu-js/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/tsconfig.test.json -------------------------------------------------------------------------------- /libs/jitsu-js/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-js/vitest.config.ts -------------------------------------------------------------------------------- /libs/jitsu-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/README.md -------------------------------------------------------------------------------- /libs/jitsu-react/bundle.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/bundle.mts -------------------------------------------------------------------------------- /libs/jitsu-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/package.json -------------------------------------------------------------------------------- /libs/jitsu-react/src/JitsuContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/src/JitsuContext.tsx -------------------------------------------------------------------------------- /libs/jitsu-react/src/JitsuProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/src/JitsuProvider.tsx -------------------------------------------------------------------------------- /libs/jitsu-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/src/index.ts -------------------------------------------------------------------------------- /libs/jitsu-react/src/useJitsu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/src/useJitsu.ts -------------------------------------------------------------------------------- /libs/jitsu-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jitsu-react/tsconfig.json -------------------------------------------------------------------------------- /libs/jsondiffpatch/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | node_modules 3 | build 4 | .git 5 | coverage 6 | dist 7 | lib 8 | -------------------------------------------------------------------------------- /libs/jsondiffpatch/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/.eslintrc.cjs -------------------------------------------------------------------------------- /libs/jsondiffpatch/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/jest.config.cjs -------------------------------------------------------------------------------- /libs/jsondiffpatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/package.json -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/contexts/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/contexts/context.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/contexts/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/contexts/diff.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/contexts/patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/contexts/patch.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/diffpatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/diffpatcher.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/filters/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/filters/dates.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/filters/nested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/filters/nested.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/filters/trivial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/filters/trivial.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/index.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/pipe.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/processor.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/src/types.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/test/examples/diffpatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/test/examples/diffpatch.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/test/index.spec.ts -------------------------------------------------------------------------------- /libs/jsondiffpatch/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/test/tsconfig.json -------------------------------------------------------------------------------- /libs/jsondiffpatch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/jsondiffpatch/tsconfig.json -------------------------------------------------------------------------------- /libs/juava/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /libs/juava/__tests__/id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/__tests__/id.test.ts -------------------------------------------------------------------------------- /libs/juava/__tests__/objects.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/__tests__/objects.test.ts -------------------------------------------------------------------------------- /libs/juava/__tests__/security.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/__tests__/security.test.ts -------------------------------------------------------------------------------- /libs/juava/__tests__/sql-params.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/__tests__/sql-params.test.ts -------------------------------------------------------------------------------- /libs/juava/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/package.json -------------------------------------------------------------------------------- /libs/juava/src/asserts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/asserts.ts -------------------------------------------------------------------------------- /libs/juava/src/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/boolean.ts -------------------------------------------------------------------------------- /libs/juava/src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/cache.ts -------------------------------------------------------------------------------- /libs/juava/src/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/collections.ts -------------------------------------------------------------------------------- /libs/juava/src/color.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/juava/src/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/date.ts -------------------------------------------------------------------------------- /libs/juava/src/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/debounce.ts -------------------------------------------------------------------------------- /libs/juava/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/error.ts -------------------------------------------------------------------------------- /libs/juava/src/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/id.ts -------------------------------------------------------------------------------- /libs/juava/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/index.ts -------------------------------------------------------------------------------- /libs/juava/src/interval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/interval.ts -------------------------------------------------------------------------------- /libs/juava/src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/log.ts -------------------------------------------------------------------------------- /libs/juava/src/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/number.ts -------------------------------------------------------------------------------- /libs/juava/src/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/objects.ts -------------------------------------------------------------------------------- /libs/juava/src/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/rpc.ts -------------------------------------------------------------------------------- /libs/juava/src/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/security.ts -------------------------------------------------------------------------------- /libs/juava/src/shorts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/shorts.ts -------------------------------------------------------------------------------- /libs/juava/src/singleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/singleton.ts -------------------------------------------------------------------------------- /libs/juava/src/sql-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/sql-params.ts -------------------------------------------------------------------------------- /libs/juava/src/stopwatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/stopwatch.ts -------------------------------------------------------------------------------- /libs/juava/src/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/strings.ts -------------------------------------------------------------------------------- /libs/juava/src/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/src/throttle.ts -------------------------------------------------------------------------------- /libs/juava/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/tsconfig.json -------------------------------------------------------------------------------- /libs/juava/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/libs/juava/vitest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /services/rotor/.gitignore: -------------------------------------------------------------------------------- 1 | /compiled/ 2 | /dist/ 3 | /__tests__/artifacts/ 4 | -------------------------------------------------------------------------------- /services/rotor/__tests__/functions-chain-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/__tests__/functions-chain-data.ts -------------------------------------------------------------------------------- /services/rotor/__tests__/functions-chain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/__tests__/functions-chain.test.ts -------------------------------------------------------------------------------- /services/rotor/__tests__/inmem-store.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/__tests__/inmem-store.test.ts -------------------------------------------------------------------------------- /services/rotor/__tests__/kafka.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/__tests__/kafka.test.ts -------------------------------------------------------------------------------- /services/rotor/__tests__/simple-syrup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/__tests__/simple-syrup.ts -------------------------------------------------------------------------------- /services/rotor/__tests__/udf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/__tests__/udf.test.ts -------------------------------------------------------------------------------- /services/rotor/build.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/build.mts -------------------------------------------------------------------------------- /services/rotor/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/entrypoint.sh -------------------------------------------------------------------------------- /services/rotor/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/eslint.config.js -------------------------------------------------------------------------------- /services/rotor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/package.json -------------------------------------------------------------------------------- /services/rotor/src/functions-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/functions-server.ts -------------------------------------------------------------------------------- /services/rotor/src/http/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/http/functions.ts -------------------------------------------------------------------------------- /services/rotor/src/http/profile-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/http/profile-events.ts -------------------------------------------------------------------------------- /services/rotor/src/http/profiles-udf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/http/profiles-udf.ts -------------------------------------------------------------------------------- /services/rotor/src/http/udf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/http/udf.ts -------------------------------------------------------------------------------- /services/rotor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/index.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/builder.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/clickhouse-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/clickhouse-logger.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/crypto-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/crypto-code.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/crypto-code.txtjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/crypto-code.txtjs -------------------------------------------------------------------------------- /services/rotor/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/db.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/functions-chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/functions-chain.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/kafka-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/kafka-config.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/kafka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/kafka.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/maxmind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/maxmind.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/message-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/message-handler.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/metrics.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/mongodb-destination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/mongodb-destination.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/mongodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/mongodb.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/pb-functions-chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/pb-functions-chain.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/priority-consumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/priority-consumer.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/profiles-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/profiles-functions.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/profiles-udf-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/profiles-udf-wrapper.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/redis.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/repositories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/repositories.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/retries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/retries.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/rotor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/rotor.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/store.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/udf-wrapper-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/udf-wrapper-code.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/udf-wrapper-code.txtjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/udf-wrapper-code.txtjs -------------------------------------------------------------------------------- /services/rotor/src/lib/udf_wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/udf_wrapper.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/version.ts -------------------------------------------------------------------------------- /services/rotor/src/lib/warehouse-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/lib/warehouse-store.ts -------------------------------------------------------------------------------- /services/rotor/src/serverEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/src/serverEnv.ts -------------------------------------------------------------------------------- /services/rotor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/tsconfig.json -------------------------------------------------------------------------------- /services/rotor/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/services/rotor/vitest.config.ts -------------------------------------------------------------------------------- /sync-bulker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/sync-bulker.sh -------------------------------------------------------------------------------- /turbo.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/turbo.jsonc -------------------------------------------------------------------------------- /types/protocols/analytics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/analytics.d.ts -------------------------------------------------------------------------------- /types/protocols/async-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/async-request.d.ts -------------------------------------------------------------------------------- /types/protocols/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/functions.d.ts -------------------------------------------------------------------------------- /types/protocols/iso8601.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/iso8601.d.ts -------------------------------------------------------------------------------- /types/protocols/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/package.json -------------------------------------------------------------------------------- /types/protocols/profile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/profile.d.ts -------------------------------------------------------------------------------- /types/protocols/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/types/protocols/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/versions.sh -------------------------------------------------------------------------------- /webapps/console/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/.eslintrc.json -------------------------------------------------------------------------------- /webapps/console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/.gitignore -------------------------------------------------------------------------------- /webapps/console/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/.storybook/main.ts -------------------------------------------------------------------------------- /webapps/console/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/.storybook/preview.ts -------------------------------------------------------------------------------- /webapps/console/components/Billing/copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Billing/copy.tsx -------------------------------------------------------------------------------- /webapps/console/components/Callout/Callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Callout/Callout.tsx -------------------------------------------------------------------------------- /webapps/console/components/Center/Center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Center/Center.tsx -------------------------------------------------------------------------------- /webapps/console/components/DataView/DataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/DataView/DataView.tsx -------------------------------------------------------------------------------- /webapps/console/components/DataView/JSONView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/DataView/JSONView.tsx -------------------------------------------------------------------------------- /webapps/console/components/Disable/Disable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Disable/Disable.tsx -------------------------------------------------------------------------------- /webapps/console/components/Htmlizer/Htmlizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Htmlizer/Htmlizer.tsx -------------------------------------------------------------------------------- /webapps/console/components/Icons/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Icons/ExternalLink.tsx -------------------------------------------------------------------------------- /webapps/console/components/Icons/FileText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Icons/FileText.tsx -------------------------------------------------------------------------------- /webapps/console/components/JsonAsTable/JsonAsTable.module.css: -------------------------------------------------------------------------------- 1 | .jsonTable :global(td) { 2 | vertical-align: top; 3 | } 4 | -------------------------------------------------------------------------------- /webapps/console/components/Overlay/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Overlay/Overlay.tsx -------------------------------------------------------------------------------- /webapps/console/components/Redirect/Redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Redirect/Redirect.tsx -------------------------------------------------------------------------------- /webapps/console/components/TrackingIntegrationDocumentation/TrackingIntegrationDocumentation.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapps/console/components/Workspace/WLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/components/Workspace/WLink.tsx -------------------------------------------------------------------------------- /webapps/console/emails/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/emails/shared.tsx -------------------------------------------------------------------------------- /webapps/console/emails/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/emails/styles.ts -------------------------------------------------------------------------------- /webapps/console/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/api.ts -------------------------------------------------------------------------------- /webapps/console/lib/auth-redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/auth-redirect.ts -------------------------------------------------------------------------------- /webapps/console/lib/auth.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /webapps/console/lib/branding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/branding.tsx -------------------------------------------------------------------------------- /webapps/console/lib/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/code.ts -------------------------------------------------------------------------------- /webapps/console/lib/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/context.tsx -------------------------------------------------------------------------------- /webapps/console/lib/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/domains.ts -------------------------------------------------------------------------------- /webapps/console/lib/firebase-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/firebase-client.tsx -------------------------------------------------------------------------------- /webapps/console/lib/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/modal.tsx -------------------------------------------------------------------------------- /webapps/console/lib/nextauth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/nextauth.config.ts -------------------------------------------------------------------------------- /webapps/console/lib/oidc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/oidc.ts -------------------------------------------------------------------------------- /webapps/console/lib/openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/openapi.ts -------------------------------------------------------------------------------- /webapps/console/lib/previous-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/previous-route.tsx -------------------------------------------------------------------------------- /webapps/console/lib/recovery-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/recovery-log.ts -------------------------------------------------------------------------------- /webapps/console/lib/schema/config-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/config-objects.ts -------------------------------------------------------------------------------- /webapps/console/lib/schema/destinations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/destinations.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/amplitude.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/amplitude.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/bigquery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/bigquery.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/blaze.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/blaze.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/clickhouse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/clickhouse.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/devnull.tsx: -------------------------------------------------------------------------------- 1 | export default undefined; 2 | -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/facebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/facebook.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/ga4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/ga4.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/gcs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/gcs.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/gtm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/gtm.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/hubspot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/hubspot.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/intercom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/intercom.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/june.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/june.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/logrocket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/logrocket.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/mixpanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/mixpanel.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/mongodb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/mongodb.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/motherduck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/motherduck.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/mysql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/mysql.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/postgres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/postgres.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/posthog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/posthog.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/redshift.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/redshift.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/s3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/s3.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/salesforce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/salesforce.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/segment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/segment.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/snowflake.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/snowflake.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/statsig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/statsig.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/tag.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/icons/webhook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/icons/webhook.tsx -------------------------------------------------------------------------------- /webapps/console/lib/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/index.ts -------------------------------------------------------------------------------- /webapps/console/lib/schema/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/schema/secrets.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/audit-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/audit-log.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/clickhouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/clickhouse.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/custom-domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/custom-domains.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/data-domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/data-domains.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/db.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/dead-letter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/dead-letter.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/ee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/ee.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/events-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/events-log.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/firebase-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/firebase-server.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/http-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/http-agent.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/log.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/mail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/mail.tsx -------------------------------------------------------------------------------- /webapps/console/lib/server/oauth/destinations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oauth/destinations.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/oauth/nango-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oauth/nango-config.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/oauth/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oauth/services.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/oidc-discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oidc-discovery.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/oidc-error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oidc-error-handler.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/oidc-token-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oidc-token-service.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/oidc-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/oidc-types.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/origin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/origin.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/read-only-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/read-only-mode.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/seed.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/serverEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/serverEnv.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/sync.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/syncs/mixpanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/syncs/mixpanel.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/telemetry.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/templates.tsx -------------------------------------------------------------------------------- /webapps/console/lib/server/user-preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/user-preferences.ts -------------------------------------------------------------------------------- /webapps/console/lib/server/whoami.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/server/whoami.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/arrays.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/chores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/chores.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/clientEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/clientEnv.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/countries.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/data-retention.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/data-retention.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/email-domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/email-domains.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/errors.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/json.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/name-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/name-utils.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/reporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/reporting.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/url.ts -------------------------------------------------------------------------------- /webapps/console/lib/shared/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/shared/zod.ts -------------------------------------------------------------------------------- /webapps/console/lib/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/sources.ts -------------------------------------------------------------------------------- /webapps/console/lib/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/store/index.tsx -------------------------------------------------------------------------------- /webapps/console/lib/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/ui.tsx -------------------------------------------------------------------------------- /webapps/console/lib/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/useApi.ts -------------------------------------------------------------------------------- /webapps/console/lib/useQueryStringState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/useQueryStringState.ts -------------------------------------------------------------------------------- /webapps/console/lib/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/version.ts -------------------------------------------------------------------------------- /webapps/console/lib/workspace-roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/workspace-roles.ts -------------------------------------------------------------------------------- /webapps/console/lib/zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/lib/zod.ts -------------------------------------------------------------------------------- /webapps/console/middleware.ts_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/middleware.ts_ -------------------------------------------------------------------------------- /webapps/console/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/next-env.d.ts -------------------------------------------------------------------------------- /webapps/console/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/next.config.js -------------------------------------------------------------------------------- /webapps/console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/package.json -------------------------------------------------------------------------------- /webapps/console/pages/403.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/403.tsx -------------------------------------------------------------------------------- /webapps/console/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/404.tsx -------------------------------------------------------------------------------- /webapps/console/pages/405.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/405.tsx -------------------------------------------------------------------------------- /webapps/console/pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/500.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/data.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/functions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/functions.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/index.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/miscs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/miscs.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/services.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/sql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/sql.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/streams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/streams.tsx -------------------------------------------------------------------------------- /webapps/console/pages/[workspaceId]/support.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/[workspaceId]/support.tsx -------------------------------------------------------------------------------- /webapps/console/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/_app.tsx -------------------------------------------------------------------------------- /webapps/console/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/_document.tsx -------------------------------------------------------------------------------- /webapps/console/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/_error.tsx -------------------------------------------------------------------------------- /webapps/console/pages/accept.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/accept.tsx -------------------------------------------------------------------------------- /webapps/console/pages/admin/email-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/admin/email-preview.tsx -------------------------------------------------------------------------------- /webapps/console/pages/admin/events-debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/admin/events-debug.tsx -------------------------------------------------------------------------------- /webapps/console/pages/admin/oauth-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/admin/oauth-test.tsx -------------------------------------------------------------------------------- /webapps/console/pages/admin/overage-billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/admin/overage-billing.tsx -------------------------------------------------------------------------------- /webapps/console/pages/admin/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/admin/users.tsx -------------------------------------------------------------------------------- /webapps/console/pages/admin/workspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/admin/workspaces.tsx -------------------------------------------------------------------------------- /webapps/console/pages/api/[...not-found-404].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/[...not-found-404].ts -------------------------------------------------------------------------------- /webapps/console/pages/api/[workspaceId]/listen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/[workspaceId]/listen.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/admin/become.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/admin/become.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/admin/domains-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/admin/domains-report.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/admin/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/admin/domains.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/admin/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/admin/env.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/admin/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/admin/notifications.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/admin/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/admin/users.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/app-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/app-config.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/auth/check-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/auth/check-email.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/destinations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/destinations.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/ee/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/ee/jwt.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/healthcheck/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/healthcheck/db.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/healthcheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/healthcheck/index.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/id.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/init-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/init-user.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/make-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/make-error.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/me.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/oauth/catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/oauth/catalog.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/oauth/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/oauth/init.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/oauth/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/oauth/service.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/ping.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/schema/[...type].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/schema/[...type].ts -------------------------------------------------------------------------------- /webapps/console/pages/api/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/schema/index.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/sources/index.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/sources/logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/sources/logo.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/sources/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/sources/versions.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/user/accept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/user/accept.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/user/cli-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/user/cli-key.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/user/invitations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/user/invitations.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/user/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/user/keys.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/user/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/user/properties.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/user/reject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/user/reject.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/version.ts -------------------------------------------------------------------------------- /webapps/console/pages/api/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/api/workspace/index.ts -------------------------------------------------------------------------------- /webapps/console/pages/cli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/cli.tsx -------------------------------------------------------------------------------- /webapps/console/pages/custom-plan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/custom-plan.tsx -------------------------------------------------------------------------------- /webapps/console/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/index.tsx -------------------------------------------------------------------------------- /webapps/console/pages/new-workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/new-workspace.tsx -------------------------------------------------------------------------------- /webapps/console/pages/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/reset-password.tsx -------------------------------------------------------------------------------- /webapps/console/pages/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/signin.tsx -------------------------------------------------------------------------------- /webapps/console/pages/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/signup.tsx -------------------------------------------------------------------------------- /webapps/console/pages/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/user.tsx -------------------------------------------------------------------------------- /webapps/console/pages/workspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/pages/workspaces.tsx -------------------------------------------------------------------------------- /webapps/console/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/postcss.config.js -------------------------------------------------------------------------------- /webapps/console/prisma/events_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/prisma/events_log.sql -------------------------------------------------------------------------------- /webapps/console/prisma/metrics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/prisma/metrics.sql -------------------------------------------------------------------------------- /webapps/console/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/prisma/schema.prisma -------------------------------------------------------------------------------- /webapps/console/prisma/workspace-sync-runs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/prisma/workspace-sync-runs.sql -------------------------------------------------------------------------------- /webapps/console/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/apple-touch-icon.png -------------------------------------------------------------------------------- /webapps/console/public/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/external-link.svg -------------------------------------------------------------------------------- /webapps/console/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/favicon-16x16.png -------------------------------------------------------------------------------- /webapps/console/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/favicon-32x32.png -------------------------------------------------------------------------------- /webapps/console/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/favicon.ico -------------------------------------------------------------------------------- /webapps/console/public/logo-classic-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/logo-classic-gray.svg -------------------------------------------------------------------------------- /webapps/console/public/logo-classic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/logo-classic.svg -------------------------------------------------------------------------------- /webapps/console/public/logo-with-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/logo-with-text.svg -------------------------------------------------------------------------------- /webapps/console/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/logo.svg -------------------------------------------------------------------------------- /webapps/console/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /webapps/console/scripts/manage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/scripts/manage.ts -------------------------------------------------------------------------------- /webapps/console/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/styles/globals.css -------------------------------------------------------------------------------- /webapps/console/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/tailwind.config.js -------------------------------------------------------------------------------- /webapps/console/theme.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/theme.config.js -------------------------------------------------------------------------------- /webapps/console/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/tsconfig.json -------------------------------------------------------------------------------- /webapps/console/vercel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/console/vercel.sh -------------------------------------------------------------------------------- /webapps/ee-api/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /webapps/ee-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/.gitignore -------------------------------------------------------------------------------- /webapps/ee-api/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapps/ee-api/components/email-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/components/email-component.tsx -------------------------------------------------------------------------------- /webapps/ee-api/emails/billing-issues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/billing-issues.tsx -------------------------------------------------------------------------------- /webapps/ee-api/emails/churned.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/churned.tsx -------------------------------------------------------------------------------- /webapps/ee-api/emails/quota-exceeded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/quota-exceeded.tsx -------------------------------------------------------------------------------- /webapps/ee-api/emails/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/styles.ts -------------------------------------------------------------------------------- /webapps/ee-api/emails/throttling-reminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/throttling-reminder.tsx -------------------------------------------------------------------------------- /webapps/ee-api/emails/throttling-started.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/throttling-started.tsx -------------------------------------------------------------------------------- /webapps/ee-api/emails/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/emails/welcome.tsx -------------------------------------------------------------------------------- /webapps/ee-api/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/auth.ts -------------------------------------------------------------------------------- /webapps/ee-api/lib/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/email.tsx -------------------------------------------------------------------------------- /webapps/ee-api/lib/firebase-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/firebase-auth.ts -------------------------------------------------------------------------------- /webapps/ee-api/lib/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/log.ts -------------------------------------------------------------------------------- /webapps/ee-api/lib/route-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/route-helpers.ts -------------------------------------------------------------------------------- /webapps/ee-api/lib/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/services.ts -------------------------------------------------------------------------------- /webapps/ee-api/lib/sql/workspace-info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/sql/workspace-info.sql -------------------------------------------------------------------------------- /webapps/ee-api/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/store.ts -------------------------------------------------------------------------------- /webapps/ee-api/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/lib/stripe.ts -------------------------------------------------------------------------------- /webapps/ee-api/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/next.config.js -------------------------------------------------------------------------------- /webapps/ee-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/package.json -------------------------------------------------------------------------------- /webapps/ee-api/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/_app.tsx -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/billing/manage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/billing/manage.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/billing/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/billing/plans.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/billing/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/billing/settings.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/billing/upgrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/billing/upgrade.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/billing/workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/billing/workspaces.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/custom-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/custom-token.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/email-history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/email-history.tsx -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/email.tsx -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/healthcheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/healthcheck/index.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/is-active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/is-active.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/provision-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/provision-db.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/quotas/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/quotas/sync.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/report/overage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/report/overage.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/s3-connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/s3-connections.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/s3-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/s3-init.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/set-throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/set-throttle.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/sync-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/sync-cache.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/unsubscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/unsubscribe.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/api/user-created.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/api/user-created.ts -------------------------------------------------------------------------------- /webapps/ee-api/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/pages/index.tsx -------------------------------------------------------------------------------- /webapps/ee-api/scripts/sql-exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/scripts/sql-exec.ts -------------------------------------------------------------------------------- /webapps/ee-api/scripts/sql/01-kv-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/scripts/sql/01-kv-schema.sql -------------------------------------------------------------------------------- /webapps/ee-api/scripts/sql/03-debug-views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/scripts/sql/03-debug-views.sql -------------------------------------------------------------------------------- /webapps/ee-api/scripts/sql/05-stat-cache.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/scripts/sql/05-stat-cache.sql -------------------------------------------------------------------------------- /webapps/ee-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/tsconfig.json -------------------------------------------------------------------------------- /webapps/ee-api/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/vercel.json -------------------------------------------------------------------------------- /webapps/ee-api/vercel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/ee-api/vercel.sh -------------------------------------------------------------------------------- /webapps/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/package.json -------------------------------------------------------------------------------- /webapps/shared/src/email-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/src/email-template.tsx -------------------------------------------------------------------------------- /webapps/shared/src/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/src/email.tsx -------------------------------------------------------------------------------- /webapps/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/src/index.ts -------------------------------------------------------------------------------- /webapps/shared/src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/src/styles.ts -------------------------------------------------------------------------------- /webapps/shared/src/template-example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/src/template-example.tsx -------------------------------------------------------------------------------- /webapps/shared/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/src/types.ts -------------------------------------------------------------------------------- /webapps/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsucom/jitsu/HEAD/webapps/shared/tsconfig.json --------------------------------------------------------------------------------