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

test: Test pr 23 #120

Closed
wants to merge 2 commits into from
Closed
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
10 changes: 5 additions & 5 deletions spec/json/twilio_api_v2010.json
Original file line number Diff line number Diff line change
Expand Up @@ -11869,26 +11869,26 @@
}
],
"end": 0,
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?PageSize=1&Page=0",
"next_page_uri": null,
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?FriendlyName=friendly_name&PageSize=1&Page=0",
"next_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?FriendlyName=friendly_name&PageSize=1&Page=1&PageToken=PAAPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"previous_page_uri": null,
"page_size": 1,
"page": 0,
"start": 0,
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?PageSize=1&Page=0"
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?FriendlyName=friendly_name&PageSize=1&Page=0"
}
},
"readEmpty": {
"value": {
"applications": [],
"end": 0,
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?PageSize=1&Page=0",
"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?FriendlyName=friendly_name&PageSize=1&Page=0",
"previous_page_uri": null,
"page_size": 1,
"start": 0,
"next_page_uri": null,
"page": 0,
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?PageSize=1&Page=0"
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications.json?FriendlyName=friendly_name&PageSize=1&Page=0"
}
}
}
Expand Down
11 changes: 5 additions & 6 deletions spec/json/twilio_iam_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@
"friendly_name",
"date_created"
],
"mountName": "get_api_keys",
"className": "get_api_keys",
"pathType": "list"
},
"get": {
Expand Down Expand Up @@ -364,7 +362,11 @@
"accountSid_authToken": []
}
],
"operationId": "ListGetKeys"
"operationId": "ListGetKeys",
"x-twilio": {
"mountName": "get_api_keys",
"className": "get_api_keys"
}
},
"post": {
"description": "Create a new Signing Key for the account making the request.",
Expand Down Expand Up @@ -500,9 +502,6 @@
}
}
}
},
"x-twilio": {
"mountName": "new_api_key"
}
}
},
Expand Down
6 changes: 4 additions & 2 deletions spec/json/twilio_intelligence_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@
"type": "string",
"$ref": "#/components/schemas/operator_type_enum_availability",
"nullable": true,
"description": "Operator Type availability status. Possible values: internal, beta, public, retired."
"description": "Operator Type availability status. Possible values: internal, beta, general-availability, retired, deprecated."
},
"configurable": {
"type": "boolean",
Expand Down Expand Up @@ -477,7 +477,9 @@
"internal",
"beta",
"public",
"retired"
"general-availability",
"retired",
"deprecated"
]
},
"intelligence.v2.prebuilt_operator": {
Expand Down
54 changes: 54 additions & 0 deletions spec/json/twilio_marketplace_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,60 @@
"nullable": false
}
}
},
"marketplace.v1.referral_records": {
"type": "object",
"properties": {
"sid": {
"type": "string",
"minLength": 34,
"maxLength": 34,
"pattern": "^XL[0-9a-fA-F]{32}$",
"nullable": false,
"description": "The unique identifier for this resource."
},
"account_sid": {
"type": "string",
"minLength": 34,
"maxLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"nullable": false,
"description": "The account sid that owns this record."
},
"net_revenue": {
"type": "number",
"nullable": false,
"description": "Net revenue collected as part of this record."
},
"filename": {
"type": "string",
"nullable": false,
"description": "Name of the file attached to the record."
},
"documentation_link": {
"type": "string",
"nullable": false,
"description": "Link to download record's invoice."
},
"date_created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The date and time in UTC when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
},
"date_updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The date and time in UTC when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
},
"url": {
"type": "string",
"format": "uri",
"nullable": true,
"description": "The absolute URL of the resource."
}
}
}
}
},
Expand Down
11 changes: 5 additions & 6 deletions spec/json/twilio_numbers_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@
},
"NumberType": {
"type": "string",
"description": "The type of phone number of the Bundle's ownership request. Can be `local`, `mobile`, `national`, or `toll free`."
"description": "The type of phone number of the Bundle's ownership request. Can be `local`, `mobile`, `national`, or `toll-free`."
},
"IsTest": {
"type": "boolean",
Expand Down Expand Up @@ -2369,7 +2369,7 @@
{
"name": "NumberType",
"in": "query",
"description": "The type of phone number of the Bundle's ownership request. Can be `local`, `mobile`, `national`, or `tollfree`.",
"description": "The type of phone number of the Bundle's ownership request. Can be `local`, `mobile`, `national`, or `toll-free`.",
"schema": {
"type": "string"
},
Expand Down Expand Up @@ -3083,7 +3083,7 @@
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab",
"regulation_sid": "RNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"friendly_name": "friendly_name",
"status": "draft",
"status": "twilio-approved",
"valid_until": "2015-07-30T20:00:00Z",
"email": "email",
"status_callback": "http://www.example.com",
Expand Down Expand Up @@ -3156,7 +3156,7 @@
},
"MoveToDraft": {
"type": "boolean",
"description": "This is to determine whether the cloned bundle needs to be in draft state or not."
"description": "If set to true, the cloned bundle will be in the DRAFT state, else it will be twilio-approved"
},
"FriendlyName": {
"type": "string",
Expand All @@ -3171,8 +3171,7 @@
"create": {
"value": {
"FriendlyName": "friendly_name",
"TargetAccountSid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab",
"MoveToDraft": true
"TargetAccountSid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab"
}
}
}
Expand Down
Loading
Loading