Skip to content

Commit 1f3d4ab

Browse files
committed
source-calendly: new connector
1 parent 94dd006 commit 1f3d4ab

24 files changed

+4647
-0
lines changed

.github/workflows/python.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ on:
6363
- "source-ashby/**"
6464
- "source-gong/**"
6565
- "source-greenhouse-native/**"
66+
- "source-calendly/**"
6667

6768
pull_request:
6869
branches: [main]
@@ -127,6 +128,7 @@ on:
127128
- "source-ashby/**"
128129
- "source-gong/**"
129130
- "source-greenhouse-native/**"
131+
- "source-calendly/**"
130132

131133
concurrency:
132134
group: ${{ github.workflow }}-${{ github.ref }}
@@ -374,6 +376,10 @@ jobs:
374376
type: capture
375377
version: v1
376378
usage_rate: "1.0"
379+
- name: source-calendly
380+
type: capture
381+
version: v1
382+
usage_rate: "1.0"
377383

378384
steps:
379385
- uses: actions/checkout@v4

source-calendly/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v1
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: EventInvitee
36+
type: object
37+
x-infer-schema: true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: EventType
36+
type: object
37+
x-infer-schema: true

source-calendly/acmeCo/flow.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
collections:
2+
acmeCo/event_invitees:
3+
schema: event_invitees.schema.yaml
4+
key:
5+
- /uri
6+
acmeCo/event_types:
7+
schema: event_types.schema.yaml
8+
key:
9+
- /uri
10+
acmeCo/groups:
11+
schema: groups.schema.yaml
12+
key:
13+
- /_meta/row_id
14+
acmeCo/organization_memberships:
15+
schema: organization_memberships.schema.yaml
16+
key:
17+
- /_meta/row_id
18+
acmeCo/routing_form_submissions:
19+
schema: routing_form_submissions.schema.yaml
20+
key:
21+
- /_meta/row_id
22+
acmeCo/routing_forms:
23+
schema: routing_forms.schema.yaml
24+
key:
25+
- /_meta/row_id
26+
acmeCo/scheduled_events:
27+
schema: scheduled_events.schema.yaml
28+
key:
29+
- /uri
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: Group
36+
type: object
37+
x-infer-schema: true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: OrganizationMembership
36+
type: object
37+
x-infer-schema: true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: RoutingFormSubmission
36+
type: object
37+
x-infer-schema: true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: RoutingForm
36+
type: object
37+
x-infer-schema: true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
$defs:
2+
Meta:
3+
properties:
4+
op:
5+
default: u
6+
description: 'Operation type (c: Create, u: Update, d: Delete)'
7+
enum:
8+
- c
9+
- u
10+
- d
11+
title: Op
12+
type: string
13+
row_id:
14+
default: -1
15+
description: Row ID of the Document, counting up from zero, or -1 if not known
16+
title: Row Id
17+
type: integer
18+
title: Meta
19+
type: object
20+
additionalProperties: true
21+
properties:
22+
_meta:
23+
$ref: '#/$defs/Meta'
24+
description: Document metadata
25+
uri:
26+
title: Uri
27+
type: string
28+
updated_at:
29+
format: date-time
30+
title: Updated At
31+
type: string
32+
required:
33+
- uri
34+
- updated_at
35+
title: ScheduledEvent
36+
type: object
37+
x-infer-schema: true

0 commit comments

Comments
 (0)