@supernova-studio/client 0.5.0 → 0.7.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/index.d.mts +48 -32
- package/dist/index.d.ts +48 -32
- package/dist/index.js +91 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +83 -21
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/docs-editor/blocks-to-prosemirror.ts +1 -0
- package/src/docs-editor/prosemirror-to-blocks.ts +87 -28
package/dist/index.d.mts
CHANGED
|
@@ -6944,7 +6944,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
6944
6944
|
variantId: z.ZodOptional<z.ZodString>;
|
|
6945
6945
|
indentLevel: z.ZodNumber;
|
|
6946
6946
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
6947
|
-
itemBackgroundColor: z.ZodObject<{
|
|
6947
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
6948
6948
|
opacity: z.ZodObject<{
|
|
6949
6949
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
6950
6950
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -7006,9 +7006,10 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7006
7006
|
}) & (string | {
|
|
7007
7007
|
aliasTo?: string | null | undefined;
|
|
7008
7008
|
} | undefined);
|
|
7009
|
-
}
|
|
7009
|
+
}>>;
|
|
7010
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
7010
7011
|
}, "strip", z.ZodTypeAny, {
|
|
7011
|
-
itemBackgroundColor
|
|
7012
|
+
itemBackgroundColor?: {
|
|
7012
7013
|
opacity: {
|
|
7013
7014
|
aliasTo?: string | undefined;
|
|
7014
7015
|
value?: {
|
|
@@ -7021,9 +7022,10 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7021
7022
|
}) & (string | {
|
|
7022
7023
|
aliasTo?: string | undefined;
|
|
7023
7024
|
} | undefined);
|
|
7024
|
-
};
|
|
7025
|
+
} | undefined;
|
|
7026
|
+
numberOfColumns?: number | undefined;
|
|
7025
7027
|
}, {
|
|
7026
|
-
itemBackgroundColor
|
|
7028
|
+
itemBackgroundColor?: {
|
|
7027
7029
|
opacity: {
|
|
7028
7030
|
aliasTo?: string | null | undefined;
|
|
7029
7031
|
value?: {
|
|
@@ -7036,7 +7038,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7036
7038
|
}) & (string | {
|
|
7037
7039
|
aliasTo?: string | null | undefined;
|
|
7038
7040
|
} | undefined);
|
|
7039
|
-
};
|
|
7041
|
+
} | undefined;
|
|
7042
|
+
numberOfColumns?: number | undefined;
|
|
7040
7043
|
}>>;
|
|
7041
7044
|
items: z.ZodArray<z.ZodObject<{
|
|
7042
7045
|
id: z.ZodString;
|
|
@@ -7109,7 +7112,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7109
7112
|
}[];
|
|
7110
7113
|
variantId?: string | undefined;
|
|
7111
7114
|
appearance?: {
|
|
7112
|
-
itemBackgroundColor
|
|
7115
|
+
itemBackgroundColor?: {
|
|
7113
7116
|
opacity: {
|
|
7114
7117
|
aliasTo?: string | undefined;
|
|
7115
7118
|
value?: {
|
|
@@ -7122,7 +7125,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7122
7125
|
}) & (string | {
|
|
7123
7126
|
aliasTo?: string | undefined;
|
|
7124
7127
|
} | undefined);
|
|
7125
|
-
};
|
|
7128
|
+
} | undefined;
|
|
7129
|
+
numberOfColumns?: number | undefined;
|
|
7126
7130
|
} | undefined;
|
|
7127
7131
|
}, {
|
|
7128
7132
|
packageId: string;
|
|
@@ -7142,7 +7146,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7142
7146
|
}[];
|
|
7143
7147
|
variantId?: string | undefined;
|
|
7144
7148
|
appearance?: {
|
|
7145
|
-
itemBackgroundColor
|
|
7149
|
+
itemBackgroundColor?: {
|
|
7146
7150
|
opacity: {
|
|
7147
7151
|
aliasTo?: string | null | undefined;
|
|
7148
7152
|
value?: {
|
|
@@ -7155,7 +7159,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7155
7159
|
}) & (string | {
|
|
7156
7160
|
aliasTo?: string | null | undefined;
|
|
7157
7161
|
} | undefined);
|
|
7158
|
-
};
|
|
7162
|
+
} | undefined;
|
|
7163
|
+
numberOfColumns?: number | undefined;
|
|
7159
7164
|
} | undefined;
|
|
7160
7165
|
}>;
|
|
7161
7166
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7178,7 +7183,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7178
7183
|
}[];
|
|
7179
7184
|
variantId?: string | undefined;
|
|
7180
7185
|
appearance?: {
|
|
7181
|
-
itemBackgroundColor
|
|
7186
|
+
itemBackgroundColor?: {
|
|
7182
7187
|
opacity: {
|
|
7183
7188
|
aliasTo?: string | undefined;
|
|
7184
7189
|
value?: {
|
|
@@ -7191,7 +7196,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7191
7196
|
}) & (string | {
|
|
7192
7197
|
aliasTo?: string | undefined;
|
|
7193
7198
|
} | undefined);
|
|
7194
|
-
};
|
|
7199
|
+
} | undefined;
|
|
7200
|
+
numberOfColumns?: number | undefined;
|
|
7195
7201
|
} | undefined;
|
|
7196
7202
|
};
|
|
7197
7203
|
}, {
|
|
@@ -7214,7 +7220,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7214
7220
|
}[];
|
|
7215
7221
|
variantId?: string | undefined;
|
|
7216
7222
|
appearance?: {
|
|
7217
|
-
itemBackgroundColor
|
|
7223
|
+
itemBackgroundColor?: {
|
|
7218
7224
|
opacity: {
|
|
7219
7225
|
aliasTo?: string | null | undefined;
|
|
7220
7226
|
value?: {
|
|
@@ -7227,7 +7233,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7227
7233
|
}) & (string | {
|
|
7228
7234
|
aliasTo?: string | null | undefined;
|
|
7229
7235
|
} | undefined);
|
|
7230
|
-
};
|
|
7236
|
+
} | undefined;
|
|
7237
|
+
numberOfColumns?: number | undefined;
|
|
7231
7238
|
} | undefined;
|
|
7232
7239
|
};
|
|
7233
7240
|
}>;
|
|
@@ -7241,7 +7248,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7241
7248
|
variantId: z.ZodOptional<z.ZodString>;
|
|
7242
7249
|
indentLevel: z.ZodNumber;
|
|
7243
7250
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
7244
|
-
itemBackgroundColor: z.ZodObject<{
|
|
7251
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
7245
7252
|
opacity: z.ZodObject<{
|
|
7246
7253
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
7247
7254
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -7303,9 +7310,10 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7303
7310
|
}) & (string | {
|
|
7304
7311
|
aliasTo?: string | null | undefined;
|
|
7305
7312
|
} | undefined);
|
|
7306
|
-
}
|
|
7313
|
+
}>>;
|
|
7314
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
7307
7315
|
}, "strip", z.ZodTypeAny, {
|
|
7308
|
-
itemBackgroundColor
|
|
7316
|
+
itemBackgroundColor?: {
|
|
7309
7317
|
opacity: {
|
|
7310
7318
|
aliasTo?: string | undefined;
|
|
7311
7319
|
value?: {
|
|
@@ -7318,9 +7326,10 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7318
7326
|
}) & (string | {
|
|
7319
7327
|
aliasTo?: string | undefined;
|
|
7320
7328
|
} | undefined);
|
|
7321
|
-
};
|
|
7329
|
+
} | undefined;
|
|
7330
|
+
numberOfColumns?: number | undefined;
|
|
7322
7331
|
}, {
|
|
7323
|
-
itemBackgroundColor
|
|
7332
|
+
itemBackgroundColor?: {
|
|
7324
7333
|
opacity: {
|
|
7325
7334
|
aliasTo?: string | null | undefined;
|
|
7326
7335
|
value?: {
|
|
@@ -7333,7 +7342,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7333
7342
|
}) & (string | {
|
|
7334
7343
|
aliasTo?: string | null | undefined;
|
|
7335
7344
|
} | undefined);
|
|
7336
|
-
};
|
|
7345
|
+
} | undefined;
|
|
7346
|
+
numberOfColumns?: number | undefined;
|
|
7337
7347
|
}>>;
|
|
7338
7348
|
items: z.ZodArray<z.ZodObject<{
|
|
7339
7349
|
id: z.ZodString;
|
|
@@ -7406,7 +7416,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7406
7416
|
}[];
|
|
7407
7417
|
variantId?: string | undefined;
|
|
7408
7418
|
appearance?: {
|
|
7409
|
-
itemBackgroundColor
|
|
7419
|
+
itemBackgroundColor?: {
|
|
7410
7420
|
opacity: {
|
|
7411
7421
|
aliasTo?: string | undefined;
|
|
7412
7422
|
value?: {
|
|
@@ -7419,7 +7429,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7419
7429
|
}) & (string | {
|
|
7420
7430
|
aliasTo?: string | undefined;
|
|
7421
7431
|
} | undefined);
|
|
7422
|
-
};
|
|
7432
|
+
} | undefined;
|
|
7433
|
+
numberOfColumns?: number | undefined;
|
|
7423
7434
|
} | undefined;
|
|
7424
7435
|
}, {
|
|
7425
7436
|
packageId: string;
|
|
@@ -7439,7 +7450,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7439
7450
|
}[];
|
|
7440
7451
|
variantId?: string | undefined;
|
|
7441
7452
|
appearance?: {
|
|
7442
|
-
itemBackgroundColor
|
|
7453
|
+
itemBackgroundColor?: {
|
|
7443
7454
|
opacity: {
|
|
7444
7455
|
aliasTo?: string | null | undefined;
|
|
7445
7456
|
value?: {
|
|
@@ -7452,7 +7463,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7452
7463
|
}) & (string | {
|
|
7453
7464
|
aliasTo?: string | null | undefined;
|
|
7454
7465
|
} | undefined);
|
|
7455
|
-
};
|
|
7466
|
+
} | undefined;
|
|
7467
|
+
numberOfColumns?: number | undefined;
|
|
7456
7468
|
} | undefined;
|
|
7457
7469
|
}>;
|
|
7458
7470
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7475,7 +7487,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7475
7487
|
}[];
|
|
7476
7488
|
variantId?: string | undefined;
|
|
7477
7489
|
appearance?: {
|
|
7478
|
-
itemBackgroundColor
|
|
7490
|
+
itemBackgroundColor?: {
|
|
7479
7491
|
opacity: {
|
|
7480
7492
|
aliasTo?: string | undefined;
|
|
7481
7493
|
value?: {
|
|
@@ -7488,7 +7500,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7488
7500
|
}) & (string | {
|
|
7489
7501
|
aliasTo?: string | undefined;
|
|
7490
7502
|
} | undefined);
|
|
7491
|
-
};
|
|
7503
|
+
} | undefined;
|
|
7504
|
+
numberOfColumns?: number | undefined;
|
|
7492
7505
|
} | undefined;
|
|
7493
7506
|
};
|
|
7494
7507
|
}, {
|
|
@@ -7511,7 +7524,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7511
7524
|
}[];
|
|
7512
7525
|
variantId?: string | undefined;
|
|
7513
7526
|
appearance?: {
|
|
7514
|
-
itemBackgroundColor
|
|
7527
|
+
itemBackgroundColor?: {
|
|
7515
7528
|
opacity: {
|
|
7516
7529
|
aliasTo?: string | null | undefined;
|
|
7517
7530
|
value?: {
|
|
@@ -7524,7 +7537,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7524
7537
|
}) & (string | {
|
|
7525
7538
|
aliasTo?: string | null | undefined;
|
|
7526
7539
|
} | undefined);
|
|
7527
|
-
};
|
|
7540
|
+
} | undefined;
|
|
7541
|
+
numberOfColumns?: number | undefined;
|
|
7528
7542
|
} | undefined;
|
|
7529
7543
|
};
|
|
7530
7544
|
}>, "many">;
|
|
@@ -7549,7 +7563,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7549
7563
|
}[];
|
|
7550
7564
|
variantId?: string | undefined;
|
|
7551
7565
|
appearance?: {
|
|
7552
|
-
itemBackgroundColor
|
|
7566
|
+
itemBackgroundColor?: {
|
|
7553
7567
|
opacity: {
|
|
7554
7568
|
aliasTo?: string | undefined;
|
|
7555
7569
|
value?: {
|
|
@@ -7562,7 +7576,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7562
7576
|
}) & (string | {
|
|
7563
7577
|
aliasTo?: string | undefined;
|
|
7564
7578
|
} | undefined);
|
|
7565
|
-
};
|
|
7579
|
+
} | undefined;
|
|
7580
|
+
numberOfColumns?: number | undefined;
|
|
7566
7581
|
} | undefined;
|
|
7567
7582
|
};
|
|
7568
7583
|
}[];
|
|
@@ -7587,7 +7602,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7587
7602
|
}[];
|
|
7588
7603
|
variantId?: string | undefined;
|
|
7589
7604
|
appearance?: {
|
|
7590
|
-
itemBackgroundColor
|
|
7605
|
+
itemBackgroundColor?: {
|
|
7591
7606
|
opacity: {
|
|
7592
7607
|
aliasTo?: string | null | undefined;
|
|
7593
7608
|
value?: {
|
|
@@ -7600,7 +7615,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7600
7615
|
}) & (string | {
|
|
7601
7616
|
aliasTo?: string | null | undefined;
|
|
7602
7617
|
} | undefined);
|
|
7603
|
-
};
|
|
7618
|
+
} | undefined;
|
|
7619
|
+
numberOfColumns?: number | undefined;
|
|
7604
7620
|
} | undefined;
|
|
7605
7621
|
};
|
|
7606
7622
|
}[];
|
package/dist/index.d.ts
CHANGED
|
@@ -6944,7 +6944,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
6944
6944
|
variantId: z.ZodOptional<z.ZodString>;
|
|
6945
6945
|
indentLevel: z.ZodNumber;
|
|
6946
6946
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
6947
|
-
itemBackgroundColor: z.ZodObject<{
|
|
6947
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
6948
6948
|
opacity: z.ZodObject<{
|
|
6949
6949
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
6950
6950
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -7006,9 +7006,10 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7006
7006
|
}) & (string | {
|
|
7007
7007
|
aliasTo?: string | null | undefined;
|
|
7008
7008
|
} | undefined);
|
|
7009
|
-
}
|
|
7009
|
+
}>>;
|
|
7010
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
7010
7011
|
}, "strip", z.ZodTypeAny, {
|
|
7011
|
-
itemBackgroundColor
|
|
7012
|
+
itemBackgroundColor?: {
|
|
7012
7013
|
opacity: {
|
|
7013
7014
|
aliasTo?: string | undefined;
|
|
7014
7015
|
value?: {
|
|
@@ -7021,9 +7022,10 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7021
7022
|
}) & (string | {
|
|
7022
7023
|
aliasTo?: string | undefined;
|
|
7023
7024
|
} | undefined);
|
|
7024
|
-
};
|
|
7025
|
+
} | undefined;
|
|
7026
|
+
numberOfColumns?: number | undefined;
|
|
7025
7027
|
}, {
|
|
7026
|
-
itemBackgroundColor
|
|
7028
|
+
itemBackgroundColor?: {
|
|
7027
7029
|
opacity: {
|
|
7028
7030
|
aliasTo?: string | null | undefined;
|
|
7029
7031
|
value?: {
|
|
@@ -7036,7 +7038,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7036
7038
|
}) & (string | {
|
|
7037
7039
|
aliasTo?: string | null | undefined;
|
|
7038
7040
|
} | undefined);
|
|
7039
|
-
};
|
|
7041
|
+
} | undefined;
|
|
7042
|
+
numberOfColumns?: number | undefined;
|
|
7040
7043
|
}>>;
|
|
7041
7044
|
items: z.ZodArray<z.ZodObject<{
|
|
7042
7045
|
id: z.ZodString;
|
|
@@ -7109,7 +7112,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7109
7112
|
}[];
|
|
7110
7113
|
variantId?: string | undefined;
|
|
7111
7114
|
appearance?: {
|
|
7112
|
-
itemBackgroundColor
|
|
7115
|
+
itemBackgroundColor?: {
|
|
7113
7116
|
opacity: {
|
|
7114
7117
|
aliasTo?: string | undefined;
|
|
7115
7118
|
value?: {
|
|
@@ -7122,7 +7125,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7122
7125
|
}) & (string | {
|
|
7123
7126
|
aliasTo?: string | undefined;
|
|
7124
7127
|
} | undefined);
|
|
7125
|
-
};
|
|
7128
|
+
} | undefined;
|
|
7129
|
+
numberOfColumns?: number | undefined;
|
|
7126
7130
|
} | undefined;
|
|
7127
7131
|
}, {
|
|
7128
7132
|
packageId: string;
|
|
@@ -7142,7 +7146,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7142
7146
|
}[];
|
|
7143
7147
|
variantId?: string | undefined;
|
|
7144
7148
|
appearance?: {
|
|
7145
|
-
itemBackgroundColor
|
|
7149
|
+
itemBackgroundColor?: {
|
|
7146
7150
|
opacity: {
|
|
7147
7151
|
aliasTo?: string | null | undefined;
|
|
7148
7152
|
value?: {
|
|
@@ -7155,7 +7159,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7155
7159
|
}) & (string | {
|
|
7156
7160
|
aliasTo?: string | null | undefined;
|
|
7157
7161
|
} | undefined);
|
|
7158
|
-
};
|
|
7162
|
+
} | undefined;
|
|
7163
|
+
numberOfColumns?: number | undefined;
|
|
7159
7164
|
} | undefined;
|
|
7160
7165
|
}>;
|
|
7161
7166
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7178,7 +7183,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7178
7183
|
}[];
|
|
7179
7184
|
variantId?: string | undefined;
|
|
7180
7185
|
appearance?: {
|
|
7181
|
-
itemBackgroundColor
|
|
7186
|
+
itemBackgroundColor?: {
|
|
7182
7187
|
opacity: {
|
|
7183
7188
|
aliasTo?: string | undefined;
|
|
7184
7189
|
value?: {
|
|
@@ -7191,7 +7196,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7191
7196
|
}) & (string | {
|
|
7192
7197
|
aliasTo?: string | undefined;
|
|
7193
7198
|
} | undefined);
|
|
7194
|
-
};
|
|
7199
|
+
} | undefined;
|
|
7200
|
+
numberOfColumns?: number | undefined;
|
|
7195
7201
|
} | undefined;
|
|
7196
7202
|
};
|
|
7197
7203
|
}, {
|
|
@@ -7214,7 +7220,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7214
7220
|
}[];
|
|
7215
7221
|
variantId?: string | undefined;
|
|
7216
7222
|
appearance?: {
|
|
7217
|
-
itemBackgroundColor
|
|
7223
|
+
itemBackgroundColor?: {
|
|
7218
7224
|
opacity: {
|
|
7219
7225
|
aliasTo?: string | null | undefined;
|
|
7220
7226
|
value?: {
|
|
@@ -7227,7 +7233,8 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
7227
7233
|
}) & (string | {
|
|
7228
7234
|
aliasTo?: string | null | undefined;
|
|
7229
7235
|
} | undefined);
|
|
7230
|
-
};
|
|
7236
|
+
} | undefined;
|
|
7237
|
+
numberOfColumns?: number | undefined;
|
|
7231
7238
|
} | undefined;
|
|
7232
7239
|
};
|
|
7233
7240
|
}>;
|
|
@@ -7241,7 +7248,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7241
7248
|
variantId: z.ZodOptional<z.ZodString>;
|
|
7242
7249
|
indentLevel: z.ZodNumber;
|
|
7243
7250
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
7244
|
-
itemBackgroundColor: z.ZodObject<{
|
|
7251
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
7245
7252
|
opacity: z.ZodObject<{
|
|
7246
7253
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
7247
7254
|
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
@@ -7303,9 +7310,10 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7303
7310
|
}) & (string | {
|
|
7304
7311
|
aliasTo?: string | null | undefined;
|
|
7305
7312
|
} | undefined);
|
|
7306
|
-
}
|
|
7313
|
+
}>>;
|
|
7314
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
7307
7315
|
}, "strip", z.ZodTypeAny, {
|
|
7308
|
-
itemBackgroundColor
|
|
7316
|
+
itemBackgroundColor?: {
|
|
7309
7317
|
opacity: {
|
|
7310
7318
|
aliasTo?: string | undefined;
|
|
7311
7319
|
value?: {
|
|
@@ -7318,9 +7326,10 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7318
7326
|
}) & (string | {
|
|
7319
7327
|
aliasTo?: string | undefined;
|
|
7320
7328
|
} | undefined);
|
|
7321
|
-
};
|
|
7329
|
+
} | undefined;
|
|
7330
|
+
numberOfColumns?: number | undefined;
|
|
7322
7331
|
}, {
|
|
7323
|
-
itemBackgroundColor
|
|
7332
|
+
itemBackgroundColor?: {
|
|
7324
7333
|
opacity: {
|
|
7325
7334
|
aliasTo?: string | null | undefined;
|
|
7326
7335
|
value?: {
|
|
@@ -7333,7 +7342,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7333
7342
|
}) & (string | {
|
|
7334
7343
|
aliasTo?: string | null | undefined;
|
|
7335
7344
|
} | undefined);
|
|
7336
|
-
};
|
|
7345
|
+
} | undefined;
|
|
7346
|
+
numberOfColumns?: number | undefined;
|
|
7337
7347
|
}>>;
|
|
7338
7348
|
items: z.ZodArray<z.ZodObject<{
|
|
7339
7349
|
id: z.ZodString;
|
|
@@ -7406,7 +7416,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7406
7416
|
}[];
|
|
7407
7417
|
variantId?: string | undefined;
|
|
7408
7418
|
appearance?: {
|
|
7409
|
-
itemBackgroundColor
|
|
7419
|
+
itemBackgroundColor?: {
|
|
7410
7420
|
opacity: {
|
|
7411
7421
|
aliasTo?: string | undefined;
|
|
7412
7422
|
value?: {
|
|
@@ -7419,7 +7429,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7419
7429
|
}) & (string | {
|
|
7420
7430
|
aliasTo?: string | undefined;
|
|
7421
7431
|
} | undefined);
|
|
7422
|
-
};
|
|
7432
|
+
} | undefined;
|
|
7433
|
+
numberOfColumns?: number | undefined;
|
|
7423
7434
|
} | undefined;
|
|
7424
7435
|
}, {
|
|
7425
7436
|
packageId: string;
|
|
@@ -7439,7 +7450,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7439
7450
|
}[];
|
|
7440
7451
|
variantId?: string | undefined;
|
|
7441
7452
|
appearance?: {
|
|
7442
|
-
itemBackgroundColor
|
|
7453
|
+
itemBackgroundColor?: {
|
|
7443
7454
|
opacity: {
|
|
7444
7455
|
aliasTo?: string | null | undefined;
|
|
7445
7456
|
value?: {
|
|
@@ -7452,7 +7463,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7452
7463
|
}) & (string | {
|
|
7453
7464
|
aliasTo?: string | null | undefined;
|
|
7454
7465
|
} | undefined);
|
|
7455
|
-
};
|
|
7466
|
+
} | undefined;
|
|
7467
|
+
numberOfColumns?: number | undefined;
|
|
7456
7468
|
} | undefined;
|
|
7457
7469
|
}>;
|
|
7458
7470
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7475,7 +7487,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7475
7487
|
}[];
|
|
7476
7488
|
variantId?: string | undefined;
|
|
7477
7489
|
appearance?: {
|
|
7478
|
-
itemBackgroundColor
|
|
7490
|
+
itemBackgroundColor?: {
|
|
7479
7491
|
opacity: {
|
|
7480
7492
|
aliasTo?: string | undefined;
|
|
7481
7493
|
value?: {
|
|
@@ -7488,7 +7500,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7488
7500
|
}) & (string | {
|
|
7489
7501
|
aliasTo?: string | undefined;
|
|
7490
7502
|
} | undefined);
|
|
7491
|
-
};
|
|
7503
|
+
} | undefined;
|
|
7504
|
+
numberOfColumns?: number | undefined;
|
|
7492
7505
|
} | undefined;
|
|
7493
7506
|
};
|
|
7494
7507
|
}, {
|
|
@@ -7511,7 +7524,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7511
7524
|
}[];
|
|
7512
7525
|
variantId?: string | undefined;
|
|
7513
7526
|
appearance?: {
|
|
7514
|
-
itemBackgroundColor
|
|
7527
|
+
itemBackgroundColor?: {
|
|
7515
7528
|
opacity: {
|
|
7516
7529
|
aliasTo?: string | null | undefined;
|
|
7517
7530
|
value?: {
|
|
@@ -7524,7 +7537,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7524
7537
|
}) & (string | {
|
|
7525
7538
|
aliasTo?: string | null | undefined;
|
|
7526
7539
|
} | undefined);
|
|
7527
|
-
};
|
|
7540
|
+
} | undefined;
|
|
7541
|
+
numberOfColumns?: number | undefined;
|
|
7528
7542
|
} | undefined;
|
|
7529
7543
|
};
|
|
7530
7544
|
}>, "many">;
|
|
@@ -7549,7 +7563,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7549
7563
|
}[];
|
|
7550
7564
|
variantId?: string | undefined;
|
|
7551
7565
|
appearance?: {
|
|
7552
|
-
itemBackgroundColor
|
|
7566
|
+
itemBackgroundColor?: {
|
|
7553
7567
|
opacity: {
|
|
7554
7568
|
aliasTo?: string | undefined;
|
|
7555
7569
|
value?: {
|
|
@@ -7562,7 +7576,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7562
7576
|
}) & (string | {
|
|
7563
7577
|
aliasTo?: string | undefined;
|
|
7564
7578
|
} | undefined);
|
|
7565
|
-
};
|
|
7579
|
+
} | undefined;
|
|
7580
|
+
numberOfColumns?: number | undefined;
|
|
7566
7581
|
} | undefined;
|
|
7567
7582
|
};
|
|
7568
7583
|
}[];
|
|
@@ -7587,7 +7602,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7587
7602
|
}[];
|
|
7588
7603
|
variantId?: string | undefined;
|
|
7589
7604
|
appearance?: {
|
|
7590
|
-
itemBackgroundColor
|
|
7605
|
+
itemBackgroundColor?: {
|
|
7591
7606
|
opacity: {
|
|
7592
7607
|
aliasTo?: string | null | undefined;
|
|
7593
7608
|
value?: {
|
|
@@ -7600,7 +7615,8 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
7600
7615
|
}) & (string | {
|
|
7601
7616
|
aliasTo?: string | null | undefined;
|
|
7602
7617
|
} | undefined);
|
|
7603
|
-
};
|
|
7618
|
+
} | undefined;
|
|
7619
|
+
numberOfColumns?: number | undefined;
|
|
7604
7620
|
} | undefined;
|
|
7605
7621
|
};
|
|
7606
7622
|
}[];
|