@shipengine/elements 2.3.1 → 2.5.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 (88) hide show
  1. package/actions-menu.js +3 -12
  2. package/components.js +1 -1
  3. package/elements.js +1 -1
  4. package/hooks.js +1 -1
  5. package/index.js +1 -1
  6. package/package.json +5 -3
  7. package/src/components/actions-menu/actions-menu.d.ts +2 -1
  8. package/src/components/error-state/error-state.d.ts +6 -0
  9. package/src/{workflows/onboarding/components/account-registration-step/account-registration-step.styles.d.ts → components/error-state/error-state.styles.d.ts} +9 -5
  10. package/src/components/error-state/index.d.ts +1 -0
  11. package/src/components/field/create-field-controller.d.ts +2 -1
  12. package/src/components/field-label/field-label.d.ts +2 -1
  13. package/src/components/field-label/field-label.styles.d.ts +16 -0
  14. package/src/components/grid-controller/grid-controller.d.ts +20 -2
  15. package/src/components/grid-controller/grid-controller.styles.d.ts +18 -6
  16. package/src/components/grid-controller/grid-footer.d.ts +27 -0
  17. package/src/components/grid-controller/index.d.ts +2 -0
  18. package/src/components/grid-filters/grid-filters.d.ts +30 -0
  19. package/src/components/grid-filters/grid-filters.styles.d.ts +11 -0
  20. package/src/components/grid-filters/index.d.ts +2 -0
  21. package/src/components/grid-filters/shipment-id-filter-shema.d.ts +9 -0
  22. package/src/components/grid-filters/shipment-id-filter.d.ts +23 -0
  23. package/src/components/index.d.ts +2 -0
  24. package/src/components/templates/address-display/address-display.d.ts +2 -1
  25. package/src/components/templates/wallet-form/wallet-form.d.ts +1 -1
  26. package/src/components/warehouse-form/warehouse-form-schema.d.ts +4 -1
  27. package/src/components/warehouse-form/warehouse-form.d.ts +2 -1
  28. package/src/elements/label-layout/label-layout-element.d.ts +77 -22
  29. package/src/elements/labels-grid/hooks/use-labels-grid.d.ts +68 -0
  30. package/src/elements/labels-grid/index.d.ts +1 -0
  31. package/src/elements/labels-grid/labels-grid.d.ts +132 -28
  32. package/src/elements/labels-grid/labels-grid.styles.d.ts +11 -0
  33. package/src/elements/manage-carriers/manage-carriers.d.ts +77 -22
  34. package/src/elements/manage-external-carriers/manage-external-carriers.d.ts +99 -23
  35. package/src/elements/manage-funding/manage-funding-element.d.ts +77 -22
  36. package/src/elements/manage-warehouses/manage-warehouses.d.ts +77 -22
  37. package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +77 -22
  38. package/src/elements/purchase-label/purchase-label.d.ts +88 -73
  39. package/src/elements/shipment-summary/shipment-summary.d.ts +84 -26
  40. package/src/elements/shipments-grid/hooks/use-shipments-grid.d.ts +161 -0
  41. package/src/elements/shipments-grid/shipments-grid.d.ts +161 -30
  42. package/src/elements/shipments-grid/shipments-grid.styles.d.ts +11 -0
  43. package/src/elements/theme-creator/theme-creator.d.ts +77 -22
  44. package/src/elements/transaction-history/transaction-history-element.d.ts +77 -22
  45. package/src/elements/unit-settings/unit-settings-element.d.ts +77 -22
  46. package/src/elements/vat-settings/vat-settings-element.d.ts +77 -22
  47. package/src/elements/void-label/void-label.d.ts +89 -33
  48. package/src/hooks/index.d.ts +1 -0
  49. package/src/hooks/use-get-service-name.d.ts +4 -0
  50. package/src/locales/en/index.d.ts +77 -22
  51. package/src/workflows/account-settings/account-settings.d.ts +77 -22
  52. package/src/workflows/carrier-services/carrier-services.d.ts +77 -22
  53. package/src/workflows/connect-external-carrier/connect-external-carrier.d.ts +77 -22
  54. package/src/workflows/label-workflow/label-workflow.d.ts +10 -29
  55. package/src/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form-schema.d.ts +18 -18
  56. package/src/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.d.ts +12 -0
  57. package/src/workflows/onboarding/components/confirmation-and-submission-step/index.d.ts +2 -0
  58. package/src/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.d.ts +19 -0
  59. package/src/workflows/onboarding/components/funding-step/funding-step.d.ts +7 -0
  60. package/src/workflows/onboarding/components/funding-step/index.d.ts +1 -0
  61. package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +1 -2
  62. package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.styles.d.ts +3 -0
  63. package/src/workflows/onboarding/components/ship-from-address-step/index.d.ts +0 -1
  64. package/src/workflows/onboarding/components/ship-from-address-step/ship-from-address-step.d.ts +3 -2
  65. package/src/workflows/onboarding/components/step-header/step-header.d.ts +3 -2
  66. package/src/workflows/onboarding/components/{funding-and-carrier-connection-step/funding-and-carrier-connection-step.styles.d.ts → step-header/step-header.styles.d.ts} +5 -8
  67. package/src/workflows/onboarding/components/welcome-page/index.d.ts +1 -0
  68. package/src/workflows/onboarding/components/welcome-page/welcome-page.d.ts +4 -0
  69. package/src/workflows/onboarding/onboarding.d.ts +79 -26
  70. package/suspend-text.js +1 -1
  71. package/transaction-history-element.js +1 -1
  72. package/use-get-service-name.js +1 -0
  73. package/use-unit-settings.js +1 -1
  74. package/usePager.js +1 -0
  75. package/vat.js +1 -1
  76. package/wallet-form.js +1 -1
  77. package/workflows.js +1 -1
  78. package/src/workflows/onboarding/components/account-registration-form/account-registration-form-schema.d.ts +0 -13
  79. package/src/workflows/onboarding/components/account-registration-form/account-registration-form.d.ts +0 -4
  80. package/src/workflows/onboarding/components/account-registration-form/index.d.ts +0 -1
  81. package/src/workflows/onboarding/components/account-registration-step/account-registration-step.d.ts +0 -5
  82. package/src/workflows/onboarding/components/account-registration-step/index.d.ts +0 -2
  83. package/src/workflows/onboarding/components/account-registration-step/use-account-registration-step.d.ts +0 -7
  84. package/src/workflows/onboarding/components/funding-and-carrier-connection-step/funding-and-carrier-connection-step.d.ts +0 -9
  85. package/src/workflows/onboarding/components/funding-and-carrier-connection-step/index.d.ts +0 -2
  86. package/src/workflows/onboarding/components/funding-and-carrier-connection-step/use-funding-and-carrier-connection-step.d.ts +0 -25
  87. package/src/workflows/onboarding/components/ship-from-address-step/use-ship-from-address-step.d.ts +0 -9
  88. package/story-notes.js +0 -1
@@ -141,7 +141,6 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
141
141
  setup: {
142
142
  title: string;
143
143
  subtitle: string;
144
- hiddenTermsSubtitle: string;
145
144
  descriptionTitle: string;
146
145
  description: string;
147
146
  };
@@ -149,7 +148,6 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
149
148
  title: string;
150
149
  cardSubTitle: string;
151
150
  addressSubTitle: string;
152
- info: string;
153
151
  };
154
152
  vatSettings: {
155
153
  title: string;
@@ -163,7 +161,6 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
163
161
  title: string;
164
162
  };
165
163
  info: {
166
- title: string;
167
164
  description: string;
168
165
  };
169
166
  poBox: {
@@ -386,18 +383,15 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
386
383
  };
387
384
  onboarding: {
388
385
  title: string;
389
- inlineTitle: string;
390
- accountRegistration: {
391
- action: string;
386
+ confirmation: {
392
387
  title: string;
393
- subtitle: string;
394
- welcome: string;
395
- messageLine1: string;
396
- partnerMessageLine1: string;
397
- messageLine2: string;
388
+ warehouse: string;
389
+ billingAddress: string;
390
+ paymentMethod: string;
391
+ action: string;
398
392
  };
399
393
  stepLabel: {
400
- accountRegistration: string;
394
+ confirmation: string;
401
395
  termsAgreement: string;
402
396
  shipFromAddress: string;
403
397
  fundingAndCarrierConnection: string;
@@ -444,6 +438,14 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
444
438
  "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
445
439
  UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
446
440
  };
441
+ tooltip: {
442
+ warehouse: string;
443
+ };
444
+ welcomePage: {
445
+ title: string;
446
+ message: string;
447
+ action: string;
448
+ };
447
449
  };
448
450
  "manage-warehouses": {
449
451
  title: string;
@@ -552,32 +554,74 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
552
554
  };
553
555
  "list-shipments": {
554
556
  title: string;
557
+ none: string;
555
558
  headers: {
556
559
  created: string;
557
- download: string;
560
+ modified: string;
561
+ shipping: string;
558
562
  shipmentId: string;
559
- shipDate: string;
560
- shipTo: string;
563
+ parcels: string;
564
+ recipient: string;
565
+ status: string;
566
+ };
567
+ status: {
568
+ cancelled: string;
569
+ purchased: string;
570
+ readyToBuy: string;
571
+ processing: string;
561
572
  };
562
573
  actions: {
563
574
  download: {
564
575
  pdf: string;
565
576
  };
566
577
  };
578
+ emptyState: {
579
+ title: string;
580
+ subtitle: string;
581
+ filtersTitle: string;
582
+ filtersSubtitle: string;
583
+ viewAll: string;
584
+ };
585
+ errorMessages: {
586
+ title: string;
587
+ subtitle: string;
588
+ };
567
589
  };
568
590
  "list-labels": {
569
591
  title: string;
570
592
  headers: {
571
593
  created: string;
572
- download: string;
573
- labelId: string;
574
- service: string;
575
- shipTo: string;
594
+ shipmentId: string;
595
+ parcels: string;
596
+ recipient: string;
597
+ shipping: string;
598
+ shipDate: string;
599
+ status: string;
600
+ };
601
+ empty: {
602
+ title: string;
603
+ subtitle: string;
604
+ };
605
+ emptyWithFilters: {
606
+ title: string;
607
+ subtitle: string;
608
+ button: string;
609
+ };
610
+ status: {
611
+ voided: string;
612
+ error: string;
613
+ completed: string;
614
+ processing: string;
576
615
  };
577
616
  actions: {
578
- download: {
579
- pdf: string;
580
- };
617
+ title: string;
618
+ print: string;
619
+ void: string;
620
+ printForms: string;
621
+ };
622
+ errorMessages: {
623
+ title: string;
624
+ subtitle: string;
581
625
  };
582
626
  };
583
627
  "connect-carrier": {
@@ -801,6 +845,7 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
801
845
  emailIsRequired: string;
802
846
  unknown: string;
803
847
  noRatesAvailable: string;
848
+ refreshAndTryAgain: string;
804
849
  };
805
850
  errorTypes: {
806
851
  accountStatus: string;
@@ -819,6 +864,13 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
819
864
  "row-count_one": string;
820
865
  "row-count_other": string;
821
866
  rows: string;
867
+ clearAll: string;
868
+ shipmentId: string;
869
+ shipmentIdFilter: string;
870
+ apply: string;
871
+ clear: string;
872
+ search: string;
873
+ shipmentIdHint: string;
822
874
  };
823
875
  insuranceProviders: {
824
876
  carrier: string;
@@ -894,6 +946,7 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
894
946
  requiredList: string;
895
947
  tooFewCharacters: string;
896
948
  tooManyCharacters: string;
949
+ requiredShipmentId: string;
897
950
  };
898
951
  shippingPresets: {
899
952
  apply: string;
@@ -907,6 +960,7 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
907
960
  agreeToTerms: string;
908
961
  carriersTitle: string;
909
962
  fundingSourceTitle: string;
963
+ shipEngineTitle: string;
910
964
  };
911
965
  weight: {
912
966
  ounces: string;
@@ -931,6 +985,7 @@ export declare const Element: ({ resources, ...props }: ShipEngineCarriersProps
931
985
  printForms: string;
932
986
  edit: string;
933
987
  remove: string;
988
+ viewDetails: string;
934
989
  };
935
990
  };
936
991
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
@@ -163,15 +163,34 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
163
163
  setup: {
164
164
  title: string;
165
165
  subtitle: string;
166
- hiddenTermsSubtitle: string;
167
166
  descriptionTitle: string;
168
167
  description: string;
169
- };
168
+ }; /**
169
+ * # ManageExternalCarriers Element
170
+ *
171
+ * @param ComponentProps The base props that will be passed into the `<ManageExternalCarriers />` component.
172
+ *
173
+ * @returns Element A React element that renders the `<ManageExternalCarriers />` component allowing users
174
+ * to view a list of their own carrier accounts that have been connected to their ShipEngine account,
175
+ * and to add additional carriers.
176
+ * This component is composed in the `<AccountSettings />` Element.
177
+ *
178
+ * @example
179
+ * ```tsx
180
+ * (() => {
181
+ * return <ManageExternalCarriers.Element isModalFullScreen={false} />;
182
+ * })();
183
+ * ```
184
+ *
185
+ * <br />
186
+ *
187
+ * @see {@link ManageExternalCarriers.ComponentProps | The props that are passed into the `<ManageExternalCarriers />` component}
188
+ * @see {@link AccountSettings.Element | The `<AccountSettings />` component renders the `<ManageExternalCarriers />` component}
189
+ */
170
190
  billing: {
171
191
  title: string;
172
192
  cardSubTitle: string;
173
193
  addressSubTitle: string;
174
- info: string;
175
194
  };
