@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.
Files changed (54) hide show
  1. package/catalog/components/generate-product-variants/generate-product-variants.component.d.ts +3 -3
  2. package/catalog/components/option-value-input/option-value-input.component.d.ts +21 -9
  3. package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +10 -3
  4. package/core/common/generated-types.d.ts +242 -127
  5. package/core/common/utilities/configurable-operation-utils.d.ts +4 -2
  6. package/core/common/version.d.ts +1 -1
  7. package/core/data/definitions/order-definitions.d.ts +2 -0
  8. package/core/data/definitions/product-definitions.d.ts +1 -0
  9. package/core/data/providers/order-data.service.d.ts +1 -0
  10. package/core/data/providers/product-data.service.d.ts +1 -0
  11. package/esm2020/catalog/components/generate-product-variants/generate-product-variants.component.mjs +12 -4
  12. package/esm2020/catalog/components/option-value-input/option-value-input.component.mjs +65 -11
  13. package/esm2020/catalog/components/product-variants-editor/product-variants-editor.component.mjs +107 -12
  14. package/esm2020/core/common/generated-types.mjs +2 -1
  15. package/esm2020/core/common/introspection-result.mjs +191 -255
  16. package/esm2020/core/common/utilities/configurable-operation-utils.mjs +11 -8
  17. package/esm2020/core/common/version.mjs +2 -2
  18. package/esm2020/core/data/definitions/order-definitions.mjs +39 -25
  19. package/esm2020/core/data/definitions/product-definitions.mjs +743 -735
  20. package/esm2020/core/data/providers/order-data.service.mjs +7 -2
  21. package/esm2020/core/data/providers/product-data.service.mjs +5 -2
  22. package/esm2020/order/components/fulfill-order-dialog/fulfill-order-dialog.component.mjs +6 -2
  23. package/esm2020/order/components/fulfillment-detail/fulfillment-detail.component.mjs +8 -17
  24. package/esm2020/order/components/line-fulfillment/line-fulfillment.component.mjs +7 -21
  25. package/esm2020/order/components/order-detail/order-detail.component.mjs +48 -20
  26. package/esm2020/order/components/order-payment-card/order-payment-card.component.mjs +2 -2
  27. package/fesm2015/vendure-admin-ui-catalog.mjs +186 -22
  28. package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
  29. package/fesm2015/vendure-admin-ui-core.mjs +937 -967
  30. package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
  31. package/fesm2015/vendure-admin-ui-order.mjs +68 -58
  32. package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
  33. package/fesm2020/vendure-admin-ui-catalog.mjs +179 -22
  34. package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
  35. package/fesm2020/vendure-admin-ui-core.mjs +937 -967
  36. package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
  37. package/fesm2020/vendure-admin-ui-order.mjs +66 -57
  38. package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
  39. package/package.json +2 -2
  40. package/static/i18n-messages/cs.json +2 -1
  41. package/static/i18n-messages/de.json +2 -1
  42. package/static/i18n-messages/en.json +3 -1
  43. package/static/i18n-messages/es.json +2 -1
  44. package/static/i18n-messages/fr.json +2 -1
  45. package/static/i18n-messages/it.json +2 -1
  46. package/static/i18n-messages/pl.json +2 -1
  47. package/static/i18n-messages/pt_BR.json +2 -1
  48. package/static/i18n-messages/pt_PT.json +2 -1
  49. package/static/i18n-messages/ru.json +2 -1
  50. package/static/i18n-messages/uk.json +2 -1
  51. package/static/i18n-messages/zh_Hans.json +2 -1
  52. package/static/i18n-messages/zh_Hant.json +2 -1
  53. package/static/styles/global/_utilities.scss +1 -0
  54. 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
