glitch-javascript-sdk 3.9.7 → 3.9.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glitch-javascript-sdk",
3
- "version": "3.9.7",
3
+ "version": "3.9.8",
4
4
  "description": "Javascript SDK for Glitch",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -142,8 +142,6 @@ export interface HostingMarketplaceSubscription {
142
142
  export interface HostingAwsMarketplaceSubscription {
143
143
  id: string;
144
144
  customer_aws_account_id?: string | null;
145
- license_arn: string;
146
- product_code: string;
147
145
  plan_dimension?: string | null;
148
146
  plan_key?: Exclude<HostingPlanKey, 'free'> | null;
149
147
  status: 'PendingRegistration' | 'PendingEntitlement' | 'Subscribed' | 'Unsubscribed';