Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

source-front: rewrite as native connector #2150

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
usage_rate: "1.0"
- name: source-front
type: capture
version: v2
version: v3
usage_rate: "1.0"
- name: source-genesys
type: capture
Expand Down
1 change: 1 addition & 0 deletions source-front/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v3
31 changes: 31 additions & 0 deletions source-front/acmeCo/channels.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
$defs:
Meta:
properties:
op:
default: u
description: "Operation type (c: Create, u: Update, d: Delete)"
enum:
- c
- u
- d
title: Op
type: string
row_id:
default: -1
description: "Row ID of the Document, counting up from zero, or -1 if not known"
title: Row Id
type: integer
title: Meta
type: object
additionalProperties: true
properties:
_meta:
$ref: "#/$defs/Meta"
default:
op: u
row_id: -1
description: Document metadata
title: FrontResource
type: object
x-infer-schema: true
40 changes: 40 additions & 0 deletions source-front/acmeCo/contacts.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
$defs:
Meta:
properties:
op:
default: u
description: "Operation type (c: Create, u: Update, d: Delete)"
enum:
- c
- u
- d
title: Op
type: string
row_id:
default: -1
description: "Row ID of the Document, counting up from zero, or -1 if not known"
title: Row Id
type: integer
title: Meta
type: object
additionalProperties: true
properties:
_meta:
$ref: "#/$defs/Meta"
default:
op: u
row_id: -1
description: Document metadata
id:
title: Id
type: string
updated_at:
title: Updated At
type: number
required:
- id
- updated_at
title: Contact
type: object
x-infer-schema: true
36 changes: 36 additions & 0 deletions source-front/acmeCo/conversations.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
$defs:
Meta:
properties:
op:
default: u
description: "Operation type (c: Create, u: Update, d: Delete)"
enum:
- c
- u
- d
title: Op
type: string
row_id:
default: -1
description: "Row ID of the Document, counting up from zero, or -1 if not known"
title: Row Id
type: integer
title: Meta
type: object
additionalProperties: true
properties:
_meta:
$ref: "#/$defs/Meta"
default:
op: u
row_id: -1
description: Document metadata
id:
title: Id
type: string
required:
- id
title: Conversation
type: object
x-infer-schema: true
40 changes: 40 additions & 0 deletions source-front/acmeCo/events.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
$defs:
Meta:
properties:
op:
default: u
description: "Operation type (c: Create, u: Update, d: Delete)"
enum:
- c
- u
- d
title: Op
type: string
row_id:
default: -1
description: "Row ID of the Document, counting up from zero, or -1 if not known"
title: Row Id
type: integer
title: Meta
type: object
additionalProperties: true
properties:
_meta:
$ref: "#/$defs/Meta"
default:
op: u
row_id: -1
description: Document metadata
id:
title: Id
type: string
emitted_at:
title: Emitted At
type: number
required:
- id
- emitted_at
title: Event
type: object
x-infer-schema: true
Loading
Loading