Skip to content

Commit d71adb7

Browse files
authored
Merge branch 'master' into ddavydov/#20703-source-salesforce-include-pk-in-properties-chunks
2 parents b45e4a9 + dc6f8aa commit d71adb7

File tree

123 files changed

+1265
-5416
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+1265
-5416
lines changed

airbyte-commons-worker/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ dependencies {
2323
implementation project(':airbyte-commons-protocol')
2424
implementation project(':airbyte-config:config-models')
2525
implementation project(':airbyte-config:config-persistence')
26-
implementation project(':airbyte-featureflag')
2726
implementation project(':airbyte-json-validation')
2827
implementation libs.airbyte.protocol
2928

airbyte-commons/src/main/java/io/airbyte/commons/auth/AuthRole.java

-93
This file was deleted.

airbyte-commons/src/main/java/io/airbyte/commons/auth/AuthRoleConstants.java

-21
This file was deleted.

airbyte-commons/src/main/java/io/airbyte/commons/auth/SecuredWorkspace.java

-23
This file was deleted.

airbyte-commons/src/test/java/io/airbyte/commons/auth/AuthRoleTest.java

-49
This file was deleted.

airbyte-config/init/src/main/resources/seed/destination_definitions.yaml

-6
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,6 @@
169169
documentationUrl: https://docs.airbyte.com/integrations/destinations/pubsub
170170
icon: googlepubsub.svg
171171
releaseStage: alpha
172-
- name: Heap Analytics
173-
destinationDefinitionId: f8e68742-407a-4a3c-99ad-dfd42ae2cba8
174-
dockerRepository: airbyte/destination-heap-analytics
175-
dockerImageTag: 0.1.0
176-
documentationUrl: https://docs.airbyte.com/integrations/destinations/heap-analytics
177-
releaseStage: alpha
178172
- name: Kafka
179173
destinationDefinitionId: 9f760101-60ae-462f-9ee6-b7a9dafd454d
180174
dockerRepository: airbyte/destination-kafka

airbyte-config/init/src/main/resources/seed/destination_specs.yaml

-142
Original file line numberDiff line numberDiff line change
@@ -2874,148 +2874,6 @@
28742874
supportsDBT: false
28752875
supported_destination_sync_modes:
28762876
- "append"
2877-
- dockerImage: "airbyte/destination-heap-analytics:0.1.0"
2878-
spec:
2879-
documentationUrl: "https://docs.airbyte.com/integrations/destinations/heap-analytics"
2880-
connectionSpecification:
2881-
$schema: "http://json-schema.org/draft-07/schema#"
2882-
title: "Heap Analytics Destination Spec"
2883-
type: "object"
2884-
required:
2885-
- "base_url"
2886-
- "app_id"
2887-
- "api"
2888-
additionalProperties: true
2889-
properties:
2890-
app_id:
2891-
order: 0
2892-
type: "string"
2893-
title: "App Id"
2894-
description: "The Environment Id of your Main Profudction project, read\
2895-
\ <a href=\"https://help.heap.io/data-management/data-management-features/projects-environments/\"\
2896-
>the doc</a> to learn more."
2897-
default: "11"
2898-
base_url:
2899-
order: 1
2900-
type: "string"
2901-
title: "Base URL"
2902-
description: "The Base URL for Heap Analytics"
2903-
default: "https://heapanalytics.com"
2904-
examples:
2905-
- "https://heapanalytics.com"
2906-
api:
2907-
order: 2
2908-
type: "object"
2909-
title: "API Type"
2910-
additionalProperties: true
2911-
oneOf:
2912-
- order: 0
2913-
type: "object"
2914-
title: "Track Events"
2915-
required:
2916-
- "api_type"
2917-
- "property_columns"
2918-
- "event_column"
2919-
- "identity_column"
2920-
properties:
2921-
api_type:
2922-
order: 0
2923-
type: "string"
2924-
const: "track"
2925-
property_columns:
2926-
order: 1
2927-
type: "string"
2928-
title: "Property Columns"
2929-
default: "*"
2930-
description: "Please list all columns populated to the properties\
2931-
\ attribute, split by comma(,). It's case sensitive."
2932-
examples:
2933-
- "subject,variation"
2934-
event_column:
2935-
order: 2
2936-
type: "string"
2937-
title: "Event Column"
2938-
description: "Please pick the column populated to the event attribute.\
2939-
\ It's case sensitive."
2940-
examples:
2941-
- "order_name"
2942-
identity_column:
2943-
order: 3
2944-
type: "string"
2945-
title: "Identity Column"
2946-
description: "Please pick the column populated to the identity attribute."
2947-
examples:
2948-
- "email"
2949-
timestamp_column:
2950-
order: 4
2951-
type: "string"
2952-
title: "Identity Column"
2953-
description: "Please pick the column populated to the (optional) timestamp\
2954-
\ attribute. time_now() will be used if missing."
2955-
examples:
2956-
- "updated_at"
2957-
- order: 1
2958-
type: "object"
2959-
title: "Add User Properties"
2960-
required:
2961-
- "api_type"
2962-
- "property_columns"
2963-
- "identity_column"
2964-
properties:
2965-
api_type:
2966-
order: 0
2967-
type: "string"
2968-
const: "add_user_properties"
2969-
property_columns:
2970-
order: 1
2971-
type: "string"
2972-
title: "Property Columns"
2973-
default: "*"
2974-
description: "Please list all columns populated to the properties\
2975-
\ attribute, split by comma(,). It's case sensitive."
2976-
examples:
2977-
- "age,language,profession"
2978-
identity_column:
2979-
order: 3
2980-
type: "string"
2981-
title: "Identity Column"
2982-
description: "Please pick the column populated to the identity attribute."
2983-
examples:
2984-
- "user_id"
2985-
- order: 2
2986-
type: "object"
2987-
title: "Add Account Properties"
2988-
required:
2989-
- "api_type"
2990-
- "property_columns"
2991-
- "account_id_column"
2992-
properties:
2993-
api_type:
2994-
order: 0
2995-
type: "string"
2996-
const: "add_account_properties"
2997-
property_columns:
2998-
order: 1
2999-
type: "string"
3000-
title: "Property Columns"
3001-
default: "*"
3002-
description: "Please list all columns populated to the properties\
3003-
\ attribute, split by comma(,). It's case sensitive."
3004-
examples:
3005-
- "is_in_good_standing,revenue_potential,account_hq,subscription"
3006-
account_id_column:
3007-
order: 3
3008-
type: "string"
3009-
title: "Account ID Column"
3010-
description: "Please pick the column populated to the account_id attribute."
3011-
examples:
3012-
- "company_name"
3013-
supportsIncremental: true
3014-
supportsNormalization: false
3015-
supportsDBT: false
3016-
supported_destination_sync_modes:
3017-
- "append"
3018-
- "append_dedup"
30192877
- dockerImage: "airbyte/destination-kafka:0.1.10"
30202878
spec:
30212879
documentationUrl: "https://docs.airbyte.com/integrations/destinations/kafka"

0 commit comments

Comments
 (0)