Skip to content

Commit

Permalink
change all integers to number on recurly catalog (#3769)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm authored Jun 1, 2021
1 parent 0fd9913 commit 3129a17
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "cd42861b-01fc-4658-a8ab-5d11d0510f01",
"name": "Recurly",
"dockerRepository": "airbyte/source-recurly",
"dockerImageTag": "0.2.2",
"dockerImageTag": "0.2.3",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-recurly",
"icon": "recurly.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
- sourceDefinitionId: cd42861b-01fc-4658-a8ab-5d11d0510f01
name: Recurly
dockerRepository: airbyte/source-recurly
dockerImageTag: 0.2.2
dockerImageTag: 0.2.3
documentationUrl: https://hub.docker.com/r/airbyte/source-recurly
icon: recurly.svg
- sourceDefinitionId: fbb5fbe2-16ad-4cf4-af7d-ff9d9c316c87
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-recurly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ COPY $CODE_PATH ./$CODE_PATH
COPY setup.py ./
RUN pip install .

LABEL io.airbyte.version=0.2.2
LABEL io.airbyte.version=0.2.3
LABEL io.airbyte.name=airbyte/source-recurly
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"type": "string"
},
"max_redemptions": {
"type": "integer"
"type": "number"
},
"max_redemptions_per_account": {
"type": "integer"
"type": "number"
},
"unique_coupon_codes_count": {
"type": "integer"
"type": "number"
},
"unique_code_template": {
"type": "string"
Expand All @@ -33,7 +33,7 @@
"type": "string"
},
"temporal_amount": {
"type": "integer"
"type": "number"
},
"temporal_unit": {
"type": "string"
Expand All @@ -42,7 +42,7 @@
"type": "string"
},
"free_trial_amount": {
"type": "integer"
"type": "number"
},
"applies_to_all_plans": {
"type": "boolean"
Expand Down Expand Up @@ -72,7 +72,7 @@
"type": "string"
},
"percent": {
"type": "integer"
"type": "number"
},
"currencies": {
"type": "array"
Expand All @@ -84,7 +84,7 @@
"type": "string"
},
"length": {
"type": "integer"
"type": "number"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
"type": "string"
},
"interval_length": {
"type": "integer"
"type": "number"
},
"trial_unit": {
"type": "integer"
"type": "number"
},
"trial_length": {
"type": "integer"
"type": "number"
},
"trial_requires_billing_info": {
"type": "boolean"
},
"total_billing_cycles": {
"type": "integer"
"type": "number"
},
"auto_renew": {
"type": "boolean"
Expand All @@ -54,10 +54,10 @@
"type": "string"
},
"avalara_transaction_type": {
"type": "integer"
"type": "number"
},
"avalara_service_type": {
"type": "integer"
"type": "number"
},
"tax_code": {
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
}
},
"amount": {
"type": "integer"
"type": "number"
}
}
},
Expand Down Expand Up @@ -119,13 +119,13 @@
"type": "string"
},
"remaining_billing_cycles": {
"type": "integer"
"type": "number"
},
"total_billing_cycles": {
"type": "integer"
"type": "number"
},
"renewal_billing_cycles": {
"type": "integer"
"type": "number"
},
"auto_renew": {
"type": "boolean"
Expand All @@ -134,7 +134,7 @@
"type": "string"
},
"remaining_pause_cycles": {
"type": "integer"
"type": "number"
},
"currency": {
"type": "string"
Expand All @@ -143,19 +143,19 @@
"type": "string"
},
"unit_amount": {
"type": "integer"
"type": "number"
},
"quantity": {
"type": "integer"
"type": "number"
},
"add_ons": {
"type": "array"
},
"add_ons_total": {
"type": "integer"
"type": "number"
},
"subtotal": {
"type": "integer"
"type": "number"
},
"collection_method": {
"type": "string"
Expand All @@ -164,16 +164,16 @@
"type": "string"
},
"net_terms": {
"type": "integer"
"type": "number"
},
"terms_and_conditions": {
"type": "integer"
"type": "number"
},
"customer_notes": {
"type": "integer"
"type": "number"
},
"expiration_reason": {
"type": "integer"
"type": "number"
},
"custom_fields": {
"type": "array"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"type": "string"
},
"amount": {
"type": "integer"
"type": "number"
},
"status": {
"type": "string"
Expand Down Expand Up @@ -164,10 +164,10 @@
"type": "string"
},
"exp_month": {
"type": "integer"
"type": "number"
},
"exp_year": {
"type": "integer"
"type": "number"
},
"gateway_token": {
"type": "string"
Expand Down Expand Up @@ -240,7 +240,7 @@
"type": "string"
},
"gateway_response_time": {
"type": "integer"
"type": "number"
},
"gateway_response_values": {
"type": "object"
Expand Down

0 comments on commit 3129a17

Please sign in to comment.