+1
-1
src/atpasser/uri/__init__.py
+1
-1
src/atpasser/uri/__init__.py
···
19
19
queryAsText (str): URL-encoded query string.
20
20
path (list): Parsed path segments as list.
21
21
pathAsText (str): URL-encoded path string.
22
-
authority (atpasser.handle.Handle | atpasser.did.DID | None): Repository authority as handle or DID.
22
+
authority (atpasser.uri.Handle | atpasser.uri.DID | None): Repository authority as handle or DID.
23
23
authorityAsText (str): Authority as text string.
24
24
"""
25
25
+2
-2
src/atpasser/uri/restricted.py
+2
-2
src/atpasser/uri/restricted.py
···
14
14
like posts, profiles, and other user-generated content.
15
15
16
16
Attributes:
17
-
collection (atpasser.nsid.NSID): The record collection identified by NSID.
18
-
rkey (atpasser.rKey.RKey): The record key identifying a specific record instance.
17
+
collection (atpasser.uri.NSID): The record collection identified by NSID.
18
+
rkey (atpasser.uri.RKey): The record key identifying a specific record instance.
19
19
"""
20
20
21
21
def __init__(self, uri: str) -> None: