@shipengine/elements 2.4.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions-menu.js +1 -1
- package/components.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/components/actions-menu/actions-menu.d.ts +2 -1
- package/src/components/error-state/error-state.d.ts +6 -0
- package/src/{workflows/onboarding/components/account-registration-step/account-registration-step.styles.d.ts → components/error-state/error-state.styles.d.ts} +9 -5
- package/src/components/error-state/index.d.ts +1 -0
- package/src/components/index.d.ts +1 -0
- package/src/components/templates/address-display/address-display.d.ts +2 -1
- package/src/components/templates/wallet-form/wallet-form.d.ts +1 -1
- package/src/components/warehouse-form/warehouse-form-schema.d.ts +4 -1
- package/src/components/warehouse-form/warehouse-form.d.ts +2 -1
- package/src/elements/label-layout/label-layout-element.d.ts +44 -15
- package/src/elements/labels-grid/hooks/use-labels-grid.d.ts +2 -0
- package/src/elements/labels-grid/labels-grid.d.ts +79 -44
- package/src/elements/labels-grid/labels-grid.styles.d.ts +7 -1
- package/src/elements/manage-carriers/manage-carriers.d.ts +44 -15
- package/src/elements/manage-external-carriers/manage-external-carriers.d.ts +66 -16
- package/src/elements/manage-funding/manage-funding-element.d.ts +44 -15
- package/src/elements/manage-warehouses/manage-warehouses.d.ts +44 -15
- package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +44 -15
- package/src/elements/purchase-label/purchase-label.d.ts +54 -28
- package/src/elements/shipment-summary/shipment-summary.d.ts +51 -19
- package/src/elements/shipments-grid/hooks/use-shipments-grid.d.ts +162 -0
- package/src/elements/shipments-grid/shipments-grid.d.ts +128 -23
- package/src/elements/shipments-grid/shipments-grid.styles.d.ts +11 -0
- package/src/elements/theme-creator/theme-creator.d.ts +44 -15
- package/src/elements/transaction-history/transaction-history-element.d.ts +44 -15
- package/src/elements/unit-settings/unit-settings-element.d.ts +44 -15
- package/src/elements/vat-settings/vat-settings-element.d.ts +44 -15
- package/src/elements/void-label/void-label.d.ts +56 -26
- package/src/locales/en/index.d.ts +44 -15
- package/src/workflows/account-settings/account-settings.d.ts +44 -15
- package/src/workflows/carrier-services/carrier-services.d.ts +44 -15
- package/src/workflows/connect-external-carrier/connect-external-carrier.d.ts +44 -15
- package/src/workflows/label-workflow/label-workflow.d.ts +31 -29
- package/src/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.d.ts +12 -0
- package/src/workflows/onboarding/components/confirmation-and-submission-step/index.d.ts +2 -0
- package/src/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.d.ts +19 -0
- package/src/workflows/onboarding/components/funding-step/funding-step.d.ts +7 -0
- package/src/workflows/onboarding/components/funding-step/index.d.ts +1 -0
- package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +1 -2
- package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.styles.d.ts +3 -0
- package/src/workflows/onboarding/components/ship-from-address-step/index.d.ts +0 -1
- package/src/workflows/onboarding/components/ship-from-address-step/ship-from-address-step.d.ts +3 -2
- package/src/workflows/onboarding/components/step-header/step-header.d.ts +3 -2
- 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
- package/src/workflows/onboarding/components/welcome-page/index.d.ts +1 -0
- package/src/workflows/onboarding/components/welcome-page/welcome-page.d.ts +4 -0
- package/src/workflows/onboarding/onboarding.d.ts +46 -19
- package/suspend-text.js +1 -1
- package/transaction-history-element.js +1 -1
- package/use-unit-settings.js +1 -1
- package/usePager.js +1 -1
- package/wallet-form.js +1 -1
- package/workflows.js +1 -1
- package/src/workflows/onboarding/components/account-registration-form/account-registration-form-schema.d.ts +0 -13
- package/src/workflows/onboarding/components/account-registration-form/account-registration-form.d.ts +0 -4
- package/src/workflows/onboarding/components/account-registration-form/index.d.ts +0 -1
- package/src/workflows/onboarding/components/account-registration-step/account-registration-step.d.ts +0 -5
- package/src/workflows/onboarding/components/account-registration-step/index.d.ts +0 -2
- package/src/workflows/onboarding/components/account-registration-step/use-account-registration-step.d.ts +0 -7
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/funding-and-carrier-connection-step.d.ts +0 -9
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/index.d.ts +0 -2
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/use-funding-and-carrier-connection-step.d.ts +0 -25
- package/src/workflows/onboarding/components/ship-from-address-step/use-ship-from-address-step.d.ts +0 -9
|
@@ -117,7 +117,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
117
117
|
setup: {
|
|
118
118
|
title: string;
|
|
119
119
|
subtitle: string;
|
|
120
|
-
hiddenTermsSubtitle: string;
|
|
121
120
|
descriptionTitle: string;
|
|
122
121
|
description: string;
|
|
123
122
|
};
|
|
@@ -125,7 +124,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
125
124
|
title: string;
|
|
126
125
|
cardSubTitle: string;
|
|
127
126
|
addressSubTitle: string;
|
|
128
|
-
info: string;
|
|
129
127
|
};
|
|
130
128
|
vatSettings: {
|
|
131
129
|
title: string;
|
|
@@ -139,7 +137,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
139
137
|
title: string;
|
|
140
138
|
};
|
|
141
139
|
info: {
|
|
142
|
-
title: string;
|
|
143
140
|
description: string;
|
|
144
141
|
};
|
|
145
142
|
poBox: {
|
|
@@ -340,18 +337,15 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
340
337
|
};
|
|
341
338
|
onboarding: {
|
|
342
339
|
title: string;
|
|
343
|
-
|
|
344
|
-
accountRegistration: {
|
|
345
|
-
action: string;
|
|
340
|
+
confirmation: {
|
|
346
341
|
title: string;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
messageLine2: string;
|
|
342
|
+
warehouse: string;
|
|
343
|
+
billingAddress: string;
|
|
344
|
+
paymentMethod: string;
|
|
345
|
+
action: string;
|
|
352
346
|
};
|
|
353
347
|
stepLabel: {
|
|
354
|
-
|
|
348
|
+
confirmation: string;
|
|
355
349
|
termsAgreement: string;
|
|
356
350
|
shipFromAddress: string;
|
|
357
351
|
fundingAndCarrierConnection: string;
|
|
@@ -398,6 +392,14 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
398
392
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
399
393
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
400
394
|
};
|
|
395
|
+
tooltip: {
|
|
396
|
+
warehouse: string;
|
|
397
|
+
};
|
|
398
|
+
welcomePage: {
|
|
399
|
+
title: string;
|
|
400
|
+
message: string;
|
|
401
|
+
action: string;
|
|
402
|
+
};
|
|
401
403
|
};
|
|
402
404
|
"manage-warehouses": {
|
|
403
405
|
title: string;
|
|
@@ -506,18 +508,38 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
506
508
|
};
|
|
507
509
|
"list-shipments": {
|
|
508
510
|
title: string;
|
|
511
|
+
none: string;
|
|
509
512
|
headers: {
|
|
510
513
|
created: string;
|
|
511
|
-
|
|
514
|
+
modified: string;
|
|
515
|
+
shipping: string;
|
|
512
516
|
shipmentId: string;
|
|
513
|
-
|
|
514
|
-
|
|
517
|
+
parcels: string;
|
|
518
|
+
recipient: string;
|
|
519
|
+
status: string;
|
|
520
|
+
};
|
|
521
|
+
status: {
|
|
522
|
+
cancelled: string;
|
|
523
|
+
purchased: string;
|
|
524
|
+
readyToBuy: string;
|
|
525
|
+
processing: string;
|
|
515
526
|
};
|
|
516
527
|
actions: {
|
|
517
528
|
download: {
|
|
518
529
|
pdf: string;
|
|
519
530
|
};
|
|
520
531
|
};
|
|
532
|
+
emptyState: {
|
|
533
|
+
title: string;
|
|
534
|
+
subtitle: string;
|
|
535
|
+
filtersTitle: string;
|
|
536
|
+
filtersSubtitle: string;
|
|
537
|
+
viewAll: string;
|
|
538
|
+
};
|
|
539
|
+
errorMessages: {
|
|
540
|
+
title: string;
|
|
541
|
+
subtitle: string;
|
|
542
|
+
};
|
|
521
543
|
};
|
|
522
544
|
"list-labels": {
|
|
523
545
|
title: string;
|
|
@@ -551,6 +573,10 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
551
573
|
void: string;
|
|
552
574
|
printForms: string;
|
|
553
575
|
};
|
|
576
|
+
errorMessages: {
|
|
577
|
+
title: string;
|
|
578
|
+
subtitle: string;
|
|
579
|
+
};
|
|
554
580
|
};
|
|
555
581
|
"connect-carrier": {
|
|
556
582
|
actions: {
|
|
@@ -751,6 +777,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
751
777
|
emailIsRequired: string;
|
|
752
778
|
unknown: string;
|
|
753
779
|
noRatesAvailable: string;
|
|
780
|
+
refreshAndTryAgain: string;
|
|
754
781
|
};
|
|
755
782
|
errorTypes: {
|
|
756
783
|
accountStatus: string;
|
|
@@ -865,6 +892,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
865
892
|
agreeToTerms: string;
|
|
866
893
|
carriersTitle: string;
|
|
867
894
|
fundingSourceTitle: string;
|
|
895
|
+
shipEngineTitle: string;
|
|
868
896
|
};
|
|
869
897
|
weight: {
|
|
870
898
|
ounces: string;
|
|
@@ -889,6 +917,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
889
917
|
printForms: string;
|
|
890
918
|
edit: string;
|
|
891
919
|
remove: string;
|
|
920
|
+
viewDetails: string;
|
|
892
921
|
};
|
|
893
922
|
};
|
|
894
923
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
@@ -208,7 +208,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
208
208
|
setup: {
|
|
209
209
|
title: string;
|
|
210
210
|
subtitle: string;
|
|
211
|
-
hiddenTermsSubtitle: string;
|
|
212
211
|
descriptionTitle: string;
|
|
213
212
|
description: string;
|
|
214
213
|
};
|
|
@@ -216,7 +215,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
216
215
|
title: string;
|
|
217
216
|
cardSubTitle: string;
|
|
218
217
|
addressSubTitle: string;
|
|
219
|
-
info: string;
|
|
220
218
|
};
|
|
221
219
|
vatSettings: {
|
|
222
220
|
title: string;
|
|
@@ -230,13 +228,15 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
230
228
|
title: string;
|
|
231
229
|
};
|
|
232
230
|
info: {
|
|
233
|
-
title: string;
|
|
234
231
|
description: string;
|
|
235
232
|
};
|
|
236
233
|
poBox: {
|
|
237
234
|
title: string;
|
|
238
235
|
description: string;
|
|
239
|
-
};
|
|
236
|
+
}; /**
|
|
237
|
+
* `onSuccess` is a callback function that will be invoked when the request to void a given
|
|
238
|
+
* shipping label is successful.
|
|
239
|
+
*/
|
|
240
240
|
carrier: {
|
|
241
241
|
title: string;
|
|
242
242
|
confirmAddress: string;
|
|
@@ -461,44 +461,39 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
461
461
|
};
|
|
462
462
|
onboarding: {
|
|
463
463
|
title: string;
|
|
464
|
-
|
|
465
|
-
accountRegistration: {
|
|
466
|
-
action: string;
|
|
464
|
+
confirmation: {
|
|
467
465
|
title: string;
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
messageLine2: string;
|
|
466
|
+
warehouse: string;
|
|
467
|
+
billingAddress: string;
|
|
468
|
+
paymentMethod: string;
|
|
469
|
+
action: string;
|
|
473
470
|
};
|
|
474
471
|
stepLabel: {
|
|
475
|
-
|
|
472
|
+
confirmation: string;
|
|
476
473
|
termsAgreement: string;
|
|
477
474
|
shipFromAddress: string;
|
|
478
475
|
fundingAndCarrierConnection: string;
|
|
479
476
|
};
|
|
480
477
|
warehouse: {
|
|
481
478
|
title: string;
|
|
479
|
+
/**
|
|
480
|
+
* # Void Label Component Props
|
|
481
|
+
*
|
|
482
|
+
* - These are the base props that will be passed into the `<VoidLabel />` component.
|
|
483
|
+
*
|
|
484
|
+
* @see {@link VoidLabel.Component | This prop types usage in the `<VoidLabel />` component}
|
|
485
|
+
*/
|
|
482
486
|
subtitle: string;
|
|
483
487
|
inlineMessage: string;
|
|
484
488
|
};
|
|
485
489
|
errors: {
|
|
486
490
|
noCarriers: {
|
|
487
|
-
/**
|
|
488
|
-
* `onSuccess` is a callback function that will be invoked when the request to void a given
|
|
489
|
-
* shipping label is successful.
|
|
490
|
-
*/
|
|
491
491
|
title: string;
|
|
492
492
|
subtitle: string;
|
|
493
493
|
};
|
|
494
494
|
};
|
|
495
495
|
success: {
|
|
496
|
-
title: string;
|
|
497
|
-
* `onViewShipment` is a callback function that will be invoked when the user clicks the
|
|
498
|
-
* `View Shipment` button. This will take you back to the
|
|
499
|
-
* {@link ShipmentSummary.Element | `Shipment Summary Element`} for the given shipment, where you
|
|
500
|
-
* will be able to see the voided label listed.
|
|
501
|
-
*/
|
|
496
|
+
title: string;
|
|
502
497
|
subtitle: string;
|
|
503
498
|
action: string;
|
|
504
499
|
};
|
|
@@ -528,6 +523,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
528
523
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
529
524
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
530
525
|
};
|
|
526
|
+
tooltip: {
|
|
527
|
+
warehouse: string;
|
|
528
|
+
};
|
|
529
|
+
welcomePage: {
|
|
530
|
+
title: string;
|
|
531
|
+
message: string;
|
|
532
|
+
action: string;
|
|
533
|
+
};
|
|
531
534
|
};
|
|
532
535
|
"manage-warehouses": {
|
|
533
536
|
title: string;
|
|
@@ -638,18 +641,38 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
638
641
|
};
|
|
639
642
|
"list-shipments": {
|
|
640
643
|
title: string;
|
|
644
|
+
none: string;
|
|
641
645
|
headers: {
|
|
642
646
|
created: string;
|
|
643
|
-
|
|
647
|
+
modified: string;
|
|
648
|
+
shipping: string;
|
|
644
649
|
shipmentId: string;
|
|
645
|
-
|
|
646
|
-
|
|
650
|
+
parcels: string;
|
|
651
|
+
recipient: string;
|
|
652
|
+
status: string;
|
|
653
|
+
};
|
|
654
|
+
status: {
|
|
655
|
+
cancelled: string;
|
|
656
|
+
purchased: string;
|
|
657
|
+
readyToBuy: string;
|
|
658
|
+
processing: string;
|
|
647
659
|
};
|
|
648
660
|
actions: {
|
|
649
661
|
download: {
|
|
650
662
|
pdf: string;
|
|
651
663
|
};
|
|
652
664
|
};
|
|
665
|
+
emptyState: {
|
|
666
|
+
title: string;
|
|
667
|
+
subtitle: string;
|
|
668
|
+
filtersTitle: string;
|
|
669
|
+
filtersSubtitle: string;
|
|
670
|
+
viewAll: string;
|
|
671
|
+
};
|
|
672
|
+
errorMessages: {
|
|
673
|
+
title: string;
|
|
674
|
+
subtitle: string;
|
|
675
|
+
};
|
|
653
676
|
};
|
|
654
677
|
"list-labels": {
|
|
655
678
|
title: string;
|
|
@@ -683,6 +706,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
683
706
|
void: string;
|
|
684
707
|
printForms: string;
|
|
685
708
|
};
|
|
709
|
+
errorMessages: {
|
|
710
|
+
title: string;
|
|
711
|
+
subtitle: string;
|
|
712
|
+
};
|
|
686
713
|
};
|
|
687
714
|
"connect-carrier": {
|
|
688
715
|
actions: {
|
|
@@ -888,6 +915,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
888
915
|
emailIsRequired: string;
|
|
889
916
|
unknown: string;
|
|
890
917
|
noRatesAvailable: string;
|
|
918
|
+
refreshAndTryAgain: string;
|
|
891
919
|
};
|
|
892
920
|
errorTypes: {
|
|
893
921
|
accountStatus: string;
|
|
@@ -1002,6 +1030,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
1002
1030
|
agreeToTerms: string;
|
|
1003
1031
|
carriersTitle: string;
|
|
1004
1032
|
fundingSourceTitle: string;
|
|
1033
|
+
shipEngineTitle: string;
|
|
1005
1034
|
};
|
|
1006
1035
|
weight: {
|
|
1007
1036
|
ounces: string;
|
|
@@ -1026,6 +1055,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
1026
1055
|
printForms: string;
|
|
1027
1056
|
edit: string;
|
|
1028
1057
|
remove: string;
|
|
1058
|
+
viewDetails: string;
|
|
1029
1059
|
};
|
|
1030
1060
|
};
|
|
1031
1061
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
@@ -113,7 +113,6 @@ declare const _default: {
|
|
|
113
113
|
setup: {
|
|
114
114
|
title: string;
|
|
115
115
|
subtitle: string;
|
|
116
|
-
hiddenTermsSubtitle: string;
|
|
117
116
|
descriptionTitle: string;
|
|
118
117
|
description: string;
|
|
119
118
|
};
|
|
@@ -121,7 +120,6 @@ declare const _default: {
|
|
|
121
120
|
title: string;
|
|
122
121
|
cardSubTitle: string;
|
|
123
122
|
addressSubTitle: string;
|
|
124
|
-
info: string;
|
|
125
123
|
};
|
|
126
124
|
vatSettings: {
|
|
127
125
|
title: string;
|
|
@@ -135,7 +133,6 @@ declare const _default: {
|
|
|
135
133
|
title: string;
|
|
136
134
|
};
|
|
137
135
|
info: {
|
|
138
|
-
title: string;
|
|
139
136
|
description: string;
|
|
140
137
|
};
|
|
141
138
|
poBox: {
|
|
@@ -336,18 +333,15 @@ declare const _default: {
|
|
|
336
333
|
};
|
|
337
334
|
onboarding: {
|
|
338
335
|
title: string;
|
|
339
|
-
|
|
340
|
-
accountRegistration: {
|
|
341
|
-
action: string;
|
|
336
|
+
confirmation: {
|
|
342
337
|
title: string;
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
messageLine2: string;
|
|
338
|
+
warehouse: string;
|
|
339
|
+
billingAddress: string;
|
|
340
|
+
paymentMethod: string;
|
|
341
|
+
action: string;
|
|
348
342
|
};
|
|
349
343
|
stepLabel: {
|
|
350
|
-
|
|
344
|
+
confirmation: string;
|
|
351
345
|
termsAgreement: string;
|
|
352
346
|
shipFromAddress: string;
|
|
353
347
|
fundingAndCarrierConnection: string;
|
|
@@ -394,6 +388,14 @@ declare const _default: {
|
|
|
394
388
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
395
389
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
396
390
|
};
|
|
391
|
+
tooltip: {
|
|
392
|
+
warehouse: string;
|
|
393
|
+
};
|
|
394
|
+
welcomePage: {
|
|
395
|
+
title: string;
|
|
396
|
+
message: string;
|
|
397
|
+
action: string;
|
|
398
|
+
};
|
|
397
399
|
};
|
|
398
400
|
"manage-warehouses": {
|
|
399
401
|
title: string;
|
|
@@ -502,18 +504,38 @@ declare const _default: {
|
|
|
502
504
|
};
|
|
503
505
|
"list-shipments": {
|
|
504
506
|
title: string;
|
|
507
|
+
none: string;
|
|
505
508
|
headers: {
|
|
506
509
|
created: string;
|
|
507
|
-
|
|
510
|
+
modified: string;
|
|
511
|
+
shipping: string;
|
|
508
512
|
shipmentId: string;
|
|
509
|
-
|
|
510
|
-
|
|
513
|
+
parcels: string;
|
|
514
|
+
recipient: string;
|
|
515
|
+
status: string;
|
|
516
|
+
};
|
|
517
|
+
status: {
|
|
518
|
+
cancelled: string;
|
|
519
|
+
purchased: string;
|
|
520
|
+
readyToBuy: string;
|
|
521
|
+
processing: string;
|
|
511
522
|
};
|
|
512
523
|
actions: {
|
|
513
524
|
download: {
|
|
514
525
|
pdf: string;
|
|
515
526
|
};
|
|
516
527
|
};
|
|
528
|
+
emptyState: {
|
|
529
|
+
title: string;
|
|
530
|
+
subtitle: string;
|
|
531
|
+
filtersTitle: string;
|
|
532
|
+
filtersSubtitle: string;
|
|
533
|
+
viewAll: string;
|
|
534
|
+
};
|
|
535
|
+
errorMessages: {
|
|
536
|
+
title: string;
|
|
537
|
+
subtitle: string;
|
|
538
|
+
};
|
|
517
539
|
};
|
|
518
540
|
"list-labels": {
|
|
519
541
|
title: string;
|
|
@@ -547,6 +569,10 @@ declare const _default: {
|
|
|
547
569
|
void: string;
|
|
548
570
|
printForms: string;
|
|
549
571
|
};
|
|
572
|
+
errorMessages: {
|
|
573
|
+
title: string;
|
|
574
|
+
subtitle: string;
|
|
575
|
+
};
|
|
550
576
|
};
|
|
551
577
|
"connect-carrier": {
|
|
552
578
|
actions: {
|
|
@@ -747,6 +773,7 @@ declare const _default: {
|
|
|
747
773
|
emailIsRequired: string;
|
|
748
774
|
unknown: string;
|
|
749
775
|
noRatesAvailable: string;
|
|
776
|
+
refreshAndTryAgain: string;
|
|
750
777
|
};
|
|
751
778
|
errorTypes: {
|
|
752
779
|
accountStatus: string;
|
|
@@ -861,6 +888,7 @@ declare const _default: {
|
|
|
861
888
|
agreeToTerms: string;
|
|
862
889
|
carriersTitle: string;
|
|
863
890
|
fundingSourceTitle: string;
|
|
891
|
+
shipEngineTitle: string;
|
|
864
892
|
};
|
|
865
893
|
weight: {
|
|
866
894
|
ounces: string;
|
|
@@ -885,6 +913,7 @@ declare const _default: {
|
|
|
885
913
|
printForms: string;
|
|
886
914
|
edit: string;
|
|
887
915
|
remove: string;
|
|
916
|
+
viewDetails: string;
|
|
888
917
|
};
|
|
889
918
|
};
|
|
890
919
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
@@ -151,7 +151,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
151
151
|
setup: {
|
|
152
152
|
title: string;
|
|
153
153
|
subtitle: string;
|
|
154
|
-
hiddenTermsSubtitle: string;
|
|
155
154
|
descriptionTitle: string;
|
|
156
155
|
description: string;
|
|
157
156
|
};
|
|
@@ -159,7 +158,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
159
158
|
title: string;
|
|
160
159
|
cardSubTitle: string;
|
|
161
160
|
addressSubTitle: string;
|
|
162
|
-
info: string;
|
|
163
161
|
};
|
|
164
162
|
vatSettings: {
|
|
165
163
|
title: string;
|
|
@@ -173,7 +171,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
173
171
|
title: string;
|
|
174
172
|
};
|
|
175
173
|
info: {
|
|
176
|
-
title: string;
|
|
177
174
|
description: string;
|
|
178
175
|
};
|
|
179
176
|
poBox: {
|
|
@@ -374,18 +371,15 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
374
371
|
};
|
|
375
372
|
onboarding: {
|
|
376
373
|
title: string;
|
|
377
|
-
|
|
378
|
-
accountRegistration: {
|
|
379
|
-
action: string;
|
|
374
|
+
confirmation: {
|
|
380
375
|
title: string;
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
messageLine2: string;
|
|
376
|
+
warehouse: string;
|
|
377
|
+
billingAddress: string;
|
|
378
|
+
paymentMethod: string;
|
|
379
|
+
action: string;
|
|
386
380
|
};
|
|
387
381
|
stepLabel: {
|
|
388
|
-
|
|
382
|
+
confirmation: string;
|
|
389
383
|
termsAgreement: string;
|
|
390
384
|
shipFromAddress: string;
|
|
391
385
|
fundingAndCarrierConnection: string;
|
|
@@ -432,6 +426,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
432
426
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
433
427
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
434
428
|
};
|
|
429
|
+
tooltip: {
|
|
430
|
+
warehouse: string;
|
|
431
|
+
};
|
|
432
|
+
welcomePage: {
|
|
433
|
+
title: string;
|
|
434
|
+
message: string;
|
|
435
|
+
action: string;
|
|
436
|
+
};
|
|
435
437
|
};
|
|
436
438
|
"manage-warehouses": {
|
|
437
439
|
title: string;
|
|
@@ -540,18 +542,38 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
540
542
|
};
|
|
541
543
|
"list-shipments": {
|
|
542
544
|
title: string;
|
|
545
|
+
none: string;
|
|
543
546
|
headers: {
|
|
544
547
|
created: string;
|
|
545
|
-
|
|
548
|
+
modified: string;
|
|
549
|
+
shipping: string;
|
|
546
550
|
shipmentId: string;
|
|
547
|
-
|
|
548
|
-
|
|
551
|
+
parcels: string;
|
|
552
|
+
recipient: string;
|
|
553
|
+
status: string;
|
|
554
|
+
};
|
|
555
|
+
status: {
|
|
556
|
+
cancelled: string;
|
|
557
|
+
purchased: string;
|
|
558
|
+
readyToBuy: string;
|
|
559
|
+
processing: string;
|
|
549
560
|
};
|
|
550
561
|
actions: {
|
|
551
562
|
download: {
|
|
552
563
|
pdf: string;
|
|
553
564
|
};
|
|
554
565
|
};
|
|
566
|
+
emptyState: {
|
|
567
|
+
title: string;
|
|
568
|
+
subtitle: string;
|
|
569
|
+
filtersTitle: string;
|
|
570
|
+
filtersSubtitle: string;
|
|
571
|
+
viewAll: string;
|
|
572
|
+
};
|
|
573
|
+
errorMessages: {
|
|
574
|
+
title: string;
|
|
575
|
+
subtitle: string;
|
|
576
|
+
};
|
|
555
577
|
};
|
|
556
578
|
"list-labels": {
|
|
557
579
|
title: string;
|
|
@@ -585,6 +607,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
585
607
|
void: string;
|
|
586
608
|
printForms: string;
|
|
587
609
|
};
|
|
610
|
+
errorMessages: {
|
|
611
|
+
title: string;
|
|
612
|
+
subtitle: string;
|
|
613
|
+
};
|
|
588
614
|
};
|
|
589
615
|
"connect-carrier": {
|
|
590
616
|
actions: {
|
|
@@ -785,6 +811,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
785
811
|
emailIsRequired: string;
|
|
786
812
|
unknown: string;
|
|
787
813
|
noRatesAvailable: string;
|
|
814
|
+
refreshAndTryAgain: string;
|
|
788
815
|
};
|
|
789
816
|
errorTypes: {
|
|
790
817
|
accountStatus: string;
|
|
@@ -899,6 +926,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
899
926
|
agreeToTerms: string;
|
|
900
927
|
carriersTitle: string;
|
|
901
928
|
fundingSourceTitle: string;
|
|
929
|
+
shipEngineTitle: string;
|
|
902
930
|
};
|
|
903
931
|
weight: {
|
|
904
932
|
ounces: string;
|
|
@@ -923,6 +951,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
923
951
|
printForms: string;
|
|
924
952
|
edit: string;
|
|
925
953
|
remove: string;
|
|
954
|
+
viewDetails: string;
|
|
926
955
|
};
|
|
927
956
|
};
|
|
928
957
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|