@shipengine/elements 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/actions-menu.js +34 -0
  2. package/carrier-logo.js +1 -0
  3. package/components.js +1 -1
  4. package/constants.js +1 -1
  5. package/elements.js +1 -1
  6. package/extensions.js +1 -1
  7. package/formatString.js +1 -0
  8. package/hooks.js +1 -1
  9. package/index.js +1 -1
  10. package/package.json +15 -45
  11. package/pudo.js +1 -0
  12. package/schemas.js +1 -1
  13. package/src/components/actions-menu/actions-menu.d.ts +19 -0
  14. package/src/components/actions-menu/index.d.ts +1 -0
  15. package/src/components/collapsible-panel/collapsible-panel.styles.d.ts +10 -13
  16. package/src/components/field/checkbox-input/checkbox-input.d.ts +1 -0
  17. package/src/components/field/rate-card/rate-card.styles.d.ts +0 -1
  18. package/src/components/field/select/index.d.ts +1 -0
  19. package/src/components/field/select/select-with-categories.d.ts +20 -0
  20. package/src/components/field/select/select.d.ts +5 -10
  21. package/src/components/index.d.ts +1 -0
  22. package/src/components/templates/connected-carrier-list/connected-carrier-list.d.ts +4 -1
  23. package/src/components/templates/connected-carrier-list/connected-carrier-list.styles.d.ts +0 -10
  24. package/src/components/templates/connected-carrier-list/connected-carrier-row/connected-carrier-row.d.ts +4 -1
  25. package/src/components/templates/connected-carrier-list/connected-carrier-row/connected-carrier-row.styles.d.ts +19 -12
  26. package/src/components/templates/products-display/products-display.styles.d.ts +12 -4
  27. package/src/components/templates/shipment-form/sections/customs-forms/components/index.d.ts +2 -0
  28. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/form/index.d.ts +3 -0
  29. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/form/schema.d.ts +38 -0
  30. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/form/values.d.ts +12 -0
  31. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/index.d.ts +2 -0
  32. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/tax-id-form.d.ts +17 -0
  33. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/tax-id-list.d.ts +12 -0
  34. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/tax-ids.d.ts +8 -0
  35. package/src/components/templates/shipment-form/sections/customs-forms/components/tax-ids/tax-ids.styles.d.ts +70 -0
  36. package/src/components/templates/shipment-form/sections/customs-forms/customs-forms.d.ts +10 -0
  37. package/src/components/templates/shipment-form/sections/customs-forms/index.d.ts +1 -0
  38. package/src/components/templates/shipment-form/sections/index.d.ts +1 -0
  39. package/src/components/templates/shipment-form/shipment-form.d.ts +2 -1
  40. package/src/components/templates/shipment-form/shipment-form.styles.d.ts +9 -0
  41. package/src/components/warehouse-form/warehouse-form.d.ts +10 -3
  42. package/src/components/zero-state/zero-state.d.ts +6 -0
  43. package/src/components/zero-state/zero-state.styles.d.ts +14 -0
  44. package/src/elements/label-layout/label-layout-element.d.ts +43 -1
  45. package/src/elements/labels-grid/labels-grid.d.ts +43 -1
  46. package/src/elements/manage-carriers/manage-carriers.d.ts +93 -52
  47. package/src/elements/manage-external-carriers/manage-external-carriers.d.ts +65 -1
  48. package/src/elements/manage-funding/manage-funding-element.d.ts +46 -3
  49. package/src/elements/manage-warehouses/manage-warehouses.d.ts +43 -1
  50. package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +46 -3
  51. package/src/elements/purchase-label/hooks/use-customs.d.ts +1 -0
  52. package/src/elements/purchase-label/hooks/use-shipment-form.d.ts +1 -0
  53. package/src/elements/purchase-label/purchase-label.d.ts +68 -4
  54. package/src/elements/shipment-summary/shipment-summary.d.ts +47 -1
  55. package/src/elements/shipments-grid/shipments-grid.d.ts +43 -1
  56. package/src/elements/theme-creator/theme-creator.d.ts +43 -1
  57. package/src/elements/transaction-history/transaction-history-element.d.ts +43 -1
  58. package/src/elements/unit-settings/unit-settings-element.d.ts +43 -1
  59. package/src/elements/vat-settings/vat-settings-element.d.ts +43 -1
  60. package/src/elements/void-label/void-label.d.ts +57 -10
  61. package/src/elements-provider/elements-context-provider.d.ts +44 -0
  62. package/src/elements-provider/elements-provider.d.ts +6 -40
  63. package/src/elements-provider/index.d.ts +2 -0
  64. package/src/features/manage-carriers/hooks/use-list-funding-source-carriers.d.ts +1 -1
  65. package/src/features/manage-carriers/manage-carriers.d.ts +2 -1
  66. package/src/features/manage-external-carriers/index.d.ts +1 -0
  67. package/src/features/manage-external-carriers/manage-external-carriers.d.ts +11 -1
  68. package/src/features/manage-external-carriers/use-manage-external-carriers.d.ts +12 -0
  69. package/src/features/manage-funding/manage-funding.d.ts +4 -1
  70. package/src/features/payment-method-settings/payment-method-settings.d.ts +4 -1
  71. package/src/hooks/options/use-package-options.d.ts +1 -1
  72. package/src/hooks/options/use-warehouse-options.d.ts +3 -1
  73. package/src/index.d.ts +1 -0
  74. package/src/locales/en/index.d.ts +43 -1
  75. package/src/testing/test-utils.d.ts +0 -1
  76. package/src/utilities/formatString.d.ts +2 -0
  77. package/src/utilities/index.d.ts +1 -0
  78. package/src/utilities/pudo.d.ts +3 -0
  79. package/src/utilities/rates.d.ts +1 -3
  80. package/src/utilities/shipengine/carrier.d.ts +4 -1
  81. package/src/workflows/account-settings/account-settings.d.ts +45 -2
  82. package/src/workflows/account-settings/use-get-panel-props.d.ts +3 -3
  83. package/src/workflows/carrier-services/carrier-services.d.ts +51 -29
  84. package/src/workflows/connect-external-carrier/connect-external-carrier.d.ts +43 -1
  85. package/src/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.d.ts +2 -1
  86. package/src/workflows/onboarding/onboarding.d.ts +43 -1
  87. package/story-notes.js +1 -0
  88. package/suspend-text.js +1 -0
  89. package/transaction-history-element.js +1 -0
  90. package/use-page-layout.js +1 -0
  91. package/use-scrub-errors.js +1 -0
  92. package/use-toggle.js +1 -0
  93. package/use-unit-settings.js +1 -0
  94. package/utilities.js +1 -1
  95. package/validation.js +1 -0
  96. package/wallet-form.js +1 -0
  97. package/warehouses.js +1 -0
  98. package/workflows.js +1 -1
  99. package/carrier-c2a5ed53.js +0 -1
  100. package/carrier-logo-330e926f.js +0 -1
  101. package/formatString-413ec7c7.js +0 -1
  102. package/shipment-150160e0.js +0 -1
  103. package/story-notes-c714d2ed.js +0 -1
  104. package/suspend-text-cad3a977.js +0 -1
  105. package/transaction-history-element-cbfe487c.js +0 -1
  106. package/use-page-layout-8cb5075f.js +0 -1
  107. package/use-scrub-errors-9870a6f3.js +0 -1
  108. package/use-toggle-866d7938.js +0 -1
  109. package/use-unit-settings-a5bae16e.js +0 -1
  110. package/validation-528e7834.js +0 -1
  111. package/wallet-form-9e4bfaea.js +0 -1
  112. package/warehouse-form-da6a7ac5.js +0 -34
  113. package/warehouses-a83188ab.js +0 -1
  114. /package/{address-8f8119f4.js → address.js} +0 -0
  115. /package/{assertions-dfa95b4d.js → assertions.js} +0 -0
  116. /package/{money-d4f3d7c3.js → money.js} +0 -0
  117. /package/{phone-87dd7bd8.js → phone.js} +0 -0
  118. /package/{zod-60def96c.js → zod.js} +0 -0