- orderItems {
2125
- id
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
- ... on Payment {
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
- ... on Payment {
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
- "possibleTypes": {
8350
- "AddFulfillmentToOrderResult": [
8351
- "CreateFulfillmentError",
8352
- "EmptyOrderLineSelectionError",
8353
- "Fulfillment",
8354
- "FulfillmentStateTransitionError",
8355
- "InsufficientStockOnHandError",
8356
- "InvalidFulfillmentHandlerError",
8357
- "ItemsAlreadyFulfilledError"
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
- "CreatePromotionResult": [
8388
- "MissingConditionsError",
8389
- "Promotion"
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
- "CustomField": [
8392
- "BooleanCustomFieldConfig",
8393
- "DateTimeCustomFieldConfig",
8394
- "FloatCustomFieldConfig",
8395
- "IntCustomFieldConfig",
8396
- "LocaleStringCustomFieldConfig",
8397
- "RelationCustomFieldConfig",
8398
- "StringCustomFieldConfig",
8399
- "TextCustomFieldConfig"
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
- "CustomFieldConfig": [
8402
- "BooleanCustomFieldConfig",
8403
- "DateTimeCustomFieldConfig",
8404
- "FloatCustomFieldConfig",
8405
- "IntCustomFieldConfig",
8406
- "LocaleStringCustomFieldConfig",
8407
- "RelationCustomFieldConfig",
8408
- "StringCustomFieldConfig",
8409
- "TextCustomFieldConfig"
8415
+ CustomFieldConfig: [
8416
+ 'BooleanCustomFieldConfig',
8417
+ 'DateTimeCustomFieldConfig',
8418
+ 'FloatCustomFieldConfig',
8419
+ 'IntCustomFieldConfig',
8420
+ 'LocaleStringCustomFieldConfig',
8421
+ 'RelationCustomFieldConfig',
8422
+ 'StringCustomFieldConfig',
8423
+ 'TextCustomFieldConfig',
8410
8424
  ],
8411
- "ErrorResult": [
8412
- "AlreadyRefundedError",
8413
- "CancelActiveOrderError",
8414
- "ChannelDefaultLanguageError",
8415
- "CouponCodeExpiredError",
8416
- "CouponCodeInvalidError",
8417
- "CouponCodeLimitError",
8418
- "CreateFulfillmentError",
8419
- "EmailAddressConflictError",
8420
- "EmptyOrderLineSelectionError",
8421
- "FulfillmentStateTransitionError",
8422
- "InsufficientStockError",
8423
- "InsufficientStockOnHandError",
8424
- "InvalidCredentialsError",
8425
- "InvalidFulfillmentHandlerError",
8426
- "ItemsAlreadyFulfilledError",
8427
- "LanguageNotAvailableError",
8428
- "ManualPaymentStateError",
8429
- "MimeTypeError",
8430
- "MissingConditionsError",
8431
- "MultipleOrderError",
8432
- "NativeAuthStrategyError",
8433
- "NegativeQuantityError",
8434
- "NoChangesSpecifiedError",
8435
- "NothingToRefundError",
8436
- "OrderLimitError",
8437
- "OrderModificationStateError",
8438
- "OrderStateTransitionError",
8439
- "PaymentMethodMissingError",
8440
- "PaymentOrderMismatchError",
8441
- "PaymentStateTransitionError",
8442
- "ProductOptionInUseError",
8443
- "QuantityTooGreatError",
8444
- "RefundOrderStateError",
8445
- "RefundPaymentIdMissingError",
8446
- "RefundStateTransitionError",
8447
- "SettlePaymentError"
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
- "ModifyOrderResult": [
8450
- "CouponCodeExpiredError",
8451
- "CouponCodeInvalidError",
8452
- "CouponCodeLimitError",
8453
- "InsufficientStockError",
8454
- "NegativeQuantityError",
8455
- "NoChangesSpecifiedError",
8456
- "Order",
8457
- "OrderLimitError",
8458
- "OrderModificationStateError",
8459
- "PaymentMethodMissingError",
8460
- "RefundPaymentIdMissingError"
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
- "NativeAuthenticationResult": [
8463
- "CurrentUser",
8464
- "InvalidCredentialsError",
8465
- "NativeAuthStrategyError"
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
- "Node": [
8468
- "Address",
8469
- "Administrator",
8470
- "Allocation",
8471
- "Asset",
8472
- "AuthenticationMethod",
8473
- "Cancellation",
8474
- "Channel",
8475
- "Collection",
8476
- "Country",
8477
- "Customer",
8478
- "CustomerGroup",
8479
- "Facet",
8480
- "FacetValue",
8481
- "Fulfillment",
8482
- "HistoryEntry",
8483
- "Job",
8484
- "Order",
8485
- "OrderItem",
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
- "PaginatedList": [
8510
- "AdministratorList",
8511
- "AssetList",
8512
- "CollectionList",
8513
- "CountryList",
8514
- "CustomerGroupList",
8515
- "CustomerList",
8516
- "FacetList",
8517
- "HistoryEntryList",
8518
- "JobList",
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
- "RefundOrderResult": [
8530
- "AlreadyRefundedError",
8531
- "MultipleOrderError",
8532
- "NothingToRefundError",
8533
- "OrderStateTransitionError",
8534
- "PaymentOrderMismatchError",
8535
- "QuantityTooGreatError",
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
- "RemoveOptionGroupFromProductResult": [
8541
- "Product",
8542
- "ProductOptionInUseError"
8543
- ],
8544
- "SearchResultPrice": [
8545
- "PriceRange",
8546
- "SinglePrice"
8547
- ],
8548
- "SettlePaymentResult": [
8549
- "OrderStateTransitionError",
8550
- "Payment",
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
- * args: [
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: Object.values(formValueOperations.args || {}).map((value, j) => ({
9576
- name: operation.args[j].name,
9577
- value: (value === null || value === void 0 ? void 0 : value.hasOwnProperty('value'))
9578
- ? encodeConfigArgValue(value.value)
9579
- : encodeConfigArgValue(value),
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.11';
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