176
195
  vatSettings: {
177
196
  title: string;
@@ -185,7 +204,6 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
185
204
  title: string;
186
205
  };
187
206
  info: {
188
- title: string;
189
207
  description: string;
190
208
  };
191
209
  poBox: {
@@ -386,18 +404,15 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
386
404
  };
387
405
  onboarding: {
388
406
  title: string;
389
- inlineTitle: string;
390
- accountRegistration: {
391
- action: string;
407
+ confirmation: {
392
408
  title: string;
393
- subtitle: string;
394
- welcome: string;
395
- messageLine1: string;
396
- partnerMessageLine1: string;
397
- messageLine2: string;
409
+ warehouse: string;
410
+ billingAddress: string;
411
+ paymentMethod: string;
412
+ action: string;
398
413
  };
399
414
  stepLabel: {
400
- accountRegistration: string;
415
+ confirmation: string;
401
416
  termsAgreement: string;
402
417
  shipFromAddress: string;
403
418
  fundingAndCarrierConnection: string;
@@ -444,6 +459,14 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
444
459
  "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
445
460
  UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
446
461
  };
462
+ tooltip: {
463
+ warehouse: string;
464
+ };
465
+ welcomePage: {
466
+ title: string;
467
+ message: string;
468
+ action: string;
469
+ };
447
470
  };
448
471
  "manage-warehouses": {
449
472
  title: string;
@@ -552,32 +575,74 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
552
575
  };
553
576
  "list-shipments": {
554
577
  title: string;
578
+ none: string;
555
579
  headers: {
556
580
  created: string;
557
- download: string;
581
+ modified: string;
582
+ shipping: string;
558
583
  shipmentId: string;
559
- shipDate: string;
560
- shipTo: string;
584
+ parcels: string;
585
+ recipient: string;
586
+ status: string;
587
+ };
588
+ status: {
589
+ cancelled: string;
590
+ purchased: string;
591
+ readyToBuy: string;
592
+ processing: string;
561
593
  };
562
594
  actions: {
563
595
  download: {
564
596
  pdf: string;
565
597
  };
566
598
  };
599
+ emptyState: {
600
+ title: string;
601
+ subtitle: string;
602
+ filtersTitle: string;
603
+ filtersSubtitle: string;
604
+ viewAll: string;
605
+ };
606
+ errorMessages: {
607
+ title: string;
608
+ subtitle: string;
609
+ };
567
610
  };
568
611
  "list-labels": {
569
612
  title: string;
570
613
  headers: {
571
614
  created: string;
572
- download: string;
573
- labelId: string;
574
- service: string;
575
- shipTo: string;
615
+ shipmentId: string;
616
+ parcels: string;
617
+ recipient: string;
618
+ shipping: string;
619
+ shipDate: string;
620
+ status: string;
621
+ };
622
+ empty: {
623
+ title: string;
624
+ subtitle: string;
625
+ };
626
+ emptyWithFilters: {
627
+ title: string;
628
+ subtitle: string;
629
+ button: string;
630
+ };
631
+ status: {
632
+ voided: string;
633
+ error: string;
634
+ completed: string;
635
+ processing: string;
576
636
  };
577
637
  actions: {
578
- download: {
579
- pdf: string;
580
- };
638
+ title: string;
639
+ print: string;
640
+ void: string;
641
+ printForms: string;
642
+ };
643
+ errorMessages: {
644
+ title: string;
645
+ subtitle: string;
581
646
  };
582
647
  };
583
648
  "connect-carrier": {
@@ -779,6 +844,7 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
779
844
  emailIsRequired: string;
780
845
  unknown: string;
781
846
  noRatesAvailable: string;
847
+ refreshAndTryAgain: string;
782
848
  };
783
849
  errorTypes: {
784
850
  accountStatus: string;
@@ -797,6 +863,13 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
797
863
  "row-count_one": string;
798
864
  "row-count_other": string;
799
865
  rows: string;
866
+ clearAll: string;
867
+ shipmentId: string;
868
+ shipmentIdFilter: string;
869
+ apply: string;
870
+ clear: string;
871
+ search: string;
872
+ shipmentIdHint: string;
800
873
  };
801
874
  insuranceProviders: {
802
875
  carrier: string;
@@ -872,6 +945,7 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
872
945
  requiredList: string;
873
946
  tooFewCharacters: string;
874
947
  tooManyCharacters: string;
948
+ requiredShipmentId: string;
875
949
  };
876
950
  shippingPresets: {
877
951
  apply: string;
@@ -885,6 +959,7 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
885
959
  agreeToTerms: string;
886
960
  carriersTitle: string;
887
961
  fundingSourceTitle: string;
962
+ shipEngineTitle: string;
888
963
  };
889
964
  weight: {
890
965
  ounces: string;
@@ -909,6 +984,7 @@ export declare const Element: ({ resources, ...props }: ExternalCarriersProps &
909
984
  printForms: string;
910
985
  edit: string;
911
986
  remove: string;
987
+ viewDetails: string;
912
988
  };
913
989
  };
914
990
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
@@ -118,7 +118,6 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
118
118
  setup: {
119
119
  title: string;
120
120
  subtitle: string;
121
- hiddenTermsSubtitle: string;
122
121
  descriptionTitle: string;
123
122
  description: string;
124
123
  };
@@ -126,7 +125,6 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
126
125
  title: string;
127
126
  cardSubTitle: string;
128
127
  addressSubTitle: string;
129
- info: string;
130
128
  };
