tallyfy 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tallyfy might be problematic. Click here for more details.
- tallyfy-1.0.0/CHANGELOG.md +40 -0
- tallyfy-1.0.0/LICENSE +21 -0
- tallyfy-1.0.0/MANIFEST.in +6 -0
- tallyfy-1.0.0/PKG-INFO +680 -0
- tallyfy-1.0.0/README.md +199 -0
- tallyfy-1.0.0/pyproject.toml +98 -0
- tallyfy-1.0.0/requirements.txt +12 -0
- tallyfy-1.0.0/setup.cfg +4 -0
- tallyfy-1.0.0/setup.py +70 -0
- tallyfy-1.0.0/swagger/activity_feed.json +5776 -0
- tallyfy-1.0.0/swagger/asset.json +5645 -0
- tallyfy-1.0.0/swagger/authentication.json +5693 -0
- tallyfy-1.0.0/swagger/favorites.json +5720 -0
- tallyfy-1.0.0/swagger/file.json +6189 -0
- tallyfy-1.0.0/swagger/folder.json +5964 -0
- tallyfy-1.0.0/swagger/form_field.json +5695 -0
- tallyfy-1.0.0/swagger/group.json +5942 -0
- tallyfy-1.0.0/swagger/guest.json +7395 -0
- tallyfy-1.0.0/swagger/list.json +6017 -0
- tallyfy-1.0.0/swagger/member.json +7496 -0
- tallyfy-1.0.0/swagger/organization.json +7131 -0
- tallyfy-1.0.0/swagger/process.json +6002 -0
- tallyfy-1.0.0/swagger/process_instances.json +5866 -0
- tallyfy-1.0.0/swagger/public.json +6074 -0
- tallyfy-1.0.0/swagger/public_process.json +5895 -0
- tallyfy-1.0.0/swagger/public_template.json +5943 -0
- tallyfy-1.0.0/swagger/recurringjob.json +5889 -0
- tallyfy-1.0.0/swagger/search.json +5705 -0
- tallyfy-1.0.0/swagger/security.json +5851 -0
- tallyfy-1.0.0/swagger/selectedtextcomment.json +5911 -0
- tallyfy-1.0.0/swagger/split_summary.json +476 -0
- tallyfy-1.0.0/swagger/step.json +6580 -0
- tallyfy-1.0.0/swagger/tag.json +6050 -0
- tallyfy-1.0.0/swagger/task.json +8826 -0
- tallyfy-1.0.0/swagger/template.json +7072 -0
- tallyfy-1.0.0/swagger/watching.json +6122 -0
- tallyfy-1.0.0/tallyfy/README.md +636 -0
- tallyfy-1.0.0/tallyfy/__init__.py +20 -0
- tallyfy-1.0.0/tallyfy/core.py +333 -0
- tallyfy-1.0.0/tallyfy/form_fields_management.py +582 -0
- tallyfy-1.0.0/tallyfy/models.py +1013 -0
- tallyfy-1.0.0/tallyfy/task_management.py +356 -0
- tallyfy-1.0.0/tallyfy/template_management.py +2580 -0
- tallyfy-1.0.0/tallyfy/user_management.py +235 -0
- tallyfy-1.0.0/tallyfy.egg-info/PKG-INFO +680 -0
- tallyfy-1.0.0/tallyfy.egg-info/SOURCES.txt +48 -0
- tallyfy-1.0.0/tallyfy.egg-info/dependency_links.txt +1 -0
- tallyfy-1.0.0/tallyfy.egg-info/not-zip-safe +1 -0
- tallyfy-1.0.0/tallyfy.egg-info/requires.txt +11 -0
- tallyfy-1.0.0/tallyfy.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the Tallyfy SDK will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.0] - 2025-06-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Initial release of Tallyfy SDK
|
|
12
|
+
- Complete user management functionality
|
|
13
|
+
- Task management with natural language processing
|
|
14
|
+
- Template management with automation support
|
|
15
|
+
- Form field management with AI-powered suggestions
|
|
16
|
+
- Comprehensive data models with type safety
|
|
17
|
+
- Error handling with automatic retry logic
|
|
18
|
+
- Session management and connection pooling
|
|
19
|
+
- Full API coverage for Tallyfy platform
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
- **User Management**: Organization members, guests, and invitations
|
|
23
|
+
- **Task Management**: Personal tasks, process tasks, and natural language creation
|
|
24
|
+
- **Template Management**: Template CRUD, automation rules, and health assessment
|
|
25
|
+
- **Form Fields**: Dynamic form field management with AI suggestions
|
|
26
|
+
- **Search**: Universal search across processes, templates, and tasks
|
|
27
|
+
- **Natural Language Processing**: Date extraction and task parsing
|
|
28
|
+
- **Error Handling**: Comprehensive error handling with detailed response data
|
|
29
|
+
- **Type Safety**: Full dataclass models with type hints
|
|
30
|
+
|
|
31
|
+
### Dependencies
|
|
32
|
+
- requests>=2.25.0
|
|
33
|
+
- typing-extensions>=4.0.0 (Python < 3.8)
|
|
34
|
+
|
|
35
|
+
### Development
|
|
36
|
+
- Python 3.7+ support
|
|
37
|
+
- Comprehensive test suite
|
|
38
|
+
- Type checking with mypy
|
|
39
|
+
- Code formatting with black
|
|
40
|
+
- Linting with flake8
|
tallyfy-1.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Tallyfy
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|