@teemill/product-catalog 1.39.0 → 1.40.0

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/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
5
+ * The version of the OpenAPI document: 1.40.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -424,188 +424,276 @@ export type CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeE
424
424
  /**
425
425
  *
426
426
  * @export
427
- * @interface CreateProductRequest
427
+ * @interface CreateBundleProduct
428
428
  */
429
- export interface CreateProductRequest {
429
+ export interface CreateBundleProduct {
430
+ /**
431
+ * Product title
432
+ * @type {string}
433
+ * @memberof CreateBundleProduct
434
+ */
435
+ 'title'?: string;
436
+ /**
437
+ * Product description
438
+ * @type {string}
439
+ * @memberof CreateBundleProduct
440
+ */
441
+ 'description'?: string;
442
+ /**
443
+ * Whether the product is enabled upon creation.
444
+ * @type {boolean}
445
+ * @memberof CreateBundleProduct
446
+ */
447
+ 'enabled'?: boolean;
448
+ /**
449
+ * A custom URL slug for the product. This must be unique for each product on the project.
450
+ * @type {string}
451
+ * @memberof CreateBundleProduct
452
+ */
453
+ 'slug'?: string;
454
+ /**
455
+ *
456
+ * @type {UpdateProductsRequestProductsInnerSeoMetadata}
457
+ * @memberof CreateBundleProduct
458
+ */
459
+ 'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
460
+ /**
461
+ * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
462
+ * @type {string}
463
+ * @memberof CreateBundleProduct
464
+ */
465
+ 'targetSearchPhrase'?: string;
466
+ /**
467
+ * Synonyms for the target search phrase. **Note:** This field requires the website integration
468
+ * @type {Array<string>}
469
+ * @memberof CreateBundleProduct
470
+ */
471
+ 'targetSearchPhraseSynonyms'?: Array<string>;
472
+ /**
473
+ * Additional product tags used for searching and filtering.
474
+ * @type {Array<string>}
475
+ * @memberof CreateBundleProduct
476
+ */
477
+ 'tags'?: Array<string>;
478
+ /**
479
+ * Internal tags used for internal searching and filtering.
480
+ * @type {Array<string>}
481
+ * @memberof CreateBundleProduct
482
+ */
483
+ 'internalTags'?: Array<string>;
484
+ /**
485
+ * Images to attach to the product. For example, photos of models using/wearing the product.
486
+ * @type {Array<CreateProductImagesInner>}
487
+ * @memberof CreateBundleProduct
488
+ */
489
+ 'images'?: Array<CreateProductImagesInner>;
490
+ /**
491
+ * Videos to attach to the product.
492
+ * @type {Array<CreateProductVideosInner>}
493
+ * @memberof CreateBundleProduct
494
+ */
495
+ 'videos'?: Array<CreateProductVideosInner>;
496
+ /**
497
+ * Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
498
+ * @type {Array<CreateProductAdditionalFilesInner>}
499
+ * @memberof CreateBundleProduct
500
+ */
501
+ 'additionalFiles'?: Array<CreateProductAdditionalFilesInner>;
502
+ /**
503
+ * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
504
+ * @type {number}
505
+ * @memberof CreateBundleProduct
506
+ */
507
+ 'shopifyId'?: number;
508
+ /**
509
+ * Key/value pairs that can be used to store additional information about the product
510
+ * @type {Array<MetaField>}
511
+ * @memberof CreateBundleProduct
512
+ */
513
+ 'metafields'?: Array<MetaField>;
514
+ /**
515
+ * A list of product uuids to include in this bundle
516
+ * @type {Array<string>}
517
+ * @memberof CreateBundleProduct
518
+ */
519
+ 'bundleItems': Array<string>;
520
+ /**
521
+ *
522
+ * @type {Price}
523
+ * @memberof CreateBundleProduct
524
+ */
525
+ 'retailPrice'?: Price;
526
+ /**
527
+ *
528
+ * @type {Price}
529
+ * @memberof CreateBundleProduct
530
+ */
531
+ 'salePrice'?: Price;
532
+ /**
533
+ *
534
+ * @type {Price}
535
+ * @memberof CreateBundleProduct
536
+ */
537
+ 'price'?: Price;
538
+ }
539
+ /**
540
+ *
541
+ * @export
542
+ * @interface CreateProduct
543
+ */
544
+ export interface CreateProduct {
430
545
  /**
431
546
  * Reference to the product in the GFN catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
432
547
  * @type {string}
433
- * @memberof CreateProductRequest
548
+ * @memberof CreateProduct
434
549
  */
435
550
  'gfnProductRef': string;
436
551
  /**
437
552
  * Product title
438
553
  * @type {string}
439
- * @memberof CreateProductRequest
554
+ * @memberof CreateProduct
440
555
  */
441
556
  'title'?: string;
442
557
  /**
443
558
  * Product description
444
559
  * @type {string}
445
- * @memberof CreateProductRequest
560
+ * @memberof CreateProduct
446
561
  */
447
562
  'description'?: string;
448
563
  /**
449
564
  * Whether the product is enabled upon creation.
450
565
  * @type {boolean}
451
- * @memberof CreateProductRequest
566
+ * @memberof CreateProduct
452
567
  */
453
568
  'enabled'?: boolean;
454
569
  /**
455
570
  * A custom URL slug for the product. This must be unique for each product on the project.
456
571
  * @type {string}
457
- * @memberof CreateProductRequest
572
+ * @memberof CreateProduct
458
573
  */
459
574
  'slug'?: string;
460
575
  /**
461
576
  *
462
- * @type {CreateProductRequestSeoMetadata}
463
- * @memberof CreateProductRequest
577
+ * @type {UpdateProductsRequestProductsInnerSeoMetadata}
578
+ * @memberof CreateProduct
464
579
  */
465
- 'seoMetadata'?: CreateProductRequestSeoMetadata;
580
+ 'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
466
581
  /**
467
582
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
468
583
  * @type {string}
469
- * @memberof CreateProductRequest
584
+ * @memberof CreateProduct
470
585
  */
471
586
  'targetSearchPhrase'?: string;
472
587
  /**
473
588
  * Synonyms for the target search phrase. **Note:** This field requires the website integration
474
589
  * @type {Array<string>}
475
- * @memberof CreateProductRequest
590
+ * @memberof CreateProduct
476
591
  */
477
592
  'targetSearchPhraseSynonyms'?: Array<string>;
478
593
  /**
479
594
  * Additional product tags used for searching and filtering.
480
595
  * @type {Array<string>}
481
- * @memberof CreateProductRequest
596
+ * @memberof CreateProduct
482
597
  */
483
598
  'tags'?: Array<string>;
484
599
  /**
485
600
  * Internal tags used for internal searching and filtering.
486
601
  * @type {Array<string>}
487
- * @memberof CreateProductRequest
602
+ * @memberof CreateProduct
488
603
  */
489
604
  'internalTags'?: Array<string>;
490
605
  /**
491
606
  * Variants
492
607
  * @type {Array<CreateProductVariant>}
493
- * @memberof CreateProductRequest
608
+ * @memberof CreateProduct
494
609
  */
495
610
  'variants': Array<CreateProductVariant>;
496
611
  /**
497
612
  * Images to attach to the product. For example, photos of models using/wearing the product.
498
- * @type {Array<CreateProductRequestImagesInner>}
499
- * @memberof CreateProductRequest
613
+ * @type {Array<CreateProductImagesInner>}
614
+ * @memberof CreateProduct
500
615
  */
501
- 'images'?: Array<CreateProductRequestImagesInner>;
616
+ 'images'?: Array<CreateProductImagesInner>;
502
617
  /**
503
618
  * Videos to attach to the product.
504
- * @type {Array<CreateProductRequestVideosInner>}
505
- * @memberof CreateProductRequest
619
+ * @type {Array<CreateProductVideosInner>}
620
+ * @memberof CreateProduct
506
621
  */
507
- 'videos'?: Array<CreateProductRequestVideosInner>;
622
+ 'videos'?: Array<CreateProductVideosInner>;
508
623
  /**
509
624
  * Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
510
- * @type {Array<CreateProductRequestAdditionalFilesInner>}
511
- * @memberof CreateProductRequest
625
+ * @type {Array<CreateProductAdditionalFilesInner>}
626
+ * @memberof CreateProduct
512
627
  */
513
- 'additionalFiles'?: Array<CreateProductRequestAdditionalFilesInner>;
628
+ 'additionalFiles'?: Array<CreateProductAdditionalFilesInner>;
514
629
  /**
515
630
  * List of application set UUIDs to associate with this product
516
631
  * @type {Array<string>}
517
- * @memberof CreateProductRequest
632
+ * @memberof CreateProduct
518
633
  */
519
634
  'applicationSets'?: Array<string>;
520
635
  /**
521
636
  * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
522
637
  * @type {boolean}
523
- * @memberof CreateProductRequest
638
+ * @memberof CreateProduct
524
639
  */
525
640
  'includeInDataFeeds'?: boolean;
526
641
  /**
527
642
  * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
528
643
  * @type {number}
529
- * @memberof CreateProductRequest
644
+ * @memberof CreateProduct
530
645
  */
531
646
  'shopifyId'?: number;
532
647
  /**
533
648
  * Key/value pairs that can be used to store additional information about the product
534
649
  * @type {Array<MetaField>}
535
- * @memberof CreateProductRequest
650
+ * @memberof CreateProduct
536
651
  */
537
652
  'metafields'?: Array<MetaField>;
538
653
  /**
539
654
  * A JSON object that defines the personalization template for the product.
540
655
  * @type {string}
541
- * @memberof CreateProductRequest
656
+ * @memberof CreateProduct
542
657
  */
543
658
  'personalizationTemplate'?: string;
544
659
  }
545
660
  /**
546
661
  *
547
662
  * @export
548
- * @interface CreateProductRequestAdditionalFilesInner
663
+ * @interface CreateProductAdditionalFilesInner
549
664
  */
550
- export interface CreateProductRequestAdditionalFilesInner {
665
+ export interface CreateProductAdditionalFilesInner {
551
666
  /**
552
667
  * Publicly available file URL.
553
668
  * @type {string}
554
- * @memberof CreateProductRequestAdditionalFilesInner
669
+ * @memberof CreateProductAdditionalFilesInner
555
670
  */
556
671
  'src'?: string;
557
672
  }
558
673
  /**
559
674
  *
560
675
  * @export
561
- * @interface CreateProductRequestImagesInner
676
+ * @interface CreateProductImagesInner
562
677
  */
563
- export interface CreateProductRequestImagesInner {
678
+ export interface CreateProductImagesInner {
564
679
  /**
565
680
  * Publicly available file URL.
566
681
  * @type {string}
567
- * @memberof CreateProductRequestImagesInner
682
+ * @memberof CreateProductImagesInner
568
683
  */
569
684
  'src'?: string;
570
685
  /**
571
686
  * Image type.
572
687
  * @type {string}
573
- * @memberof CreateProductRequestImagesInner
688
+ * @memberof CreateProductImagesInner
574
689
  */
575
690
  'type'?: string | null;
576
691
  }
577
692
  /**
578
- *
693
+ * @type CreateProductRequest
579
694
  * @export
580
- * @interface CreateProductRequestSeoMetadata
581
695
  */
582
- export interface CreateProductRequestSeoMetadata {
583
- /**
584
- * Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
585
- * @type {string}
586
- * @memberof CreateProductRequestSeoMetadata
587
- */
588
- 'title'?: string;
589
- /**
590
- * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
591
- * @type {string}
592
- * @memberof CreateProductRequestSeoMetadata
593
- */
594
- 'description'?: string | null;
595
- }
596
- /**
597
- *
598
- * @export
599
- * @interface CreateProductRequestVideosInner
600
- */
601
- export interface CreateProductRequestVideosInner {
602
- /**
603
- * Publicly available file URL.
604
- * @type {string}
605
- * @memberof CreateProductRequestVideosInner
606
- */
607
- 'src'?: string;
608
- }
696
+ export type CreateProductRequest = CreateBundleProduct | CreateProduct;
609
697
  /**
610
698
  *
611
699
  * @export
@@ -655,7 +743,7 @@ export interface CreateProductVariant {
655
743
  */
656
744
  'applicationSets'?: Array<string>;
657
745
  /**
658
- * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after it\'s been uploaded it via the Barcodes module.
746
+ * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
659
747
  * @type {string}
660
748
  * @memberof CreateProductVariant
661
749
  */
@@ -680,6 +768,19 @@ export interface CreateProductVariantImagesInner {
680
768
  */
681
769
  'src'?: string;
682
770
  }
771
+ /**
772
+ *
773
+ * @export
774
+ * @interface CreateProductVideosInner
775
+ */
776
+ export interface CreateProductVideosInner {
777
+ /**
778
+ * Publicly available file URL.
779
+ * @type {string}
780
+ * @memberof CreateProductVideosInner
781
+ */
782
+ 'src'?: string;
783
+ }
683
784
  /**
684
785
  * Image description
685
786
  * @export
@@ -930,6 +1031,12 @@ export interface Product {
930
1031
  * @memberof Product
931
1032
  */
932
1033
  'variants'?: Array<Variant>;
1034
+ /**
1035
+ * Products in the bundle.
1036
+ * @type {Array<Product>}
1037
+ * @memberof Product
1038
+ */
1039
+ 'bundleItems'?: Array<Product>;
933
1040
  /**
934
1041
  * Additional files attached to the product.
935
1042
  * @type {Array<ProductAdditionalFilesInner>}
@@ -1299,10 +1406,10 @@ export interface UpdateProductRequest {
1299
1406
  'slug'?: string;
1300
1407
  /**
1301
1408
  *
1302
- * @type {CreateProductRequestSeoMetadata}
1409
+ * @type {UpdateProductsRequestProductsInnerSeoMetadata}
1303
1410
  * @memberof UpdateProductRequest
1304
1411
  */
1305
- 'seoMetadata'?: CreateProductRequestSeoMetadata;
1412
+ 'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
1306
1413
  /**
1307
1414
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
1308
1415
  * @type {string}
@@ -1333,6 +1440,12 @@ export interface UpdateProductRequest {
1333
1440
  * @memberof UpdateProductRequest
1334
1441
  */
1335
1442
  'variants'?: Array<CreateProductVariant>;
1443
+ /**
1444
+ * A list of product uuids to be in this bundle. Only valid if the product is already a bundle.
1445
+ * @type {Array<string>}
1446
+ * @memberof UpdateProductRequest
1447
+ */
1448
+ 'bundleItems'?: Array<string>;
1336
1449
  /**
1337
1450
  * Images to attach to the product. For example, photos of models using/wearing the product.
1338
1451
  * @type {Array<ImageFile>}
@@ -1427,10 +1540,10 @@ export interface UpdateProductsRequestProductsInner {
1427
1540
  'enabled'?: boolean;
1428
1541
  /**
1429
1542
  *
1430
- * @type {CreateProductRequestSeoMetadata}
1543
+ * @type {UpdateProductsRequestProductsInnerSeoMetadata}
1431
1544
  * @memberof UpdateProductsRequestProductsInner
1432
1545
  */
1433
- 'seoMetadata'?: CreateProductRequestSeoMetadata;
1546
+ 'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
1434
1547
  /**
1435
1548
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
1436
1549
  * @type {string}
@@ -1468,6 +1581,25 @@ export interface UpdateProductsRequestProductsInner {
1468
1581
  */
1469
1582
  'shopifyId'?: number;
1470
1583
  }
1584
+ /**
1585
+ *
1586
+ * @export
1587
+ * @interface UpdateProductsRequestProductsInnerSeoMetadata
1588
+ */
1589
+ export interface UpdateProductsRequestProductsInnerSeoMetadata {
1590
+ /**
1591
+ * Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
1592
+ * @type {string}
1593
+ * @memberof UpdateProductsRequestProductsInnerSeoMetadata
1594
+ */
1595
+ 'title'?: string;
1596
+ /**
1597
+ * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
1598
+ * @type {string}
1599
+ * @memberof UpdateProductsRequestProductsInnerSeoMetadata
1600
+ */
1601
+ 'description'?: string | null;
1602
+ }
1471
1603
  /**
1472
1604
  *
1473
1605
  * @export
@@ -1493,7 +1625,7 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
1493
1625
  */
1494
1626
  'salePrice'?: UpdateProductsRequestProductsInnerVariantsInnerSalePrice;
1495
1627
  /**
1496
- * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after it\'s been uploaded it via the Barcodes module.
1628
+ * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
1497
1629
  * @type {string}
1498
1630
  * @memberof UpdateProductsRequestProductsInnerVariantsInner
1499
1631
  */
@@ -1672,7 +1804,7 @@ export interface Variant {
1672
1804
  */
1673
1805
  'applications'?: Array<Application>;
1674
1806
  /**
1675
- * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after it\'s been uploaded it via the Barcodes module.
1807
+ * The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
1676
1808
  * @type {string}
1677
1809
  * @memberof Variant
1678
1810
  */
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.39.0
8
+ * The version of the OpenAPI document: 1.40.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
5
+ * The version of the OpenAPI document: 1.40.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.39.0
8
+ * The version of the OpenAPI document: 1.40.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
5
+ * The version of the OpenAPI document: 1.40.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -62,4 +62,4 @@ export declare const toPathString: (url: URL) => string;
62
62
  *
63
63
  * @export
64
64
  */
65
- export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
65
+ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.39.0
8
+ * The version of the OpenAPI document: 1.40.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
5
+ * The version of the OpenAPI document: 1.40.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.39.0
8
+ * The version of the OpenAPI document: 1.40.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@ class Configuration {
23
23
  this.accessToken = param.accessToken;
24
24
  this.basePath = param.basePath;
25
25
  this.serverIndex = param.serverIndex;
26
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/1.39.0/typescript-axios" }) }, param.baseOptions);
26
+ this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
27
27
  this.formDataCtor = param.formDataCtor;
28
28
  }
29
29
  /**