@nitida/sdk 0.21.0 → 0.22.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/expo.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/react.d.ts +2 -2
- package/dist/react.js +0 -2
- package/dist/react.js.map +1 -1
- package/dist/server.d.ts +2 -2
- package/dist/server.js +0 -1
- package/dist/server.js.map +1 -1
- package/dist/web.d.ts +2 -2
- package/dist/web.js +0 -1
- package/dist/web.js.map +1 -1
- package/package.json +1 -1
- package/skills/nitida-sdk/SKILL.md +97 -0
- package/src/index.ts +0 -13
- package/src/react/index.ts +0 -15
- package/src/server/index.ts +0 -12
- package/src/web/index.ts +0 -12
package/src/server/index.ts
CHANGED
|
@@ -119,15 +119,3 @@ export {
|
|
|
119
119
|
type UsageWindow,
|
|
120
120
|
type VariantPreset,
|
|
121
121
|
} from "..";
|
|
122
|
-
|
|
123
|
-
// ---------------------------------------------------------------------------
|
|
124
|
-
// Legacy names (pre-`nitida` rename, 2026-08-16)
|
|
125
|
-
// ---------------------------------------------------------------------------
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* @deprecated Renamed to `Nitida*`. These aliases keep code written against the
|
|
129
|
-
* old `@aquienpz/*` packages compiling unchanged — same class, same instance,
|
|
130
|
-
* just a second name. They are not going away on a schedule, but new code
|
|
131
|
-
* should use the `Nitida*` names.
|
|
132
|
-
*/
|
|
133
|
-
export { NitidaClient as AquienpzClient };
|
package/src/web/index.ts
CHANGED
|
@@ -329,15 +329,3 @@ export async function compressImages(
|
|
|
329
329
|
}
|
|
330
330
|
return results;
|
|
331
331
|
}
|
|
332
|
-
|
|
333
|
-
// ---------------------------------------------------------------------------
|
|
334
|
-
// Legacy names (pre-`nitida` rename, 2026-08-16)
|
|
335
|
-
// ---------------------------------------------------------------------------
|
|
336
|
-
|
|
337
|
-
/**
|
|
338
|
-
* @deprecated Renamed to `Nitida*`. These aliases keep code written against the
|
|
339
|
-
* old `@aquienpz/*` packages compiling unchanged — same class, same instance,
|
|
340
|
-
* just a second name. They are not going away on a schedule, but new code
|
|
341
|
-
* should use the `Nitida*` names.
|
|
342
|
-
*/
|
|
343
|
-
export { NitidaClient as AquienpzClient };
|