@whiplashmerch/whiplash-api-client 1.0.21 → 1.0.22
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/client.esm.js +31 -1
- package/dist/client.esm.js.map +1 -1
- package/dist/generated/Stats.d.ts +18 -0
- package/package.json +1 -1
|
@@ -26,6 +26,15 @@ export declare const getApiV2StatsSidekiqName: (client: HttpClient, name: number
|
|
|
26
26
|
* @request GET:/api/v2/stats/sidekiq/batch_status/{id}
|
|
27
27
|
*/
|
|
28
28
|
export declare const getApiV2StatsSidekiqBatchStatusId: (client: HttpClient, id: string, params?: RequestParams) => Promise<ApiV2EntitiesSidekiqBatchStatus>;
|
|
29
|
+
/**
|
|
30
|
+
* @description Get App Config info
|
|
31
|
+
*
|
|
32
|
+
* @tags stats
|
|
33
|
+
* @name GetApiV2StatsAppConfig
|
|
34
|
+
* @summary Retrieve App Config info
|
|
35
|
+
* @request GET:/api/v2/stats/app_config
|
|
36
|
+
*/
|
|
37
|
+
export declare const getApiV2StatsAppConfig: (client: HttpClient, params?: RequestParams) => Promise<void>;
|
|
29
38
|
/**
|
|
30
39
|
* @description Get sidekiq info
|
|
31
40
|
*
|
|
@@ -52,3 +61,12 @@ export declare const getApiV21StatsSidekiqName: (client: HttpClient, name: numbe
|
|
|
52
61
|
* @request GET:/api/v2.1/stats/sidekiq/batch_status/{id}
|
|
53
62
|
*/
|
|
54
63
|
export declare const getApiV21StatsSidekiqBatchStatusId: (client: HttpClient, id: string, params?: RequestParams) => Promise<ApiV2EntitiesSidekiqBatchStatus>;
|
|
64
|
+
/**
|
|
65
|
+
* @description Get App Config info
|
|
66
|
+
*
|
|
67
|
+
* @tags stats
|
|
68
|
+
* @name GetApiV21StatsAppConfig
|
|
69
|
+
* @summary Retrieve App Config info
|
|
70
|
+
* @request GET:/api/v2.1/stats/app_config
|
|
71
|
+
*/
|
|
72
|
+
export declare const getApiV21StatsAppConfig: (client: HttpClient, params?: RequestParams) => Promise<void>;
|