@vendure/admin-ui 2.0.0-next.11 → 2.0.0-next.12
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/catalog/components/generate-product-variants/generate-product-variants.component.d.ts +3 -3
- package/catalog/components/option-value-input/option-value-input.component.d.ts +21 -9
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +10 -3
- package/core/common/generated-types.d.ts +242 -127
- package/core/common/utilities/configurable-operation-utils.d.ts +4 -2
- package/core/common/version.d.ts +1 -1
- package/core/data/definitions/order-definitions.d.ts +2 -0
- package/core/data/definitions/product-definitions.d.ts +1 -0
- package/core/data/providers/order-data.service.d.ts +1 -0
- package/core/data/providers/product-data.service.d.ts +1 -0
- package/esm2020/catalog/components/generate-product-variants/generate-product-variants.component.mjs +12 -4
- package/esm2020/catalog/components/option-value-input/option-value-input.component.mjs +65 -11
- package/esm2020/catalog/components/product-variants-editor/product-variants-editor.component.mjs +107 -12
- package/esm2020/core/common/generated-types.mjs +2 -1
- package/esm2020/core/common/introspection-result.mjs +191 -255
- package/esm2020/core/common/utilities/configurable-operation-utils.mjs +11 -8
- package/esm2020/core/common/version.mjs +2 -2
- package/esm2020/core/data/definitions/order-definitions.mjs +39 -25
- package/esm2020/core/data/definitions/product-definitions.mjs +743 -735
- package/esm2020/core/data/providers/order-data.service.mjs +7 -2
- package/esm2020/core/data/providers/product-data.service.mjs +5 -2
- package/esm2020/order/components/fulfill-order-dialog/fulfill-order-dialog.component.mjs +6 -2
- package/esm2020/order/components/fulfillment-detail/fulfillment-detail.component.mjs +8 -17
- package/esm2020/order/components/line-fulfillment/line-fulfillment.component.mjs +7 -21
- package/esm2020/order/components/order-detail/order-detail.component.mjs +48 -20
- package/esm2020/order/components/order-payment-card/order-payment-card.component.mjs +2 -2
- package/fesm2015/vendure-admin-ui-catalog.mjs +186 -22
- package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-core.mjs +937 -967
- package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2015/vendure-admin-ui-order.mjs +68 -58
- package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-catalog.mjs +179 -22
- package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-core.mjs +937 -967
- package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2020/vendure-admin-ui-order.mjs +66 -57
- package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
- package/package.json +2 -2
- package/static/i18n-messages/cs.json +2 -1
- package/static/i18n-messages/de.json +2 -1
- package/static/i18n-messages/en.json +3 -1
- package/static/i18n-messages/es.json +2 -1
- package/static/i18n-messages/fr.json +2 -1
- package/static/i18n-messages/it.json +2 -1
- package/static/i18n-messages/pl.json +2 -1
- package/static/i18n-messages/pt_BR.json +2 -1
- package/static/i18n-messages/pt_PT.json +2 -1
- package/static/i18n-messages/ru.json +2 -1
- package/static/i18n-messages/uk.json +2 -1
- package/static/i18n-messages/zh_Hans.json +2 -1
- package/static/i18n-messages/zh_Hant.json +2 -1
- package/static/styles/global/_utilities.scss +1 -0
- package/static/theme.min.css +1 -1
|
@@ -559,739 +559,747 @@ class ClientDataService {
|
|
|
559
559
|
}
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
-
const ASSET_FRAGMENT = gql `
|
|
563
|
-
fragment Asset on Asset {
|
|
564
|
-
id
|
|
565
|
-
createdAt
|
|
566
|
-
updatedAt
|
|
567
|
-
name
|
|
568
|
-
fileSize
|
|
569
|
-
mimeType
|
|
570
|
-
type
|
|
571
|
-
preview
|
|
572
|
-
source
|
|
573
|
-
width
|
|
574
|
-
height
|
|
575
|
-
focalPoint {
|
|
576
|
-
x
|
|
577
|
-
y
|
|
578
|
-
}
|
|
579
|
-
}
|
|
562
|
+
const ASSET_FRAGMENT = gql `
|
|
563
|
+
fragment Asset on Asset {
|
|
564
|
+
id
|
|
565
|
+
createdAt
|
|
566
|
+
updatedAt
|
|
567
|
+
name
|
|
568
|
+
fileSize
|
|
569
|
+
mimeType
|
|
570
|
+
type
|
|
571
|
+
preview
|
|
572
|
+
source
|
|
573
|
+
width
|
|
574
|
+
height
|
|
575
|
+
focalPoint {
|
|
576
|
+
x
|
|
577
|
+
y
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
580
|
`;
|
|
581
|
-
const TAG_FRAGMENT = gql `
|
|
582
|
-
fragment Tag on Tag {
|
|
583
|
-
id
|
|
584
|
-
value
|
|
585
|
-
}
|
|
581
|
+
const TAG_FRAGMENT = gql `
|
|
582
|
+
fragment Tag on Tag {
|
|
583
|
+
id
|
|
584
|
+
value
|
|
585
|
+
}
|
|
586
586
|
`;
|
|
587
|
-
const PRODUCT_OPTION_GROUP_FRAGMENT = gql `
|
|
588
|
-
fragment ProductOptionGroup on ProductOptionGroup {
|
|
589
|
-
id
|
|
590
|
-
createdAt
|
|
591
|
-
updatedAt
|
|
592
|
-
code
|
|
593
|
-
languageCode
|
|
594
|
-
name
|
|
595
|
-
translations {
|
|
596
|
-
id
|
|
597
|
-
languageCode
|
|
598
|
-
name
|
|
599
|
-
}
|
|
600
|
-
}
|
|
587
|
+
const PRODUCT_OPTION_GROUP_FRAGMENT = gql `
|
|
588
|
+
fragment ProductOptionGroup on ProductOptionGroup {
|
|
589
|
+
id
|
|
590
|
+
createdAt
|
|
591
|
+
updatedAt
|
|
592
|
+
code
|
|
593
|
+
languageCode
|
|
594
|
+
name
|
|
595
|
+
translations {
|
|
596
|
+
id
|
|
597
|
+
languageCode
|
|
598
|
+
name
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
601
|
`;
|
|
602
|
-
const PRODUCT_OPTION_FRAGMENT = gql `
|
|
603
|
-
fragment ProductOption on ProductOption {
|
|
604
|
-
id
|
|
605
|
-
createdAt
|
|
606
|
-
updatedAt
|
|
607
|
-
code
|
|
608
|
-
languageCode
|
|
609
|
-
name
|
|
610
|
-
groupId
|
|
611
|
-
translations {
|
|
612
|
-
id
|
|
613
|
-
languageCode
|
|
614
|
-
name
|
|
615
|
-
}
|
|
616
|
-
}
|
|
602
|
+
const PRODUCT_OPTION_FRAGMENT = gql `
|
|
603
|
+
fragment ProductOption on ProductOption {
|
|
604
|
+
id
|
|
605
|
+
createdAt
|
|
606
|
+
updatedAt
|
|
607
|
+
code
|
|
608
|
+
languageCode
|
|
609
|
+
name
|
|
610
|
+
groupId
|
|
611
|
+
translations {
|
|
612
|
+
id
|
|
613
|
+
languageCode
|
|
614
|
+
name
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
617
|
`;
|
|
618
|
-
const PRODUCT_VARIANT_FRAGMENT = gql `
|
|
619
|
-
fragment ProductVariant on ProductVariant {
|
|
620
|
-
id
|
|
621
|
-
createdAt
|
|
622
|
-
updatedAt
|
|
623
|
-
enabled
|
|
624
|
-
languageCode
|
|
625
|
-
name
|
|
626
|
-
price
|
|
627
|
-
currencyCode
|
|
628
|
-
priceWithTax
|
|
629
|
-
stockOnHand
|
|
630
|
-
stockAllocated
|
|
631
|
-
trackInventory
|
|
632
|
-
outOfStockThreshold
|
|
633
|
-
useGlobalOutOfStockThreshold
|
|
634
|
-
taxRateApplied {
|
|
635
|
-
id
|
|
636
|
-
name
|
|
637
|
-
value
|
|
638
|
-
}
|
|
639
|
-
taxCategory {
|
|
640
|
-
id
|
|
641
|
-
name
|
|
642
|
-
}
|
|
643
|
-
sku
|
|
644
|
-
options {
|
|
645
|
-
...ProductOption
|
|
646
|
-
}
|
|
647
|
-
facetValues {
|
|
648
|
-
id
|
|
649
|
-
code
|
|
650
|
-
name
|
|
651
|
-
facet {
|
|
652
|
-
id
|
|
653
|
-
name
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
featuredAsset {
|
|
657
|
-
...Asset
|
|
658
|
-
}
|
|
659
|
-
assets {
|
|
660
|
-
...Asset
|
|
661
|
-
}
|
|
662
|
-
translations {
|
|
663
|
-
id
|
|
664
|
-
languageCode
|
|
665
|
-
name
|
|
666
|
-
}
|
|
667
|
-
channels {
|
|
668
|
-
id
|
|
669
|
-
code
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
${PRODUCT_OPTION_FRAGMENT}
|
|
673
|
-
${ASSET_FRAGMENT}
|
|
618
|
+
const PRODUCT_VARIANT_FRAGMENT = gql `
|
|
619
|
+
fragment ProductVariant on ProductVariant {
|
|
620
|
+
id
|
|
621
|
+
createdAt
|
|
622
|
+
updatedAt
|
|
623
|
+
enabled
|
|
624
|
+
languageCode
|
|
625
|
+
name
|
|
626
|
+
price
|
|
627
|
+
currencyCode
|
|
628
|
+
priceWithTax
|
|
629
|
+
stockOnHand
|
|
630
|
+
stockAllocated
|
|
631
|
+
trackInventory
|
|
632
|
+
outOfStockThreshold
|
|
633
|
+
useGlobalOutOfStockThreshold
|
|
634
|
+
taxRateApplied {
|
|
635
|
+
id
|
|
636
|
+
name
|
|
637
|
+
value
|
|
638
|
+
}
|
|
639
|
+
taxCategory {
|
|
640
|
+
id
|
|
641
|
+
name
|
|
642
|
+
}
|
|
643
|
+
sku
|
|
644
|
+
options {
|
|
645
|
+
...ProductOption
|
|
646
|
+
}
|
|
647
|
+
facetValues {
|
|
648
|
+
id
|
|
649
|
+
code
|
|
650
|
+
name
|
|
651
|
+
facet {
|
|
652
|
+
id
|
|
653
|
+
name
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
featuredAsset {
|
|
657
|
+
...Asset
|
|
658
|
+
}
|
|
659
|
+
assets {
|
|
660
|
+
...Asset
|
|
661
|
+
}
|
|
662
|
+
translations {
|
|
663
|
+
id
|
|
664
|
+
languageCode
|
|
665
|
+
name
|
|
666
|
+
}
|
|
667
|
+
channels {
|
|
668
|
+
id
|
|
669
|
+
code
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
${PRODUCT_OPTION_FRAGMENT}
|
|
673
|
+
${ASSET_FRAGMENT}
|
|
674
674
|
`;
|
|
675
|
-
const PRODUCT_DETAIL_FRAGMENT = gql `
|
|
676
|
-
fragment ProductDetail on Product {
|
|
677
|
-
id
|
|
678
|
-
createdAt
|
|
679
|
-
updatedAt
|
|
680
|
-
enabled
|
|
681
|
-
languageCode
|
|
682
|
-
name
|
|
683
|
-
slug
|
|
684
|
-
description
|
|
685
|
-
featuredAsset {
|
|
686
|
-
...Asset
|
|
687
|
-
}
|
|
688
|
-
assets {
|
|
689
|
-
...Asset
|
|
690
|
-
}
|
|
691
|
-
translations {
|
|
692
|
-
id
|
|
693
|
-
languageCode
|
|
694
|
-
name
|
|
695
|
-
slug
|
|
696
|
-
description
|
|
697
|
-
}
|
|
698
|
-
optionGroups {
|
|
699
|
-
...ProductOptionGroup
|
|
700
|
-
}
|
|
701
|
-
facetValues {
|
|
702
|
-
id
|
|
703
|
-
code
|
|
704
|
-
name
|
|
705
|
-
facet {
|
|
706
|
-
id
|
|
707
|
-
name
|
|
708
|
-
}
|
|
709
|
-
}
|
|
710
|
-
channels {
|
|
711
|
-
id
|
|
712
|
-
code
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
${PRODUCT_OPTION_GROUP_FRAGMENT}
|
|
716
|
-
${ASSET_FRAGMENT}
|
|
675
|
+
const PRODUCT_DETAIL_FRAGMENT = gql `
|
|
676
|
+
fragment ProductDetail on Product {
|
|
677
|
+
id
|
|
678
|
+
createdAt
|
|
679
|
+
updatedAt
|
|
680
|
+
enabled
|
|
681
|
+
languageCode
|
|
682
|
+
name
|
|
683
|
+
slug
|
|
684
|
+
description
|
|
685
|
+
featuredAsset {
|
|
686
|
+
...Asset
|
|
687
|
+
}
|
|
688
|
+
assets {
|
|
689
|
+
...Asset
|
|
690
|
+
}
|
|
691
|
+
translations {
|
|
692
|
+
id
|
|
693
|
+
languageCode
|
|
694
|
+
name
|
|
695
|
+
slug
|
|
696
|
+
description
|
|
697
|
+
}
|
|
698
|
+
optionGroups {
|
|
699
|
+
...ProductOptionGroup
|
|
700
|
+
}
|
|
701
|
+
facetValues {
|
|
702
|
+
id
|
|
703
|
+
code
|
|
704
|
+
name
|
|
705
|
+
facet {
|
|
706
|
+
id
|
|
707
|
+
name
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
channels {
|
|
711
|
+
id
|
|
712
|
+
code
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
${PRODUCT_OPTION_GROUP_FRAGMENT}
|
|
716
|
+
${ASSET_FRAGMENT}
|
|
717
717
|
`;
|
|
718
|
-
const PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT = gql `
|
|
719
|
-
fragment ProductOptionGroupWithOptions on ProductOptionGroup {
|
|
720
|
-
id
|
|
721
|
-
createdAt
|
|
722
|
-
updatedAt
|
|
723
|
-
languageCode
|
|
724
|
-
code
|
|
725
|
-
name
|
|
726
|
-
translations {
|
|
727
|
-
id
|
|
728
|
-
name
|
|
729
|
-
}
|
|
730
|
-
options {
|
|
731
|
-
id
|
|
732
|
-
languageCode
|
|
733
|
-
name
|
|
734
|
-
code
|
|
735
|
-
translations {
|
|
736
|
-
name
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
}
|
|
718
|
+
const PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT = gql `
|
|
719
|
+
fragment ProductOptionGroupWithOptions on ProductOptionGroup {
|
|
720
|
+
id
|
|
721
|
+
createdAt
|
|
722
|
+
updatedAt
|
|
723
|
+
languageCode
|
|
724
|
+
code
|
|
725
|
+
name
|
|
726
|
+
translations {
|
|
727
|
+
id
|
|
728
|
+
name
|
|
729
|
+
}
|
|
730
|
+
options {
|
|
731
|
+
id
|
|
732
|
+
languageCode
|
|
733
|
+
name
|
|
734
|
+
code
|
|
735
|
+
translations {
|
|
736
|
+
name
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
740
|
`;
|
|
741
|
-
const UPDATE_PRODUCT = gql `
|
|
742
|
-
mutation UpdateProduct($input: UpdateProductInput!, $variantListOptions: ProductVariantListOptions) {
|
|
743
|
-
updateProduct(input: $input) {
|
|
744
|
-
...ProductDetail
|
|
745
|
-
variantList(options: $variantListOptions) {
|
|
746
|
-
items {
|
|
747
|
-
...ProductVariant
|
|
748
|
-
}
|
|
749
|
-
totalItems
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
}
|
|
753
|
-
${PRODUCT_DETAIL_FRAGMENT}
|
|
754
|
-
${PRODUCT_VARIANT_FRAGMENT}
|
|
741
|
+
const UPDATE_PRODUCT = gql `
|
|
742
|
+
mutation UpdateProduct($input: UpdateProductInput!, $variantListOptions: ProductVariantListOptions) {
|
|
743
|
+
updateProduct(input: $input) {
|
|
744
|
+
...ProductDetail
|
|
745
|
+
variantList(options: $variantListOptions) {
|
|
746
|
+
items {
|
|
747
|
+
...ProductVariant
|
|
748
|
+
}
|
|
749
|
+
totalItems
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
${PRODUCT_DETAIL_FRAGMENT}
|
|
754
|
+
${PRODUCT_VARIANT_FRAGMENT}
|
|
755
755
|
`;
|
|
756
|
-
const CREATE_PRODUCT = gql `
|
|
757
|
-
mutation CreateProduct($input: CreateProductInput!, $variantListOptions: ProductVariantListOptions) {
|
|
758
|
-
createProduct(input: $input) {
|
|
759
|
-
...ProductDetail
|
|
760
|
-
variantList(options: $variantListOptions) {
|
|
761
|
-
items {
|
|
762
|
-
...ProductVariant
|
|
763
|
-
}
|
|
764
|
-
totalItems
|
|
765
|
-
}
|
|
766
|
-
}
|
|
767
|
-
}
|
|
768
|
-
${PRODUCT_DETAIL_FRAGMENT}
|
|
769
|
-
${PRODUCT_VARIANT_FRAGMENT}
|
|
756
|
+
const CREATE_PRODUCT = gql `
|
|
757
|
+
mutation CreateProduct($input: CreateProductInput!, $variantListOptions: ProductVariantListOptions) {
|
|
758
|
+
createProduct(input: $input) {
|
|
759
|
+
...ProductDetail
|
|
760
|
+
variantList(options: $variantListOptions) {
|
|
761
|
+
items {
|
|
762
|
+
...ProductVariant
|
|
763
|
+
}
|
|
764
|
+
totalItems
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
${PRODUCT_DETAIL_FRAGMENT}
|
|
769
|
+
${PRODUCT_VARIANT_FRAGMENT}
|
|
770
770
|
`;
|
|
771
|
-
const DELETE_PRODUCT = gql `
|
|
772
|
-
mutation DeleteProduct($id: ID!) {
|
|
773
|
-
deleteProduct(id: $id) {
|
|
774
|
-
result
|
|
775
|
-
message
|
|
776
|
-
}
|
|
777
|
-
}
|
|
771
|
+
const DELETE_PRODUCT = gql `
|
|
772
|
+
mutation DeleteProduct($id: ID!) {
|
|
773
|
+
deleteProduct(id: $id) {
|
|
774
|
+
result
|
|
775
|
+
message
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
778
|
`;
|
|
779
|
-
const CREATE_PRODUCT_VARIANTS = gql `
|
|
780
|
-
mutation CreateProductVariants($input: [CreateProductVariantInput!]!) {
|
|
781
|
-
createProductVariants(input: $input) {
|
|
782
|
-
...ProductVariant
|
|
783
|
-
}
|
|
784
|
-
}
|
|
785
|
-
${PRODUCT_VARIANT_FRAGMENT}
|
|
779
|
+
const CREATE_PRODUCT_VARIANTS = gql `
|
|
780
|
+
mutation CreateProductVariants($input: [CreateProductVariantInput!]!) {
|
|
781
|
+
createProductVariants(input: $input) {
|
|
782
|
+
...ProductVariant
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
${PRODUCT_VARIANT_FRAGMENT}
|
|
786
786
|
`;
|
|
787
|
-
const UPDATE_PRODUCT_VARIANTS = gql `
|
|
788
|
-
mutation UpdateProductVariants($input: [UpdateProductVariantInput!]!) {
|
|
789
|
-
updateProductVariants(input: $input) {
|
|
790
|
-
...ProductVariant
|
|
791
|
-
}
|
|
792
|
-
}
|
|
793
|
-
${PRODUCT_VARIANT_FRAGMENT}
|
|
787
|
+
const UPDATE_PRODUCT_VARIANTS = gql `
|
|
788
|
+
mutation UpdateProductVariants($input: [UpdateProductVariantInput!]!) {
|
|
789
|
+
updateProductVariants(input: $input) {
|
|
790
|
+
...ProductVariant
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
${PRODUCT_VARIANT_FRAGMENT}
|
|
794
794
|
`;
|
|
795
|
-
const CREATE_PRODUCT_OPTION_GROUP = gql `
|
|
796
|
-
mutation CreateProductOptionGroup($input: CreateProductOptionGroupInput!) {
|
|
797
|
-
createProductOptionGroup(input: $input) {
|
|
798
|
-
...ProductOptionGroupWithOptions
|
|
799
|
-
}
|
|
800
|
-
}
|
|
801
|
-
${PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT}
|
|
795
|
+
const CREATE_PRODUCT_OPTION_GROUP = gql `
|
|
796
|
+
mutation CreateProductOptionGroup($input: CreateProductOptionGroupInput!) {
|
|
797
|
+
createProductOptionGroup(input: $input) {
|
|
798
|
+
...ProductOptionGroupWithOptions
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
${PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT}
|
|
802
802
|
`;
|
|
803
|
-
const GET_PRODUCT_OPTION_GROUP = gql `
|
|
804
|
-
query GetProductOptionGroup($id: ID!) {
|
|
805
|
-
productOptionGroup(id: $id) {
|
|
806
|
-
...ProductOptionGroupWithOptions
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
${PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT}
|
|
803
|
+
const GET_PRODUCT_OPTION_GROUP = gql `
|
|
804
|
+
query GetProductOptionGroup($id: ID!) {
|
|
805
|
+
productOptionGroup(id: $id) {
|
|
806
|
+
...ProductOptionGroupWithOptions
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
${PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT}
|
|
810
810
|
`;
|
|
811
|
-
const ADD_OPTION_TO_GROUP = gql `
|
|
812
|
-
mutation AddOptionToGroup($input: CreateProductOptionInput!) {
|
|
813
|
-
createProductOption(input: $input) {
|
|
814
|
-
id
|
|
815
|
-
createdAt
|
|
816
|
-
updatedAt
|
|
817
|
-
name
|
|
818
|
-
code
|
|
819
|
-
groupId
|
|
820
|
-
}
|
|
821
|
-
}
|
|
811
|
+
const ADD_OPTION_TO_GROUP = gql `
|
|
812
|
+
mutation AddOptionToGroup($input: CreateProductOptionInput!) {
|
|
813
|
+
createProductOption(input: $input) {
|
|
814
|
+
id
|
|
815
|
+
createdAt
|
|
816
|
+
updatedAt
|
|
817
|
+
name
|
|
818
|
+
code
|
|
819
|
+
groupId
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
822
|
`;
|
|
823
|
-
const ADD_OPTION_GROUP_TO_PRODUCT = gql `
|
|
824
|
-
mutation AddOptionGroupToProduct($productId: ID!, $optionGroupId: ID!) {
|
|
825
|
-
addOptionGroupToProduct(productId: $productId, optionGroupId: $optionGroupId) {
|
|
826
|
-
id
|
|
827
|
-
createdAt
|
|
828
|
-
updatedAt
|
|
829
|
-
optionGroups {
|
|
830
|
-
id
|
|
831
|
-
createdAt
|
|
832
|
-
updatedAt
|
|
833
|
-
code
|
|
834
|
-
options {
|
|
835
|
-
id
|
|
836
|
-
createdAt
|
|
837
|
-
updatedAt
|
|
838
|
-
code
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
}
|
|
842
|
-
}
|
|
823
|
+
const ADD_OPTION_GROUP_TO_PRODUCT = gql `
|
|
824
|
+
mutation AddOptionGroupToProduct($productId: ID!, $optionGroupId: ID!) {
|
|
825
|
+
addOptionGroupToProduct(productId: $productId, optionGroupId: $optionGroupId) {
|
|
826
|
+
id
|
|
827
|
+
createdAt
|
|
828
|
+
updatedAt
|
|
829
|
+
optionGroups {
|
|
830
|
+
id
|
|
831
|
+
createdAt
|
|
832
|
+
updatedAt
|
|
833
|
+
code
|
|
834
|
+
options {
|
|
835
|
+
id
|
|
836
|
+
createdAt
|
|
837
|
+
updatedAt
|
|
838
|
+
code
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
843
|
`;
|
|
844
|
-
const REMOVE_OPTION_GROUP_FROM_PRODUCT = gql `
|
|
845
|
-
mutation RemoveOptionGroupFromProduct($productId: ID!, $optionGroupId: ID!) {
|
|
846
|
-
removeOptionGroupFromProduct(productId: $productId, optionGroupId: $optionGroupId) {
|
|
847
|
-
... on Product {
|
|
848
|
-
id
|
|
849
|
-
createdAt
|
|
850
|
-
updatedAt
|
|
851
|
-
optionGroups {
|
|
852
|
-
id
|
|
853
|
-
createdAt
|
|
854
|
-
updatedAt
|
|
855
|
-
code
|
|
856
|
-
options {
|
|
857
|
-
id
|
|
858
|
-
createdAt
|
|
859
|
-
updatedAt
|
|
860
|
-
code
|
|
861
|
-
}
|
|
862
|
-
}
|
|
863
|
-
}
|
|
864
|
-
...ErrorResult
|
|
865
|
-
}
|
|
866
|
-
}
|
|
867
|
-
${ERROR_RESULT_FRAGMENT}
|
|
844
|
+
const REMOVE_OPTION_GROUP_FROM_PRODUCT = gql `
|
|
845
|
+
mutation RemoveOptionGroupFromProduct($productId: ID!, $optionGroupId: ID!) {
|
|
846
|
+
removeOptionGroupFromProduct(productId: $productId, optionGroupId: $optionGroupId) {
|
|
847
|
+
... on Product {
|
|
848
|
+
id
|
|
849
|
+
createdAt
|
|
850
|
+
updatedAt
|
|
851
|
+
optionGroups {
|
|
852
|
+
id
|
|
853
|
+
createdAt
|
|
854
|
+
updatedAt
|
|
855
|
+
code
|
|
856
|
+
options {
|
|
857
|
+
id
|
|
858
|
+
createdAt
|
|
859
|
+
updatedAt
|
|
860
|
+
code
|
|
861
|
+
}
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
...ErrorResult
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
${ERROR_RESULT_FRAGMENT}
|
|
868
868
|
`;
|
|
869
|
-
const GET_PRODUCT_WITH_VARIANTS = gql `
|
|
870
|
-
query GetProductWithVariants($id: ID!, $variantListOptions: ProductVariantListOptions) {
|
|
871
|
-
product(id: $id) {
|
|
872
|
-
...ProductDetail
|
|
873
|
-
variantList(options: $variantListOptions) {
|
|
874
|
-
items {
|
|
875
|
-
...ProductVariant
|
|
876
|
-
}
|
|
877
|
-
totalItems
|
|
878
|
-
}
|
|
879
|
-
}
|
|
880
|
-
}
|
|
881
|
-
${PRODUCT_DETAIL_FRAGMENT}
|
|
882
|
-
${PRODUCT_VARIANT_FRAGMENT}
|
|
869
|
+
const GET_PRODUCT_WITH_VARIANTS = gql `
|
|
870
|
+
query GetProductWithVariants($id: ID!, $variantListOptions: ProductVariantListOptions) {
|
|
871
|
+
product(id: $id) {
|
|
872
|
+
...ProductDetail
|
|
873
|
+
variantList(options: $variantListOptions) {
|
|
874
|
+
items {
|
|
875
|
+
...ProductVariant
|
|
876
|
+
}
|
|
877
|
+
totalItems
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
${PRODUCT_DETAIL_FRAGMENT}
|
|
882
|
+
${PRODUCT_VARIANT_FRAGMENT}
|
|
883
883
|
`;
|
|
884
|
-
const GET_PRODUCT_SIMPLE = gql `
|
|
885
|
-
query GetProductSimple($id: ID!) {
|
|
886
|
-
product(id: $id) {
|
|
887
|
-
id
|
|
888
|
-
name
|
|
889
|
-
featuredAsset {
|
|
890
|
-
...Asset
|
|
891
|
-
}
|
|
892
|
-
}
|
|
893
|
-
}
|
|
894
|
-
${ASSET_FRAGMENT}
|
|
884
|
+
const GET_PRODUCT_SIMPLE = gql `
|
|
885
|
+
query GetProductSimple($id: ID!) {
|
|
886
|
+
product(id: $id) {
|
|
887
|
+
id
|
|
888
|
+
name
|
|
889
|
+
featuredAsset {
|
|
890
|
+
...Asset
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
${ASSET_FRAGMENT}
|
|
895
895
|
`;
|
|
896
|
-
const GET_PRODUCT_LIST = gql `
|
|
897
|
-
query GetProductList($options: ProductListOptions) {
|
|
898
|
-
products(options: $options) {
|
|
899
|
-
items {
|
|
900
|
-
id
|
|
901
|
-
createdAt
|
|
902
|
-
updatedAt
|
|
903
|
-
enabled
|
|
904
|
-
languageCode
|
|
905
|
-
name
|
|
906
|
-
slug
|
|
907
|
-
featuredAsset {
|
|
908
|
-
id
|
|
909
|
-
createdAt
|
|
910
|
-
updatedAt
|
|
911
|
-
preview
|
|
912
|
-
}
|
|
913
|
-
}
|
|
914
|
-
totalItems
|
|
915
|
-
}
|
|
916
|
-
}
|
|
896
|
+
const GET_PRODUCT_LIST = gql `
|
|
897
|
+
query GetProductList($options: ProductListOptions) {
|
|
898
|
+
products(options: $options) {
|
|
899
|
+
items {
|
|
900
|
+
id
|
|
901
|
+
createdAt
|
|
902
|
+
updatedAt
|
|
903
|
+
enabled
|
|
904
|
+
languageCode
|
|
905
|
+
name
|
|
906
|
+
slug
|
|
907
|
+
featuredAsset {
|
|
908
|
+
id
|
|
909
|
+
createdAt
|
|
910
|
+
updatedAt
|
|
911
|
+
preview
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
totalItems
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
917
|
`;
|
|
918
|
-
const GET_PRODUCT_OPTION_GROUPS = gql `
|
|
919
|
-
query GetProductOptionGroups($filterTerm: String) {
|
|
920
|
-
productOptionGroups(filterTerm: $filterTerm) {
|
|
921
|
-
id
|
|
922
|
-
createdAt
|
|
923
|
-
updatedAt
|
|
924
|
-
languageCode
|
|
925
|
-
code
|
|
926
|
-
name
|
|
927
|
-
options {
|
|
928
|
-
id
|
|
929
|
-
createdAt
|
|
930
|
-
updatedAt
|
|
931
|
-
languageCode
|
|
932
|
-
code
|
|
933
|
-
name
|
|
934
|
-
}
|
|
935
|
-
}
|
|
936
|
-
}
|
|
918
|
+
const GET_PRODUCT_OPTION_GROUPS = gql `
|
|
919
|
+
query GetProductOptionGroups($filterTerm: String) {
|
|
920
|
+
productOptionGroups(filterTerm: $filterTerm) {
|
|
921
|
+
id
|
|
922
|
+
createdAt
|
|
923
|
+
updatedAt
|
|
924
|
+
languageCode
|
|
925
|
+
code
|
|
926
|
+
name
|
|
927
|
+
options {
|
|
928
|
+
id
|
|
929
|
+
createdAt
|
|
930
|
+
updatedAt
|
|
931
|
+
languageCode
|
|
932
|
+
code
|
|
933
|
+
name
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
937
|
`;
|
|
938
|
-
const GET_ASSET_LIST = gql `
|
|
939
|
-
query GetAssetList($options: AssetListOptions) {
|
|
940
|
-
assets(options: $options) {
|
|
941
|
-
items {
|
|
942
|
-
...Asset
|
|
943
|
-
tags {
|
|
944
|
-
...Tag
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
totalItems
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
${ASSET_FRAGMENT}
|
|
951
|
-
${TAG_FRAGMENT}
|
|
938
|
+
const GET_ASSET_LIST = gql `
|
|
939
|
+
query GetAssetList($options: AssetListOptions) {
|
|
940
|
+
assets(options: $options) {
|
|
941
|
+
items {
|
|
942
|
+
...Asset
|
|
943
|
+
tags {
|
|
944
|
+
...Tag
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
totalItems
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
${ASSET_FRAGMENT}
|
|
951
|
+
${TAG_FRAGMENT}
|
|
952
952
|
`;
|
|
953
|
-
const GET_ASSET = gql `
|
|
954
|
-
query GetAsset($id: ID!) {
|
|
955
|
-
asset(id: $id) {
|
|
956
|
-
...Asset
|
|
957
|
-
tags {
|
|
958
|
-
...Tag
|
|
959
|
-
}
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
${ASSET_FRAGMENT}
|
|
963
|
-
${TAG_FRAGMENT}
|
|
953
|
+
const GET_ASSET = gql `
|
|
954
|
+
query GetAsset($id: ID!) {
|
|
955
|
+
asset(id: $id) {
|
|
956
|
+
...Asset
|
|
957
|
+
tags {
|
|
958
|
+
...Tag
|
|
959
|
+
}
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
${ASSET_FRAGMENT}
|
|
963
|
+
${TAG_FRAGMENT}
|
|
964
964
|
`;
|
|
965
|
-
const CREATE_ASSETS = gql `
|
|
966
|
-
mutation CreateAssets($input: [CreateAssetInput!]!) {
|
|
967
|
-
createAssets(input: $input) {
|
|
968
|
-
...Asset
|
|
969
|
-
... on Asset {
|
|
970
|
-
tags {
|
|
971
|
-
...Tag
|
|
972
|
-
}
|
|
973
|
-
}
|
|
974
|
-
... on ErrorResult {
|
|
975
|
-
message
|
|
976
|
-
}
|
|
977
|
-
}
|
|
978
|
-
}
|
|
979
|
-
${ASSET_FRAGMENT}
|
|
980
|
-
${TAG_FRAGMENT}
|
|
965
|
+
const CREATE_ASSETS = gql `
|
|
966
|
+
mutation CreateAssets($input: [CreateAssetInput!]!) {
|
|
967
|
+
createAssets(input: $input) {
|
|
968
|
+
...Asset
|
|
969
|
+
... on Asset {
|
|
970
|
+
tags {
|
|
971
|
+
...Tag
|
|
972
|
+
}
|
|
973
|
+
}
|
|
974
|
+
... on ErrorResult {
|
|
975
|
+
message
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
${ASSET_FRAGMENT}
|
|
980
|
+
${TAG_FRAGMENT}
|
|
981
981
|
`;
|
|
982
|
-
const UPDATE_ASSET = gql `
|
|
983
|
-
mutation UpdateAsset($input: UpdateAssetInput!) {
|
|
984
|
-
updateAsset(input: $input) {
|
|
985
|
-
...Asset
|
|
986
|
-
tags {
|
|
987
|
-
...Tag
|
|
988
|
-
}
|
|
989
|
-
}
|
|
990
|
-
}
|
|
991
|
-
${ASSET_FRAGMENT}
|
|
992
|
-
${TAG_FRAGMENT}
|
|
982
|
+
const UPDATE_ASSET = gql `
|
|
983
|
+
mutation UpdateAsset($input: UpdateAssetInput!) {
|
|
984
|
+
updateAsset(input: $input) {
|
|
985
|
+
...Asset
|
|
986
|
+
tags {
|
|
987
|
+
...Tag
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
${ASSET_FRAGMENT}
|
|
992
|
+
${TAG_FRAGMENT}
|
|
993
993
|
`;
|
|
994
|
-
const DELETE_ASSETS = gql `
|
|
995
|
-
mutation DeleteAssets($input: DeleteAssetsInput!) {
|
|
996
|
-
deleteAssets(input: $input) {
|
|
997
|
-
result
|
|
998
|
-
message
|
|
999
|
-
}
|
|
1000
|
-
}
|
|
994
|
+
const DELETE_ASSETS = gql `
|
|
995
|
+
mutation DeleteAssets($input: DeleteAssetsInput!) {
|
|
996
|
+
deleteAssets(input: $input) {
|
|
997
|
+
result
|
|
998
|
+
message
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
1001
|
`;
|
|
1002
|
-
const SEARCH_PRODUCTS = gql `
|
|
1003
|
-
query SearchProducts($input: SearchInput!) {
|
|
1004
|
-
search(input: $input) {
|
|
1005
|
-
totalItems
|
|
1006
|
-
items {
|
|
1007
|
-
enabled
|
|
1008
|
-
productId
|
|
1009
|
-
productName
|
|
1010
|
-
productAsset {
|
|
1011
|
-
id
|
|
1012
|
-
preview
|
|
1013
|
-
focalPoint {
|
|
1014
|
-
x
|
|
1015
|
-
y
|
|
1016
|
-
}
|
|
1017
|
-
}
|
|
1018
|
-
productVariantId
|
|
1019
|
-
productVariantName
|
|
1020
|
-
productVariantAsset {
|
|
1021
|
-
id
|
|
1022
|
-
preview
|
|
1023
|
-
focalPoint {
|
|
1024
|
-
x
|
|
1025
|
-
y
|
|
1026
|
-
}
|
|
1027
|
-
}
|
|
1028
|
-
sku
|
|
1029
|
-
channelIds
|
|
1030
|
-
}
|
|
1031
|
-
facetValues {
|
|
1032
|
-
count
|
|
1033
|
-
facetValue {
|
|
1034
|
-
id
|
|
1035
|
-
createdAt
|
|
1036
|
-
updatedAt
|
|
1037
|
-
name
|
|
1038
|
-
facet {
|
|
1039
|
-
id
|
|
1040
|
-
createdAt
|
|
1041
|
-
updatedAt
|
|
1042
|
-
name
|
|
1043
|
-
}
|
|
1044
|
-
}
|
|
1045
|
-
}
|
|
1046
|
-
}
|
|
1047
|
-
}
|
|
1002
|
+
const SEARCH_PRODUCTS = gql `
|
|
1003
|
+
query SearchProducts($input: SearchInput!) {
|
|
1004
|
+
search(input: $input) {
|
|
1005
|
+
totalItems
|
|
1006
|
+
items {
|
|
1007
|
+
enabled
|
|
1008
|
+
productId
|
|
1009
|
+
productName
|
|
1010
|
+
productAsset {
|
|
1011
|
+
id
|
|
1012
|
+
preview
|
|
1013
|
+
focalPoint {
|
|
1014
|
+
x
|
|
1015
|
+
y
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
productVariantId
|
|
1019
|
+
productVariantName
|
|
1020
|
+
productVariantAsset {
|
|
1021
|
+
id
|
|
1022
|
+
preview
|
|
1023
|
+
focalPoint {
|
|
1024
|
+
x
|
|
1025
|
+
y
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
sku
|
|
1029
|
+
channelIds
|
|
1030
|
+
}
|
|
1031
|
+
facetValues {
|
|
1032
|
+
count
|
|
1033
|
+
facetValue {
|
|
1034
|
+
id
|
|
1035
|
+
createdAt
|
|
1036
|
+
updatedAt
|
|
1037
|
+
name
|
|
1038
|
+
facet {
|
|
1039
|
+
id
|
|
1040
|
+
createdAt
|
|
1041
|
+
updatedAt
|
|
1042
|
+
name
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
1048
|
`;
|
|
1049
|
-
const PRODUCT_SELECTOR_SEARCH = gql `
|
|
1050
|
-
query ProductSelectorSearch($term: String!, $take: Int!) {
|
|
1051
|
-
search(input: { groupByProduct: false, term: $term, take: $take }) {
|
|
1052
|
-
items {
|
|
1053
|
-
productVariantId
|
|
1054
|
-
productVariantName
|
|
1055
|
-
productAsset {
|
|
1056
|
-
id
|
|
1057
|
-
preview
|
|
1058
|
-
focalPoint {
|
|
1059
|
-
x
|
|
1060
|
-
y
|
|
1061
|
-
}
|
|
1062
|
-
}
|
|
1063
|
-
price {
|
|
1064
|
-
... on SinglePrice {
|
|
1065
|
-
value
|
|
1066
|
-
}
|
|
1067
|
-
}
|
|
1068
|
-
priceWithTax {
|
|
1069
|
-
... on SinglePrice {
|
|
1070
|
-
value
|
|
1071
|
-
}
|
|
1072
|
-
}
|
|
1073
|
-
sku
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1049
|
+
const PRODUCT_SELECTOR_SEARCH = gql `
|
|
1050
|
+
query ProductSelectorSearch($term: String!, $take: Int!) {
|
|
1051
|
+
search(input: { groupByProduct: false, term: $term, take: $take }) {
|
|
1052
|
+
items {
|
|
1053
|
+
productVariantId
|
|
1054
|
+
productVariantName
|
|
1055
|
+
productAsset {
|
|
1056
|
+
id
|
|
1057
|
+
preview
|
|
1058
|
+
focalPoint {
|
|
1059
|
+
x
|
|
1060
|
+
y
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
price {
|
|
1064
|
+
... on SinglePrice {
|
|
1065
|
+
value
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
priceWithTax {
|
|
1069
|
+
... on SinglePrice {
|
|
1070
|
+
value
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
sku
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
1077
|
`;
|
|
1078
|
-
const UPDATE_PRODUCT_OPTION_GROUP = gql `
|
|
1079
|
-
mutation UpdateProductOptionGroup($input: UpdateProductOptionGroupInput!) {
|
|
1080
|
-
updateProductOptionGroup(input: $input) {
|
|
1081
|
-
...ProductOptionGroup
|
|
1082
|
-
}
|
|
1083
|
-
}
|
|
1084
|
-
${PRODUCT_OPTION_GROUP_FRAGMENT}
|
|
1078
|
+
const UPDATE_PRODUCT_OPTION_GROUP = gql `
|
|
1079
|
+
mutation UpdateProductOptionGroup($input: UpdateProductOptionGroupInput!) {
|
|
1080
|
+
updateProductOptionGroup(input: $input) {
|
|
1081
|
+
...ProductOptionGroup
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
${PRODUCT_OPTION_GROUP_FRAGMENT}
|
|
1085
1085
|
`;
|
|
1086
|
-
const UPDATE_PRODUCT_OPTION = gql `
|
|
1087
|
-
mutation UpdateProductOption($input: UpdateProductOptionInput!) {
|
|
1088
|
-
updateProductOption(input: $input) {
|
|
1089
|
-
...ProductOption
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
${PRODUCT_OPTION_FRAGMENT}
|
|
1086
|
+
const UPDATE_PRODUCT_OPTION = gql `
|
|
1087
|
+
mutation UpdateProductOption($input: UpdateProductOptionInput!) {
|
|
1088
|
+
updateProductOption(input: $input) {
|
|
1089
|
+
...ProductOption
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
${PRODUCT_OPTION_FRAGMENT}
|
|
1093
|
+
`;
|
|
1094
|
+
const DELETE_PRODUCT_OPTION = gql `
|
|
1095
|
+
mutation DeleteProductOption($id: ID!) {
|
|
1096
|
+
deleteProductOption(id: $id) {
|
|
1097
|
+
result
|
|
1098
|
+
message
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1093
1101
|
`;
|
|
1094
|
-
const DELETE_PRODUCT_VARIANT = gql `
|
|
1095
|
-
mutation DeleteProductVariant($id: ID!) {
|
|
1096
|
-
deleteProductVariant(id: $id) {
|
|
1097
|
-
result
|
|
1098
|
-
message
|
|
1099
|
-
}
|
|
1100
|
-
}
|
|
1102
|
+
const DELETE_PRODUCT_VARIANT = gql `
|
|
1103
|
+
mutation DeleteProductVariant($id: ID!) {
|
|
1104
|
+
deleteProductVariant(id: $id) {
|
|
1105
|
+
result
|
|
1106
|
+
message
|
|
1107
|
+
}
|
|
1108
|
+
}
|
|
1101
1109
|
`;
|
|
1102
|
-
const GET_PRODUCT_VARIANT_OPTIONS = gql `
|
|
1103
|
-
query GetProductVariantOptions($id: ID!) {
|
|
1104
|
-
product(id: $id) {
|
|
1105
|
-
id
|
|
1106
|
-
createdAt
|
|
1107
|
-
updatedAt
|
|
1108
|
-
name
|
|
1109
|
-
optionGroups {
|
|
1110
|
-
...ProductOptionGroup
|
|
1111
|
-
options {
|
|
1112
|
-
...ProductOption
|
|
1113
|
-
}
|
|
1114
|
-
}
|
|
1115
|
-
variants {
|
|
1116
|
-
id
|
|
1117
|
-
createdAt
|
|
1118
|
-
updatedAt
|
|
1119
|
-
enabled
|
|
1120
|
-
name
|
|
1121
|
-
sku
|
|
1122
|
-
price
|
|
1123
|
-
stockOnHand
|
|
1124
|
-
enabled
|
|
1125
|
-
options {
|
|
1126
|
-
id
|
|
1127
|
-
createdAt
|
|
1128
|
-
updatedAt
|
|
1129
|
-
name
|
|
1130
|
-
code
|
|
1131
|
-
groupId
|
|
1132
|
-
}
|
|
1133
|
-
}
|
|
1134
|
-
}
|
|
1135
|
-
}
|
|
1136
|
-
${PRODUCT_OPTION_GROUP_FRAGMENT}
|
|
1137
|
-
${PRODUCT_OPTION_FRAGMENT}
|
|
1110
|
+
const GET_PRODUCT_VARIANT_OPTIONS = gql `
|
|
1111
|
+
query GetProductVariantOptions($id: ID!) {
|
|
1112
|
+
product(id: $id) {
|
|
1113
|
+
id
|
|
1114
|
+
createdAt
|
|
1115
|
+
updatedAt
|
|
1116
|
+
name
|
|
1117
|
+
optionGroups {
|
|
1118
|
+
...ProductOptionGroup
|
|
1119
|
+
options {
|
|
1120
|
+
...ProductOption
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
variants {
|
|
1124
|
+
id
|
|
1125
|
+
createdAt
|
|
1126
|
+
updatedAt
|
|
1127
|
+
enabled
|
|
1128
|
+
name
|
|
1129
|
+
sku
|
|
1130
|
+
price
|
|
1131
|
+
stockOnHand
|
|
1132
|
+
enabled
|
|
1133
|
+
options {
|
|
1134
|
+
id
|
|
1135
|
+
createdAt
|
|
1136
|
+
updatedAt
|
|
1137
|
+
name
|
|
1138
|
+
code
|
|
1139
|
+
groupId
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
${PRODUCT_OPTION_GROUP_FRAGMENT}
|
|
1145
|
+
${PRODUCT_OPTION_FRAGMENT}
|
|
1138
1146
|
`;
|
|
1139
|
-
const ASSIGN_PRODUCTS_TO_CHANNEL = gql `
|
|
1140
|
-
mutation AssignProductsToChannel($input: AssignProductsToChannelInput!) {
|
|
1141
|
-
assignProductsToChannel(input: $input) {
|
|
1142
|
-
id
|
|
1143
|
-
channels {
|
|
1144
|
-
id
|
|
1145
|
-
code
|
|
1146
|
-
}
|
|
1147
|
-
}
|
|
1148
|
-
}
|
|
1147
|
+
const ASSIGN_PRODUCTS_TO_CHANNEL = gql `
|
|
1148
|
+
mutation AssignProductsToChannel($input: AssignProductsToChannelInput!) {
|
|
1149
|
+
assignProductsToChannel(input: $input) {
|
|
1150
|
+
id
|
|
1151
|
+
channels {
|
|
1152
|
+
id
|
|
1153
|
+
code
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1149
1157
|
`;
|
|
1150
|
-
const ASSIGN_VARIANTS_TO_CHANNEL = gql `
|
|
1151
|
-
mutation AssignVariantsToChannel($input: AssignProductVariantsToChannelInput!) {
|
|
1152
|
-
assignProductVariantsToChannel(input: $input) {
|
|
1153
|
-
id
|
|
1154
|
-
channels {
|
|
1155
|
-
id
|
|
1156
|
-
code
|
|
1157
|
-
}
|
|
1158
|
-
}
|
|
1159
|
-
}
|
|
1158
|
+
const ASSIGN_VARIANTS_TO_CHANNEL = gql `
|
|
1159
|
+
mutation AssignVariantsToChannel($input: AssignProductVariantsToChannelInput!) {
|
|
1160
|
+
assignProductVariantsToChannel(input: $input) {
|
|
1161
|
+
id
|
|
1162
|
+
channels {
|
|
1163
|
+
id
|
|
1164
|
+
code
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1160
1168
|
`;
|
|
1161
|
-
const REMOVE_PRODUCTS_FROM_CHANNEL = gql `
|
|
1162
|
-
mutation RemoveProductsFromChannel($input: RemoveProductsFromChannelInput!) {
|
|
1163
|
-
removeProductsFromChannel(input: $input) {
|
|
1164
|
-
id
|
|
1165
|
-
channels {
|
|
1166
|
-
id
|
|
1167
|
-
code
|
|
1168
|
-
}
|
|
1169
|
-
}
|
|
1170
|
-
}
|
|
1169
|
+
const REMOVE_PRODUCTS_FROM_CHANNEL = gql `
|
|
1170
|
+
mutation RemoveProductsFromChannel($input: RemoveProductsFromChannelInput!) {
|
|
1171
|
+
removeProductsFromChannel(input: $input) {
|
|
1172
|
+
id
|
|
1173
|
+
channels {
|
|
1174
|
+
id
|
|
1175
|
+
code
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1171
1179
|
`;
|
|
1172
|
-
const REMOVE_VARIANTS_FROM_CHANNEL = gql `
|
|
1173
|
-
mutation RemoveVariantsFromChannel($input: RemoveProductVariantsFromChannelInput!) {
|
|
1174
|
-
removeProductVariantsFromChannel(input: $input) {
|
|
1175
|
-
id
|
|
1176
|
-
channels {
|
|
1177
|
-
id
|
|
1178
|
-
code
|
|
1179
|
-
}
|
|
1180
|
-
}
|
|
1181
|
-
}
|
|
1180
|
+
const REMOVE_VARIANTS_FROM_CHANNEL = gql `
|
|
1181
|
+
mutation RemoveVariantsFromChannel($input: RemoveProductVariantsFromChannelInput!) {
|
|
1182
|
+
removeProductVariantsFromChannel(input: $input) {
|
|
1183
|
+
id
|
|
1184
|
+
channels {
|
|
1185
|
+
id
|
|
1186
|
+
code
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1182
1190
|
`;
|
|
1183
|
-
const GET_PRODUCT_VARIANT = gql `
|
|
1184
|
-
query GetProductVariant($id: ID!) {
|
|
1185
|
-
productVariant(id: $id) {
|
|
1186
|
-
id
|
|
1187
|
-
name
|
|
1188
|
-
sku
|
|
1189
|
-
featuredAsset {
|
|
1190
|
-
id
|
|
1191
|
-
preview
|
|
1192
|
-
focalPoint {
|
|
1193
|
-
x
|
|
1194
|
-
y
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
product {
|
|
1198
|
-
id
|
|
1199
|
-
featuredAsset {
|
|
1200
|
-
id
|
|
1201
|
-
preview
|
|
1202
|
-
focalPoint {
|
|
1203
|
-
x
|
|
1204
|
-
y
|
|
1205
|
-
}
|
|
1206
|
-
}
|
|
1207
|
-
}
|
|
1208
|
-
}
|
|
1209
|
-
}
|
|
1191
|
+
const GET_PRODUCT_VARIANT = gql `
|
|
1192
|
+
query GetProductVariant($id: ID!) {
|
|
1193
|
+
productVariant(id: $id) {
|
|
1194
|
+
id
|
|
1195
|
+
name
|
|
1196
|
+
sku
|
|
1197
|
+
featuredAsset {
|
|
1198
|
+
id
|
|
1199
|
+
preview
|
|
1200
|
+
focalPoint {
|
|
1201
|
+
x
|
|
1202
|
+
y
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
product {
|
|
1206
|
+
id
|
|
1207
|
+
featuredAsset {
|
|
1208
|
+
id
|
|
1209
|
+
preview
|
|
1210
|
+
focalPoint {
|
|
1211
|
+
x
|
|
1212
|
+
y
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1210
1218
|
`;
|
|
1211
|
-
const GET_PRODUCT_VARIANT_LIST_SIMPLE = gql `
|
|
1212
|
-
query GetProductVariantListSimple($options: ProductVariantListOptions!, $productId: ID) {
|
|
1213
|
-
productVariants(options: $options, productId: $productId) {
|
|
1214
|
-
items {
|
|
1215
|
-
id
|
|
1216
|
-
name
|
|
1217
|
-
sku
|
|
1218
|
-
featuredAsset {
|
|
1219
|
-
id
|
|
1220
|
-
preview
|
|
1221
|
-
focalPoint {
|
|
1222
|
-
x
|
|
1223
|
-
y
|
|
1224
|
-
}
|
|
1225
|
-
}
|
|
1226
|
-
product {
|
|
1227
|
-
id
|
|
1228
|
-
featuredAsset {
|
|
1229
|
-
id
|
|
1230
|
-
preview
|
|
1231
|
-
focalPoint {
|
|
1232
|
-
x
|
|
1233
|
-
y
|
|
1234
|
-
}
|
|
1235
|
-
}
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
totalItems
|
|
1239
|
-
}
|
|
1240
|
-
}
|
|
1219
|
+
const GET_PRODUCT_VARIANT_LIST_SIMPLE = gql `
|
|
1220
|
+
query GetProductVariantListSimple($options: ProductVariantListOptions!, $productId: ID) {
|
|
1221
|
+
productVariants(options: $options, productId: $productId) {
|
|
1222
|
+
items {
|
|
1223
|
+
id
|
|
1224
|
+
name
|
|
1225
|
+
sku
|
|
1226
|
+
featuredAsset {
|
|
1227
|
+
id
|
|
1228
|
+
preview
|
|
1229
|
+
focalPoint {
|
|
1230
|
+
x
|
|
1231
|
+
y
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
product {
|
|
1235
|
+
id
|
|
1236
|
+
featuredAsset {
|
|
1237
|
+
id
|
|
1238
|
+
preview
|
|
1239
|
+
focalPoint {
|
|
1240
|
+
x
|
|
1241
|
+
y
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
totalItems
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1241
1249
|
`;
|
|
1242
|
-
const GET_PRODUCT_VARIANT_LIST = gql `
|
|
1243
|
-
query GetProductVariantList($options: ProductVariantListOptions!, $productId: ID) {
|
|
1244
|
-
productVariants(options: $options, productId: $productId) {
|
|
1245
|
-
items {
|
|
1246
|
-
...ProductVariant
|
|
1247
|
-
}
|
|
1248
|
-
totalItems
|
|
1249
|
-
}
|
|
1250
|
-
}
|
|
1251
|
-
${PRODUCT_VARIANT_FRAGMENT}
|
|
1250
|
+
const GET_PRODUCT_VARIANT_LIST = gql `
|
|
1251
|
+
query GetProductVariantList($options: ProductVariantListOptions!, $productId: ID) {
|
|
1252
|
+
productVariants(options: $options, productId: $productId) {
|
|
1253
|
+
items {
|
|
1254
|
+
...ProductVariant
|
|
1255
|
+
}
|
|
1256
|
+
totalItems
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
${PRODUCT_VARIANT_FRAGMENT}
|
|
1252
1260
|
`;
|
|
1253
|
-
const GET_TAG_LIST = gql `
|
|
1254
|
-
query GetTagList($options: TagListOptions) {
|
|
1255
|
-
tags(options: $options) {
|
|
1256
|
-
items {
|
|
1257
|
-
...Tag
|
|
1258
|
-
}
|
|
1259
|
-
totalItems
|
|
1260
|
-
}
|
|
1261
|
-
}
|
|
1262
|
-
${TAG_FRAGMENT}
|
|
1261
|
+
const GET_TAG_LIST = gql `
|
|
1262
|
+
query GetTagList($options: TagListOptions) {
|
|
1263
|
+
tags(options: $options) {
|
|
1264
|
+
items {
|
|
1265
|
+
...Tag
|
|
1266
|
+
}
|
|
1267
|
+
totalItems
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
${TAG_FRAGMENT}
|
|
1263
1271
|
`;
|
|
1264
|
-
const GET_TAG = gql `
|
|
1265
|
-
query GetTag($id: ID!) {
|
|
1266
|
-
tag(id: $id) {
|
|
1267
|
-
...Tag
|
|
1268
|
-
}
|
|
1269
|
-
}
|
|
1270
|
-
${TAG_FRAGMENT}
|
|
1272
|
+
const GET_TAG = gql `
|
|
1273
|
+
query GetTag($id: ID!) {
|
|
1274
|
+
tag(id: $id) {
|
|
1275
|
+
...Tag
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
${TAG_FRAGMENT}
|
|
1271
1279
|
`;
|
|
1272
|
-
const CREATE_TAG = gql `
|
|
1273
|
-
mutation CreateTag($input: CreateTagInput!) {
|
|
1274
|
-
createTag(input: $input) {
|
|
1275
|
-
...Tag
|
|
1276
|
-
}
|
|
1277
|
-
}
|
|
1278
|
-
${TAG_FRAGMENT}
|
|
1280
|
+
const CREATE_TAG = gql `
|
|
1281
|
+
mutation CreateTag($input: CreateTagInput!) {
|
|
1282
|
+
createTag(input: $input) {
|
|
1283
|
+
...Tag
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
${TAG_FRAGMENT}
|
|
1279
1287
|
`;
|
|
1280
|
-
const UPDATE_TAG = gql `
|
|
1281
|
-
mutation UpdateTag($input: UpdateTagInput!) {
|
|
1282
|
-
updateTag(input: $input) {
|
|
1283
|
-
...Tag
|
|
1284
|
-
}
|
|
1285
|
-
}
|
|
1286
|
-
${TAG_FRAGMENT}
|
|
1288
|
+
const UPDATE_TAG = gql `
|
|
1289
|
+
mutation UpdateTag($input: UpdateTagInput!) {
|
|
1290
|
+
updateTag(input: $input) {
|
|
1291
|
+
...Tag
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
${TAG_FRAGMENT}
|
|
1287
1295
|
`;
|
|
1288
|
-
const DELETE_TAG = gql `
|
|
1289
|
-
mutation DeleteTag($id: ID!) {
|
|
1290
|
-
deleteTag(id: $id) {
|
|
1291
|
-
message
|
|
1292
|
-
result
|
|
1293
|
-
}
|
|
1294
|
-
}
|
|
1296
|
+
const DELETE_TAG = gql `
|
|
1297
|
+
mutation DeleteTag($id: ID!) {
|
|
1298
|
+
deleteTag(id: $id) {
|
|
1299
|
+
message
|
|
1300
|
+
result
|
|
1301
|
+
}
|
|
1302
|
+
}
|
|
1295
1303
|
`;
|
|
1296
1304
|
|
|
1297
1305
|
const GET_COLLECTION_FILTERS = gql `
|
|
@@ -2064,6 +2072,16 @@ const DISCOUNT_FRAGMENT = gql `
|
|
|
2064
2072
|
type
|
|
2065
2073
|
}
|
|
2066
2074
|
`;
|
|
2075
|
+
const PAYMENT_FRAGMENT = gql `
|
|
2076
|
+
fragment Payment on Payment {
|
|
2077
|
+
id
|
|
2078
|
+
transactionId
|
|
2079
|
+
amount
|
|
2080
|
+
method
|
|
2081
|
+
state
|
|
2082
|
+
metadata
|
|
2083
|
+
}
|
|
2084
|
+
`;
|
|
2067
2085
|
const REFUND_FRAGMENT = gql `
|
|
2068
2086
|
fragment Refund on Refund {
|
|
2069
2087
|
id
|
|
@@ -2121,8 +2139,11 @@ const FULFILLMENT_FRAGMENT = gql `
|
|
|
2121
2139
|
createdAt
|
|
2122
2140
|
updatedAt
|
|
2123
2141
|
method
|
|
2124
|
-
|
|
2125
|
-
|
|
2142
|
+
summary {
|
|
2143
|
+
orderLine {
|
|
2144
|
+
id
|
|
2145
|
+
}
|
|
2146
|
+
quantity
|
|
2126
2147
|
}
|
|
2127
2148
|
trackingCode
|
|
2128
2149
|
}
|
|
@@ -2143,6 +2164,9 @@ const ORDER_LINE_FRAGMENT = gql `
|
|
|
2143
2164
|
discounts {
|
|
2144
2165
|
...Discount
|
|
2145
2166
|
}
|
|
2167
|
+
fulfillments {
|
|
2168
|
+
...Fulfillment
|
|
2169
|
+
}
|
|
2146
2170
|
unitPrice
|
|
2147
2171
|
unitPriceWithTax
|
|
2148
2172
|
proratedUnitPrice
|
|
@@ -2150,14 +2174,8 @@ const ORDER_LINE_FRAGMENT = gql `
|
|
|
2150
2174
|
quantity
|
|
2151
2175
|
items {
|
|
2152
2176
|
id
|
|
2153
|
-
unitPrice
|
|
2154
|
-
unitPriceWithTax
|
|
2155
|
-
taxRate
|
|
2156
2177
|
refundId
|
|
2157
2178
|
cancelled
|
|
2158
|
-
fulfillment {
|
|
2159
|
-
...Fulfillment
|
|
2160
|
-
}
|
|
2161
2179
|
}
|
|
2162
2180
|
linePrice
|
|
2163
2181
|
lineTax
|
|
@@ -2307,14 +2325,7 @@ const GET_ORDER = gql `
|
|
|
2307
2325
|
const SETTLE_PAYMENT = gql `
|
|
2308
2326
|
mutation SettlePayment($id: ID!) {
|
|
2309
2327
|
settlePayment(id: $id) {
|
|
2310
|
-
...
|
|
2311
|
-
id
|
|
2312
|
-
transactionId
|
|
2313
|
-
amount
|
|
2314
|
-
method
|
|
2315
|
-
state
|
|
2316
|
-
metadata
|
|
2317
|
-
}
|
|
2328
|
+
...Payment
|
|
2318
2329
|
...ErrorResult
|
|
2319
2330
|
... on SettlePaymentError {
|
|
2320
2331
|
paymentErrorMessage
|
|
@@ -2328,24 +2339,35 @@ const SETTLE_PAYMENT = gql `
|
|
|
2328
2339
|
}
|
|
2329
2340
|
}
|
|
2330
2341
|
${ERROR_RESULT_FRAGMENT}
|
|
2342
|
+
${PAYMENT_FRAGMENT}
|
|
2343
|
+
`;
|
|
2344
|
+
const CANCEL_PAYMENT = gql `
|
|
2345
|
+
mutation CancelPayment($id: ID!) {
|
|
2346
|
+
cancelPayment(id: $id) {
|
|
2347
|
+
...Payment
|
|
2348
|
+
...ErrorResult
|
|
2349
|
+
... on CancelPaymentError {
|
|
2350
|
+
paymentErrorMessage
|
|
2351
|
+
}
|
|
2352
|
+
... on PaymentStateTransitionError {
|
|
2353
|
+
transitionError
|
|
2354
|
+
}
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2357
|
+
${ERROR_RESULT_FRAGMENT}
|
|
2358
|
+
${PAYMENT_FRAGMENT}
|
|
2331
2359
|
`;
|
|
2332
2360
|
const TRANSITION_PAYMENT_TO_STATE = gql `
|
|
2333
2361
|
mutation TransitionPaymentToState($id: ID!, $state: String!) {
|
|
2334
2362
|
transitionPaymentToState(id: $id, state: $state) {
|
|
2335
|
-
...
|
|
2336
|
-
id
|
|
2337
|
-
transactionId
|
|
2338
|
-
amount
|
|
2339
|
-
method
|
|
2340
|
-
state
|
|
2341
|
-
metadata
|
|
2342
|
-
}
|
|
2363
|
+
...Payment
|
|
2343
2364
|
...ErrorResult
|
|
2344
2365
|
... on PaymentStateTransitionError {
|
|
2345
2366
|
transitionError
|
|
2346
2367
|
}
|
|
2347
2368
|
}
|
|
2348
2369
|
}
|
|
2370
|
+
${PAYMENT_FRAGMENT}
|
|
2349
2371
|
${ERROR_RESULT_FRAGMENT}
|
|
2350
2372
|
`;
|
|
2351
2373
|
const CREATE_FULFILLMENT = gql `
|
|
@@ -2536,6 +2558,11 @@ class OrderDataService {
|
|
|
2536
2558
|
id,
|
|
2537
2559
|
});
|
|
2538
2560
|
}
|
|
2561
|
+
cancelPayment(id) {
|
|
2562
|
+
return this.baseDataService.mutate(CANCEL_PAYMENT, {
|
|
2563
|
+
id,
|
|
2564
|
+
});
|
|
2565
|
+
}
|
|
2539
2566
|
transitionPaymentToState(id, state) {
|
|
2540
2567
|
return this.baseDataService.mutate(TRANSITION_PAYMENT_TO_STATE, {
|
|
2541
2568
|
id,
|
|
@@ -2956,6 +2983,7 @@ var ErrorCode;
|
|
|
2956
2983
|
(function (ErrorCode) {
|
|
2957
2984
|
ErrorCode["ALREADY_REFUNDED_ERROR"] = "ALREADY_REFUNDED_ERROR";
|
|
2958
2985
|
ErrorCode["CANCEL_ACTIVE_ORDER_ERROR"] = "CANCEL_ACTIVE_ORDER_ERROR";
|
|
2986
|
+
ErrorCode["CANCEL_PAYMENT_ERROR"] = "CANCEL_PAYMENT_ERROR";
|
|
2959
2987
|
ErrorCode["CHANNEL_DEFAULT_LANGUAGE_ERROR"] = "CHANNEL_DEFAULT_LANGUAGE_ERROR";
|
|
2960
2988
|
ErrorCode["COUPON_CODE_EXPIRED_ERROR"] = "COUPON_CODE_EXPIRED_ERROR";
|
|
2961
2989
|
ErrorCode["COUPON_CODE_INVALID_ERROR"] = "COUPON_CODE_INVALID_ERROR";
|
|
@@ -4497,6 +4525,9 @@ class ProductDataService {
|
|
|
4497
4525
|
addOptionToGroup(input) {
|
|
4498
4526
|
return this.baseDataService.mutate(ADD_OPTION_TO_GROUP, { input });
|
|
4499
4527
|
}
|
|
4528
|
+
deleteProductOption(id) {
|
|
4529
|
+
return this.baseDataService.mutate(DELETE_PRODUCT_OPTION, { id });
|
|
4530
|
+
}
|
|
4500
4531
|
removeOptionGroupFromProduct(variables) {
|
|
4501
4532
|
return this.baseDataService.mutate(REMOVE_OPTION_GROUP_FROM_PRODUCT, variables);
|
|
4502
4533
|
}
|
|
@@ -8346,260 +8377,196 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImpor
|
|
|
8346
8377
|
|
|
8347
8378
|
// tslint:disable
|
|
8348
8379
|
const result = {
|
|
8349
|
-
|
|
8350
|
-
|
|
8351
|
-
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
],
|
|
8359
|
-
"AddManualPaymentToOrderResult": [
|
|
8360
|
-
"ManualPaymentStateError",
|
|
8361
|
-
"Order"
|
|
8362
|
-
],
|
|
8363
|
-
"AuthenticationResult": [
|
|
8364
|
-
"CurrentUser",
|
|
8365
|
-
"InvalidCredentialsError"
|
|
8366
|
-
],
|
|
8367
|
-
"CancelOrderResult": [
|
|
8368
|
-
"CancelActiveOrderError",
|
|
8369
|
-
"EmptyOrderLineSelectionError",
|
|
8370
|
-
"MultipleOrderError",
|
|
8371
|
-
"Order",
|
|
8372
|
-
"OrderStateTransitionError",
|
|
8373
|
-
"QuantityTooGreatError"
|
|
8374
|
-
],
|
|
8375
|
-
"CreateAssetResult": [
|
|
8376
|
-
"Asset",
|
|
8377
|
-
"MimeTypeError"
|
|
8378
|
-
],
|
|
8379
|
-
"CreateChannelResult": [
|
|
8380
|
-
"Channel",
|
|
8381
|
-
"LanguageNotAvailableError"
|
|
8382
|
-
],
|
|
8383
|
-
"CreateCustomerResult": [
|
|
8384
|
-
"Customer",
|
|
8385
|
-
"EmailAddressConflictError"
|
|
8380
|
+
possibleTypes: {
|
|
8381
|
+
AddFulfillmentToOrderResult: [
|
|
8382
|
+
'CreateFulfillmentError',
|
|
8383
|
+
'EmptyOrderLineSelectionError',
|
|
8384
|
+
'Fulfillment',
|
|
8385
|
+
'FulfillmentStateTransitionError',
|
|
8386
|
+
'InsufficientStockOnHandError',
|
|
8387
|
+
'InvalidFulfillmentHandlerError',
|
|
8388
|
+
'ItemsAlreadyFulfilledError',
|
|
8386
8389
|
],
|
|
8387
|
-
|
|
8388
|
-
|
|
8389
|
-
|
|
8390
|
+
AddManualPaymentToOrderResult: ['ManualPaymentStateError', 'Order'],
|
|
8391
|
+
AuthenticationResult: ['CurrentUser', 'InvalidCredentialsError'],
|
|
8392
|
+
CancelOrderResult: [
|
|
8393
|
+
'CancelActiveOrderError',
|
|
8394
|
+
'EmptyOrderLineSelectionError',
|
|
8395
|
+
'MultipleOrderError',
|
|
8396
|
+
'Order',
|
|
8397
|
+
'OrderStateTransitionError',
|
|
8398
|
+
'QuantityTooGreatError',
|
|
8390
8399
|
],
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
|
|
8400
|
+
CancelPaymentResult: ['CancelPaymentError', 'Payment', 'PaymentStateTransitionError'],
|
|
8401
|
+
CreateAssetResult: ['Asset', 'MimeTypeError'],
|
|
8402
|
+
CreateChannelResult: ['Channel', 'LanguageNotAvailableError'],
|
|
8403
|
+
CreateCustomerResult: ['Customer', 'EmailAddressConflictError'],
|
|
8404
|
+
CreatePromotionResult: ['MissingConditionsError', 'Promotion'],
|
|
8405
|
+
CustomField: [
|
|
8406
|
+
'BooleanCustomFieldConfig',
|
|
8407
|
+
'DateTimeCustomFieldConfig',
|
|
8408
|
+
'FloatCustomFieldConfig',
|
|
8409
|
+
'IntCustomFieldConfig',
|
|
8410
|
+
'LocaleStringCustomFieldConfig',
|
|
8411
|
+
'RelationCustomFieldConfig',
|
|
8412
|
+
'StringCustomFieldConfig',
|
|
8413
|
+
'TextCustomFieldConfig',
|
|
8400
8414
|
],
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8415
|
+
CustomFieldConfig: [
|
|
8416
|
+
'BooleanCustomFieldConfig',
|
|
8417
|
+
'DateTimeCustomFieldConfig',
|
|
8418
|
+
'FloatCustomFieldConfig',
|
|
8419
|
+
'IntCustomFieldConfig',
|
|
8420
|
+
'LocaleStringCustomFieldConfig',
|
|
8421
|
+
'RelationCustomFieldConfig',
|
|
8422
|
+
'StringCustomFieldConfig',
|
|
8423
|
+
'TextCustomFieldConfig',
|
|
8410
8424
|
],
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8425
|
+
ErrorResult: [
|
|
8426
|
+
'AlreadyRefundedError',
|
|
8427
|
+
'CancelActiveOrderError',
|
|
8428
|
+
'CancelPaymentError',
|
|
8429
|
+
'ChannelDefaultLanguageError',
|
|
8430
|
+
'CouponCodeExpiredError',
|
|
8431
|
+
'CouponCodeInvalidError',
|
|
8432
|
+
'CouponCodeLimitError',
|
|
8433
|
+
'CreateFulfillmentError',
|
|
8434
|
+
'EmailAddressConflictError',
|
|
8435
|
+
'EmptyOrderLineSelectionError',
|
|
8436
|
+
'FulfillmentStateTransitionError',
|
|
8437
|
+
'InsufficientStockError',
|
|
8438
|
+
'InsufficientStockOnHandError',
|
|
8439
|
+
'InvalidCredentialsError',
|
|
8440
|
+
'InvalidFulfillmentHandlerError',
|
|
8441
|
+
'ItemsAlreadyFulfilledError',
|
|
8442
|
+
'LanguageNotAvailableError',
|
|
8443
|
+
'ManualPaymentStateError',
|
|
8444
|
+
'MimeTypeError',
|
|
8445
|
+
'MissingConditionsError',
|
|
8446
|
+
'MultipleOrderError',
|
|
8447
|
+
'NativeAuthStrategyError',
|
|
8448
|
+
'NegativeQuantityError',
|
|
8449
|
+
'NoChangesSpecifiedError',
|
|
8450
|
+
'NothingToRefundError',
|
|
8451
|
+
'OrderLimitError',
|
|
8452
|
+
'OrderModificationStateError',
|
|
8453
|
+
'OrderStateTransitionError',
|
|
8454
|
+
'PaymentMethodMissingError',
|
|
8455
|
+
'PaymentOrderMismatchError',
|
|
8456
|
+
'PaymentStateTransitionError',
|
|
8457
|
+
'ProductOptionInUseError',
|
|
8458
|
+
'QuantityTooGreatError',
|
|
8459
|
+
'RefundOrderStateError',
|
|
8460
|
+
'RefundPaymentIdMissingError',
|
|
8461
|
+
'RefundStateTransitionError',
|
|
8462
|
+
'SettlePaymentError',
|
|
8448
8463
|
],
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8455
|
-
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
|
|
8459
|
-
|
|
8460
|
-
|
|
8464
|
+
ModifyOrderResult: [
|
|
8465
|
+
'CouponCodeExpiredError',
|
|
8466
|
+
'CouponCodeInvalidError',
|
|
8467
|
+
'CouponCodeLimitError',
|
|
8468
|
+
'InsufficientStockError',
|
|
8469
|
+
'NegativeQuantityError',
|
|
8470
|
+
'NoChangesSpecifiedError',
|
|
8471
|
+
'Order',
|
|
8472
|
+
'OrderLimitError',
|
|
8473
|
+
'OrderModificationStateError',
|
|
8474
|
+
'PaymentMethodMissingError',
|
|
8475
|
+
'RefundPaymentIdMissingError',
|
|
8461
8476
|
],
|
|
8462
|
-
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8477
|
+
NativeAuthenticationResult: ['CurrentUser', 'InvalidCredentialsError', 'NativeAuthStrategyError'],
|
|
8478
|
+
Node: [
|
|
8479
|
+
'Address',
|
|
8480
|
+
'Administrator',
|
|
8481
|
+
'Allocation',
|
|
8482
|
+
'Asset',
|
|
8483
|
+
'AuthenticationMethod',
|
|
8484
|
+
'Cancellation',
|
|
8485
|
+
'Channel',
|
|
8486
|
+
'Collection',
|
|
8487
|
+
'Country',
|
|
8488
|
+
'Customer',
|
|
8489
|
+
'CustomerGroup',
|
|
8490
|
+
'Facet',
|
|
8491
|
+
'FacetValue',
|
|
8492
|
+
'Fulfillment',
|
|
8493
|
+
'HistoryEntry',
|
|
8494
|
+
'Job',
|
|
8495
|
+
'Order',
|
|
8496
|
+
'OrderItem',
|
|
8497
|
+
'OrderLine',
|
|
8498
|
+
'OrderModification',
|
|
8499
|
+
'Payment',
|
|
8500
|
+
'PaymentMethod',
|
|
8501
|
+
'Product',
|
|
8502
|
+
'ProductOption',
|
|
8503
|
+
'ProductOptionGroup',
|
|
8504
|
+
'ProductVariant',
|
|
8505
|
+
'Promotion',
|
|
8506
|
+
'Refund',
|
|
8507
|
+
'Release',
|
|
8508
|
+
'Return',
|
|
8509
|
+
'Role',
|
|
8510
|
+
'Sale',
|
|
8511
|
+
'ShippingMethod',
|
|
8512
|
+
'StockAdjustment',
|
|
8513
|
+
'Surcharge',
|
|
8514
|
+
'Tag',
|
|
8515
|
+
'TaxCategory',
|
|
8516
|
+
'TaxRate',
|
|
8517
|
+
'User',
|
|
8518
|
+
'Zone',
|
|
8466
8519
|
],
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
"OrderLine",
|
|
8487
|
-
"OrderModification",
|
|
8488
|
-
"Payment",
|
|
8489
|
-
"PaymentMethod",
|
|
8490
|
-
"Product",
|
|
8491
|
-
"ProductOption",
|
|
8492
|
-
"ProductOptionGroup",
|
|
8493
|
-
"ProductVariant",
|
|
8494
|
-
"Promotion",
|
|
8495
|
-
"Refund",
|
|
8496
|
-
"Release",
|
|
8497
|
-
"Return",
|
|
8498
|
-
"Role",
|
|
8499
|
-
"Sale",
|
|
8500
|
-
"ShippingMethod",
|
|
8501
|
-
"StockAdjustment",
|
|
8502
|
-
"Surcharge",
|
|
8503
|
-
"Tag",
|
|
8504
|
-
"TaxCategory",
|
|
8505
|
-
"TaxRate",
|
|
8506
|
-
"User",
|
|
8507
|
-
"Zone"
|
|
8520
|
+
PaginatedList: [
|
|
8521
|
+
'AdministratorList',
|
|
8522
|
+
'AssetList',
|
|
8523
|
+
'CollectionList',
|
|
8524
|
+
'CountryList',
|
|
8525
|
+
'CustomerGroupList',
|
|
8526
|
+
'CustomerList',
|
|
8527
|
+
'FacetList',
|
|
8528
|
+
'HistoryEntryList',
|
|
8529
|
+
'JobList',
|
|
8530
|
+
'OrderList',
|
|
8531
|
+
'PaymentMethodList',
|
|
8532
|
+
'ProductList',
|
|
8533
|
+
'ProductVariantList',
|
|
8534
|
+
'PromotionList',
|
|
8535
|
+
'RoleList',
|
|
8536
|
+
'ShippingMethodList',
|
|
8537
|
+
'TagList',
|
|
8538
|
+
'TaxRateList',
|
|
8508
8539
|
],
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
"OrderList",
|
|
8520
|
-
"PaymentMethodList",
|
|
8521
|
-
"ProductList",
|
|
8522
|
-
"ProductVariantList",
|
|
8523
|
-
"PromotionList",
|
|
8524
|
-
"RoleList",
|
|
8525
|
-
"ShippingMethodList",
|
|
8526
|
-
"TagList",
|
|
8527
|
-
"TaxRateList"
|
|
8540
|
+
RefundOrderResult: [
|
|
8541
|
+
'AlreadyRefundedError',
|
|
8542
|
+
'MultipleOrderError',
|
|
8543
|
+
'NothingToRefundError',
|
|
8544
|
+
'OrderStateTransitionError',
|
|
8545
|
+
'PaymentOrderMismatchError',
|
|
8546
|
+
'QuantityTooGreatError',
|
|
8547
|
+
'Refund',
|
|
8548
|
+
'RefundOrderStateError',
|
|
8549
|
+
'RefundStateTransitionError',
|
|
8528
8550
|
],
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
"Refund",
|
|
8537
|
-
"RefundOrderStateError",
|
|
8538
|
-
"RefundStateTransitionError"
|
|
8551
|
+
RemoveOptionGroupFromProductResult: ['Product', 'ProductOptionInUseError'],
|
|
8552
|
+
SearchResultPrice: ['PriceRange', 'SinglePrice'],
|
|
8553
|
+
SettlePaymentResult: [
|
|
8554
|
+
'OrderStateTransitionError',
|
|
8555
|
+
'Payment',
|
|
8556
|
+
'PaymentStateTransitionError',
|
|
8557
|
+
'SettlePaymentError',
|
|
8539
8558
|
],
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
],
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
],
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
"PaymentStateTransitionError",
|
|
8552
|
-
"SettlePaymentError"
|
|
8553
|
-
],
|
|
8554
|
-
"SettleRefundResult": [
|
|
8555
|
-
"Refund",
|
|
8556
|
-
"RefundStateTransitionError"
|
|
8557
|
-
],
|
|
8558
|
-
"StockMovement": [
|
|
8559
|
-
"Allocation",
|
|
8560
|
-
"Cancellation",
|
|
8561
|
-
"Release",
|
|
8562
|
-
"Return",
|
|
8563
|
-
"Sale",
|
|
8564
|
-
"StockAdjustment"
|
|
8565
|
-
],
|
|
8566
|
-
"StockMovementItem": [
|
|
8567
|
-
"Allocation",
|
|
8568
|
-
"Cancellation",
|
|
8569
|
-
"Release",
|
|
8570
|
-
"Return",
|
|
8571
|
-
"Sale",
|
|
8572
|
-
"StockAdjustment"
|
|
8573
|
-
],
|
|
8574
|
-
"TransitionFulfillmentToStateResult": [
|
|
8575
|
-
"Fulfillment",
|
|
8576
|
-
"FulfillmentStateTransitionError"
|
|
8577
|
-
],
|
|
8578
|
-
"TransitionOrderToStateResult": [
|
|
8579
|
-
"Order",
|
|
8580
|
-
"OrderStateTransitionError"
|
|
8581
|
-
],
|
|
8582
|
-
"TransitionPaymentToStateResult": [
|
|
8583
|
-
"Payment",
|
|
8584
|
-
"PaymentStateTransitionError"
|
|
8585
|
-
],
|
|
8586
|
-
"UpdateChannelResult": [
|
|
8587
|
-
"Channel",
|
|
8588
|
-
"LanguageNotAvailableError"
|
|
8589
|
-
],
|
|
8590
|
-
"UpdateCustomerResult": [
|
|
8591
|
-
"Customer",
|
|
8592
|
-
"EmailAddressConflictError"
|
|
8593
|
-
],
|
|
8594
|
-
"UpdateGlobalSettingsResult": [
|
|
8595
|
-
"ChannelDefaultLanguageError",
|
|
8596
|
-
"GlobalSettings"
|
|
8597
|
-
],
|
|
8598
|
-
"UpdatePromotionResult": [
|
|
8599
|
-
"MissingConditionsError",
|
|
8600
|
-
"Promotion"
|
|
8601
|
-
]
|
|
8602
|
-
}
|
|
8559
|
+
SettleRefundResult: ['Refund', 'RefundStateTransitionError'],
|
|
8560
|
+
StockMovement: ['Allocation', 'Cancellation', 'Release', 'Return', 'Sale', 'StockAdjustment'],
|
|
8561
|
+
StockMovementItem: ['Allocation', 'Cancellation', 'Release', 'Return', 'Sale', 'StockAdjustment'],
|
|
8562
|
+
TransitionFulfillmentToStateResult: ['Fulfillment', 'FulfillmentStateTransitionError'],
|
|
8563
|
+
TransitionOrderToStateResult: ['Order', 'OrderStateTransitionError'],
|
|
8564
|
+
TransitionPaymentToStateResult: ['Payment', 'PaymentStateTransitionError'],
|
|
8565
|
+
UpdateChannelResult: ['Channel', 'LanguageNotAvailableError'],
|
|
8566
|
+
UpdateCustomerResult: ['Customer', 'EmailAddressConflictError'],
|
|
8567
|
+
UpdateGlobalSettingsResult: ['ChannelDefaultLanguageError', 'GlobalSettings'],
|
|
8568
|
+
UpdatePromotionResult: ['MissingConditionsError', 'Promotion'],
|
|
8569
|
+
},
|
|
8603
8570
|
};
|
|
8604
8571
|
|
|
8605
8572
|
// Allows the introspectionResult to be imported as a named symbol
|
|
@@ -9563,7 +9530,7 @@ function configurableDefinitionToInstance(def) {
|
|
|
9563
9530
|
* ```
|
|
9564
9531
|
* {
|
|
9565
9532
|
* code: 'my-operation',
|
|
9566
|
-
*
|
|
9533
|
+
* arguments: [
|
|
9567
9534
|
* { name: 'someProperty', value: 'foo' }
|
|
9568
9535
|
* ]
|
|
9569
9536
|
* }
|
|
@@ -9572,12 +9539,15 @@ function configurableDefinitionToInstance(def) {
|
|
|
9572
9539
|
function toConfigurableOperationInput(operation, formValueOperations) {
|
|
9573
9540
|
return {
|
|
9574
9541
|
code: operation.code,
|
|
9575
|
-
arguments:
|
|
9576
|
-
|
|
9577
|
-
|
|
9578
|
-
|
|
9579
|
-
:
|
|
9580
|
-
|
|
9542
|
+
arguments: operation.args.map(({ name, value }, j) => {
|
|
9543
|
+
const formValue = formValueOperations.args[name];
|
|
9544
|
+
return {
|
|
9545
|
+
name,
|
|
9546
|
+
value: (formValue === null || formValue === void 0 ? void 0 : formValue.hasOwnProperty('value'))
|
|
9547
|
+
? encodeConfigArgValue(formValue.value)
|
|
9548
|
+
: encodeConfigArgValue(formValue),
|
|
9549
|
+
};
|
|
9550
|
+
}),
|
|
9581
9551
|
};
|
|
9582
9552
|
}
|
|
9583
9553
|
function configurableOperationValueIsValid(def, value) {
|
|
@@ -16360,7 +16330,7 @@ function patchObject(obj, patch) {
|
|
|
16360
16330
|
}
|
|
16361
16331
|
|
|
16362
16332
|
// Auto-generated by the set-version.js script.
|
|
16363
|
-
const ADMIN_UI_VERSION = '2.0.0-next.
|
|
16333
|
+
const ADMIN_UI_VERSION = '2.0.0-next.12';
|
|
16364
16334
|
|
|
16365
16335
|
/**
|
|
16366
16336
|
* Responsible for registering dashboard widget components and querying for layouts.
|
|
@@ -16580,5 +16550,5 @@ function unicodePatternValidator(patternRe) {
|
|
|
16580
16550
|
* Generated bundle index. Do not edit.
|
|
16581
16551
|
*/
|
|
16582
16552
|
|
|
16583
|
-
export { ADDRESS_FRAGMENT, ADD_CUSTOMERS_TO_GROUP, ADD_MANUAL_PAYMENT_TO_ORDER, ADD_MEMBERS_TO_ZONE, ADD_NOTE_TO_CUSTOMER, ADD_NOTE_TO_ORDER, ADD_OPTION_GROUP_TO_PRODUCT, ADD_OPTION_TO_GROUP, ADMINISTRATOR_FRAGMENT, ADMIN_UI_VERSION, ALL_CUSTOM_FIELDS_FRAGMENT, ASSET_FRAGMENT, ASSIGN_PRODUCTS_TO_CHANNEL, ASSIGN_ROLE_TO_ADMINISTRATOR, ASSIGN_VARIANTS_TO_CHANNEL, ATTEMPT_LOGIN, AUTH_REDIRECT_PARAM, ActionBarComponent, ActionBarItemsComponent, ActionBarLeftComponent, ActionBarRightComponent, AddressFormComponent, AdjustmentType, AdministratorDataService, AffixedInputComponent, AppComponent, AppComponentModule, AppShellComponent, AssetFileInputComponent, AssetGalleryComponent, AssetPickerDialogComponent, AssetPreviewComponent, AssetPreviewDialogComponent, AssetPreviewLinksComponent, AssetPreviewPipe, AssetSearchInputComponent, AssetType, AuthDataService, AuthGuard, AuthService, BOOLEAN_CUSTOM_FIELD_FRAGMENT, BaseDataService, BaseDetailComponent, BaseEntityResolver, BaseListComponent, BooleanFormInputComponent, BreadcrumbComponent, CANCEL_JOB, CANCEL_ORDER, CHANNEL_FRAGMENT, COLLECTION_FRAGMENT, CONFIGURABLE_OPERATION_DEF_FRAGMENT, CONFIGURABLE_OPERATION_FRAGMENT, COUNTRY_FRAGMENT, CREATE_ADMINISTRATOR, CREATE_ASSETS, CREATE_CHANNEL, CREATE_COLLECTION, CREATE_COUNTRY, CREATE_CUSTOMER, CREATE_CUSTOMER_ADDRESS, CREATE_CUSTOMER_GROUP, CREATE_FACET, CREATE_FACET_VALUES, CREATE_FULFILLMENT, CREATE_PAYMENT_METHOD, CREATE_PRODUCT, CREATE_PRODUCT_OPTION_GROUP, CREATE_PRODUCT_VARIANTS, CREATE_PROMOTION, CREATE_ROLE, CREATE_SHIPPING_METHOD, CREATE_TAG, CREATE_TAX_CATEGORY, CREATE_TAX_RATE, CREATE_ZONE, CURRENT_USER_FRAGMENT, CUSTOMER_FRAGMENT, CUSTOMER_GROUP_FRAGMENT, CUSTOM_FIELD_CONFIG_FRAGMENT, CanDeactivateDetailGuard, ChannelAssignmentControlComponent, ChannelBadgeComponent, ChannelLabelPipe, ChannelSwitcherComponent, CheckJobsLink, ChipComponent, ClientDataService, CollectionDataService, CombinationModeFormInputComponent, ComponentRegistryService, ConfigurableInputComponent, CoreModule, CurrencyCode, CurrencyFormInputComponent, CurrencyInputComponent, CustomDetailComponentHostComponent, CustomDetailComponentService, CustomFieldComponentService, CustomFieldControlComponent, CustomFieldLabelPipe, CustomHttpTranslationLoader, CustomerDataService, CustomerGroupFormInputComponent, CustomerLabelComponent, DATE_TIME_CUSTOM_FIELD_FRAGMENT, DELETE_ADMINISTRATOR, DELETE_ASSETS, DELETE_CHANNEL, DELETE_COLLECTION, DELETE_COUNTRY, DELETE_CUSTOMER, DELETE_CUSTOMER_ADDRESS, DELETE_CUSTOMER_GROUP, DELETE_CUSTOMER_NOTE, DELETE_FACET, DELETE_FACET_VALUES, DELETE_ORDER_NOTE, DELETE_PAYMENT_METHOD, DELETE_PRODUCT, DELETE_PRODUCT_VARIANT, DELETE_PROMOTION, DELETE_ROLE, DELETE_SHIPPING_METHOD, DELETE_TAG, DELETE_TAX_CATEGORY, DELETE_TAX_RATE, DELETE_ZONE, DISCOUNT_FRAGMENT, DashboardWidgetService, DataModule, DataService, DataTableColumnComponent, DataTableComponent, DateFormInputComponent, DatetimePickerComponent, DatetimePickerService, DefaultInterceptor, DeletionResult, DialogButtonsDirective, DialogComponentOutletComponent, DialogTitleDirective, DisabledDirective, DropdownComponent, DropdownItemDirective, DropdownMenuComponent, DropdownTriggerDirective, DurationPipe, DynamicFormInputComponent, ERROR_RESULT_FRAGMENT, EditNoteDialogComponent, EmptyPlaceholderComponent, EntityInfoComponent, ErrorCode, ExtensionHostComponent, ExtensionHostConfig, ExtensionHostService, ExternalImageDialogComponent, FACET_VALUE_FRAGMENT, FACET_WITH_VALUES_FRAGMENT, FLOAT_CUSTOM_FIELD_FRAGMENT, FULFILLMENT_FRAGMENT, FacetDataService, FacetValueChipComponent, FacetValueFormInputComponent, FacetValueSelectorComponent, FetchAdapter, FileSizePipe, FocalPointControlComponent, FormFieldComponent, FormFieldControlDirective, FormItemComponent, FormattedAddressComponent, GET_ACTIVE_ADMINISTRATOR, GET_ACTIVE_CHANNEL, GET_ADJUSTMENT_OPERATIONS, GET_ADMINISTRATOR, GET_ADMINISTRATORS, GET_ASSET, GET_ASSET_LIST, GET_AVAILABLE_COUNTRIES, GET_CHANNEL, GET_CHANNELS, GET_CLIENT_STATE, GET_COLLECTION, GET_COLLECTION_CONTENTS, GET_COLLECTION_FILTERS, GET_COLLECTION_LIST, GET_COUNTRY, GET_COUNTRY_LIST, GET_CURRENT_USER, GET_CUSTOMER, GET_CUSTOMER_GROUPS, GET_CUSTOMER_GROUP_WITH_CUSTOMERS, GET_CUSTOMER_HISTORY, GET_CUSTOMER_LIST, GET_FACET_LIST, GET_FACET_WITH_VALUES, GET_GLOBAL_SETTINGS, GET_JOBS_BY_ID, GET_JOBS_LIST, GET_JOB_INFO, GET_JOB_QUEUE_LIST, GET_NEWTORK_STATUS, GET_ORDER, GET_ORDERS_LIST, GET_ORDER_HISTORY, GET_ORDER_SUMMARY, GET_PAYMENT_METHOD, GET_PAYMENT_METHOD_LIST, GET_PAYMENT_METHOD_OPERATIONS, GET_PENDING_SEARCH_INDEX_UPDATES, GET_PRODUCT_LIST, GET_PRODUCT_OPTION_GROUP, GET_PRODUCT_OPTION_GROUPS, GET_PRODUCT_SIMPLE, GET_PRODUCT_VARIANT, GET_PRODUCT_VARIANT_LIST, GET_PRODUCT_VARIANT_LIST_SIMPLE, GET_PRODUCT_VARIANT_OPTIONS, GET_PRODUCT_WITH_VARIANTS, GET_PROMOTION, GET_PROMOTION_LIST, GET_ROLE, GET_ROLES, GET_SERVER_CONFIG, GET_SHIPPING_METHOD, GET_SHIPPING_METHOD_LIST, GET_SHIPPING_METHOD_OPERATIONS, GET_TAG, GET_TAG_LIST, GET_TAX_CATEGORIES, GET_TAX_CATEGORY, GET_TAX_RATE, GET_TAX_RATE_LIST, GET_TAX_RATE_LIST_SIMPLE, GET_UI_STATE, GET_USER_STATUS, GET_ZONE, GET_ZONES, GLOBAL_SETTINGS_FRAGMENT, GlobalFlag, HasPermissionPipe, HealthCheckService, HelpTooltipComponent, HistoryEntryDetailComponent, HistoryEntryType, HttpLoaderFactory, I18nService, INT_CUSTOM_FIELD_FRAGMENT, IfDefaultChannelActiveDirective, IfDirectiveBase, IfMultichannelDirective, IfPermissionsDirective, InjectableTranslateMessageFormatCompiler, ItemsPerPageControlsComponent, JOB_INFO_FRAGMENT, JobQueueService, JobState, JsonEditorFormInputComponent, LOCALE_STRING_CUSTOM_FIELD_FRAGMENT, LOG_OUT, LabeledDataComponent, LanguageCode, LanguageSelectorComponent, LinkDialogComponent, LocalStorageService, LocaleBasePipe, LocaleCurrencyNamePipe, LocaleCurrencyPipe, LocaleDatePipe, LocaleLanguageNamePipe, LocaleRegionNamePipe, LogicalOperator, MODIFY_ORDER, MOVE_COLLECTION, MainNavComponent, ManageTagsDialogComponent, ModalDialogComponent, ModalService, NavBuilderService, NotificationComponent, NotificationService, NumberFormInputComponent, ORDER_ADDRESS_FRAGMENT, ORDER_DETAIL_FRAGMENT, ORDER_FRAGMENT, ORDER_LINE_FRAGMENT, ObjectTreeComponent, OmitTypenameLink, OrderDataService, OrderStateLabelComponent, OverlayHostComponent, OverlayHostService, PAYMENT_METHOD_FRAGMENT, PREVIEW_COLLECTION_CONTENTS, PRODUCT_DETAIL_FRAGMENT, PRODUCT_OPTION_FRAGMENT, PRODUCT_OPTION_GROUP_FRAGMENT, PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT, PRODUCT_SELECTOR_SEARCH, PRODUCT_VARIANT_FRAGMENT, PROMOTION_FRAGMENT, PaginationControlsComponent, PasswordFormInputComponent, PercentageSuffixInputComponent, Permission, ProductDataService, ProductMultiSelectorDialogComponent, ProductMultiSelectorFormInputComponent, ProductSearchInputComponent, ProductSelectorFormInputComponent, ProductVariantSelectorComponent, PromotionDataService, ProsemirrorService, QueryResult, REFUND_FRAGMENT, REFUND_ORDER, REINDEX, RELATION_CUSTOM_FIELD_FRAGMENT, REMOVE_CUSTOMERS_FROM_GROUP, REMOVE_MEMBERS_FROM_ZONE, REMOVE_OPTION_GROUP_FROM_PRODUCT, REMOVE_PRODUCTS_FROM_CHANNEL, REMOVE_VARIANTS_FROM_CHANNEL, REQUEST_COMPLETED, REQUEST_STARTED, ROLE_FRAGMENT, RUN_PENDING_SEARCH_INDEX_UPDATES, RelationAssetInputComponent, RelationCardComponent, RelationCardDetailDirective, RelationCardPreviewDirective, RelationCustomerInputComponent, RelationFormInputComponent, RelationGenericInputComponent, RelationProductInputComponent, RelationProductVariantInputComponent, RelationSelectorDialogComponent, RichTextEditorComponent, RichTextFormInputComponent, SEARCH_PRODUCTS, SETTLE_PAYMENT, SETTLE_REFUND, SET_ACTIVE_CHANNEL, SET_AS_LOGGED_IN, SET_AS_LOGGED_OUT, SET_CONTENT_LANGUAGE, SET_DISPLAY_UI_EXTENSION_POINTS, SET_UI_LANGUAGE_AND_LOCALE, SET_UI_LOCALE, SET_UI_THEME, SHIPPING_METHOD_FRAGMENT, STRING_CUSTOM_FIELD_FRAGMENT, SelectFormInputComponent, SelectToggleComponent, SelectionManager, SentenceCasePipe, ServerConfigService, SettingsDataService, SharedModule, ShippingMethodDataService, SimpleDialogComponent, SingleSearchSelectionModel, SingleSearchSelectionModelFactory, SortOrder, SortPipe, StateI18nTokenPipe, StatusBadgeComponent, StockMovementType, StringToColorPipe, TAG_FRAGMENT, TAX_CATEGORY_FRAGMENT, TAX_RATE_FRAGMENT, TEST_ELIGIBLE_SHIPPING_METHODS, TEST_SHIPPING_METHOD, TEXT_CUSTOM_FIELD_FRAGMENT, TRANSITION_FULFILLMENT_TO_STATE, TRANSITION_ORDER_TO_STATE, TRANSITION_PAYMENT_TO_STATE, TabbedCustomFieldsComponent, TableRowActionComponent, TagSelectorComponent, TextFormInputComponent, TextareaFormInputComponent, ThemeSwitcherComponent, TimeAgoPipe, TimelineEntryComponent, TitleInputComponent, UPDATE_ACTIVE_ADMINISTRATOR, UPDATE_ADMINISTRATOR, UPDATE_ASSET, UPDATE_CHANNEL, UPDATE_COLLECTION, UPDATE_COUNTRY, UPDATE_CUSTOMER, UPDATE_CUSTOMER_ADDRESS, UPDATE_CUSTOMER_GROUP, UPDATE_CUSTOMER_NOTE, UPDATE_FACET, UPDATE_FACET_VALUES, UPDATE_GLOBAL_SETTINGS, UPDATE_ORDER_CUSTOM_FIELDS, UPDATE_ORDER_NOTE, UPDATE_PAYMENT_METHOD, UPDATE_PRODUCT, UPDATE_PRODUCT_OPTION, UPDATE_PRODUCT_OPTION_GROUP, UPDATE_PRODUCT_VARIANTS, UPDATE_PROMOTION, UPDATE_ROLE, UPDATE_SHIPPING_METHOD, UPDATE_TAG, UPDATE_TAX_CATEGORY, UPDATE_TAX_RATE, UPDATE_USER_CHANNELS, UPDATE_ZONE, USER_STATUS_FRAGMENT, UiExtensionPointComponent, UiLanguageSwitcherDialogComponent, UserMenuComponent, ZONE_FRAGMENT, addActionBarItem, addCustomFields, addNavMenuItem, addNavMenuSection, blockQuoteRule, buildInputRules, buildKeymap, buildMenuItems, bulletListRule, canInsert, clientResolvers, codeBlockRule, configurableDefinitionToInstance, configurableOperationValueIsValid, createApollo, createResolveData, createUpdatedTranslatable, dayOfWeekIndex, defaultFormInputs, detailBreadcrumb, encodeConfigArgValue, findTranslation, flattenFacetValues, getAppConfig, getClientDefaults, getConfigArgValue, getDefaultConfigArgValue, getDefaultUiLanguage, getDefaultUiLocale, getLocales, getMarkRange, getServerLocation, headingRule, hostExternalFrame, initializeServerConfigService, insertImageItem, interpolateDescription, result as introspectionResult, isEntityCreateOrUpdateMutation, jsonValidator, linkItem, linkSelectPlugin, loadAppConfig, markActive, orderedListRule, registerCustomDetailComponent, registerCustomFieldComponent, registerDashboardWidget, registerDefaultFormInputs, registerFormInputComponent, removeReadonlyCustomFields, setDashboardWidgetLayout, stringToColor, toConfigurableOperationInput, transformRelationCustomFieldInputs, unicodePatternValidator, weekDayNames };
|
|
16553
|
+
export { ADDRESS_FRAGMENT, ADD_CUSTOMERS_TO_GROUP, ADD_MANUAL_PAYMENT_TO_ORDER, ADD_MEMBERS_TO_ZONE, ADD_NOTE_TO_CUSTOMER, ADD_NOTE_TO_ORDER, ADD_OPTION_GROUP_TO_PRODUCT, ADD_OPTION_TO_GROUP, ADMINISTRATOR_FRAGMENT, ADMIN_UI_VERSION, ALL_CUSTOM_FIELDS_FRAGMENT, ASSET_FRAGMENT, ASSIGN_PRODUCTS_TO_CHANNEL, ASSIGN_ROLE_TO_ADMINISTRATOR, ASSIGN_VARIANTS_TO_CHANNEL, ATTEMPT_LOGIN, AUTH_REDIRECT_PARAM, ActionBarComponent, ActionBarItemsComponent, ActionBarLeftComponent, ActionBarRightComponent, AddressFormComponent, AdjustmentType, AdministratorDataService, AffixedInputComponent, AppComponent, AppComponentModule, AppShellComponent, AssetFileInputComponent, AssetGalleryComponent, AssetPickerDialogComponent, AssetPreviewComponent, AssetPreviewDialogComponent, AssetPreviewLinksComponent, AssetPreviewPipe, AssetSearchInputComponent, AssetType, AuthDataService, AuthGuard, AuthService, BOOLEAN_CUSTOM_FIELD_FRAGMENT, BaseDataService, BaseDetailComponent, BaseEntityResolver, BaseListComponent, BooleanFormInputComponent, BreadcrumbComponent, CANCEL_JOB, CANCEL_ORDER, CANCEL_PAYMENT, CHANNEL_FRAGMENT, COLLECTION_FRAGMENT, CONFIGURABLE_OPERATION_DEF_FRAGMENT, CONFIGURABLE_OPERATION_FRAGMENT, COUNTRY_FRAGMENT, CREATE_ADMINISTRATOR, CREATE_ASSETS, CREATE_CHANNEL, CREATE_COLLECTION, CREATE_COUNTRY, CREATE_CUSTOMER, CREATE_CUSTOMER_ADDRESS, CREATE_CUSTOMER_GROUP, CREATE_FACET, CREATE_FACET_VALUES, CREATE_FULFILLMENT, CREATE_PAYMENT_METHOD, CREATE_PRODUCT, CREATE_PRODUCT_OPTION_GROUP, CREATE_PRODUCT_VARIANTS, CREATE_PROMOTION, CREATE_ROLE, CREATE_SHIPPING_METHOD, CREATE_TAG, CREATE_TAX_CATEGORY, CREATE_TAX_RATE, CREATE_ZONE, CURRENT_USER_FRAGMENT, CUSTOMER_FRAGMENT, CUSTOMER_GROUP_FRAGMENT, CUSTOM_FIELD_CONFIG_FRAGMENT, CanDeactivateDetailGuard, ChannelAssignmentControlComponent, ChannelBadgeComponent, ChannelLabelPipe, ChannelSwitcherComponent, CheckJobsLink, ChipComponent, ClientDataService, CollectionDataService, CombinationModeFormInputComponent, ComponentRegistryService, ConfigurableInputComponent, CoreModule, CurrencyCode, CurrencyFormInputComponent, CurrencyInputComponent, CustomDetailComponentHostComponent, CustomDetailComponentService, CustomFieldComponentService, CustomFieldControlComponent, CustomFieldLabelPipe, CustomHttpTranslationLoader, CustomerDataService, CustomerGroupFormInputComponent, CustomerLabelComponent, DATE_TIME_CUSTOM_FIELD_FRAGMENT, DELETE_ADMINISTRATOR, DELETE_ASSETS, DELETE_CHANNEL, DELETE_COLLECTION, DELETE_COUNTRY, DELETE_CUSTOMER, DELETE_CUSTOMER_ADDRESS, DELETE_CUSTOMER_GROUP, DELETE_CUSTOMER_NOTE, DELETE_FACET, DELETE_FACET_VALUES, DELETE_ORDER_NOTE, DELETE_PAYMENT_METHOD, DELETE_PRODUCT, DELETE_PRODUCT_OPTION, DELETE_PRODUCT_VARIANT, DELETE_PROMOTION, DELETE_ROLE, DELETE_SHIPPING_METHOD, DELETE_TAG, DELETE_TAX_CATEGORY, DELETE_TAX_RATE, DELETE_ZONE, DISCOUNT_FRAGMENT, DashboardWidgetService, DataModule, DataService, DataTableColumnComponent, DataTableComponent, DateFormInputComponent, DatetimePickerComponent, DatetimePickerService, DefaultInterceptor, DeletionResult, DialogButtonsDirective, DialogComponentOutletComponent, DialogTitleDirective, DisabledDirective, DropdownComponent, DropdownItemDirective, DropdownMenuComponent, DropdownTriggerDirective, DurationPipe, DynamicFormInputComponent, ERROR_RESULT_FRAGMENT, EditNoteDialogComponent, EmptyPlaceholderComponent, EntityInfoComponent, ErrorCode, ExtensionHostComponent, ExtensionHostConfig, ExtensionHostService, ExternalImageDialogComponent, FACET_VALUE_FRAGMENT, FACET_WITH_VALUES_FRAGMENT, FLOAT_CUSTOM_FIELD_FRAGMENT, FULFILLMENT_FRAGMENT, FacetDataService, FacetValueChipComponent, FacetValueFormInputComponent, FacetValueSelectorComponent, FetchAdapter, FileSizePipe, FocalPointControlComponent, FormFieldComponent, FormFieldControlDirective, FormItemComponent, FormattedAddressComponent, GET_ACTIVE_ADMINISTRATOR, GET_ACTIVE_CHANNEL, GET_ADJUSTMENT_OPERATIONS, GET_ADMINISTRATOR, GET_ADMINISTRATORS, GET_ASSET, GET_ASSET_LIST, GET_AVAILABLE_COUNTRIES, GET_CHANNEL, GET_CHANNELS, GET_CLIENT_STATE, GET_COLLECTION, GET_COLLECTION_CONTENTS, GET_COLLECTION_FILTERS, GET_COLLECTION_LIST, GET_COUNTRY, GET_COUNTRY_LIST, GET_CURRENT_USER, GET_CUSTOMER, GET_CUSTOMER_GROUPS, GET_CUSTOMER_GROUP_WITH_CUSTOMERS, GET_CUSTOMER_HISTORY, GET_CUSTOMER_LIST, GET_FACET_LIST, GET_FACET_WITH_VALUES, GET_GLOBAL_SETTINGS, GET_JOBS_BY_ID, GET_JOBS_LIST, GET_JOB_INFO, GET_JOB_QUEUE_LIST, GET_NEWTORK_STATUS, GET_ORDER, GET_ORDERS_LIST, GET_ORDER_HISTORY, GET_ORDER_SUMMARY, GET_PAYMENT_METHOD, GET_PAYMENT_METHOD_LIST, GET_PAYMENT_METHOD_OPERATIONS, GET_PENDING_SEARCH_INDEX_UPDATES, GET_PRODUCT_LIST, GET_PRODUCT_OPTION_GROUP, GET_PRODUCT_OPTION_GROUPS, GET_PRODUCT_SIMPLE, GET_PRODUCT_VARIANT, GET_PRODUCT_VARIANT_LIST, GET_PRODUCT_VARIANT_LIST_SIMPLE, GET_PRODUCT_VARIANT_OPTIONS, GET_PRODUCT_WITH_VARIANTS, GET_PROMOTION, GET_PROMOTION_LIST, GET_ROLE, GET_ROLES, GET_SERVER_CONFIG, GET_SHIPPING_METHOD, GET_SHIPPING_METHOD_LIST, GET_SHIPPING_METHOD_OPERATIONS, GET_TAG, GET_TAG_LIST, GET_TAX_CATEGORIES, GET_TAX_CATEGORY, GET_TAX_RATE, GET_TAX_RATE_LIST, GET_TAX_RATE_LIST_SIMPLE, GET_UI_STATE, GET_USER_STATUS, GET_ZONE, GET_ZONES, GLOBAL_SETTINGS_FRAGMENT, GlobalFlag, HasPermissionPipe, HealthCheckService, HelpTooltipComponent, HistoryEntryDetailComponent, HistoryEntryType, HttpLoaderFactory, I18nService, INT_CUSTOM_FIELD_FRAGMENT, IfDefaultChannelActiveDirective, IfDirectiveBase, IfMultichannelDirective, IfPermissionsDirective, InjectableTranslateMessageFormatCompiler, ItemsPerPageControlsComponent, JOB_INFO_FRAGMENT, JobQueueService, JobState, JsonEditorFormInputComponent, LOCALE_STRING_CUSTOM_FIELD_FRAGMENT, LOG_OUT, LabeledDataComponent, LanguageCode, LanguageSelectorComponent, LinkDialogComponent, LocalStorageService, LocaleBasePipe, LocaleCurrencyNamePipe, LocaleCurrencyPipe, LocaleDatePipe, LocaleLanguageNamePipe, LocaleRegionNamePipe, LogicalOperator, MODIFY_ORDER, MOVE_COLLECTION, MainNavComponent, ManageTagsDialogComponent, ModalDialogComponent, ModalService, NavBuilderService, NotificationComponent, NotificationService, NumberFormInputComponent, ORDER_ADDRESS_FRAGMENT, ORDER_DETAIL_FRAGMENT, ORDER_FRAGMENT, ORDER_LINE_FRAGMENT, ObjectTreeComponent, OmitTypenameLink, OrderDataService, OrderStateLabelComponent, OverlayHostComponent, OverlayHostService, PAYMENT_FRAGMENT, PAYMENT_METHOD_FRAGMENT, PREVIEW_COLLECTION_CONTENTS, PRODUCT_DETAIL_FRAGMENT, PRODUCT_OPTION_FRAGMENT, PRODUCT_OPTION_GROUP_FRAGMENT, PRODUCT_OPTION_GROUP_WITH_OPTIONS_FRAGMENT, PRODUCT_SELECTOR_SEARCH, PRODUCT_VARIANT_FRAGMENT, PROMOTION_FRAGMENT, PaginationControlsComponent, PasswordFormInputComponent, PercentageSuffixInputComponent, Permission, ProductDataService, ProductMultiSelectorDialogComponent, ProductMultiSelectorFormInputComponent, ProductSearchInputComponent, ProductSelectorFormInputComponent, ProductVariantSelectorComponent, PromotionDataService, ProsemirrorService, QueryResult, REFUND_FRAGMENT, REFUND_ORDER, REINDEX, RELATION_CUSTOM_FIELD_FRAGMENT, REMOVE_CUSTOMERS_FROM_GROUP, REMOVE_MEMBERS_FROM_ZONE, REMOVE_OPTION_GROUP_FROM_PRODUCT, REMOVE_PRODUCTS_FROM_CHANNEL, REMOVE_VARIANTS_FROM_CHANNEL, REQUEST_COMPLETED, REQUEST_STARTED, ROLE_FRAGMENT, RUN_PENDING_SEARCH_INDEX_UPDATES, RelationAssetInputComponent, RelationCardComponent, RelationCardDetailDirective, RelationCardPreviewDirective, RelationCustomerInputComponent, RelationFormInputComponent, RelationGenericInputComponent, RelationProductInputComponent, RelationProductVariantInputComponent, RelationSelectorDialogComponent, RichTextEditorComponent, RichTextFormInputComponent, SEARCH_PRODUCTS, SETTLE_PAYMENT, SETTLE_REFUND, SET_ACTIVE_CHANNEL, SET_AS_LOGGED_IN, SET_AS_LOGGED_OUT, SET_CONTENT_LANGUAGE, SET_DISPLAY_UI_EXTENSION_POINTS, SET_UI_LANGUAGE_AND_LOCALE, SET_UI_LOCALE, SET_UI_THEME, SHIPPING_METHOD_FRAGMENT, STRING_CUSTOM_FIELD_FRAGMENT, SelectFormInputComponent, SelectToggleComponent, SelectionManager, SentenceCasePipe, ServerConfigService, SettingsDataService, SharedModule, ShippingMethodDataService, SimpleDialogComponent, SingleSearchSelectionModel, SingleSearchSelectionModelFactory, SortOrder, SortPipe, StateI18nTokenPipe, StatusBadgeComponent, StockMovementType, StringToColorPipe, TAG_FRAGMENT, TAX_CATEGORY_FRAGMENT, TAX_RATE_FRAGMENT, TEST_ELIGIBLE_SHIPPING_METHODS, TEST_SHIPPING_METHOD, TEXT_CUSTOM_FIELD_FRAGMENT, TRANSITION_FULFILLMENT_TO_STATE, TRANSITION_ORDER_TO_STATE, TRANSITION_PAYMENT_TO_STATE, TabbedCustomFieldsComponent, TableRowActionComponent, TagSelectorComponent, TextFormInputComponent, TextareaFormInputComponent, ThemeSwitcherComponent, TimeAgoPipe, TimelineEntryComponent, TitleInputComponent, UPDATE_ACTIVE_ADMINISTRATOR, UPDATE_ADMINISTRATOR, UPDATE_ASSET, UPDATE_CHANNEL, UPDATE_COLLECTION, UPDATE_COUNTRY, UPDATE_CUSTOMER, UPDATE_CUSTOMER_ADDRESS, UPDATE_CUSTOMER_GROUP, UPDATE_CUSTOMER_NOTE, UPDATE_FACET, UPDATE_FACET_VALUES, UPDATE_GLOBAL_SETTINGS, UPDATE_ORDER_CUSTOM_FIELDS, UPDATE_ORDER_NOTE, UPDATE_PAYMENT_METHOD, UPDATE_PRODUCT, UPDATE_PRODUCT_OPTION, UPDATE_PRODUCT_OPTION_GROUP, UPDATE_PRODUCT_VARIANTS, UPDATE_PROMOTION, UPDATE_ROLE, UPDATE_SHIPPING_METHOD, UPDATE_TAG, UPDATE_TAX_CATEGORY, UPDATE_TAX_RATE, UPDATE_USER_CHANNELS, UPDATE_ZONE, USER_STATUS_FRAGMENT, UiExtensionPointComponent, UiLanguageSwitcherDialogComponent, UserMenuComponent, ZONE_FRAGMENT, addActionBarItem, addCustomFields, addNavMenuItem, addNavMenuSection, blockQuoteRule, buildInputRules, buildKeymap, buildMenuItems, bulletListRule, canInsert, clientResolvers, codeBlockRule, configurableDefinitionToInstance, configurableOperationValueIsValid, createApollo, createResolveData, createUpdatedTranslatable, dayOfWeekIndex, defaultFormInputs, detailBreadcrumb, encodeConfigArgValue, findTranslation, flattenFacetValues, getAppConfig, getClientDefaults, getConfigArgValue, getDefaultConfigArgValue, getDefaultUiLanguage, getDefaultUiLocale, getLocales, getMarkRange, getServerLocation, headingRule, hostExternalFrame, initializeServerConfigService, insertImageItem, interpolateDescription, result as introspectionResult, isEntityCreateOrUpdateMutation, jsonValidator, linkItem, linkSelectPlugin, loadAppConfig, markActive, orderedListRule, registerCustomDetailComponent, registerCustomFieldComponent, registerDashboardWidget, registerDefaultFormInputs, registerFormInputComponent, removeReadonlyCustomFields, setDashboardWidgetLayout, stringToColor, toConfigurableOperationInput, transformRelationCustomFieldInputs, unicodePatternValidator, weekDayNames };
|
|
16584
16554
|
//# sourceMappingURL=vendure-admin-ui-core.mjs.map
|