Skip to content

Commit

Permalink
Weekday update
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeRalphson committed Dec 16, 2021
1 parent 728d6ee commit 2714b7d
Show file tree
Hide file tree
Showing 131 changed files with 1,391 additions and 569 deletions.
16 changes: 8 additions & 8 deletions APIs/apideck.com/accounting/8.10.1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ paths:
const params = {
customer: {
display_id: 'EMP00101',
display_name: "Bill's Windsurf Shop",
display_name: 'Windsurf Shop',
company_name: 'SpaceX',
title: 'CEO',
first_name: 'Elon',
Expand Down Expand Up @@ -704,7 +704,7 @@ paths:
id: 'id_example',
customer: {
display_id: 'EMP00101',
display_name: "Bill's Windsurf Shop",
display_name: 'Windsurf Shop',
company_name: 'SpaceX',
title: 'CEO',
first_name: 'Elon',
Expand Down Expand Up @@ -1243,7 +1243,7 @@ paths:
number: 'OIT00546',
customer: {
id: '12345',
display_name: "Bill's Windsurf Shop"
display_name: 'Windsurf Shop'
},
invoice_date: '2020-09-30',
due_date: '2020-10-30',
Expand Down Expand Up @@ -1503,7 +1503,7 @@ paths:
number: 'OIT00546',
customer: {
id: '12345',
display_name: "Bill's Windsurf Shop"
display_name: 'Windsurf Shop'
},
invoice_date: '2020-09-30',
due_date: '2020-10-30',
Expand Down Expand Up @@ -2065,7 +2065,7 @@ paths:
transaction_date: '2021-05-01T12:00:00.000Z',
customer: {
id: '12345',
display_name: "Bill's Windsurf Shop"
display_name: 'Windsurf Shop'
},
reconciled: true,
status: 'authorised',
Expand Down Expand Up @@ -2254,7 +2254,7 @@ paths:
transaction_date: '2021-05-01T12:00:00.000Z',
customer: {
id: '12345',
display_name: "Bill's Windsurf Shop"
display_name: 'Windsurf Shop'
},
reconciled: true,
status: 'authorised',
Expand Down Expand Up @@ -2899,7 +2899,7 @@ components:
title: Display ID
type: string
display_name:
example: Bill's Windsurf Shop
example: Windsurf Shop
nullable: true
title: Display Name
type: string
Expand Down Expand Up @@ -5514,7 +5514,7 @@ components:
title: Display ID
type: string
display_name:
example: Bill's Windsurf Shop
example: Windsurf Shop
nullable: true
title: Display Name
type: string
Expand Down
33 changes: 20 additions & 13 deletions APIs/apideck.com/file-storage/8.10.1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,9 @@ paths:
})
try {
const { data } = await apideck.fileStorage.filesUpload({})
const { data } = await apideck.fileStorage.filesUpload({
filesUpload: 'string'
})
console.log('API called successfully', data)
} catch (error) {
console.error(error)
Expand Down Expand Up @@ -1366,6 +1368,7 @@ paths:
content:
"*/*":
schema:
example: <binary string>
format: binary
type: string
required: true
Expand Down Expand Up @@ -1402,11 +1405,14 @@ paths:
consumerId: 'REPLACE_WITH_CONSUMER_ID'
})
const params = {
id: 'id_example',
partNumber: 0,
body: '<binary string>'
}
try {
const { data } = await apideck.fileStorage.uploadSessionsUpload({
id: 'id_example',
partNumber: undefined
})
const { data } = await apideck.fileStorage.uploadSessionsUpload(params)
console.log('API called successfully', data)
} catch (error) {
console.error(error)
Expand All @@ -1424,8 +1430,10 @@ paths:
requestBody:
content:
application/json:
schema: {}
required: true
schema:
additionalProperties: false
properties: {}
type: object
responses:
"201":
$ref: "#/components/responses/GetFileResponse"
Expand Down Expand Up @@ -1459,13 +1467,11 @@ paths:
consumerId: 'REPLACE_WITH_CONSUMER_ID'
})
const params = {
id: 'id_example',
uploadSessionsFinish: null
}
try {
const { data } = await apideck.fileStorage.uploadSessionsFinish(params)
const { data } = await apideck.fileStorage.uploadSessionsFinish({
id: 'id_example',
uploadSessionsFinish: {}
})
console.log('API called successfully', data)
} catch (error) {
console.error(error)
Expand Down Expand Up @@ -1540,6 +1546,7 @@ components:
name: part_number
required: true
schema:
example: 0
maximum: 10000
minimum: 0
type: number
Expand Down
27 changes: 17 additions & 10 deletions APIs/apideck.com/hris/8.10.1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
email: [email protected]
url: https://developers.apideck.com
description: |
Welcome to the hris.
Welcome to the HRIS API.
You can use this API to access all hris endpoints.
Expand Down Expand Up @@ -265,7 +265,7 @@ info:
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
title: hris
title: HRIS API
version: 8.10.1
x-apideck-api: hris
x-apideck-sdk-support: true
Expand Down Expand Up @@ -697,22 +697,23 @@ paths:
manager: {
name: 'Elon Musk',
first_name: 'Elon',
last_name: 'Musk'
last_name: 'Musk',
email: '[email protected]'
},
social_security_number: '123456789',
birthday: '2000-08-12',
country_of_birth: 'US',
description: 'A description',
gender: 'male',
pronouns: 'she,her',
prefered_language: 'EN',
preferred_language: 'EN',
languages: ['EN'],
nationalities: ['US'],
photo_url: 'https://unavatar.io/elon-musk',
jobs: [
{
title: 'CEO',
compensation_rate: 'year',
compensation_rate: '72000',
hired_at: '2020-08-12',
is_primary: true,
payment_unit: 'year',
Expand Down Expand Up @@ -996,22 +997,23 @@ paths:
manager: {
name: 'Elon Musk',
first_name: 'Elon',
last_name: 'Musk'
last_name: 'Musk',
email: '[email protected]'
},
social_security_number: '123456789',
birthday: '2000-08-12',
country_of_birth: 'US',
description: 'A description',
gender: 'male',
pronouns: 'she,her',
prefered_language: 'EN',
preferred_language: 'EN',
languages: ['EN'],
nationalities: ['US'],
photo_url: 'https://unavatar.io/elon-musk',
jobs: [
{
title: 'CEO',
compensation_rate: 'year',
compensation_rate: '72000',
hired_at: '2020-08-12',
is_primary: true,
payment_unit: 'year',
Expand Down Expand Up @@ -1721,7 +1723,7 @@ components:
items:
properties:
compensation_rate:
example: year
example: "72000"
title: The compensation rate of the job.
type: string
compensations:
Expand Down Expand Up @@ -1792,6 +1794,11 @@ components:
$ref: "#/components/schemas/LastName"
manager:
properties:
email:
example: [email protected]
format: email
nullable: true
type: string
first_name:
$ref: "#/components/schemas/FirstName"
id:
Expand Down Expand Up @@ -1831,7 +1838,7 @@ components:
nullable: true
title: Picture URL
type: string
prefered_language:
preferred_language:
$ref: "#/components/schemas/Language"
preferred_name:
example: Elon Musk
Expand Down
17 changes: 16 additions & 1 deletion APIs/apideck.com/vault/8.10.1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1945,8 +1945,19 @@ components:
mask: false
placeholder: ""
required: true
sensitive: false
type: text
value: https://eu28.salesforce.com
- custom_field: false
disabled: false
id: api_key
label: API Key
mask: false
placeholder: ""
required: true
sensitive: true
type: text
value: "123455677"
items:
$ref: "#/components/schemas/FormField"
readOnly: true
Expand All @@ -1956,7 +1967,7 @@ components:
readOnly: true
type: string
id:
example: lead+close
example: crm+salesforce
readOnly: true
type: string
logo:
Expand Down Expand Up @@ -2441,6 +2452,10 @@ components:
required:
example: true
type: boolean
sensitive:
example: false
nullable: true
type: boolean
type:
enum:
- text
Expand Down
10 changes: 7 additions & 3 deletions APIs/googleapis.com/accesscontextmanager/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@ info:
termsOfService: https://developers.google.com/terms/
title: Access Context Manager API
version: v1
x-apiClientRegistration:
url: https://console.developers.google.com
x-apisguru-categories:
- analytics
- media
x-logo:
url: https://upload.wikimedia.org/wikipedia/commons/e/e1/YouTube_play_buttom_icon_%282013-2017%29.svg
url: https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
x-origin:
- format: google
- format: openapi
url: https://accesscontextmanager.googleapis.com/$discovery/rest?version=v1
version: v1
version: "3.0"
x-providerName: googleapis.com
x-serviceName: accesscontextmanager
externalDocs:
Expand Down Expand Up @@ -1496,3 +1498,5 @@ components:
https://www.googleapis.com/auth/cloud-platform: See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
tokenUrl: https://accounts.google.com/o/oauth2/token
type: oauth2
source:
url: {}
10 changes: 3 additions & 7 deletions APIs/googleapis.com/accesscontextmanager/v1beta/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@ info:
termsOfService: https://developers.google.com/terms/
title: Access Context Manager API
version: v1beta
x-apiClientRegistration:
url: https://console.developers.google.com
x-apisguru-categories:
- analytics
- media
x-logo:
url: https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
url: https://upload.wikimedia.org/wikipedia/commons/e/e1/YouTube_play_buttom_icon_%282013-2017%29.svg
x-origin:
- format: openapi
- format: google
url: https://accesscontextmanager.googleapis.com/$discovery/rest?version=v1beta
version: "3.0"
version: v1
x-providerName: googleapis.com
x-serviceName: accesscontextmanager
externalDocs:
Expand Down Expand Up @@ -760,5 +758,3 @@ components:
https://www.googleapis.com/auth/cloud-platform: See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
tokenUrl: https://accounts.google.com/o/oauth2/token
type: oauth2
source:
url: {}
10 changes: 7 additions & 3 deletions APIs/googleapis.com/admob/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@ info:
termsOfService: https://developers.google.com/terms/
title: AdMob API
version: v1
x-apiClientRegistration:
url: https://console.developers.google.com
x-apisguru-categories:
- analytics
- media
x-logo:
url: https://upload.wikimedia.org/wikipedia/commons/e/e1/YouTube_play_buttom_icon_%282013-2017%29.svg
url: https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
x-origin:
- format: google
- format: openapi
url: https://admob.googleapis.com/$discovery/rest?version=v1
version: v1
version: "3.0"
x-providerName: googleapis.com
x-serviceName: admob
externalDocs:
Expand Down Expand Up @@ -943,3 +945,5 @@ components:
https://www.googleapis.com/auth/admob.report: See your AdMob data
tokenUrl: https://accounts.google.com/o/oauth2/token
type: oauth2
source:
url: {}
10 changes: 3 additions & 7 deletions APIs/googleapis.com/admob/v1beta/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@ info:
termsOfService: https://developers.google.com/terms/
title: AdMob API
version: v1beta
x-apiClientRegistration:
url: https://console.developers.google.com
x-apisguru-categories:
- analytics
- media
x-logo:
url: https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
url: https://upload.wikimedia.org/wikipedia/commons/e/e1/YouTube_play_buttom_icon_%282013-2017%29.svg
x-origin:
- format: openapi
- format: google
url: https://admob.googleapis.com/$discovery/rest?version=v1beta
version: "3.0"
version: v1
x-providerName: googleapis.com
x-serviceName: admob
externalDocs:
Expand Down Expand Up @@ -945,5 +943,3 @@ components:
https://www.googleapis.com/auth/admob.report: See your AdMob data
tokenUrl: https://accounts.google.com/o/oauth2/token
type: oauth2
source:
url: {}
Loading

0 comments on commit 2714b7d

Please sign in to comment.