@shipengine/elements 0.20.1 → 0.21.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 (159) hide show
  1. package/index.cjs +1131 -949
  2. package/index.js +995 -817
  3. package/package.json +3 -3
  4. package/src/components/add-funds-form/add-funds-schema.d.ts +7 -7
  5. package/src/components/address-preference-context/address-preference-context.d.ts +42 -0
  6. package/src/components/address-preference-context/index.d.ts +1 -0
  7. package/src/components/auto-funding-form/auto-funding-schema.d.ts +10 -10
  8. package/src/components/date-range-combo/date-range-combo.d.ts +12 -0
  9. package/src/components/date-range-combo/index.d.ts +1 -0
  10. package/src/components/date-range-select/date-range-select.d.ts +8 -0
  11. package/src/components/date-range-select/date-range-select.styles.d.ts +1 -0
  12. package/src/components/date-range-select/index.d.ts +1 -0
  13. package/src/components/field/fields.d.ts +2 -1
  14. package/src/components/field/money-input/hooks/use-utils.d.ts +1 -1
  15. package/src/components/field/money-input/money-input.d.ts +1 -1
  16. package/src/components/field/rate-card/cost-breakdown/cost-breakdown.d.ts +1 -1
  17. package/src/components/field/select-auto-complete/index.d.ts +1 -0
  18. package/src/components/field/select-auto-complete/select-auto-complete.d.ts +7 -0
  19. package/src/components/history/history-card/history-card.d.ts +5 -0
  20. package/src/components/history/history-card/history-card.styles.d.ts +1 -0
  21. package/src/components/history/history-card/index.d.ts +1 -0
  22. package/src/components/history/index.d.ts +1 -1
  23. package/src/components/index.d.ts +3 -1
  24. package/src/components/inline-label/inline-label.d.ts +5 -1
  25. package/src/components/inline-label/inline-label.styles.d.ts +1 -0
  26. package/src/components/items-breakdown/items-breakdown.d.ts +1 -1
  27. package/src/components/label/index.d.ts +1 -0
  28. package/src/components/label/label.d.ts +10 -0
  29. package/src/components/label/label.styles.d.ts +2 -0
  30. package/src/components/label-layout/index.d.ts +2 -0
  31. package/src/components/label-layout/label-layout-purchase.d.ts +4 -3
  32. package/src/components/label-layout/label-layout-settings.d.ts +3 -2
  33. package/src/components/label-layout/label-layout.styles.d.ts +1 -1
  34. package/src/components/section/index.d.ts +1 -0
  35. package/src/components/section/section.d.ts +10 -0
  36. package/src/components/section/section.styles.d.ts +1 -0
  37. package/src/components/templates/add-carrier-form/add-carrier-form-schema.d.ts +1 -1
  38. package/src/components/templates/add-carrier-form/add-carrier-form.d.ts +1 -1
  39. package/src/components/templates/address-display/address-display.d.ts +1 -1
  40. package/src/components/templates/address-form/address-form-schema.d.ts +1 -1
  41. package/src/components/templates/address-form/address-form.d.ts +1 -1
  42. package/src/components/templates/address-form/address-schema.d.ts +2 -1
  43. package/src/components/templates/address-preference-display/address-preference-display.d.ts +1 -1
  44. package/src/components/templates/address-preference-select/address-preference-select.d.ts +24 -0
  45. package/src/components/templates/address-preference-select/index.d.ts +1 -0
  46. package/src/components/templates/carrier-recovery-form/carrier-recovery-form-schema.d.ts +2 -2
  47. package/src/components/templates/carrier-recovery-form/carrier-recovery-form.d.ts +1 -1
  48. package/src/components/templates/carrier-terms-form/carrier-terms-form.d.ts +1 -1
  49. package/src/components/templates/customs-item-form/customs-item-form-schema.d.ts +20 -20
  50. package/src/components/templates/customs-item-form/customs-item-form.d.ts +1 -1
  51. package/src/components/templates/customs-items-display/customs-items-display.d.ts +1 -1
  52. package/src/components/templates/edit-billing-form/edit-billing-form.styles.d.ts +1 -1
  53. package/src/components/templates/index.d.ts +2 -3
  54. package/src/components/templates/label/label.d.ts +1 -1
  55. package/src/components/templates/list-carriers/list-carriers.d.ts +1 -1
  56. package/src/components/templates/list-carriers-row/list-carriers-row.d.ts +1 -1
  57. package/src/components/templates/manage-wallet/manage-wallet.styles.d.ts +1 -1
  58. package/src/components/templates/manage-warehouses/manage-warehouses.d.ts +2 -6
  59. package/src/components/templates/onboarding/onboarding.d.ts +14 -8
  60. package/src/components/templates/onboarding/onboarding.styles.d.ts +1 -1
  61. package/src/components/templates/rate-form/rate-form.d.ts +1 -1
  62. package/src/components/templates/shipment/shipment.d.ts +1 -1
  63. package/src/components/templates/shipment-form/shipment-form.d.ts +1 -1
  64. package/src/components/templates/shipment-form/shipment-schema.d.ts +26 -2
  65. package/src/components/templates/suspend-sales-order/suspend-sales-order.d.ts +1 -1
  66. package/src/components/templates/suspend-shipment/suspend-shipment.d.ts +1 -1
  67. package/src/components/templates/void-label/void-label.d.ts +1 -1
  68. package/src/components/templates/wallet-card/wallet-card.styles.d.ts +1 -1
  69. package/src/components/templates/wallet-form/edit-wallet-address-form.d.ts +1 -1
  70. package/src/components/templates/wallet-form/wallet-form.d.ts +7 -6
  71. package/src/components/templates/wallet-form/wallet-form.styles.d.ts +1 -1
  72. package/src/components/templates/wallet-form/wallet-schema.d.ts +3 -3
  73. package/src/components/templates/warehouse-display/warehouse-display.d.ts +1 -1
  74. package/src/components/templates/warehouse-form/warehouse-form-schema.d.ts +3 -3
  75. package/src/components/templates/warehouse-form/warehouse-form.d.ts +1 -1
  76. package/src/components/unit-settings/index.d.ts +1 -0
  77. package/src/components/unit-settings/unit-settings.d.ts +4 -0
  78. package/src/elements/components/configure-shipment/configure-shipment.d.ts +1 -1
  79. package/src/elements/components/configure-shipment/hooks/use-address.d.ts +1 -1
  80. package/src/elements/components/configure-shipment/hooks/use-customs.d.ts +1 -1
  81. package/src/elements/components/configure-shipment/hooks/use-presets.d.ts +1 -1
  82. package/src/elements/components/configure-shipment/hooks/use-rates-form.d.ts +1 -1
  83. package/src/elements/components/configure-shipment/hooks/use-request-rates.d.ts +1 -1
  84. package/src/elements/components/configure-shipment/hooks/use-shipment-form.d.ts +1 -1
  85. package/src/elements/components/index.d.ts +0 -1
  86. package/src/elements/components/list-carriers/hooks/use-list-connected-carriers.d.ts +2 -2
  87. package/src/elements/components/purchase-label/hooks/use-configure-shipment.d.ts +1 -1
  88. package/src/elements/components/purchase-label/hooks/use-import-sales-order.d.ts +2 -2
  89. package/src/elements/components/purchase-label/hooks/use-load-shipment.d.ts +3 -3
  90. package/src/elements/components/purchase-label/hooks/use-pending-shipment.d.ts +1 -1
  91. package/src/elements/components/shipment/shipment.d.ts +1 -1
  92. package/src/elements/components/void-label/void-label.d.ts +1 -1
  93. package/src/elements/index.d.ts +0 -1
  94. package/src/factories/shipengine/address.d.ts +8 -1
  95. package/src/factories/shipengine/carrier.d.ts +1 -1
  96. package/src/factories/shipengine/label.d.ts +1 -1
  97. package/src/factories/shipengine/money.d.ts +1 -1
  98. package/src/factories/shipengine/order-source.d.ts +1 -1
  99. package/src/factories/shipengine/package.d.ts +1 -1
  100. package/src/factories/shipengine/resource.d.ts +1 -1
  101. package/src/factories/shipengine/sales-order.d.ts +1 -1
  102. package/src/factories/shipengine/service.d.ts +1 -1
  103. package/src/factories/shipengine/shipment.d.ts +1 -1
  104. package/src/factories/shipengine/wallet-history.d.ts +1 -1
  105. package/src/factories/shipengine/warehouse.d.ts +1 -3
  106. package/src/factories/shipengine/weight.d.ts +1 -1
  107. package/src/features/wallet-history/wallet-history.styles.d.ts +1 -0
  108. package/src/hooks/index.d.ts +1 -1
  109. package/src/hooks/options/index.d.ts +1 -0
  110. package/src/hooks/options/use-confirmation-options.d.ts +1 -1
  111. package/src/hooks/options/use-customs-contents-options.d.ts +1 -1
  112. package/src/hooks/options/use-customs-non-delivery-options.d.ts +1 -1
  113. package/src/hooks/options/use-date-range-options.d.ts +14 -0
  114. package/src/hooks/options/use-insurance-provider-options.d.ts +1 -1
  115. package/src/hooks/options/use-package-options.d.ts +1 -1
  116. package/src/hooks/options/use-rate-options.d.ts +1 -1
  117. package/src/hooks/options/use-service-code-options.d.ts +1 -1
  118. package/src/hooks/options/use-warehouse-options.d.ts +1 -1
  119. package/src/hooks/use-address-validation.d.ts +12 -0
  120. package/src/hooks/use-carrier-metadata.d.ts +1 -1
  121. package/src/hooks/use-elements.d.ts +2 -2
  122. package/src/hooks/use-scrub-errors.d.ts +1 -1
  123. package/src/locales/en/index.d.ts +32 -5
  124. package/src/mocks/carriers/handlers.d.ts +1 -1
  125. package/src/mocks/warehouses/handlers.d.ts +1 -1
  126. package/src/schemas/shipengine/money.d.ts +1 -1
  127. package/src/types/carrier-metadata.d.ts +1 -1
  128. package/src/types/shipping-preset/shipping-preset.d.ts +1 -1
  129. package/src/utilities/date.d.ts +8 -0
  130. package/src/utilities/money.d.ts +1 -1
  131. package/src/utilities/rates.d.ts +2 -1
  132. package/src/utilities/shipengine/address.d.ts +1 -1
  133. package/src/utilities/shipengine/dimensions.d.ts +1 -1
  134. package/src/utilities/shipengine/sales-order.d.ts +1 -1
  135. package/src/utilities/shipengine/shipment.d.ts +1 -1
  136. package/src/utilities/shipengine/weight.d.ts +1 -1
  137. package/src/components/accordion/accordion.d.ts +0 -12
  138. package/src/components/accordion/accordion.styles.d.ts +0 -7
  139. package/src/components/accordion/index.d.ts +0 -1
  140. package/src/components/history/history-actions/history-actions.d.ts +0 -1
  141. package/src/components/history/history-actions/history-actions.styles.d.ts +0 -1
  142. package/src/components/history/history-actions/index.d.ts +0 -1
  143. package/src/components/history/history-body/history-body.d.ts +0 -6
  144. package/src/components/history/history-body/index.d.ts +0 -1
  145. package/src/components/history/history-list/history-list.d.ts +0 -12
  146. package/src/components/history/history-list/index.d.ts +0 -1
  147. package/src/components/history/history-row/history-row.d.ts +0 -6
  148. package/src/components/history/history-row/index.d.ts +0 -1
  149. package/src/components/history/history.d.ts +0 -11
  150. package/src/components/templates/wallet-history/wallet-history.d.ts +0 -6
  151. package/src/components/templates/warehouse-preference-select/index.d.ts +0 -1
  152. package/src/components/templates/warehouse-preference-select/warehouse-preference-select.d.ts +0 -24
  153. package/src/components/templates/warehouse-preference-wizard/index.d.ts +0 -1
  154. package/src/components/templates/warehouse-preference-wizard/warehouse-preference-wizard.d.ts +0 -23
  155. package/src/elements/wallet-history.d.ts +0 -1
  156. package/src/hooks/use-warehouse-validation.d.ts +0 -14
  157. /package/src/{components/templates/wallet-history → features}/index.d.ts +0 -0
  158. /package/src/{elements/components → features}/wallet-history/index.d.ts +0 -0
  159. /package/src/{elements/components → features}/wallet-history/wallet-history.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/elements",
