RockyRoad 0.0.572__py3-none-any.whl → 0.0.584__py3-none-any.whl
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.
- rockyroad/modules/content_management.py +1 -0
- rockyroad/modules/events.py +41 -1
- rockyroad/modules/machines.py +13 -0
- rockyroad/modules/parts.py +10 -0
- rockyroad/modules/sharepoint.py +127 -0
- rockyroad/modules/warranties.py +2 -0
- rockyroad/rockyroad.py +4 -0
- {rockyroad-0.0.572.dist-info → rockyroad-0.0.584.dist-info}/METADATA +1 -1
- {rockyroad-0.0.572.dist-info → rockyroad-0.0.584.dist-info}/RECORD +12 -11
- {rockyroad-0.0.572.dist-info → rockyroad-0.0.584.dist-info}/WHEEL +0 -0
- {rockyroad-0.0.572.dist-info → rockyroad-0.0.584.dist-info}/licenses/LICENSE +0 -0
- {rockyroad-0.0.572.dist-info → rockyroad-0.0.584.dist-info}/top_level.txt +0 -0
rockyroad/modules/events.py
CHANGED
|
@@ -38,6 +38,10 @@ class _Events(Consumer):
|
|
|
38
38
|
"""Inteface to Knowledge Events resource for the RockyRoad API."""
|
|
39
39
|
return self._Knowledge_Events(self)
|
|
40
40
|
|
|
41
|
+
def parts_search_events(self):
|
|
42
|
+
"""Inteface to Parts Search Events resource for the RockyRoad API."""
|
|
43
|
+
return self._Parts_Search_Events(self)
|
|
44
|
+
|
|
41
45
|
@headers({"Ocp-Apim-Subscription-Key": key})
|
|
42
46
|
@retry(max_attempts=20, when=status_5xx())
|
|
43
47
|
class _Sent_Emails(Consumer):
|
|
@@ -104,6 +108,11 @@ class _Events(Consumer):
|
|
|
104
108
|
):
|
|
105
109
|
"""This call will return list of Portal Logs."""
|
|
106
110
|
|
|
111
|
+
@json
|
|
112
|
+
@post("events/portal-logs")
|
|
113
|
+
def insert(self, portal_log_object: Body):
|
|
114
|
+
"""This call will create the Portal Log with the specified parameters."""
|
|
115
|
+
|
|
107
116
|
@returns.json
|
|
108
117
|
@http_get("events/portal-logs/last-login-statistics")
|
|
109
118
|
def last_login_statistics(
|
|
@@ -164,4 +173,35 @@ class _Events(Consumer):
|
|
|
164
173
|
@json
|
|
165
174
|
@patch("events/knowledge-events/{uid}")
|
|
166
175
|
def update(self, uid: str, knowledge_event_object: Body):
|
|
167
|
-
"""This call will update the Knowledge Event with the specified parameters."""
|
|
176
|
+
"""This call will update the Knowledge Event with the specified parameters."""
|
|
177
|
+
|
|
178
|
+
@headers({"Ocp-Apim-Subscription-Key": key})
|
|
179
|
+
@retry(max_attempts=20, when=status_5xx())
|
|
180
|
+
class _Parts_Search_Events(Consumer):
|
|
181
|
+
"""Inteface to Parts Search Events resource for the RockyRoad API."""
|
|
182
|
+
|
|
183
|
+
def __init__(self, Resource, *args, **kw):
|
|
184
|
+
self._base_url = Resource._base_url
|
|
185
|
+
super().__init__(base_url=Resource._base_url, *args, **kw)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
@returns.json
|
|
189
|
+
@http_get("events/parts-search-events")
|
|
190
|
+
def list(
|
|
191
|
+
self,
|
|
192
|
+
limit: Query = None,
|
|
193
|
+
order: Query = None,
|
|
194
|
+
company: Query = None,
|
|
195
|
+
subdomain: Query = None,
|
|
196
|
+
environment: Query = None,
|
|
197
|
+
user_uid: Query = None,
|
|
198
|
+
login_email: Query = None,
|
|
199
|
+
):
|
|
200
|
+
"""This call will return list of Parts Search Events."""
|
|
201
|
+
|
|
202
|
+
@json
|
|
203
|
+
@post("events/parts-search-events")
|
|
204
|
+
def insert(self, parts_search_event_object: Body):
|
|
205
|
+
"""This call will create the Parts Search Event with the specified parameters."""
|
|
206
|
+
|
|
207
|
+
|
rockyroad/modules/machines.py
CHANGED
|
@@ -88,6 +88,19 @@ class Machines(Consumer):
|
|
|
88
88
|
):
|
|
89
89
|
"""This call will return machine information for the machine or account specified or all machines if nothing is specified."""
|
|
90
90
|
|
|
91
|
+
@returns.json
|
|
92
|
+
@http_get("machines/v3")
|
|
93
|
+
def list_v3(
|
|
94
|
+
self,
|
|
95
|
+
exact_match: Query = None,
|
|
96
|
+
brand: Query = None,
|
|
97
|
+
model: Query = None,
|
|
98
|
+
machine_catalog_uid: Query = None,
|
|
99
|
+
serial: Query = None,
|
|
100
|
+
oracle_asset_id: Query = None,
|
|
101
|
+
):
|
|
102
|
+
"""This call will return machine information for the machine or account specified or all machines if nothing is specified."""
|
|
103
|
+
|
|
91
104
|
@returns.json
|
|
92
105
|
@http_get("machines/{uid}")
|
|
93
106
|
def get(
|
rockyroad/modules/parts.py
CHANGED
|
@@ -59,6 +59,15 @@ class Parts(Consumer):
|
|
|
59
59
|
):
|
|
60
60
|
"""This call will return the part numbers for the part(s) specified."""
|
|
61
61
|
|
|
62
|
+
@returns.json
|
|
63
|
+
@http_get("parts/part-numbers/validation")
|
|
64
|
+
def validate_part_numbers(
|
|
65
|
+
self,
|
|
66
|
+
partNumbers: Query = None,
|
|
67
|
+
brand: Query = None,
|
|
68
|
+
):
|
|
69
|
+
"""This call will return the validation results for the part numbers specified."""
|
|
70
|
+
|
|
62
71
|
@returns.json
|
|
63
72
|
@http_get("parts/search")
|
|
64
73
|
def parts_searcher(
|
|
@@ -67,6 +76,7 @@ class Parts(Consumer):
|
|
|
67
76
|
use_or: Query = None,
|
|
68
77
|
partNumber: Query = None,
|
|
69
78
|
partDescription: Query = None,
|
|
79
|
+
partNumberOrDescription: Query = None,
|
|
70
80
|
brand: Query = None,
|
|
71
81
|
):
|
|
72
82
|
"""This call will return detailed part information for the part(s) specified or all parts if nothing is specified."""
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
from .module_imports import get_key
|
|
2
|
+
from uplink.retry.when import status_5xx
|
|
3
|
+
from uplink import (
|
|
4
|
+
Consumer,
|
|
5
|
+
get as http_get,
|
|
6
|
+
returns,
|
|
7
|
+
headers,
|
|
8
|
+
retry,
|
|
9
|
+
Query,
|
|
10
|
+
delete,
|
|
11
|
+
post,
|
|
12
|
+
patch,
|
|
13
|
+
Body,
|
|
14
|
+
json,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
# Module configuration
|
|
18
|
+
USE_SERVICES_API = True
|
|
19
|
+
key = get_key(use_services_api=USE_SERVICES_API)
|
|
20
|
+
|
|
21
|
+
@headers({"Ocp-Apim-Subscription-Key": key})
|
|
22
|
+
@retry(max_attempts=20, when=status_5xx())
|
|
23
|
+
class Sharepoint(Consumer):
|
|
24
|
+
"""Inteface to Sharepoint resource for the RockyRoad API."""
|
|
25
|
+
|
|
26
|
+
def __init__(self, Resource, *args, **kw):
|
|
27
|
+
self._base_url = Resource._services_base_url if USE_SERVICES_API else Resource._base_url
|
|
28
|
+
super().__init__(base_url=self._base_url, *args, **kw)
|
|
29
|
+
|
|
30
|
+
def mappings(self):
|
|
31
|
+
return self.__Mappings(self)
|
|
32
|
+
|
|
33
|
+
def tree(self):
|
|
34
|
+
return self.__Tree(self)
|
|
35
|
+
|
|
36
|
+
@returns.json
|
|
37
|
+
@http_get("sharepoint/sites")
|
|
38
|
+
def list_sites(self):
|
|
39
|
+
"""This call will return list of sites."""
|
|
40
|
+
|
|
41
|
+
@returns.json
|
|
42
|
+
@http_get("sharepoint/files")
|
|
43
|
+
def list_files(self, site_name: Query = None, drive_name: Query = None, item_id: Query = None):
|
|
44
|
+
"""This call will return list of files for the specified site, drive, and item."""
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@headers({"Ocp-Apim-Subscription-Key": key})
|
|
48
|
+
@retry(max_attempts=20, when=status_5xx())
|
|
49
|
+
class __Mappings(Consumer):
|
|
50
|
+
"""Interface to Sharepoint Mappings resource for the RockyRoad API."""
|
|
51
|
+
|
|
52
|
+
def __init__(self, Resource, *args, **kw):
|
|
53
|
+
self._base_url = Resource._base_url
|
|
54
|
+
super().__init__(base_url=self._base_url, *args, **kw)
|
|
55
|
+
|
|
56
|
+
@returns.json
|
|
57
|
+
@http_get("sharepoint/mappings")
|
|
58
|
+
def list(
|
|
59
|
+
self,
|
|
60
|
+
machine_uid: Query = None,
|
|
61
|
+
machine_catalog_uid: Query = None,
|
|
62
|
+
):
|
|
63
|
+
"""This call will return list of mappings."""
|
|
64
|
+
|
|
65
|
+
@returns.json
|
|
66
|
+
@http_get("sharepoint/mappings/{uid}")
|
|
67
|
+
def get(self, uid: str):
|
|
68
|
+
"""This call will return a mapping for the specified uid."""
|
|
69
|
+
|
|
70
|
+
@delete("sharepoint/mappings/{uid}")
|
|
71
|
+
def delete(self, uid: str):
|
|
72
|
+
"""This call will delete a mapping for the specified uid."""
|
|
73
|
+
|
|
74
|
+
@returns.json
|
|
75
|
+
@json
|
|
76
|
+
@post("sharepoint/mappings")
|
|
77
|
+
def insert(self, mapping: Body):
|
|
78
|
+
"""This call will create a mapping with the specified parameters."""
|
|
79
|
+
|
|
80
|
+
@json
|
|
81
|
+
@patch("sharepoint/mappings/{uid}")
|
|
82
|
+
def update(self, uid: str, mapping: Body):
|
|
83
|
+
"""This call will update a mapping with the specified parameters."""
|
|
84
|
+
|
|
85
|
+
@headers({"Ocp-Apim-Subscription-Key": key})
|
|
86
|
+
@retry(max_attempts=20, when=status_5xx())
|
|
87
|
+
class __Tree(Consumer):
|
|
88
|
+
"""Interface to Sharepoint Tree resource for the RockyRoad API."""
|
|
89
|
+
|
|
90
|
+
def __init__(self, Resource, *args, **kw):
|
|
91
|
+
self._base_url = Resource._base_url
|
|
92
|
+
super().__init__(base_url=self._base_url, *args, **kw)
|
|
93
|
+
|
|
94
|
+
@returns.json
|
|
95
|
+
@http_get("sharepoint-tree/item-tree/{site_name}/{drive_name}")
|
|
96
|
+
def get_tree(self, site_name: str, drive_name: str, include_files: Query = None):
|
|
97
|
+
"""Get cached item tree for the specified site and drive."""
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
@returns.json
|
|
101
|
+
@http_get("sharepoint-tree/item-tree/{site_name}/{drive_name}/children/{parent_id}")
|
|
102
|
+
def get_item_children(self, site_name: str, drive_name: str, parent_id: str, include_files: Query = None):
|
|
103
|
+
"""Get cached item children for the specified site, drive, and parent id."""
|
|
104
|
+
|
|
105
|
+
@returns.json
|
|
106
|
+
@post("sharepoint-tree/item-tree/refresh")
|
|
107
|
+
def refresh_tree(self, body: Body):
|
|
108
|
+
"""Refresh cached item tree for the specified site and drive."""
|
|
109
|
+
|
|
110
|
+
@returns.json
|
|
111
|
+
@http_get("sharepoint-tree/item-tree/status")
|
|
112
|
+
def get_tree_status(self):
|
|
113
|
+
"""Get cached item tree status."""
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
@returns.json
|
|
117
|
+
@http_get("sharepoint-tree/item-tree/{site_name}/{drive_name}/metadata")
|
|
118
|
+
def get_tree_metadata(self, site_name: str, drive_name: str):
|
|
119
|
+
"""Get cached item tree metadata for the specified site and drive."""
|
|
120
|
+
|
|
121
|
+
@http_get("sharepoint-tree/health")
|
|
122
|
+
def get_health(self):
|
|
123
|
+
"""Get health of the sharepoint tree."""
|
|
124
|
+
|
|
125
|
+
@delete("sharepoint-tree/item-tree/{site_name}/{drive_name}")
|
|
126
|
+
def clear_cached_tree(self, site_name: str, drive_name: str):
|
|
127
|
+
"""Clear cached item tree for the specified site and drive."""
|
rockyroad/modules/warranties.py
CHANGED
|
@@ -33,6 +33,8 @@ class Warranties(Consumer):
|
|
|
33
33
|
|
|
34
34
|
def __init__(self, Resource, *args, **kw):
|
|
35
35
|
self._base_url = Resource._base_url
|
|
36
|
+
# Services API is required for warranty configurations
|
|
37
|
+
self._services_base_url = Resource._services_base_url
|
|
36
38
|
super().__init__(base_url=Resource._base_url, *args, **kw)
|
|
37
39
|
|
|
38
40
|
def registrations(self):
|
rockyroad/rockyroad.py
CHANGED
|
@@ -85,6 +85,7 @@ class DataServicesResource(object):
|
|
|
85
85
|
from .modules.business_information import Business_Information
|
|
86
86
|
from .modules.machine_passcodes import Machine_Passcodes
|
|
87
87
|
from .modules.documoto import Documoto
|
|
88
|
+
from .modules.sharepoint import Sharepoint
|
|
88
89
|
|
|
89
90
|
def apiInfo(self):
|
|
90
91
|
return self._API_Info(self)
|
|
@@ -216,6 +217,9 @@ class DataServicesResource(object):
|
|
|
216
217
|
def documoto(self):
|
|
217
218
|
return self.Documoto(self)
|
|
218
219
|
|
|
220
|
+
def sharepoint(self):
|
|
221
|
+
return self.Sharepoint(self)
|
|
222
|
+
|
|
219
223
|
|
|
220
224
|
class EmailServicesResource(object):
|
|
221
225
|
"""Interface to Email Services resources for the RockyRoad API."""
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
rockyroad/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
rockyroad/rockyroad.py,sha256=
|
|
2
|
+
rockyroad/rockyroad.py,sha256=ETekbgd6gPy8RDzz4xxPGu_yQ1Zqz5nOx_nBfGOyspI,39384
|
|
3
3
|
rockyroad/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
rockyroad/modules/accounts.py,sha256=jgZKHFSLEFSyystEUBkOvNGCUipQBbH172pKAEvAg50,6540
|
|
5
5
|
rockyroad/modules/alerts.py,sha256=pQuagcTvma-C2Gf7shM7Ty6Niny1juLkmc9EST26_eM,2141
|
|
@@ -11,7 +11,7 @@ rockyroad/modules/business_information.py,sha256=KI0SwfcAQ3GJyHyELNL01jBh5F1wUye
|
|
|
11
11
|
rockyroad/modules/calculators.py,sha256=yjhBUavlaeccani1FwxZwiCbpSgISRzPk0GwF9yBA64,567
|
|
12
12
|
rockyroad/modules/companies.py,sha256=BXnAVTuGOoW5Ei9LyOkcMr1A6iTbRhAsyIqVS2CdpHU,13192
|
|
13
13
|
rockyroad/modules/company_specified_info.py,sha256=wD8-qaQerpGqFfzUrTIR7ednHQJ2RboODGJnd-kKsh4,2313
|
|
14
|
-
rockyroad/modules/content_management.py,sha256=
|
|
14
|
+
rockyroad/modules/content_management.py,sha256=3miiVmSv7cUqUNG25H71Ir9nP6YLFUrMlK8gi4LhflU,4487
|
|
15
15
|
rockyroad/modules/dealer_parts.py,sha256=lWRSEMulimvb6lIRUvwHUS2snMFvRVbL3YONYf6CLJs,4432
|
|
16
16
|
rockyroad/modules/dealers.py,sha256=W1CYiGUmgJ28ZTC3-RhkT-bBtQuUC5-_qrHpX-OviJ0,5636
|
|
17
17
|
rockyroad/modules/docs.py,sha256=SqIN_Kan5FzcfbslH9yaIPVuP90qirFhFnWuXaS7_w4,777
|
|
@@ -19,7 +19,7 @@ rockyroad/modules/documoto.py,sha256=LHpKsj5ViBQbs4nk082Jxcj8O1xKzS1-VTdwhwjxsPE
|
|
|
19
19
|
rockyroad/modules/edap.py,sha256=7GnafVjDDRxy3G6RvBHHvetmgpz6VsavY053qnmivZU,1747
|
|
20
20
|
rockyroad/modules/emails.py,sha256=YZ-b-1F4r-p38pR9E_yNzTeCkQMmopN7I99_8ggcr4Y,618
|
|
21
21
|
rockyroad/modules/engines.py,sha256=72l1uFC0qB3Um4rasMFvDTN-fwPyz-mXdGoAursD0QA,3010
|
|
22
|
-
rockyroad/modules/events.py,sha256=
|
|
22
|
+
rockyroad/modules/events.py,sha256=UD234wA8-vGYyo4ToGGqHCgl6YW7Jqr-4v5_0eWaZRo,7056
|
|
23
23
|
rockyroad/modules/file_services.py,sha256=bgqX1HGd8Kzy_BcnDgExO0pGDpyp7N6d5AJ1hwNMN-E,2393
|
|
24
24
|
rockyroad/modules/financials.py,sha256=gGkbDPdogTr9JlmPsxTZLFBTXua1KV6qar7rAPAfZfk,2315
|
|
25
25
|
rockyroad/modules/generated_forms.py,sha256=ysArw79R6a50jTx7w5dO6IlOm9CrOOlnXbhuCebtH70,11587
|
|
@@ -29,17 +29,18 @@ rockyroad/modules/legacy.py,sha256=WSy9qrBPZPqPfmLhh7MHdALwm9PucIFSSuALhe-FWBQ,1
|
|
|
29
29
|
rockyroad/modules/machine_catalog.py,sha256=p-nEJ9YCnQO8zIssU3bEXPSu2BJJ6iaDJMARdzzTKeU,3826
|
|
30
30
|
rockyroad/modules/machine_logs.py,sha256=uVcB2d5NgMIFSauYgJ9_QyUE8K2iISYZ6MhI_F9-jFw,1394
|
|
31
31
|
rockyroad/modules/machine_passcodes.py,sha256=e4a_tMs-gxzb_NXSnq6CxrVx4t6G8Gbw4y8kHiN-jdk,2092
|
|
32
|
-
rockyroad/modules/machines.py,sha256=
|
|
32
|
+
rockyroad/modules/machines.py,sha256=CmpPRrYywRhGkMlDhSdUhwamnSTaW9G2kqJObckKIvo,6290
|
|
33
33
|
rockyroad/modules/module_imports.py,sha256=vWkjAbKKZJyP_M31KlvWmSENDKlIaD9OO1i5MOE0prg,610
|
|
34
34
|
rockyroad/modules/oracle_installed_base_assets.py,sha256=Kxci11rEcBDs0fuU4s3TNRK_GF_ZJ0Nk0ws85fkbErs,2844
|
|
35
35
|
rockyroad/modules/oracle_knowledge_management.py,sha256=P3nzpdlDtJQAbN7yW2BIDx6h5BHYp4yOm8fADrbKrNs,1873
|
|
36
36
|
rockyroad/modules/oracle_users.py,sha256=wtMcA70JKAQxj1j-izNjNbpZ_DPLN7_Nl59Ay9zXy0U,1726
|
|
37
|
-
rockyroad/modules/parts.py,sha256=
|
|
37
|
+
rockyroad/modules/parts.py,sha256=rpcZv0gpxhAqDa3SkkBgrCPtyisPMLyXyAtj_948zI0,5391
|
|
38
38
|
rockyroad/modules/portal_configurations.py,sha256=6mYcEK9VSuQi348m_1vzRmgS8hxbcJB7NiLQXnHoYgg,2673
|
|
39
39
|
rockyroad/modules/portal_users.py,sha256=h1IpyD02NtbZaVYy-mtyygBmJgvOHWzPRiJoQHyOj2k,1018
|
|
40
40
|
rockyroad/modules/predictive_maintenance.py,sha256=-lpt93hJC__oGmn8pdAHhwSmJVMTpDHhQLhOg8k-FlQ,695
|
|
41
41
|
rockyroad/modules/service_reports.py,sha256=AndnKc3xgs-iXQino60LD7LHvpc00NL1ZDPyODyNmSI,1539
|
|
42
42
|
rockyroad/modules/services.py,sha256=yAYJxMzYFgAw95uaAH4Y1FWsGz1LNN5s3pQDvQ88wFE,6420
|
|
43
|
+
rockyroad/modules/sharepoint.py,sha256=H_Oy2Q6ST1g-uX4spvlcYAf95zfuA-XO8UOKmtBvN_w,4510
|
|
43
44
|
rockyroad/modules/simple_forms.py,sha256=mHrGDjHu_t8RIxF0Av-WaIb6U_1gNXY3oNpENsQw2mU,3555
|
|
44
45
|
rockyroad/modules/subscriptions.py,sha256=eT2AdETZqqtx55CxF0sW92-D5z9Eww1m8TSnybt2L7g,4472
|
|
45
46
|
rockyroad/modules/summaries.py,sha256=-UYNUaSBZB4jVatIItAVEF0ac4rlO-4Fk5hvL60lofs,2709
|
|
@@ -49,7 +50,7 @@ rockyroad/modules/telematics.py,sha256=qaU_ndUFGM6CpzpXjGhWsgZOScjpkW4Ui3KZJUliK
|
|
|
49
50
|
rockyroad/modules/template.py,sha256=6RdWzHX3YZqdMQCU3IaCUgn1VWjS312Ok8pB8yDK790,2837
|
|
50
51
|
rockyroad/modules/users.py,sha256=5njKRWQi0zl_8jmX7MWZFrMp99xHXcZWjetEixokkDM,1959
|
|
51
52
|
rockyroad/modules/util_data.py,sha256=33b90TVhH75GME0IRxYYtasoWTj-8Sa7kB3npelmWGI,1288
|
|
52
|
-
rockyroad/modules/warranties.py,sha256=
|
|
53
|
+
rockyroad/modules/warranties.py,sha256=qkvzWLktrP6FbCheuMTxj9bKP3U0GRxhe5Xieb2_BBQ,9245
|
|
53
54
|
rockyroad/modules/warranty_assessments.py,sha256=1pIy-0Dk3n8VJ7qLNwZyQGwIO34vONdX-m-3jA_F9GE,797
|
|
54
55
|
rockyroad/modules/warranty_configurations.py,sha256=qQAvHjX5mDNbcAEDMNSWunKCeJBGtlD1B6buT_p9TIg,3937
|
|
55
56
|
rockyroad/modules/warranty_failure_modes.py,sha256=gGqiUjp9lYLvOBDuonR_nKagcdMxJivYHgu2hDi2-5Y,819
|
|
@@ -58,8 +59,8 @@ rockyroad/modules/warranty_pip.py,sha256=_viDrbdMOX07OirXCH-22bfeeid60IoIl-lqZr_
|
|
|
58
59
|
rockyroad/modules/warranty_rates.py,sha256=8oeDfg3boooBa3KPOWoR1JIm9yaX9Kslo4ZZnuuCDZA,1704
|
|
59
60
|
rockyroad/modules/warranty_registrations.py,sha256=ycTKiYoV9T_OTyKlwKSiLrDH7cOigSBzjIFI47GPhFA,1969
|
|
60
61
|
rockyroad/modules/warranty_rga.py,sha256=9rDQFE1YLw4dcpbt2yD3qIMxbvhUfoBNdpWl6KBRTPU,4714
|
|
61
|
-
rockyroad-0.0.
|
|
62
|
-
rockyroad-0.0.
|
|
63
|
-
rockyroad-0.0.
|
|
64
|
-
rockyroad-0.0.
|
|
65
|
-
rockyroad-0.0.
|
|
62
|
+
rockyroad-0.0.584.dist-info/licenses/LICENSE,sha256=2bm9uFabQZ3Ykb_SaSU_uUbAj2-htc6WJQmS_65qD00,1073
|
|
63
|
+
rockyroad-0.0.584.dist-info/METADATA,sha256=2dR6K-JkJcYeJDrAmNMfvbIeW_UO5ddaf9fLVD2Ma64,34189
|
|
64
|
+
rockyroad-0.0.584.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
65
|
+
rockyroad-0.0.584.dist-info/top_level.txt,sha256=2i16gCpB6x-hh1eUXH0KijIjfx08oEvLfV7eS9TL3Bs,10
|
|
66
|
+
rockyroad-0.0.584.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|