@imposium-hub/components 1.33.2 → 1.33.4
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/Util.ts +1 -1
- package/dist/components.js +2 -2
- package/dist/components.js.map +1 -1
- package/package.json +1 -1
- package/services/API.ts +2 -2
package/package.json
CHANGED
package/services/API.ts
CHANGED
|
@@ -1104,10 +1104,10 @@ export default class API {
|
|
|
1104
1104
|
});
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
|
-
public getRedirectToRenew = (orgId : string) : Promise<any> => {
|
|
1107
|
+
public getRedirectToRenew = (orgId : string, tier : number) : Promise<any> => {
|
|
1108
1108
|
|
|
1109
1109
|
return this.doRequest({
|
|
1110
|
-
url: `/account/${orgId}/renew`,
|
|
1110
|
+
url: `/account/${orgId}/renew?tier=${tier}`,
|
|
1111
1111
|
method: 'GET'
|
|
1112
1112
|
});
|
|
1113
1113
|
}
|