3
- "version": "0.20.1",
3
+ "version": "0.21.0",
4
4
  "typedoc": {
5
5
  "entryPoint": "./src/index.ts",
6
6
  "readmeFile": "../../README.md",
@@ -31,8 +31,8 @@
31
31
  "@hookform/resolvers": "2.9.1",
32
32
  "@packlink/brands": "3.24.0",
33
33
  "@packlink/giger-theme": "1.3.1",
34
- "@shipengine/api": "0.19.1",
35
- "@shipengine/react": "0.19.1",
34
+ "@shipengine/js-api": "0.6.1",
35
+ "@shipengine/react-api": "0.4.2",
36
36
  "@storybook/manager-api": "7.0.0-rc.1",
37
37
  "@storybook/theming": "7.0.0-rc.1",
38
38
  "axios": "0.26.1",
@@ -2,33 +2,33 @@ import { z } from "zod";
2
2
  export declare const getAddFundsSchema: (minimumAmount?: number) => z.ZodEffects<z.ZodObject<{
3
3
  funds: z.ZodObject<z.extendShape<{
4
4
  amount: z.ZodNumber;
5
- currency: z.ZodNativeEnum<typeof import("dist/shipengine-api/src").Currency>;
5
+ currency: z.ZodNativeEnum<typeof import("@shipengine/js-api").Currency>;
6
6
  }, {
7
7
  amount: z.ZodNumber;
8
8
  }>, "strip", z.ZodTypeAny, {
9
9
  amount: number;
10
- currency: import("dist/shipengine-api/src").Currency;
10
+ currency: import("@shipengine/js-api").Currency;
11
11
  }, {
12
12
  amount: number;
13
- currency: import("dist/shipengine-api/src").Currency;
13
+ currency: import("@shipengine/js-api").Currency;
14
14
  }>;
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  funds: {
17
17
  amount: number;
18
- currency: import("dist/shipengine-api/src").Currency;
18
+ currency: import("@shipengine/js-api").Currency;
19
19
  };
20
20
  }, {
21
21
  funds: {
22
22
  amount: number;
23
- currency: import("dist/shipengine-api/src").Currency;
23
+ currency: import("@shipengine/js-api").Currency;
24
24
  };
25
25
  }>, {
26
26
  amount: number;
27
- currency: import("dist/shipengine-api/src").Currency;
27
+ currency: import("@shipengine/js-api").Currency;
28
28
  }, {
29
29
  funds: {
30
30
  amount: number;
31
- currency: import("dist/shipengine-api/src").Currency;
31
+ currency: import("@shipengine/js-api").Currency;
32
32
  };
33
33
  }>;
34
34
  type AddFundsFormSchema = ReturnType<typeof getAddFundsSchema>;
@@ -0,0 +1,42 @@
1
+ import { ReactNode } from "react";
2
+ import { SE } from "@shipengine/js-api";
3
+ import { WalletPayload, WarehousePayload } from "../templates";
4
+ import { AddressValidationPreference } from "../templates/address-preference-select";
5
+ type WarehouseData = Pick<WarehousePayload, "name" | "isDefault">;
6
+ type WalletData = {
7
+ creditCard: WalletPayload["creditCard"];
8
+ };
9
+ type InternalValidateAddressPayload = {
10
+ addresses: {
11
+ originAddress: SE.Address;
12
+ returnAddress?: SE.Address | undefined;
13
+ };
14
+ data?: WarehouseData | WalletData;
15
+ onValid: (payload: {
16
+ originAddress: SE.Address;
17
+ returnAddress?: SE.Address;
18
+ }) => void;
19
+ };
20
+ export type ValidationPreference = {
21
+ originAddress: AddressValidationPreference;
22
+ returnAddress?: AddressValidationPreference;
23
+ };
24
+ export type AddressPreferenceProvideProps = {
25
+ children: ReactNode;
26
+ className?: string;
27
+ formHeader?: React.ReactNode;
28
+ onSubmit: (payload: {
29
+ originAddress: SE.Address;
30
+ passengerData: InternalValidateAddressPayload["data"];
31
+ returnAddress?: SE.Address | undefined;
32
+ }) => Promise<void> | void;
33
+ };
34
+ export type AddressPreferenceValue = {
35
+ data: InternalValidateAddressPayload["data"];
36
+ validateAddress: (payload: InternalValidateAddressPayload) => Promise<void>;
37
+ validationPreference?: ValidationPreference;
38
+ };
39
+ export declare const AddressPreferenceContext: import("react").Context<AddressPreferenceValue | undefined>;
40
+ export declare const AddressPreferenceProvider: (props: AddressPreferenceProvideProps) => import("@emotion/react/jsx-runtime").JSX.Element;
41
+ export declare const useAddressPreference: () => AddressPreferenceValue;
42
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./address-preference-context";
@@ -3,50 +3,50 @@ export declare const autoFundingSchema: z.ZodObject<{
3
3
  isEnabled: z.ZodBoolean;
4
4
  lowBalancePurchaseThreshold: z.ZodObject<z.extendShape<{
5
5
  amount: z.ZodNumber;
6
- currency: z.ZodNativeEnum<typeof import("dist/shipengine-api/src").Currency>;
6
+ currency: z.ZodNativeEnum<typeof import("@shipengine/js-api").Currency>;
7
7
  }, {
8
8
  amount: z.ZodNumber;
9
9
  }>, "strip", z.ZodTypeAny, {
10
10
  amount: number;
11
- currency: import("dist/shipengine-api/src").Currency;
11
+ currency: import("@shipengine/js-api").Currency;
12
12
  }, {
13
13
  amount: number;
14
- currency: import("dist/shipengine-api/src").Currency;
14
+ currency: import("@shipengine/js-api").Currency;
15
15
  }>;
16
16
  maximumPurchasesPerDay: z.ZodNumber;
17
17
  purchaseAmount: z.ZodObject<z.extendShape<{
18
18
  amount: z.ZodNumber;
19
- currency: z.ZodNativeEnum<typeof import("dist/shipengine-api/src").Currency>;
19
+ currency: z.ZodNativeEnum<typeof import("@shipengine/js-api").Currency>;
20
20
  }, {
21
21
  amount: z.ZodNumber;
22
22
  }>, "strip", z.ZodTypeAny, {
23
23
  amount: number;
24
- currency: import("dist/shipengine-api/src").Currency;
24
+ currency: import("@shipengine/js-api").Currency;
25
25
  }, {
26
26
  amount: number;
27
- currency: import("dist/shipengine-api/src").Currency;
27
+ currency: import("@shipengine/js-api").Currency;
28
28
  }>;
29
29
  }, "strip", z.ZodTypeAny, {
30
30
  isEnabled: boolean;
31
31
  lowBalancePurchaseThreshold: {
32
32
  amount: number;
33
- currency: import("dist/shipengine-api/src").Currency;
33
+ currency: import("@shipengine/js-api").Currency;
34
34
  };
35
35
  maximumPurchasesPerDay: number;
36
36
  purchaseAmount: {
37
37
  amount: number;
38
- currency: import("dist/shipengine-api/src").Currency;
38
+ currency: import("@shipengine/js-api").Currency;
39
39
  };
40
40
  }, {
41
41
  isEnabled: boolean;
42
42
  lowBalancePurchaseThreshold: {
43
43
  amount: number;
44
- currency: import("dist/shipengine-api/src").Currency;
44
+ currency: import("@shipengine/js-api").Currency;
45
45
  };
46
46
  maximumPurchasesPerDay: number;
47
47
  purchaseAmount: {
48
48
  amount: number;
49
- currency: import("dist/shipengine-api/src").Currency;
49
+ currency: import("@shipengine/js-api").Currency;
50
50
  };
51
51
  }>;
52
52
  export type AutoFundingFormFields = z.input<typeof autoFundingSchema>;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { DateRange, DateRangeOption } from "../../hooks";
3
+ export type DateRangeComboProps = {
4
+ children?: (renderedComponent: JSX.Element) => React.ReactNode;
5
+ onChange: (nextOption: DateRangeOption | undefined, nextCustomRange: [Date, Date] | undefined) => Promise<void> | void;
6
+ options: DateRangeOption[];
7
+ values: {
8
+ customRange?: DateRange;
9
+ selectedOption?: DateRangeOption;
10
+ };
11
+ };
12
+ export declare const DateRangeCombo: ({ children: renderChildren, onChange, options, values: { customRange, selectedOption }, }: DateRangeComboProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./date-range-combo";
@@ -0,0 +1,8 @@
1
+ import { DateRangeOption } from "../../hooks";
2
+ export type DateRangeSelectProps = {
3
+ fullWidth?: boolean;
4
+ onChange: (nextOption: DateRangeOption) => void | Promise<void>;
5
+ options: DateRangeOption[];
6
+ value?: DateRangeOption;
7
+ };
8
+ export declare const DateRangeSelect: ({ fullWidth, onChange, options, value }: DateRangeSelectProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const getStyles: (fullWidth?: boolean) => Record<"dateRangeSelect", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
@@ -0,0 +1 @@
1
+ export * from './date-range-select';
@@ -1,11 +1,12 @@
1
- export * from "./credit-card-input";
2
1
  export * from "./checkbox-input";
2
+ export * from "./credit-card-input";
3
3
  export * from "./date-picker";
4
4
  export * from "./expiration-input";
5
5
  export * from "./input-group";
6
6
  export * from "./money-input";
7
7
  export * from "./number-input";
8
8
  export * from "./rate-select";
9
+ export * from "./select-auto-complete";
9
10
  export * from "./select";
10
11
  export * from "./submit-button";
11
12
  export * from "./switch";
@@ -1,4 +1,4 @@
1
- import { SE } from "@shipengine/api";
1
+ import { SE } from "@shipengine/js-api";
2
2
  type UseUtils = {
3
3
  getCurrencySymbol: (currency: SE.Currency) => string | undefined;
4
4
  };
@@ -1,5 +1,5 @@
1
1
  import { InputProps } from "@packlink/giger";
2
- import { SE } from "@shipengine/api";
2
+ import { SE } from "@shipengine/js-api";
3
3
  import { ControlledField } from "../create-field-controller";
4
4
  export declare const transform: {
5
5
  in: ({ amount, currency }?: Partial<{
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { SE } from "@shipengine/api";
2
+ import { SE } from "@shipengine/js-api";
3
3
  export interface CostBreakdownProps {
4
4
  confirmationAmount?: SE.Money;
5
5
  insuranceAmount?: SE.Money;
@@ -0,0 +1 @@
1
+ export * from "./select-auto-complete";
@@ -0,0 +1,7 @@
1
+ import { ISelectAutocomplete as NativeSelectAutoCompleteProps } from "@packlink/giger";
2
+ import { ControlledField } from "../create-field-controller";
3
+ type SelectAutoCompleteProps = {
4
+ onChange?: (value?: string) => void;
5
+ };
6
+ export declare const SelectAutoComplete: ControlledField<NativeSelectAutoCompleteProps, SelectAutoCompleteProps>;
7
+ export {};
@@ -0,0 +1,5 @@
1
+ import { WalletTransaction } from "@shipengine/js-api";
2
+ export type HistoryCardProps = {
3
+ transaction: WalletTransaction;
4
+ };
5
+ export declare const HistoryCard: ({ transaction }: HistoryCardProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const styles: (isReload?: boolean) => Record<"amountTypography" | "balanceTypography" | "cardColumn" | "cardContainer" | "carrierRow" | "carrierTypography" | "dateTypography" | "providerTypography" | "tagText", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
@@ -0,0 +1 @@
1
+ export * from "./history-card";
@@ -1 +1 @@
1
- export * from "./history";
1
+ export * from "./history-card";
@@ -1,10 +1,11 @@
1
1
  export * as Templates from "./templates";
2
- export * from "./accordion";
3
2
  export * from "./add-funds-form";
4
3
  export * from "./auto-funding-form";
5
4
  export * from "./button-group";
6
5
  export * from "./carrier-balance";
7
6
  export * from "./cube";
7
+ export * from "./date-range-combo";
8
+ export * from "./date-range-select";
8
9
  export * from "./error-boundary";
9
10
  export * from "./field";
10
11
  export * from "./field-label";
@@ -16,6 +17,7 @@ export * from "./link-action";
16
17
  export * from "./loader";
17
18
  export * from "./manage-funding";
18
19
  export * from "./portal";
20
+ export * from "./section";
19
21
  export * from "./spacer";
20
22
  export * from "./spread";
21
23
  export * from "./story-notes";
@@ -1,6 +1,10 @@
1
1
  /// <reference types="react" />
2
+ import { WithConditionalCSSProp } from "@emotion/react/types/jsx-namespace";
3
+ import { ITypographyProps } from "@packlink/giger";
2
4
  export type InlineLabelProps = {
3
5
  children: React.ReactElement;
6
+ isLabelRight?: boolean;
4
7
  label: string;
8
+ labelProps?: WithConditionalCSSProp<ITypographyProps<"span">>;
5
9
  };
6
- export declare const InlineLabel: ({ children, label }: InlineLabelProps) => import("@emotion/react/jsx-runtime").JSX.Element;
10
+ export declare const InlineLabel: ({ children, label, isLabelRight, labelProps, }: InlineLabelProps) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
@@ -0,0 +1 @@
1
+ export declare const styles: (isLabelRight?: boolean) => Record<"inlineContainer", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
@@ -1,4 +1,4 @@
1
- import { SE } from "@shipengine/api";
1
+ import { SE } from "@shipengine/js-api";
2
2
  export type Item = {
3
3
  detail: string;
4
4
  name: string;
@@ -0,0 +1 @@
1
+ export * from "./label";
@@ -0,0 +1,10 @@
1
+ import { WithConditionalCSSProp } from "@emotion/react/types/jsx-namespace";
2
+ import { ITypographyProps, WithChildrenCommonProps } from "@packlink/giger";
3
+ export type LabelProps = WithChildrenCommonProps<{
4
+ spacing?: number;
5
+ text: string;
6
+ textProps?: WithConditionalCSSProp<ITypographyProps<"span">>;
7
+ variant?: LabelVariant;
8
+ }>;
9
+ export type LabelVariant = "subtitle" | "inline" | "inline-right";
10
+ export declare const Label: ({ spacing, children, text, textProps, variant }: LabelProps) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
@@ -0,0 +1,2 @@
1
+ import { LabelProps } from "./label";
2
+ export declare const styles: (variant?: LabelProps["variant"], spacing?: number) => Record<"labelContainer", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
@@ -1 +1,3 @@
1
1
  export * from "./label-layout";
2
+ export * from "./label-layout-settings";
3
+ export * from "./label-layout-purchase";
@@ -1,4 +1,5 @@
1
- export type LabelLayoutSettingsProps = {
2
- updateLabelLayout: (newLabelLayout: string) => void;
1
+ import { SE } from "@shipengine/js-api";
2
+ export type LabelLayoutPurchaseProps = {
3
+ onChange: (layout: SE.LabelLayout) => void;
3
4
  };
4
- export declare const LabelLayoutPurchase: ({ updateLabelLayout }: LabelLayoutSettingsProps) => import("@emotion/react/jsx-runtime").JSX.Element;
5
+ export declare const LabelLayoutPurchase: ({ onChange }: LabelLayoutPurchaseProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,4 +1,5 @@
1
+ import { SE } from "@shipengine/js-api";
1
2
  export type LabelLayoutSettingsProps = {
2
- updateLabelLayout: (newLabelLayout: string) => void;
3
+ onChange: (layout: SE.LabelLayout) => void;
3
4
  };
4
- export declare const LabelLayoutSettings: ({ updateLabelLayout }: LabelLayoutSettingsProps) => import("@emotion/react/jsx-runtime").JSX.Element;
5
+ export declare const LabelLayoutSettings: ({ onChange }: LabelLayoutSettingsProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1 +1 @@
1
- export declare const styles: Record<"subtitle" | "letter" | "button" | "buttonContainer" | "headingContainer" | "icon" | "letterInner" | "letterLabel" | "selectedLetter" | "selectedThermal" | "thermal" | "thermalIcon" | "thermalInner" | "thermalLabel", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
1
+ export declare const styles: Record<"button" | "icon" | "letter" | "buttonContainer" | "letterInner" | "letterLabel" | "selectedLetter" | "selectedThermal" | "thermal" | "thermalIcon" | "thermalInner" | "thermalLabel", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
@@ -0,0 +1 @@
1
+ export * from "./section";
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import { WithChildrenCommonProps } from "@packlink/giger";
3
+ export type SectionProps = WithChildrenCommonProps<{
4
+ bold?: boolean;
5
+ /** Element to render at the right part of the summary */
6
+ rightContent?: JSX.Element;
7
+ /** Title to show */
8
+ title?: string;
9
+ }>;
10
+ export declare const Section: ({ bold, title, children, rightContent, ...rest }: SectionProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const styles: Record<"icon" | "rightContentWrapper" | "section" | "summary" | "summaryWrapper", import("@emotion/serialize").Interpolation<import("@packlink/giger-theme/dist/lib/Theme").Theme>>;
@@ -4,7 +4,7 @@ export declare const addCarrierSchema: z.ZodObject<{
4
4
  addressLine1: z.ZodString;
5
5
  addressLine2: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
6
6
  cityLocality: z.ZodString;
7
- companyName: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
7
+ companyName: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>, z.ZodLiteral<"">]>, string | undefined, string | null | undefined>;
8
8
  countryCode: z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BR", "IO", "VG", "BN", "BG", "BF", "BI", "CA", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FM", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "CI", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "KP", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "VI", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "WF", "EH", "YE", "ZM", "ZW"]>;
9
9
  name: z.ZodEffects<z.ZodString, string, string>;
10
10
  phone: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string, string | null | undefined>;
@@ -1,4 +1,4 @@
1
- import { CodedError } from "@shipengine/api";
1
+ import { CodedError } from "@shipengine/js-api";
2
2
  import { CarrierTerms } from "../../../types";
3
3
  import { AddCarrierFormPayload } from "./add-carrier-form-schema";
4
4
  export type AddCarrierFormProps = {
@@ -1,4 +1,4 @@
1
- import { SE } from "@shipengine/api";
1
+ import { SE } from "@shipengine/js-api";
2
2
  type AddressDisplayProps = {
3
3
  address: SE.Address;
4
4
  decoratorText?: string;
@@ -3,7 +3,7 @@ export declare const addressFormSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z
3
3
  addressLine1: z.ZodString;
4
4
  addressLine2: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
5
5
  cityLocality: z.ZodString;
6
- companyName: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
6
+ companyName: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>, z.ZodLiteral<"">]>, string | undefined, string | null | undefined>;
7
7
  countryCode: z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BR", "IO", "VG", "BN", "BG", "BF", "BI", "CA", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FM", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "CI", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "KP", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "VI", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "WF", "EH", "YE", "ZM", "ZW"]>;
8
8
  name: z.ZodEffects<z.ZodString, string, string>;
9
9
  phone: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string, string | null | undefined>;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { SE } from "@shipengine/api";
2
+ import { SE } from "@shipengine/js-api";
3
3
  import { AddressParserPayload } from "../address-parser";
4
4
  export type AddressFormProps<T = undefined> = {
5
5
  address?: SE.Address;
@@ -1,11 +1,12 @@
1
1
  import { z } from "zod";
2
2
  export declare const addressLine1Schema: z.ZodString;
3
3
  export declare const addressLine2Schema: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
4
+ export declare const companyNameSchema: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>, z.ZodLiteral<"">]>, string | undefined, string | null | undefined>;
4
5
  export declare const addressSchema: z.ZodObject<{
5
6
  addressLine1: z.ZodString;
6
7
  addressLine2: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
7
8
  cityLocality: z.ZodString;
8
- companyName: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
9
+ companyName: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>, z.ZodLiteral<"">]>, string | undefined, string | null | undefined>;
9
10
  countryCode: z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BR", "IO", "VG", "BN", "BG", "BF", "BI", "CA", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FM", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "CI", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "KP", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "VI", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "WF", "EH", "YE", "ZM", "ZW"]>;
10
11
  name: z.ZodEffects<z.ZodString, string, string>;
11
12
  phone: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string, string | null | undefined>;
@@ -1,4 +1,4 @@
1
- import { SE } from "@shipengine/api";
1
+ import { SE } from "@shipengine/js-api";
2
2
  export type AddressPreference = SE.AddressValidation & {
3
3
  alternative?: SE.Address;
4
4
  alternativeSource: "originalAddress" | "matchedAddress";
@@ -0,0 +1,24 @@
1
+ import { SE } from "@shipengine/js-api";
2
+ export type AddressSuggested = {
3
+ validation: SE.AddressValidation;
4
+ validationType: "SUGGESTED";
5
+ };
6
+ export type AddressError = {
7
+ validation: SE.AddressValidation;
8
+ validationType: "ERROR";
9
+ };
10
+ export type AddressExactOrSoft = {
11
+ address: SE.Address;
12
+ validationType: "EXACT" | "SOFT";
13
+ };
14
+ export type AddressValidationPreference = AddressSuggested | AddressError | AddressExactOrSoft;
15
+ export type AddressPreferenceSelectProps = {
16
+ onCancel: () => void;
17
+ onSubmit: (payload: {
18
+ originAddress: SE.Address;
19
+ returnAddress?: SE.Address;
20
+ }) => Promise<void> | void;
21
+ originAddress: AddressValidationPreference;
22
+ returnAddress?: AddressValidationPreference;
23
+ };
24
+ export declare const AddressPreferenceSelect: ({ onCancel, onSubmit, originAddress, returnAddress, }: AddressPreferenceSelectProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./address-preference-select";
@@ -4,7 +4,7 @@ export declare const getCarrierRecoverySchema: (requiresAddress?: boolean) => z.
4
4
  addressLine1: z.ZodString;
5
5
  addressLine2: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
6
6
  cityLocality: z.ZodString;
7
- companyName: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
7
+ companyName: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>, z.ZodLiteral<"">]>, string | undefined, string | null | undefined>;
8
8
  countryCode: z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BR", "IO", "VG", "BN", "BG", "BF", "BI", "CA", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FM", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "CI", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "KP", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "VI", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "WF", "EH", "YE", "ZM", "ZW"]>;
9
9
  name: z.ZodEffects<z.ZodString, string, string>;
10
10
  phone: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string, string | null | undefined>;
@@ -106,7 +106,7 @@ export declare const getCarrierRecoverySchema: (requiresAddress?: boolean) => z.
106
106
  addressLine1: z.ZodString;
107
107
  addressLine2: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
108
108
  cityLocality: z.ZodString;
109
- companyName: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
109
+ companyName: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>, z.ZodLiteral<"">]>, string | undefined, string | null | undefined>;
110
110
  countryCode: z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BR", "IO", "VG", "BN", "BG", "BF", "BI", "CA", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FM", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "CI", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "KP", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "VI", "UM", "US", "UY", "UZ", "VU", "VE", "VN", "WF", "EH", "YE", "ZM", "ZW"]>;
111
111
  name: z.ZodEffects<z.ZodString, string, string>;
112
112
  phone: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string, string | null | undefined>;
@@ -1,4 +1,4 @@
1
- import { SE } from "@shipengine/api";
1
+ import { SE } from "@shipengine/js-api";
2
2
  import { CarrierRecoveryFormPayload } from "./carrier-recovery-form-schema";
3
3
  export type CarrierRecoveryFormProps = {
4
4
  address?: SE.Address;
@@ -1,4 +1,4 @@
1
- import { CarrierConnection } from "@shipengine/api";
1
+ import { CarrierConnection } from "@shipengine/js-api";
2
2
  export type CarrierTermsProps = {
3
3
  carrierCodes: CarrierConnection["carrierCode"][];
4
4
  onSubmit: (agreement: boolean) => void;