131
129
  vatSettings: {
132
130
  title: string;
@@ -140,7 +138,6 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
140
138
  title: string;
141
139
  };
142
140
  info: {
143
- title: string;
144
141
  description: string;
145
142
  };
146
143
  poBox: {
@@ -341,18 +338,15 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
341
338
  };
342
339
  onboarding: {
343
340
  title: string;
344
- inlineTitle: string;
345
- accountRegistration: {
346
- action: string;
341
+ confirmation: {
347
342
  title: string;
348
- subtitle: string;
349
- welcome: string;
350
- messageLine1: string;
351
- partnerMessageLine1: string;
352
- messageLine2: string;
343
+ warehouse: string;
344
+ billingAddress: string;
345
+ paymentMethod: string;
346
+ action: string;
353
347
  };
354
348
  stepLabel: {
355
- accountRegistration: string;
349
+ confirmation: string;
356
350
  termsAgreement: string;
357
351
  shipFromAddress: string;
358
352
  fundingAndCarrierConnection: string;
@@ -399,6 +393,14 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
399
393
  "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
400
394
  UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
401
395
  };
396
+ tooltip: {
397
+ warehouse: string;
398
+ };
399
+ welcomePage: {
400
+ title: string;
401
+ message: string;
402
+ action: string;
403
+ };
402
404
  };
403
405
  "manage-warehouses": {
404
406
  title: string;
@@ -507,32 +509,74 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
507
509
  };
508
510
  "list-shipments": {
509
511
  title: string;
512
+ none: string;
510
513
  headers: {
511
514
  created: string;
512
- download: string;
515
+ modified: string;
516
+ shipping: string;
513
517
  shipmentId: string;
514
- shipDate: string;
515
- shipTo: string;
518
+ parcels: string;
519
+ recipient: string;
520
+ status: string;
521
+ };
522
+ status: {
523
+ cancelled: string;
524
+ purchased: string;
525
+ readyToBuy: string;
526
+ processing: string;
516
527
  };
517
528
  actions: {
518
529
  download: {
519
530
  pdf: string;
520
531
  };
521
532
  };
533
+ emptyState: {
534
+ title: string;
535
+ subtitle: string;
536
+ filtersTitle: string;
537
+ filtersSubtitle: string;
538
+ viewAll: string;
539
+ };
540
+ errorMessages: {
541
+ title: string;
542
+ subtitle: string;
543
+ };
522
544
  };
523
545
  "list-labels": {
524
546
  title: string;
525
547
  headers: {
526
548
  created: string;
527
- download: string;
528
- labelId: string;
529
- service: string;
530
- shipTo: string;
549
+ shipmentId: string;
550
+ parcels: string;
551
+ recipient: string;
552
+ shipping: string;
553
+ shipDate: string;
554
+ status: string;
555
+ };
556
+ empty: {
557
+ title: string;
558
+ subtitle: string;
559
+ };
560
+ emptyWithFilters: {
561
+ title: string;
562
+ subtitle: string;
563
+ button: string;
564
+ };
565
+ status: {
566
+ voided: string;
567
+ error: string;
568
+ completed: string;
569
+ processing: string;
531
570
  };
532
571
  actions: {
533
- download: {
534
- pdf: string;
535
- };
572
+ title: string;
573
+ print: string;
574
+ void: string;
575
+ printForms: string;
576
+ };
577
+ errorMessages: {
578
+ title: string;
579
+ subtitle: string;
536
580
  };
537
581
  };
538
582
  "connect-carrier": {
@@ -734,6 +778,7 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
734
778
  emailIsRequired: string;
735
779
  unknown: string;
736
780
  noRatesAvailable: string;
781
+ refreshAndTryAgain: string;
737
782
  };
738
783
  errorTypes: {
739
784
  accountStatus: string;
@@ -752,6 +797,13 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
752
797
  "row-count_one": string;
753
798
  "row-count_other": string;
754
799
  rows: string;
800
+ clearAll: string;
801
+ shipmentId: string;
802
+ shipmentIdFilter: string;
803
+ apply: string;
804
+ clear: string;
805
+ search: string;
806
+ shipmentIdHint: string;
755
807
  };
756
808
  insuranceProviders: {
757
809
  carrier: string;
@@ -827,6 +879,7 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
827
879
  requiredList: string;
828
880
  tooFewCharacters: string;
829
881
  tooManyCharacters: string;
882
+ requiredShipmentId: string;
830
883
  };
831
884
  shippingPresets: {
832
885
  apply: string;
@@ -840,6 +893,7 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
840
893
  agreeToTerms: string;
841
894
  carriersTitle: string;
842
895
  fundingSourceTitle: string;
896
+ shipEngineTitle: string;
843
897
  };
844
898
  weight: {
845
899
  ounces: string;
@@ -864,6 +918,7 @@ export declare const Element: ({ resources, ...props }: ManageFundingProps & {
864
918
  printForms: string;
865
919
  edit: string;
866
920
  remove: string;
921
+ viewDetails: string;
867
922
  };
868
923
  };
869
924
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;