@@ -350,6 +350,11 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
350
350
  billing: {
351
351
  title: string;
352
352
  subtitleCard: string;
353
+ /**
354
+ * `onAddressValidation` is an async/sync callback function that will be invoked on each Address
355
+ * validation request. For example, whenever you update the `Ship To Address` or
356
+ * `Ship From Address` for a given shipment.
357
+ */
353
358
  subtitleBilling: string;
354
359
  };
355
360
  };
@@ -365,6 +370,7 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
365
370
  title: string;
366
371
  };
367
372
  };
373
+ noFundingSource: string;
368
374
  };
369
375
  "rate-details": {
370
376
  total: string;
@@ -553,8 +559,21 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
553
559
  subtitle: string;
554
560
  inlineMessage: string;
555
561
  };
562
+ errors: {
563
+ noCarriers: {
564
+ title: string;
565
+ subtitle: string;
566
+ };
567
+ };
556
568
  success: {
557
- title: string;
569
+ title: string; /**
570
+ *`getPreferredRates is an async/sync optional callback function that will be invoked each time rates are caculated.
571
+ * This is an optional callback function that returns an array of ShipEngine rates. The rates from this response will
572
+ * be spliced into the normal get rates response the Elements makes internally. If a service code matches a service
573
+ * code on a rate returned from getPreferredRates, the rate returned from getPreferredRates will not be shown in the
574
+ * rate form. These preferred rates will be displayed with a set of UI enhancements that incude a dynamic cost savings
575
+ * flag and green checkmark when the rate is selected.
576
+ */
558
577
  subtitle: string;
559
578
  action: string;
560
579
  };
