Skip to content

Commit 01e31d3

Browse files
authored
chore: Move to v1 from v1beta (#97)
* chore: Move to v1 from v1beta * fix tests * fix-tests * Fix tests * Fix tests * Fix tests * log cliend id * Fix tests * Fix tests * fix tests * upgrade version
1 parent 71c7be8 commit 01e31d3

Some content is hidden

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

61 files changed

+579
-563
lines changed

README.md

Lines changed: 3 additions & 3 deletions

fyle/platform/apis/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Defining API Versions
33
"""
4+
from . import v1
45

5-
from . import v1beta
6-
7-
__all__ = [v1beta]
6+
__all__ = [v1]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
__all__ = [
44
admin, approver, spender, common, accountant
55
]
6-
version = 'v1beta'
6+
version = 'v1'
File renamed without changes.

fyle/platform/apis/v1beta/accountant/orgs.py renamed to fyle/platform/apis/v1/accountant/orgs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
V1 Beta Accountant Orgs
2+
V1 Accountant Orgs
33
"""
44

55
from ....internals.list_resources import ListResources
File renamed without changes.

fyle/platform/apis/v1beta/admin/accounting_exports.py renamed to fyle/platform/apis/v1/admin/accounting_exports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
V1 Beta Admin Accounting Exports
2+
V1 Admin Accounting Exports
33
"""
44
from ....internals.get_resources import GetResources
55
from ....internals.list_all_resources import ListAllResources

fyle/platform/apis/v1beta/admin/advance_requests.py renamed to fyle/platform/apis/v1/admin/advance_requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
V1 Beta Admin Advance Requests
2+
V1 Admin Advance Requests
33
"""
44

55
from ....internals.get_resources import GetResources

fyle/platform/apis/v1beta/admin/categories.py renamed to fyle/platform/apis/v1/admin/categories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
V1 Beta Admin Categories
2+
V1 Admin Categories
33
"""
44

55
from ....internals.list_resources import ListResources

fyle/platform/apis/v1beta/admin/corporate_card_transactions.py renamed to fyle/platform/apis/v1/admin/corporate_card_transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
V1 Beta Admin Corporate Card Transactions
2+
V1 Admin Corporate Card Transactions
33
"""
44

55
from ....internals.get_resources import GetResources

0 commit comments

Comments
 (0)