@supernova-studio/client 0.47.30 → 0.47.31
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 +190 -190
- package/dist/index.d.ts +190 -190
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/documentation/group-v2.ts +1 -1
- package/src/api/dto/elements/documentation/page-v2.ts +1 -2
package/dist/index.d.mts
CHANGED
|
@@ -4899,10 +4899,10 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
4899
4899
|
persistentId: z.ZodString;
|
|
4900
4900
|
title: z.ZodString;
|
|
4901
4901
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
4902
|
-
showSidebar: z.ZodBoolean
|
|
4903
|
-
isPrivate: z.ZodBoolean
|
|
4904
|
-
isHidden: z.ZodBoolean
|
|
4905
|
-
header: z.ZodObject<{
|
|
4902
|
+
showSidebar: z.ZodOptional<z.ZodBoolean>;
|
|
4903
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
4904
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
4905
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
4906
4906
|
description: z.ZodString;
|
|
4907
4907
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
4908
4908
|
foregroundColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5024,12 +5024,12 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5024
5024
|
} | undefined;
|
|
5025
5025
|
} | null | undefined;
|
|
5026
5026
|
minHeight?: number | null | undefined;
|
|
5027
|
-
}
|
|
5027
|
+
}>>;
|
|
5028
5028
|
}, "strip", z.ZodTypeAny, {
|
|
5029
|
-
showSidebar
|
|
5030
|
-
isPrivate
|
|
5031
|
-
isHidden
|
|
5032
|
-
header
|
|
5029
|
+
showSidebar?: boolean | undefined;
|
|
5030
|
+
isPrivate?: boolean | undefined;
|
|
5031
|
+
isHidden?: boolean | undefined;
|
|
5032
|
+
header?: {
|
|
5033
5033
|
description: string;
|
|
5034
5034
|
alignment: "Left" | "Center";
|
|
5035
5035
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -5055,12 +5055,12 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5055
5055
|
} | undefined;
|
|
5056
5056
|
} | null | undefined;
|
|
5057
5057
|
minHeight?: number | null | undefined;
|
|
5058
|
-
};
|
|
5058
|
+
} | undefined;
|
|
5059
5059
|
}, {
|
|
5060
|
-
showSidebar
|
|
5061
|
-
isPrivate
|
|
5062
|
-
isHidden
|
|
5063
|
-
header
|
|
5060
|
+
showSidebar?: boolean | undefined;
|
|
5061
|
+
isPrivate?: boolean | undefined;
|
|
5062
|
+
isHidden?: boolean | undefined;
|
|
5063
|
+
header?: {
|
|
5064
5064
|
description: string;
|
|
5065
5065
|
alignment: "Left" | "Center";
|
|
5066
5066
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -5086,7 +5086,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5086
5086
|
} | undefined;
|
|
5087
5087
|
} | null | undefined;
|
|
5088
5088
|
minHeight?: number | null | undefined;
|
|
5089
|
-
};
|
|
5089
|
+
} | undefined;
|
|
5090
5090
|
}>>;
|
|
5091
5091
|
afterPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5092
5092
|
parentPersistentId: z.ZodString;
|
|
@@ -5095,10 +5095,10 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5095
5095
|
parentPersistentId: string;
|
|
5096
5096
|
title: string;
|
|
5097
5097
|
configuration?: {
|
|
5098
|
-
showSidebar
|
|
5099
|
-
isPrivate
|
|
5100
|
-
isHidden
|
|
5101
|
-
header
|
|
5098
|
+
showSidebar?: boolean | undefined;
|
|
5099
|
+
isPrivate?: boolean | undefined;
|
|
5100
|
+
isHidden?: boolean | undefined;
|
|
5101
|
+
header?: {
|
|
5102
5102
|
description: string;
|
|
5103
5103
|
alignment: "Left" | "Center";
|
|
5104
5104
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -5124,7 +5124,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5124
5124
|
} | undefined;
|
|
5125
5125
|
} | null | undefined;
|
|
5126
5126
|
minHeight?: number | null | undefined;
|
|
5127
|
-
};
|
|
5127
|
+
} | undefined;
|
|
5128
5128
|
} | undefined;
|
|
5129
5129
|
afterPersistentId?: string | null | undefined;
|
|
5130
5130
|
}, {
|
|
@@ -5132,10 +5132,10 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5132
5132
|
parentPersistentId: string;
|
|
5133
5133
|
title: string;
|
|
5134
5134
|
configuration?: {
|
|
5135
|
-
showSidebar
|
|
5136
|
-
isPrivate
|
|
5137
|
-
isHidden
|
|
5138
|
-
header
|
|
5135
|
+
showSidebar?: boolean | undefined;
|
|
5136
|
+
isPrivate?: boolean | undefined;
|
|
5137
|
+
isHidden?: boolean | undefined;
|
|
5138
|
+
header?: {
|
|
5139
5139
|
description: string;
|
|
5140
5140
|
alignment: "Left" | "Center";
|
|
5141
5141
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -5161,7 +5161,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5161
5161
|
} | undefined;
|
|
5162
5162
|
} | null | undefined;
|
|
5163
5163
|
minHeight?: number | null | undefined;
|
|
5164
|
-
};
|
|
5164
|
+
} | undefined;
|
|
5165
5165
|
} | undefined;
|
|
5166
5166
|
afterPersistentId?: string | null | undefined;
|
|
5167
5167
|
}>;
|
|
@@ -5172,10 +5172,10 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5172
5172
|
parentPersistentId: string;
|
|
5173
5173
|
title: string;
|
|
5174
5174
|
configuration?: {
|
|
5175
|
-
showSidebar
|
|
5176
|
-
isPrivate
|
|
5177
|
-
isHidden
|
|
5178
|
-
header
|
|
5175
|
+
showSidebar?: boolean | undefined;
|
|
5176
|
+
isPrivate?: boolean | undefined;
|
|
5177
|
+
isHidden?: boolean | undefined;
|
|
5178
|
+
header?: {
|
|
5179
5179
|
description: string;
|
|
5180
5180
|
alignment: "Left" | "Center";
|
|
5181
5181
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -5201,7 +5201,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5201
5201
|
} | undefined;
|
|
5202
5202
|
} | null | undefined;
|
|
5203
5203
|
minHeight?: number | null | undefined;
|
|
5204
|
-
};
|
|
5204
|
+
} | undefined;
|
|
5205
5205
|
} | undefined;
|
|
5206
5206
|
afterPersistentId?: string | null | undefined;
|
|
5207
5207
|
};
|
|
@@ -5212,10 +5212,10 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5212
5212
|
parentPersistentId: string;
|
|
5213
5213
|
title: string;
|
|
5214
5214
|
configuration?: {
|
|
5215
|
-
showSidebar
|
|
5216
|
-
isPrivate
|
|
5217
|
-
isHidden
|
|
5218
|
-
header
|
|
5215
|
+
showSidebar?: boolean | undefined;
|
|
5216
|
+
isPrivate?: boolean | undefined;
|
|
5217
|
+
isHidden?: boolean | undefined;
|
|
5218
|
+
header?: {
|
|
5219
5219
|
description: string;
|
|
5220
5220
|
alignment: "Left" | "Center";
|
|
5221
5221
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -5241,7 +5241,7 @@ declare const DTODocumentationGroupCreateActionInputV2: z.ZodObject<{
|
|
|
5241
5241
|
} | undefined;
|
|
5242
5242
|
} | null | undefined;
|
|
5243
5243
|
minHeight?: number | null | undefined;
|
|
5244
|
-
};
|
|
5244
|
+
} | undefined;
|
|
5245
5245
|
} | undefined;
|
|
5246
5246
|
afterPersistentId?: string | null | undefined;
|
|
5247
5247
|
};
|
|
@@ -7861,10 +7861,10 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
7861
7861
|
persistentId: z.ZodString;
|
|
7862
7862
|
title: z.ZodString;
|
|
7863
7863
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
7864
|
-
showSidebar: z.ZodBoolean
|
|
7865
|
-
isPrivate: z.ZodBoolean
|
|
7866
|
-
isHidden: z.ZodBoolean
|
|
7867
|
-
header: z.ZodObject<{
|
|
7864
|
+
showSidebar: z.ZodOptional<z.ZodBoolean>;
|
|
7865
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
7866
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
7867
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
7868
7868
|
description: z.ZodString;
|
|
7869
7869
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
7870
7870
|
foregroundColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -7986,12 +7986,12 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
7986
7986
|
} | undefined;
|
|
7987
7987
|
} | null | undefined;
|
|
7988
7988
|
minHeight?: number | null | undefined;
|
|
7989
|
-
}
|
|
7989
|
+
}>>;
|
|
7990
7990
|
}, "strip", z.ZodTypeAny, {
|
|
7991
|
-
showSidebar
|
|
7992
|
-
isPrivate
|
|
7993
|
-
isHidden
|
|
7994
|
-
header
|
|
7991
|
+
showSidebar?: boolean | undefined;
|
|
7992
|
+
isPrivate?: boolean | undefined;
|
|
7993
|
+
isHidden?: boolean | undefined;
|
|
7994
|
+
header?: {
|
|
7995
7995
|
description: string;
|
|
7996
7996
|
alignment: "Left" | "Center";
|
|
7997
7997
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -8017,12 +8017,12 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
8017
8017
|
} | undefined;
|
|
8018
8018
|
} | null | undefined;
|
|
8019
8019
|
minHeight?: number | null | undefined;
|
|
8020
|
-
};
|
|
8020
|
+
} | undefined;
|
|
8021
8021
|
}, {
|
|
8022
|
-
showSidebar
|
|
8023
|
-
isPrivate
|
|
8024
|
-
isHidden
|
|
8025
|
-
header
|
|
8022
|
+
showSidebar?: boolean | undefined;
|
|
8023
|
+
isPrivate?: boolean | undefined;
|
|
8024
|
+
isHidden?: boolean | undefined;
|
|
8025
|
+
header?: {
|
|
8026
8026
|
description: string;
|
|
8027
8027
|
alignment: "Left" | "Center";
|
|
8028
8028
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -8048,7 +8048,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
8048
8048
|
} | undefined;
|
|
8049
8049
|
} | null | undefined;
|
|
8050
8050
|
minHeight?: number | null | undefined;
|
|
8051
|
-
};
|
|
8051
|
+
} | undefined;
|
|
8052
8052
|
}>>;
|
|
8053
8053
|
afterPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8054
8054
|
parentPersistentId: z.ZodString;
|
|
@@ -8057,10 +8057,10 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
8057
8057
|
parentPersistentId: string;
|
|
8058
8058
|
title: string;
|
|
8059
8059
|
configuration?: {
|
|
8060
|
-
showSidebar
|
|
8061
|
-
isPrivate
|
|
8062
|
-
isHidden
|
|
8063
|
-
header
|
|
8060
|
+
showSidebar?: boolean | undefined;
|
|
8061
|
+
isPrivate?: boolean | undefined;
|
|
8062
|
+
isHidden?: boolean | undefined;
|
|
8063
|
+
header?: {
|
|
8064
8064
|
description: string;
|
|
8065
8065
|
alignment: "Left" | "Center";
|
|
8066
8066
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -8086,7 +8086,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
8086
8086
|
} | undefined;
|
|
8087
8087
|
} | null | undefined;
|
|
8088
8088
|
minHeight?: number | null | undefined;
|
|
8089
|
-
};
|
|
8089
|
+
} | undefined;
|
|
8090
8090
|
} | undefined;
|
|
8091
8091
|
afterPersistentId?: string | null | undefined;
|
|
8092
8092
|
}, {
|
|
@@ -8094,10 +8094,10 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
8094
8094
|
parentPersistentId: string;
|
|
8095
8095
|
title: string;
|
|
8096
8096
|
configuration?: {
|
|
8097
|
-
showSidebar
|
|
8098
|
-
isPrivate
|
|
8099
|
-
isHidden
|
|
8100
|
-
header
|
|
8097
|
+
showSidebar?: boolean | undefined;
|
|
8098
|
+
isPrivate?: boolean | undefined;
|
|
8099
|
+
isHidden?: boolean | undefined;
|
|
8100
|
+
header?: {
|
|
8101
8101
|
description: string;
|
|
8102
8102
|
alignment: "Left" | "Center";
|
|
8103
8103
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -8123,7 +8123,7 @@ declare const DTOCreateDocumentationGroupInput: z.ZodObject<{
|
|
|
8123
8123
|
} | undefined;
|
|
8124
8124
|
} | null | undefined;
|
|
8125
8125
|
minHeight?: number | null | undefined;
|
|
8126
|
-
};
|
|
8126
|
+
} | undefined;
|
|
8127
8127
|
} | undefined;
|
|
8128
8128
|
afterPersistentId?: string | null | undefined;
|
|
8129
8129
|
}>;
|
|
@@ -9385,10 +9385,10 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9385
9385
|
persistentId: z.ZodString;
|
|
9386
9386
|
title: z.ZodString;
|
|
9387
9387
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
9388
|
-
showSidebar: z.ZodBoolean
|
|
9389
|
-
isPrivate: z.ZodBoolean
|
|
9390
|
-
isHidden: z.ZodBoolean
|
|
9391
|
-
header: z.ZodObject<{
|
|
9388
|
+
showSidebar: z.ZodOptional<z.ZodBoolean>;
|
|
9389
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
9390
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
9391
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
9392
9392
|
description: z.ZodString;
|
|
9393
9393
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
9394
9394
|
foregroundColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -9510,12 +9510,12 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9510
9510
|
} | undefined;
|
|
9511
9511
|
} | null | undefined;
|
|
9512
9512
|
minHeight?: number | null | undefined;
|
|
9513
|
-
}
|
|
9513
|
+
}>>;
|
|
9514
9514
|
}, "strip", z.ZodTypeAny, {
|
|
9515
|
-
showSidebar
|
|
9516
|
-
isPrivate
|
|
9517
|
-
isHidden
|
|
9518
|
-
header
|
|
9515
|
+
showSidebar?: boolean | undefined;
|
|
9516
|
+
isPrivate?: boolean | undefined;
|
|
9517
|
+
isHidden?: boolean | undefined;
|
|
9518
|
+
header?: {
|
|
9519
9519
|
description: string;
|
|
9520
9520
|
alignment: "Left" | "Center";
|
|
9521
9521
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -9541,12 +9541,12 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9541
9541
|
} | undefined;
|
|
9542
9542
|
} | null | undefined;
|
|
9543
9543
|
minHeight?: number | null | undefined;
|
|
9544
|
-
};
|
|
9544
|
+
} | undefined;
|
|
9545
9545
|
}, {
|
|
9546
|
-
showSidebar
|
|
9547
|
-
isPrivate
|
|
9548
|
-
isHidden
|
|
9549
|
-
header
|
|
9546
|
+
showSidebar?: boolean | undefined;
|
|
9547
|
+
isPrivate?: boolean | undefined;
|
|
9548
|
+
isHidden?: boolean | undefined;
|
|
9549
|
+
header?: {
|
|
9550
9550
|
description: string;
|
|
9551
9551
|
alignment: "Left" | "Center";
|
|
9552
9552
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -9572,7 +9572,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9572
9572
|
} | undefined;
|
|
9573
9573
|
} | null | undefined;
|
|
9574
9574
|
minHeight?: number | null | undefined;
|
|
9575
|
-
};
|
|
9575
|
+
} | undefined;
|
|
9576
9576
|
}>>;
|
|
9577
9577
|
parentPersistentId: z.ZodString;
|
|
9578
9578
|
afterPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -9581,10 +9581,10 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9581
9581
|
parentPersistentId: string;
|
|
9582
9582
|
title: string;
|
|
9583
9583
|
configuration?: {
|
|
9584
|
-
showSidebar
|
|
9585
|
-
isPrivate
|
|
9586
|
-
isHidden
|
|
9587
|
-
header
|
|
9584
|
+
showSidebar?: boolean | undefined;
|
|
9585
|
+
isPrivate?: boolean | undefined;
|
|
9586
|
+
isHidden?: boolean | undefined;
|
|
9587
|
+
header?: {
|
|
9588
9588
|
description: string;
|
|
9589
9589
|
alignment: "Left" | "Center";
|
|
9590
9590
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -9610,7 +9610,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9610
9610
|
} | undefined;
|
|
9611
9611
|
} | null | undefined;
|
|
9612
9612
|
minHeight?: number | null | undefined;
|
|
9613
|
-
};
|
|
9613
|
+
} | undefined;
|
|
9614
9614
|
} | undefined;
|
|
9615
9615
|
afterPersistentId?: string | null | undefined;
|
|
9616
9616
|
}, {
|
|
@@ -9618,10 +9618,10 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9618
9618
|
parentPersistentId: string;
|
|
9619
9619
|
title: string;
|
|
9620
9620
|
configuration?: {
|
|
9621
|
-
showSidebar
|
|
9622
|
-
isPrivate
|
|
9623
|
-
isHidden
|
|
9624
|
-
header
|
|
9621
|
+
showSidebar?: boolean | undefined;
|
|
9622
|
+
isPrivate?: boolean | undefined;
|
|
9623
|
+
isHidden?: boolean | undefined;
|
|
9624
|
+
header?: {
|
|
9625
9625
|
description: string;
|
|
9626
9626
|
alignment: "Left" | "Center";
|
|
9627
9627
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -9647,7 +9647,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9647
9647
|
} | undefined;
|
|
9648
9648
|
} | null | undefined;
|
|
9649
9649
|
minHeight?: number | null | undefined;
|
|
9650
|
-
};
|
|
9650
|
+
} | undefined;
|
|
9651
9651
|
} | undefined;
|
|
9652
9652
|
afterPersistentId?: string | null | undefined;
|
|
9653
9653
|
}>;
|
|
@@ -9658,10 +9658,10 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9658
9658
|
parentPersistentId: string;
|
|
9659
9659
|
title: string;
|
|
9660
9660
|
configuration?: {
|
|
9661
|
-
showSidebar
|
|
9662
|
-
isPrivate
|
|
9663
|
-
isHidden
|
|
9664
|
-
header
|
|
9661
|
+
showSidebar?: boolean | undefined;
|
|
9662
|
+
isPrivate?: boolean | undefined;
|
|
9663
|
+
isHidden?: boolean | undefined;
|
|
9664
|
+
header?: {
|
|
9665
9665
|
description: string;
|
|
9666
9666
|
alignment: "Left" | "Center";
|
|
9667
9667
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -9687,7 +9687,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9687
9687
|
} | undefined;
|
|
9688
9688
|
} | null | undefined;
|
|
9689
9689
|
minHeight?: number | null | undefined;
|
|
9690
|
-
};
|
|
9690
|
+
} | undefined;
|
|
9691
9691
|
} | undefined;
|
|
9692
9692
|
afterPersistentId?: string | null | undefined;
|
|
9693
9693
|
};
|
|
@@ -9698,10 +9698,10 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9698
9698
|
parentPersistentId: string;
|
|
9699
9699
|
title: string;
|
|
9700
9700
|
configuration?: {
|
|
9701
|
-
showSidebar
|
|
9702
|
-
isPrivate
|
|
9703
|
-
isHidden
|
|
9704
|
-
header
|
|
9701
|
+
showSidebar?: boolean | undefined;
|
|
9702
|
+
isPrivate?: boolean | undefined;
|
|
9703
|
+
isHidden?: boolean | undefined;
|
|
9704
|
+
header?: {
|
|
9705
9705
|
description: string;
|
|
9706
9706
|
alignment: "Left" | "Center";
|
|
9707
9707
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -9727,7 +9727,7 @@ declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
|
9727
9727
|
} | undefined;
|
|
9728
9728
|
} | null | undefined;
|
|
9729
9729
|
minHeight?: number | null | undefined;
|
|
9730
|
-
};
|
|
9730
|
+
} | undefined;
|
|
9731
9731
|
} | undefined;
|
|
9732
9732
|
afterPersistentId?: string | null | undefined;
|
|
9733
9733
|
};
|
|
@@ -18062,10 +18062,10 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18062
18062
|
persistentId: z.ZodString;
|
|
18063
18063
|
title: z.ZodString;
|
|
18064
18064
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
18065
|
-
showSidebar: z.ZodBoolean
|
|
18066
|
-
isPrivate: z.ZodBoolean
|
|
18067
|
-
isHidden: z.ZodBoolean
|
|
18068
|
-
header: z.ZodObject<{
|
|
18065
|
+
showSidebar: z.ZodOptional<z.ZodBoolean>;
|
|
18066
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
18067
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
18068
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
18069
18069
|
description: z.ZodString;
|
|
18070
18070
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
18071
18071
|
foregroundColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -18187,12 +18187,12 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18187
18187
|
} | undefined;
|
|
18188
18188
|
} | null | undefined;
|
|
18189
18189
|
minHeight?: number | null | undefined;
|
|
18190
|
-
}
|
|
18190
|
+
}>>;
|
|
18191
18191
|
}, "strip", z.ZodTypeAny, {
|
|
18192
|
-
showSidebar
|
|
18193
|
-
isPrivate
|
|
18194
|
-
isHidden
|
|
18195
|
-
header
|
|
18192
|
+
showSidebar?: boolean | undefined;
|
|
18193
|
+
isPrivate?: boolean | undefined;
|
|
18194
|
+
isHidden?: boolean | undefined;
|
|
18195
|
+
header?: {
|
|
18196
18196
|
description: string;
|
|
18197
18197
|
alignment: "Left" | "Center";
|
|
18198
18198
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -18218,12 +18218,12 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18218
18218
|
} | undefined;
|
|
18219
18219
|
} | null | undefined;
|
|
18220
18220
|
minHeight?: number | null | undefined;
|
|
18221
|
-
};
|
|
18221
|
+
} | undefined;
|
|
18222
18222
|
}, {
|
|
18223
|
-
showSidebar
|
|
18224
|
-
isPrivate
|
|
18225
|
-
isHidden
|
|
18226
|
-
header
|
|
18223
|
+
showSidebar?: boolean | undefined;
|
|
18224
|
+
isPrivate?: boolean | undefined;
|
|
18225
|
+
isHidden?: boolean | undefined;
|
|
18226
|
+
header?: {
|
|
18227
18227
|
description: string;
|
|
18228
18228
|
alignment: "Left" | "Center";
|
|
18229
18229
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -18249,7 +18249,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18249
18249
|
} | undefined;
|
|
18250
18250
|
} | null | undefined;
|
|
18251
18251
|
minHeight?: number | null | undefined;
|
|
18252
|
-
};
|
|
18252
|
+
} | undefined;
|
|
18253
18253
|
}>>;
|
|
18254
18254
|
parentPersistentId: z.ZodString;
|
|
18255
18255
|
afterPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -18258,10 +18258,10 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18258
18258
|
parentPersistentId: string;
|
|
18259
18259
|
title: string;
|
|
18260
18260
|
configuration?: {
|
|
18261
|
-
showSidebar
|
|
18262
|
-
isPrivate
|
|
18263
|
-
isHidden
|
|
18264
|
-
header
|
|
18261
|
+
showSidebar?: boolean | undefined;
|
|
18262
|
+
isPrivate?: boolean | undefined;
|
|
18263
|
+
isHidden?: boolean | undefined;
|
|
18264
|
+
header?: {
|
|
18265
18265
|
description: string;
|
|
18266
18266
|
alignment: "Left" | "Center";
|
|
18267
18267
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -18287,7 +18287,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18287
18287
|
} | undefined;
|
|
18288
18288
|
} | null | undefined;
|
|
18289
18289
|
minHeight?: number | null | undefined;
|
|
18290
|
-
};
|
|
18290
|
+
} | undefined;
|
|
18291
18291
|
} | undefined;
|
|
18292
18292
|
afterPersistentId?: string | null | undefined;
|
|
18293
18293
|
}, {
|
|
@@ -18295,10 +18295,10 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18295
18295
|
parentPersistentId: string;
|
|
18296
18296
|
title: string;
|
|
18297
18297
|
configuration?: {
|
|
18298
|
-
showSidebar
|
|
18299
|
-
isPrivate
|
|
18300
|
-
isHidden
|
|
18301
|
-
header
|
|
18298
|
+
showSidebar?: boolean | undefined;
|
|
18299
|
+
isPrivate?: boolean | undefined;
|
|
18300
|
+
isHidden?: boolean | undefined;
|
|
18301
|
+
header?: {
|
|
18302
18302
|
description: string;
|
|
18303
18303
|
alignment: "Left" | "Center";
|
|
18304
18304
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -18324,7 +18324,7 @@ declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
|
18324
18324
|
} | undefined;
|
|
18325
18325
|
} | null | undefined;
|
|
18326
18326
|
minHeight?: number | null | undefined;
|
|
18327
|
-
};
|
|
18327
|
+
} | undefined;
|
|
18328
18328
|
} | undefined;
|
|
18329
18329
|
afterPersistentId?: string | null | undefined;
|
|
18330
18330
|
}>;
|
|
@@ -20837,10 +20837,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
20837
20837
|
persistentId: z.ZodString;
|
|
20838
20838
|
title: z.ZodString;
|
|
20839
20839
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
20840
|
-
showSidebar: z.ZodBoolean
|
|
20841
|
-
isPrivate: z.ZodBoolean
|
|
20842
|
-
isHidden: z.ZodBoolean
|
|
20843
|
-
header: z.ZodObject<{
|
|
20840
|
+
showSidebar: z.ZodOptional<z.ZodBoolean>;
|
|
20841
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
20842
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
20843
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
20844
20844
|
description: z.ZodString;
|
|
20845
20845
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
20846
20846
|
foregroundColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -20962,12 +20962,12 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
20962
20962
|
} | undefined;
|
|
20963
20963
|
} | null | undefined;
|
|
20964
20964
|
minHeight?: number | null | undefined;
|
|
20965
|
-
}
|
|
20965
|
+
}>>;
|
|
20966
20966
|
}, "strip", z.ZodTypeAny, {
|
|
20967
|
-
showSidebar
|
|
20968
|
-
isPrivate
|
|
20969
|
-
isHidden
|
|
20970
|
-
header
|
|
20967
|
+
showSidebar?: boolean | undefined;
|
|
20968
|
+
isPrivate?: boolean | undefined;
|
|
20969
|
+
isHidden?: boolean | undefined;
|
|
20970
|
+
header?: {
|
|
20971
20971
|
description: string;
|
|
20972
20972
|
alignment: "Left" | "Center";
|
|
20973
20973
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -20993,12 +20993,12 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
20993
20993
|
} | undefined;
|
|
20994
20994
|
} | null | undefined;
|
|
20995
20995
|
minHeight?: number | null | undefined;
|
|
20996
|
-
};
|
|
20996
|
+
} | undefined;
|
|
20997
20997
|
}, {
|
|
20998
|
-
showSidebar
|
|
20999
|
-
isPrivate
|
|
21000
|
-
isHidden
|
|
21001
|
-
header
|
|
20998
|
+
showSidebar?: boolean | undefined;
|
|
20999
|
+
isPrivate?: boolean | undefined;
|
|
21000
|
+
isHidden?: boolean | undefined;
|
|
21001
|
+
header?: {
|
|
21002
21002
|
description: string;
|
|
21003
21003
|
alignment: "Left" | "Center";
|
|
21004
21004
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21024,7 +21024,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21024
21024
|
} | undefined;
|
|
21025
21025
|
} | null | undefined;
|
|
21026
21026
|
minHeight?: number | null | undefined;
|
|
21027
|
-
};
|
|
21027
|
+
} | undefined;
|
|
21028
21028
|
}>>;
|
|
21029
21029
|
parentPersistentId: z.ZodString;
|
|
21030
21030
|
afterPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -21033,10 +21033,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21033
21033
|
parentPersistentId: string;
|
|
21034
21034
|
title: string;
|
|
21035
21035
|
configuration?: {
|
|
21036
|
-
showSidebar
|
|
21037
|
-
isPrivate
|
|
21038
|
-
isHidden
|
|
21039
|
-
header
|
|
21036
|
+
showSidebar?: boolean | undefined;
|
|
21037
|
+
isPrivate?: boolean | undefined;
|
|
21038
|
+
isHidden?: boolean | undefined;
|
|
21039
|
+
header?: {
|
|
21040
21040
|
description: string;
|
|
21041
21041
|
alignment: "Left" | "Center";
|
|
21042
21042
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21062,7 +21062,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21062
21062
|
} | undefined;
|
|
21063
21063
|
} | null | undefined;
|
|
21064
21064
|
minHeight?: number | null | undefined;
|
|
21065
|
-
};
|
|
21065
|
+
} | undefined;
|
|
21066
21066
|
} | undefined;
|
|
21067
21067
|
afterPersistentId?: string | null | undefined;
|
|
21068
21068
|
}, {
|
|
@@ -21070,10 +21070,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21070
21070
|
parentPersistentId: string;
|
|
21071
21071
|
title: string;
|
|
21072
21072
|
configuration?: {
|
|
21073
|
-
showSidebar
|
|
21074
|
-
isPrivate
|
|
21075
|
-
isHidden
|
|
21076
|
-
header
|
|
21073
|
+
showSidebar?: boolean | undefined;
|
|
21074
|
+
isPrivate?: boolean | undefined;
|
|
21075
|
+
isHidden?: boolean | undefined;
|
|
21076
|
+
header?: {
|
|
21077
21077
|
description: string;
|
|
21078
21078
|
alignment: "Left" | "Center";
|
|
21079
21079
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21099,7 +21099,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21099
21099
|
} | undefined;
|
|
21100
21100
|
} | null | undefined;
|
|
21101
21101
|
minHeight?: number | null | undefined;
|
|
21102
|
-
};
|
|
21102
|
+
} | undefined;
|
|
21103
21103
|
} | undefined;
|
|
21104
21104
|
afterPersistentId?: string | null | undefined;
|
|
21105
21105
|
}>;
|
|
@@ -21110,10 +21110,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21110
21110
|
parentPersistentId: string;
|
|
21111
21111
|
title: string;
|
|
21112
21112
|
configuration?: {
|
|
21113
|
-
showSidebar
|
|
21114
|
-
isPrivate
|
|
21115
|
-
isHidden
|
|
21116
|
-
header
|
|
21113
|
+
showSidebar?: boolean | undefined;
|
|
21114
|
+
isPrivate?: boolean | undefined;
|
|
21115
|
+
isHidden?: boolean | undefined;
|
|
21116
|
+
header?: {
|
|
21117
21117
|
description: string;
|
|
21118
21118
|
alignment: "Left" | "Center";
|
|
21119
21119
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21139,7 +21139,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21139
21139
|
} | undefined;
|
|
21140
21140
|
} | null | undefined;
|
|
21141
21141
|
minHeight?: number | null | undefined;
|
|
21142
|
-
};
|
|
21142
|
+
} | undefined;
|
|
21143
21143
|
} | undefined;
|
|
21144
21144
|
afterPersistentId?: string | null | undefined;
|
|
21145
21145
|
};
|
|
@@ -21150,10 +21150,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21150
21150
|
parentPersistentId: string;
|
|
21151
21151
|
title: string;
|
|
21152
21152
|
configuration?: {
|
|
21153
|
-
showSidebar
|
|
21154
|
-
isPrivate
|
|
21155
|
-
isHidden
|
|
21156
|
-
header
|
|
21153
|
+
showSidebar?: boolean | undefined;
|
|
21154
|
+
isPrivate?: boolean | undefined;
|
|
21155
|
+
isHidden?: boolean | undefined;
|
|
21156
|
+
header?: {
|
|
21157
21157
|
description: string;
|
|
21158
21158
|
alignment: "Left" | "Center";
|
|
21159
21159
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21179,7 +21179,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21179
21179
|
} | undefined;
|
|
21180
21180
|
} | null | undefined;
|
|
21181
21181
|
minHeight?: number | null | undefined;
|
|
21182
|
-
};
|
|
21182
|
+
} | undefined;
|
|
21183
21183
|
} | undefined;
|
|
21184
21184
|
afterPersistentId?: string | null | undefined;
|
|
21185
21185
|
};
|
|
@@ -21613,10 +21613,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21613
21613
|
persistentId: z.ZodString;
|
|
21614
21614
|
title: z.ZodString;
|
|
21615
21615
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
21616
|
-
showSidebar: z.ZodBoolean
|
|
21617
|
-
isPrivate: z.ZodBoolean
|
|
21618
|
-
isHidden: z.ZodBoolean
|
|
21619
|
-
header: z.ZodObject<{
|
|
21616
|
+
showSidebar: z.ZodOptional<z.ZodBoolean>;
|
|
21617
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
21618
|
+
isHidden: z.ZodOptional<z.ZodBoolean>;
|
|
21619
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
21620
21620
|
description: z.ZodString;
|
|
21621
21621
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
21622
21622
|
foregroundColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -21738,12 +21738,12 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21738
21738
|
} | undefined;
|
|
21739
21739
|
} | null | undefined;
|
|
21740
21740
|
minHeight?: number | null | undefined;
|
|
21741
|
-
}
|
|
21741
|
+
}>>;
|
|
21742
21742
|
}, "strip", z.ZodTypeAny, {
|
|
21743
|
-
showSidebar
|
|
21744
|
-
isPrivate
|
|
21745
|
-
isHidden
|
|
21746
|
-
header
|
|
21743
|
+
showSidebar?: boolean | undefined;
|
|
21744
|
+
isPrivate?: boolean | undefined;
|
|
21745
|
+
isHidden?: boolean | undefined;
|
|
21746
|
+
header?: {
|
|
21747
21747
|
description: string;
|
|
21748
21748
|
alignment: "Left" | "Center";
|
|
21749
21749
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21769,12 +21769,12 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21769
21769
|
} | undefined;
|
|
21770
21770
|
} | null | undefined;
|
|
21771
21771
|
minHeight?: number | null | undefined;
|
|
21772
|
-
};
|
|
21772
|
+
} | undefined;
|
|
21773
21773
|
}, {
|
|
21774
|
-
showSidebar
|
|
21775
|
-
isPrivate
|
|
21776
|
-
isHidden
|
|
21777
|
-
header
|
|
21774
|
+
showSidebar?: boolean | undefined;
|
|
21775
|
+
isPrivate?: boolean | undefined;
|
|
21776
|
+
isHidden?: boolean | undefined;
|
|
21777
|
+
header?: {
|
|
21778
21778
|
description: string;
|
|
21779
21779
|
alignment: "Left" | "Center";
|
|
21780
21780
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21800,7 +21800,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21800
21800
|
} | undefined;
|
|
21801
21801
|
} | null | undefined;
|
|
21802
21802
|
minHeight?: number | null | undefined;
|
|
21803
|
-
};
|
|
21803
|
+
} | undefined;
|
|
21804
21804
|
}>>;
|
|
21805
21805
|
afterPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21806
21806
|
parentPersistentId: z.ZodString;
|
|
@@ -21809,10 +21809,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21809
21809
|
parentPersistentId: string;
|
|
21810
21810
|
title: string;
|
|
21811
21811
|
configuration?: {
|
|
21812
|
-
showSidebar
|
|
21813
|
-
isPrivate
|
|
21814
|
-
isHidden
|
|
21815
|
-
header
|
|
21812
|
+
showSidebar?: boolean | undefined;
|
|
21813
|
+
isPrivate?: boolean | undefined;
|
|
21814
|
+
isHidden?: boolean | undefined;
|
|
21815
|
+
header?: {
|
|
21816
21816
|
description: string;
|
|
21817
21817
|
alignment: "Left" | "Center";
|
|
21818
21818
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21838,7 +21838,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21838
21838
|
} | undefined;
|
|
21839
21839
|
} | null | undefined;
|
|
21840
21840
|
minHeight?: number | null | undefined;
|
|
21841
|
-
};
|
|
21841
|
+
} | undefined;
|
|
21842
21842
|
} | undefined;
|
|
21843
21843
|
afterPersistentId?: string | null | undefined;
|
|
21844
21844
|
}, {
|
|
@@ -21846,10 +21846,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21846
21846
|
parentPersistentId: string;
|
|
21847
21847
|
title: string;
|
|
21848
21848
|
configuration?: {
|
|
21849
|
-
showSidebar
|
|
21850
|
-
isPrivate
|
|
21851
|
-
isHidden
|
|
21852
|
-
header
|
|
21849
|
+
showSidebar?: boolean | undefined;
|
|
21850
|
+
isPrivate?: boolean | undefined;
|
|
21851
|
+
isHidden?: boolean | undefined;
|
|
21852
|
+
header?: {
|
|
21853
21853
|
description: string;
|
|
21854
21854
|
alignment: "Left" | "Center";
|
|
21855
21855
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21875,7 +21875,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21875
21875
|
} | undefined;
|
|
21876
21876
|
} | null | undefined;
|
|
21877
21877
|
minHeight?: number | null | undefined;
|
|
21878
|
-
};
|
|
21878
|
+
} | undefined;
|
|
21879
21879
|
} | undefined;
|
|
21880
21880
|
afterPersistentId?: string | null | undefined;
|
|
21881
21881
|
}>;
|
|
@@ -21886,10 +21886,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21886
21886
|
parentPersistentId: string;
|
|
21887
21887
|
title: string;
|
|
21888
21888
|
configuration?: {
|
|
21889
|
-
showSidebar
|
|
21890
|
-
isPrivate
|
|
21891
|
-
isHidden
|
|
21892
|
-
header
|
|
21889
|
+
showSidebar?: boolean | undefined;
|
|
21890
|
+
isPrivate?: boolean | undefined;
|
|
21891
|
+
isHidden?: boolean | undefined;
|
|
21892
|
+
header?: {
|
|
21893
21893
|
description: string;
|
|
21894
21894
|
alignment: "Left" | "Center";
|
|
21895
21895
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21915,7 +21915,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21915
21915
|
} | undefined;
|
|
21916
21916
|
} | null | undefined;
|
|
21917
21917
|
minHeight?: number | null | undefined;
|
|
21918
|
-
};
|
|
21918
|
+
} | undefined;
|
|
21919
21919
|
} | undefined;
|
|
21920
21920
|
afterPersistentId?: string | null | undefined;
|
|
21921
21921
|
};
|
|
@@ -21926,10 +21926,10 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21926
21926
|
parentPersistentId: string;
|
|
21927
21927
|
title: string;
|
|
21928
21928
|
configuration?: {
|
|
21929
|
-
showSidebar
|
|
21930
|
-
isPrivate
|
|
21931
|
-
isHidden
|
|
21932
|
-
header
|
|
21929
|
+
showSidebar?: boolean | undefined;
|
|
21930
|
+
isPrivate?: boolean | undefined;
|
|
21931
|
+
isHidden?: boolean | undefined;
|
|
21932
|
+
header?: {
|
|
21933
21933
|
description: string;
|
|
21934
21934
|
alignment: "Left" | "Center";
|
|
21935
21935
|
backgroundImageScaleType: "AspectFill" | "AspectFit";
|
|
@@ -21955,7 +21955,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
21955
21955
|
} | undefined;
|
|
21956
21956
|
} | null | undefined;
|
|
21957
21957
|
minHeight?: number | null | undefined;
|
|
21958
|
-
};
|
|
21958
|
+
} | undefined;
|
|
21959
21959
|
} | undefined;
|
|
21960
21960
|
afterPersistentId?: string | null | undefined;
|
|
21961
21961
|
};
|