@@ -598,6 +617,7 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
598
617
  returnToAddressIsDifferent: string;
599
618
  setDefault: string;
600
619
  shipFrom: string;
620
+ noWarehouses: string;
601
621
  };
602
622
  "manage-funding": {
603
623
  actions: {
@@ -645,6 +665,7 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
645
665
  errors: {
646
666
  balanceUnknown: string;
647
667
  unableToFindBalance: string;
668
+ noFundingSource: string;
648
669
  };
649
670
  byoc: {
650
671
  invoiceNotification: string;
@@ -744,7 +765,17 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
744
765
  toastTitle: string;
745
766
  toastBody: string;
746
767
  };
747
- };
768
+ deleteCarrierErrorTitle: string;
769
+ deleteCarrierErrorMessage: string;
770
+ loadingDeletingCarrier: string;
771
+ }; /**
772
+ *`getPreferredRates is an async/sync optional callback function that will be invoked each time rates are caculated.
773
+ * This is an optional callback function that returns an array of ShipEngine rates. The rates from this response will
774
+ * be spliced into the normal get rates response the Elements makes internally. If a service code matches a service
775
+ * code on a rate returned from getPreferredRates, the rate returned from getPreferredRates will not be shown in the
776
+ * rate form. These preferred rates will be displayed with a set of UI enhancements that incude a dynamic cost savings
777
+ * flag and green checkmark when the rate is selected.
778
+ */
748
779
  common: {
749
780
  actions: {
750
781
  add: string;
@@ -846,17 +877,29 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
846
877
  };
847
878
  customs: {
848
879
  addDeclaration: string;
880
+ noResults: string;
849
881
  contents: {
850
882
  documents: string;
851
883
  gift: string;
852
- merchandise: string;
853
884
  /**
854
885
  * `onLabelCreateFailure` is an async/sync callback function that will be invoked each time a
855
886
  * label purchase fails.
856
887
  */
888
+ merchandise: string;
857
889
  returnedGoods: string;
858
890
  sample: string;
859
891
  };
892
+ taxIds: {
893
+ sectionTitle: string;
894
+ addTaxId: string;
895
+ sectionTitleTooltip: string;
896
+ entityTypeTooltipText: string; /**
897
+ * `onLoad` is an async/sync callback provided by the host application that is invoked after the
898
+ * element is loaded. (This may be useful to grab the shipmentId of a one-off label)
899
+ */
900
+ entityTypeTooltipPointOne: string;
901
+ entityTypeTooltipPointTwo: string;
902
+ };
860
903
  currencyChange: string;
861
904
  declarations: string;
862
905
  descriptionTooltip: {
@@ -874,6 +917,11 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
874
917
  sku: string;
875
918
  value: string;
876
919
  valueQuantity: string;
920
+ taxId: string;
921
+ taxIdType: string;
922
+ taxIdTypeValue: string;
923
+ taxIssuingAuthority: string;
924
+ entityType: string;
877
925
  };
878
926
  nonDelivery: {
879
927
  returnToSender: string;
@@ -946,6 +994,8 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
946
994
  shipment: string;
947
995
  shipments: string;
948
996
  warehouses: string;
997
+ funding: string;
998
+ paymentMethod: string;
949
999
  };
950
1000
  months: {
951
1001
  january: string;
@@ -1024,6 +1074,16 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
1024
1074
  gram: string;
1025
1075
  kilogram: string;
1026
1076
  };
1077
+ actionsMenu: {
1078
+ menuTitle: string;
1079
+ actions: {
1080
+ printLabel: string;
1081
+ voidLabel: string;
1082
+ printForms: string;
1083
+ edit: string;
1084
+ remove: string;
1085
+ };
1086
+ };
1027
1087
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
1028
1088
  T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
1029
1089
  "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
@@ -1039,7 +1099,11 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
1039
1099
  };
1040
1100
  "account-settings": {
1041
1101
  messages: {
1042
- noFundingSources: string;
1102
+ transactionHistory: {
1103
+ noTransactions: string;
1104
+ };
1105
+ noFundingSourceDescription: string;
1106
+ noFundingSourceAction: string;
1043
1107
  };
1044
1108
  title: string;
1045
1109
  sections: {
@@ -233,6 +233,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
233
233
  };
234
234
  poBox: {
235
235
  title: string;
236
+ /**
237
+ * `onClickVoidLabel` is a callback function that will be invoked when the user clicks the
238
+ * `Void Label` button.
239
+ */
236
240
  description: string;
237
241
  };
238
242
  carrier: {
@@ -265,6 +269,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
265
269
  title: string;
266
270
  };
267
271
  };
272
+ noFundingSource: string;
268
273
  };
