Skip to content

Commit b9c3a70

Browse files
committed
change paths
1 parent de29f2c commit b9c3a70

26 files changed

+72
-50
lines changed

yeti_switch_api/orm/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
11
from .orm_client import OrmClient # noqa: F401
22
from .contractor import Contractor # noqa: F401
3+
from .contact import Contact # noqa: F401
4+
from .account import Account # noqa: F401
5+
from .invoice import Invoice # noqa: F401
6+
from .invoice_originated_destination import InvoiceOriginatedDestination # noqa: F401
7+
from .invoice_originated_network import InvoiceOriginatedNetwork # noqa: F401
8+
from .invoice_terminated_destination import InvoiceTerminatedDestination # noqa: F401
9+
from .invoice_terminated_network import InvoiceTerminatedNetwork # noqa: F401
10+
11+
from .customer_auth import CustomersAuth # noqa: F401
12+
from .dialpeer import Dialpeer # noqa: F401
13+
from .numberlist import Numberlist # noqa: F401
14+
from .numberlist_item import NumberlistItem # noqa: F401
15+
from .rateplan import Rateplan # noqa: F401
16+
from .routing_tag import RoutingTag # noqa: F401
17+
18+
from .gateway import Gateway # noqa: F401
19+
from .gateway_group import GatewayGroup # noqa: F401
20+
21+
from .pop import Pop # noqa: F401
22+
from .smtp_connection import SmtpConnection # noqa: F401
23+
from .country import Country # noqa: F401
24+
from .network import Network # noqa: F401
25+
from .network_type import NetworkType # noqa: F401
26+
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class Account(BaseModel):
55
class Meta:
6-
path = "billing/accounts"
6+
path = "accounts"
77
type = "account"
88

99
contractor = RelationField("contractor")

yeti_switch_api/orm/billing/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class Contact(BaseModel):
55
class Meta:
6-
path = "billing/contacts"
6+
path = "contacts"
77
type = "contacts"
88

99
name = AttributeField("name")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class Country(BaseModel):
55
class Meta:
6-
path = "system/countries"
6+
path = "countries"
77
type = "countries"
88

99
name = AttributeField("name")
File renamed without changes.

yeti_switch_api/orm/equipment/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)