@shipengine/elements 2.14.0 → 2.16.0

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