@whiplashmerch/whiplash-api-client 3.1.4 → 3.1.5
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.
|
@@ -4440,6 +4440,8 @@ export interface ApiV2EntitiesRenderedTemplate {
|
|
|
4440
4440
|
rendered_content?: string;
|
|
4441
4441
|
/** Which resource type (Order, Package, etc) this template is associated with */
|
|
4442
4442
|
resource_type?: string;
|
|
4443
|
+
/** the template size */
|
|
4444
|
+
size?: string;
|
|
4443
4445
|
/** Template type key */
|
|
4444
4446
|
slug?: string;
|
|
4445
4447
|
template_type?: ApiV2EntitiesTemplateType;
|
|
@@ -4457,6 +4459,7 @@ export interface ApiV2EntitiesRenderedTemplate {
|
|
|
4457
4459
|
updated_at?: string;
|
|
4458
4460
|
/** URL to fetch the rendered template content */
|
|
4459
4461
|
url?: string;
|
|
4462
|
+
valid_sizes?: string[];
|
|
4460
4463
|
}
|
|
4461
4464
|
/** V2 */
|
|
4462
4465
|
export interface ApiV2EntitiesResult {
|
|
@@ -5280,6 +5283,8 @@ export interface ApiV2EntitiesTemplate {
|
|
|
5280
5283
|
id?: number;
|
|
5281
5284
|
/** Name of the template */
|
|
5282
5285
|
name?: string | null;
|
|
5286
|
+
/** the template size */
|
|
5287
|
+
size?: string | null;
|
|
5283
5288
|
/** the template type slug */
|
|
5284
5289
|
slug?: string;
|
|
5285
5290
|
template_type?: ApiV2EntitiesTemplateType;
|
|
@@ -5295,6 +5300,7 @@ export interface ApiV2EntitiesTemplate {
|
|
|
5295
5300
|
updated_at?: string;
|
|
5296
5301
|
/** URL to fetch the rendered template content */
|
|
5297
5302
|
url?: string;
|
|
5303
|
+
valid_sizes?: string[];
|
|
5298
5304
|
}
|
|
5299
5305
|
/** V2 */
|
|
5300
5306
|
export interface ApiV2EntitiesTemplateType {
|
|
@@ -10452,6 +10458,8 @@ export interface ApiV21EntitiesTemplate {
|
|
|
10452
10458
|
id?: number;
|
|
10453
10459
|
/** Name of the template */
|
|
10454
10460
|
name?: string | null;
|
|
10461
|
+
/** the template size */
|
|
10462
|
+
size?: string | null;
|
|
10455
10463
|
/** the template type slug */
|
|
10456
10464
|
slug?: string;
|
|
10457
10465
|
/**
|
|
@@ -10466,6 +10474,7 @@ export interface ApiV21EntitiesTemplate {
|
|
|
10466
10474
|
updated_at?: string;
|
|
10467
10475
|
/** URL to fetch the rendered template content */
|
|
10468
10476
|
url?: string;
|
|
10477
|
+
valid_sizes?: string[];
|
|
10469
10478
|
}
|
|
10470
10479
|
/** V3 */
|
|
10471
10480
|
export interface ApiV21EntitiesTemplateType {
|
|
@@ -2492,6 +2492,8 @@ export interface ApiV2EntitiesTemplate {
|
|
|
2492
2492
|
id?: number;
|
|
2493
2493
|
/** Name of the template */
|
|
2494
2494
|
name?: string | null;
|
|
2495
|
+
/** the template size */
|
|
2496
|
+
size?: string | null;
|
|
2495
2497
|
/** the template type slug */
|
|
2496
2498
|
slug?: string;
|
|
2497
2499
|
template_type?: ApiV2EntitiesTemplateType;
|
|
@@ -2507,6 +2509,7 @@ export interface ApiV2EntitiesTemplate {
|
|
|
2507
2509
|
updated_at?: string;
|
|
2508
2510
|
/** URL to fetch the rendered template content */
|
|
2509
2511
|
url?: string;
|
|
2512
|
+
valid_sizes?: string[];
|
|
2510
2513
|
}
|
|
2511
2514
|
|
|
2512
2515
|
/** V2 */
|
|
@@ -4905,6 +4908,8 @@ export interface ApiV21EntitiesTemplate {
|
|
|
4905
4908
|
id?: number;
|
|
4906
4909
|
/** Name of the template */
|
|
4907
4910
|
name?: string | null;
|
|
4911
|
+
/** the template size */
|
|
4912
|
+
size?: string | null;
|
|
4908
4913
|
/** the template type slug */
|
|
4909
4914
|
slug?: string;
|
|
4910
4915
|
/**
|
|
@@ -4919,6 +4924,7 @@ export interface ApiV21EntitiesTemplate {
|
|
|
4919
4924
|
updated_at?: string;
|
|
4920
4925
|
/** URL to fetch the rendered template content */
|
|
4921
4926
|
url?: string;
|
|
4927
|
+
valid_sizes?: string[];
|
|
4922
4928
|
}
|
|
4923
4929
|
|
|
4924
4930
|
/** V3 */
|