-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Ron Swanson Quotes (Independent Publisher) #1392
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
Merged
Merged
Changes from all commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
160b208
certify-connector
troystaylor 5fb06db
certify-connector
troystaylor 08dd312
Revert "certify-connector"
troystaylor 4d7fb5d
Revert "certify-connector"
troystaylor 1ce889c
certify-connector
troystaylor f1a1cc3
certify-connector
troystaylor 620a2cc
certify-connector
troystaylor 5ee79bc
Update apiDefinition.swagger.json
troystaylor 06373fc
Update apiDefinition.swagger.json
troystaylor 3f91d0e
Update apiDefinition.swagger.json
troystaylor 0b9558f
Delete icon.png
troystaylor c4baf93
Delete settings.json
troystaylor f8931ee
Update apiDefinition.swagger.json
troystaylor 5274cde
Delete independent-publisher-connectors/HubSpot CMS directory
troystaylor 408a9d1
Delete independent-publisher-connectors/HubSpot CRM directory
troystaylor abf6aa1
Delete independent-publisher-connectors/HubSpot Marketing directory
troystaylor 74c1af4
Delete independent-publisher-connectors/Xero Accounting directory
troystaylor b8d9e83
Delete independent-publisher-connectors/Xero Payroll - UK directory
troystaylor fd67085
Delete independent-publisher-connectors/Xero Projects directory
troystaylor 5a0a16e
Merge branch 'microsoft:dev' into dev
troystaylor b9467b3
Merge branch 'microsoft:dev' into dev
troystaylor f23baf9
Merge branch 'microsoft:dev' into dev
troystaylor ced2e36
Merge branch 'microsoft:dev' into dev
troystaylor ff73efa
Merge branch 'microsoft:dev' into dev
troystaylor 308734e
Merge branch 'microsoft:dev' into dev
troystaylor d3649e4
Merge branch 'microsoft:dev' into dev
troystaylor fd3d5a8
Merge branch 'microsoft:dev' into dev
troystaylor 4fc3991
Merge branch 'microsoft:dev' into dev
troystaylor e968160
Merge branch 'microsoft:dev' into dev
troystaylor 0e04cfb
Merge branch 'microsoft:dev' into dev
troystaylor 228e20f
Merge branch 'microsoft:dev' into dev
troystaylor 909a359
Include iconBrandColor #da3b01 for IP
troystaylor a563344
Include iconBrandColor #da3b01 in best practices
troystaylor a6358ee
Merge branch 'microsoft:dev' into dev
troystaylor 52dfc8a
Rename README.template.md to readme.md
troystaylor a72822c
Add templates for IP
troystaylor 38444f4
Merge branch 'microsoft:dev' into dev
troystaylor bbea0cf
Fix typo
troystaylor bb05496
Merge branch 'microsoft:dev' into dev
troystaylor 4a8a6ad
Merge branch 'microsoft:dev' into dev
troystaylor ab3e926
Merge branch 'microsoft:dev' into dev
troystaylor 4ba5e0a
Merge branch 'microsoft:dev' into dev
troystaylor b05a9d3
Merge branch 'microsoft:dev' into dev
troystaylor 4c33505
Add files via upload
troystaylor 8e5cda4
Merge branch 'microsoft:dev' into dev
troystaylor 8a63890
Delete Google Cloud Translation directory
troystaylor deb87ab
Merge branch 'microsoft:dev' into dev
troystaylor cee13ad
Merge branch 'microsoft:dev' into dev
troystaylor 6b6f11a
Merge branch 'microsoft:dev' into dev
troystaylor 2d0ff94
Merge branch 'microsoft:dev' into dev
troystaylor a8511ed
Merge branch 'microsoft:dev' into dev
troystaylor 211f0f5
Merge branch 'microsoft:dev' into dev
troystaylor 9f17a81
Add files via upload
troystaylor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
120 changes: 120 additions & 0 deletions
120
independent-publisher-connectors/Ron Swanson Quotes/apiDefinition.swagger.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,120 @@ | ||
| { | ||
| "swagger": "2.0", | ||
| "info": { | ||
| "title": "Ron Swanson Quotes", | ||
| "description": "Quotes for every occasion. Because Ron Swanson is a hero.", | ||
| "version": "1.0", | ||
| "contact": { | ||
| "name": "Troy Taylor", | ||
| "url": "https://www.hitachisolutions.com", | ||
| "email": "ttaylor@hitachisolutions.com" | ||
| } | ||
| }, | ||
| "host": "ron-swanson-quotes.herokuapp.com", | ||
| "basePath": "/v2", | ||
| "schemes": [ | ||
| "https" | ||
| ], | ||
| "consumes": [], | ||
| "produces": [], | ||
| "paths": { | ||
| "/quotes": { | ||
| "get": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Get a quote", | ||
| "description": "Returns an array with one quote.", | ||
| "operationId": "QuoteGet", | ||
| "parameters": [] | ||
| } | ||
| }, | ||
| "/quotes/{count}": { | ||
| "get": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Get a number of quotes", | ||
| "description": "Returns an array with a count of quotes.", | ||
| "operationId": "Quotes", | ||
| "parameters": [ | ||
| { | ||
| "name": "count", | ||
| "in": "path", | ||
| "x-ms-summary": "Count", | ||
| "x-ms-url-encoding": "single", | ||
| "description": "The count number requesting.", | ||
| "required": true, | ||
| "type": "integer", | ||
| "format": "int32" | ||
| } | ||
| ] | ||
| } | ||
| }, | ||
| "/quotes/search/{term}": { | ||
| "get": { | ||
| "responses": { | ||
| "200": { | ||
| "description": "default", | ||
| "schema": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "summary": "Search for a term", | ||
| "description": "Returns an array of quotes matching term without case sensitivity.", | ||
| "operationId": "Search", | ||
| "parameters": [ | ||
| { | ||
| "name": "term", | ||
| "in": "path", | ||
| "x-ms-summary": "Term", | ||
| "x-ms-url-encoding": "single", | ||
| "description": "The search term.", | ||
| "required": true, | ||
| "type": "string" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| "definitions": {}, | ||
| "parameters": {}, | ||
| "responses": {}, | ||
| "securityDefinitions": {}, | ||
| "security": [], | ||
| "tags": [], | ||
| "x-ms-connector-metadata": [ | ||
| { | ||
| "propertyName": "Website", | ||
| "propertyValue": "https://github.com/jamesseanwright/ron-swanson-quotes" | ||
| }, | ||
| { | ||
| "propertyName": "Privacy policy", | ||
| "propertyValue": "https://github.com/jamesseanwright/ron-swanson-quotes" | ||
| }, | ||
| { | ||
| "propertyName": "Categories", | ||
| "propertyValue": "Lifestyle and Entertainment" | ||
| } | ||
| ] | ||
| } |
9 changes: 9 additions & 0 deletions
9
independent-publisher-connectors/Ron Swanson Quotes/apiProperties.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "properties": { | ||
| "connectionParameters": {}, | ||
| "iconBrandColor": "#da3b01", | ||
| "capabilities": [], | ||
| "publisher": "Troy Taylor", | ||
| "stackOwner": "James Wright" | ||
| } | ||
| } | ||
21 changes: 21 additions & 0 deletions
21
independent-publisher-connectors/Ron Swanson Quotes/readme.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # Ron Swanson Quotes | ||
| Quotes for every occasion. Because Ron Swanson is a hero. | ||
|
|
||
| ## Publisher: Troy Taylor, Hitachi Solutions | ||
|
|
||
| ## Prerequisites | ||
| There are no prerequisites for this connector. | ||
|
|
||
| ## Obtaining Credentials | ||
| There are no credentials needed for this connector. | ||
|
|
||
| ## Supported Operations | ||
| ### Get a quote | ||
| Returns an array with one quote. | ||
| ### Get a number of quotes | ||
| Returns an array with a count of quotes. | ||
| ### Search for a term | ||
| Returns an array of quotes matching term without case sensitivity. | ||
|
|
||
| ## Known Issues and Limitations | ||
| There are no known issues at this time. | ||
Amjed-Ayoub marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.