@@ -92,6 +92,8 @@ def fetch(
9292 bundle_id : str = ...,
9393 app_id : str = ...,
9494 app_guid : str = ...,
95+ content_id : str = ...,
96+ content_guid : str = ...,
9597 ) -> Iterable [Package ]:
9698 """
9799 Fetch all records matching the specified conditions.
@@ -110,8 +112,14 @@ def fetch(
110112 The unique identifier of the bundle this package is associated with.
111113 app_id: str, not required
112114 The numerical identifier of the application this package is associated with.
115+ This field is deprecated and has been renamed to content_id.
113116 app_guid: str, not required
114117 The unique identifier of the application this package is associated with.
118+ This field is deprecated and has been renamed to content_guid.
119+ content_id: str, not required
120+ The numerical identifier of the content item this package is associated with.
121+ content_guid: str, not required
122+ The unique identifier of the content item this package is associated with.
115123
116124 Returns
117125 -------
@@ -130,6 +138,8 @@ def find_by(
130138 bundle_id : str = ...,
131139 app_id : str = ...,
132140 app_guid : str = ...,
141+ content_id : str = ...,
142+ content_guid : str = ...,
133143 ) -> Package | None :
134144 """
135145 Find the first record matching the specified conditions.
@@ -150,8 +160,14 @@ def find_by(
150160 The unique identifier of the bundle this package is associated with.
151161 app_id: str, not required
152162 The numerical identifier of the application this package is associated with.
163+ This field is deprecated and has been renamed to content_id.
153164 app_guid: str, not required
154165 The unique identifier of the application this package is associated with.
166+ This field is deprecated and has been renamed to content_guid.
167+ content_id: str, not required
168+ The numerical identifier of the content item this package is associated with.
169+ content_guid: str, not required
170+ The unique identifier of the content item this package is associated with.
155171
156172 Returns
157173 -------
0 commit comments