@omnicross/contracts 0.1.0 → 0.1.1

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.
@@ -118,7 +118,11 @@ type SubscriptionAccountSanitized = {
118
118
  id: string;
119
119
  label?: string;
120
120
  status: TokenStatus;
121
+ authMethod?: string;
122
+ subscriptionLevel?: string;
121
123
  expiresAt?: string;
124
+ lastRefreshedAt?: string;
125
+ isSetupToken?: boolean;
122
126
  hasAccessToken: boolean;
123
127
  isActive: boolean;
124
128
  };
@@ -118,7 +118,11 @@ type SubscriptionAccountSanitized = {
118
118
  id: string;
119
119
  label?: string;
120
120
  status: TokenStatus;
121
+ authMethod?: string;
122
+ subscriptionLevel?: string;
121
123
  expiresAt?: string;
124
+ lastRefreshedAt?: string;
125
+ isSetupToken?: boolean;
122
126
  hasAccessToken: boolean;
123
127
  isActive: boolean;
124
128
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnicross/contracts",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Dependency-light, host-agnostic contract types + runtime-value helpers shared by the @omnicross/* packages.",
5
5
  "license": "MIT",
6
6
  "author": "Sayo (https://github.com/Dumoedss)",