authtara-sdk 1.1.12 → 1.1.13
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/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -160,6 +160,13 @@ interface EntitlementResult {
|
|
|
160
160
|
status: string;
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
|
+
/** Feature-specific limits (jika featureKey diberikan) */
|
|
164
|
+
feature?: {
|
|
165
|
+
key: string;
|
|
166
|
+
type: string;
|
|
167
|
+
limit: number | null;
|
|
168
|
+
unlimited: boolean;
|
|
169
|
+
};
|
|
163
170
|
}
|
|
164
171
|
/**
|
|
165
172
|
* Subscription data from SDK
|
package/dist/index.d.ts
CHANGED
|
@@ -160,6 +160,13 @@ interface EntitlementResult {
|
|
|
160
160
|
status: string;
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
|
+
/** Feature-specific limits (jika featureKey diberikan) */
|
|
164
|
+
feature?: {
|
|
165
|
+
key: string;
|
|
166
|
+
type: string;
|
|
167
|
+
limit: number | null;
|
|
168
|
+
unlimited: boolean;
|
|
169
|
+
};
|
|
163
170
|
}
|
|
164
171
|
/**
|
|
165
172
|
* Subscription data from SDK
|
package/package.json
CHANGED