@whiplashmerch/whiplash-api-client 3.2.20 → 3.2.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.
|
@@ -10714,6 +10714,20 @@ export interface GetApiV21AccountsParams {
|
|
|
10714
10714
|
page_links?: boolean;
|
|
10715
10715
|
}
|
|
10716
10716
|
export interface GetApiV21AllocationsParams {
|
|
10717
|
+
/**
|
|
10718
|
+
* Page of results to fetch
|
|
10719
|
+
* @format int32
|
|
10720
|
+
*/
|
|
10721
|
+
page?: number;
|
|
10722
|
+
/**
|
|
10723
|
+
* Number of results to return per page
|
|
10724
|
+
* @format int32
|
|
10725
|
+
*/
|
|
10726
|
+
per_page?: number;
|
|
10727
|
+
/** Include total count of results */
|
|
10728
|
+
page_total?: boolean;
|
|
10729
|
+
/** Include prev/next links in response headers */
|
|
10730
|
+
page_links?: boolean;
|
|
10717
10731
|
/** JSON search string like {"attribute_eq": "Term"} */
|
|
10718
10732
|
search?: string;
|
|
10719
10733
|
/** Comma-separated list of fields to include in the response */
|
|
@@ -13525,6 +13539,20 @@ export interface GetApiV2AccountsParams {
|
|
|
13525
13539
|
page_links?: boolean;
|
|
13526
13540
|
}
|
|
13527
13541
|
export interface GetApiV2AllocationsParams {
|
|
13542
|
+
/**
|
|
13543
|
+
* Page of results to fetch
|
|
13544
|
+
* @format int32
|
|
13545
|
+
*/
|
|
13546
|
+
page?: number;
|
|
13547
|
+
/**
|
|
13548
|
+
* Number of results to return per page
|
|
13549
|
+
* @format int32
|
|
13550
|
+
*/
|
|
13551
|
+
per_page?: number;
|
|
13552
|
+
/** Include total count of results */
|
|
13553
|
+
page_total?: boolean;
|
|
13554
|
+
/** Include prev/next links in response headers */
|
|
13555
|
+
page_links?: boolean;
|
|
13528
13556
|
/** JSON search string like {"attribute_eq": "Term"} */
|
|
13529
13557
|
search?: string;
|
|
13530
13558
|
/** Comma-separated list of fields to include in the response */
|