@djangocfg/api 2.1.18 → 2.1.19

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.
package/dist/auth.cjs CHANGED
@@ -1214,7 +1214,11 @@ var CfgAccountsEndpoints = class {
1214
1214
  return response;
1215
1215
  }
1216
1216
  /**
1217
- * Return all registered URLs.
1217
+ * Return registered URLs (API endpoints by default). Query Parameters:
1218
+ * filter (str): Filter URLs by prefix - omit or 'api': Only API endpoints
1219
+ * (/api/*) - DEFAULT - 'all': All URLs (admin, api, cfg, etc.) - 'admin':
1220
+ * Only admin endpoints (/admin/*) - 'cfg': Only django-cfg endpoints
1221
+ * (/cfg/*)
1218
1222
  */
1219
1223
  async urlsRetrieve() {
1220
1224
  const response = await this.client.request("GET", "/cfg/endpoints/urls/");