@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.d.cts CHANGED
@@ -3081,7 +3081,11 @@ declare class CfgAccountsEndpoints {
3081
3081
  */
3082
3082
  drfRetrieve(): Promise<EndpointsStatus$1>;
3083
3083
  /**
3084
- * Return all registered URLs.
3084
+ * Return registered URLs (API endpoints by default). Query Parameters:
3085
+ * filter (str): Filter URLs by prefix - omit or 'api': Only API endpoints
3086
+ * (/api/*) - DEFAULT - 'all': All URLs (admin, api, cfg, etc.) - 'admin':
3087
+ * Only admin endpoints (/admin/*) - 'cfg': Only django-cfg endpoints
3088
+ * (/cfg/*)
3085
3089
  */
3086
3090
  urlsRetrieve(): Promise<URLsList$1[]>;
3087
3091
  /**
package/dist/index.d.ts CHANGED
@@ -3081,7 +3081,11 @@ declare class CfgAccountsEndpoints {
3081
3081
  */
3082
3082
  drfRetrieve(): Promise<EndpointsStatus$1>;
3083
3083
  /**
3084
- * Return all registered URLs.
3084
+ * Return registered URLs (API endpoints by default). Query Parameters:
3085
+ * filter (str): Filter URLs by prefix - omit or 'api': Only API endpoints
3086
+ * (/api/*) - DEFAULT - 'all': All URLs (admin, api, cfg, etc.) - 'admin':
3087
+ * Only admin endpoints (/admin/*) - 'cfg': Only django-cfg endpoints
3088
+ * (/cfg/*)
3085
3089
  */
3086
3090
  urlsRetrieve(): Promise<URLsList$1[]>;
3087
3091
  /**
package/dist/index.mjs CHANGED
@@ -1538,7 +1538,11 @@ var CfgAccountsEndpoints = class {
1538
1538
  return response;
1539
1539
  }
1540
1540
  /**
1541
- * Return all registered URLs.
1541
+ * Return registered URLs (API endpoints by default). Query Parameters:
1542
+ * filter (str): Filter URLs by prefix - omit or 'api': Only API endpoints
1543
+ * (/api/*) - DEFAULT - 'all': All URLs (admin, api, cfg, etc.) - 'admin':
1544
+ * Only admin endpoints (/admin/*) - 'cfg': Only django-cfg endpoints
1545
+ * (/cfg/*)
1542
1546
  */
1543
1547
  async urlsRetrieve() {
1544
1548
  const response = await this.client.request("GET", "/cfg/endpoints/urls/");