@shipengine/js-api 4.16.1 → 4.16.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/account-addons/api.d.ts +3 -1
- package/package.json +1 -1
package/account-addons/api.d.ts
CHANGED
|
@@ -11,5 +11,7 @@ export declare class AccountAddonsAPI {
|
|
|
11
11
|
* The `list` method retrieves a list of all available addons, also includes
|
|
12
12
|
* if its avaiable for the current user
|
|
13
13
|
*/
|
|
14
|
-
list: () => Promise<import("axios").AxiosResponse<
|
|
14
|
+
list: () => Promise<import("axios").AxiosResponse<{
|
|
15
|
+
addons: Addon[];
|
|
16
|
+
}, any>>;
|
|
15
17
|
}
|