Skip to content

Commit b39fd57

Browse files
committed
Travis update: Mar 2025 (Build 824)
[skip ci]
1 parent d5dda5a commit b39fd57

File tree

160 files changed

+19393
-0
lines changed

Some content is hidden

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

160 files changed

+19393
-0
lines changed

Diff for: .github/workflows/python.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
4+
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
5+
6+
name: messente_api Python package
7+
8+
on: [push, pull_request]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
pip install -r test-requirements.txt
29+
- name: Test with pytest
30+
run: |
31+
pytest --cov={{packageName}}

Diff for: .gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
nosetests.xml
44+
coverage.xml
45+
*,cover
46+
.hypothesis/
47+
venv/
48+
.venv/
49+
.python-version
50+
.pytest_cache
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
59+
# Sphinx documentation
60+
docs/_build/
61+
62+
# PyBuilder
63+
target/
64+
65+
#Ipython Notebook
66+
.ipynb_checkpoints

Diff for: .gitlab-ci.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
4+
# ref: https://docs.gitlab.com/ee/ci/README.html
5+
# ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
6+
7+
stages:
8+
- test
9+
10+
.pytest:
11+
stage: test
12+
script:
13+
- pip install -r requirements.txt
14+
- pip install -r test-requirements.txt
15+
- pytest --cov=messente_api
16+
17+
pytest-3.8:
18+
extends: .pytest
19+
image: python:3.8-alpine
20+
pytest-3.9:
21+
extends: .pytest
22+
image: python:3.9-alpine
23+
pytest-3.10:
24+
extends: .pytest
25+
image: python:3.10-alpine
26+
pytest-3.11:
27+
extends: .pytest
28+
image: python:3.11-alpine
29+
pytest-3.12:
30+
extends: .pytest
31+
image: python:3.12-alpine

Diff for: .openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

Diff for: .openapi-generator/FILES

+158
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
.github/workflows/python.yml
2+
.gitignore
3+
.gitlab-ci.yml
4+
.openapi-generator-ignore
5+
.travis.yml
6+
README.md
7+
docs/BlacklistApi.md
8+
docs/BulkMessagingApi.md
9+
docs/BulkOmniMessageCreateSuccessResponse.md
10+
docs/BulkOmniMessageCreateSuccessResponseMessagesInner.md
11+
docs/BulkOmnimessage.md
12+
docs/Channel.md
13+
docs/ContactEnvelope.md
14+
docs/ContactFields.md
15+
docs/ContactListEnvelope.md
16+
docs/ContactResponseFields.md
17+
docs/ContactUpdateFields.md
18+
docs/ContactsApi.md
19+
docs/DeliveryReportApi.md
20+
docs/DeliveryReportResponse.md
21+
docs/DeliveryResult.md
22+
docs/ErrorCodeOmnichannel.md
23+
docs/ErrorCodeOmnichannelMachine.md
24+
docs/ErrorCodePhonebook.md
25+
docs/ErrorCodeStatistics.md
26+
docs/ErrorItemNumberLookup.md
27+
docs/ErrorItemNumberLookupError.md
28+
docs/ErrorItemOmnichannel.md
29+
docs/ErrorItemPhonebook.md
30+
docs/ErrorItemStatistics.md
31+
docs/ErrorNumberLookup.md
32+
docs/ErrorOmnichannel.md
33+
docs/ErrorPhonebook.md
34+
docs/ErrorStatistics.md
35+
docs/ErrorTitleOmnichannel.md
36+
docs/ErrorTitlePhonebook.md
37+
docs/FetchBlacklistSuccess.md
38+
docs/GroupEnvelope.md
39+
docs/GroupListEnvelope.md
40+
docs/GroupName.md
41+
docs/GroupResponseFields.md
42+
docs/GroupsApi.md
43+
docs/MessageResult.md
44+
docs/MobileNetwork.md
45+
docs/NumberLookupApi.md
46+
docs/NumberToBlacklist.md
47+
docs/NumbersToInvestigate.md
48+
docs/OmniMessageCreateSuccessResponse.md
49+
docs/Omnimessage.md
50+
docs/OmnimessageApi.md
51+
docs/OmnimessageMessagesInner.md
52+
docs/PriceInfo.md
53+
docs/Priority.md
54+
docs/SMS.md
55+
docs/StatisticsApi.md
56+
docs/StatisticsReport.md
57+
docs/StatisticsReportSettings.md
58+
docs/StatisticsReportSuccess.md
59+
docs/Status.md
60+
docs/SyncNumberLookupResult.md
61+
docs/SyncNumberLookupSuccess.md
62+
docs/Telegram.md
63+
docs/TextStore.md
64+
docs/Viber.md
65+
docs/ViberVideo.md
66+
docs/WhatsApp.md
67+
docs/WhatsAppComponent.md
68+
docs/WhatsAppCurrency.md
69+
docs/WhatsAppDatetime.md
70+
docs/WhatsAppLanguage.md
71+
docs/WhatsAppMedia.md
72+
docs/WhatsAppParameter.md
73+
docs/WhatsAppTemplate.md
74+
docs/WhatsAppText.md
75+
git_push.sh
76+
messente_api/__init__.py
77+
messente_api/api/__init__.py
78+
messente_api/api/blacklist_api.py
79+
messente_api/api/bulk_messaging_api.py
80+
messente_api/api/contacts_api.py
81+
messente_api/api/delivery_report_api.py
82+
messente_api/api/groups_api.py
83+
messente_api/api/number_lookup_api.py
84+
messente_api/api/omnimessage_api.py
85+
messente_api/api/statistics_api.py
86+
messente_api/api_client.py
87+
messente_api/api_response.py
88+
messente_api/configuration.py
89+
messente_api/exceptions.py
90+
messente_api/models/__init__.py
91+
messente_api/models/bulk_omni_message_create_success_response.py
92+
messente_api/models/bulk_omni_message_create_success_response_messages_inner.py
93+
messente_api/models/bulk_omnimessage.py
94+
messente_api/models/channel.py
95+
messente_api/models/contact_envelope.py
96+
messente_api/models/contact_fields.py
97+
messente_api/models/contact_list_envelope.py
98+
messente_api/models/contact_response_fields.py
99+
messente_api/models/contact_update_fields.py
100+
messente_api/models/delivery_report_response.py
101+
messente_api/models/delivery_result.py
102+
messente_api/models/error_code_omnichannel.py
103+
messente_api/models/error_code_omnichannel_machine.py
104+
messente_api/models/error_code_phonebook.py
105+
messente_api/models/error_code_statistics.py
106+
messente_api/models/error_item_number_lookup.py
107+
messente_api/models/error_item_number_lookup_error.py
108+
messente_api/models/error_item_omnichannel.py
109+
messente_api/models/error_item_phonebook.py
110+
messente_api/models/error_item_statistics.py
111+
messente_api/models/error_number_lookup.py
112+
messente_api/models/error_omnichannel.py
113+
messente_api/models/error_phonebook.py
114+
messente_api/models/error_statistics.py
115+
messente_api/models/error_title_omnichannel.py
116+
messente_api/models/error_title_phonebook.py
117+
messente_api/models/fetch_blacklist_success.py
118+
messente_api/models/group_envelope.py
119+
messente_api/models/group_list_envelope.py
120+
messente_api/models/group_name.py
121+
messente_api/models/group_response_fields.py
122+
messente_api/models/message_result.py
123+
messente_api/models/mobile_network.py
124+
messente_api/models/number_to_blacklist.py
125+
messente_api/models/numbers_to_investigate.py
126+
messente_api/models/omni_message_create_success_response.py
127+
messente_api/models/omnimessage.py
128+
messente_api/models/omnimessage_messages_inner.py
129+
messente_api/models/price_info.py
130+
messente_api/models/priority.py
131+
messente_api/models/sms.py
132+
messente_api/models/statistics_report.py
133+
messente_api/models/statistics_report_settings.py
134+
messente_api/models/statistics_report_success.py
135+
messente_api/models/status.py
136+
messente_api/models/sync_number_lookup_result.py
137+
messente_api/models/sync_number_lookup_success.py
138+
messente_api/models/telegram.py
139+
messente_api/models/text_store.py
140+
messente_api/models/viber.py
141+
messente_api/models/viber_video.py
142+
messente_api/models/whats_app.py
143+
messente_api/models/whats_app_component.py
144+
messente_api/models/whats_app_currency.py
145+
messente_api/models/whats_app_datetime.py
146+
messente_api/models/whats_app_language.py
147+
messente_api/models/whats_app_media.py
148+
messente_api/models/whats_app_parameter.py
149+
messente_api/models/whats_app_template.py
150+
messente_api/models/whats_app_text.py
151+
messente_api/py.typed
152+
messente_api/rest.py
153+
pyproject.toml
154+
requirements.txt
155+
setup.cfg
156+
setup.py
157+
test-requirements.txt
158+
tox.ini

