@ait-co/devtools 0.1.94 → 0.1.96

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.
@@ -10141,6 +10141,23 @@ interface AitDevtoolsOptions {
10141
10141
  * 자동으로 읽는 것은 TS 모듈 로더가 필요해 보류 — 명시 옵션으로 신뢰성 확보, #580.)
10142
10142
  */
10143
10143
  webViewType?: 'partner' | 'game';
10144
+ /**
10145
+ * 미니앱의 `granite.config.ts` `navigationBar.transparentBackground` 값
10146
+ * (SDK `@apps-in-toss/plugins@2.8.0` 신규 필드, #587). `true`이면 env-2 launcher
10147
+ * deep-link에 `&navBarTransparent=1`을 주입해 launcher partner bar가 투명 배경으로
10148
+ * 렌더된다. granite.config를 직접 읽지 않는다(version-agnostic, #580 원칙) —
10149
+ * 소비자 vite.config가 `graniteConfig.navigationBar?.transparentBackground`를
10150
+ * import해 이 옵션으로 넘긴다. 미지정 시 주입 안 함(URL 청정, back-compat).
10151
+ */
10152
+ navBarTransparent?: boolean;
10153
+ /**
10154
+ * 미니앱의 `granite.config.ts` `navigationBar.theme` 값
10155
+ * (SDK `@apps-in-toss/plugins@2.8.0` 신규 필드, #587). `'light'` 또는 `'dark'`이면
10156
+ * env-2 launcher deep-link에 `&navBarTheme=<v>`를 주입해 launcher partner bar가
10157
+ * 해당 테마 글자/아이콘 색으로 렌더된다. granite.config를 직접 읽지 않는다
10158
+ * (version-agnostic, #580 원칙). 미지정 시 주입 안 함(URL 청정, back-compat).
10159
+ */
10160
+ navBarTheme?: 'light' | 'dark';
10144
10161
  /**
10145
10162
  * Vite dev 서버를 Cloudflare quick tunnel(`*.trycloudflare.com`, 계정 불필요)로
10146
10163
  * 외부 노출해 실제 폰에서 미리보기. **Vite dev 모드 전용** — production은
@@ -10185,7 +10202,7 @@ declare function resolveTunnelOption(explicit: AitDevtoolsOptions['tunnel'], env
10185
10202
  declare const aitDevtoolsPlugin: _$unplugin.UnpluginInstance<AitDevtoolsOptions | undefined, boolean>;
10186
10203
  declare const vite: (options?: AitDevtoolsOptions | undefined) => Plugin<any> | Plugin<any>[];
10187
10204
  declare const webpack: (options?: AitDevtoolsOptions | undefined) => WebpackPluginInstance;
10188
- declare const rollup: (options?: AitDevtoolsOptions | undefined) => any;
10205
+ declare const rollup: (options?: AitDevtoolsOptions | undefined) => _$unplugin.RollupPlugin<any> | _$unplugin.RollupPlugin<any>[];
10189
10206
  declare const esbuild: (options?: AitDevtoolsOptions | undefined) => _$unplugin.EsbuildPlugin;
10190
10207
  declare const rspack: (options?: AitDevtoolsOptions | undefined) => RspackPluginInstance;
10191
10208
  //#endregion