@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/index.cjs CHANGED
@@ -1874,7 +1874,11 @@ var CfgAccountsEndpoints = class {
1874
1874
  return response;
1875
1875
  }
1876
1876
  /**
1877
- * Return all registered URLs.
1877
+ * Return registered URLs (API endpoints by default). Query Parameters:
1878
+ * filter (str): Filter URLs by prefix - omit or 'api': Only API endpoints
1879
+ * (/api/*) - DEFAULT - 'all': All URLs (admin, api, cfg, etc.) - 'admin':
1880
+ * Only admin endpoints (/admin/*) - 'cfg': Only django-cfg endpoints
1881
+ * (/cfg/*)
1878
1882
  */
1879
1883
  async urlsRetrieve() {
1880
1884
  const response = await this.client.request("GET", "/cfg/endpoints/urls/");