Skip to content

Commit 065d27f

Browse files
committed
1 parent a25ba89 commit 065d27f

80 files changed

Lines changed: 299 additions & 82 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.

.openapi-generator/FILES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ docs/GetLink200Response.md
2121
docs/GetLink200ResponseGeolinksInner.md
2222
docs/GetLink200ResponseMetatag.md
2323
docs/GetLink200ResponseQrcode.md
24+
docs/GetLink200ResponseUtm.md
2425
docs/GetLink401Response.md
2526
docs/GetLink404Response.md
2627
docs/GetLink422Response.md
@@ -59,6 +60,7 @@ test/test_get_link200_response.py
5960
test/test_get_link200_response_geolinks_inner.py
6061
test/test_get_link200_response_metatag.py
6162
test/test_get_link200_response_qrcode.py
63+
test/test_get_link200_response_utm.py
6264
test/test_get_link401_response.py
6365
test/test_get_link404_response.py
6466
test/test_get_link422_response.py
@@ -103,6 +105,7 @@ urlr/models/get_link200_response.py
103105
urlr/models/get_link200_response_geolinks_inner.py
104106
urlr/models/get_link200_response_metatag.py
105107
urlr/models/get_link200_response_qrcode.py
108+
urlr/models/get_link200_response_utm.py
106109
urlr/models/get_link401_response.py
107110
urlr/models/get_link404_response.py
108111
urlr/models/get_link422_response.py

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.5.0] - 2024-11-07
4+
5+
- Updated URLR API version to 1.4
6+
37
## [2.4.0] - 2024-10-09
48

59
- Small doc fixes

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# urlr@2.4.0
1+
# urlr@2.5.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.3
8-
- Package version: 2.4.0
7+
- API version: 1.4
8+
- Package version: 2.5.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
For more information, please visit [https://urlr.me/en](https://urlr.me/en)
@@ -122,6 +122,7 @@ Class | Method | HTTP request | Description
122122
- [GetLink200ResponseGeolinksInner](docs/GetLink200ResponseGeolinksInner.md)
123123
- [GetLink200ResponseMetatag](docs/GetLink200ResponseMetatag.md)
124124
- [GetLink200ResponseQrcode](docs/GetLink200ResponseQrcode.md)
125+
- [GetLink200ResponseUtm](docs/GetLink200ResponseUtm.md)
125126
- [GetLink401Response](docs/GetLink401Response.md)
126127
- [GetLink404Response](docs/GetLink404Response.md)
127128
- [GetLink422Response](docs/GetLink422Response.md)

docs/CreateLinkRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**label** | **str** | Label | [optional]
1414
**password** | **str** | Password | [optional]
1515
**qrcode** | [**CreateLinkRequestQrcode**](CreateLinkRequestQrcode.md) | | [optional]
16+
**utm** | [**GetLink200ResponseUtm**](GetLink200ResponseUtm.md) | | [optional]
1617
**metatag** | [**CreateLinkRequestMetatag**](CreateLinkRequestMetatag.md) | | [optional]
1718
**expired_at** | **datetime** | Expiration date | [optional]
1819
**expired_url** | **str** | Expiration URL | [optional]

docs/GetLink200Response.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
1313
**code** | **str** | Short code | [optional]
1414
**label** | **str** | Label | [optional]
1515
**qrcode** | [**GetLink200ResponseQrcode**](GetLink200ResponseQrcode.md) | | [optional]
16+
**utm** | [**GetLink200ResponseUtm**](GetLink200ResponseUtm.md) | | [optional]
1617
**metatag** | [**GetLink200ResponseMetatag**](GetLink200ResponseMetatag.md) | | [optional]
1718
**geolinks** | [**List[GetLink200ResponseGeolinksInner]**](GetLink200ResponseGeolinksInner.md) | Geographical targeting links | [optional]
1819
**created_at** | **datetime** | Creation date | [optional]

docs/GetLink200ResponseUtm.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# GetLink200ResponseUtm
2+
3+
UTM parameters
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**campaign** | **str** | utm_campaign | [optional]
10+
**medium** | **str** | utm_medium | [optional]
11+
**source** | **str** | utm_source | [optional]
12+
**content** | **str** | utm_content | [optional]
13+
14+
## Example
15+
16+
```python
17+
from urlr.models.get_link200_response_utm import GetLink200ResponseUtm
18+
19+
# TODO update the JSON string below
20+
json = "{}"
21+
# create an instance of GetLink200ResponseUtm from a JSON string
22+
get_link200_response_utm_instance = GetLink200ResponseUtm.from_json(json)
23+
# print the JSON string representation of the object
24+
print(GetLink200ResponseUtm.to_json())
25+
26+
# convert the object into a dict
27+
get_link200_response_utm_dict = get_link200_response_utm_instance.to_dict()
28+
# create an instance of GetLink200ResponseUtm from a dict
29+
get_link200_response_utm_from_dict = GetLink200ResponseUtm.from_dict(get_link200_response_utm_dict)
30+
```
31+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32+
33+

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.4.0"
3+
version = "2.5.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.3
8+
The version of the OpenAPI document: 1.4
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.4.0"
25+
VERSION = "2.5.0"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 2.1.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.3
8+
The version of the OpenAPI document: 1.4
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.3
8+
The version of the OpenAPI document: 1.4
99
Contact: contact@urlr.me
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)