@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.mjs CHANGED
@@ -1170,7 +1170,11 @@ var CfgAccountsEndpoints = class {
1170
1170
  return response;
1171
1171
  }
1172
1172
  /**
1173
- * Return all registered URLs.
1173
+ * Return registered URLs (API endpoints by default). Query Parameters:
1174
+ * filter (str): Filter URLs by prefix - omit or 'api': Only API endpoints
1175
+ * (/api/*) - DEFAULT - 'all': All URLs (admin, api, cfg, etc.) - 'admin':
1176
+ * Only admin endpoints (/admin/*) - 'cfg': Only django-cfg endpoints
1177
+ * (/cfg/*)
1174
1178
  */
1175
1179
  async urlsRetrieve() {
1176
1180
  const response = await this.client.request("GET", "/cfg/endpoints/urls/");