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-braintree-native: new connector #2177

Merged
merged 3 commits into from
Dec 4, 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
6 changes: 6 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ on:
- "source-impact-native/**"
- "source-front/**"
- "source-genesys/**"
- "source-braintree-native/**"

pull_request:
branches: [main]
Expand Down Expand Up @@ -62,6 +63,7 @@ on:
- "source-impact-native/**"
- "source-front/**"
- "source-genesys/**"
- "source-braintree-native/**"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -177,6 +179,10 @@ jobs:
type: capture
version: v1
usage_rate: "1.0"
- name: source-braintree-native
type: capture
version: v1
usage_rate: "1.0"

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions source-braintree-native/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v1
38 changes: 38 additions & 0 deletions source-braintree-native/acmeCo/add_ons.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
$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:
anyOf:
- type: string
- type: "null"
title: Id
required:
- id
title: FullRefreshResource
type: object
x-infer-schema: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
$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
created_at:
format: date-time
title: Created At
type: string
required:
- id
- created_at
title: CreditCardVerification
type: object
x-infer-schema: true
41 changes: 41 additions & 0 deletions source-braintree-native/acmeCo/customers.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
$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
created_at:
format: date-time
title: Created At
type: string
required:
- id
- created_at
title: Customer
type: object
x-infer-schema: true
38 changes: 38 additions & 0 deletions source-braintree-native/acmeCo/discounts.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
$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:
anyOf:
- type: string
- type: "null"
title: Id
required:
- id
title: FullRefreshResource
type: object
x-infer-schema: true
41 changes: 41 additions & 0 deletions source-braintree-native/acmeCo/disputes.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
$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
created_at:
format: date-time
title: Created At
type: string
required:
- id
- created_at
title: Dispute
type: object
x-infer-schema: true
38 changes: 38 additions & 0 deletions source-braintree-native/acmeCo/flow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
collections:
acmeCo/add_ons:
schema: add_ons.schema.yaml
key:
- /id
acmeCo/credit_card_verifications:
schema: credit_card_verifications.schema.yaml
key:
- /id
acmeCo/customers:
schema: customers.schema.yaml
key:
- /id
acmeCo/discounts:
schema: discounts.schema.yaml
key:
- /id
acmeCo/disputes:
schema: disputes.schema.yaml
key:
- /id
acmeCo/merchant_accounts:
schema: merchant_accounts.schema.yaml
key:
- /id
acmeCo/plans:
schema: plans.schema.yaml
key:
- /id
acmeCo/subscriptions:
schema: subscriptions.schema.yaml
key:
- /id
acmeCo/transactions:
schema: transactions.schema.yaml
key:
- /id
38 changes: 38 additions & 0 deletions source-braintree-native/acmeCo/merchant_accounts.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
$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:
anyOf:
- type: string
- type: "null"
title: Id
required:
- id
title: FullRefreshResource
type: object
x-infer-schema: true
38 changes: 38 additions & 0 deletions source-braintree-native/acmeCo/plans.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
$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:
anyOf:
- type: string
- type: "null"
title: Id
required:
- id
title: FullRefreshResource
type: object
x-infer-schema: true
41 changes: 41 additions & 0 deletions source-braintree-native/acmeCo/subscriptions.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
$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
created_at:
format: date-time
title: Created At
type: string
required:
- id
- created_at
title: Subscription
type: object
x-infer-schema: true
Loading
Loading