269
274
  "rate-details": {
270
275
  total: string;
@@ -457,6 +462,12 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
457
462
  subtitle: string;
458
463
  inlineMessage: string;
459
464
  };
465
+ errors: {
466
+ noCarriers: {
467
+ title: string;
468
+ subtitle: string;
469
+ };
470
+ };
460
471
  success: {
461
472
  title: string;
462
473
  subtitle: string;
@@ -502,6 +513,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
502
513
  returnToAddressIsDifferent: string;
503
514
  setDefault: string;
504
515
  shipFrom: string;
516
+ noWarehouses: string;
505
517
  };
506
518
  "manage-funding": {
507
519
  actions: {
@@ -549,6 +561,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
549
561
  errors: {
550
562
  balanceUnknown: string;
551
563
  unableToFindBalance: string;
564
+ noFundingSource: string;
552
565
  };
553
566
  byoc: {
554
567
  invoiceNotification: string;
@@ -648,6 +661,9 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
648
661
  toastTitle: string;
649
662
  toastBody: string;
650
663
  };
664
+ deleteCarrierErrorTitle: string;
665
+ deleteCarrierErrorMessage: string;
666
+ loadingDeletingCarrier: string;
651
667
  };
652
668
  common: {
653
669
  actions: {
@@ -752,6 +768,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
752
768
  };
753
769
  customs: {
754
770
  addDeclaration: string;
771
+ noResults: string;
755
772
  contents: {
756
773
  documents: string;
757
774
  gift: string;
@@ -759,6 +776,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
759
776
  returnedGoods: string;
760
777
  sample: string;
761
778
  };
779
+ taxIds: {
780
+ sectionTitle: string;
781
+ addTaxId: string;
782
+ sectionTitleTooltip: string;
783
+ entityTypeTooltipText: string;
784
+ entityTypeTooltipPointOne: string;
785
+ entityTypeTooltipPointTwo: string;
786
+ };
762
787
  currencyChange: string;
763
788
  declarations: string;
764
789
  descriptionTooltip: {
@@ -776,6 +801,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
776
801
  sku: string;
777
802
  value: string;
778
803
  valueQuantity: string;
804
+ taxId: string;
805
+ taxIdType: string;
806
+ taxIdTypeValue: string;
807
+ taxIssuingAuthority: string;
808
+ entityType: string;
779
809
  };
780
810
  nonDelivery: {
781
811
  returnToSender: string;
@@ -848,6 +878,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
848
878
  shipment: string;
849
879
  shipments: string;
850
880
  warehouses: string;
881
+ funding: string;
882
+ paymentMethod: string;
851
883
  };
852
884
  months: {
853
885
  january: string;
@@ -926,6 +958,16 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
926
958
  gram: string;
927
959
  kilogram: string;
928
960
  };
961
+ actionsMenu: {
962
+ menuTitle: string;
963
+ actions: {
964
+ printLabel: string;
965
+ voidLabel: string;
966
+ printForms: string;
967
+ edit: string;
968
+ remove: string;
969
+ };
970
+ };
929
971
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
930
972
  T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
931
973
  "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
@@ -941,7 +983,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
941
983
  };
942
984
  "account-settings": {
943
985
  messages: {
944
- noFundingSources: string;
986
+ transactionHistory: {
987
+ noTransactions: string;
988
+ };
989
+ noFundingSourceDescription: string;
990
+ noFundingSourceAction: string;
945
991
  };
946
992
  title: string;
947
993
  sections: {
@@ -179,6 +179,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
179
179
  title: string;
180
180
  };
181
181
  };
182
+ noFundingSource: string;
182
183
  };
183
184
  "rate-details": {
184
185
  total: string;
@@ -363,6 +364,12 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
363
364
  subtitle: string;
364
365
  inlineMessage: string;
365
366
  };
367
+ errors: {
368
+ noCarriers: {
369
+ title: string;
370
+ subtitle: string;
371
+ };
372
+ };
366
373
  success: {
367
374
  title: string;
368
375
  subtitle: string;
@@ -408,6 +415,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
408
415
  returnToAddressIsDifferent: string;
409
416
  setDefault: string;
410
417
  shipFrom: string;
418
+ noWarehouses: string;
411
419
  };
412
420
  "manage-funding": {
413
421
  actions: {
@@ -455,6 +463,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
455
463
  errors: {
456
464
  balanceUnknown: string;
457
465
  unableToFindBalance: string;
466
+ noFundingSource: string;
458
467
  };
459
468
  byoc: {
460
469
  invoiceNotification: string;
@@ -554,6 +563,9 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
554
563
  toastTitle: string;
555
564
  toastBody: string;
556
565
  };
566
+ deleteCarrierErrorTitle: string;
567
+ deleteCarrierErrorMessage: string;
568
+ loadingDeletingCarrier: string;
557
569
  };
558
570
  common: {
559
571
  actions: {
@@ -656,6 +668,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
656
668
  };
657
669
  customs: {
658
670
  addDeclaration: string;
671
+ noResults: string;
659
672
  contents: {
660
673
  documents: string;
661
674
  gift: string;
@@ -663,6 +676,14 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
663
676
  returnedGoods: string;
664
677
  sample: string;
665
678
  };
679
+ taxIds: {
680
+ sectionTitle: string;
681
+ addTaxId: string;
682
+ sectionTitleTooltip: string;
683
+ entityTypeTooltipText: string;
684
+ entityTypeTooltipPointOne: string;
685
+ entityTypeTooltipPointTwo: string;
686
+ };
666
687
  currencyChange: string;
667
688
  declarations: string;
668
689
  descriptionTooltip: {
@@ -680,6 +701,11 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
680
701
  sku: string;
681
702
  value: string;
682
703
  valueQuantity: string;
704
+ taxId: string;
705
+ taxIdType: string;
706
+ taxIdTypeValue: string;
707
+ taxIssuingAuthority: string;
708
+ entityType: string;
683
709
  };
684
710
  nonDelivery: {
685
711
  returnToSender: string;
@@ -752,6 +778,8 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
752
778
  shipment: string;
753
779
  shipments: string;
754
780
  warehouses: string;
781
+ funding: string;
782
+ paymentMethod: string;
755
783
  };
756
784
  months: {
757
785
  january: string;
@@ -830,6 +858,16 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
830
858
  gram: string;
831
859
  kilogram: string;
832
860
  };
861
+ actionsMenu: {
862
+ menuTitle: string;
863
+ actions: {
864
+ printLabel: string;
865
+ voidLabel: string;
866
+ printForms: string;
867
+ edit: string;
868
+ remove: string;
869
+ };
870
+ };
833
871
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
834
872
  T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
835
873
  "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
@@ -845,7 +883,11 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
845
883
  };
846
884
  "account-settings": {
847
885
  messages: {
848
- noFundingSources: string;
886
+ transactionHistory: {
887
+ noTransactions: string;
888
+ };
889
+ noFundingSourceDescription: string;
890
+ noFundingSourceAction: string;
849
891
  };
850
892
  title: string;
851
893
  sections: {
@@ -189,6 +189,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
189
189
  title: string;
190
190
  };
191
191
  };
192
+ noFundingSource: string;
192
193
  };
193
194
  "rate-details": {
194
195
  total: string;
@@ -373,6 +374,12 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
373
374
  subtitle: string;
374
375
  inlineMessage: string;
375
376
  };
377
+ errors: {
378
+ noCarriers: {
379
+ title: string;
380
+ subtitle: string;
381
+ };
382
+ };
376
383
  success: {
377
384
  title: string;
378
385
  subtitle: string;
@@ -418,6 +425,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
418
425
  returnToAddressIsDifferent: string;
419
426
  setDefault: string;
420
427
  shipFrom: string;
428
+ noWarehouses: string;
421
429
  };
422
430
  "manage-funding": {
423
431
  actions: {
@@ -465,6 +473,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
465
473
  errors: {
466
474
  balanceUnknown: string;
467
475
  unableToFindBalance: string;
476
+ noFundingSource: string;
468
477
  };
469
478
  byoc: {
470
479
  invoiceNotification: string;
@@ -564,6 +573,9 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
564
573
  toastTitle: string;
565
574
  toastBody: string;
566
575
  };
576
+ deleteCarrierErrorTitle: string;
577
+ deleteCarrierErrorMessage: string;
578
+ loadingDeletingCarrier: string;
567
579
  };
568
580
  common: {
569
581
  actions: {
@@ -666,6 +678,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
666
678
  };
667
679
  customs: {
668
680
  addDeclaration: string;
681
+ noResults: string;
669
682
  contents: {
670
683
  documents: string;
671
684
  gift: string;
@@ -673,6 +686,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
673
686
  returnedGoods: string;
674
687
  sample: string;
675
688
  };
689
+ taxIds: {
690
+ sectionTitle: string;
691
+ addTaxId: string;
692
+ sectionTitleTooltip: string;
693
+ entityTypeTooltipText: string;
694
+ entityTypeTooltipPointOne: string;
695
+ entityTypeTooltipPointTwo: string;
696
+ };
676
697
  currencyChange: string;
677
698
  declarations: string;
678
699
  descriptionTooltip: {
@@ -690,6 +711,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
690
711
  sku: string;
691
712
  value: string;
692
713
  valueQuantity: string;
714
+ taxId: string;
715
+ taxIdType: string;
716
+ taxIdTypeValue: string;
717
+ taxIssuingAuthority: string;
718
+ entityType: string;
693
719
  };
694
720
  nonDelivery: {
695
721
  returnToSender: string;
@@ -762,6 +788,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
762
788
  shipment: string;
763
789
  shipments: string;
764
790
  warehouses: string;
791
+ funding: string;
792
+ paymentMethod: string;
765
793
  };
766
794
  months: {
767
795
  january: string;
@@ -840,6 +868,16 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
840
868
  gram: string;
841
869
  kilogram: string;
842
870
  };
871
+ actionsMenu: {
872
+ menuTitle: string;
873
+ actions: {
874
+ printLabel: string;
875
+ voidLabel: string;
876
+ printForms: string;
877
+ edit: string;
878
+ remove: string;
879
+ };
880
+ };
843
881
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
844
882
  T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
845
883
  "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
@@ -855,7 +893,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
855
893
  };
856
894
  "account-settings": {
857
895
  messages: {
858
- noFundingSources: string;
896
+ transactionHistory: {
897
+ noTransactions: string;
898
+ };
899
+ noFundingSourceDescription: string;
900
+ noFundingSourceAction: string;
859
901
  };
860
902
  title: string;
861
903
  sections: {
@@ -176,6 +176,7 @@ export declare const Element: ({ resources, ...props }: object & {
176
176
  title: string;
177
177
  };
178
178
  };
179
+ noFundingSource: string;
179
180
  };
180
181
  "rate-details": {
181
182
  total: string;
@@ -360,6 +361,12 @@ export declare const Element: ({ resources, ...props }: object & {
360
361
  subtitle: string;
361
362
  inlineMessage: string;
362
363
  };
364
+ errors: {
365
+ noCarriers: {
366
+ title: string;
367
+ subtitle: string;
368
+ };
369
+ };
363
370
  success: {
364
371
  title: string;
365
372
  subtitle: string;
@@ -405,6 +412,7 @@ export declare const Element: ({ resources, ...props }: object & {
405
412
  returnToAddressIsDifferent: string;
406
413
  setDefault: string;
407
414
  shipFrom: string;
415
+ noWarehouses: string;
408
416
  };
409
417
  "manage-funding": {
410
418
  actions: {
@@ -452,6 +460,7 @@ export declare const Element: ({ resources, ...props }: object & {
452
460
  errors: {
453
461
  balanceUnknown: string;
454
462
  unableToFindBalance: string;
463
+ noFundingSource: string;
455
464
  };
456
465
  byoc: {
457
466
  invoiceNotification: string;
@@ -551,6 +560,9 @@ export declare const Element: ({ resources, ...props }: object & {
551
560
  toastTitle: string;
552
561
  toastBody: string;
553
562
  };
563
+ deleteCarrierErrorTitle: string;
564
+ deleteCarrierErrorMessage: string;
565
+ loadingDeletingCarrier: string;
554
566
  };
555
567
  common: {
556
568
  actions: {
@@ -653,6 +665,7 @@ export declare const Element: ({ resources, ...props }: object & {
653
665
  };
654
666
  customs: {
655
667
  addDeclaration: string;
668
+ noResults: string;
656
669
  contents: {
657
670
  documents: string;
658
671
  gift: string;
@@ -660,6 +673,14 @@ export declare const Element: ({ resources, ...props }: object & {
660
673
  returnedGoods: string;
661
674
  sample: string;
662
675
  };
676
+ taxIds: {
677
+ sectionTitle: string;
678
+ addTaxId: string;
679
+ sectionTitleTooltip: string;
680
+ entityTypeTooltipText: string;
681
+ entityTypeTooltipPointOne: string;
682
+ entityTypeTooltipPointTwo: string;
683
+ };
663
684
  currencyChange: string;
664
685
  declarations: string;
665
686
  descriptionTooltip: {
@@ -677,6 +698,11 @@ export declare const Element: ({ resources, ...props }: object & {
677
698
  sku: string;
678
699
  value: string;
679
700
  valueQuantity: string;
701
+ taxId: string;
702
+ taxIdType: string;
703
+ taxIdTypeValue: string;
704
+ taxIssuingAuthority: string;
705
+ entityType: string;
680
706
  };
681
707
  nonDelivery: {
682
708
  returnToSender: string;
@@ -749,6 +775,8 @@ export declare const Element: ({ resources, ...props }: object & {
749
775
  shipment: string;
750
776
  shipments: string;
751
777
  warehouses: string;
778
+ funding: string;
779
+ paymentMethod: string;
752
780
  };
753
781
  months: {
754
782
  january: string;
@@ -827,6 +855,16 @@ export declare const Element: ({ resources, ...props }: object & {
827
855
  gram: string;
828
856
  kilogram: string;
829
857
  };
858
+ actionsMenu: {
859
+ menuTitle: string;
860
+ actions: {
861
+ printLabel: string;
862
+ voidLabel: string;
863
+ printForms: string;
864
+ edit: string;
865
+ remove: string;
866
+ };
867
+ };
830
868
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
831
869
  T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
832
870
  "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
@@ -842,7 +880,11 @@ export declare const Element: ({ resources, ...props }: object & {
842
880
  };
843
881
  "account-settings": {
844
882
  messages: {
845
- noFundingSources: string;
883
+ transactionHistory: {
884
+ noTransactions: string;
885
+ };
886
+ noFundingSourceDescription: string;
887
+ noFundingSourceAction: string;
846
888
  };
847
889
  title: string;
848
890
  sections: {