addedInput schema / description
Added value: +"Provide exactly one endpoint selector: slug, or provider plus endpoint."
removedInput schema / oneOf
Removed value: -[
- {
- "properties": {
- "slug": {
- "type": "string"
- }
- },
- "required": [
- "slug"
- ]
- },
- {
- "properties": {
- "endpoint": {
- "type": "string"
- },
- "provider": {
- "type": "string"
- }
- },
- "required": [
- "provider",
- "endpoint"
- ]
- }
-]
addedInput schema / properties / args / description
Added value: +"Alias for body; must match body when both are provided."
changedInput schema / properties / max_charge_credits / description
Previous value: -"Optional hard charge ceiling."New value: +"Optional positive decimal hard charge ceiling, as a string."
addedInput schema / properties / max_charge_credits / maxLength
Added value: +100
addedInput schema / properties / max_charge_credits / minLength
Added value: +1
removedInput schema / properties / max_charge_credits / oneOf
Removed value: -[
- {
- "maxLength": 100,
- "minLength": 1,
- "type": "string"
- },
- {
- "exclusiveMinimum": 0,
- "type": "number"
- }
-]
addedInput schema / properties / max_charge_credits / type
Added value: +"string"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "executable_quote": {
+ "description": "True when approval_token is included.",
+ "type": "boolean"
+ },
+ "message": {
+ "description": "Human-readable quote outcome.",
+ "type": "string"
+ },
+ "slug": {
+ "description": "provider/endpoint slug.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}