@nodaro/sdk 1.15.0 → 1.16.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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -4098,7 +4098,10 @@ interface UserBalance {
|
|
|
4098
4098
|
dailySpent: number;
|
|
4099
4099
|
dailyLimit: number | null;
|
|
4100
4100
|
monthlyAllocation: number;
|
|
4101
|
+
/** Stored billing tier. Display should prefer `effectiveTier`. */
|
|
4101
4102
|
tier: string;
|
|
4103
|
+
/** Derived entitlement tier: "payg" when stored-free with purchased credits. */
|
|
4104
|
+
effectiveTier: string;
|
|
4102
4105
|
features: Record<string, unknown>;
|
|
4103
4106
|
periodEnd: string | null;
|
|
4104
4107
|
/** Credits earned for app usage (free tier only — earned by running flows). */
|
package/dist/index.d.ts
CHANGED
|
@@ -4098,7 +4098,10 @@ interface UserBalance {
|
|
|
4098
4098
|
dailySpent: number;
|
|
4099
4099
|
dailyLimit: number | null;
|
|
4100
4100
|
monthlyAllocation: number;
|
|
4101
|
+
/** Stored billing tier. Display should prefer `effectiveTier`. */
|
|
4101
4102
|
tier: string;
|
|
4103
|
+
/** Derived entitlement tier: "payg" when stored-free with purchased credits. */
|
|
4104
|
+
effectiveTier: string;
|
|
4102
4105
|
features: Record<string, unknown>;
|
|
4103
4106
|
periodEnd: string | null;
|
|
4104
4107
|
/** Credits earned for app usage (free tier only — earned by running flows). */
|
package/dist/index.js
CHANGED
|
@@ -2194,7 +2194,7 @@ var TutorialsResource = class {
|
|
|
2194
2194
|
};
|
|
2195
2195
|
|
|
2196
2196
|
// src/client.ts
|
|
2197
|
-
var SDK_VERSION = "1.
|
|
2197
|
+
var SDK_VERSION = "1.16.0" ;
|
|
2198
2198
|
var CLIENT_HEADER = "X-Nodaro-Client";
|
|
2199
2199
|
var isBrowser = () => typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
2200
2200
|
var NodaroClient = class {
|