@nodaro/sdk 1.7.0 → 1.7.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.
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1162,6 +1162,9 @@ interface GenerateCharacterInput {
|
|
|
1162
1162
|
baseOutfit?: string;
|
|
1163
1163
|
sourceImageUrl?: string;
|
|
1164
1164
|
provider?: string;
|
|
1165
|
+
/** Originating client app slug ('person', 'studio', …) — diagnostic
|
|
1166
|
+
* attribution only (the platform's app_reports); never affects output. */
|
|
1167
|
+
origin?: string;
|
|
1165
1168
|
/** Auto-attach the result to this character row. */
|
|
1166
1169
|
attachToCharacterId?: string;
|
|
1167
1170
|
seedPrompt?: string;
|
|
@@ -1214,6 +1217,9 @@ interface GenerateAssetInput {
|
|
|
1214
1217
|
/** Real-life reference URLs (cap 5). */
|
|
1215
1218
|
realLifeRefs?: string[];
|
|
1216
1219
|
provider?: string;
|
|
1220
|
+
/** Originating client app slug ('person', 'studio', …) — diagnostic
|
|
1221
|
+
* attribution only (the platform's app_reports); never affects output. */
|
|
1222
|
+
origin?: string;
|
|
1217
1223
|
/** Auto-attach to character row + asset bucket on completion. */
|
|
1218
1224
|
attachToCharacterId?: string;
|
|
1219
1225
|
/** Shared type — auto-includes new buckets (sheets/detail_closeups/outfit_variations); mirrors objects.ts/locations.ts. */
|
package/dist/index.d.ts
CHANGED
|
@@ -1162,6 +1162,9 @@ interface GenerateCharacterInput {
|
|
|
1162
1162
|
baseOutfit?: string;
|
|
1163
1163
|
sourceImageUrl?: string;
|
|
1164
1164
|
provider?: string;
|
|
1165
|
+
/** Originating client app slug ('person', 'studio', …) — diagnostic
|
|
1166
|
+
* attribution only (the platform's app_reports); never affects output. */
|
|
1167
|
+
origin?: string;
|
|
1165
1168
|
/** Auto-attach the result to this character row. */
|
|
1166
1169
|
attachToCharacterId?: string;
|
|
1167
1170
|
seedPrompt?: string;
|
|
@@ -1214,6 +1217,9 @@ interface GenerateAssetInput {
|
|
|
1214
1217
|
/** Real-life reference URLs (cap 5). */
|
|
1215
1218
|
realLifeRefs?: string[];
|
|
1216
1219
|
provider?: string;
|
|
1220
|
+
/** Originating client app slug ('person', 'studio', …) — diagnostic
|
|
1221
|
+
* attribution only (the platform's app_reports); never affects output. */
|
|
1222
|
+
origin?: string;
|
|
1217
1223
|
/** Auto-attach to character row + asset bucket on completion. */
|
|
1218
1224
|
attachToCharacterId?: string;
|
|
1219
1225
|
/** Shared type — auto-includes new buckets (sheets/detail_closeups/outfit_variations); mirrors objects.ts/locations.ts. */
|