Skip to content

Commit

Permalink
2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Huluti committed Oct 9, 2024
1 parent 5ba6cde commit f8dfa6d
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 11 deletions.
5 changes: 5 additions & 0 deletions clients/urlr-javascript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [2.4.0] - 2024-10-09

- Small doc fixes
- Updated to OpenAPI Generator 7.9.0

## [2.3.0] - 2024-07-01

- Updated URLR API version to 1.3
Expand Down
5 changes: 5 additions & 0 deletions clients/urlr-php/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [2.4.0] - 2024-10-09

- Small doc fixes
- Updated to OpenAPI Generator 7.9.0

## [2.3.0] - 2024-07-01

- Updated URLR API version to 1.3
Expand Down
5 changes: 5 additions & 0 deletions clients/urlr-python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [2.4.0] - 2024-10-09

- Small doc fixes
- Updated to OpenAPI Generator 7.9.0

## [2.3.0] - 2024-07-01

- Updated URLR API version to 1.3
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/config-javascript.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
npmName: urlr-js
npmVersion: 2.3.0
npmVersion: 2.4.0
gitHost: github.com
gitUserId: urlr
gitRepoId: urlr-javascript
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/config-php.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packageName: URLR
composerPackageName: urlr/urlr-php
artifactVersion: 2.3.0
artifactVersion: 2.4.0
invokerPackage: URLR
variableNamingConvention: camelCase
developerOrganization: URLR
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/config-python.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
projectName: URLR
packageName: urlr
packageVersion: 2.3.0
packageVersion: 2.4.0
infoName: URLR
infoEmail: [email protected]
gitUserId: urlr
Expand Down
33 changes: 26 additions & 7 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ paths:
properties:
id: { description: 'Link API ID', type: string, format: uuid, example: 436b5d20-e174-4363-94e5-2b3dd4e74b5f }
url: { description: 'Original URL', type: string }
team: { description: 'Team API ID', type: string, format: uuid }
team_id: { description: 'Team API ID', type: string, format: uuid }
folder_id: { description: 'Folder API ID', type: string, format: uuid }
domain: { description: Domain, type: string, format: hostname, example: urlr.me }
code: { description: 'Short code', type: string, example: xxxxx }
label: { description: Label, type: string }
qrcode: { description: 'QR Code associated to the short link', properties: { data: { description: 'QR Code Data URL', type: string } }, type: object }
metatag: { description: 'Custom metadata for social previews', properties: { title: { description: 'Title of the link', type: string }, description: { description: 'Description of the link', type: string }, image: { description: 'Image URL of the link', type: string, format: url } }, type: object }
metatag: { description: 'Custom metadata for social previews', properties: { title: { description: 'Title of the link', type: string, maxLength: 255 }, description: { description: 'Description of the link', type: string, maxLength: 255 }, image: { description: 'Image URL of the link', type: string, format: url } }, type: object }
geolinks: { description: 'Geographical targeting links', type: array, items: { properties: { type: { description: 'Type of the geographic link', type: string }, value: { description: 'Value corresponding to the type of the geographic link', type: string }, url: { description: 'URL of the geographic link', type: string, format: url } }, type: object } }
created_at: { description: 'Creation date', type: string, format: date-time }
updated_at: { description: 'Modification date', type: string, format: date-time }
Expand Down Expand Up @@ -202,7 +202,7 @@ paths:
code:
description: 'Custom short code'
type: string
pattern: '^[a-zA-Z0-9!-]{3,50}$'
pattern: '^[a-zA-Z0-9!-]{2,50}$'
example: xxxxx
label:
description: Label
Expand All @@ -216,7 +216,7 @@ paths:
type: object
metatag:
description: 'Custom metadata for social previews'
properties: { title: { description: 'Title for the link', type: string }, description: { description: 'Description for the link', type: string }, image: { description: 'Image URL for the link. Recommended: 1200X630px<br>Maximum size: 3Mb - Formats: PNG, JPEG, WebP and GIF.', type: string, format: url } }
properties: { title: { description: 'Title for the link', type: string, maxLength: 255 }, description: { description: 'Description for the link', type: string, maxLength: 255 }, image: { description: 'Image URL for the link. Recommended: 1200X630px<br>Maximum size: 3Mb - Formats: PNG, JPEG, WebP and GIF.', type: string, format: url } }
type: object
expired_at:
description: 'Expiration date'
Expand All @@ -236,13 +236,13 @@ paths:
properties:
id: { description: 'Link API ID', type: string, format: uuid, example: 436b5d20-e174-4363-94e5-2b3dd4e74b5f }
url: { description: 'Original URL', type: string }
team: { description: 'Team API ID', type: string, format: uuid }
team_id: { description: 'Team API ID', type: string, format: uuid }
folder_id: { description: 'Folder API ID', type: string, format: uuid }
domain: { description: Domain, type: string, format: hostname, example: urlr.me }
code: { description: 'Short code', type: string, example: xxxxx }
label: { description: Label, type: string }
qrcode: { description: 'QR Code associated to the short link', properties: { data: { description: 'QR Code Data URL', type: string } }, type: object }
metatag: { description: 'Custom metadata for social previews', properties: { title: { description: 'Title of the link', type: string }, description: { description: 'Description of the link', type: string }, image: { description: 'Image URL of the link', type: string, format: url } }, type: object }
metatag: { description: 'Custom metadata for social previews', properties: { title: { description: 'Title of the link', type: string, maxLength: 255 }, description: { description: 'Description of the link', type: string, maxLength: 255 }, image: { description: 'Image URL of the link', type: string, format: url } }, type: object }
geolinks: { description: 'Geographical targeting links', type: array, items: { properties: { type: { description: 'Type of the geographic link', type: string }, value: { description: 'Value corresponding to the type of the geographic link', type: string }, url: { description: 'URL of the geographic link', type: string, format: url } }, type: object } }
created_at: { description: 'Creation date', type: string, format: date-time }
updated_at: { description: 'Modification date', type: string, format: date-time }
Expand Down Expand Up @@ -416,7 +416,7 @@ paths:
application/json:
schema:
required:
- linkId
- link_id
properties:
link_id:
description: 'Link API ID'
Expand Down Expand Up @@ -578,3 +578,22 @@ components:
type: http
bearerFormat: JWT
scheme: bearer
tags:
-
name: 'Access Tokens'
description: 'Access Tokens'
-
name: Links
description: Links
-
name: 'QR Codes'
description: 'QR Codes'
-
name: Statistics
description: Statistics
-
name: Teams
description: Teams
-
name: Folders
description: Folders
2 changes: 1 addition & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.6.0"
"version": "7.9.0"
}
}

0 comments on commit f8dfa6d

Please sign in to comment.