@sparkvault/sdk-mobile 5.0.0 → 5.1.0
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/dist/types.d.ts +6 -1
- package/package.json +1 -1
- package/src/types.ts +6 -1
package/dist/types.d.ts
CHANGED
|
@@ -125,9 +125,14 @@ export interface ResendInviteResponse {
|
|
|
125
125
|
status: 'invited';
|
|
126
126
|
message: string;
|
|
127
127
|
}
|
|
128
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* Identity attempts usage. `attempts_cap` is the EFFECTIVE monthly allowance:
|
|
130
|
+
* the purchased tier, or the trial allowance while a trial is live.
|
|
131
|
+
* `attempts_cap_base` is what the account actually purchased (0 on a trial).
|
|
132
|
+
*/
|
|
129
133
|
export interface SubscriptionIdentityStatus {
|
|
130
134
|
attempts_cap: number | null;
|
|
135
|
+
attempts_cap_base: number;
|
|
131
136
|
attempts_used: number;
|
|
132
137
|
soft_cap: number | null;
|
|
133
138
|
state: PoolState;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -146,9 +146,14 @@ export interface ResendInviteResponse {
|
|
|
146
146
|
message: string;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* Identity attempts usage. `attempts_cap` is the EFFECTIVE monthly allowance:
|
|
151
|
+
* the purchased tier, or the trial allowance while a trial is live.
|
|
152
|
+
* `attempts_cap_base` is what the account actually purchased (0 on a trial).
|
|
153
|
+
*/
|
|
150
154
|
export interface SubscriptionIdentityStatus {
|
|
151
155
|
attempts_cap: number | null;
|
|
156
|
+
attempts_cap_base: number;
|
|
152
157
|
attempts_used: number;
|
|
153
158
|
soft_cap: number | null;
|
|
154
159
|
state: PoolState;
|