Diff for: .openapi-generator/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7.11.0

Diff for: .travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: python
2+
3+
script:
4+
- echo "skipping tests"
5+
6+
deploy:
7+
provider: pypi
8+
user: messente
9+
password:
10+
secure: T6b+hfVKTyJUUprT/7c6+nuEpqjENHWbZ5OrFLq/fo0N++aUgB7/VgsY7L2U9vmuog2xf34Di0C66fe/Tmy5czc+iXbwSnS6uP0aJk6dnERrdhiarUHgsDq4/txx59qYXZfelCO38M54GBPAlDzVp5/ONocbOrrJUPnt++0t/ocwbq2x5m6RSycJCEBWjxkBuLclrIkUvI+0IgJl/CXUro2OeVUg4J7rrwI68XAKAZF2SOQm/V3Ak30ax7CE2XFScVSvfz2g5kJbvtamFwdPRAwA5ThU4q6TDlL49DEblZCSKzAwOTkKkIkjFY5m6PPkNnxFAEsBjRyU5tl+T1pPvM0Gd/AY3lBXruRbU8SmGJgZbz59q1SQ1NRm5gHKpFEQ0kwWJvEJMOwRDLH16nFY4XX15ffVWFqw8Pkaso6NV6RTRVFTV3rVY2YPa1ili2QvkHYjejMZRDG+13MR+gJGWbjU2Uql3kj/QbIBFMyzXcfbLSpdn65KkzI5Svvzl/CsBZ0NsXIhH8rRsK464bZUuDY7qLbNca4IxARZRb2jH9C3Zas4kjJzl9J5TjkZTc8HTl+5PB8k+XsBaPSa1BvGvS3YEpQF6mVOr/SkQGX/yMV/WcmZJekSaWVrgdt5twPlfah0bwfKx60FKJqQYP2+2HeoA56UPrwSGT5ocz0wQC8=
11+
on:
12+
tags: true

0 commit comments

Comments
 (0)