@shipengine/elements 1.7.0 → 1.8.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/index.cjs +15309 -14863
- package/index.js +15310 -14867
- package/package.json +3 -3
- package/src/components/collapsible-panel/collapsible-panel.styles.d.ts +2 -3
- package/src/components/display-term/display-term.d.ts +2 -2
- package/src/components/display-term/display-term.styles.d.ts +2 -0
- package/src/components/index.d.ts +6 -5
- package/src/components/templates/wallet-form/wallet-form.d.ts +3 -1
- package/src/components/templates/wallet-form/wallet-form.styles.d.ts +3 -0
- package/src/components/vat-form/index.d.ts +1 -0
- package/src/components/vat-form/vat-form-schema.d.ts +10 -0
- package/src/components/vat-form/vat-form.d.ts +6 -0
- package/src/components/vat-form/vat-form.styles.d.ts +9 -0
- package/src/elements/external-carriers/external-carriers.d.ts +124 -97
- package/src/elements/label-layout/label-layout-element.d.ts +101 -74
- package/src/elements/labels-grid/labels-grid.d.ts +101 -74
- package/src/elements/manage-funding/manage-funding-element.d.ts +101 -74
- package/src/elements/manage-warehouses/manage-warehouses.d.ts +101 -74
- package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +101 -74
- package/src/elements/purchase-label/purchase-label.d.ts +121 -77
- package/src/elements/shipengine-carriers/shipengine-carriers.d.ts +124 -97
- package/src/elements/shipments-grid/shipments-grid.d.ts +101 -74
- package/src/elements/theme-creator/theme-creator.d.ts +101 -74
- package/src/elements/unit-settings/unit-settings-element.d.ts +101 -74
- package/src/elements/vat-settings/index.d.ts +1 -0
- package/src/elements/vat-settings/vat-settings-element.d.ts +818 -0
- package/src/elements/view-shipment/view-shipment.d.ts +111 -83
- package/src/elements/void-label/components/message/message.d.ts +3 -2
- package/src/elements/void-label/void-label.d.ts +128 -92
- package/src/elements/wallet-history/wallet-history-element.d.ts +101 -74
- package/src/features/index.d.ts +5 -4
- package/src/features/unit-settings/unit-settings.d.ts +2 -2
- package/src/features/unit-settings/use-unit-settings.d.ts +1 -1
- package/src/features/vat-settings/index.d.ts +2 -0
- package/src/features/vat-settings/use-vat-settings.d.ts +8 -0
- package/src/features/vat-settings/vat-settings.d.ts +9 -0
- package/src/features/vat-settings/vat-settings.styles.d.ts +29 -0
- package/src/hooks/index.d.ts +3 -3
- package/src/locales/en/index.d.ts +101 -74
- package/src/types/patch.d.ts +1 -12
- package/src/utilities/feature-flags.d.ts +10 -0
- package/src/utilities/shipengine/index.d.ts +1 -0
- package/src/utilities/shipengine/shipment.d.ts +11 -0
- package/src/workflows/account-settings/account-settings.d.ts +104 -79
- package/src/workflows/connect-carrier/connect-carrier.d.ts +101 -74
- package/src/workflows/manage-wallet-workflow/manage-wallet-workflow.d.ts +106 -78
- package/src/workflows/onboarding/components/account-registration-form/account-registration-form-schema.d.ts +3 -0
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/funding-and-carrier-connection-step.d.ts +3 -1
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/use-funding-and-carrier-connection-step.d.ts +2 -2
- package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +2 -2
- package/src/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.d.ts +3 -4
- package/src/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.styles.d.ts +6 -7
- package/src/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.d.ts +3 -4
- package/src/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.styles.d.ts +3 -0
- package/src/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.d.ts +7 -7
- package/src/workflows/onboarding/onboarding.d.ts +101 -74
- package/vite.config.d.ts +1 -1
|
@@ -125,6 +125,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
125
125
|
resultMessages: {
|
|
126
126
|
approved: string;
|
|
127
127
|
rejected: string;
|
|
128
|
+
dpdwallet: string;
|
|
128
129
|
};
|
|
129
130
|
refund_process: string;
|
|
130
131
|
refund_rules: string;
|
|
@@ -169,6 +170,38 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
169
170
|
};
|
|
170
171
|
noLabels: string;
|
|
171
172
|
};
|
|
173
|
+
"vat-settings": {
|
|
174
|
+
addNew: string;
|
|
175
|
+
vatNumber: string;
|
|
176
|
+
vatRegistrationTooltip: string;
|
|
177
|
+
vatFormText: string;
|
|
178
|
+
vatFormRegisterLater: string;
|
|
179
|
+
vatNumberInputHint: string;
|
|
180
|
+
vatNumberInputPlaceholder: string;
|
|
181
|
+
verifiedVat: string;
|
|
182
|
+
vatFormErrors: {
|
|
183
|
+
invalidFieldValue: string;
|
|
184
|
+
verificationFailure: string;
|
|
185
|
+
forbidden: string;
|
|
186
|
+
connectionNotSupported: string;
|
|
187
|
+
genericTitle: string;
|
|
188
|
+
genericText: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
"shipengine-carriers": {
|
|
192
|
+
title: string;
|
|
193
|
+
headers: {
|
|
194
|
+
accountCarriers: string;
|
|
195
|
+
carriers: string;
|
|
196
|
+
settings: string;
|
|
197
|
+
};
|
|
198
|
+
actions: {
|
|
199
|
+
status: {
|
|
200
|
+
connected: string;
|
|
201
|
+
notConnected: string;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
172
205
|
"register-wallet": {
|
|
173
206
|
sections: {
|
|
174
207
|
setup: {
|
|
@@ -184,8 +217,15 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
184
217
|
addressSubTitle: string;
|
|
185
218
|
info: string;
|
|
186
219
|
};
|
|
220
|
+
vatSettings: {
|
|
221
|
+
title: string;
|
|
222
|
+
};
|
|
187
223
|
carriers: {
|
|
188
224
|
title: string;
|
|
225
|
+
/**
|
|
226
|
+
* `onClickPrintLabel` is a callback function that will be invoked when the user clicks the
|
|
227
|
+
* `Print Label` button.
|
|
228
|
+
*/
|
|
189
229
|
subtitle: string;
|
|
190
230
|
};
|
|
191
231
|
notifications: {
|
|
@@ -193,10 +233,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
193
233
|
title: string;
|
|
194
234
|
};
|
|
195
235
|
info: {
|
|
196
|
-
title: string;
|
|
197
|
-
* `onClickPurchaseLabel` is a callback function that will be invoked when the user clicks the
|
|
198
|
-
* `Purchase Label` button.
|
|
199
|
-
*/
|
|
236
|
+
title: string;
|
|
200
237
|
description: string;
|
|
201
238
|
};
|
|
202
239
|
poBox: {
|
|
@@ -315,6 +352,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
315
352
|
rateSavings: string;
|
|
316
353
|
upsGroundSaverTermsAcknowledgement: string;
|
|
317
354
|
dhlExpressTermsAcknowledgement: string;
|
|
355
|
+
noRateService: string;
|
|
318
356
|
};
|
|
319
357
|
requirements: {
|
|
320
358
|
noWarehouse: string;
|
|
@@ -381,6 +419,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
381
419
|
action: string;
|
|
382
420
|
};
|
|
383
421
|
termsAndAgreementLinkText: {
|
|
422
|
+
shipEngineToS: string;
|
|
423
|
+
auctanePrivacyPolicy: string;
|
|
384
424
|
aHR0cHM6Ly9teWRobC5leHByZXNzLmRobC91cy9lbi9sZWdhbC90ZXJtcy1hbmQtY29uZGl0aW9ucy5odG1s: string;
|
|
385
425
|
"aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9wcml2YWN5LXBvbGljeQ==": string;
|
|
386
426
|
"aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9jb25kaXRpb25zLw==": string;
|
|
@@ -405,45 +445,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
405
445
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
406
446
|
};
|
|
407
447
|
};
|
|
408
|
-
"manage-defaults": {
|
|
409
|
-
label: {
|
|
410
|
-
title: string;
|
|
411
|
-
letter: {
|
|
412
|
-
title: string;
|
|
413
|
-
description: string;
|
|
414
|
-
};
|
|
415
|
-
purchase: {
|
|
416
|
-
title: string;
|
|
417
|
-
description: string;
|
|
418
|
-
};
|
|
419
|
-
thermal: {
|
|
420
|
-
title: string;
|
|
421
|
-
description: string;
|
|
422
|
-
};
|
|
423
|
-
};
|
|
424
|
-
status: {
|
|
425
|
-
saving: string;
|
|
426
|
-
saved: string;
|
|
427
|
-
savingFailed: string;
|
|
428
|
-
};
|
|
429
|
-
units: {
|
|
430
|
-
title: string;
|
|
431
|
-
/**
|
|
432
|
-
* `features` is a set of feature flags you would like to enable or disable in this component.
|
|
433
|
-
*/
|
|
434
|
-
dimensions: {
|
|
435
|
-
title: string;
|
|
436
|
-
standard: string;
|
|
437
|
-
metric: string;
|
|
438
|
-
};
|
|
439
|
-
weight: {
|
|
440
|
-
title: string;
|
|
441
|
-
standard: string;
|
|
442
|
-
g: string;
|
|
443
|
-
kg: string;
|
|
444
|
-
};
|
|
445
|
-
};
|
|
446
|
-
};
|
|
447
448
|
"manage-warehouses": {
|
|
448
449
|
title: string;
|
|
449
450
|
addNew: string;
|
|
@@ -514,6 +515,45 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
514
515
|
currentBalance: string;
|
|
515
516
|
maximumBalanceAmount: string;
|
|
516
517
|
};
|
|
518
|
+
"manage-defaults": {
|
|
519
|
+
label: {
|
|
520
|
+
title: string;
|
|
521
|
+
letter: {
|
|
522
|
+
title: string;
|
|
523
|
+
description: string;
|
|
524
|
+
};
|
|
525
|
+
purchase: {
|
|
526
|
+
title: string;
|
|
527
|
+
description: string;
|
|
528
|
+
};
|
|
529
|
+
thermal: {
|
|
530
|
+
title: string;
|
|
531
|
+
description: string;
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
status: {
|
|
535
|
+
saving: string;
|
|
536
|
+
saved: string;
|
|
537
|
+
savingFailed: string;
|
|
538
|
+
};
|
|
539
|
+
units: {
|
|
540
|
+
title: string;
|
|
541
|
+
/**
|
|
542
|
+
* `features` is a set of feature flags you would like to enable or disable in this component.
|
|
543
|
+
*/
|
|
544
|
+
dimensions: {
|
|
545
|
+
title: string;
|
|
546
|
+
standard: string;
|
|
547
|
+
metric: string;
|
|
548
|
+
};
|
|
549
|
+
weight: {
|
|
550
|
+
title: string;
|
|
551
|
+
standard: string;
|
|
552
|
+
g: string;
|
|
553
|
+
kg: string;
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
};
|
|
517
557
|
"list-shipments": {
|
|
518
558
|
title: string;
|
|
519
559
|
headers: {
|
|
@@ -544,18 +584,33 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
544
584
|
};
|
|
545
585
|
};
|
|
546
586
|
};
|
|
547
|
-
"
|
|
548
|
-
title: string;
|
|
549
|
-
headers: {
|
|
550
|
-
accountCarriers: string;
|
|
551
|
-
carriers: string;
|
|
552
|
-
settings: string;
|
|
553
|
-
};
|
|
587
|
+
"connect-carrier": {
|
|
554
588
|
actions: {
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
589
|
+
cancel: string;
|
|
590
|
+
carrierSettings: string;
|
|
591
|
+
connectCarriers: string;
|
|
592
|
+
disconnect: string;
|
|
593
|
+
disconnectCarrier: string;
|
|
594
|
+
};
|
|
595
|
+
noCarriersDescription: string;
|
|
596
|
+
registrationForm: {
|
|
597
|
+
error: string;
|
|
598
|
+
title: string;
|
|
599
|
+
betaWarning: string; /**
|
|
600
|
+
* `features` is a set of feature flags you would like to enable or disable in this component.
|
|
601
|
+
*/
|
|
602
|
+
};
|
|
603
|
+
search: string;
|
|
604
|
+
settingsModal: {
|
|
605
|
+
closeDialog: string;
|
|
606
|
+
header: string;
|
|
607
|
+
};
|
|
608
|
+
status: {
|
|
609
|
+
connected: string;
|
|
610
|
+
};
|
|
611
|
+
disconnectDropdown: {
|
|
612
|
+
toastTitle: string;
|
|
613
|
+
toastBody: string;
|
|
559
614
|
};
|
|
560
615
|
};
|
|
561
616
|
common: {
|
|
@@ -745,6 +800,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
745
800
|
accountSettings: string;
|
|
746
801
|
carrier: string;
|
|
747
802
|
carriers: string;
|
|
803
|
+
carrierServices: string;
|
|
748
804
|
connectCarrierForm: string;
|
|
749
805
|
connectingCarriers: string;
|
|
750
806
|
creatingFundingSource: string;
|
|
@@ -847,35 +903,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
847
903
|
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
|
|
848
904
|
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
|
|
849
905
|
};
|
|
850
|
-
"connect-carrier": {
|
|
851
|
-
actions: {
|
|
852
|
-
cancel: string;
|
|
853
|
-
carrierSettings: string;
|
|
854
|
-
connectCarriers: string;
|
|
855
|
-
disconnect: string;
|
|
856
|
-
disconnectCarrier: string;
|
|
857
|
-
};
|
|
858
|
-
noCarriersDescription: string;
|
|
859
|
-
registrationForm: {
|
|
860
|
-
error: string;
|
|
861
|
-
title: string;
|
|
862
|
-
betaWarning: string; /**
|
|
863
|
-
* `features` is a set of feature flags you would like to enable or disable in this component.
|
|
864
|
-
*/
|
|
865
|
-
};
|
|
866
|
-
search: string;
|
|
867
|
-
settingsModal: {
|
|
868
|
-
closeDialog: string;
|
|
869
|
-
header: string;
|
|
870
|
-
};
|
|
871
|
-
status: {
|
|
872
|
-
connected: string;
|
|
873
|
-
};
|
|
874
|
-
disconnectDropdown: {
|
|
875
|
-
toastTitle: string;
|
|
876
|
-
toastBody: string;
|
|
877
|
-
};
|
|
878
|
-
};
|
|
879
906
|
"account-settings": {
|
|
880
907
|
messages: {
|
|
881
908
|
noFundingSources: string;
|
|
@@ -891,6 +918,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
891
918
|
externalCarriers: string;
|
|
892
919
|
labelLayout: string;
|
|
893
920
|
unitSettings: string;
|
|
921
|
+
vatSettings: string;
|
|
894
922
|
};
|
|
895
923
|
};
|
|
896
924
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { SE } from "@shipengine/alchemy";
|
|
1
|
+
import type { SE } from "@shipengine/alchemy";
|
|
2
2
|
type MessageProps = {
|
|
3
|
+
carrier?: SE.Carrier["carrierCode"];
|
|
3
4
|
voidRequest?: SE.VoidRequest;
|
|
4
5
|
};
|
|
5
|
-
export declare const Message: ({ voidRequest }: MessageProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const Message: ({ voidRequest, carrier }: MessageProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
6
7
|
export {};
|
|
@@ -131,9 +131,13 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
131
131
|
resultMessages: {
|
|
132
132
|
approved: string;
|
|
133
133
|
rejected: string;
|
|
134
|
+
dpdwallet: string;
|
|
134
135
|
};
|
|
135
136
|
refund_process: string;
|
|
136
|
-
refund_rules: string;
|
|
137
|
+
refund_rules: string; /**
|
|
138
|
+
* `onComplete` is a callback function that will be invoked when the request to void a given
|
|
139
|
+
* shipping label is completed.
|
|
140
|
+
*/
|
|
137
141
|
resultTitles: {
|
|
138
142
|
approved: string;
|
|
139
143
|
rejected: string;
|
|
@@ -168,13 +172,48 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
168
172
|
highVolumeForms: string;
|
|
169
173
|
multipleShippingServices: string;
|
|
170
174
|
sections: {
|
|
171
|
-
labels: string;
|
|
172
|
-
* `onSuccess` is a callback function that will be invoked when the request to void a given
|
|
173
|
-
* shipping label is successful.
|
|
174
|
-
*/
|
|
175
|
+
labels: string;
|
|
175
176
|
};
|
|
176
177
|
noLabels: string;
|
|
177
178
|
};
|
|
179
|
+
"vat-settings": {
|
|
180
|
+
addNew: string;
|
|
181
|
+
vatNumber: string;
|
|
182
|
+
vatRegistrationTooltip: string;
|
|
183
|
+
vatFormText: string; /**
|
|
184
|
+
* # Void Label Component Props
|
|
185
|
+
*
|
|
186
|
+
* - These are the base props that will be passed into the `<VoidLabel />` component.
|
|
187
|
+
*
|
|
188
|
+
* @see {@link VoidLabel.Component | This prop types usage in the `<VoidLabel />` component}
|
|
189
|
+
*/
|
|
190
|
+
vatFormRegisterLater: string;
|
|
191
|
+
vatNumberInputHint: string;
|
|
192
|
+
vatNumberInputPlaceholder: string;
|
|
193
|
+
verifiedVat: string;
|
|
194
|
+
vatFormErrors: {
|
|
195
|
+
invalidFieldValue: string;
|
|
196
|
+
verificationFailure: string;
|
|
197
|
+
forbidden: string;
|
|
198
|
+
connectionNotSupported: string;
|
|
199
|
+
genericTitle: string;
|
|
200
|
+
genericText: string;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
"shipengine-carriers": {
|
|
204
|
+
title: string;
|
|
205
|
+
headers: {
|
|
206
|
+
accountCarriers: string;
|
|
207
|
+
carriers: string;
|
|
208
|
+
settings: string;
|
|
209
|
+
};
|
|
210
|
+
actions: {
|
|
211
|
+
status: {
|
|
212
|
+
connected: string;
|
|
213
|
+
notConnected: string;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
};
|
|
178
217
|
"register-wallet": {
|
|
179
218
|
sections: {
|
|
180
219
|
setup: {
|
|
@@ -183,20 +222,35 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
183
222
|
hiddenTermsSubtitle: string;
|
|
184
223
|
descriptionTitle: string;
|
|
185
224
|
description: string;
|
|
186
|
-
};
|
|
225
|
+
}; /**
|
|
226
|
+
* # Void Label Component Props
|
|
227
|
+
*
|
|
228
|
+
* - These are the base props that will be passed into the `<VoidLabel />` component.
|
|
229
|
+
*
|
|
230
|
+
* @see {@link VoidLabel.Component | This prop types usage in the `<VoidLabel />` component}
|
|
231
|
+
*/
|
|
187
232
|
billing: {
|
|
188
233
|
title: string;
|
|
189
234
|
cardSubTitle: string;
|
|
190
235
|
addressSubTitle: string;
|
|
191
236
|
info: string;
|
|
192
237
|
};
|
|
238
|
+
vatSettings: {
|
|
239
|
+
title: string;
|
|
240
|
+
};
|
|
193
241
|
carriers: {
|
|
194
242
|
title: string;
|
|
195
243
|
subtitle: string;
|
|
196
244
|
};
|
|
245
|
+
/**
|
|
246
|
+
* `labelId` is the unique identifier for the label you wish to void.
|
|
247
|
+
*/
|
|
197
248
|
notifications: {
|
|
198
249
|
error: {
|
|
199
|
-
title: string;
|
|
250
|
+
title: string; /**
|
|
251
|
+
* `onComplete` is a callback function that will be invoked when the request to void a given
|
|
252
|
+
* shipping label is completed.
|
|
253
|
+
*/
|
|
200
254
|
};
|
|
201
255
|
info: {
|
|
202
256
|
title: string;
|
|
@@ -316,6 +370,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
316
370
|
rateSavings: string;
|
|
317
371
|
upsGroundSaverTermsAcknowledgement: string;
|
|
318
372
|
dhlExpressTermsAcknowledgement: string;
|
|
373
|
+
noRateService: string;
|
|
319
374
|
};
|
|
320
375
|
requirements: {
|
|
321
376
|
noWarehouse: string;
|
|
@@ -373,10 +428,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
373
428
|
};
|
|
374
429
|
warehouse: {
|
|
375
430
|
title: string;
|
|
376
|
-
subtitle: string;
|
|
377
|
-
* `onComplete` is a callback function that will be invoked when the request to void a given
|
|
378
|
-
* shipping label is completed.
|
|
379
|
-
*/
|
|
431
|
+
subtitle: string;
|
|
380
432
|
inlineMessage: string;
|
|
381
433
|
};
|
|
382
434
|
success: {
|
|
@@ -385,6 +437,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
385
437
|
action: string;
|
|
386
438
|
};
|
|
387
439
|
termsAndAgreementLinkText: {
|
|
440
|
+
shipEngineToS: string;
|
|
441
|
+
auctanePrivacyPolicy: string;
|
|
388
442
|
aHR0cHM6Ly9teWRobC5leHByZXNzLmRobC91cy9lbi9sZWdhbC90ZXJtcy1hbmQtY29uZGl0aW9ucy5odG1s: string;
|
|
389
443
|
"aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9wcml2YWN5LXBvbGljeQ==": string;
|
|
390
444
|
"aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9jb25kaXRpb25zLw==": string;
|
|
@@ -409,42 +463,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
409
463
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
410
464
|
};
|
|
411
465
|
};
|
|
412
|
-
"manage-defaults": {
|
|
413
|
-
label: {
|
|
414
|
-
title: string;
|
|
415
|
-
letter: {
|
|
416
|
-
title: string;
|
|
417
|
-
description: string;
|
|
418
|
-
};
|
|
419
|
-
purchase: {
|
|
420
|
-
title: string;
|
|
421
|
-
description: string;
|
|
422
|
-
};
|
|
423
|
-
thermal: {
|
|
424
|
-
title: string;
|
|
425
|
-
description: string;
|
|
426
|
-
};
|
|
427
|
-
};
|
|
428
|
-
status: {
|
|
429
|
-
saving: string;
|
|
430
|
-
saved: string;
|
|
431
|
-
savingFailed: string;
|
|
432
|
-
};
|
|
433
|
-
units: {
|
|
434
|
-
title: string;
|
|
435
|
-
dimensions: {
|
|
436
|
-
title: string;
|
|
437
|
-
standard: string;
|
|
438
|
-
metric: string;
|
|
439
|
-
};
|
|
440
|
-
weight: {
|
|
441
|
-
title: string;
|
|
442
|
-
standard: string;
|
|
443
|
-
g: string;
|
|
444
|
-
kg: string;
|
|
445
|
-
};
|
|
446
|
-
};
|
|
447
|
-
};
|
|
448
466
|
"manage-warehouses": {
|
|
449
467
|
title: string;
|
|
450
468
|
addNew: string;
|
|
@@ -481,10 +499,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
481
499
|
purchaseAmount: string;
|
|
482
500
|
readSettings: string;
|
|
483
501
|
};
|
|
484
|
-
/**
|
|
485
|
-
* `onComplete` is a callback function that will be invoked when the request to void a given
|
|
486
|
-
* shipping label is completed.
|
|
487
|
-
*/
|
|
488
502
|
addFunds: {
|
|
489
503
|
custom: string;
|
|
490
504
|
error: {
|
|
@@ -516,6 +530,42 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
516
530
|
currentBalance: string;
|
|
517
531
|
maximumBalanceAmount: string;
|
|
518
532
|
};
|
|
533
|
+
"manage-defaults": {
|
|
534
|
+
label: {
|
|
535
|
+
title: string;
|
|
536
|
+
letter: {
|
|
537
|
+
title: string;
|
|
538
|
+
description: string;
|
|
539
|
+
};
|
|
540
|
+
purchase: {
|
|
541
|
+
title: string;
|
|
542
|
+
description: string;
|
|
543
|
+
};
|
|
544
|
+
thermal: {
|
|
545
|
+
title: string;
|
|
546
|
+
description: string;
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
status: {
|
|
550
|
+
saving: string;
|
|
551
|
+
saved: string;
|
|
552
|
+
savingFailed: string;
|
|
553
|
+
};
|
|
554
|
+
units: {
|
|
555
|
+
title: string;
|
|
556
|
+
dimensions: {
|
|
557
|
+
title: string;
|
|
558
|
+
standard: string;
|
|
559
|
+
metric: string;
|
|
560
|
+
};
|
|
561
|
+
weight: {
|
|
562
|
+
title: string;
|
|
563
|
+
standard: string;
|
|
564
|
+
g: string;
|
|
565
|
+
kg: string;
|
|
566
|
+
};
|
|
567
|
+
};
|
|
568
|
+
};
|
|
519
569
|
"list-shipments": {
|
|
520
570
|
title: string;
|
|
521
571
|
headers: {
|
|
@@ -546,18 +596,31 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
546
596
|
};
|
|
547
597
|
};
|
|
548
598
|
};
|
|
549
|
-
"
|
|
550
|
-
title: string;
|
|
551
|
-
headers: {
|
|
552
|
-
accountCarriers: string;
|
|
553
|
-
carriers: string;
|
|
554
|
-
settings: string;
|
|
555
|
-
};
|
|
599
|
+
"connect-carrier": {
|
|
556
600
|
actions: {
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
601
|
+
cancel: string;
|
|
602
|
+
carrierSettings: string;
|
|
603
|
+
connectCarriers: string;
|
|
604
|
+
disconnect: string;
|
|
605
|
+
disconnectCarrier: string;
|
|
606
|
+
};
|
|
607
|
+
noCarriersDescription: string;
|
|
608
|
+
registrationForm: {
|
|
609
|
+
error: string;
|
|
610
|
+
title: string;
|
|
611
|
+
betaWarning: string;
|
|
612
|
+
};
|
|
613
|
+
search: string;
|
|
614
|
+
settingsModal: {
|
|
615
|
+
closeDialog: string;
|
|
616
|
+
header: string;
|
|
617
|
+
};
|
|
618
|
+
status: {
|
|
619
|
+
connected: string;
|
|
620
|
+
};
|
|
621
|
+
disconnectDropdown: {
|
|
622
|
+
toastTitle: string;
|
|
623
|
+
toastBody: string;
|
|
561
624
|
};
|
|
562
625
|
};
|
|
563
626
|
common: {
|
|
@@ -744,6 +807,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
744
807
|
accountSettings: string;
|
|
745
808
|
carrier: string;
|
|
746
809
|
carriers: string;
|
|
810
|
+
carrierServices: string;
|
|
747
811
|
connectCarrierForm: string;
|
|
748
812
|
connectingCarriers: string;
|
|
749
813
|
creatingFundingSource: string;
|
|
@@ -846,33 +910,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
846
910
|
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
|
|
847
911
|
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
|
|
848
912
|
};
|
|
849
|
-
"connect-carrier": {
|
|
850
|
-
actions: {
|
|
851
|
-
cancel: string;
|
|
852
|
-
carrierSettings: string;
|
|
853
|
-
connectCarriers: string;
|
|
854
|
-
disconnect: string;
|
|
855
|
-
disconnectCarrier: string;
|
|
856
|
-
};
|
|
857
|
-
noCarriersDescription: string;
|
|
858
|
-
registrationForm: {
|
|
859
|
-
error: string;
|
|
860
|
-
title: string;
|
|
861
|
-
betaWarning: string;
|
|
862
|
-
};
|
|
863
|
-
search: string;
|
|
864
|
-
settingsModal: {
|
|
865
|
-
closeDialog: string;
|
|
866
|
-
header: string;
|
|
867
|
-
};
|
|
868
|
-
status: {
|
|
869
|
-
connected: string;
|
|
870
|
-
};
|
|
871
|
-
disconnectDropdown: {
|
|
872
|
-
toastTitle: string;
|
|
873
|
-
toastBody: string;
|
|
874
|
-
};
|
|
875
|
-
};
|
|
876
913
|
"account-settings": {
|
|
877
914
|
messages: {
|
|
878
915
|
noFundingSources: string;
|
|
@@ -887,9 +924,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
887
924
|
carriers: string;
|
|
888
925
|
externalCarriers: string;
|
|
889
926
|
labelLayout: string;
|
|
890
|
-
unitSettings: string;
|
|
891
|
-
|
|
892
|
-
*/
|
|
927
|
+
unitSettings: string;
|
|
928
|
+
vatSettings: string;
|
|
893
929
|
};
|
|
894
930
|
};
|
|
895
931
|
};
|