Skip to content

Commit 030d9cd

Browse files
committed
1 parent f921660 commit 030d9cd

78 files changed

Lines changed: 103 additions & 91 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [2.7.0] - 2025-01-25
4+
5+
- Updated URLR API version to 1.5
6+
37
## [2.6.0] - 2025-01-25
48

59
- Updated to OpenAPI Generator 7.11.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# urlr@2.6.0
1+
# urlr@2.7.0
22

33
![PyPI - Version](https://img.shields.io/pypi/v/urlr) ![PyPI - Downloads](https://img.shields.io/pypi/dm/urlr) ![PyPI - License](https://img.shields.io/pypi/l/urlr)
44

55
This SDK is automatically generated with the [OpenAPI Generator](https://openapi-generator.tech) project.
66

7-
- API version: 1.4
8-
- Package version: 2.6.0
7+
- API version: 1.5
8+
- Package version: 2.7.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
For more information, please visit [https://urlr.me/en](https://urlr.me/en)

docs/CreateLinkRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
1717
**metatag** | [**CreateLinkRequestMetatag**](CreateLinkRequestMetatag.md) | | [optional]
1818
**expired_at** | **datetime** | Expiration date | [optional]
1919
**expired_url** | **str** | Expiration URL | [optional]
20+
**delete_after_expiration** | **bool** | Whether or not to remove the link after the expiry date | [optional] [default to False]
2021

2122
## Example
2223

docs/GetLink200Response.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**updated_at** | **datetime** | Modification date | [optional]
2121
**expired_at** | **datetime** | Expiration date | [optional]
2222
**expired_url** | **str** | Expiration URL | [optional]
23+
**delete_after_expiration** | **bool** | Whether or not to remove the link after the expiry date | [optional] [default to False]
2324

2425
## Example
2526

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "urlr"
3-
version = "2.6.0"
3+
version = "2.7.0"
44
description = "Python client for URLR"
55
authors = ["URLR <contact@urlr.me>"]
66
license = "MIT"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API powering the features of URLR.<br><br>Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.<br><br>Key API principles:<br> <ul><li>All dates follow **ISO-8601** format</li><li>Most errors follow **RFC 9457** standard</li><li>All responses are delivered in English</li></ul>
77
8-
The version of the OpenAPI document: 1.4
8+
The version of the OpenAPI document: 1.5
99
Contact: contact@urlr.me
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "urlr"
25-
VERSION = "2.6.0"
25+
VERSION = "2.7.0"
2626
PYTHON_REQUIRES = ">= 3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",

test/test_access_tokens_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API powering the features of URLR.<br><br>Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.<br><br>Key API principles:<br> <ul><li>All dates follow **ISO-8601** format</li><li>Most errors follow **RFC 9457** standard</li><li>All responses are delivered in English</li></ul>
77
8-
The version of the OpenAPI document: 1.4
8+
The version of the OpenAPI document: 1.5
99
Contact: contact@urlr.me
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

test/test_create_access_token200_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API powering the features of URLR.<br><br>Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.<br><br>Key API principles:<br> <ul><li>All dates follow **ISO-8601** format</li><li>Most errors follow **RFC 9457** standard</li><li>All responses are delivered in English</li></ul>
77
8-
The version of the OpenAPI document: 1.4
8+
The version of the OpenAPI document: 1.5
99
Contact: contact@urlr.me
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

test/test_create_access_token401_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API powering the features of URLR.<br><br>Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.<br><br>Key API principles:<br> <ul><li>All dates follow **ISO-8601** format</li><li>Most errors follow **RFC 9457** standard</li><li>All responses are delivered in English</li></ul>
77
8-
The version of the OpenAPI document: 1.4
8+
The version of the OpenAPI document: 1.5
99
Contact: contact@urlr.me
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

test/test_create_access_token_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API powering the features of URLR.<br><br>Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.<br><br>Key API principles:<br> <ul><li>All dates follow **ISO-8601** format</li><li>Most errors follow **RFC 9457** standard</li><li>All responses are delivered in English</li></ul>
77
8-
The version of the OpenAPI document: 1.4
8+
The version of the OpenAPI document: 1.5
99
Contact: contact@urlr.me
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)