You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
/* generated using openapi-typescript-codegen -- do not edit */
2
+
/* istanbul ignore file */
3
+
/* tslint:disable */
4
+
/* eslint-disable */
5
+
/**
6
+
* The production currency (3-letter code) used to determine currency in which the prices will be calculated. The active user production currency will be used by default. The format is compliant with ISO 4217 standard.
Copy file name to clipboardExpand all lines: src/services/CatalogV2Service.ts
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -303,6 +303,7 @@ export class CatalogV2Service {
303
303
* @param id Product ID.
304
304
* @param sellingRegionName Specifies the region production currency that the product prices will be calculated in
305
305
* @param currency The currency (3-letter code) used to determine currency in which the prices will be displayed. The store currency will be used by default. The format is compliant with ISO 4217 standard.
306
+
* @param productionCurrency The production currency (3-letter code) used to determine currency in which the prices will be calculated. The active user production currency will be used by default. The format is compliant with ISO 4217 standard.
306
307
* @param xPfLanguage Use this to specify which locale you would like to use in the responses, for some endpoints this can affect translations.
307
308
*
308
309
* @returns any OK
@@ -312,6 +313,7 @@ export class CatalogV2Service {
312
313
id: number,
313
314
sellingRegionName?: string,
314
315
currency?: string,
316
+
productionCurrency?: string,
315
317
xPfLanguage?: string,
316
318
): CancelablePromise<any>{
317
319
returnthis.httpRequest.request({
@@ -326,6 +328,7 @@ export class CatalogV2Service {
326
328
query: {
327
329
'selling_region_name': sellingRegionName,
328
330
'currency': currency,
331
+
'production_currency': productionCurrency,
329
332
},
330
333
errors: {
331
334
404: `Not found`,
@@ -338,6 +341,7 @@ export class CatalogV2Service {
338
341
* @param id Variant ID
339
342
* @param sellingRegionName Specifies the region production currency that the product prices will be calculated in
340
343
* @param currency The currency (3-letter code) used to determine currency in which the prices will be displayed. The store currency will be used by default. The format is compliant with ISO 4217 standard.
344
+
* @param productionCurrency The production currency (3-letter code) used to determine currency in which the prices will be calculated. The active user production currency will be used by default. The format is compliant with ISO 4217 standard.
341
345
* @param xPfLanguage Use this to specify which locale you would like to use in the responses, for some endpoints this can affect translations.
342
346
*
343
347
* @returns any OK
@@ -347,6 +351,7 @@ export class CatalogV2Service {
347
351
id: number,
348
352
sellingRegionName?: string,
349
353
currency?: string,
354
+
productionCurrency?: string,
350
355
xPfLanguage?: string,
351
356
): CancelablePromise<any>{
352
357
returnthis.httpRequest.request({
@@ -361,6 +366,7 @@ export class CatalogV2Service {
361
366
query: {
362
367
'selling_region_name': sellingRegionName,
363
368
'currency': currency,
369
+
'production_currency': productionCurrency,
364
370
},
365
371
errors: {
366
372
404: `Not found`,
@@ -486,6 +492,7 @@ export class CatalogV2Service {
486
492
*
487
493
* @param id Product ID.
488
494
* @param placements One or more placement idenitifiers used to filter in mockup styles that match a given placement. The complete list of placements can be found [here](https://developers.printful.com/docs/#tag/Common/Placements).
495
+
* @param defaultMockupStyles
489
496
* @param sellingRegionName Only returns the products that can be sold in the specified region. If is set to 'all' returns each region availability for specified product.
490
497
* @param offset Result set offset
491
498
* @param limit Number of items per page (max 100)
@@ -497,6 +504,7 @@ export class CatalogV2Service {
0 commit comments