@shipengine/js-api 4.18.4 → 4.18.5
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/types.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
export type AddonTypes = "ss_api_analytics";
|
|
2
2
|
export type Addon = {
|
|
3
|
+
/** Addon code, unique reference for it */
|
|
3
4
|
code: AddonTypes;
|
|
5
|
+
/** Date when the deactivation will take place, will be undefined while the user does not wish to deactivate it */
|
|
6
|
+
deactivationDate?: string;
|
|
7
|
+
/** Flag that indicates if the addon is active for the current Seller */
|
|
4
8
|
isActive: boolean;
|
|
9
|
+
/** Flag that indicates if the addon is available to be activated */
|
|
5
10
|
isAvailableToConnect: boolean;
|
|
11
|
+
/** Flag that indicates if the Addon, for the current seller, is in trial state */
|
|
12
|
+
isTrial: boolean;
|
|
13
|
+
/** Addon name */
|
|
6
14
|
name: string;
|
|
15
|
+
/** Number of days remaining for the user to enjoy the trial */
|
|
16
|
+
trialDays: number;
|
|
7
17
|
};
|