@shipengine/react-api 3.8.2 → 3.8.3

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.
@@ -1,5 +1,6 @@
1
1
  import { SE } from "@shipengine/js-api";
2
2
  /**
3
+ * @internal
3
4
  * @category ShipEngine API Hooks
4
5
  * */
5
6
  export declare const useCreateFundingSource: () => import("@tanstack/react-query").UseMutationResult<SE.FundingSourceCreateResponse, SE.CodedError[], SE.CreateFundingSource, unknown>;
@@ -4,6 +4,7 @@ type AddFundsData = {
4
4
  funds: SE.Money;
5
5
  };
6
6
  /**
7
+ * @internal
7
8
  * @category ShipEngine API Hooks
8
9
  *
9
10
  * @see [ShipEngine API Reference](https://auctane.atlassian.net/wiki/spaces/~6272e3473d0b58006947a648/pages/3628370266/ShipEngine+Funding+Sources+API#PUT-v1/funding_sources/%7Bfunding_source_id%7D/add_funds)
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * @internal
2
3
  * @category ShipEngine API Hooks
3
4
  */
4
5
  export declare const useGetFundingSourceById: (fundingSourceId: string) => import("@tanstack/react-query").UseQueryResult<import("@shipengine/js-api").FundingSource, import("@shipengine/js-api").CodedError[]>;
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * @internal
2
3
  * @category ShipEngine API Hooks
3
4
  */
4
5
  export declare const useGetFundingSourceMetadata: () => import("@tanstack/react-query").UseQueryResult<import("@shipengine/js-api").MetadataResponse, import("@shipengine/js-api").CodedError[]>;
@@ -3,6 +3,7 @@ type FundingSourceTransactionsParams = {
3
3
  category?: string;
4
4
  } & PageableQuery & CreationRangeQuery & SortableQuery<"amount" | "category">;
5
5
  /**
6
+ * @internal
6
7
  * @category ShipEngine API Hooks
7
8
  */
8
9
  export declare const useGetFundingSourceTransactions: (fundingSourceId: string, params?: FundingSourceTransactionsParams) => import("@tanstack/react-query").UseQueryResult<import("@shipengine/js-api").FundingSourceTransactionsResponse, import("@shipengine/js-api").CodedError[]>;
@@ -1,6 +1,7 @@
1
1
  import { InsuranceFundingSourceAcceptedTermsResponse } from "@shipengine/js-api";
2
2
  import { QueryProps } from "../../utilities";
3
3
  /**
4
+ * @internal
4
5
  * @category ShipEngine API Hooks
5
6
  */
6
7
  export declare const useGetInsuranceFundingSourceAcceptedTerms: (params?: QueryProps<InsuranceFundingSourceAcceptedTermsResponse>) => import("@tanstack/react-query").UseQueryResult<InsuranceFundingSourceAcceptedTermsResponse, import("@shipengine/js-api").CodedError[]>;
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * @internal
2
3
  * @category ShipEngine API Hooks
3
4
  */
4
5
  export declare const useListFundingSources: () => import("@tanstack/react-query").UseQueryResult<import("@shipengine/js-api").FundingSource[], import("@shipengine/js-api").CodedError[]>;
@@ -1,5 +1,6 @@
1
1
  import { SE } from "@shipengine/js-api";
2
2
  /**
3
+ * @internal
3
4
  * @category ShipEngine API Hooks
4
5
  * */
5
6
  export declare const useRegisterCarrier: () => import("@tanstack/react-query").UseMutationResult<SE.CarrierRegistrationResponse, SE.CodedError[], SE.CarrierRegistration, unknown>;
@@ -5,6 +5,7 @@ export type UpdateFundingSourceData = {
5
5
  fundingSourceId: string;
6
6
  };
7
7
  /**
8
+ * @internal
8
9
  * @category ShipEngine API Hooks
9
10
  * */
10
11
  export declare const useUpdateFundingSource: () => import("@tanstack/react-query").UseMutationResult<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/react-api",
3
- "version": "3.8.2",
3
+ "version": "3.8.3",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {