@teemill/product-catalog 1.39.0 → 1.41.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/README.md +2 -2
- package/api.ts +234 -77
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +2 -3
- package/dist/api.d.ts +233 -77
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +233 -77
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +2 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.41.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
|
|
427
|
+
* @interface CreateBundleProduct
|
|
428
428
|
*/
|
|
429
|
-
export interface
|
|
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 | null;
|
|
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
|
|
548
|
+
* @memberof CreateProduct
|
|
434
549
|
*/
|
|
435
550
|
'gfnProductRef': string;
|
|
436
551
|
/**
|
|
437
552
|
* Product title
|
|
438
553
|
* @type {string}
|
|
439
|
-
* @memberof
|
|
554
|
+
* @memberof CreateProduct
|
|
440
555
|
*/
|
|
441
556
|
'title'?: string;
|
|
442
557
|
/**
|
|
443
558
|
* Product description
|
|
444
559
|
* @type {string}
|
|
445
|
-
* @memberof
|
|
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
|
|
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
|
|
572
|
+
* @memberof CreateProduct
|
|
458
573
|
*/
|
|
459
574
|
'slug'?: string;
|
|
460
575
|
/**
|
|
461
576
|
*
|
|
462
|
-
* @type {
|
|
463
|
-
* @memberof
|
|
577
|
+
* @type {UpdateProductsRequestProductsInnerSeoMetadata}
|
|
578
|
+
* @memberof CreateProduct
|
|
464
579
|
*/
|
|
465
|
-
'seoMetadata'?:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
602
|
+
* @memberof CreateProduct
|
|
488
603
|
*/
|
|
489
604
|
'internalTags'?: Array<string>;
|
|
490
605
|
/**
|
|
491
606
|
* Variants
|
|
492
607
|
* @type {Array<CreateProductVariant>}
|
|
493
|
-
* @memberof
|
|
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<
|
|
499
|
-
* @memberof
|
|
613
|
+
* @type {Array<CreateProductImagesInner>}
|
|
614
|
+
* @memberof CreateProduct
|
|
500
615
|
*/
|
|
501
|
-
'images'?: Array<
|
|
616
|
+
'images'?: Array<CreateProductImagesInner>;
|
|
502
617
|
/**
|
|
503
618
|
* Videos to attach to the product.
|
|
504
|
-
* @type {Array<
|
|
505
|
-
* @memberof
|
|
619
|
+
* @type {Array<CreateProductVideosInner>}
|
|
620
|
+
* @memberof CreateProduct
|
|
506
621
|
*/
|
|
507
|
-
'videos'?: Array<
|
|
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<
|
|
511
|
-
* @memberof
|
|
625
|
+
* @type {Array<CreateProductAdditionalFilesInner>}
|
|
626
|
+
* @memberof CreateProduct
|
|
512
627
|
*/
|
|
513
|
-
'additionalFiles'?: Array<
|
|
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
|
|
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
|
|
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
|
|
644
|
+
* @memberof CreateProduct
|
|
530
645
|
*/
|
|
531
|
-
'shopifyId'?: number;
|
|
646
|
+
'shopifyId'?: number | null;
|
|
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
|
|
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
|
|
656
|
+
* @memberof CreateProduct
|
|
542
657
|
*/
|
|
543
658
|
'personalizationTemplate'?: string;
|
|
544
659
|
}
|
|
545
660
|
/**
|
|
546
661
|
*
|
|
547
662
|
* @export
|
|
548
|
-
* @interface
|
|
663
|
+
* @interface CreateProductAdditionalFilesInner
|
|
549
664
|
*/
|
|
550
|
-
export interface
|
|
665
|
+
export interface CreateProductAdditionalFilesInner {
|
|
551
666
|
/**
|
|
552
667
|
* Publicly available file URL.
|
|
553
668
|
* @type {string}
|
|
554
|
-
* @memberof
|
|
669
|
+
* @memberof CreateProductAdditionalFilesInner
|
|
555
670
|
*/
|
|
556
671
|
'src'?: string;
|
|
557
672
|
}
|
|
558
673
|
/**
|
|
559
674
|
*
|
|
560
675
|
* @export
|
|
561
|
-
* @interface
|
|
676
|
+
* @interface CreateProductImagesInner
|
|
562
677
|
*/
|
|
563
|
-
export interface
|
|
678
|
+
export interface CreateProductImagesInner {
|
|
564
679
|
/**
|
|
565
680
|
* Publicly available file URL.
|
|
566
681
|
* @type {string}
|
|
567
|
-
* @memberof
|
|
682
|
+
* @memberof CreateProductImagesInner
|
|
568
683
|
*/
|
|
569
684
|
'src'?: string;
|
|
570
685
|
/**
|
|
571
686
|
* Image type.
|
|
572
687
|
* @type {string}
|
|
573
|
-
* @memberof
|
|
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
|
|
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
|
|
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
|
*/
|
|
@@ -665,7 +753,7 @@ export interface CreateProductVariant {
|
|
|
665
753
|
* @type {number}
|
|
666
754
|
* @memberof CreateProductVariant
|
|
667
755
|
*/
|
|
668
|
-
'shopifyId'?: number;
|
|
756
|
+
'shopifyId'?: number | null;
|
|
669
757
|
}
|
|
670
758
|
/**
|
|
671
759
|
*
|
|
@@ -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,24 @@ 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>;
|
|
1040
|
+
/**
|
|
1041
|
+
*
|
|
1042
|
+
* @type {Price}
|
|
1043
|
+
* @memberof Product
|
|
1044
|
+
*/
|
|
1045
|
+
'retailPrice'?: Price;
|
|
1046
|
+
/**
|
|
1047
|
+
*
|
|
1048
|
+
* @type {Price}
|
|
1049
|
+
* @memberof Product
|
|
1050
|
+
*/
|
|
1051
|
+
'salePrice'?: Price;
|
|
933
1052
|
/**
|
|
934
1053
|
* Additional files attached to the product.
|
|
935
1054
|
* @type {Array<ProductAdditionalFilesInner>}
|
|
@@ -989,7 +1108,7 @@ export interface Product {
|
|
|
989
1108
|
* @type {number}
|
|
990
1109
|
* @memberof Product
|
|
991
1110
|
*/
|
|
992
|
-
'shopifyId'?: number;
|
|
1111
|
+
'shopifyId'?: number | null;
|
|
993
1112
|
/**
|
|
994
1113
|
*
|
|
995
1114
|
* @type {ProductWarehouseProduct}
|
|
@@ -1299,10 +1418,10 @@ export interface UpdateProductRequest {
|
|
|
1299
1418
|
'slug'?: string;
|
|
1300
1419
|
/**
|
|
1301
1420
|
*
|
|
1302
|
-
* @type {
|
|
1421
|
+
* @type {UpdateProductsRequestProductsInnerSeoMetadata}
|
|
1303
1422
|
* @memberof UpdateProductRequest
|
|
1304
1423
|
*/
|
|
1305
|
-
'seoMetadata'?:
|
|
1424
|
+
'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
|
|
1306
1425
|
/**
|
|
1307
1426
|
* 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
1427
|
* @type {string}
|
|
@@ -1333,6 +1452,24 @@ export interface UpdateProductRequest {
|
|
|
1333
1452
|
* @memberof UpdateProductRequest
|
|
1334
1453
|
*/
|
|
1335
1454
|
'variants'?: Array<CreateProductVariant>;
|
|
1455
|
+
/**
|
|
1456
|
+
* A list of product uuids to be in this bundle. Only valid if the product is already a bundle.
|
|
1457
|
+
* @type {Array<string>}
|
|
1458
|
+
* @memberof UpdateProductRequest
|
|
1459
|
+
*/
|
|
1460
|
+
'bundleItems'?: Array<string>;
|
|
1461
|
+
/**
|
|
1462
|
+
*
|
|
1463
|
+
* @type {Price}
|
|
1464
|
+
* @memberof UpdateProductRequest
|
|
1465
|
+
*/
|
|
1466
|
+
'retailPrice'?: Price;
|
|
1467
|
+
/**
|
|
1468
|
+
*
|
|
1469
|
+
* @type {Price}
|
|
1470
|
+
* @memberof UpdateProductRequest
|
|
1471
|
+
*/
|
|
1472
|
+
'salePrice'?: Price;
|
|
1336
1473
|
/**
|
|
1337
1474
|
* Images to attach to the product. For example, photos of models using/wearing the product.
|
|
1338
1475
|
* @type {Array<ImageFile>}
|
|
@@ -1427,10 +1564,10 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1427
1564
|
'enabled'?: boolean;
|
|
1428
1565
|
/**
|
|
1429
1566
|
*
|
|
1430
|
-
* @type {
|
|
1567
|
+
* @type {UpdateProductsRequestProductsInnerSeoMetadata}
|
|
1431
1568
|
* @memberof UpdateProductsRequestProductsInner
|
|
1432
1569
|
*/
|
|
1433
|
-
'seoMetadata'?:
|
|
1570
|
+
'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
|
|
1434
1571
|
/**
|
|
1435
1572
|
* 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
1573
|
* @type {string}
|
|
@@ -1468,6 +1605,25 @@ export interface UpdateProductsRequestProductsInner {
|
|
|
1468
1605
|
*/
|
|
1469
1606
|
'shopifyId'?: number;
|
|
1470
1607
|
}
|
|
1608
|
+
/**
|
|
1609
|
+
*
|
|
1610
|
+
* @export
|
|
1611
|
+
* @interface UpdateProductsRequestProductsInnerSeoMetadata
|
|
1612
|
+
*/
|
|
1613
|
+
export interface UpdateProductsRequestProductsInnerSeoMetadata {
|
|
1614
|
+
/**
|
|
1615
|
+
* Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
|
|
1616
|
+
* @type {string}
|
|
1617
|
+
* @memberof UpdateProductsRequestProductsInnerSeoMetadata
|
|
1618
|
+
*/
|
|
1619
|
+
'title'?: string;
|
|
1620
|
+
/**
|
|
1621
|
+
* Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
|
|
1622
|
+
* @type {string}
|
|
1623
|
+
* @memberof UpdateProductsRequestProductsInnerSeoMetadata
|
|
1624
|
+
*/
|
|
1625
|
+
'description'?: string | null;
|
|
1626
|
+
}
|
|
1471
1627
|
/**
|
|
1472
1628
|
*
|
|
1473
1629
|
* @export
|
|
@@ -1493,7 +1649,7 @@ export interface UpdateProductsRequestProductsInnerVariantsInner {
|
|
|
1493
1649
|
*/
|
|
1494
1650
|
'salePrice'?: UpdateProductsRequestProductsInnerVariantsInnerSalePrice;
|
|
1495
1651
|
/**
|
|
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
|
|
1652
|
+
* 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
1653
|
* @type {string}
|
|
1498
1654
|
* @memberof UpdateProductsRequestProductsInnerVariantsInner
|
|
1499
1655
|
*/
|
|
@@ -1672,7 +1828,7 @@ export interface Variant {
|
|
|
1672
1828
|
*/
|
|
1673
1829
|
'applications'?: Array<Application>;
|
|
1674
1830
|
/**
|
|
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
|
|
1831
|
+
* 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
1832
|
* @type {string}
|
|
1677
1833
|
* @memberof Variant
|
|
1678
1834
|
*/
|
|
@@ -1689,7 +1845,7 @@ export interface Variant {
|
|
|
1689
1845
|
* @type {number}
|
|
1690
1846
|
* @memberof Variant
|
|
1691
1847
|
*/
|
|
1692
|
-
'shopifyId'?: number;
|
|
1848
|
+
'shopifyId'?: number | null;
|
|
1693
1849
|
/**
|
|
1694
1850
|
* Key/value pairs that can be used to store additional information about the variant
|
|
1695
1851
|
* @type {Array<MetaField>}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.41.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.
|
|
5
|
+
* The version of the OpenAPI document: 1.41.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
|
|
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/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.41.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -20,7 +20,7 @@ export class Configuration {
|
|
|
20
20
|
this.accessToken = param.accessToken;
|
|
21
21
|
this.basePath = param.basePath;
|
|
22
22
|
this.serverIndex = param.serverIndex;
|
|
23
|
-
this.baseOptions = Object.assign({ headers: Object.assign(
|
|
23
|
+
this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
|
|
24
24
|
this.formDataCtor = param.formDataCtor;
|
|
25
25
|
}
|
|
26
26
|
/**
|
package/dist/esm/index.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.41.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.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.
|
|
5
|
+
* The version of the OpenAPI document: 1.41.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.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.
|
|
8
|
+
* The version of the OpenAPI document: 1.41.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* 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.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|