@shipengine/elements 2.26.4 → 2.27.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/dist/cjs/assets/xcover/logo.svg.cjs +44 -0
- package/dist/cjs/components/field/rate-select/rate-card/rate-attribute-item/index.cjs +7 -0
- package/dist/cjs/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.cjs +56 -0
- package/dist/cjs/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.styles.cjs +27 -0
- package/dist/cjs/components/field/rate-select/rate-card/rate-card.cjs +52 -42
- package/dist/cjs/components/field/rate-select/rate-card/rate-card.styles.cjs +4 -0
- package/dist/cjs/components/field/rate-select/rate-select.cjs +80 -49
- package/dist/cjs/components/forms/register-funding-source-insurance-form/register-funding-source-insurance-form.cjs +1 -1
- package/dist/cjs/components/shipment-not-found-error/shipment-not-found-error.cjs +2 -17
- package/dist/cjs/components/suspend-purchase/suspend-purchase.cjs +3 -3
- package/dist/cjs/data/insurance-provider-metadatas.json.cjs +10 -4
- package/dist/cjs/elements/customs-form/customs-form-element.cjs +294 -0
- package/dist/cjs/elements/customs-form/customs-form-element.stories.cjs +243 -0
- package/dist/cjs/elements/customs-form/customs-form-schema.cjs +59 -0
- package/dist/cjs/elements/customs-form/customs-form-types.cjs +63 -0
- package/dist/cjs/elements/customs-form/index.cjs +10 -0
- package/dist/cjs/elements/index.cjs +5 -0
- package/dist/cjs/elements/manage-carriers/manage-carriers.cjs +1 -1
- package/dist/cjs/elements/purchase-label/components/customs-forms/tax-ids/tax-ids.cjs +1 -1
- package/dist/cjs/elements/purchase-label/components/index.cjs +2 -0
- package/dist/cjs/elements/purchase-label/components/rate-form/rate-view.cjs +1 -1
- package/dist/cjs/elements/purchase-label/components/shipment-form/shipment-form.cjs +4 -3
- package/dist/cjs/elements/purchase-label/hooks/use-filter-visible-rate-options/use-filter-visible-rate-options.cjs +35 -11
- package/dist/cjs/elements/purchase-label/hooks/use-insurance-provider-options.cjs +2 -2
- package/dist/cjs/elements/purchase-label/purchase-label.cjs +1 -7
- package/dist/cjs/factories/shipengine/address.cjs +114 -0
- package/dist/cjs/factories/shipengine/money.cjs +21 -0
- package/dist/cjs/factories/shipengine/order-source.cjs +37 -0
- package/dist/cjs/factories/shipengine/package.cjs +41 -0
- package/dist/cjs/factories/shipengine/resource.cjs +23 -0
- package/dist/cjs/factories/shipengine/shipment.cjs +176 -0
- package/dist/cjs/factories/shipengine/weight.cjs +44 -0
- package/dist/cjs/factories/utils.cjs +19 -0
- package/dist/cjs/features/manage-carriers/hooks/use-list-funding-source-carriers.cjs +4 -6
- package/dist/cjs/features/manage-carriers/manage-carriers.cjs +8 -6
- package/dist/cjs/hooks/use-configure-shipment.cjs +3 -80
- package/dist/cjs/hooks/use-get-funding-source-insurance-provider.cjs +7 -7
- package/dist/cjs/hooks/use-manage-funding-source-insurance.cjs +15 -23
- package/dist/cjs/index.cjs +5 -0
- package/dist/cjs/locales/en/common.json.cjs +2 -2
- package/dist/cjs/locales/en/purchase-label.json.cjs +9 -8
- package/dist/cjs/package.json.cjs +1 -1
- package/dist/cjs/utilities/feature-flags/feature-flags.cjs +1 -0
- package/dist/cjs/utilities/shipengine/carrier.cjs +4 -0
- package/dist/cjs/utilities/shipengine/index.cjs +3 -0
- package/dist/cjs/utilities/shipengine/insurance.cjs +63 -0
- package/dist/cjs/workflows/label-workflow/label-workflow.cjs +2 -26
- package/dist/cjs/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.cjs +9 -9
- package/dist/cjs/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.cjs +3 -2
- package/dist/cjs/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.cjs +8 -6
- package/dist/cjs/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.cjs +4 -19
- package/dist/esm/assets/xcover/logo.svg.js +23 -0
- package/dist/esm/components/field/rate-select/rate-card/rate-attribute-item/index.js +1 -0
- package/dist/esm/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.js +54 -0
- package/dist/esm/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.styles.js +25 -0
- package/dist/esm/components/field/rate-select/rate-card/rate-card.js +52 -42
- package/dist/esm/components/field/rate-select/rate-card/rate-card.styles.js +4 -0
- package/dist/esm/components/field/rate-select/rate-select.js +80 -49
- package/dist/esm/components/forms/register-funding-source-insurance-form/register-funding-source-insurance-form.js +1 -1
- package/dist/esm/components/shipment-not-found-error/shipment-not-found-error.js +2 -17
- package/dist/esm/components/suspend-purchase/suspend-purchase.js +3 -3
- package/dist/esm/data/insurance-provider-metadatas.json.js +9 -4
- package/dist/esm/elements/customs-form/customs-form-element.js +291 -0
- package/dist/esm/elements/customs-form/customs-form-element.stories.js +232 -0
- package/dist/esm/elements/customs-form/customs-form-schema.js +56 -0
- package/dist/esm/elements/customs-form/customs-form-types.js +60 -0
- package/dist/esm/elements/customs-form/index.js +3 -0
- package/dist/esm/elements/index.js +3 -0
- package/dist/esm/elements/manage-carriers/manage-carriers.js +1 -1
- package/dist/esm/elements/purchase-label/components/customs-forms/tax-ids/tax-ids.js +1 -1
- package/dist/esm/elements/purchase-label/components/index.js +1 -0
- package/dist/esm/elements/purchase-label/components/rate-form/rate-view.js +1 -1
- package/dist/esm/elements/purchase-label/components/shipment-form/shipment-form.js +4 -3
- package/dist/esm/elements/purchase-label/hooks/use-filter-visible-rate-options/use-filter-visible-rate-options.js +35 -11
- package/dist/esm/elements/purchase-label/hooks/use-insurance-provider-options.js +2 -2
- package/dist/esm/elements/purchase-label/purchase-label.js +1 -7
- package/dist/esm/elements-provider/elements-context-provider.js +1 -1
- package/dist/esm/factories/shipengine/address.js +111 -0
- package/dist/esm/factories/shipengine/money.js +19 -0
- package/dist/esm/factories/shipengine/order-source.js +34 -0
- package/dist/esm/factories/shipengine/package.js +39 -0
- package/dist/esm/factories/shipengine/resource.js +21 -0
- package/dist/esm/factories/shipengine/shipment.js +168 -0
- package/dist/esm/factories/shipengine/weight.js +40 -0
- package/dist/esm/factories/utils.js +15 -0
- package/dist/esm/features/manage-carriers/hooks/use-list-funding-source-carriers.js +5 -7
- package/dist/esm/features/manage-carriers/manage-carriers.js +8 -6
- package/dist/esm/hooks/use-configure-shipment.js +3 -80
- package/dist/esm/hooks/use-get-funding-source-insurance-provider.js +7 -7
- package/dist/esm/hooks/use-manage-funding-source-insurance.js +15 -23
- package/dist/esm/index.js +3 -0
- package/dist/esm/locales/en/common.json.js +2 -2
- package/dist/esm/locales/en/purchase-label.json.js +9 -8
- package/dist/esm/package.json.js +1 -1
- package/dist/esm/utilities/feature-flags/feature-flags.js +1 -0
- package/dist/esm/utilities/shipengine/carrier.js +4 -0
- package/dist/esm/utilities/shipengine/index.js +1 -1
- package/dist/esm/utilities/shipengine/insurance.js +61 -1
- package/dist/esm/workflows/label-workflow/label-workflow.js +2 -26
- package/dist/esm/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.js +9 -9
- package/dist/esm/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.js +3 -2
- package/dist/esm/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.js +8 -6
- package/dist/esm/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.js +5 -20
- package/dist/types/components/field/rate-select/rate-card/rate-attribute-item/index.d.ts +2 -0
- package/dist/types/components/field/rate-select/rate-card/rate-attribute-item/index.d.ts.map +1 -0
- package/dist/types/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.d.ts +8 -0
- package/dist/types/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.d.ts.map +1 -0
- package/dist/types/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.styles.d.ts +22 -0
- package/dist/types/components/field/rate-select/rate-card/rate-attribute-item/rate-attribute-item.styles.d.ts.map +1 -0
- package/dist/types/components/field/rate-select/rate-card/rate-card.d.ts +3 -2
- package/dist/types/components/field/rate-select/rate-card/rate-card.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-card/rate-card.styles.d.ts +4 -0
- package/dist/types/components/field/rate-select/rate-card/rate-card.styles.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-select.d.ts.map +1 -1
- package/dist/types/components/forms/register-funding-source-insurance-form/register-funding-source-insurance-form.d.ts.map +1 -1
- package/dist/types/components/shipment-not-found-error/shipment-not-found-error.d.ts +2 -3
- package/dist/types/components/shipment-not-found-error/shipment-not-found-error.d.ts.map +1 -1
- package/dist/types/components/suspend-purchase/suspend-purchase.d.ts +2 -3
- package/dist/types/components/suspend-purchase/suspend-purchase.d.ts.map +1 -1
- package/dist/types/elements/customs-form/customs-form-element.d.ts +1219 -0
- package/dist/types/elements/customs-form/customs-form-element.d.ts.map +1 -0
- package/dist/types/elements/customs-form/customs-form-element.stories.d.ts +12 -0
- package/dist/types/elements/customs-form/customs-form-element.stories.d.ts.map +1 -0
- package/dist/types/elements/customs-form/customs-form-schema.d.ts +398 -0
- package/dist/types/elements/customs-form/customs-form-schema.d.ts.map +1 -0
- package/dist/types/elements/customs-form/customs-form-types.d.ts +139 -0
- package/dist/types/elements/customs-form/customs-form-types.d.ts.map +1 -0
- package/dist/types/elements/customs-form/index.d.ts +4 -0
- package/dist/types/elements/customs-form/index.d.ts.map +1 -0
- package/dist/types/elements/index.d.ts +1 -0
- package/dist/types/elements/index.d.ts.map +1 -1
- package/dist/types/elements/labels-grid/labels-grid.d.ts +9 -8
- package/dist/types/elements/labels-grid/labels-grid.d.ts.map +1 -1
- package/dist/types/elements/manage-carriers/manage-carriers.d.ts +9 -8
- package/dist/types/elements/manage-carriers/manage-carriers.d.ts.map +1 -1
- package/dist/types/elements/manage-external-carriers/manage-external-carriers.d.ts +9 -8
- package/dist/types/elements/manage-external-carriers/manage-external-carriers.d.ts.map +1 -1
- package/dist/types/elements/manage-funding/manage-funding-element.d.ts +9 -8
- package/dist/types/elements/manage-funding/manage-funding-element.d.ts.map +1 -1
- package/dist/types/elements/manage-warehouses/manage-warehouses.d.ts +9 -8
- package/dist/types/elements/manage-warehouses/manage-warehouses.d.ts.map +1 -1
- package/dist/types/elements/payment-method-settings/payment-method-settings-element.d.ts +9 -8
- package/dist/types/elements/payment-method-settings/payment-method-settings-element.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/index.d.ts +1 -0
- package/dist/types/elements/purchase-label/components/index.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/shipment-form/shipment-form.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-filter-visible-rate-options/use-filter-visible-rate-options.d.ts +5 -1
- package/dist/types/elements/purchase-label/hooks/use-filter-visible-rate-options/use-filter-visible-rate-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-insurance-provider-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/purchase-label.d.ts +9 -8
- package/dist/types/elements/purchase-label/purchase-label.d.ts.map +1 -1
- package/dist/types/elements/select-label-layout/select-label-layout-element.d.ts +9 -8
- package/dist/types/elements/select-label-layout/select-label-layout-element.d.ts.map +1 -1
- package/dist/types/elements/shipment-summary/shipment-summary.d.ts +9 -8
- package/dist/types/elements/shipment-summary/shipment-summary.d.ts.map +1 -1
- package/dist/types/elements/shipments-grid/shipments-grid.d.ts +9 -8
- package/dist/types/elements/shipments-grid/shipments-grid.d.ts.map +1 -1
- package/dist/types/elements/theme-creator/theme-creator.d.ts +9 -8
- package/dist/types/elements/theme-creator/theme-creator.d.ts.map +1 -1
- package/dist/types/elements/transaction-history/transaction-history-element.d.ts +9 -8
- package/dist/types/elements/transaction-history/transaction-history-element.d.ts.map +1 -1
- package/dist/types/elements/unit-settings/unit-settings-element.d.ts +9 -8
- package/dist/types/elements/unit-settings/unit-settings-element.d.ts.map +1 -1
- package/dist/types/elements/vat-settings/vat-settings-element.d.ts +9 -8
- package/dist/types/elements/vat-settings/vat-settings-element.d.ts.map +1 -1
- package/dist/types/elements/void-label/void-label.d.ts +9 -8
- package/dist/types/elements/void-label/void-label.d.ts.map +1 -1
- package/dist/types/features/manage-carriers/hooks/use-list-funding-source-carriers.d.ts.map +1 -1
- package/dist/types/features/manage-carriers/manage-carriers.d.ts.map +1 -1
- package/dist/types/hooks/use-configure-shipment.d.ts.map +1 -1
- package/dist/types/hooks/use-get-funding-source-insurance-provider.d.ts.map +1 -1
- package/dist/types/hooks/use-manage-funding-source-insurance.d.ts +3 -4
- package/dist/types/hooks/use-manage-funding-source-insurance.d.ts.map +1 -1
- package/dist/types/locales/en/index.d.ts +9 -8
- package/dist/types/locales/en/index.d.ts.map +1 -1
- package/dist/types/types/insurance-metadata.d.ts +1 -1
- package/dist/types/types/insurance-metadata.d.ts.map +1 -1
- package/dist/types/types/rates.d.ts +1 -0
- package/dist/types/types/rates.d.ts.map +1 -1
- package/dist/types/utilities/feature-flags/feature-flags.d.ts.map +1 -1
- package/dist/types/utilities/feature-flags/types.d.ts +4 -0
- package/dist/types/utilities/feature-flags/types.d.ts.map +1 -1
- package/dist/types/utilities/shipengine/carrier.d.ts.map +1 -1
- package/dist/types/utilities/shipengine/insurance.d.ts +31 -0
- package/dist/types/utilities/shipengine/insurance.d.ts.map +1 -1
- package/dist/types/workflows/account-settings/account-settings.d.ts +9 -8
- package/dist/types/workflows/account-settings/account-settings.d.ts.map +1 -1
- package/dist/types/workflows/carrier-services/carrier-services.d.ts +9 -8
- package/dist/types/workflows/carrier-services/carrier-services.d.ts.map +1 -1
- package/dist/types/workflows/connect-external-carrier/connect-external-carrier.d.ts +9 -8
- package/dist/types/workflows/connect-external-carrier/connect-external-carrier.d.ts.map +1 -1
- package/dist/types/workflows/label-workflow/label-workflow.d.ts +9 -8
- package/dist/types/workflows/label-workflow/label-workflow.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.d.ts +1 -5
- package/dist/types/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/onboarding.d.ts +9 -8
- package/dist/types/workflows/onboarding/onboarding.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,1219 @@
|
|
|
1
|
+
import type { CustomsFormProps } from "./customs-form-types";
|
|
2
|
+
/**
|
|
3
|
+
* # Customs Form Element Component
|
|
4
|
+
*
|
|
5
|
+
* - The `<CustomsForm />` component is a standalone element that wraps the `CustomsForms`
|
|
6
|
+
* component with its own form management. This allows you to use customs forms independently
|
|
7
|
+
* outside of the full `PurchaseLabel` workflow while managing its own internal form state.
|
|
8
|
+
*
|
|
9
|
+
* @param CustomsFormProps The props necessary to render the `<CustomsForm />` component.
|
|
10
|
+
*
|
|
11
|
+
* @returns Element An EmotionJSX.Element that will render the `<CustomsForm />` component
|
|
12
|
+
* with all the appropriate wrappers.
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* You can see how the `<Component />` is used in the `createElement` function call below.
|
|
16
|
+
* ```tsx
|
|
17
|
+
* export const Element = createElement(Component, ErrorFallback, {
|
|
18
|
+
* css: { width: "100%" },
|
|
19
|
+
* resources: { en },
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* <br />
|
|
24
|
+
*
|
|
25
|
+
* @see {@link CustomsForm.Element | The **Element** created to render `<CustomsForm />`}
|
|
26
|
+
*/
|
|
27
|
+
export declare const Component: {
|
|
28
|
+
({ shipment, betaEnableWindsorFramework, currency, harmonizedTariffCodes, onModify, onSubmit, onCancel, className, "data-testid": dataTestId, }: CustomsFormProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
29
|
+
displayName: string;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* # Registered Customs Form Element
|
|
33
|
+
*
|
|
34
|
+
* - This is the registered `<CustomsForm />` element that will be used to render the
|
|
35
|
+
* `<CustomsForm.Element />` component.
|
|
36
|
+
*
|
|
37
|
+
* @param ElementProps The props, callbacks, and resources necessary to render
|
|
38
|
+
* the `<CustomsForm.Element />` component.
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* The `<Component />` is the source JSX that is rendered when you make use of the `CustomsForm`
|
|
42
|
+
* Element directly. Here is a brief example of how you would use it within your application.
|
|
43
|
+
* ```tsx
|
|
44
|
+
* <CustomsForm.Element
|
|
45
|
+
* shipment={salesOrderShipment}
|
|
46
|
+
* currency={SE.Currency.USD}
|
|
47
|
+
* harmonizedTariffCodes={htsCodes}
|
|
48
|
+
* betaEnableWindsorFramework={true}
|
|
49
|
+
* onModify={(customsData) => {
|
|
50
|
+
* console.log('Customs form modified:', customsData);
|
|
51
|
+
* }}
|
|
52
|
+
* onSubmit={async (customsData) => {
|
|
53
|
+
* console.log('Customs form submitted:', customsData);
|
|
54
|
+
* await updateShipmentCustoms(customsData);
|
|
55
|
+
* }}
|
|
56
|
+
* onCancel={() => {
|
|
57
|
+
* console.log('Form cancelled');
|
|
58
|
+
* }}
|
|
59
|
+
* />
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* <br />
|
|
63
|
+
*
|
|
64
|
+
* @see {@link CustomsForm.ComponentProps | The **props** that can be passed into the `<CustomsForm.Element />` component}
|
|
65
|
+
*
|
|
66
|
+
* @see {@link PurchaseLabel.Element | See how this element is used within the full label purchase workflow `<PurchaseLabel.Element />`}
|
|
67
|
+
*/
|
|
68
|
+
export declare const Element: ({ resources, ...props }: CustomsFormProps & import("../../create-element/element").CSSProp & {
|
|
69
|
+
resources?: {
|
|
70
|
+
en: {
|
|
71
|
+
"grid-controller": {
|
|
72
|
+
showExportCSV: {
|
|
73
|
+
button: string;
|
|
74
|
+
"generic-error-message": string;
|
|
75
|
+
"limit-error": string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
"wallet-history": {
|
|
79
|
+
actions: {
|
|
80
|
+
downloadCsv: string;
|
|
81
|
+
chooseDate: string;
|
|
82
|
+
tryAgain: string;
|
|
83
|
+
};
|
|
84
|
+
errors: {
|
|
85
|
+
failureToFetch: string;
|
|
86
|
+
};
|
|
87
|
+
dateRange: string;
|
|
88
|
+
details: {
|
|
89
|
+
inaccurateWeight: string;
|
|
90
|
+
};
|
|
91
|
+
historyOptions: {
|
|
92
|
+
custom: string;
|
|
93
|
+
last30days: string;
|
|
94
|
+
thisMonth: string;
|
|
95
|
+
lastMonth: string;
|
|
96
|
+
};
|
|
97
|
+
category: {
|
|
98
|
+
fundsAdded: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
"void-label": {
|
|
102
|
+
title: string;
|
|
103
|
+
actions: {
|
|
104
|
+
complete: string;
|
|
105
|
+
confirmVoid: string;
|
|
106
|
+
viewShipment: string;
|
|
107
|
+
};
|
|
108
|
+
errorMessages: {
|
|
109
|
+
labelIdRequired: string;
|
|
110
|
+
request_failed_to_complete: string;
|
|
111
|
+
};
|
|
112
|
+
resultMessages: {
|
|
113
|
+
approved: string;
|
|
114
|
+
rejected: string;
|
|
115
|
+
dpdwallet: string;
|
|
116
|
+
};
|
|
117
|
+
refund_process: string;
|
|
118
|
+
refund_rules: string;
|
|
119
|
+
resultTitles: {
|
|
120
|
+
approved: string;
|
|
121
|
+
rejected: string;
|
|
122
|
+
};
|
|
123
|
+
voidedOn: string;
|
|
124
|
+
};
|
|
125
|
+
"view-shipment": {
|
|
126
|
+
title: string;
|
|
127
|
+
actions: {
|
|
128
|
+
buyAnotherLabel: string;
|
|
129
|
+
hideItems: string;
|
|
130
|
+
printForms: string;
|
|
131
|
+
printLabel: string;
|
|
132
|
+
schedulePickup: string;
|
|
133
|
+
showItems: string;
|
|
134
|
+
void: string;
|
|
135
|
+
download: string;
|
|
136
|
+
fileClaim: string;
|
|
137
|
+
};
|
|
138
|
+
fields: {
|
|
139
|
+
dimensions: string;
|
|
140
|
+
estimatedShipping: string;
|
|
141
|
+
items: string;
|
|
142
|
+
orderDate: string;
|
|
143
|
+
orderValue: string;
|
|
144
|
+
requestedShipping: string;
|
|
145
|
+
shipDate: string;
|
|
146
|
+
shipTo: string;
|
|
147
|
+
warehouse: string;
|
|
148
|
+
weight: string;
|
|
149
|
+
insuredValue: string;
|
|
150
|
+
deliveryConfirmation: string;
|
|
151
|
+
};
|
|
152
|
+
insurance: {
|
|
153
|
+
parcelguard: {
|
|
154
|
+
title: string;
|
|
155
|
+
description: string;
|
|
156
|
+
cta: {
|
|
157
|
+
title: string;
|
|
158
|
+
description: string;
|
|
159
|
+
};
|
|
160
|
+
registerSuccess: {
|
|
161
|
+
title: string;
|
|
162
|
+
description: string;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
highVolumeForms: string;
|
|
167
|
+
multipleShippingServices: string;
|
|
168
|
+
sections: {
|
|
169
|
+
labels: string;
|
|
170
|
+
shipmentSummary: string;
|
|
171
|
+
};
|
|
172
|
+
noLabels: string;
|
|
173
|
+
};
|
|
174
|
+
"vat-settings": {
|
|
175
|
+
addNew: string;
|
|
176
|
+
vatNumber: string;
|
|
177
|
+
vatRegistrationTooltip: string;
|
|
178
|
+
vatFormText: string;
|
|
179
|
+
vatNumberInputHint: string;
|
|
180
|
+
vatNumberInputPlaceholder: string;
|
|
181
|
+
verifiedVat: string;
|
|
182
|
+
vatNumberFieldLabel: string;
|
|
183
|
+
vatTypePlaceholder: string;
|
|
184
|
+
issuingAuthorityPlaceholder: string;
|
|
185
|
+
issuingAuthorityFieldLabel: string;
|
|
186
|
+
vatFormErrors: {
|
|
187
|
+
invalidFieldValue: string;
|
|
188
|
+
verificationFailure: string;
|
|
189
|
+
forbidden: string;
|
|
190
|
+
connectionNotSupported: string;
|
|
191
|
+
genericText: string;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
"manage-carriers": {
|
|
195
|
+
title: string;
|
|
196
|
+
headers: {
|
|
197
|
+
accountCarriers: string;
|
|
198
|
+
carriers: string;
|
|
199
|
+
settings: string;
|
|
200
|
+
};
|
|
201
|
+
actions: {
|
|
202
|
+
status: {
|
|
203
|
+
connected: string;
|
|
204
|
+
notConnected: string;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
"register-wallet": {
|
|
209
|
+
sections: {
|
|
210
|
+
billing: {
|
|
211
|
+
title: string;
|
|
212
|
+
cardSubTitle: string;
|
|
213
|
+
addressSubTitle: string;
|
|
214
|
+
};
|
|
215
|
+
vatSettings: {
|
|
216
|
+
title: string;
|
|
217
|
+
};
|
|
218
|
+
carriers: {
|
|
219
|
+
title: string;
|
|
220
|
+
subtitle: string;
|
|
221
|
+
};
|
|
222
|
+
insuranceProviders: {
|
|
223
|
+
connectionError: {
|
|
224
|
+
title: string;
|
|
225
|
+
description: string;
|
|
226
|
+
};
|
|
227
|
+
parcelguard: {
|
|
228
|
+
description: string;
|
|
229
|
+
terms: string;
|
|
230
|
+
termsLink: string;
|
|
231
|
+
popover: {
|
|
232
|
+
title: string;
|
|
233
|
+
description: string;
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
notifications: {
|
|
238
|
+
error: {
|
|
239
|
+
title: string;
|
|
240
|
+
};
|
|
241
|
+
info: {
|
|
242
|
+
description: string;
|
|
243
|
+
};
|
|
244
|
+
poBox: {
|
|
245
|
+
title: string;
|
|
246
|
+
description: string;
|
|
247
|
+
};
|
|
248
|
+
carrier: {
|
|
249
|
+
title: string;
|
|
250
|
+
confirmAddress: string;
|
|
251
|
+
description: string;
|
|
252
|
+
};
|
|
253
|
+
blackBox: {
|
|
254
|
+
description: string;
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
settings: {
|
|
259
|
+
title: string;
|
|
260
|
+
billing: {
|
|
261
|
+
title: string;
|
|
262
|
+
subtitleCard: string;
|
|
263
|
+
subtitleBilling: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
"register-carrier": {
|
|
268
|
+
formTitle: {
|
|
269
|
+
default: string;
|
|
270
|
+
new: string;
|
|
271
|
+
edit: string;
|
|
272
|
+
};
|
|
273
|
+
notifications: {
|
|
274
|
+
error: {
|
|
275
|
+
title: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
noFundingSource: string;
|
|
279
|
+
};
|
|
280
|
+
"rate-details": {
|
|
281
|
+
total: string;
|
|
282
|
+
subtotal: string;
|
|
283
|
+
registerVat: string;
|
|
284
|
+
concepts: {
|
|
285
|
+
confirmation: string;
|
|
286
|
+
uncategorized: string;
|
|
287
|
+
shipping: string;
|
|
288
|
+
insurance: string;
|
|
289
|
+
confirm: string;
|
|
290
|
+
discount: string;
|
|
291
|
+
fuel_charge: string;
|
|
292
|
+
additional_fees: string;
|
|
293
|
+
tariff: string;
|
|
294
|
+
tax: string;
|
|
295
|
+
delivery: string;
|
|
296
|
+
handling: string;
|
|
297
|
+
special_goods: string;
|
|
298
|
+
pickup: string;
|
|
299
|
+
location_fee: string;
|
|
300
|
+
oversize: string;
|
|
301
|
+
returns: string;
|
|
302
|
+
notifications: string;
|
|
303
|
+
tip: string;
|
|
304
|
+
duties_and_taxes: string;
|
|
305
|
+
brokerage_fee: string;
|
|
306
|
+
admin_fee: string;
|
|
307
|
+
adjustment: string;
|
|
308
|
+
auctane_service_fee: string;
|
|
309
|
+
product_price: string;
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
"purchase-label": {
|
|
313
|
+
title: string;
|
|
314
|
+
actions: {
|
|
315
|
+
calculateRates_one: string;
|
|
316
|
+
calculateRates_other: string;
|
|
317
|
+
hideItems: string;
|
|
318
|
+
purchaseLabel: string;
|
|
319
|
+
purchaseNow: string;
|
|
320
|
+
showItems: string;
|
|
321
|
+
showMoreRates: string;
|
|
322
|
+
showFewerRates: string;
|
|
323
|
+
saveRate: string;
|
|
324
|
+
createNewShipment: string;
|
|
325
|
+
};
|
|
326
|
+
balance: {
|
|
327
|
+
currentBalance: string;
|
|
328
|
+
insufficientBalanceCTA: string;
|
|
329
|
+
};
|
|
330
|
+
cta: {
|
|
331
|
+
addPackageDetails: string;
|
|
332
|
+
parcelguard: string;
|
|
333
|
+
};
|
|
334
|
+
errorMessages: {
|
|
335
|
+
customsItemsRequired: string;
|
|
336
|
+
invalidAddress: string;
|
|
337
|
+
noRates: string;
|
|
338
|
+
salesOrderNotLoaded: string;
|
|
339
|
+
unsupportedAddress: string;
|
|
340
|
+
saveRateFailedMessage: string;
|
|
341
|
+
saveRateFailedTitle: string;
|
|
342
|
+
};
|
|
343
|
+
errorTypes: {
|
|
344
|
+
results: string;
|
|
345
|
+
};
|
|
346
|
+
fields: {
|
|
347
|
+
"requires-additional-handling-link": string;
|
|
348
|
+
"requires-additional-handling": string;
|
|
349
|
+
addOns: string;
|
|
350
|
+
contentDescription: string;
|
|
351
|
+
confirmation: string;
|
|
352
|
+
dimensions: {
|
|
353
|
+
length: string;
|
|
354
|
+
width: string;
|
|
355
|
+
height: string;
|
|
356
|
+
};
|
|
357
|
+
dimensionsGroup: string;
|
|
358
|
+
estimatedShipping: string;
|
|
359
|
+
insurance: string;
|
|
360
|
+
insuranceProvider: string;
|
|
361
|
+
insuredValue: string;
|
|
362
|
+
items: string;
|
|
363
|
+
orderDate: string;
|
|
364
|
+
orderValue: string;
|
|
365
|
+
packageCode: string;
|
|
366
|
+
requestedShipping: string;
|
|
367
|
+
shipDate: string;
|
|
368
|
+
service: string;
|
|
369
|
+
shipTo: string;
|
|
370
|
+
addShipToAddress: string;
|
|
371
|
+
warehouse: string;
|
|
372
|
+
weight: {
|
|
373
|
+
whole: string;
|
|
374
|
+
fractional: string;
|
|
375
|
+
};
|
|
376
|
+
weightGroup: string;
|
|
377
|
+
today: string;
|
|
378
|
+
};
|
|
379
|
+
hints: {
|
|
380
|
+
contentDescription: string;
|
|
381
|
+
insuredValue: string;
|
|
382
|
+
};
|
|
383
|
+
loading: {
|
|
384
|
+
calculatingRates: string;
|
|
385
|
+
savingRate: string;
|
|
386
|
+
};
|
|
387
|
+
modes: {
|
|
388
|
+
browseRates: string;
|
|
389
|
+
selectService: string;
|
|
390
|
+
};
|
|
391
|
+
multipleShippingServices: string;
|
|
392
|
+
schemaErrors: {
|
|
393
|
+
shipFromUnitedStatesOnly: string;
|
|
394
|
+
shipFromAddressRequired: string;
|
|
395
|
+
needToAcknowledge: string;
|
|
396
|
+
};
|
|
397
|
+
rates: {
|
|
398
|
+
requestedShippingNotification: string;
|
|
399
|
+
uspsMediaMailAcknowledgement: string;
|
|
400
|
+
uspsFirstClassMailAcknowledgement_leof: string;
|
|
401
|
+
rateSavings: string;
|
|
402
|
+
upsGroundSaverTermsAcknowledgement: string;
|
|
403
|
+
dhlExpressTermsAcknowledgement: string;
|
|
404
|
+
noRateService: string;
|
|
405
|
+
rateAttributes: {
|
|
406
|
+
bestValue: string;
|
|
407
|
+
cheapest: string;
|
|
408
|
+
fastest: string;
|
|
409
|
+
bestValueTooltip: string;
|
|
410
|
+
cheapestTooltip: string;
|
|
411
|
+
fastestTooltip: string;
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
windsorFramework: {
|
|
415
|
+
movementIndicator: string;
|
|
416
|
+
movementIndicators: {
|
|
417
|
+
b2c: string;
|
|
418
|
+
c2b: string;
|
|
419
|
+
c2c: string;
|
|
420
|
+
b2b: string;
|
|
421
|
+
};
|
|
422
|
+
notAtRisk: string;
|
|
423
|
+
notAtRiskShipmentTootip: string;
|
|
424
|
+
};
|
|
425
|
+
requirements: {
|
|
426
|
+
noWarehouse: string;
|
|
427
|
+
noCarrier: string;
|
|
428
|
+
noWarehouseOrCarrier: string;
|
|
429
|
+
};
|
|
430
|
+
servicePoints: {
|
|
431
|
+
searchLabel: string;
|
|
432
|
+
noRatesForType: string;
|
|
433
|
+
dropOff: string;
|
|
434
|
+
pickUp: string;
|
|
435
|
+
closed: string;
|
|
436
|
+
hideLocations: string;
|
|
437
|
+
moreLocations: string;
|
|
438
|
+
nearestLocation: string;
|
|
439
|
+
open: string;
|
|
440
|
+
nextOpeningDay: string;
|
|
441
|
+
until: string;
|
|
442
|
+
selected: string;
|
|
443
|
+
select: string;
|
|
444
|
+
today: string;
|
|
445
|
+
viewMap: string;
|
|
446
|
+
otherLocations: string;
|
|
447
|
+
noServicePointsForService: string;
|
|
448
|
+
error: string;
|
|
449
|
+
localTimeDisclaimer: string;
|
|
450
|
+
};
|
|
451
|
+
shipToAddressFormFields: string;
|
|
452
|
+
sections: {
|
|
453
|
+
customsForm: string;
|
|
454
|
+
windsorFramework: string;
|
|
455
|
+
shipment: string;
|
|
456
|
+
rate_one: string;
|
|
457
|
+
rate_other: string;
|
|
458
|
+
payment: string;
|
|
459
|
+
};
|
|
460
|
+
warnings: {
|
|
461
|
+
parcelGuardShipDate: string;
|
|
462
|
+
};
|
|
463
|
+
paperlessAvailable: string;
|
|
464
|
+
usePaperlessLabel: string;
|
|
465
|
+
};
|
|
466
|
+
"payment-method": {
|
|
467
|
+
title: string;
|
|
468
|
+
};
|
|
469
|
+
onboarding: {
|
|
470
|
+
title: string;
|
|
471
|
+
previouslyOnboarded: {
|
|
472
|
+
title: string;
|
|
473
|
+
subtitle: string;
|
|
474
|
+
};
|
|
475
|
+
confirmation: {
|
|
476
|
+
title: string;
|
|
477
|
+
warehouse: string;
|
|
478
|
+
billingAddress: string;
|
|
479
|
+
paymentMethod: string;
|
|
480
|
+
action: string;
|
|
481
|
+
noPaymentMethod: string;
|
|
482
|
+
};
|
|
483
|
+
stepLabel: {
|
|
484
|
+
confirmation: string;
|
|
485
|
+
termsAgreement: string;
|
|
486
|
+
shipFromAddress: string;
|
|
487
|
+
fundingAndCarrierConnection: string;
|
|
488
|
+
};
|
|
489
|
+
termsAgreement: {
|
|
490
|
+
title: string;
|
|
491
|
+
subtitle: string;
|
|
492
|
+
};
|
|
493
|
+
upsDisclosure: {
|
|
494
|
+
title: string;
|
|
495
|
+
line1: string;
|
|
496
|
+
line2: string;
|
|
497
|
+
};
|
|
498
|
+
warehouse: {
|
|
499
|
+
title: string;
|
|
500
|
+
subtitle: string;
|
|
501
|
+
inlineMessage: string;
|
|
502
|
+
};
|
|
503
|
+
errors: {
|
|
504
|
+
noCarriers: {
|
|
505
|
+
title: string;
|
|
506
|
+
subtitle: string;
|
|
507
|
+
};
|
|
508
|
+
unableToLoad: {
|
|
509
|
+
title: string;
|
|
510
|
+
subtitle: string;
|
|
511
|
+
};
|
|
512
|
+
};
|
|
513
|
+
success: {
|
|
514
|
+
title: string;
|
|
515
|
+
subtitle: string;
|
|
516
|
+
action: string;
|
|
517
|
+
};
|
|
518
|
+
termsAndAgreementLinkText: {
|
|
519
|
+
shipEngineToS: string;
|
|
520
|
+
auctanePrivacyPolicy: string;
|
|
521
|
+
aHR0cHM6Ly9teWRobC5leHByZXNzLmRobC91cy9lbi9sZWdhbC90ZXJtcy1hbmQtY29uZGl0aW9ucy5odG1s: string;
|
|
522
|
+
"aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9wcml2YWN5LXBvbGljeQ==": string;
|
|
523
|
+
"aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9jb25kaXRpb25zLw==": string;
|
|
524
|
+
"aHR0cHM6Ly93d3cudXBzLmNvbS91cy9lbi9zdXBwb3J0L3NoaXBwaW5nLXN1cHBvcnQvc2hpcHBpbmctc3BlY2lhbC1jYXJlLXJlZ3VsYXRlZC1pdGVtcy9wcm9oaWJpdGVkLWl0ZW1zLnBhZ2U=": string;
|
|
525
|
+
aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VQU19EQVBfVEMucGRm: string;
|
|
526
|
+
"aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VUQS5wZGY=": string;
|
|
527
|
+
"aHR0cHM6Ly93d3cuZXZyaS5jb20vdGVybXMtYW5kLWNvbmRpdGlvbnM=": string;
|
|
528
|
+
"aHR0cHM6Ly93d3cueW9kZWxkaXJlY3QuY28udWsvY29udGVudC9hYm91dC10ZXJtcw==": string;
|
|
529
|
+
aHR0cHM6Ly93d3cuc2hpcHN0YXRpb24uY29tL3Rlcm1zLXNlcnZpY2UtdW5pdGVkLWtpbmdkb20v: string;
|
|
530
|
+
"aHR0cHM6Ly93d3cuZHBkLmNvLnVrL3N0YW5kYXJkX3Rlcm1zX2FuZF9jb25kaXRpb25zLmpzcA==": string;
|
|
531
|
+
aHR0cHM6Ly93d3cuZ29nbG9iYWxwb3N0LmNvbS9jb25kaXRpb25z: string;
|
|
532
|
+
aHR0cHM6Ly93d3cucHVyb2xhdG9yLmNvbS9mci9tb2RhbGl0ZXMtZXQtY29uZGl0aW9ucy1kZS1zZXJ2aWNl: string;
|
|
533
|
+
aHR0cHM6Ly93d3cucHVyb2xhdG9yLmNvbS9lbi90ZXJtcy1hbmQtY29uZGl0aW9ucy1zZXJ2aWNl: string;
|
|
534
|
+
};
|
|
535
|
+
termsAndAgreementTitles: {
|
|
536
|
+
"WW9kZWwgRGlyZWN0IC0gVGVybXMgYW5kIENvbmRpdGlvbnMgKOKAnFRlcm1z4oCdKQ==": string;
|
|
537
|
+
"RXZyaSBTZW5kIFRlcm1zICYgQ29uZGl0aW9ucw==": string;
|
|
538
|
+
"VGVybXMgb2YgU2VydmljZSBVbml0ZWQgS2luZ2RvbQ==": string;
|
|
539
|
+
RFBEIFN0YW5kYXJkIFRlcm1zIGFuZCBDb25kaXRpb25z: string;
|
|
540
|
+
"R2xvYmFsUG9zdCBUZXJtcyBhbmQgQ29uZGl0aW9ucw==": string;
|
|
541
|
+
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
542
|
+
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
543
|
+
};
|
|
544
|
+
tooltip: {
|
|
545
|
+
warehouse: string;
|
|
546
|
+
};
|
|
547
|
+
welcomePage: {
|
|
548
|
+
title: string;
|
|
549
|
+
message: string;
|
|
550
|
+
action: string;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
"manage-warehouses": {
|
|
554
|
+
title: string;
|
|
555
|
+
addNew: string;
|
|
556
|
+
editWarehouse: string;
|
|
557
|
+
contactName: string;
|
|
558
|
+
default: string;
|
|
559
|
+
isDefault: string;
|
|
560
|
+
locationName: string;
|
|
561
|
+
residentialAddress: string;
|
|
562
|
+
returnTo: string;
|
|
563
|
+
returnToAddressIsDifferent: string;
|
|
564
|
+
setDefault: string;
|
|
565
|
+
shipFrom: string;
|
|
566
|
+
noWarehouses: string;
|
|
567
|
+
};
|
|
568
|
+
"manage-funding": {
|
|
569
|
+
actions: {
|
|
570
|
+
addFunds: string;
|
|
571
|
+
addFundsAndPurchase: string;
|
|
572
|
+
addNow: string;
|
|
573
|
+
saveRule: string;
|
|
574
|
+
};
|
|
575
|
+
autoFunding: {
|
|
576
|
+
edit: string;
|
|
577
|
+
editSettings: string;
|
|
578
|
+
error: {
|
|
579
|
+
title: string;
|
|
580
|
+
message: string;
|
|
581
|
+
};
|
|
582
|
+
isEnabledCTA: string;
|
|
583
|
+
isEnabled: string;
|
|
584
|
+
isLoading: string;
|
|
585
|
+
lowBalancePurchaseThreshold: string;
|
|
586
|
+
maximumPurchasesPerDay: string;
|
|
587
|
+
purchaseAmount: string;
|
|
588
|
+
readSettings: string;
|
|
589
|
+
};
|
|
590
|
+
addFunds: {
|
|
591
|
+
custom: string;
|
|
592
|
+
error: {
|
|
593
|
+
title: string;
|
|
594
|
+
message: string;
|
|
595
|
+
};
|
|
596
|
+
isLoading: string;
|
|
597
|
+
labels: {
|
|
598
|
+
amount: string;
|
|
599
|
+
};
|
|
600
|
+
minimumPurchaseAmount: string;
|
|
601
|
+
other: string;
|
|
602
|
+
};
|
|
603
|
+
fundAndPurchase: {
|
|
604
|
+
finalBalance: string;
|
|
605
|
+
insufficientFunds: string;
|
|
606
|
+
insufficientFundsTitle: string;
|
|
607
|
+
negativeBalance: string;
|
|
608
|
+
negativeBalanceTitle: string;
|
|
609
|
+
newBalance: string;
|
|
610
|
+
};
|
|
611
|
+
errors: {
|
|
612
|
+
balanceUnknown: string;
|
|
613
|
+
unableToFindBalance: string;
|
|
614
|
+
noFundingSource: string;
|
|
615
|
+
};
|
|
616
|
+
byoc: {
|
|
617
|
+
invoiceNotification: string;
|
|
618
|
+
};
|
|
619
|
+
currentBalance: string;
|
|
620
|
+
maximumBalanceAmount: string;
|
|
621
|
+
};
|
|
622
|
+
"manage-defaults": {
|
|
623
|
+
label: {
|
|
624
|
+
title: string;
|
|
625
|
+
letter: {
|
|
626
|
+
title: string;
|
|
627
|
+
description: string;
|
|
628
|
+
};
|
|
629
|
+
purchase: {
|
|
630
|
+
title: string;
|
|
631
|
+
description: string;
|
|
632
|
+
};
|
|
633
|
+
thermal: {
|
|
634
|
+
title: string;
|
|
635
|
+
description: string;
|
|
636
|
+
};
|
|
637
|
+
};
|
|
638
|
+
status: {
|
|
639
|
+
saving: string;
|
|
640
|
+
saved: string;
|
|
641
|
+
savingFailed: string;
|
|
642
|
+
};
|
|
643
|
+
units: {
|
|
644
|
+
title: string;
|
|
645
|
+
dimensions: {
|
|
646
|
+
title: string;
|
|
647
|
+
standard: string;
|
|
648
|
+
metric: string;
|
|
649
|
+
};
|
|
650
|
+
weight: {
|
|
651
|
+
title: string;
|
|
652
|
+
standard: string;
|
|
653
|
+
g: string;
|
|
654
|
+
kg: string;
|
|
655
|
+
};
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
"list-shipments": {
|
|
659
|
+
title: string;
|
|
660
|
+
none: string;
|
|
661
|
+
headers: {
|
|
662
|
+
created: string;
|
|
663
|
+
modified: string;
|
|
664
|
+
shipping: string;
|
|
665
|
+
shipmentId: string;
|
|
666
|
+
parcels: string;
|
|
667
|
+
recipient: string;
|
|
668
|
+
status: string;
|
|
669
|
+
};
|
|
670
|
+
status: {
|
|
671
|
+
cancelled: string;
|
|
672
|
+
purchased: string;
|
|
673
|
+
readyToBuy: string;
|
|
674
|
+
processing: string;
|
|
675
|
+
};
|
|
676
|
+
actions: {
|
|
677
|
+
download: {
|
|
678
|
+
pdf: string;
|
|
679
|
+
};
|
|
680
|
+
};
|
|
681
|
+
emptyState: {
|
|
682
|
+
title: string;
|
|
683
|
+
subtitle: string;
|
|
684
|
+
filtersTitle: string;
|
|
685
|
+
filtersSubtitle: string;
|
|
686
|
+
viewAll: string;
|
|
687
|
+
};
|
|
688
|
+
errorMessages: {
|
|
689
|
+
title: string;
|
|
690
|
+
subtitle: string;
|
|
691
|
+
};
|
|
692
|
+
};
|
|
693
|
+
"list-labels": {
|
|
694
|
+
title: string;
|
|
695
|
+
headers: {
|
|
696
|
+
created: string;
|
|
697
|
+
shipmentId: string;
|
|
698
|
+
parcels: string;
|
|
699
|
+
recipient: string;
|
|
700
|
+
shipping: string;
|
|
701
|
+
shipDate: string;
|
|
702
|
+
status: string;
|
|
703
|
+
trackingStatus: string;
|
|
704
|
+
labelId: string;
|
|
705
|
+
externalOrderId: string;
|
|
706
|
+
externalShipmentId: string;
|
|
707
|
+
shipmentNumber: string;
|
|
708
|
+
};
|
|
709
|
+
empty: {
|
|
710
|
+
title: string;
|
|
711
|
+
subtitle: string;
|
|
712
|
+
};
|
|
713
|
+
emptyWithFilters: {
|
|
714
|
+
title: string;
|
|
715
|
+
subtitle: string;
|
|
716
|
+
button: string;
|
|
717
|
+
};
|
|
718
|
+
status: {
|
|
719
|
+
voided: string;
|
|
720
|
+
error: string;
|
|
721
|
+
completed: string;
|
|
722
|
+
processing: string;
|
|
723
|
+
};
|
|
724
|
+
trackingStatus: {
|
|
725
|
+
unknown: string;
|
|
726
|
+
inTransit: string;
|
|
727
|
+
in_transit: string;
|
|
728
|
+
delivered: string;
|
|
729
|
+
error: string;
|
|
730
|
+
voided: string;
|
|
731
|
+
};
|
|
732
|
+
actions: {
|
|
733
|
+
title: string;
|
|
734
|
+
print: string;
|
|
735
|
+
void: string;
|
|
736
|
+
printForms: string;
|
|
737
|
+
};
|
|
738
|
+
errorMessages: {
|
|
739
|
+
title: string;
|
|
740
|
+
subtitle: string;
|
|
741
|
+
};
|
|
742
|
+
};
|
|
743
|
+
"connect-carrier": {
|
|
744
|
+
actions: {
|
|
745
|
+
cancel: string;
|
|
746
|
+
carrierSettings: string;
|
|
747
|
+
connectCarriers: string;
|
|
748
|
+
disconnect: string;
|
|
749
|
+
disconnectCarrier: string;
|
|
750
|
+
downloadEula: string;
|
|
751
|
+
};
|
|
752
|
+
customForms: {
|
|
753
|
+
fedex: {
|
|
754
|
+
eulaName: string;
|
|
755
|
+
disclaimerFooter: string;
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
eula: {
|
|
759
|
+
toContinue: string;
|
|
760
|
+
iAgree: string;
|
|
761
|
+
};
|
|
762
|
+
noCarriersDescription: string;
|
|
763
|
+
registrationForm: {
|
|
764
|
+
error: string;
|
|
765
|
+
title: string;
|
|
766
|
+
betaWarning: string;
|
|
767
|
+
};
|
|
768
|
+
search: string;
|
|
769
|
+
settingsModal: {
|
|
770
|
+
closeDialog: string;
|
|
771
|
+
header: string;
|
|
772
|
+
};
|
|
773
|
+
status: {
|
|
774
|
+
connected: string;
|
|
775
|
+
};
|
|
776
|
+
disconnect: {
|
|
777
|
+
toastTitle: string;
|
|
778
|
+
toastBody: string;
|
|
779
|
+
};
|
|
780
|
+
deleteCarrierErrorTitle: string;
|
|
781
|
+
deleteCarrierErrorMessage: string;
|
|
782
|
+
loadingDeletingCarrier: string;
|
|
783
|
+
settings: {
|
|
784
|
+
fetchErrorTitle: string;
|
|
785
|
+
nickname: string;
|
|
786
|
+
accountCountryCode: string;
|
|
787
|
+
accountPostalCode: string;
|
|
788
|
+
upsNegotiatedRates: {
|
|
789
|
+
title: string;
|
|
790
|
+
description: string;
|
|
791
|
+
};
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
common: {
|
|
795
|
+
actions: {
|
|
796
|
+
add: string;
|
|
797
|
+
cancel: string;
|
|
798
|
+
close: string;
|
|
799
|
+
confirm: string;
|
|
800
|
+
connect: string;
|
|
801
|
+
continue: string;
|
|
802
|
+
delete: string;
|
|
803
|
+
edit: string;
|
|
804
|
+
enable: string;
|
|
805
|
+
hide: string;
|
|
806
|
+
parse: string;
|
|
807
|
+
purchase: string;
|
|
808
|
+
remove: string;
|
|
809
|
+
save: string;
|
|
810
|
+
skipForNow: string;
|
|
811
|
+
submit: string;
|
|
812
|
+
tryAgain: string;
|
|
813
|
+
};
|
|
814
|
+
address: {
|
|
815
|
+
fields: {
|
|
816
|
+
name: string;
|
|
817
|
+
fullName: string;
|
|
818
|
+
company: string;
|
|
819
|
+
county: string;
|
|
820
|
+
countryCode: string;
|
|
821
|
+
addressLine1: string;
|
|
822
|
+
addressLine2: string;
|
|
823
|
+
cityLocality: string;
|
|
824
|
+
stateProvince: string;
|
|
825
|
+
postalCode: string;
|
|
826
|
+
phone: string;
|
|
827
|
+
email: string;
|
|
828
|
+
addressResidentialIndicator: string;
|
|
829
|
+
};
|
|
830
|
+
noResults: string;
|
|
831
|
+
subFields: {
|
|
832
|
+
optional: string;
|
|
833
|
+
};
|
|
834
|
+
parserFields: {
|
|
835
|
+
fullAddress: string;
|
|
836
|
+
};
|
|
837
|
+
paste: string;
|
|
838
|
+
preference: {
|
|
839
|
+
confirm: string;
|
|
840
|
+
addressNotValidated: string;
|
|
841
|
+
modified: string;
|
|
842
|
+
title: string;
|
|
843
|
+
originalAddress: string;
|
|
844
|
+
matchedAddress: string;
|
|
845
|
+
unableToValidate: string;
|
|
846
|
+
use: {
|
|
847
|
+
originalAddress: string;
|
|
848
|
+
matchedAddress: string;
|
|
849
|
+
};
|
|
850
|
+
};
|
|
851
|
+
validation: {
|
|
852
|
+
notValidated: string;
|
|
853
|
+
validated: string;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
billing: {
|
|
857
|
+
fields: {
|
|
858
|
+
differentBillingAddress: string;
|
|
859
|
+
name: string;
|
|
860
|
+
cardNumber: string;
|
|
861
|
+
expiration: string;
|
|
862
|
+
cvv: string;
|
|
863
|
+
cvvPlaceholder: string;
|
|
864
|
+
expirationPlaceholder: string;
|
|
865
|
+
cardNumberPlaceholder: string;
|
|
866
|
+
};
|
|
867
|
+
};
|
|
868
|
+
carriers: {
|
|
869
|
+
fields: {
|
|
870
|
+
agreement: string;
|
|
871
|
+
};
|
|
872
|
+
terms: {
|
|
873
|
+
agreeToTerms: string;
|
|
874
|
+
title: string;
|
|
875
|
+
};
|
|
876
|
+
};
|
|
877
|
+
charsetWarnings: {
|
|
878
|
+
name: {
|
|
879
|
+
message: string;
|
|
880
|
+
};
|
|
881
|
+
address: {
|
|
882
|
+
message: string;
|
|
883
|
+
title: string;
|
|
884
|
+
};
|
|
885
|
+
};
|
|
886
|
+
confirmationTypes: {
|
|
887
|
+
adultSignature: string;
|
|
888
|
+
delivery: string;
|
|
889
|
+
deliveryMailed: string;
|
|
890
|
+
directSignature: string;
|
|
891
|
+
none: string;
|
|
892
|
+
signature: string;
|
|
893
|
+
verbalConfirmation: string;
|
|
894
|
+
};
|
|
895
|
+
customs: {
|
|
896
|
+
addDeclaration: string;
|
|
897
|
+
noResults: string;
|
|
898
|
+
contents: {
|
|
899
|
+
documents: string;
|
|
900
|
+
gift: string;
|
|
901
|
+
merchandise: string;
|
|
902
|
+
returnedGoods: string;
|
|
903
|
+
sample: string;
|
|
904
|
+
};
|
|
905
|
+
taxIds: {
|
|
906
|
+
sectionTitle: string;
|
|
907
|
+
addTaxId: string;
|
|
908
|
+
sectionTitleTooltip: string;
|
|
909
|
+
entityTypeTooltipText: string;
|
|
910
|
+
entityTypeTooltipPointOne: string;
|
|
911
|
+
entityTypeTooltipPointTwo: string;
|
|
912
|
+
};
|
|
913
|
+
currencyChange: string;
|
|
914
|
+
declarations: string;
|
|
915
|
+
descriptionTooltip: {
|
|
916
|
+
message: string;
|
|
917
|
+
example1: string;
|
|
918
|
+
example2: string;
|
|
919
|
+
};
|
|
920
|
+
fields: {
|
|
921
|
+
contentsType: string;
|
|
922
|
+
countryOfOrigin: string;
|
|
923
|
+
description: string;
|
|
924
|
+
harmonizedTariffCode: string;
|
|
925
|
+
ifDeliveryFails: string;
|
|
926
|
+
dutiesTaxes: string;
|
|
927
|
+
quantity: string;
|
|
928
|
+
sku: string;
|
|
929
|
+
value: string;
|
|
930
|
+
valueQuantity: string;
|
|
931
|
+
taxId: string;
|
|
932
|
+
taxIdType: string;
|
|
933
|
+
taxIdTypeValue: string;
|
|
934
|
+
taxIssuingAuthority: string;
|
|
935
|
+
entityType: string;
|
|
936
|
+
};
|
|
937
|
+
hsCode: string;
|
|
938
|
+
nonDelivery: {
|
|
939
|
+
returnToSender: string;
|
|
940
|
+
treatAsAbandoned: string;
|
|
941
|
+
};
|
|
942
|
+
canadaDeliveredDuty: {
|
|
943
|
+
senderPrepay: string;
|
|
944
|
+
recipientPays: string;
|
|
945
|
+
tooltip: {
|
|
946
|
+
title: string;
|
|
947
|
+
restriction: string;
|
|
948
|
+
requirement1: string;
|
|
949
|
+
requirement2: string;
|
|
950
|
+
requirement3: string;
|
|
951
|
+
};
|
|
952
|
+
};
|
|
953
|
+
removeAllDeclarations: string;
|
|
954
|
+
total: string;
|
|
955
|
+
};
|
|
956
|
+
errorMessages: {
|
|
957
|
+
fundingSourceCreationFailed: string;
|
|
958
|
+
contactSupport: string;
|
|
959
|
+
invalidNameOrCompany: string;
|
|
960
|
+
parsingFailure: string;
|
|
961
|
+
incompleteLabelPurchaseRequirements: string;
|
|
962
|
+
shipmentNotFound: string;
|
|
963
|
+
shipmentCancelled: string;
|
|
964
|
+
unableToLoad: {
|
|
965
|
+
accountSettings: string;
|
|
966
|
+
autoFundingSettings: string;
|
|
967
|
+
carrier: string;
|
|
968
|
+
carriers: string;
|
|
969
|
+
connectCarrierForm: string;
|
|
970
|
+
fundingSourceMetadata: string;
|
|
971
|
+
label: string;
|
|
972
|
+
labels: string;
|
|
973
|
+
salesOrder: string;
|
|
974
|
+
shipment: string;
|
|
975
|
+
shipments: string;
|
|
976
|
+
warehouses: string;
|
|
977
|
+
};
|
|
978
|
+
labelHasBeenPurchased: string;
|
|
979
|
+
emailIsRequired: string;
|
|
980
|
+
unknown: string;
|
|
981
|
+
noRatesAvailable: string;
|
|
982
|
+
refreshAndTryAgain: string;
|
|
983
|
+
updateShipFromAddress: string;
|
|
984
|
+
windsorFramework: {
|
|
985
|
+
doNotConform: string;
|
|
986
|
+
pleaseAddTheFollowingTaxIds: string;
|
|
987
|
+
windsorFrameworkDefaultMessage: string;
|
|
988
|
+
shipperEori: string;
|
|
989
|
+
recipientEori: string;
|
|
990
|
+
ukims: string;
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
errorTypes: {
|
|
994
|
+
accountStatus: string;
|
|
995
|
+
businessRules: string;
|
|
996
|
+
integrations: string;
|
|
997
|
+
purchase: string;
|
|
998
|
+
rateInvalid: string;
|
|
999
|
+
saveRate: string;
|
|
1000
|
+
security: string;
|
|
1001
|
+
shipmentStatus: string;
|
|
1002
|
+
shipFromAddress: string;
|
|
1003
|
+
system: string;
|
|
1004
|
+
unknown: string;
|
|
1005
|
+
validation: string;
|
|
1006
|
+
windsorFramework: string;
|
|
1007
|
+
};
|
|
1008
|
+
grid: {
|
|
1009
|
+
"row-count_one": string;
|
|
1010
|
+
"row-count_other": string;
|
|
1011
|
+
"row-count-plus_other": string;
|
|
1012
|
+
rows: string;
|
|
1013
|
+
clearAll: string;
|
|
1014
|
+
shipmentId: string;
|
|
1015
|
+
labelId: string;
|
|
1016
|
+
labelIdFilter: string;
|
|
1017
|
+
filteredStatus: string;
|
|
1018
|
+
filteredTrackingStatus: string;
|
|
1019
|
+
more: string;
|
|
1020
|
+
createdDate: string;
|
|
1021
|
+
shipmentIdFilter: string;
|
|
1022
|
+
createdDateFilter: string;
|
|
1023
|
+
apply: string;
|
|
1024
|
+
clear: string;
|
|
1025
|
+
search: string;
|
|
1026
|
+
shipmentIdHint: string;
|
|
1027
|
+
labelIdHint: string;
|
|
1028
|
+
dateFilterToday: string;
|
|
1029
|
+
dateFilterLast7Days: string;
|
|
1030
|
+
dateFilterLast30Days: string;
|
|
1031
|
+
dateFilterLast12Months: string;
|
|
1032
|
+
dateFilterCustom: string;
|
|
1033
|
+
};
|
|
1034
|
+
insuranceProviders: {
|
|
1035
|
+
carrier: string;
|
|
1036
|
+
none: string;
|
|
1037
|
+
parcelguard: string;
|
|
1038
|
+
shipsurance: string;
|
|
1039
|
+
thirdParty: string;
|
|
1040
|
+
xCover: string;
|
|
1041
|
+
};
|
|
1042
|
+
loading: {
|
|
1043
|
+
accountSettings: string;
|
|
1044
|
+
carrier: string;
|
|
1045
|
+
carriers: string;
|
|
1046
|
+
carrierServices: string;
|
|
1047
|
+
connectCarrierForm: string;
|
|
1048
|
+
connectingCarriers: string;
|
|
1049
|
+
creatingFundingSource: string;
|
|
1050
|
+
submittingOnboarding: string;
|
|
1051
|
+
submittingWarehouse: string;
|
|
1052
|
+
updatingPaymentMethod: string;
|
|
1053
|
+
data: string;
|
|
1054
|
+
importingSalesOrder: string;
|
|
1055
|
+
label: string;
|
|
1056
|
+
labels: string;
|
|
1057
|
+
onboarding: string;
|
|
1058
|
+
salesOrder: string;
|
|
1059
|
+
shipment: string;
|
|
1060
|
+
shipments: string;
|
|
1061
|
+
warehouses: string;
|
|
1062
|
+
funding: string;
|
|
1063
|
+
paymentMethod: string;
|
|
1064
|
+
};
|
|
1065
|
+
months: {
|
|
1066
|
+
january: string;
|
|
1067
|
+
february: string;
|
|
1068
|
+
march: string;
|
|
1069
|
+
april: string;
|
|
1070
|
+
may: string;
|
|
1071
|
+
june: string;
|
|
1072
|
+
july: string;
|
|
1073
|
+
august: string;
|
|
1074
|
+
september: string;
|
|
1075
|
+
october: string;
|
|
1076
|
+
november: string;
|
|
1077
|
+
december: string;
|
|
1078
|
+
};
|
|
1079
|
+
packageCategories: {
|
|
1080
|
+
customPackages: string;
|
|
1081
|
+
};
|
|
1082
|
+
packageCodes: {
|
|
1083
|
+
package: string;
|
|
1084
|
+
};
|
|
1085
|
+
"powered-by": string;
|
|
1086
|
+
schema: {
|
|
1087
|
+
optionalLabel: string;
|
|
1088
|
+
};
|
|
1089
|
+
required: string;
|
|
1090
|
+
schemaErrors: {
|
|
1091
|
+
notAValidPhoneNumber: string;
|
|
1092
|
+
mustAgreeToTerms: string;
|
|
1093
|
+
group: {
|
|
1094
|
+
allMeasurementsOrNone: string;
|
|
1095
|
+
};
|
|
1096
|
+
invalidAddressName: string;
|
|
1097
|
+
invalidAddressNameStrict: string;
|
|
1098
|
+
invalidAddressNameOnboarding: string;
|
|
1099
|
+
invalidAddressPoBox: string;
|
|
1100
|
+
invalidCreditCardType: string;
|
|
1101
|
+
invalidExpirationDate: string;
|
|
1102
|
+
invalidPostalCode: string;
|
|
1103
|
+
invalidStateProvince: string;
|
|
1104
|
+
invalidString: string;
|
|
1105
|
+
nonnegative: string;
|
|
1106
|
+
nonnegativeList: string;
|
|
1107
|
+
positive: string;
|
|
1108
|
+
positiveList: string;
|
|
1109
|
+
required: string;
|
|
1110
|
+
requiredList: string;
|
|
1111
|
+
tooFewCharacters: string;
|
|
1112
|
+
tooManyCharacters: string;
|
|
1113
|
+
requiredShipmentId: string;
|
|
1114
|
+
requiredLabelId: string;
|
|
1115
|
+
heightExceeded: string;
|
|
1116
|
+
widthExceeded: string;
|
|
1117
|
+
lengthExceeded: string;
|
|
1118
|
+
};
|
|
1119
|
+
shippingPresets: {
|
|
1120
|
+
apply: string;
|
|
1121
|
+
platform: string;
|
|
1122
|
+
user: string;
|
|
1123
|
+
};
|
|
1124
|
+
tags: {
|
|
1125
|
+
new: string;
|
|
1126
|
+
};
|
|
1127
|
+
terms: {
|
|
1128
|
+
fields: {
|
|
1129
|
+
agreement: string;
|
|
1130
|
+
};
|
|
1131
|
+
agreeToTerms: string;
|
|
1132
|
+
carriersTitle: string;
|
|
1133
|
+
fundingSourceTitle: string;
|
|
1134
|
+
insuranceProvidersTitle: string;
|
|
1135
|
+
shipEngineTitle: string;
|
|
1136
|
+
};
|
|
1137
|
+
weight: {
|
|
1138
|
+
ounces: string;
|
|
1139
|
+
pounds_one: string;
|
|
1140
|
+
pounds_other: string;
|
|
1141
|
+
kilogram: string;
|
|
1142
|
+
gram: string;
|
|
1143
|
+
};
|
|
1144
|
+
units: {
|
|
1145
|
+
inch: string;
|
|
1146
|
+
lbs: string;
|
|
1147
|
+
oz: string;
|
|
1148
|
+
centimeter: string;
|
|
1149
|
+
gram: string;
|
|
1150
|
+
kilogram: string;
|
|
1151
|
+
};
|
|
1152
|
+
actionsMenu: {
|
|
1153
|
+
menuTitle: string;
|
|
1154
|
+
actions: {
|
|
1155
|
+
printLabel: string;
|
|
1156
|
+
voidLabel: string;
|
|
1157
|
+
printForms: string;
|
|
1158
|
+
edit: string;
|
|
1159
|
+
remove: string;
|
|
1160
|
+
viewDetails: string;
|
|
1161
|
+
cancelShipment: string;
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
1165
|
+
T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
|
|
1166
|
+
"VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
|
|
1167
|
+
"VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkNTAuCg==": string;
|
|
1168
|
+
QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnN1ZmZpY2llbnQgYWNjb3VudCBiYWxhbmNlLiBBY2NvdW50IGV4Y2VwdGlvbiBFeGNlcHRpb24gd2l0aCBjb2RlIDB4MDA1NjAxMDE7IG1vZHVsZSA4NiwgY2F0ZWdvcnkgMSwgaXRlbSAx: string;
|
|
1169
|
+
"QWRkcmVzcyBub3QgZm91bmQ=": string;
|
|
1170
|
+
QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBVUFMgd2VpZ2h0IGxpbWl0IHBlciBwYWNrYWdlIGlzIDE1MCBsYnMu: string;
|
|
1171
|
+
UGxlYXNlIGFkZCBhIFN0YW1wcy5jb20gYWNjb3VudCB0byBTaGlwRW5naW5lIGluIG9yZGVyIHRvIGNyZWF0ZSBzaGlwcGluZyBsYWJlbHMu: string;
|
|
1172
|
+
QSBzaGlwcGluZyBlcnJvciBvY2N1cnJlZDogTWlzc2luZyBvciBpbnZhbGlkIHNoaXBwZXIgbnVtYmVy: string;
|
|
1173
|
+
QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcHBlciBuYW1l: string;
|
|
1174
|
+
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
|
|
1175
|
+
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
|
|
1176
|
+
};
|
|
1177
|
+
"account-settings": {
|
|
1178
|
+
messages: {
|
|
1179
|
+
transactionHistory: {
|
|
1180
|
+
noTransactions: string;
|
|
1181
|
+
};
|
|
1182
|
+
noFundingSourceDescription: string;
|
|
1183
|
+
noFundingSourceAction: string;
|
|
1184
|
+
};
|
|
1185
|
+
title: string;
|
|
1186
|
+
sections: {
|
|
1187
|
+
accountBalance: string;
|
|
1188
|
+
paymentMethod: string;
|
|
1189
|
+
transactionHistory: string;
|
|
1190
|
+
adjustmentHistory: string;
|
|
1191
|
+
warehouses: string;
|
|
1192
|
+
carriers: {
|
|
1193
|
+
title: string;
|
|
1194
|
+
customStatusMessages: {
|
|
1195
|
+
success: string;
|
|
1196
|
+
};
|
|
1197
|
+
};
|
|
1198
|
+
externalCarriers: string;
|
|
1199
|
+
labelLayout: string;
|
|
1200
|
+
unitSettings: string;
|
|
1201
|
+
vatSettings: string;
|
|
1202
|
+
};
|
|
1203
|
+
errors: {
|
|
1204
|
+
paymentMethod: {
|
|
1205
|
+
title: string;
|
|
1206
|
+
description: string;
|
|
1207
|
+
};
|
|
1208
|
+
};
|
|
1209
|
+
};
|
|
1210
|
+
};
|
|
1211
|
+
} | undefined;
|
|
1212
|
+
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
1213
|
+
/**
|
|
1214
|
+
* # Customs Form Element Props
|
|
1215
|
+
*
|
|
1216
|
+
* @see {@link CustomsForm.Element | See the full type that `typeof Element` will return}
|
|
1217
|
+
*/
|
|
1218
|
+
export type ElementProps = React.ComponentProps<typeof Element>;
|
|
1219
|
+
//# sourceMappingURL=customs-form-element.d.ts.map
|