@shipengine/elements 1.5.1 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/index.cjs +14231 -13991
  2. package/index.js +14251 -14020
  3. package/package.json +5 -7
  4. package/src/components/address-preference-context/address-preference-context.d.ts +2 -1
  5. package/src/components/auto-funding-form/auto-funding-form.styles.d.ts +4 -8
  6. package/src/components/date-range-select/date-range-select.d.ts +1 -2
  7. package/src/components/field/create-field-controller.d.ts +2 -1
  8. package/src/components/field/date-picker/date-picker.d.ts +2 -6
  9. package/src/components/field/rate-card/rate-card.d.ts +3 -1
  10. package/src/components/field/rate-card/rate-card.styles.d.ts +1 -0
  11. package/src/components/field-label/field-label.d.ts +2 -1
  12. package/src/components/history/history-card/history-card.d.ts +5 -2
  13. package/src/components/index.d.ts +5 -2
  14. package/src/components/service-point-display/service-point-display.d.ts +1 -1
  15. package/src/components/service-point-display/service-point-display.styles.d.ts +8 -0
  16. package/src/components/templates/address-display/address-display.d.ts +2 -1
  17. package/src/components/templates/connected-carrier-list/connected-carrier-row/connected-carrier-row.styles.d.ts +17 -0
  18. package/src/components/templates/index.d.ts +1 -4
  19. package/src/components/templates/label/label.styles.d.ts +0 -6
  20. package/src/components/templates/product-form/product-form-schema.d.ts +0 -12
  21. package/src/components/templates/pudo-rate-tabs/pudo-rate-tabs.d.ts +6 -1
  22. package/src/components/templates/rate-form/rate-form.d.ts +2 -1
  23. package/src/components/templates/rate-form/rate-form.styles.d.ts +2 -4
  24. package/src/components/templates/shipment-form/shipment-schema.d.ts +0 -50
  25. package/src/components/{templates/warehouse-form → warehouse-form}/warehouse-form.d.ts +1 -1
  26. package/src/elements/external-carriers/external-carriers.d.ts +817 -9
  27. package/src/elements/index.d.ts +5 -2
  28. package/src/elements/label-layout/index.d.ts +1 -0
  29. package/src/elements/label-layout/label-layout-element.d.ts +785 -0
  30. package/src/elements/labels-grid/labels-grid.d.ts +9 -1
  31. package/src/elements/list-carriers/list-carriers.d.ts +810 -1
  32. package/src/elements/manage-funding/index.d.ts +1 -0
  33. package/src/elements/manage-funding/manage-funding-element.d.ts +785 -0
  34. package/src/elements/manage-warehouses/manage-warehouses.d.ts +805 -1
  35. package/src/elements/payment-method-settings/index.d.ts +1 -0
  36. package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +785 -0
  37. package/src/elements/{configure-shipment → purchase-label}/configure-shipment.d.ts +1 -12
  38. package/src/elements/purchase-label/hooks/index.d.ts +8 -0
  39. package/src/elements/purchase-label/hooks/use-configure-shipment.d.ts +1 -1
  40. package/src/elements/{configure-shipment → purchase-label}/hooks/use-rates-form.d.ts +1 -1
  41. package/src/elements/{configure-shipment → purchase-label}/hooks/use-rates-with-cache.d.ts +1 -1
  42. package/src/elements/{configure-shipment → purchase-label}/hooks/use-request-preferred-rates.d.ts +1 -1
  43. package/src/elements/{configure-shipment → purchase-label}/hooks/use-request-rates.d.ts +2 -1
  44. package/src/elements/purchase-label/purchase-label.d.ts +29 -49
  45. package/src/elements/shipments-grid/shipments-grid.d.ts +9 -1
  46. package/src/elements/theme-creator/theme-creator.d.ts +9 -1
  47. package/src/elements/unit-settings/index.d.ts +1 -0
  48. package/src/elements/unit-settings/unit-settings-element.d.ts +785 -0
  49. package/src/elements/view-shipment/view-shipment.d.ts +12 -2
  50. package/src/elements/void-label/void-label.d.ts +9 -1
  51. package/src/elements/wallet-history/index.d.ts +1 -0
  52. package/src/elements/wallet-history/wallet-history-element.d.ts +785 -0
  53. package/src/features/external-carriers/external-carriers.d.ts +10 -0
  54. package/src/features/external-carriers/index.d.ts +1 -0
  55. package/src/features/index.d.ts +7 -0
  56. package/src/features/label-layout/index.d.ts +2 -0
  57. package/src/features/label-layout/label-layout.d.ts +2 -0
  58. package/src/features/label-layout/use-label-layout.d.ts +7 -0
  59. package/src/features/list-carriers/hooks/index.d.ts +2 -0
  60. package/src/{hooks → features/list-carriers/hooks}/use-carrier-metadata.d.ts +1 -1
  61. package/src/{components/templates → features/list-carriers}/list-carriers-row/list-carriers-row.d.ts +2 -2
  62. package/src/features/list-carriers/list-carriers.d.ts +9 -0
  63. package/src/features/manage-funding/manage-funding.d.ts +16 -0
  64. package/src/features/manage-warehouses/manage-warehouses.d.ts +1 -0
  65. package/src/{components → features}/unit-settings/unit-settings.d.ts +0 -5
  66. package/src/features/wallet-history/wallet-history.styles.d.ts +10 -10
  67. package/src/hooks/index.d.ts +0 -1
  68. package/src/hooks/options/use-rate-options.d.ts +1 -1
  69. package/src/locales/en/index.d.ts +9 -1
  70. package/src/types/index.d.ts +1 -0
  71. package/src/types/preferred-rates.d.ts +13 -0
  72. package/src/utilities/date.d.ts +2 -1
  73. package/src/utilities/feature-flags.d.ts +1 -1
  74. package/src/utilities/index.d.ts +1 -0
  75. package/src/utilities/tracking-status-formatter.d.ts +1 -0
  76. package/src/{elements → workflows}/account-settings/account-settings.d.ts +14 -50
  77. package/src/workflows/account-settings/use-get-panel-props.d.ts +4 -0
  78. package/src/{elements → workflows}/connect-carrier/connect-carrier.d.ts +9 -1
  79. package/src/workflows/index.d.ts +3 -0
  80. package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +1 -1
  81. package/src/workflows/onboarding/components/ship-from-address-step/ship-from-address-step.d.ts +1 -1
  82. package/src/workflows/onboarding/components/ship-from-address-step/use-ship-from-address-step.d.ts +1 -1
  83. package/src/workflows/onboarding/onboarding.d.ts +10 -2
  84. package/src/workflows/purchase-label-workflow/index.d.ts +1 -0
  85. package/src/{elements/shipengine-workflow/label-workflow.d.ts → workflows/purchase-label-workflow/purchase-label-workflow.d.ts} +19 -21
  86. package/src/components/date-range-select/date-range-select.styles.d.ts +0 -7
  87. package/src/components/field/date-picker/date-picker.styles.d.ts +0 -3
  88. package/src/components/label-layout/index.d.ts +0 -3
  89. package/src/components/label-layout/label-layout-purchase.d.ts +0 -5
  90. package/src/components/label-layout/label-layout-settings.d.ts +0 -7
  91. package/src/components/label-layout/label-layout.d.ts +0 -9
  92. package/src/components/manage-funding/manage-funding.d.ts +0 -35
  93. package/src/components/templates/account-settings/account-settings.d.ts +0 -10
  94. package/src/components/templates/account-settings/index.d.ts +0 -1
  95. package/src/components/templates/list-carriers/list-carriers.d.ts +0 -16
  96. package/src/components/templates/manage-warehouses/manage-warehouses.d.ts +0 -11
  97. package/src/elements/configure-shipment/hooks/index.d.ts +0 -8
  98. package/src/elements/configure-shipment/index.d.ts +0 -1
  99. package/src/elements/shipengine-workflow/index.d.ts +0 -1
  100. /package/src/components/{templates/edit-billing-form → edit-billing-form}/edit-billing-form.d.ts +0 -0
  101. /package/src/components/{templates/edit-billing-form → edit-billing-form}/edit-billing-form.styles.d.ts +0 -0
  102. /package/src/components/{templates/edit-billing-form → edit-billing-form}/index.d.ts +0 -0
  103. /package/src/components/{templates/wallet-card → wallet-card}/index.d.ts +0 -0
  104. /package/src/components/{templates/wallet-card → wallet-card}/wallet-card.d.ts +0 -0
  105. /package/src/components/{templates/wallet-card → wallet-card}/wallet-card.styles.d.ts +0 -0
  106. /package/src/components/{templates/warehouse-form → warehouse-form}/index.d.ts +0 -0
  107. /package/src/components/{templates/warehouse-form → warehouse-form}/warehouse-form-schema.d.ts +0 -0
  108. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-address.d.ts +0 -0
  109. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-customs.d.ts +0 -0
  110. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-presets.d.ts +0 -0
  111. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-shipment-form.d.ts +0 -0
  112. /package/src/{components → features}/label-layout/label-layout.styles.d.ts +0 -0
  113. /package/src/{elements → features}/list-carriers/hooks/use-list-connected-carriers.d.ts +0 -0
  114. /package/src/{components/templates → features}/list-carriers/index.d.ts +0 -0
  115. /package/src/{components/templates → features/list-carriers}/list-carriers-row/index.d.ts +0 -0
  116. /package/src/{components/templates → features/list-carriers}/list-carriers-row/list-carriers-row.styles.d.ts +0 -0
  117. /package/src/{components/templates → features}/list-carriers/list-carriers.styles.d.ts +0 -0
  118. /package/src/{components → features}/manage-funding/index.d.ts +0 -0
  119. /package/src/{components/templates → features}/manage-warehouses/index.d.ts +0 -0
  120. /package/src/{components/templates → features}/manage-warehouses/manage-warehouse.styles.d.ts +0 -0
  121. /package/src/{components/templates → features/manage-warehouses}/warehouse-display/index.d.ts +0 -0
  122. /package/src/{components/templates → features/manage-warehouses}/warehouse-display/warehouse-display.d.ts +0 -0
  123. /package/src/{components → features}/payment-method-settings/index.d.ts +0 -0
  124. /package/src/{components → features}/payment-method-settings/payment-method-settings.d.ts +0 -0
  125. /package/src/{components → features}/unit-settings/index.d.ts +0 -0
  126. /package/src/{elements → workflows}/account-settings/index.d.ts +0 -0
  127. /package/src/{elements → workflows}/connect-carrier/index.d.ts +0 -0
