@juhuu/sdk-ts 1.2.248 → 1.2.249
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 +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -295,6 +295,7 @@ declare namespace Layout {
|
|
|
295
295
|
icon: string;
|
|
296
296
|
title: LocaleString;
|
|
297
297
|
buttonName: string;
|
|
298
|
+
flowId: string | null | undefined;
|
|
298
299
|
};
|
|
299
300
|
export namespace Text {
|
|
300
301
|
interface TextBlock extends Block {
|
|
@@ -321,6 +322,7 @@ declare namespace Layout {
|
|
|
321
322
|
interface General extends Block {
|
|
322
323
|
text: LocaleString;
|
|
323
324
|
buttonName: string;
|
|
325
|
+
flowId: string | null | undefined;
|
|
324
326
|
}
|
|
325
327
|
interface Small extends General {
|
|
326
328
|
type: "button.small";
|
|
@@ -358,6 +360,7 @@ declare namespace Layout {
|
|
|
358
360
|
type: "card";
|
|
359
361
|
elementArray: Array<CardElement>;
|
|
360
362
|
buttonName: string | null;
|
|
363
|
+
flowId: string | null | undefined;
|
|
361
364
|
}
|
|
362
365
|
export type CardElement = {
|
|
363
366
|
type: "text.plain";
|
|
@@ -365,9 +368,7 @@ declare namespace Layout {
|
|
|
365
368
|
};
|
|
366
369
|
export interface Toggle extends FormElementBlock {
|
|
367
370
|
type: "toggle";
|
|
368
|
-
|
|
369
|
-
offButtonName: string;
|
|
370
|
-
defaultValueParameterName: string;
|
|
371
|
+
parameterId: string | null;
|
|
371
372
|
}
|
|
372
373
|
export { };
|
|
373
374
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ declare namespace Layout {
|
|
|
295
295
|
icon: string;
|
|
296
296
|
title: LocaleString;
|
|
297
297
|
buttonName: string;
|
|
298
|
+
flowId: string | null | undefined;
|
|
298
299
|
};
|
|
299
300
|
export namespace Text {
|
|
300
301
|
interface TextBlock extends Block {
|
|
@@ -321,6 +322,7 @@ declare namespace Layout {
|
|
|
321
322
|
interface General extends Block {
|
|
322
323
|
text: LocaleString;
|
|
323
324
|
buttonName: string;
|
|
325
|
+
flowId: string | null | undefined;
|
|
324
326
|
}
|
|
325
327
|
interface Small extends General {
|
|
326
328
|
type: "button.small";
|
|
@@ -358,6 +360,7 @@ declare namespace Layout {
|
|
|
358
360
|
type: "card";
|
|
359
361
|
elementArray: Array<CardElement>;
|
|
360
362
|
buttonName: string | null;
|
|
363
|
+
flowId: string | null | undefined;
|
|
361
364
|
}
|
|
362
365
|
export type CardElement = {
|
|
363
366
|
type: "text.plain";
|
|
@@ -365,9 +368,7 @@ declare namespace Layout {
|
|
|
365
368
|
};
|
|
366
369
|
export interface Toggle extends FormElementBlock {
|
|
367
370
|
type: "toggle";
|
|
368
|
-
|
|
369
|
-
offButtonName: string;
|
|
370
|
-
defaultValueParameterName: string;
|
|
371
|
+
parameterId: string | null;
|
|
371
372
|
}
|
|
372
373
|
export { };
|
|
373
374
|
}
|