@whiplashmerch/whiplash-api-client 3.2.19 → 3.2.21
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 */
|
|
@@ -13230,6 +13244,11 @@ export interface GetApiV21TemplatesRenderTypeToFileTemplateTypeSlugResourceIdPar
|
|
|
13230
13244
|
* @format int32
|
|
13231
13245
|
*/
|
|
13232
13246
|
scancode_id?: number;
|
|
13247
|
+
/**
|
|
13248
|
+
* the template id to use for rendering - if not provided, will use the default template for the template type
|
|
13249
|
+
* @format int32
|
|
13250
|
+
*/
|
|
13251
|
+
template_id?: number;
|
|
13233
13252
|
resourceId: number;
|
|
13234
13253
|
templateTypeSlug: string;
|
|
13235
13254
|
}
|
|
@@ -13520,6 +13539,20 @@ export interface GetApiV2AccountsParams {
|
|
|
13520
13539
|
page_links?: boolean;
|
|
13521
13540
|
}
|
|
13522
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;
|
|
13523
13556
|
/** JSON search string like {"attribute_eq": "Term"} */
|
|
13524
13557
|
search?: string;
|
|
13525
13558
|
/** Comma-separated list of fields to include in the response */
|
|
@@ -16036,6 +16069,11 @@ export interface GetApiV2TemplatesRenderTypeToFileTemplateTypeSlugResourceIdPara
|
|
|
16036
16069
|
* @format int32
|
|
16037
16070
|
*/
|
|
16038
16071
|
scancode_id?: number;
|
|
16072
|
+
/**
|
|
16073
|
+
* the template id to use for rendering - if not provided, will use the default template for the template type
|
|
16074
|
+
* @format int32
|
|
16075
|
+
*/
|
|
16076
|
+
template_id?: number;
|
|
16039
16077
|
resourceId: number;
|
|
16040
16078
|
templateTypeSlug: string;
|
|
16041
16079
|
}
|