@@ -0,0 +1,785 @@
1
+ /// <reference types="react" />
2
+ export declare const Component: () => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const Element: ({ resources, ...props }: object & {
4
+ resources?: {
5
+ en: {
6
+ "wallet-history": {
7
+ actions: {
8
+ downloadCsv: string;
9
+ chooseDate: string;
10
+ tryAgain: string;
11
+ };
12
+ errors: {
13
+ failureToFetch: string;
14
+ };
15
+ dateRange: string;
16
+ details: {
17
+ inaccurateWeight: string;
18
+ };
19
+ historyOptions: {
20
+ custom: string;
21
+ last30days: string;
22
+ thisMonth: string;
23
+ lastMonth: string;
24
+ };
25
+ };
26
+ "void-label": {
27
+ title: string;
28
+ actions: {
29
+ complete: string;
30
+ confirmVoid: string;
31
+ viewShipment: string;
32
+ };
33
+ errorMessages: {
34
+ labelIdRequired: string;
35
+ };
36
+ resultMessages: {
37
+ approved: string;
38
+ rejected: string;
39
+ };
40
+ refund_process: string;
41
+ refund_rules: string;
42
+ resultTitles: {
43
+ approved: string;
44
+ rejected: string;
45
+ };
46
+ voidedOn: string;
47
+ };
48
+ "view-shipment": {
49
+ title: string;
50
+ actions: {
51
+ buyAnotherLabel: string;
52
+ hideItems: string;
53
+ printForms: string;
54
+ printLabel: string;
55
+ schedulePickup: string;
56
+ showItems: string;
57
+ void: string;
58
+ };
59
+ fields: {
60
+ dimensions: string;
61
+ estimatedShipping: string;
62
+ items: string;
63
+ orderDate: string;
64
+ orderValue: string;
65
+ requestedShipping: string;
66
+ shipDate: string;
67
+ shipTo: string;
68
+ warehouse: string;
69
+ weight: string;
70
+ insuredValue: string;
71
+ deliveryConfirmation: string;
72
+ };
73
+ highVolumeForms: string;
74
+ multipleShippingServices: string;
75
+ sections: {
76
+ labels: string;
77
+ };
78
+ noLabels: string;
79
+ };
80
+ "register-wallet": {
81
+ sections: {
82
+ setup: {
83
+ title: string;
84
+ subtitle: string;
85
+ descriptionTitle: string;
86
+ description: string;
87
+ };
88
+ billing: {
89
+ title: string;
90
+ cardSubTitle: string;
91
+ addressSubTitle: string;
92
+ info: string;
93
+ };
94
+ carriers: {
95
+ title: string;
96
+ subtitle: string;
97
+ };
98
+ notifications: {
99
+ error: {
100
+ title: string;
101
+ };
102
+ info: {
103
+ title: string;
104
+ description: string;
105
+ };
106
+ poBox: {
107
+ title: string;
108
+ description: string;
109
+ };
110
+ carrier: {
111
+ title: string;
112
+ confirmAddress: string;
113
+ description: string;
114
+ };
115
+ blackBox: {
116
+ description: string;
117
+ };
118
+ };
119
+ };
120
+ settings: {
121
+ title: string;
122
+ billing: {
123
+ title: string;
124
+ subtitleCard: string;
125
+ subtitleBilling: string;
126
+ };
127
+ };
128
+ };
129
+ "register-carrier": {
130
+ formTitle: string;
131
+ agreeToTerms: string;
132
+ };
133
+ "purchase-label": {
134
+ title: string;
135
+ actions: {
136
+ calculateRates_one: string;
137
+ calculateRates_other: string;
138
+ hideItems: string;
139
+ purchaseLabel: string;
140
+ purchaseNow: string;
141
+ showItems: string;
142
+ showMoreRates: string;
143
+ showFewerRates: string;
144
+ saveRate: string;
145
+ };
146
+ balance: {
147
+ currentBalance: string;
148
+ insufficientBalanceCTA: string;
149
+ };
150
+ cta: {
151
+ addPackageDetails: string;
152
+ };
153
+ errorMessages: {
154
+ customsItemsRequired: string;
155
+ invalidAddress: string;
156
+ noRates: string;
157
+ salesOrderNotLoaded: string;
158
+ unsupportedAddress: string;
159
+ saveRateFailedMessage: string;
160
+ saveRateFailedTitle: string;
161
+ };
162
+ errorTypes: {
163
+ results: string;
164
+ };
165
+ fields: {
166
+ "requires-additional-handling": string;
167
+ addOns: string;
168
+ contentDescription: string;
169
+ confirmation: string;
170
+ dimensions: {
171
+ length: string;
172
+ width: string;
173
+ height: string;
174
+ };
175
+ dimensionsGroup: string;
176
+ estimatedShipping: string;
177
+ insurance: string;
178
+ insuranceProvider: string;
179
+ insuredValue: string;
180
+ items: string;
181
+ orderDate: string;
182
+ orderValue: string;
183
+ packageCode: string;
184
+ requestedShipping: string;
185
+ shipDate: string;
186
+ service: string;
187
+ shipTo: string;
188
+ addShipToAddress: string;
189
+ warehouse: string;
190
+ weight: {
191
+ whole: string;
192
+ fractional: string;
193
+ };
194
+ weightGroup: string;
195
+ today: string;
196
+ };
197
+ hints: {
198
+ contentDescription: string;
199
+ };
200
+ loading: {
201
+ calculatingRates: string;
202
+ };
203
+ modes: {
204
+ browseRates: string;
205
+ selectService: string;
206
+ };
207
+ multipleShippingServices: string;
208
+ schemaErrors: {
209
+ shipFromUnitedStatesOnly: string;
210
+ shipFromAddressRequired: string;
211
+ needToAcknowledge: string;
212
+ };
213
+ rates: {
214
+ uspsMediaMailAcknowledgement: string;
215
+ uspsFirstClassMailAcknowledgement_leof: string;
216
+ rateSavings: string;
217
+ upsGroundSaverTermsAcknowledgement: string;
218
+ dhlExpressTermsAcknowledgement: string;
219
+ };
220
+ requirements: {
221
+ noWarehouse: string;
222
+ noCarrier: string;
223
+ noWarehouseOrCarrier: string;
224
+ };
225
+ servicePoints: {
226
+ searchLabel: string;
227
+ noRatesForType: string;
228
+ dropOff: string;
229
+ pickUp: string;
230
+ closed: string;
231
+ hideLocations: string;
232
+ moreLocations: string;
233
+ nearestLocation: string;
234
+ open: string;
235
+ nextOpeningDay: string;
236
+ until: string;
237
+ selected: string;
238
+ select: string;
239
+ today: string;
240
+ viewMap: string;
241
+ otherLocations: string;
242
+ noServicePointsFound: string;
243
+ };
244
+ shipToAddressFormFields: string;
245
+ sections: {
246
+ customsForm: string;
247
+ shipment: string;
248
+ rate_one: string;
249
+ rate_other: string;
250
+ payment: string;
251
+ };
252
+ };
253
+ "payment-method": {
254
+ title: string;
255
+ };
256
+ onboarding: {
257
+ title: string;
258
+ inlineTitle: string;
259
+ accountRegistration: {
260
+ action: string;
261
+ title: string;
262
+ subtitle: string;
263
+ welcome: string;
264
+ messageLine1: string;
265
+ partnerMessageLine1: string;
266
+ messageLine2: string;
267
+ };
268
+ stepLabel: {
269
+ accountRegistration: string;
270
+ termsAgreement: string;
271
+ shipFromAddress: string;
272
+ fundingAndCarrierConnection: string;
273
+ };
274
+ warehouse: {
275
+ title: string;
276
+ subtitle: string;
277
+ inlineMessage: string;
278
+ };
279
+ success: {
280
+ title: string;
281
+ subtitle: string;
282
+ action: string;
283
+ };
284
+ termsAndAgreementLinkText: {
285
+ aHR0cHM6Ly9teWRobC5leHByZXNzLmRobC91cy9lbi9sZWdhbC90ZXJtcy1hbmQtY29uZGl0aW9ucy5odG1s: string;
286
+ "aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9wcml2YWN5LXBvbGljeQ==": string;
287
+ "aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9jb25kaXRpb25zLw==": string;
288
+ "aHR0cHM6Ly93d3cudXBzLmNvbS91cy9lbi9zdXBwb3J0L3NoaXBwaW5nLXN1cHBvcnQvc2hpcHBpbmctc3BlY2lhbC1jYXJlLXJlZ3VsYXRlZC1pdGVtcy9wcm9oaWJpdGVkLWl0ZW1zLnBhZ2U=": string;
289
+ aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VQU19EQVBfVEMucGRm: string;
290
+ "aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VUQS5wZGY=": string;
291
+ "aHR0cHM6Ly93d3cuZXZyaS5jb20vdGVybXMtYW5kLWNvbmRpdGlvbnM=": string;
292
+ "aHR0cHM6Ly93d3cueW9kZWxkaXJlY3QuY28udWsvY29udGVudC9hYm91dC10ZXJtcw==": string;
293
+ aHR0cHM6Ly93d3cuc2hpcHN0YXRpb24uY29tL3Rlcm1zLXNlcnZpY2UtdW5pdGVkLWtpbmdkb20v: string;
294
+ "aHR0cHM6Ly93d3cuZHBkLmNvLnVrL3N0YW5kYXJkX3Rlcm1zX2FuZF9jb25kaXRpb25zLmpzcA==": string;
295
+ aHR0cHM6Ly93d3cuZ29nbG9iYWxwb3N0LmNvbS9jb25kaXRpb25z: string;
296
+ };
297
+ termsAndAgreementTitles: {
298
+ "WW9kZWwgRGlyZWN0IC0gVGVybXMgYW5kIENvbmRpdGlvbnMgKOKAnFRlcm1z4oCdKQ==": string;
299
+ "RXZyaSBTZW5kIFRlcm1zICYgQ29uZGl0aW9ucw==": string;
300
+ "VGVybXMgb2YgU2VydmljZSBVbml0ZWQgS2luZ2RvbQ==": string;
301
+ RFBEIFN0YW5kYXJkIFRlcm1zIGFuZCBDb25kaXRpb25z: string;
302
+ "R2xvYmFsUG9zdCBUZXJtcyBhbmQgQ29uZGl0aW9ucw==": string;
303
+ };
304
+ };
305
+ "manage-defaults": {
306
+ label: {
307
+ title: string;
308
+ letter: {
309
+ title: string;
310
+ description: string;
311
+ };
312
+ purchase: {
313
+ title: string;
314
+ description: string;
315
+ };
316
+ thermal: {
317
+ title: string;
318
+ description: string;
319
+ };
320
+ };
321
+ status: {
322
+ saving: string;
323
+ saved: string;
324
+ savingFailed: string;
325
+ };
326
+ units: {
327
+ title: string;
328
+ dimensions: {
329
+ title: string;
330
+ standard: string;
331
+ metric: string;
332
+ };
333
+ weight: {
334
+ title: string;
335
+ standard: string;
336
+ g: string;
337
+ kg: string;
338
+ };
339
+ };
340
+ };
341
+ "manage-warehouses": {
342
+ title: string;
343
+ addNew: string;
344
+ editWarehouse: string;
345
+ contactName: string;
346
+ default: string;
347
+ isDefault: string;
348
+ locationName: string;
349
+ residentialAddress: string;
350
+ returnTo: string;
351
+ returnToAddressIsDifferent: string;
352
+ setDefault: string;
353
+ shipFrom: string;
354
+ };
355
+ "manage-funding": {
356
+ actions: {
357
+ addFunds: string;
358
+ addFundsAndPurchase: string;
359
+ addNow: string;
360
+ saveRule: string;
361
+ };
362
+ autoFunding: {
363
+ edit: string;
364
+ editSettings: string;
365
+ error: {
366
+ title: string;
367
+ message: string;
368
+ };
369
+ isEnabledCTA: string;
370
+ isEnabled: string;
371
+ isLoading: string;
372
+ lowBalancePurchaseThreshold: string;
373
+ maximumPurchasesPerDay: string;
374
+ purchaseAmount: string;
375
+ readSettings: string;
376
+ };
377
+ addFunds: {
378
+ custom: string;
379
+ error: {
380
+ title: string;
381
+ message: string;
382
+ };
383
+ isLoading: string;
384
+ labels: {
385
+ amount: string;
386
+ };
387
+ minimumPurchaseAmount: string;
388
+ other: string;
389
+ };
390
+ fundAndPurchase: {
391
+ finalBalance: string;
392
+ insufficientFunds: string;
393
+ insufficientFundsTitle: string;
394
+ negativeBalance: string;
395
+ negativeBalanceTitle: string;
396
+ newBalance: string;
397
+ };
398
+ errors: {
399
+ balanceUnknown: string;
400
+ unableToFindBalance: string;
401
+ };
402
+ byoc: {
403
+ invoiceNotification: string;
404
+ };
405
+ currentBalance: string;
406
+ maximumBalanceAmount: string;
407
+ };
408
+ "list-shipments": {
409
+ title: string;
410
+ headers: {
411
+ created: string;
412
+ download: string;
413
+ shipmentId: string;
414
+ shipDate: string;
415
+ shipTo: string;
416
+ };
417
+ actions: {
418
+ download: {
419
+ pdf: string;
420
+ };
421
+ };
422
+ };
423
+ "list-labels": {
424
+ title: string;
425
+ headers: {
426
+ created: string;
427
+ download: string;
428
+ labelId: string;
429
+ service: string;
430
+ shipTo: string;
431
+ };
432
+ actions: {
433
+ download: {
434
+ pdf: string;
435
+ };
436
+ };
437
+ };
438
+ "list-carriers": {
439
+ title: string;
440
+ headers: {
441
+ accountCarriers: string;
442
+ carriers: string;
443
+ settings: string;
444
+ };
445
+ actions: {
446
+ status: {
447
+ connected: string;
448
+ notConnected: string;
449
+ };
450
+ };
451
+ };
452
+ common: {
453
+ actions: {
454
+ add: string;
455
+ cancel: string;
456
+ close: string;
457
+ confirm: string;
458
+ connect: string;
459
+ continue: string;
460
+ delete: string;
461
+ edit: string;
462
+ hide: string;
463
+ parse: string;
464
+ purchase: string;
465
+ remove: string;
466
+ save: string;
467
+ skipForNow: string;
468
+ submit: string;
469
+ tryAgain: string;
470
+ };
471
+ address: {
472
+ fields: {
473
+ name: string;
474
+ company: string;
475
+ county: string;
476
+ countryCode: string;
477
+ addressLine1: string;
478
+ addressLine2: string;
479
+ cityLocality: string;
480
+ stateProvince: string;
481
+ postalCode: string;
482
+ phone: string;
483
+ email: string;
484
+ addressResidentialIndicator: string;
485
+ };
486
+ noResults: string;
487
+ subFields: {
488
+ optional: string;
489
+ };
490
+ parserFields: {
491
+ fullAddress: string;
492
+ };
493
+ paste: string;
494
+ preference: {
495
+ confirm: string;
496
+ addressNotValidated: string;
497
+ modified: string;
498
+ title: string;
499
+ originalAddress: string;
500
+ matchedAddress: string;
501
+ unableToValidate: string;
502
+ use: {
503
+ originalAddress: string;
504
+ matchedAddress: string;
505
+ };
506
+ };
507
+ validation: {
508
+ notValidated: string;
509
+ validated: string;
510
+ };
511
+ };
512
+ billing: {
513
+ fields: {
514
+ differentBillingAddress: string;
515
+ name: string;
516
+ cardNumber: string;
517
+ expiration: string;
518
+ cvv: string;
519
+ cvvPlaceholder: string;
520
+ expirationPlaceholder: string;
521
+ cardNumberPlaceholder: string;
522
+ };
523
+ };
524
+ carriers: {
525
+ fields: {
526
+ agreement: string;
527
+ };
528
+ terms: {
529
+ agreeToTerms: string;
530
+ title: string;
531
+ };
532
+ };
533
+ charsetWarnings: {
534
+ name: {
535
+ message: string;
536
+ };
537
+ address: {
538
+ message: string;
539
+ title: string;
540
+ };
541
+ };
542
+ confirmationTypes: {
543
+ adultSignature: string;
544
+ delivery: string;
545
+ deliveryMailed: string;
546
+ directSignature: string;
547
+ none: string;
548
+ signature: string;
549
+ verbalConfirmation: string;
550
+ };
551
+ customs: {
552
+ addDeclaration: string;
553
+ contents: {
554
+ documents: string;
555
+ gift: string;
556
+ merchandise: string;
557
+ returnedGoods: string;
558
+ sample: string;
559
+ };
560
+ currencyChange: string;
561
+ declarations: string;
562
+ descriptionTooltip: {
563
+ message: string;
564
+ example1: string;
565
+ example2: string;
566
+ };
567
+ fields: {
568
+ contentsType: string;
569
+ countryOfOrigin: string;
570
+ description: string;
571
+ harmonizedTariffCode: string;
572
+ ifDeliveryFails: string;
573
+ quantity: string;
574
+ sku: string;
575
+ value: string;
576
+ valueQuantity: string;
577
+ };
578
+ nonDelivery: {
579
+ returnToSender: string;
580
+ treatAsAbandoned: string;
581
+ };
582
+ removeAllDeclarations: string;
583
+ total: string;
584
+ };
585
+ errorMessages: {
586
+ invalidNameOrCompany: string;
587
+ parsingFailure: string;
588
+ incompleteLabelPurchaseRequirements: string;
589
+ shipmentCancelled: string;
590
+ unableToLoad: {
591
+ accountSettings: string;
592
+ autoFundingSettings: string;
593
+ carrier: string;
594
+ carriers: string;
595
+ connectCarrierForm: string;
596
+ fundingSourceMetadata: string;
597
+ label: string;
598
+ labels: string;
599
+ salesOrder: string;
600
+ shipment: string;
601
+ shipments: string;
602
+ warehouses: string;
603
+ };
604
+ emailIsRequired: string;
605
+ unknown: string;
606
+ noRatesAvailable: string;
607
+ };
608
+ errorTypes: {
609
+ accountStatus: string;
610
+ businessRules: string;
611
+ integrations: string;
612
+ purchase: string;
613
+ rateInvalid: string;
614
+ saveRate: string;
615
+ security: string;
616
+ shipmentStatus: string;
617
+ system: string;
618
+ unknown: string;
619
+ validation: string;
620
+ };
621
+ grid: {
622
+ "row-count_one": string;
623
+ "row-count_other": string;
624
+ rows: string;
625
+ };
626
+ insuranceProviders: {
627
+ carrier: string;
628
+ none: string;
629
+ shipsurance: string;
630
+ thirdParty: string;
631
+ };
632
+ loading: {
633
+ accountSettings: string;
634
+ carrier: string;
635
+ carriers: string;
636
+ connectCarrierForm: string;
637
+ connectingCarriers: string;
638
+ creatingFundingSource: string;
639
+ data: string;
640
+ importingSalesOrder: string;
641
+ label: string;
642
+ labels: string;
643
+ onboarding: string;
644
+ salesOrder: string;
645
+ shipment: string;
646
+ shipments: string;
647
+ warehouses: string;
648
+ };
649
+ months: {
650
+ january: string;
651
+ february: string;
652
+ march: string;
653
+ april: string;
654
+ may: string;
655
+ june: string;
656
+ july: string;
657
+ august: string;
658
+ september: string;
659
+ october: string;
660
+ november: string;
661
+ december: string;
662
+ };
663
+ packageCategories: {
664
+ customPackages: string;
665
+ };
666
+ packageCodes: {
667
+ package: string;
668
+ };
669
+ "powered-by": string;
670
+ schema: {
671
+ optionalLabel: string;
672
+ };
673
+ required: string;
674
+ schemaErrors: {
675
+ notAValidPhoneNumber: string;
676
+ mustAgreeToTerms: string;
677
+ group: {
678
+ allMeasurementsOrNone: string;
679
+ };
680
+ invalidAddressName: string;
681
+ invalidAddressNameStrict: string;
682
+ invalidAddressOnboarding: string;
683
+ invalidAddressPoBox: string;
684
+ invalidCreditCardType: string;
685
+ invalidExpirationDate: string;
686
+ invalidPostalCode: string;
687
+ invalidStateProvince: string;
688
+ invalidString: string;
689
+ nonnegative: string;
690
+ nonnegativeList: string;
691
+ positive: string;
692
+ positiveList: string;
693
+ required: string;
694
+ requiredList: string;
695
+ tooFewCharacters: string;
696
+ tooManyCharacters: string;
697
+ };
698
+ shippingPresets: {
699
+ apply: string;
700
+ platform: string;
701
+ user: string;
702
+ };
703
+ terms: {
704
+ fields: {
705
+ agreement: string;
706
+ };
707
+ agreeToTerms: string;
708
+ carriersTitle: string;
709
+ fundingSourceTitle: string;
710
+ };
711
+ weight: {
712
+ ounces: string;
713
+ pounds_one: string;
714
+ pounds_other: string;
715
+ kilogram: string;
716
+ gram: string;
717
+ };
718
+ units: {
719
+ inch: string;
720
+ lbs: string;
721
+ oz: string;
722
+ centimeter: string;
723
+ gram: string;
724
+ kilogram: string;
725
+ };
726
+ T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
727
+ "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
728
+ "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkNTAuCg==": string;
729
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnN1ZmZpY2llbnQgYWNjb3VudCBiYWxhbmNlLiBBY2NvdW50IGV4Y2VwdGlvbiBFeGNlcHRpb24gd2l0aCBjb2RlIDB4MDA1NjAxMDE7IG1vZHVsZSA4NiwgY2F0ZWdvcnkgMSwgaXRlbSAx: string;
730
+ "QWRkcmVzcyBub3QgZm91bmQ=": string;
731
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBVUFMgd2VpZ2h0IGxpbWl0IHBlciBwYWNrYWdlIGlzIDE1MCBsYnMu: string;
732
+ UGxlYXNlIGFkZCBhIFN0YW1wcy5jb20gYWNjb3VudCB0byBTaGlwRW5naW5lIGluIG9yZGVyIHRvIGNyZWF0ZSBzaGlwcGluZyBsYWJlbHMu: string;
733
+ QSBzaGlwcGluZyBlcnJvciBvY2N1cnJlZDogTWlzc2luZyBvciBpbnZhbGlkIHNoaXBwZXIgbnVtYmVy: string;
734
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcHBlciBuYW1l: string;
735
+ "QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
736
+ "QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
737
+ };
738
+ "connect-carrier": {
739
+ actions: {
740
+ cancel: string;
741
+ carrierSettings: string;
742
+ connectCarriers: string;
743
+ disconnect: string;
744
+ disconnectCarrier: string;
745
+ };
746
+ noCarriersDescription: string;
747
+ registrationForm: {
748
+ error: string;
749
+ title: string;
750
+ betaWarning: string;
751
+ };
752
+ search: string;
753
+ settingsModal: {
754
+ closeDialog: string;
755
+ header: string;
756
+ };
757
+ status: {
758
+ connected: string;
759
+ };
760
+ disconnectDropdown: {
761
+ toastTitle: string;
762
+ toastBody: string;
763
+ };
764
+ };
765
+ "account-settings": {
766
+ messages: {
767
+ noFundingSources: string;
768
+ };
769
+ title: string;
770
+ sections: {
771
+ accountBalance: string;
772
+ paymentMethod: string;
773
+ transactionHistory: string;
774
+ adjustmentHistory: string;
775
+ warehouses: string;
776
+ carriers: string;
777
+ externalCarriers: string;
778
+ labelLayout: string;
779
+ unitSettings: string;
780
+ };
781
+ };
782
+ };
783
+ } | undefined;
784
+ }) => import("@emotion/react/jsx-runtime").JSX.Element;
785
+ export type ElementProps = React.ComponentProps<typeof Element>;