@supernova-studio/client 1.6.0 → 1.6.2

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 CHANGED
@@ -3036,39 +3036,60 @@ declare const DTOBrandUpdatePayload: z.ZodObject<{
3036
3036
  }>;
3037
3037
  type DTOBrandUpdatePayload = z.infer<typeof DTOBrandUpdatePayload>;
3038
3038
 
3039
+ declare const DTOCodeComponentResolvedTypeKind: z.ZodEnum<["string", "number", "numberLiteral", "boolean", "booleanLiteral", "object", "function", "stringLiteral", "union", "slot", "null", "undefined", "any"]>;
3040
+ type DTOCodeComponentResolvedTypeKind = z.infer<typeof DTOCodeComponentResolvedTypeKind>;
3041
+ declare const DTOCodeComponentResolvedType: z.ZodType<any, z.ZodTypeDef, any>;
3042
+ type DTOCodeComponentResolvedType = z.infer<typeof DTOCodeComponentResolvedType>;
3043
+ declare const DTOCodeComponentParentType: z.ZodObject<{
3044
+ fileName: z.ZodString;
3045
+ name: z.ZodString;
3046
+ }, "strip", z.ZodTypeAny, {
3047
+ name: string;
3048
+ fileName: string;
3049
+ }, {
3050
+ name: string;
3051
+ fileName: string;
3052
+ }>;
3053
+ type DTOCodeComponentParentType = z.infer<typeof DTOCodeComponentParentType>;
3039
3054
  declare const DTOCodeComponentProperty: z.ZodObject<{
3040
- control: z.ZodObject<{
3041
- isArray: z.ZodBoolean;
3042
- type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
3043
- }, "strip", z.ZodTypeAny, {
3044
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3045
- isArray: boolean;
3046
- }, {
3047
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3048
- isArray: boolean;
3049
- }>;
3050
3055
  defaultValue: z.ZodOptional<z.ZodString>;
3051
3056
  name: z.ZodString;
3052
3057
  required: z.ZodBoolean;
3053
- type: z.ZodString;
3058
+ type: z.ZodType<any, z.ZodTypeDef, any>;
3059
+ declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3060
+ fileName: z.ZodString;
3061
+ name: z.ZodString;
3062
+ }, "strip", z.ZodTypeAny, {
3063
+ name: string;
3064
+ fileName: string;
3065
+ }, {
3066
+ name: string;
3067
+ fileName: string;
3068
+ }>, "many">>;
3069
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3070
+ description: z.ZodString;
3054
3071
  }, "strip", z.ZodTypeAny, {
3055
- type: string;
3056
3072
  name: string;
3057
- control: {
3058
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3059
- isArray: boolean;
3060
- };
3073
+ description: string;
3061
3074
  required: boolean;
3075
+ type?: any;
3076
+ tags?: Record<string, string> | undefined;
3062
3077
  defaultValue?: string | undefined;
3078
+ declarations?: {
3079
+ name: string;
3080
+ fileName: string;
3081
+ }[] | undefined;
3063
3082
  }, {
3064
- type: string;
3065
3083
  name: string;
3066
- control: {
3067
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3068
- isArray: boolean;
3069
- };
3084
+ description: string;
3070
3085
  required: boolean;
3086
+ type?: any;
3087
+ tags?: Record<string, string> | undefined;
3071
3088
  defaultValue?: string | undefined;
3089
+ declarations?: {
3090
+ name: string;
3091
+ fileName: string;
3092
+ }[] | undefined;
3072
3093
  }>;
3073
3094
  type DTOCodeComponentProperty = z.infer<typeof DTOCodeComponentProperty>;
3074
3095
  declare const DTOCodeComponent: z.ZodObject<{
@@ -3078,74 +3099,93 @@ declare const DTOCodeComponent: z.ZodObject<{
3078
3099
  createdAt: z.ZodDate;
3079
3100
  updatedAt: z.ZodDate;
3080
3101
  exportName: z.ZodString;
3102
+ componentPath: z.ZodString;
3103
+ description: z.ZodString;
3081
3104
  properties: z.ZodRecord<z.ZodString, z.ZodObject<{
3082
- control: z.ZodObject<{
3083
- isArray: z.ZodBoolean;
3084
- type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
3085
- }, "strip", z.ZodTypeAny, {
3086
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3087
- isArray: boolean;
3088
- }, {
3089
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3090
- isArray: boolean;
3091
- }>;
3092
3105
  defaultValue: z.ZodOptional<z.ZodString>;
3093
3106
  name: z.ZodString;
3094
3107
  required: z.ZodBoolean;
3095
- type: z.ZodString;
3108
+ type: z.ZodType<any, z.ZodTypeDef, any>;
3109
+ declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3110
+ fileName: z.ZodString;
3111
+ name: z.ZodString;
3112
+ }, "strip", z.ZodTypeAny, {
3113
+ name: string;
3114
+ fileName: string;
3115
+ }, {
3116
+ name: string;
3117
+ fileName: string;
3118
+ }>, "many">>;
3119
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3120
+ description: z.ZodString;
3096
3121
  }, "strip", z.ZodTypeAny, {
3097
- type: string;
3098
3122
  name: string;
3099
- control: {
3100
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3101
- isArray: boolean;
3102
- };
3123
+ description: string;
3103
3124
  required: boolean;
3125
+ type?: any;
3126
+ tags?: Record<string, string> | undefined;
3104
3127
  defaultValue?: string | undefined;
3128
+ declarations?: {
3129
+ name: string;
3130
+ fileName: string;
3131
+ }[] | undefined;
3105
3132
  }, {
3106
- type: string;
3107
3133
  name: string;
3108
- control: {
3109
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3110
- isArray: boolean;
3111
- };
3134
+ description: string;
3112
3135
  required: boolean;
3136
+ type?: any;
3137
+ tags?: Record<string, string> | undefined;
3113
3138
  defaultValue?: string | undefined;
3139
+ declarations?: {
3140
+ name: string;
3141
+ fileName: string;
3142
+ }[] | undefined;
3114
3143
  }>>;
3144
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3115
3145
  }, "strip", z.ZodTypeAny, {
3116
3146
  id: string;
3117
- designSystemVersionId: string;
3118
- persistentId: string;
3119
3147
  createdAt: Date;
3120
3148
  updatedAt: Date;
3121
- exportName: string;
3149
+ persistentId: string;
3150
+ description: string;
3122
3151
  properties: Record<string, {
3123
- type: string;
3124
3152
  name: string;
3125
- control: {
3126
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3127
- isArray: boolean;
3128
- };
3153
+ description: string;
3129
3154
  required: boolean;
3155
+ type?: any;
3156
+ tags?: Record<string, string> | undefined;
3130
3157
  defaultValue?: string | undefined;
3158
+ declarations?: {
3159
+ name: string;
3160
+ fileName: string;
3161
+ }[] | undefined;
3131
3162
  }>;
3163
+ designSystemVersionId: string;
3164
+ exportName: string;
3165
+ componentPath: string;
3166
+ tags?: Record<string, string> | undefined;
3132
3167
  }, {
3133
3168
  id: string;
3134
- designSystemVersionId: string;
3135
- persistentId: string;
3136
3169
  createdAt: Date;
3137
3170
  updatedAt: Date;
3138
- exportName: string;
3171
+ persistentId: string;
3172
+ description: string;
3139
3173
  properties: Record<string, {
3140
- type: string;
3141
3174
  name: string;
3142
- control: {
3143
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3144
- isArray: boolean;
3145
- };
3175
+ description: string;
3146
3176
  required: boolean;
3177
+ type?: any;
3178
+ tags?: Record<string, string> | undefined;
3147
3179
  defaultValue?: string | undefined;
3180
+ declarations?: {
3181
+ name: string;
3182
+ fileName: string;
3183
+ }[] | undefined;
3148
3184
  }>;
3185
+ designSystemVersionId: string;
3186
+ exportName: string;
3187
+ componentPath: string;
3188
+ tags?: Record<string, string> | undefined;
3149
3189
  }>;
3150
3190
  type DTOCodeComponent = z.infer<typeof DTOCodeComponent>;
3151
3191
  declare const DTOCodeComponentResponse: z.ZodObject<{
@@ -3156,112 +3196,141 @@ declare const DTOCodeComponentResponse: z.ZodObject<{
3156
3196
  createdAt: z.ZodDate;
3157
3197
  updatedAt: z.ZodDate;
3158
3198
  exportName: z.ZodString;
3199
+ componentPath: z.ZodString;
3200
+ description: z.ZodString;
3159
3201
  properties: z.ZodRecord<z.ZodString, z.ZodObject<{
3160
- control: z.ZodObject<{
3161
- isArray: z.ZodBoolean;
3162
- type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
3163
- }, "strip", z.ZodTypeAny, {
3164
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3165
- isArray: boolean;
3166
- }, {
3167
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3168
- isArray: boolean;
3169
- }>;
3170
3202
  defaultValue: z.ZodOptional<z.ZodString>;
3171
3203
  name: z.ZodString;
3172
3204
  required: z.ZodBoolean;
3173
- type: z.ZodString;
3205
+ type: z.ZodType<any, z.ZodTypeDef, any>;
3206
+ declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3207
+ fileName: z.ZodString;
3208
+ name: z.ZodString;
3209
+ }, "strip", z.ZodTypeAny, {
3210
+ name: string;
3211
+ fileName: string;
3212
+ }, {
3213
+ name: string;
3214
+ fileName: string;
3215
+ }>, "many">>;
3216
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3217
+ description: z.ZodString;
3174
3218
  }, "strip", z.ZodTypeAny, {
3175
- type: string;
3176
3219
  name: string;
3177
- control: {
3178
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3179
- isArray: boolean;
3180
- };
3220
+ description: string;
3181
3221
  required: boolean;
3222
+ type?: any;
3223
+ tags?: Record<string, string> | undefined;
3182
3224
  defaultValue?: string | undefined;
3225
+ declarations?: {
3226
+ name: string;
3227
+ fileName: string;
3228
+ }[] | undefined;
3183
3229
  }, {
3184
- type: string;
3185
3230
  name: string;
3186
- control: {
3187
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3188
- isArray: boolean;
3189
- };
3231
+ description: string;
3190
3232
  required: boolean;
3233
+ type?: any;
3234
+ tags?: Record<string, string> | undefined;
3191
3235
  defaultValue?: string | undefined;
3236
+ declarations?: {
3237
+ name: string;
3238
+ fileName: string;
3239
+ }[] | undefined;
3192
3240
  }>>;
3241
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3193
3242
  }, "strip", z.ZodTypeAny, {
3194
3243
  id: string;
3195
- designSystemVersionId: string;
3196
- persistentId: string;
3197
3244
  createdAt: Date;
3198
3245
  updatedAt: Date;
3199
- exportName: string;
3246
+ persistentId: string;
3247
+ description: string;
3200
3248
  properties: Record<string, {
3201
- type: string;
3202
3249
  name: string;
3203
- control: {
3204
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3205
- isArray: boolean;
3206
- };
3250
+ description: string;
3207
3251
  required: boolean;
3252
+ type?: any;
3253
+ tags?: Record<string, string> | undefined;
3208
3254
  defaultValue?: string | undefined;
3255
+ declarations?: {
3256
+ name: string;
3257
+ fileName: string;
3258
+ }[] | undefined;
3209
3259
  }>;
3260
+ designSystemVersionId: string;
3261
+ exportName: string;
3262
+ componentPath: string;
3263
+ tags?: Record<string, string> | undefined;
3210
3264
  }, {
3211
3265
  id: string;
3212
- designSystemVersionId: string;
3213
- persistentId: string;
3214
3266
  createdAt: Date;
3215
3267
  updatedAt: Date;
3216
- exportName: string;
3268
+ persistentId: string;
3269
+ description: string;
3217
3270
  properties: Record<string, {
3218
- type: string;
3219
3271
  name: string;
3220
- control: {
3221
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3222
- isArray: boolean;
3223
- };
3272
+ description: string;
3224
3273
  required: boolean;
3274
+ type?: any;
3275
+ tags?: Record<string, string> | undefined;
3225
3276
  defaultValue?: string | undefined;
3277
+ declarations?: {
3278
+ name: string;
3279
+ fileName: string;
3280
+ }[] | undefined;
3226
3281
  }>;
3282
+ designSystemVersionId: string;
3283
+ exportName: string;
3284
+ componentPath: string;
3285
+ tags?: Record<string, string> | undefined;
3227
3286
  }>;
3228
3287
  }, "strip", z.ZodTypeAny, {
3229
3288
  codeComponent: {
3230
3289
  id: string;
3231
- designSystemVersionId: string;
3232
- persistentId: string;
3233
3290
  createdAt: Date;
3234
3291
  updatedAt: Date;
3235
- exportName: string;
3292
+ persistentId: string;
3293
+ description: string;
3236
3294
  properties: Record<string, {
3237
- type: string;
3238
3295
  name: string;
3239
- control: {
3240
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3241
- isArray: boolean;
3242
- };
3296
+ description: string;
3243
3297
  required: boolean;
3298
+ type?: any;
3299
+ tags?: Record<string, string> | undefined;
3244
3300
  defaultValue?: string | undefined;
3301
+ declarations?: {
3302
+ name: string;
3303
+ fileName: string;
3304
+ }[] | undefined;
3245
3305
  }>;
3306
+ designSystemVersionId: string;
3307
+ exportName: string;
3308
+ componentPath: string;
3309
+ tags?: Record<string, string> | undefined;
3246
3310
  };
3247
3311
  }, {
3248
3312
  codeComponent: {
3249
3313
  id: string;
3250
- designSystemVersionId: string;
3251
- persistentId: string;
3252
3314
  createdAt: Date;
3253
3315
  updatedAt: Date;
3254
- exportName: string;
3316
+ persistentId: string;
3317
+ description: string;
3255
3318
  properties: Record<string, {
3256
- type: string;
3257
3319
  name: string;
3258
- control: {
3259
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3260
- isArray: boolean;
3261
- };
3320
+ description: string;
3262
3321
  required: boolean;
3322
+ type?: any;
3323
+ tags?: Record<string, string> | undefined;
3263
3324
  defaultValue?: string | undefined;
3325
+ declarations?: {
3326
+ name: string;
3327
+ fileName: string;
3328
+ }[] | undefined;
3264
3329
  }>;
3330
+ designSystemVersionId: string;
3331
+ exportName: string;
3332
+ componentPath: string;
3333
+ tags?: Record<string, string> | undefined;
3265
3334
  };
3266
3335
  }>;
3267
3336
  type DTOCodeComponentResponse = z.infer<typeof DTOCodeComponentResponse>;
@@ -3273,277 +3342,368 @@ declare const DTOCodeComponentListResponse: z.ZodObject<{
3273
3342
  createdAt: z.ZodDate;
3274
3343
  updatedAt: z.ZodDate;
3275
3344
  exportName: z.ZodString;
3345
+ componentPath: z.ZodString;
3346
+ description: z.ZodString;
3276
3347
  properties: z.ZodRecord<z.ZodString, z.ZodObject<{
3277
- control: z.ZodObject<{
3278
- isArray: z.ZodBoolean;
3279
- type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
3280
- }, "strip", z.ZodTypeAny, {
3281
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3282
- isArray: boolean;
3283
- }, {
3284
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3285
- isArray: boolean;
3286
- }>;
3287
3348
  defaultValue: z.ZodOptional<z.ZodString>;
3288
3349
  name: z.ZodString;
3289
3350
  required: z.ZodBoolean;
3290
- type: z.ZodString;
3351
+ type: z.ZodType<any, z.ZodTypeDef, any>;
3352
+ declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3353
+ fileName: z.ZodString;
3354
+ name: z.ZodString;
3355
+ }, "strip", z.ZodTypeAny, {
3356
+ name: string;
3357
+ fileName: string;
3358
+ }, {
3359
+ name: string;
3360
+ fileName: string;
3361
+ }>, "many">>;
3362
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3363
+ description: z.ZodString;
3291
3364
  }, "strip", z.ZodTypeAny, {
3292
- type: string;
3293
3365
  name: string;
3294
- control: {
3295
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3296
- isArray: boolean;
3297
- };
3366
+ description: string;
3298
3367
  required: boolean;
3368
+ type?: any;
3369
+ tags?: Record<string, string> | undefined;
3299
3370
  defaultValue?: string | undefined;
3371
+ declarations?: {
3372
+ name: string;
3373
+ fileName: string;
3374
+ }[] | undefined;
3300
3375
  }, {
3301
- type: string;
3302
3376
  name: string;
3303
- control: {
3304
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3305
- isArray: boolean;
3306
- };
3377
+ description: string;
3307
3378
  required: boolean;
3379
+ type?: any;
3380
+ tags?: Record<string, string> | undefined;
3308
3381
  defaultValue?: string | undefined;
3382
+ declarations?: {
3383
+ name: string;
3384
+ fileName: string;
3385
+ }[] | undefined;
3309
3386
  }>>;
3387
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3310
3388
  }, "strip", z.ZodTypeAny, {
3311
3389
  id: string;
3312
- designSystemVersionId: string;
3313
- persistentId: string;
3314
3390
  createdAt: Date;
3315
3391
  updatedAt: Date;
3316
- exportName: string;
3392
+ persistentId: string;
3393
+ description: string;
3317
3394
  properties: Record<string, {
3318
- type: string;
3319
3395
  name: string;
3320
- control: {
3321
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3322
- isArray: boolean;
3323
- };
3396
+ description: string;
3324
3397
  required: boolean;
3398
+ type?: any;
3399
+ tags?: Record<string, string> | undefined;
3325
3400
  defaultValue?: string | undefined;
3401
+ declarations?: {
3402
+ name: string;
3403
+ fileName: string;
3404
+ }[] | undefined;
3326
3405
  }>;
3406
+ designSystemVersionId: string;
3407
+ exportName: string;
3408
+ componentPath: string;
3409
+ tags?: Record<string, string> | undefined;
3327
3410
  }, {
3328
3411
  id: string;
3329
- designSystemVersionId: string;
3330
- persistentId: string;
3331
3412
  createdAt: Date;
3332
3413
  updatedAt: Date;
3333
- exportName: string;
3414
+ persistentId: string;
3415
+ description: string;
3334
3416
  properties: Record<string, {
3335
- type: string;
3336
3417
  name: string;
3337
- control: {
3338
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3339
- isArray: boolean;
3340
- };
3418
+ description: string;
3341
3419
  required: boolean;
3420
+ type?: any;
3421
+ tags?: Record<string, string> | undefined;
3342
3422
  defaultValue?: string | undefined;
3423
+ declarations?: {
3424
+ name: string;
3425
+ fileName: string;
3426
+ }[] | undefined;
3343
3427
  }>;
3428
+ designSystemVersionId: string;
3429
+ exportName: string;
3430
+ componentPath: string;
3431
+ tags?: Record<string, string> | undefined;
3344
3432
  }>, "many">;
3345
3433
  }, "strip", z.ZodTypeAny, {
3346
3434
  codeComponents: {
3347
3435
  id: string;
3348
- designSystemVersionId: string;
3349
- persistentId: string;
3350
3436
  createdAt: Date;
3351
3437
  updatedAt: Date;
3352
- exportName: string;
3438
+ persistentId: string;
3439
+ description: string;
3353
3440
  properties: Record<string, {
3354
- type: string;
3355
3441
  name: string;
3356
- control: {
3357
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3358
- isArray: boolean;
3359
- };
3442
+ description: string;
3360
3443
  required: boolean;
3444
+ type?: any;
3445
+ tags?: Record<string, string> | undefined;
3361
3446
  defaultValue?: string | undefined;
3447
+ declarations?: {
3448
+ name: string;
3449
+ fileName: string;
3450
+ }[] | undefined;
3362
3451
  }>;
3452
+ designSystemVersionId: string;
3453
+ exportName: string;
3454
+ componentPath: string;
3455
+ tags?: Record<string, string> | undefined;
3363
3456
  }[];
3364
3457
  }, {
3365
3458
  codeComponents: {
3366
3459
  id: string;
3367
- designSystemVersionId: string;
3368
- persistentId: string;
3369
3460
  createdAt: Date;
3370
3461
  updatedAt: Date;
3371
- exportName: string;
3462
+ persistentId: string;
3463
+ description: string;
3372
3464
  properties: Record<string, {
3373
- type: string;
3374
3465
  name: string;
3375
- control: {
3376
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3377
- isArray: boolean;
3378
- };
3466
+ description: string;
3379
3467
  required: boolean;
3468
+ type?: any;
3469
+ tags?: Record<string, string> | undefined;
3380
3470
  defaultValue?: string | undefined;
3471
+ declarations?: {
3472
+ name: string;
3473
+ fileName: string;
3474
+ }[] | undefined;
3381
3475
  }>;
3476
+ designSystemVersionId: string;
3477
+ exportName: string;
3478
+ componentPath: string;
3479
+ tags?: Record<string, string> | undefined;
3382
3480
  }[];
3383
3481
  }>;
3384
3482
  type DTOCodeComponentListResponse = z.infer<typeof DTOCodeComponentListResponse>;
3385
3483
  declare const DTOCodeComponentCreateInput: z.ZodObject<{
3386
3484
  persistentId: z.ZodString;
3387
3485
  exportName: z.ZodString;
3486
+ componentPath: z.ZodString;
3487
+ description: z.ZodString;
3388
3488
  properties: z.ZodRecord<z.ZodString, z.ZodObject<{
3389
- control: z.ZodObject<{
3390
- isArray: z.ZodBoolean;
3391
- type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
3392
- }, "strip", z.ZodTypeAny, {
3393
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3394
- isArray: boolean;
3395
- }, {
3396
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3397
- isArray: boolean;
3398
- }>;
3399
3489
  defaultValue: z.ZodOptional<z.ZodString>;
3400
3490
  name: z.ZodString;
3401
3491
  required: z.ZodBoolean;
3402
- type: z.ZodString;
3492
+ type: z.ZodType<any, z.ZodTypeDef, any>;
3493
+ declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3494
+ fileName: z.ZodString;
3495
+ name: z.ZodString;
3496
+ }, "strip", z.ZodTypeAny, {
3497
+ name: string;
3498
+ fileName: string;
3499
+ }, {
3500
+ name: string;
3501
+ fileName: string;
3502
+ }>, "many">>;
3503
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3504
+ description: z.ZodString;
3403
3505
  }, "strip", z.ZodTypeAny, {
3404
- type: string;
3405
3506
  name: string;
3406
- control: {
3407
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3408
- isArray: boolean;
3409
- };
3507
+ description: string;
3410
3508
  required: boolean;
3509
+ type?: any;
3510
+ tags?: Record<string, string> | undefined;
3411
3511
  defaultValue?: string | undefined;
3512
+ declarations?: {
3513
+ name: string;
3514
+ fileName: string;
3515
+ }[] | undefined;
3412
3516
  }, {
3413
- type: string;
3414
3517
  name: string;
3415
- control: {
3416
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3417
- isArray: boolean;
3418
- };
3518
+ description: string;
3419
3519
  required: boolean;
3520
+ type?: any;
3521
+ tags?: Record<string, string> | undefined;
3420
3522
  defaultValue?: string | undefined;
3523
+ declarations?: {
3524
+ name: string;
3525
+ fileName: string;
3526
+ }[] | undefined;
3421
3527
  }>>;
3528
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3422
3529
  }, "strip", z.ZodTypeAny, {
3530
+ description: string;
3423
3531
  persistentId: string;
3424
3532
  exportName: string;
3533
+ componentPath: string;
3425
3534
  properties: Record<string, {
3426
- type: string;
3427
3535
  name: string;
3428
- control: {
3429
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3430
- isArray: boolean;
3431
- };
3536
+ description: string;
3432
3537
  required: boolean;
3538
+ type?: any;
3539
+ tags?: Record<string, string> | undefined;
3433
3540
  defaultValue?: string | undefined;
3541
+ declarations?: {
3542
+ name: string;
3543
+ fileName: string;
3544
+ }[] | undefined;
3434
3545
  }>;
3546
+ tags?: Record<string, string> | undefined;
3435
3547
  }, {
3548
+ description: string;
3436
3549
  persistentId: string;
3437
3550
  exportName: string;
3551
+ componentPath: string;
3438
3552
  properties: Record<string, {
3439
- type: string;
3440
3553
  name: string;
3441
- control: {
3442
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3443
- isArray: boolean;
3444
- };
3554
+ description: string;
3445
3555
  required: boolean;
3556
+ type?: any;
3557
+ tags?: Record<string, string> | undefined;
3446
3558
  defaultValue?: string | undefined;
3559
+ declarations?: {
3560
+ name: string;
3561
+ fileName: string;
3562
+ }[] | undefined;
3447
3563
  }>;
3564
+ tags?: Record<string, string> | undefined;
3448
3565
  }>;
3449
3566
  type DTOCodeComponentCreateInput = z.infer<typeof DTOCodeComponentCreateInput>;
3450
3567
  declare const DTOCodeComponentsCreateInput: z.ZodObject<{
3451
3568
  codeComponents: z.ZodArray<z.ZodObject<{
3452
3569
  persistentId: z.ZodString;
3453
3570
  exportName: z.ZodString;
3571
+ componentPath: z.ZodString;
3572
+ description: z.ZodString;
3454
3573
  properties: z.ZodRecord<z.ZodString, z.ZodObject<{
3455
- control: z.ZodObject<{
3456
- isArray: z.ZodBoolean;
3457
- type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
3458
- }, "strip", z.ZodTypeAny, {
3459
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3460
- isArray: boolean;
3461
- }, {
3462
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3463
- isArray: boolean;
3464
- }>;
3465
3574
  defaultValue: z.ZodOptional<z.ZodString>;
3466
3575
  name: z.ZodString;
3467
3576
  required: z.ZodBoolean;
3468
- type: z.ZodString;
3577
+ type: z.ZodType<any, z.ZodTypeDef, any>;
3578
+ declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
3579
+ fileName: z.ZodString;
3580
+ name: z.ZodString;
3581
+ }, "strip", z.ZodTypeAny, {
3582
+ name: string;
3583
+ fileName: string;
3584
+ }, {
3585
+ name: string;
3586
+ fileName: string;
3587
+ }>, "many">>;
3588
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3589
+ description: z.ZodString;
3469
3590
  }, "strip", z.ZodTypeAny, {
3470
- type: string;
3471
3591
  name: string;
3472
- control: {
3473
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3474
- isArray: boolean;
3475
- };
3592
+ description: string;
3476
3593
  required: boolean;
3594
+ type?: any;
3595
+ tags?: Record<string, string> | undefined;
3477
3596
  defaultValue?: string | undefined;
3597
+ declarations?: {
3598
+ name: string;
3599
+ fileName: string;
3600
+ }[] | undefined;
3478
3601
  }, {
3479
- type: string;
3480
3602
  name: string;
3481
- control: {
3482
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3483
- isArray: boolean;
3484
- };
3603
+ description: string;
3485
3604
  required: boolean;
3605
+ type?: any;
3606
+ tags?: Record<string, string> | undefined;
3486
3607
  defaultValue?: string | undefined;
3608
+ declarations?: {
3609
+ name: string;
3610
+ fileName: string;
3611
+ }[] | undefined;
3487
3612
  }>>;
3613
+ tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3488
3614
  }, "strip", z.ZodTypeAny, {
3615
+ description: string;
3489
3616
  persistentId: string;
3490
3617
  exportName: string;
3618
+ componentPath: string;
3491
3619
  properties: Record<string, {
3492
- type: string;
3493
3620
  name: string;
3494
- control: {
3495
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3496
- isArray: boolean;
3497
- };
3621
+ description: string;
3498
3622
  required: boolean;
3623
+ type?: any;
3624
+ tags?: Record<string, string> | undefined;
3499
3625
  defaultValue?: string | undefined;
3626
+ declarations?: {
3627
+ name: string;
3628
+ fileName: string;
3629
+ }[] | undefined;
3500
3630
  }>;
3631
+ tags?: Record<string, string> | undefined;
3501
3632
  }, {
3633
+ description: string;
3502
3634
  persistentId: string;
3503
3635
  exportName: string;
3636
+ componentPath: string;
3504
3637
  properties: Record<string, {
3505
- type: string;
3506
3638
  name: string;
3507
- control: {
3508
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3509
- isArray: boolean;
3510
- };
3639
+ description: string;
3511
3640
  required: boolean;
3641
+ type?: any;
3642
+ tags?: Record<string, string> | undefined;
3512
3643
  defaultValue?: string | undefined;
3644
+ declarations?: {
3645
+ name: string;
3646
+ fileName: string;
3647
+ }[] | undefined;
3513
3648
  }>;
3649
+ tags?: Record<string, string> | undefined;
3514
3650
  }>, "many">;
3515
3651
  }, "strip", z.ZodTypeAny, {
3516
3652
  codeComponents: {
3653
+ description: string;
3517
3654
  persistentId: string;
3518
3655
  exportName: string;
3656
+ componentPath: string;
3519
3657
  properties: Record<string, {
3520
- type: string;
3521
3658
  name: string;
3522
- control: {
3523
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3524
- isArray: boolean;
3525
- };
3659
+ description: string;
3526
3660
  required: boolean;
3661
+ type?: any;
3662
+ tags?: Record<string, string> | undefined;
3527
3663
  defaultValue?: string | undefined;
3664
+ declarations?: {
3665
+ name: string;
3666
+ fileName: string;
3667
+ }[] | undefined;
3528
3668
  }>;
3669
+ tags?: Record<string, string> | undefined;
3529
3670
  }[];
3530
3671
  }, {
3531
3672
  codeComponents: {
3673
+ description: string;
3532
3674
  persistentId: string;
3533
3675
  exportName: string;
3676
+ componentPath: string;
3534
3677
  properties: Record<string, {
3535
- type: string;
3536
3678
  name: string;
3537
- control: {
3538
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
3539
- isArray: boolean;
3540
- };
3679
+ description: string;
3541
3680
  required: boolean;
3681
+ type?: any;
3682
+ tags?: Record<string, string> | undefined;
3542
3683
  defaultValue?: string | undefined;
3684
+ declarations?: {
3685
+ name: string;
3686
+ fileName: string;
3687
+ }[] | undefined;
3543
3688
  }>;
3689
+ tags?: Record<string, string> | undefined;
3544
3690
  }[];
3545
3691
  }>;
3546
3692
  type DTOCodeComponentsCreateInput = z.infer<typeof DTOCodeComponentsCreateInput>;
3693
+ declare const DTOCodeComponentUpsertResponse: z.ZodObject<{
3694
+ created: z.ZodNumber;
3695
+ updated: z.ZodNumber;
3696
+ deleted: z.ZodNumber;
3697
+ }, "strip", z.ZodTypeAny, {
3698
+ created: number;
3699
+ updated: number;
3700
+ deleted: number;
3701
+ }, {
3702
+ created: number;
3703
+ updated: number;
3704
+ deleted: number;
3705
+ }>;
3706
+ type DTOCodeComponentUpsertResponse = z.infer<typeof DTOCodeComponentUpsertResponse>;
3547
3707
 
3548
3708
  declare const DTODesignSystemComponent: z.ZodObject<{
3549
3709
  id: z.ZodString;
@@ -3570,9 +3730,9 @@ declare const DTODesignSystemComponent: z.ZodObject<{
3570
3730
  name: string;
3571
3731
  description?: string | undefined;
3572
3732
  };
3733
+ brandId: string;
3573
3734
  createdAt: Date;
3574
3735
  updatedAt: Date;
3575
- brandId: string;
3576
3736
  }, {
3577
3737
  id: string;
3578
3738
  designSystemVersionId: string;
@@ -3581,9 +3741,9 @@ declare const DTODesignSystemComponent: z.ZodObject<{
3581
3741
  name: string;
3582
3742
  description?: string | undefined;
3583
3743
  };
3744
+ brandId: string;
3584
3745
  createdAt: Date;
3585
3746
  updatedAt: Date;
3586
- brandId: string;
3587
3747
  }>;
3588
3748
  type DTODesignSystemComponent = z.infer<typeof DTODesignSystemComponent>;
3589
3749
  declare const DTODesignSystemComponentResponse: z.ZodObject<{
@@ -3612,9 +3772,9 @@ declare const DTODesignSystemComponentResponse: z.ZodObject<{
3612
3772
  name: string;
3613
3773
  description?: string | undefined;
3614
3774
  };
3775
+ brandId: string;
3615
3776
  createdAt: Date;
3616
3777
  updatedAt: Date;
3617
- brandId: string;
3618
3778
  }, {
3619
3779
  id: string;
3620
3780
  designSystemVersionId: string;
@@ -3623,9 +3783,9 @@ declare const DTODesignSystemComponentResponse: z.ZodObject<{
3623
3783
  name: string;
3624
3784
  description?: string | undefined;
3625
3785
  };
3786
+ brandId: string;
3626
3787
  createdAt: Date;
3627
3788
  updatedAt: Date;
3628
- brandId: string;
3629
3789
  }>;
3630
3790
  }, "strip", z.ZodTypeAny, {
3631
3791
  designSystemComponent: {
@@ -3636,9 +3796,9 @@ declare const DTODesignSystemComponentResponse: z.ZodObject<{
3636
3796
  name: string;
3637
3797
  description?: string | undefined;
3638
3798
  };
3799
+ brandId: string;
3639
3800
  createdAt: Date;
3640
3801
  updatedAt: Date;
3641
- brandId: string;
3642
3802
  };
3643
3803
  }, {
3644
3804
  designSystemComponent: {
@@ -3649,9 +3809,9 @@ declare const DTODesignSystemComponentResponse: z.ZodObject<{
3649
3809
  name: string;
3650
3810
  description?: string | undefined;
3651
3811
  };
3812
+ brandId: string;
3652
3813
  createdAt: Date;
3653
3814
  updatedAt: Date;
3654
- brandId: string;
3655
3815
  };
3656
3816
  }>;
3657
3817
  type DTODesignSystemComponentResponse = z.infer<typeof DTODesignSystemComponentResponse>;
@@ -3681,9 +3841,9 @@ declare const DTODesignSystemComponentListResponse: z.ZodObject<{
3681
3841
  name: string;
3682
3842
  description?: string | undefined;
3683
3843
  };
3844
+ brandId: string;
3684
3845
  createdAt: Date;
3685
3846
  updatedAt: Date;
3686
- brandId: string;
3687
3847
  }, {
3688
3848
  id: string;
3689
3849
  designSystemVersionId: string;
@@ -3692,9 +3852,9 @@ declare const DTODesignSystemComponentListResponse: z.ZodObject<{
3692
3852
  name: string;
3693
3853
  description?: string | undefined;
3694
3854
  };
3855
+ brandId: string;
3695
3856
  createdAt: Date;
3696
3857
  updatedAt: Date;
3697
- brandId: string;
3698
3858
  }>, "many">;
3699
3859
  }, "strip", z.ZodTypeAny, {
3700
3860
  designSystemComponents: {
@@ -3705,9 +3865,9 @@ declare const DTODesignSystemComponentListResponse: z.ZodObject<{
3705
3865
  name: string;
3706
3866
  description?: string | undefined;
3707
3867
  };
3868
+ brandId: string;
3708
3869
  createdAt: Date;
3709
3870
  updatedAt: Date;
3710
- brandId: string;
3711
3871
  }[];
3712
3872
  }, {
3713
3873
  designSystemComponents: {
@@ -3718,9 +3878,9 @@ declare const DTODesignSystemComponentListResponse: z.ZodObject<{
3718
3878
  name: string;
3719
3879
  description?: string | undefined;
3720
3880
  };
3881
+ brandId: string;
3721
3882
  createdAt: Date;
3722
3883
  updatedAt: Date;
3723
- brandId: string;
3724
3884
  }[];
3725
3885
  }>;
3726
3886
  type DTODesignSystemComponentListResponse = z.infer<typeof DTODesignSystemComponentListResponse>;
@@ -9977,12 +10137,12 @@ declare const DTOStorybookEntry: z.ZodObject<{
9977
10137
  updatedAt: z.ZodDate;
9978
10138
  }, "strip", z.ZodTypeAny, {
9979
10139
  id: string;
10140
+ url: string;
9980
10141
  createdAt: Date;
9981
10142
  updatedAt: Date;
9982
10143
  sourceId: string;
9983
10144
  designSystemId: string;
9984
10145
  storyId: string;
9985
- url: string;
9986
10146
  origin: {
9987
10147
  type: "story" | "docs";
9988
10148
  name: string;
@@ -9993,12 +10153,12 @@ declare const DTOStorybookEntry: z.ZodObject<{
9993
10153
  isDeleted?: boolean | undefined;
9994
10154
  }, {
9995
10155
  id: string;
10156
+ url: string;
9996
10157
  createdAt: Date;
9997
10158
  updatedAt: Date;
9998
10159
  sourceId: string;
9999
10160
  designSystemId: string;
10000
10161
  storyId: string;
10001
- url: string;
10002
10162
  origin: {
10003
10163
  type: "story" | "docs";
10004
10164
  name: string;
@@ -10063,12 +10223,12 @@ declare const DTOStorybookEntryListResponse: z.ZodObject<{
10063
10223
  updatedAt: z.ZodDate;
10064
10224
  }, "strip", z.ZodTypeAny, {
10065
10225
  id: string;
10226
+ url: string;
10066
10227
  createdAt: Date;
10067
10228
  updatedAt: Date;
10068
10229
  sourceId: string;
10069
10230
  designSystemId: string;
10070
10231
  storyId: string;
10071
- url: string;
10072
10232
  origin: {
10073
10233
  type: "story" | "docs";
10074
10234
  name: string;
@@ -10079,12 +10239,12 @@ declare const DTOStorybookEntryListResponse: z.ZodObject<{
10079
10239
  isDeleted?: boolean | undefined;
10080
10240
  }, {
10081
10241
  id: string;
10242
+ url: string;
10082
10243
  createdAt: Date;
10083
10244
  updatedAt: Date;
10084
10245
  sourceId: string;
10085
10246
  designSystemId: string;
10086
10247
  storyId: string;
10087
- url: string;
10088
10248
  origin: {
10089
10249
  type: "story" | "docs";
10090
10250
  name: string;
@@ -10097,12 +10257,12 @@ declare const DTOStorybookEntryListResponse: z.ZodObject<{
10097
10257
  }, "strip", z.ZodTypeAny, {
10098
10258
  entries: {
10099
10259
  id: string;
10260
+ url: string;
10100
10261
  createdAt: Date;
10101
10262
  updatedAt: Date;
10102
10263
  sourceId: string;
10103
10264
  designSystemId: string;
10104
10265
  storyId: string;
10105
- url: string;
10106
10266
  origin: {
10107
10267
  type: "story" | "docs";
10108
10268
  name: string;
@@ -10115,12 +10275,12 @@ declare const DTOStorybookEntryListResponse: z.ZodObject<{
10115
10275
  }, {
10116
10276
  entries: {
10117
10277
  id: string;
10278
+ url: string;
10118
10279
  createdAt: Date;
10119
10280
  updatedAt: Date;
10120
10281
  sourceId: string;
10121
10282
  designSystemId: string;
10122
10283
  storyId: string;
10123
- url: string;
10124
10284
  origin: {
10125
10285
  type: "story" | "docs";
10126
10286
  name: string;
@@ -10161,12 +10321,12 @@ declare const DTOStorybookEntryResponse: z.ZodObject<{
10161
10321
  updatedAt: z.ZodDate;
10162
10322
  }, "strip", z.ZodTypeAny, {
10163
10323
  id: string;
10324
+ url: string;
10164
10325
  createdAt: Date;
10165
10326
  updatedAt: Date;
10166
10327
  sourceId: string;
10167
10328
  designSystemId: string;
10168
10329
  storyId: string;
10169
- url: string;
10170
10330
  origin: {
10171
10331
  type: "story" | "docs";
10172
10332
  name: string;
@@ -10177,12 +10337,12 @@ declare const DTOStorybookEntryResponse: z.ZodObject<{
10177
10337
  isDeleted?: boolean | undefined;
10178
10338
  }, {
10179
10339
  id: string;
10340
+ url: string;
10180
10341
  createdAt: Date;
10181
10342
  updatedAt: Date;
10182
10343
  sourceId: string;
10183
10344
  designSystemId: string;
10184
10345
  storyId: string;
10185
- url: string;
10186
10346
  origin: {
10187
10347
  type: "story" | "docs";
10188
10348
  name: string;
@@ -10195,12 +10355,12 @@ declare const DTOStorybookEntryResponse: z.ZodObject<{
10195
10355
  }, "strip", z.ZodTypeAny, {
10196
10356
  entry: {
10197
10357
  id: string;
10358
+ url: string;
10198
10359
  createdAt: Date;
10199
10360
  updatedAt: Date;
10200
10361
  sourceId: string;
10201
10362
  designSystemId: string;
10202
10363
  storyId: string;
10203
- url: string;
10204
10364
  origin: {
10205
10365
  type: "story" | "docs";
10206
10366
  name: string;
@@ -10213,12 +10373,12 @@ declare const DTOStorybookEntryResponse: z.ZodObject<{
10213
10373
  }, {
10214
10374
  entry: {
10215
10375
  id: string;
10376
+ url: string;
10216
10377
  createdAt: Date;
10217
10378
  updatedAt: Date;
10218
10379
  sourceId: string;
10219
10380
  designSystemId: string;
10220
10381
  storyId: string;
10221
- url: string;
10222
10382
  origin: {
10223
10383
  type: "story" | "docs";
10224
10384
  name: string;
@@ -13354,8 +13514,8 @@ declare const DTODesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type",
13354
13514
  name: string;
13355
13515
  description?: string | undefined;
13356
13516
  };
13357
- updatedAt: Date;
13358
13517
  brandId: string;
13518
+ updatedAt: Date;
13359
13519
  originStyle?: {
13360
13520
  id: string;
13361
13521
  name: string;
@@ -13378,8 +13538,8 @@ declare const DTODesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type",
13378
13538
  name: string;
13379
13539
  description?: string | undefined;
13380
13540
  };
13381
- updatedAt: Date;
13382
13541
  brandId: string;
13542
+ updatedAt: Date;
13383
13543
  originStyle?: {
13384
13544
  id: string;
13385
13545
  name: string;
@@ -15678,8 +15838,8 @@ declare const DTODesignTokenResponse: z.ZodObject<{
15678
15838
  name: string;
15679
15839
  description?: string | undefined;
15680
15840
  };
15681
- updatedAt: Date;
15682
15841
  brandId: string;
15842
+ updatedAt: Date;
15683
15843
  originStyle?: {
15684
15844
  id: string;
15685
15845
  name: string;
@@ -15702,8 +15862,8 @@ declare const DTODesignTokenResponse: z.ZodObject<{
15702
15862
  name: string;
15703
15863
  description?: string | undefined;
15704
15864
  };
15705
- updatedAt: Date;
15706
15865
  brandId: string;
15866
+ updatedAt: Date;
15707
15867
  originStyle?: {
15708
15868
  id: string;
15709
15869
  name: string;
@@ -16080,8 +16240,8 @@ declare const DTODesignTokenResponse: z.ZodObject<{
16080
16240
  name: string;
16081
16241
  description?: string | undefined;
16082
16242
  };
16083
- updatedAt: Date;
16084
16243
  brandId: string;
16244
+ updatedAt: Date;
16085
16245
  originStyle?: {
16086
16246
  id: string;
16087
16247
  name: string;
@@ -16458,8 +16618,8 @@ declare const DTODesignTokenResponse: z.ZodObject<{
16458
16618
  name: string;
16459
16619
  description?: string | undefined;
16460
16620
  };
16461
- updatedAt: Date;
16462
16621
  brandId: string;
16622
+ updatedAt: Date;
16463
16623
  originStyle?: {
16464
16624
  id: string;
16465
16625
  name: string;
@@ -18759,8 +18919,8 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
18759
18919
  name: string;
18760
18920
  description?: string | undefined;
18761
18921
  };
18762
- updatedAt: Date;
18763
18922
  brandId: string;
18923
+ updatedAt: Date;
18764
18924
  originStyle?: {
18765
18925
  id: string;
18766
18926
  name: string;
@@ -18783,8 +18943,8 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
18783
18943
  name: string;
18784
18944
  description?: string | undefined;
18785
18945
  };
18786
- updatedAt: Date;
18787
18946
  brandId: string;
18947
+ updatedAt: Date;
18788
18948
  originStyle?: {
18789
18949
  id: string;
18790
18950
  name: string;
@@ -19161,8 +19321,8 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
19161
19321
  name: string;
19162
19322
  description?: string | undefined;
19163
19323
  };
19164
- updatedAt: Date;
19165
19324
  brandId: string;
19325
+ updatedAt: Date;
19166
19326
  originStyle?: {
19167
19327
  id: string;
19168
19328
  name: string;
@@ -19539,8 +19699,8 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
19539
19699
  name: string;
19540
19700
  description?: string | undefined;
19541
19701
  };
19542
- updatedAt: Date;
19543
19702
  brandId: string;
19703
+ updatedAt: Date;
19544
19704
  originStyle?: {
19545
19705
  id: string;
19546
19706
  name: string;
@@ -19583,7 +19743,7 @@ declare const DTODesignTokenGroup: z.ZodObject<{
19583
19743
  description?: string | undefined;
19584
19744
  };
19585
19745
  brandId: string;
19586
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19746
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19587
19747
  isRoot: boolean;
19588
19748
  childrenIds: string[];
19589
19749
  }, {
@@ -19594,7 +19754,7 @@ declare const DTODesignTokenGroup: z.ZodObject<{
19594
19754
  description?: string | undefined;
19595
19755
  };
19596
19756
  brandId: string;
19597
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19757
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19598
19758
  isRoot: boolean;
19599
19759
  childrenIds: string[];
19600
19760
  }>;
@@ -19625,7 +19785,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19625
19785
  description?: string | undefined;
19626
19786
  };
19627
19787
  brandId: string;
19628
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19788
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19629
19789
  isRoot: boolean;
19630
19790
  childrenIds: string[];
19631
19791
  }, {
@@ -19636,7 +19796,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19636
19796
  description?: string | undefined;
19637
19797
  };
19638
19798
  brandId: string;
19639
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19799
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19640
19800
  isRoot: boolean;
19641
19801
  childrenIds: string[];
19642
19802
  }>, "many">;
@@ -19649,7 +19809,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19649
19809
  description?: string | undefined;
19650
19810
  };
19651
19811
  brandId: string;
19652
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19812
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19653
19813
  isRoot: boolean;
19654
19814
  childrenIds: string[];
19655
19815
  }[];
@@ -19662,7 +19822,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19662
19822
  description?: string | undefined;
19663
19823
  };
19664
19824
  brandId: string;
19665
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19825
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19666
19826
  isRoot: boolean;
19667
19827
  childrenIds: string[];
19668
19828
  }[];
@@ -19694,7 +19854,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19694
19854
  description?: string | undefined;
19695
19855
  };
19696
19856
  brandId: string;
19697
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19857
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19698
19858
  isRoot: boolean;
19699
19859
  childrenIds: string[];
19700
19860
  }, {
@@ -19705,7 +19865,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19705
19865
  description?: string | undefined;
19706
19866
  };
19707
19867
  brandId: string;
19708
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19868
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19709
19869
  isRoot: boolean;
19710
19870
  childrenIds: string[];
19711
19871
  }>;
@@ -19718,7 +19878,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19718
19878
  description?: string | undefined;
19719
19879
  };
19720
19880
  brandId: string;
19721
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19881
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19722
19882
  isRoot: boolean;
19723
19883
  childrenIds: string[];
19724
19884
  };
@@ -19731,7 +19891,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19731
19891
  description?: string | undefined;
19732
19892
  };
19733
19893
  brandId: string;
19734
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19894
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19735
19895
  isRoot: boolean;
19736
19896
  childrenIds: string[];
19737
19897
  };
@@ -22010,7 +22170,7 @@ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
22010
22170
  description?: string | undefined;
22011
22171
  };
22012
22172
  brandId: string;
22013
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
22173
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
22014
22174
  childrenIds: string[];
22015
22175
  parentId?: string | undefined;
22016
22176
  }, {
@@ -22020,144 +22180,646 @@ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
22020
22180
  description?: string | undefined;
22021
22181
  };
22022
22182
  brandId: string;
22023
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
22183
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
22024
22184
  childrenIds: string[];
22025
22185
  parentId?: string | undefined;
22026
22186
  }>;
22027
22187
  type DTODesignTokenGroupCreatePayload = z.infer<typeof DTODesignTokenGroupCreatePayload>;
22028
22188
 
22029
- declare const DTOPublishedDocPageVisitData: z.ZodObject<{
22189
+ declare const DTODocumentationAnalyticsTimeFrame: z.ZodObject<{
22190
+ start: z.ZodDate;
22191
+ end: z.ZodOptional<z.ZodDate>;
22192
+ }, "strip", z.ZodTypeAny, {
22193
+ start: Date;
22194
+ end?: Date | undefined;
22195
+ }, {
22196
+ start: Date;
22197
+ end?: Date | undefined;
22198
+ }>;
22199
+ type DTODocumentationAnalyticsTimeFrame = z.infer<typeof DTODocumentationAnalyticsTimeFrame>;
22200
+ declare const DTOPublishedDocVisitHeatMapWeek: z.ZodObject<{
22201
+ /**
22202
+ * For which timeframe it was calculated
22203
+ */
22204
+ timeFrame: z.ZodObject<{
22205
+ start: z.ZodDate;
22206
+ end: z.ZodOptional<z.ZodDate>;
22207
+ }, "strip", z.ZodTypeAny, {
22208
+ start: Date;
22209
+ end?: Date | undefined;
22210
+ }, {
22211
+ start: Date;
22212
+ end?: Date | undefined;
22213
+ }>;
22214
+ mon: z.ZodArray<z.ZodNumber, "many">;
22215
+ tue: z.ZodArray<z.ZodNumber, "many">;
22216
+ wed: z.ZodArray<z.ZodNumber, "many">;
22217
+ thu: z.ZodArray<z.ZodNumber, "many">;
22218
+ fri: z.ZodArray<z.ZodNumber, "many">;
22219
+ sat: z.ZodArray<z.ZodNumber, "many">;
22220
+ sun: z.ZodArray<z.ZodNumber, "many">;
22221
+ }, "strip", z.ZodTypeAny, {
22222
+ timeFrame: {
22223
+ start: Date;
22224
+ end?: Date | undefined;
22225
+ };
22226
+ mon: number[];
22227
+ tue: number[];
22228
+ wed: number[];
22229
+ thu: number[];
22230
+ fri: number[];
22231
+ sat: number[];
22232
+ sun: number[];
22233
+ }, {
22234
+ timeFrame: {
22235
+ start: Date;
22236
+ end?: Date | undefined;
22237
+ };
22238
+ mon: number[];
22239
+ tue: number[];
22240
+ wed: number[];
22241
+ thu: number[];
22242
+ fri: number[];
22243
+ sat: number[];
22244
+ sun: number[];
22245
+ }>;
22246
+ type DTOPublishedDocVisitHeatMapWeek = z.infer<typeof DTOPublishedDocVisitHeatMapWeek>;
22247
+ declare const DTOPublishedDocPageVisitData: z.ZodObject<z.objectUtil.extendShape<{
22248
+ timestamp: z.ZodDate;
22030
22249
  versionId: z.ZodString;
22031
- pagePersistentId: z.ZodString;
22032
22250
  locale: z.ZodOptional<z.ZodString>;
22033
- timestamp: z.ZodDate;
22034
22251
  visits: z.ZodNumber;
22035
22252
  sessions: z.ZodNumber;
22036
- }, "strip", z.ZodTypeAny, {
22253
+ }, {
22254
+ pagePersistentId: z.ZodString;
22255
+ }>, "strip", z.ZodTypeAny, {
22037
22256
  pagePersistentId: string;
22038
- versionId: string;
22039
22257
  timestamp: Date;
22258
+ versionId: string;
22040
22259
  visits: number;
22041
22260
  sessions: number;
22042
22261
  locale?: string | undefined;
22043
22262
  }, {
22044
22263
  pagePersistentId: string;
22045
- versionId: string;
22046
22264
  timestamp: Date;
22265
+ versionId: string;
22047
22266
  visits: number;
22048
22267
  sessions: number;
22049
22268
  locale?: string | undefined;
22050
22269
  }>;
22051
22270
  type DTOPublishedDocPageVisitData = z.infer<typeof DTOPublishedDocPageVisitData>;
22052
- declare const DTODocumentationPageAnalyticsDifference: z.ZodObject<{
22053
- startDate: z.ZodDate;
22054
- endDate: z.ZodDate;
22055
- currentVisitCount: z.ZodNumber;
22056
- currentSessionCount: z.ZodNumber;
22271
+ declare const DTOPublishedDocVisitData: z.ZodObject<{
22272
+ timestamp: z.ZodDate;
22273
+ versionId: z.ZodString;
22274
+ locale: z.ZodOptional<z.ZodString>;
22275
+ visits: z.ZodNumber;
22276
+ sessions: z.ZodNumber;
22277
+ }, "strip", z.ZodTypeAny, {
22278
+ timestamp: Date;
22279
+ versionId: string;
22280
+ visits: number;
22281
+ sessions: number;
22282
+ locale?: string | undefined;
22283
+ }, {
22284
+ timestamp: Date;
22285
+ versionId: string;
22286
+ visits: number;
22287
+ sessions: number;
22288
+ locale?: string | undefined;
22289
+ }>;
22290
+ type DTOPublishedDocVisitData = z.infer<typeof DTOPublishedDocVisitData>;
22291
+ declare const DTOPublishedDocAnalyticsComparisonData: z.ZodObject<{
22292
+ /**
22293
+ * For which timeframe it was calculated
22294
+ */
22295
+ timeFrame: z.ZodObject<{
22296
+ start: z.ZodDate;
22297
+ end: z.ZodOptional<z.ZodDate>;
22298
+ }, "strip", z.ZodTypeAny, {
22299
+ start: Date;
22300
+ end?: Date | undefined;
22301
+ }, {
22302
+ start: Date;
22303
+ end?: Date | undefined;
22304
+ }>;
22057
22305
  priorVisitCount: z.ZodNumber;
22058
22306
  priorSessionCount: z.ZodNumber;
22307
+ currentVisitCount: z.ZodNumber;
22308
+ currentSessionCount: z.ZodNumber;
22059
22309
  }, "strip", z.ZodTypeAny, {
22060
- startDate: Date;
22061
- endDate: Date;
22310
+ timeFrame: {
22311
+ start: Date;
22312
+ end?: Date | undefined;
22313
+ };
22314
+ priorVisitCount: number;
22315
+ priorSessionCount: number;
22062
22316
  currentVisitCount: number;
22063
22317
  currentSessionCount: number;
22318
+ }, {
22319
+ timeFrame: {
22320
+ start: Date;
22321
+ end?: Date | undefined;
22322
+ };
22064
22323
  priorVisitCount: number;
22065
22324
  priorSessionCount: number;
22325
+ currentVisitCount: number;
22326
+ currentSessionCount: number;
22327
+ }>;
22328
+ type DTOPublishedDocAnalyticsComparisonData = z.infer<typeof DTOPublishedDocAnalyticsComparisonData>;
22329
+ declare const DTOPublishedDocPageAnalyticsComparisonData: z.ZodObject<z.objectUtil.extendShape<{
22330
+ /**
22331
+ * For which timeframe it was calculated
22332
+ */
22333
+ timeFrame: z.ZodObject<{
22334
+ start: z.ZodDate;
22335
+ end: z.ZodOptional<z.ZodDate>;
22336
+ }, "strip", z.ZodTypeAny, {
22337
+ start: Date;
22338
+ end?: Date | undefined;
22339
+ }, {
22340
+ start: Date;
22341
+ end?: Date | undefined;
22342
+ }>;
22343
+ priorVisitCount: z.ZodNumber;
22344
+ priorSessionCount: z.ZodNumber;
22345
+ currentVisitCount: z.ZodNumber;
22346
+ currentSessionCount: z.ZodNumber;
22066
22347
  }, {
22067
- startDate: Date;
22068
- endDate: Date;
22348
+ pagePersistentId: z.ZodString;
22349
+ }>, "strip", z.ZodTypeAny, {
22350
+ pagePersistentId: string;
22351
+ timeFrame: {
22352
+ start: Date;
22353
+ end?: Date | undefined;
22354
+ };
22355
+ priorVisitCount: number;
22356
+ priorSessionCount: number;
22069
22357
  currentVisitCount: number;
22070
22358
  currentSessionCount: number;
22359
+ }, {
22360
+ pagePersistentId: string;
22361
+ timeFrame: {
22362
+ start: Date;
22363
+ end?: Date | undefined;
22364
+ };
22071
22365
  priorVisitCount: number;
22072
22366
  priorSessionCount: number;
22367
+ currentVisitCount: number;
22368
+ currentSessionCount: number;
22073
22369
  }>;
22074
- type DTODocumentationPageAnalyticsDifference = z.infer<typeof DTODocumentationPageAnalyticsDifference>;
22075
- declare const DTODocumentationPageIntervalDifferenceResponse: z.ZodObject<{
22076
- differences: z.ZodArray<z.ZodObject<{
22077
- startDate: z.ZodDate;
22078
- endDate: z.ZodDate;
22079
- currentVisitCount: z.ZodNumber;
22080
- currentSessionCount: z.ZodNumber;
22370
+ type DTOPublishedDocPageAnalyticsComparisonData = z.infer<typeof DTOPublishedDocPageAnalyticsComparisonData>;
22371
+ declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
22372
+ /**
22373
+ * @deprecated
22374
+ */
22375
+ analytics: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
22376
+ timestamp: z.ZodDate;
22377
+ versionId: z.ZodString;
22378
+ locale: z.ZodOptional<z.ZodString>;
22379
+ visits: z.ZodNumber;
22380
+ sessions: z.ZodNumber;
22381
+ }, {
22382
+ pagePersistentId: z.ZodString;
22383
+ }>, "strip", z.ZodTypeAny, {
22384
+ pagePersistentId: string;
22385
+ timestamp: Date;
22386
+ versionId: string;
22387
+ visits: number;
22388
+ sessions: number;
22389
+ locale?: string | undefined;
22390
+ }, {
22391
+ pagePersistentId: string;
22392
+ timestamp: Date;
22393
+ versionId: string;
22394
+ visits: number;
22395
+ sessions: number;
22396
+ locale?: string | undefined;
22397
+ }>, "many">;
22398
+ /**
22399
+ * @deprecated
22400
+ */
22401
+ perPageAnalytics: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
22402
+ timestamp: z.ZodDate;
22403
+ versionId: z.ZodString;
22404
+ locale: z.ZodOptional<z.ZodString>;
22405
+ visits: z.ZodNumber;
22406
+ sessions: z.ZodNumber;
22407
+ }, {
22408
+ pagePersistentId: z.ZodString;
22409
+ }>, "strip", z.ZodTypeAny, {
22410
+ pagePersistentId: string;
22411
+ timestamp: Date;
22412
+ versionId: string;
22413
+ visits: number;
22414
+ sessions: number;
22415
+ locale?: string | undefined;
22416
+ }, {
22417
+ pagePersistentId: string;
22418
+ timestamp: Date;
22419
+ versionId: string;
22420
+ visits: number;
22421
+ sessions: number;
22422
+ locale?: string | undefined;
22423
+ }>, "many">;
22424
+ globalAnalytics: z.ZodArray<z.ZodObject<{
22425
+ timestamp: z.ZodDate;
22426
+ versionId: z.ZodString;
22427
+ locale: z.ZodOptional<z.ZodString>;
22428
+ visits: z.ZodNumber;
22429
+ sessions: z.ZodNumber;
22430
+ }, "strip", z.ZodTypeAny, {
22431
+ timestamp: Date;
22432
+ versionId: string;
22433
+ visits: number;
22434
+ sessions: number;
22435
+ locale?: string | undefined;
22436
+ }, {
22437
+ timestamp: Date;
22438
+ versionId: string;
22439
+ visits: number;
22440
+ sessions: number;
22441
+ locale?: string | undefined;
22442
+ }>, "many">;
22443
+ pageAnalytics: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
22444
+ timestamp: z.ZodDate;
22445
+ versionId: z.ZodString;
22446
+ locale: z.ZodOptional<z.ZodString>;
22447
+ visits: z.ZodNumber;
22448
+ sessions: z.ZodNumber;
22449
+ }, {
22450
+ pagePersistentId: z.ZodString;
22451
+ }>, "strip", z.ZodTypeAny, {
22452
+ pagePersistentId: string;
22453
+ timestamp: Date;
22454
+ versionId: string;
22455
+ visits: number;
22456
+ sessions: number;
22457
+ locale?: string | undefined;
22458
+ }, {
22459
+ pagePersistentId: string;
22460
+ timestamp: Date;
22461
+ versionId: string;
22462
+ visits: number;
22463
+ sessions: number;
22464
+ locale?: string | undefined;
22465
+ }>, "many">;
22466
+ heatMapData: z.ZodArray<z.ZodObject<{
22467
+ /**
22468
+ * For which timeframe it was calculated
22469
+ */
22470
+ timeFrame: z.ZodObject<{
22471
+ start: z.ZodDate;
22472
+ end: z.ZodOptional<z.ZodDate>;
22473
+ }, "strip", z.ZodTypeAny, {
22474
+ start: Date;
22475
+ end?: Date | undefined;
22476
+ }, {
22477
+ start: Date;
22478
+ end?: Date | undefined;
22479
+ }>;
22480
+ mon: z.ZodArray<z.ZodNumber, "many">;
22481
+ tue: z.ZodArray<z.ZodNumber, "many">;
22482
+ wed: z.ZodArray<z.ZodNumber, "many">;
22483
+ thu: z.ZodArray<z.ZodNumber, "many">;
22484
+ fri: z.ZodArray<z.ZodNumber, "many">;
22485
+ sat: z.ZodArray<z.ZodNumber, "many">;
22486
+ sun: z.ZodArray<z.ZodNumber, "many">;
22487
+ }, "strip", z.ZodTypeAny, {
22488
+ timeFrame: {
22489
+ start: Date;
22490
+ end?: Date | undefined;
22491
+ };
22492
+ mon: number[];
22493
+ tue: number[];
22494
+ wed: number[];
22495
+ thu: number[];
22496
+ fri: number[];
22497
+ sat: number[];
22498
+ sun: number[];
22499
+ }, {
22500
+ timeFrame: {
22501
+ start: Date;
22502
+ end?: Date | undefined;
22503
+ };
22504
+ mon: number[];
22505
+ tue: number[];
22506
+ wed: number[];
22507
+ thu: number[];
22508
+ fri: number[];
22509
+ sat: number[];
22510
+ sun: number[];
22511
+ }>, "many">;
22512
+ comparisonData: z.ZodArray<z.ZodObject<{
22513
+ /**
22514
+ * For which timeframe it was calculated
22515
+ */
22516
+ timeFrame: z.ZodObject<{
22517
+ start: z.ZodDate;
22518
+ end: z.ZodOptional<z.ZodDate>;
22519
+ }, "strip", z.ZodTypeAny, {
22520
+ start: Date;
22521
+ end?: Date | undefined;
22522
+ }, {
22523
+ start: Date;
22524
+ end?: Date | undefined;
22525
+ }>;
22081
22526
  priorVisitCount: z.ZodNumber;
22082
22527
  priorSessionCount: z.ZodNumber;
22528
+ currentVisitCount: z.ZodNumber;
22529
+ currentSessionCount: z.ZodNumber;
22083
22530
  }, "strip", z.ZodTypeAny, {
22084
- startDate: Date;
22085
- endDate: Date;
22086
- currentVisitCount: number;
22087
- currentSessionCount: number;
22531
+ timeFrame: {
22532
+ start: Date;
22533
+ end?: Date | undefined;
22534
+ };
22088
22535
  priorVisitCount: number;
22089
22536
  priorSessionCount: number;
22090
- }, {
22091
- startDate: Date;
22092
- endDate: Date;
22093
22537
  currentVisitCount: number;
22094
22538
  currentSessionCount: number;
22539
+ }, {
22540
+ timeFrame: {
22541
+ start: Date;
22542
+ end?: Date | undefined;
22543
+ };
22095
22544
  priorVisitCount: number;
22096
22545
  priorSessionCount: number;
22097
- }>, "many">;
22098
- }, "strip", z.ZodTypeAny, {
22099
- differences: {
22100
- startDate: Date;
22101
- endDate: Date;
22102
22546
  currentVisitCount: number;
22103
22547
  currentSessionCount: number;
22548
+ }>, "many">;
22549
+ pageComparisonData: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
22550
+ /**
22551
+ * For which timeframe it was calculated
22552
+ */
22553
+ timeFrame: z.ZodObject<{
22554
+ start: z.ZodDate;
22555
+ end: z.ZodOptional<z.ZodDate>;
22556
+ }, "strip", z.ZodTypeAny, {
22557
+ start: Date;
22558
+ end?: Date | undefined;
22559
+ }, {
22560
+ start: Date;
22561
+ end?: Date | undefined;
22562
+ }>;
22563
+ priorVisitCount: z.ZodNumber;
22564
+ priorSessionCount: z.ZodNumber;
22565
+ currentVisitCount: z.ZodNumber;
22566
+ currentSessionCount: z.ZodNumber;
22567
+ }, {
22568
+ pagePersistentId: z.ZodString;
22569
+ }>, "strip", z.ZodTypeAny, {
22570
+ pagePersistentId: string;
22571
+ timeFrame: {
22572
+ start: Date;
22573
+ end?: Date | undefined;
22574
+ };
22104
22575
  priorVisitCount: number;
22105
22576
  priorSessionCount: number;
22106
- }[];
22107
- }, {
22108
- differences: {
22109
- startDate: Date;
22110
- endDate: Date;
22111
22577
  currentVisitCount: number;
22112
22578
  currentSessionCount: number;
22579
+ }, {
22580
+ pagePersistentId: string;
22581
+ timeFrame: {
22582
+ start: Date;
22583
+ end?: Date | undefined;
22584
+ };
22113
22585
  priorVisitCount: number;
22114
22586
  priorSessionCount: number;
22115
- }[];
22116
- }>;
22117
- type DTODocumentationPageIntervalDifferenceResponse = z.infer<typeof DTODocumentationPageIntervalDifferenceResponse>;
22118
- declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
22119
- analytics: z.ZodArray<z.ZodObject<{
22120
- versionId: z.ZodString;
22121
- pagePersistentId: z.ZodString;
22122
- locale: z.ZodOptional<z.ZodString>;
22123
- timestamp: z.ZodDate;
22124
- visits: z.ZodNumber;
22125
- sessions: z.ZodNumber;
22126
- }, "strip", z.ZodTypeAny, {
22587
+ currentVisitCount: number;
22588
+ currentSessionCount: number;
22589
+ }>, "many">;
22590
+ }, "strip", z.ZodTypeAny, {
22591
+ analytics: {
22127
22592
  pagePersistentId: string;
22128
- versionId: string;
22129
22593
  timestamp: Date;
22594
+ versionId: string;
22130
22595
  visits: number;
22131
22596
  sessions: number;
22132
22597
  locale?: string | undefined;
22133
- }, {
22598
+ }[];
22599
+ perPageAnalytics: {
22134
22600
  pagePersistentId: string;
22601
+ timestamp: Date;
22135
22602
  versionId: string;
22603
+ visits: number;
22604
+ sessions: number;
22605
+ locale?: string | undefined;
22606
+ }[];
22607
+ globalAnalytics: {
22136
22608
  timestamp: Date;
22609
+ versionId: string;
22137
22610
  visits: number;
22138
22611
  sessions: number;
22139
22612
  locale?: string | undefined;
22140
- }>, "many">;
22141
- }, "strip", z.ZodTypeAny, {
22142
- analytics: {
22613
+ }[];
22614
+ pageAnalytics: {
22143
22615
  pagePersistentId: string;
22144
- versionId: string;
22145
22616
  timestamp: Date;
22617
+ versionId: string;
22146
22618
  visits: number;
22147
22619
  sessions: number;
22148
22620
  locale?: string | undefined;
22149
22621
  }[];
22622
+ heatMapData: {
22623
+ timeFrame: {
22624
+ start: Date;
22625
+ end?: Date | undefined;
22626
+ };
22627
+ mon: number[];
22628
+ tue: number[];
22629
+ wed: number[];
22630
+ thu: number[];
22631
+ fri: number[];
22632
+ sat: number[];
22633
+ sun: number[];
22634
+ }[];
22635
+ comparisonData: {
22636
+ timeFrame: {
22637
+ start: Date;
22638
+ end?: Date | undefined;
22639
+ };
22640
+ priorVisitCount: number;
22641
+ priorSessionCount: number;
22642
+ currentVisitCount: number;
22643
+ currentSessionCount: number;
22644
+ }[];
22645
+ pageComparisonData: {
22646
+ pagePersistentId: string;
22647
+ timeFrame: {
22648
+ start: Date;
22649
+ end?: Date | undefined;
22650
+ };
22651
+ priorVisitCount: number;
22652
+ priorSessionCount: number;
22653
+ currentVisitCount: number;
22654
+ currentSessionCount: number;
22655
+ }[];
22150
22656
  }, {
22151
22657
  analytics: {
22152
22658
  pagePersistentId: string;
22659
+ timestamp: Date;
22660
+ versionId: string;
22661
+ visits: number;
22662
+ sessions: number;
22663
+ locale?: string | undefined;
22664
+ }[];
22665
+ perPageAnalytics: {
22666
+ pagePersistentId: string;
22667
+ timestamp: Date;
22668
+ versionId: string;
22669
+ visits: number;
22670
+ sessions: number;
22671
+ locale?: string | undefined;
22672
+ }[];
22673
+ globalAnalytics: {
22674
+ timestamp: Date;
22153
22675
  versionId: string;
22676
+ visits: number;
22677
+ sessions: number;
22678
+ locale?: string | undefined;
22679
+ }[];
22680
+ pageAnalytics: {
22681
+ pagePersistentId: string;
22154
22682
  timestamp: Date;
22683
+ versionId: string;
22155
22684
  visits: number;
22156
22685
  sessions: number;
22157
22686
  locale?: string | undefined;
22158
22687
  }[];
22688
+ heatMapData: {
22689
+ timeFrame: {
22690
+ start: Date;
22691
+ end?: Date | undefined;
22692
+ };
22693
+ mon: number[];
22694
+ tue: number[];
22695
+ wed: number[];
22696
+ thu: number[];
22697
+ fri: number[];
22698
+ sat: number[];
22699
+ sun: number[];
22700
+ }[];
22701
+ comparisonData: {
22702
+ timeFrame: {
22703
+ start: Date;
22704
+ end?: Date | undefined;
22705
+ };
22706
+ priorVisitCount: number;
22707
+ priorSessionCount: number;
22708
+ currentVisitCount: number;
22709
+ currentSessionCount: number;
22710
+ }[];
22711
+ pageComparisonData: {
22712
+ pagePersistentId: string;
22713
+ timeFrame: {
22714
+ start: Date;
22715
+ end?: Date | undefined;
22716
+ };
22717
+ priorVisitCount: number;
22718
+ priorSessionCount: number;
22719
+ currentVisitCount: number;
22720
+ currentSessionCount: number;
22721
+ }[];
22159
22722
  }>;
22160
22723
  type DTODocumentationPageAnalyticsResponse = z.infer<typeof DTODocumentationPageAnalyticsResponse>;
22724
+ declare const DTODocumentationAnalyticsRequest: z.ZodObject<{
22725
+ timeFrames: z.ZodArray<z.ZodObject<{
22726
+ start: z.ZodDate;
22727
+ end: z.ZodOptional<z.ZodDate>;
22728
+ }, "strip", z.ZodTypeAny, {
22729
+ start: Date;
22730
+ end?: Date | undefined;
22731
+ }, {
22732
+ start: Date;
22733
+ end?: Date | undefined;
22734
+ }>, "many">;
22735
+ }, "strip", z.ZodTypeAny, {
22736
+ timeFrames: {
22737
+ start: Date;
22738
+ end?: Date | undefined;
22739
+ }[];
22740
+ }, {
22741
+ timeFrames: {
22742
+ start: Date;
22743
+ end?: Date | undefined;
22744
+ }[];
22745
+ }>;
22746
+ type DTODocumentationAnalyticsRequest = z.infer<typeof DTODocumentationAnalyticsRequest>;
22747
+
22748
+ /**
22749
+ * @deprecated
22750
+ */
22751
+ declare const DTODocumentationPageAnalyticsDifference: z.ZodObject<{
22752
+ startDate: z.ZodDate;
22753
+ endDate: z.ZodOptional<z.ZodDate>;
22754
+ currentVisitCount: z.ZodNumber;
22755
+ currentSessionCount: z.ZodNumber;
22756
+ priorVisitCount: z.ZodNumber;
22757
+ priorSessionCount: z.ZodNumber;
22758
+ }, "strip", z.ZodTypeAny, {
22759
+ priorVisitCount: number;
22760
+ priorSessionCount: number;
22761
+ currentVisitCount: number;
22762
+ currentSessionCount: number;
22763
+ startDate: Date;
22764
+ endDate?: Date | undefined;
22765
+ }, {
22766
+ priorVisitCount: number;
22767
+ priorSessionCount: number;
22768
+ currentVisitCount: number;
22769
+ currentSessionCount: number;
22770
+ startDate: Date;
22771
+ endDate?: Date | undefined;
22772
+ }>;
22773
+ /**
22774
+ * @deprecated
22775
+ */
22776
+ type DTODocumentationPageAnalyticsDifference = z.infer<typeof DTODocumentationPageAnalyticsDifference>;
22777
+ /**
22778
+ * @deprecated
22779
+ */
22780
+ declare const DTODocumentationPageIntervalDifferenceResponse: z.ZodObject<{
22781
+ differences: z.ZodArray<z.ZodObject<{
22782
+ startDate: z.ZodDate;
22783
+ endDate: z.ZodOptional<z.ZodDate>;
22784
+ currentVisitCount: z.ZodNumber;
22785
+ currentSessionCount: z.ZodNumber;
22786
+ priorVisitCount: z.ZodNumber;
22787
+ priorSessionCount: z.ZodNumber;
22788
+ }, "strip", z.ZodTypeAny, {
22789
+ priorVisitCount: number;
22790
+ priorSessionCount: number;
22791
+ currentVisitCount: number;
22792
+ currentSessionCount: number;
22793
+ startDate: Date;
22794
+ endDate?: Date | undefined;
22795
+ }, {
22796
+ priorVisitCount: number;
22797
+ priorSessionCount: number;
22798
+ currentVisitCount: number;
22799
+ currentSessionCount: number;
22800
+ startDate: Date;
22801
+ endDate?: Date | undefined;
22802
+ }>, "many">;
22803
+ }, "strip", z.ZodTypeAny, {
22804
+ differences: {
22805
+ priorVisitCount: number;
22806
+ priorSessionCount: number;
22807
+ currentVisitCount: number;
22808
+ currentSessionCount: number;
22809
+ startDate: Date;
22810
+ endDate?: Date | undefined;
22811
+ }[];
22812
+ }, {
22813
+ differences: {
22814
+ priorVisitCount: number;
22815
+ priorSessionCount: number;
22816
+ currentVisitCount: number;
22817
+ currentSessionCount: number;
22818
+ startDate: Date;
22819
+ endDate?: Date | undefined;
22820
+ }[];
22821
+ }>;
22822
+ type DTODocumentationPageIntervalDifferenceResponse = z.infer<typeof DTODocumentationPageIntervalDifferenceResponse>;
22161
22823
 
22162
22824
  declare const DTODocumentationPageAnchor: z.ZodObject<{
22163
22825
  blockId: z.ZodString;
@@ -24982,7 +25644,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24982
25644
  brandPersistentId?: string | undefined;
24983
25645
  themePersistentId?: string | undefined;
24984
25646
  themePersistentIds?: string[] | undefined;
24985
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
25647
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
24986
25648
  finishedAt?: Date | undefined;
24987
25649
  index?: number | undefined;
24988
25650
  estimatedExecutionTime?: number | undefined;
@@ -25121,7 +25783,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
25121
25783
  brandPersistentId?: string | undefined;
25122
25784
  themePersistentId?: string | undefined;
25123
25785
  themePersistentIds?: string[] | undefined;
25124
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
25786
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
25125
25787
  finishedAt?: Date | undefined;
25126
25788
  index?: number | undefined;
25127
25789
  estimatedExecutionTime?: number | undefined;
@@ -25262,7 +25924,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
25262
25924
  brandPersistentId?: string | undefined;
25263
25925
  themePersistentId?: string | undefined;
25264
25926
  themePersistentIds?: string[] | undefined;
25265
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
25927
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
25266
25928
  finishedAt?: Date | undefined;
25267
25929
  index?: number | undefined;
25268
25930
  estimatedExecutionTime?: number | undefined;
@@ -25403,7 +26065,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
25403
26065
  brandPersistentId?: string | undefined;
25404
26066
  themePersistentId?: string | undefined;
25405
26067
  themePersistentIds?: string[] | undefined;
25406
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
26068
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
25407
26069
  finishedAt?: Date | undefined;
25408
26070
  index?: number | undefined;
25409
26071
  estimatedExecutionTime?: number | undefined;
@@ -26023,9 +26685,9 @@ declare const DTOFigmaComponent: z.ZodObject<{
26023
26685
  name: string;
26024
26686
  description?: string | undefined;
26025
26687
  };
26688
+ brandId: string;
26026
26689
  createdAt: Date;
26027
26690
  updatedAt: Date;
26028
- brandId: string;
26029
26691
  exportProperties: {
26030
26692
  isAsset: boolean;
26031
26693
  };
@@ -26077,9 +26739,9 @@ declare const DTOFigmaComponent: z.ZodObject<{
26077
26739
  name: string;
26078
26740
  description?: string | undefined;
26079
26741
  };
26742
+ brandId: string;
26080
26743
  createdAt: Date;
26081
26744
  updatedAt: Date;
26082
- brandId: string;
26083
26745
  exportProperties: {
26084
26746
  isAsset: boolean;
26085
26747
  };
@@ -26278,9 +26940,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
26278
26940
  name: string;
26279
26941
  description?: string | undefined;
26280
26942
  };
26943
+ brandId: string;
26281
26944
  createdAt: Date;
26282
26945
  updatedAt: Date;
26283
- brandId: string;
26284
26946
  exportProperties: {
26285
26947
  isAsset: boolean;
26286
26948
  };
@@ -26332,9 +26994,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
26332
26994
  name: string;
26333
26995
  description?: string | undefined;
26334
26996
  };
26997
+ brandId: string;
26335
26998
  createdAt: Date;
26336
26999
  updatedAt: Date;
26337
- brandId: string;
26338
27000
  exportProperties: {
26339
27001
  isAsset: boolean;
26340
27002
  };
@@ -26388,9 +27050,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
26388
27050
  name: string;
26389
27051
  description?: string | undefined;
26390
27052
  };
27053
+ brandId: string;
26391
27054
  createdAt: Date;
26392
27055
  updatedAt: Date;
26393
- brandId: string;
26394
27056
  exportProperties: {
26395
27057
  isAsset: boolean;
26396
27058
  };
@@ -26444,9 +27106,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
26444
27106
  name: string;
26445
27107
  description?: string | undefined;
26446
27108
  };
27109
+ brandId: string;
26447
27110
  createdAt: Date;
26448
27111
  updatedAt: Date;
26449
- brandId: string;
26450
27112
  exportProperties: {
26451
27113
  isAsset: boolean;
26452
27114
  };
@@ -39172,105 +39834,236 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
39172
39834
  documentationPageId: string;
39173
39835
  };
39174
39836
  }, {
39175
- pageContent: {
39176
- data: {
39177
- items: ({
39178
- type: "Block";
39179
- data: {
39180
- items: {
39181
- id: string;
39182
- props: Record<string, {
39183
- value?: any;
39184
- } & Record<string, any>>;
39185
- linksTo?: {
39186
- type: "DocumentationItem" | "PageHeading" | "Url";
39187
- url?: string | undefined;
39188
- documentationItemId?: string | undefined;
39189
- pageHeadingId?: string | undefined;
39190
- openInNewTab?: boolean | undefined;
39191
- } | undefined;
39192
- }[];
39193
- packageId: string;
39194
- indentLevel: number;
39195
- appearance?: {
39196
- numberOfColumns?: number | undefined;
39197
- itemBackgroundColor?: {
39198
- value: string;
39199
- referencedTokenId?: string | undefined;
39200
- } | undefined;
39201
- } | undefined;
39202
- variantId?: string | undefined;
39203
- };
39204
- id: string;
39205
- } | {
39206
- type: "Section";
39207
- id: string;
39208
- items: {
39209
- id: string;
39210
- title: string;
39211
- columns: {
39212
- id: string;
39213
- blocks: {
39214
- type: "Block";
39215
- data: {
39216
- items: {
39217
- id: string;
39218
- props: Record<string, {
39219
- value?: any;
39220
- } & Record<string, any>>;
39221
- linksTo?: {
39222
- type: "DocumentationItem" | "PageHeading" | "Url";
39223
- url?: string | undefined;
39224
- documentationItemId?: string | undefined;
39225
- pageHeadingId?: string | undefined;
39226
- openInNewTab?: boolean | undefined;
39227
- } | undefined;
39228
- }[];
39229
- packageId: string;
39230
- indentLevel: number;
39231
- appearance?: {
39232
- numberOfColumns?: number | undefined;
39233
- itemBackgroundColor?: {
39234
- value: string;
39235
- referencedTokenId?: string | undefined;
39236
- } | undefined;
39237
- } | undefined;
39238
- variantId?: string | undefined;
39239
- };
39240
- id: string;
39241
- }[];
39242
- }[];
39243
- }[];
39244
- appearance: {
39245
- expandToEdges: boolean;
39246
- contentExpandToEdges: boolean;
39247
- backgroundColor?: {
39248
- value: string;
39249
- referencedTokenId?: string | undefined;
39250
- } | undefined;
39251
- foregroundColor?: {
39252
- value: string;
39253
- referencedTokenId?: string | undefined;
39254
- } | undefined;
39255
- padding?: {
39256
- top?: number | undefined;
39257
- bottom?: number | undefined;
39258
- left?: number | undefined;
39259
- right?: number | undefined;
39260
- } | undefined;
39261
- };
39262
- sectionType: "Tabs";
39263
- variantId?: string | undefined;
39264
- })[];
39265
- };
39837
+ pageContent: {
39838
+ data: {
39839
+ items: ({
39840
+ type: "Block";
39841
+ data: {
39842
+ items: {
39843
+ id: string;
39844
+ props: Record<string, {
39845
+ value?: any;
39846
+ } & Record<string, any>>;
39847
+ linksTo?: {
39848
+ type: "DocumentationItem" | "PageHeading" | "Url";
39849
+ url?: string | undefined;
39850
+ documentationItemId?: string | undefined;
39851
+ pageHeadingId?: string | undefined;
39852
+ openInNewTab?: boolean | undefined;
39853
+ } | undefined;
39854
+ }[];
39855
+ packageId: string;
39856
+ indentLevel: number;
39857
+ appearance?: {
39858
+ numberOfColumns?: number | undefined;
39859
+ itemBackgroundColor?: {
39860
+ value: string;
39861
+ referencedTokenId?: string | undefined;
39862
+ } | undefined;
39863
+ } | undefined;
39864
+ variantId?: string | undefined;
39865
+ };
39866
+ id: string;
39867
+ } | {
39868
+ type: "Section";
39869
+ id: string;
39870
+ items: {
39871
+ id: string;
39872
+ title: string;
39873
+ columns: {
39874
+ id: string;
39875
+ blocks: {
39876
+ type: "Block";
39877
+ data: {
39878
+ items: {
39879
+ id: string;
39880
+ props: Record<string, {
39881
+ value?: any;
39882
+ } & Record<string, any>>;
39883
+ linksTo?: {
39884
+ type: "DocumentationItem" | "PageHeading" | "Url";
39885
+ url?: string | undefined;
39886
+ documentationItemId?: string | undefined;
39887
+ pageHeadingId?: string | undefined;
39888
+ openInNewTab?: boolean | undefined;
39889
+ } | undefined;
39890
+ }[];
39891
+ packageId: string;
39892
+ indentLevel: number;
39893
+ appearance?: {
39894
+ numberOfColumns?: number | undefined;
39895
+ itemBackgroundColor?: {
39896
+ value: string;
39897
+ referencedTokenId?: string | undefined;
39898
+ } | undefined;
39899
+ } | undefined;
39900
+ variantId?: string | undefined;
39901
+ };
39902
+ id: string;
39903
+ }[];
39904
+ }[];
39905
+ }[];
39906
+ appearance: {
39907
+ expandToEdges: boolean;
39908
+ contentExpandToEdges: boolean;
39909
+ backgroundColor?: {
39910
+ value: string;
39911
+ referencedTokenId?: string | undefined;
39912
+ } | undefined;
39913
+ foregroundColor?: {
39914
+ value: string;
39915
+ referencedTokenId?: string | undefined;
39916
+ } | undefined;
39917
+ padding?: {
39918
+ top?: number | undefined;
39919
+ bottom?: number | undefined;
39920
+ left?: number | undefined;
39921
+ right?: number | undefined;
39922
+ } | undefined;
39923
+ };
39924
+ sectionType: "Tabs";
39925
+ variantId?: string | undefined;
39926
+ })[];
39927
+ };
39928
+ id: string;
39929
+ createdAt: Date;
39930
+ updatedAt: Date;
39931
+ designSystemVersionId: string;
39932
+ documentationPageId: string;
39933
+ };
39934
+ }>;
39935
+ type DTODocumentationPageContentGetResponse = z.infer<typeof DTODocumentationPageContentGetResponse>;
39936
+
39937
+ declare const DTODocumentationPageDependencies: z.ZodObject<{
39938
+ id: z.ZodString;
39939
+ designSystemVersionId: z.ZodString;
39940
+ createdAt: z.ZodDate;
39941
+ updatedAt: z.ZodDate;
39942
+ documentationPageId: z.ZodString;
39943
+ tokenPersistentIds: z.ZodArray<z.ZodString, "many">;
39944
+ figmaComponentPersistentIds: z.ZodArray<z.ZodString, "many">;
39945
+ componentPersistentIds: z.ZodArray<z.ZodString, "many">;
39946
+ figmaNodePersistentIds: z.ZodArray<z.ZodString, "many">;
39947
+ groupPersistentIds: z.ZodArray<z.ZodString, "many">;
39948
+ propertyPersistentIds: z.ZodArray<z.ZodString, "many">;
39949
+ themePersistentIds: z.ZodArray<z.ZodString, "many">;
39950
+ documentationPagePersistentIds: z.ZodArray<z.ZodString, "many">;
39951
+ storybookEntriesStoryIds: z.ZodArray<z.ZodString, "many">;
39952
+ }, "strip", z.ZodTypeAny, {
39953
+ id: string;
39954
+ designSystemVersionId: string;
39955
+ createdAt: Date;
39956
+ updatedAt: Date;
39957
+ themePersistentIds: string[];
39958
+ documentationPageId: string;
39959
+ tokenPersistentIds: string[];
39960
+ figmaComponentPersistentIds: string[];
39961
+ componentPersistentIds: string[];
39962
+ figmaNodePersistentIds: string[];
39963
+ groupPersistentIds: string[];
39964
+ propertyPersistentIds: string[];
39965
+ documentationPagePersistentIds: string[];
39966
+ storybookEntriesStoryIds: string[];
39967
+ }, {
39968
+ id: string;
39969
+ designSystemVersionId: string;
39970
+ createdAt: Date;
39971
+ updatedAt: Date;
39972
+ themePersistentIds: string[];
39973
+ documentationPageId: string;
39974
+ tokenPersistentIds: string[];
39975
+ figmaComponentPersistentIds: string[];
39976
+ componentPersistentIds: string[];
39977
+ figmaNodePersistentIds: string[];
39978
+ groupPersistentIds: string[];
39979
+ propertyPersistentIds: string[];
39980
+ documentationPagePersistentIds: string[];
39981
+ storybookEntriesStoryIds: string[];
39982
+ }>;
39983
+ type DTODocumentationPageDependencies = z.infer<typeof DTODocumentationPageDependencies>;
39984
+ declare const DTODocumentationPageDependenciesGetResponse: z.ZodObject<{
39985
+ dependencies: z.ZodArray<z.ZodObject<{
39986
+ id: z.ZodString;
39987
+ designSystemVersionId: z.ZodString;
39988
+ createdAt: z.ZodDate;
39989
+ updatedAt: z.ZodDate;
39990
+ documentationPageId: z.ZodString;
39991
+ tokenPersistentIds: z.ZodArray<z.ZodString, "many">;
39992
+ figmaComponentPersistentIds: z.ZodArray<z.ZodString, "many">;
39993
+ componentPersistentIds: z.ZodArray<z.ZodString, "many">;
39994
+ figmaNodePersistentIds: z.ZodArray<z.ZodString, "many">;
39995
+ groupPersistentIds: z.ZodArray<z.ZodString, "many">;
39996
+ propertyPersistentIds: z.ZodArray<z.ZodString, "many">;
39997
+ themePersistentIds: z.ZodArray<z.ZodString, "many">;
39998
+ documentationPagePersistentIds: z.ZodArray<z.ZodString, "many">;
39999
+ storybookEntriesStoryIds: z.ZodArray<z.ZodString, "many">;
40000
+ }, "strip", z.ZodTypeAny, {
39266
40001
  id: string;
40002
+ designSystemVersionId: string;
39267
40003
  createdAt: Date;
39268
40004
  updatedAt: Date;
40005
+ themePersistentIds: string[];
40006
+ documentationPageId: string;
40007
+ tokenPersistentIds: string[];
40008
+ figmaComponentPersistentIds: string[];
40009
+ componentPersistentIds: string[];
40010
+ figmaNodePersistentIds: string[];
40011
+ groupPersistentIds: string[];
40012
+ propertyPersistentIds: string[];
40013
+ documentationPagePersistentIds: string[];
40014
+ storybookEntriesStoryIds: string[];
40015
+ }, {
40016
+ id: string;
39269
40017
  designSystemVersionId: string;
40018
+ createdAt: Date;
40019
+ updatedAt: Date;
40020
+ themePersistentIds: string[];
39270
40021
  documentationPageId: string;
39271
- };
40022
+ tokenPersistentIds: string[];
40023
+ figmaComponentPersistentIds: string[];
40024
+ componentPersistentIds: string[];
40025
+ figmaNodePersistentIds: string[];
40026
+ groupPersistentIds: string[];
40027
+ propertyPersistentIds: string[];
40028
+ documentationPagePersistentIds: string[];
40029
+ storybookEntriesStoryIds: string[];
40030
+ }>, "many">;
40031
+ }, "strip", z.ZodTypeAny, {
40032
+ dependencies: {
40033
+ id: string;
40034
+ designSystemVersionId: string;
40035
+ createdAt: Date;
40036
+ updatedAt: Date;
40037
+ themePersistentIds: string[];
40038
+ documentationPageId: string;
40039
+ tokenPersistentIds: string[];
40040
+ figmaComponentPersistentIds: string[];
40041
+ componentPersistentIds: string[];
40042
+ figmaNodePersistentIds: string[];
40043
+ groupPersistentIds: string[];
40044
+ propertyPersistentIds: string[];
40045
+ documentationPagePersistentIds: string[];
40046
+ storybookEntriesStoryIds: string[];
40047
+ }[];
40048
+ }, {
40049
+ dependencies: {
40050
+ id: string;
40051
+ designSystemVersionId: string;
40052
+ createdAt: Date;
40053
+ updatedAt: Date;
40054
+ themePersistentIds: string[];
40055
+ documentationPageId: string;
40056
+ tokenPersistentIds: string[];
40057
+ figmaComponentPersistentIds: string[];
40058
+ componentPersistentIds: string[];
40059
+ figmaNodePersistentIds: string[];
40060
+ groupPersistentIds: string[];
40061
+ propertyPersistentIds: string[];
40062
+ documentationPagePersistentIds: string[];
40063
+ storybookEntriesStoryIds: string[];
40064
+ }[];
39272
40065
  }>;
39273
- type DTODocumentationPageContentGetResponse = z.infer<typeof DTODocumentationPageContentGetResponse>;
40066
+ type DTODocumentationPageDependenciesGetResponse = z.infer<typeof DTODocumentationPageDependenciesGetResponse>;
39274
40067
 
39275
40068
  declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
39276
40069
  id: z.ZodString;
@@ -47190,7 +47983,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
47190
47983
  isImmutable: z.ZodBoolean;
47191
47984
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
47192
47985
  }, "strip", z.ZodTypeAny, {
47193
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
47986
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47194
47987
  id: string;
47195
47988
  designSystemVersionId: string;
47196
47989
  persistentId: string;
@@ -47211,7 +48004,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
47211
48004
  linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
47212
48005
  immutablePropertyType?: "Collection" | undefined;
47213
48006
  }, {
47214
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48007
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47215
48008
  id: string;
47216
48009
  designSystemVersionId: string;
47217
48010
  persistentId: string;
@@ -47280,7 +48073,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
47280
48073
  isImmutable: z.ZodBoolean;
47281
48074
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
47282
48075
  }, "strip", z.ZodTypeAny, {
47283
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48076
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47284
48077
  id: string;
47285
48078
  designSystemVersionId: string;
47286
48079
  persistentId: string;
@@ -47301,7 +48094,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
47301
48094
  linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
47302
48095
  immutablePropertyType?: "Collection" | undefined;
47303
48096
  }, {
47304
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48097
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47305
48098
  id: string;
47306
48099
  designSystemVersionId: string;
47307
48100
  persistentId: string;
@@ -47324,7 +48117,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
47324
48117
  }>, "many">;
47325
48118
  }, "strip", z.ZodTypeAny, {
47326
48119
  definitions: {
47327
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48120
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47328
48121
  id: string;
47329
48122
  designSystemVersionId: string;
47330
48123
  persistentId: string;
@@ -47347,7 +48140,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
47347
48140
  }[];
47348
48141
  }, {
47349
48142
  definitions: {
47350
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48143
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47351
48144
  id: string;
47352
48145
  designSystemVersionId: string;
47353
48146
  persistentId: string;
@@ -47417,7 +48210,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
47417
48210
  isImmutable: z.ZodBoolean;
47418
48211
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
47419
48212
  }, "strip", z.ZodTypeAny, {
47420
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48213
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47421
48214
  id: string;
47422
48215
  designSystemVersionId: string;
47423
48216
  persistentId: string;
@@ -47438,7 +48231,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
47438
48231
  linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
47439
48232
  immutablePropertyType?: "Collection" | undefined;
47440
48233
  }, {
47441
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48234
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47442
48235
  id: string;
47443
48236
  designSystemVersionId: string;
47444
48237
  persistentId: string;
@@ -47461,7 +48254,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
47461
48254
  }>;
47462
48255
  }, "strip", z.ZodTypeAny, {
47463
48256
  definition: {
47464
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48257
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47465
48258
  id: string;
47466
48259
  designSystemVersionId: string;
47467
48260
  persistentId: string;
@@ -47484,7 +48277,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
47484
48277
  };
47485
48278
  }, {
47486
48279
  definition: {
47487
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48280
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47488
48281
  id: string;
47489
48282
  designSystemVersionId: string;
47490
48283
  persistentId: string;
@@ -47550,7 +48343,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
47550
48343
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"FigmaComponent" | "DocumentationPage", z.ZodTypeDef, "FigmaComponent" | "DocumentationPage">>>, NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined, "FigmaComponent" | "DocumentationPage" | null | undefined>;
47551
48344
  columnWidth: z.ZodOptional<z.ZodNumber>;
47552
48345
  }, "strip", z.ZodTypeAny, {
47553
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48346
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47554
48347
  persistentId: string;
47555
48348
  meta: {
47556
48349
  name: string;
@@ -47568,7 +48361,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
47568
48361
  linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
47569
48362
  columnWidth?: number | undefined;
47570
48363
  }, {
47571
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
48364
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47572
48365
  persistentId: string;
47573
48366
  meta: {
47574
48367
  name: string;
@@ -53651,6 +54444,7 @@ declare const DTOExporter: z.ZodObject<{
53651
54444
  name: string;
53652
54445
  description: string;
53653
54446
  id: string;
54447
+ tags: string[];
53654
54448
  source: "upload" | "git";
53655
54449
  version: string;
53656
54450
  isPrivate: boolean;
@@ -53692,7 +54486,6 @@ declare const DTOExporter: z.ZodObject<{
53692
54486
  isDefault?: boolean | undefined;
53693
54487
  thumbnailURL?: string | undefined;
53694
54488
  }[]>;
53695
- tags: string[];
53696
54489
  usesLocale: boolean;
53697
54490
  usesBrands: boolean;
53698
54491
  usesThemes: boolean;
@@ -53784,6 +54577,7 @@ declare const DTOExporter: z.ZodObject<{
53784
54577
  name: string;
53785
54578
  description: string;
53786
54579
  id: string;
54580
+ tags: string[];
53787
54581
  source: "upload" | "git";
53788
54582
  version: string;
53789
54583
  isPrivate: boolean;
@@ -53825,7 +54619,6 @@ declare const DTOExporter: z.ZodObject<{
53825
54619
  isDefault?: boolean | null | undefined;
53826
54620
  thumbnailURL?: string | null | undefined;
53827
54621
  }[]>;
53828
- tags: string[];
53829
54622
  usesLocale: boolean;
53830
54623
  usesBrands: boolean;
53831
54624
  usesThemes: boolean;
@@ -54340,6 +55133,7 @@ declare const DTOExporterResponse: z.ZodObject<{
54340
55133
  name: string;
54341
55134
  description: string;
54342
55135
  id: string;
55136
+ tags: string[];
54343
55137
  source: "upload" | "git";
54344
55138
  version: string;
54345
55139
  isPrivate: boolean;
@@ -54381,7 +55175,6 @@ declare const DTOExporterResponse: z.ZodObject<{
54381
55175
  isDefault?: boolean | undefined;
54382
55176
  thumbnailURL?: string | undefined;
54383
55177
  }[]>;
54384
- tags: string[];
54385
55178
  usesLocale: boolean;
54386
55179
  usesBrands: boolean;
54387
55180
  usesThemes: boolean;
@@ -54473,6 +55266,7 @@ declare const DTOExporterResponse: z.ZodObject<{
54473
55266
  name: string;
54474
55267
  description: string;
54475
55268
  id: string;
55269
+ tags: string[];
54476
55270
  source: "upload" | "git";
54477
55271
  version: string;
54478
55272
  isPrivate: boolean;
@@ -54514,7 +55308,6 @@ declare const DTOExporterResponse: z.ZodObject<{
54514
55308
  isDefault?: boolean | null | undefined;
54515
55309
  thumbnailURL?: string | null | undefined;
54516
55310
  }[]>;
54517
- tags: string[];
54518
55311
  usesLocale: boolean;
54519
55312
  usesBrands: boolean;
54520
55313
  usesThemes: boolean;
@@ -54626,6 +55419,7 @@ declare const DTOExporterResponse: z.ZodObject<{
54626
55419
  name: string;
54627
55420
  description: string;
54628
55421
  id: string;
55422
+ tags: string[];
54629
55423
  source: "upload" | "git";
54630
55424
  version: string;
54631
55425
  isPrivate: boolean;
@@ -54667,7 +55461,6 @@ declare const DTOExporterResponse: z.ZodObject<{
54667
55461
  isDefault?: boolean | undefined;
54668
55462
  thumbnailURL?: string | undefined;
54669
55463
  }[]>;
54670
- tags: string[];
54671
55464
  usesLocale: boolean;
54672
55465
  usesBrands: boolean;
54673
55466
  usesThemes: boolean;
@@ -54766,6 +55559,7 @@ declare const DTOExporterResponse: z.ZodObject<{
54766
55559
  name: string;
54767
55560
  description: string;
54768
55561
  id: string;
55562
+ tags: string[];
54769
55563
  source: "upload" | "git";
54770
55564
  version: string;
54771
55565
  isPrivate: boolean;
@@ -54807,7 +55601,6 @@ declare const DTOExporterResponse: z.ZodObject<{
54807
55601
  isDefault?: boolean | null | undefined;
54808
55602
  thumbnailURL?: string | null | undefined;
54809
55603
  }[]>;
54810
- tags: string[];
54811
55604
  usesLocale: boolean;
54812
55605
  usesBrands: boolean;
54813
55606
  usesThemes: boolean;
@@ -55309,6 +56102,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
55309
56102
  name: string;
55310
56103
  description: string;
55311
56104
  id: string;
56105
+ tags: string[];
55312
56106
  source: "upload" | "git";
55313
56107
  version: string;
55314
56108
  isPrivate: boolean;
@@ -55350,7 +56144,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
55350
56144
  isDefault?: boolean | undefined;
55351
56145
  thumbnailURL?: string | undefined;
55352
56146
  }[]>;
55353
- tags: string[];
55354
56147
  usesLocale: boolean;
55355
56148
  usesBrands: boolean;
55356
56149
  usesThemes: boolean;
@@ -55442,6 +56235,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
55442
56235
  name: string;
55443
56236
  description: string;
55444
56237
  id: string;
56238
+ tags: string[];
55445
56239
  source: "upload" | "git";
55446
56240
  version: string;
55447
56241
  isPrivate: boolean;
@@ -55483,7 +56277,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
55483
56277
  isDefault?: boolean | null | undefined;
55484
56278
  thumbnailURL?: string | null | undefined;
55485
56279
  }[]>;
55486
- tags: string[];
55487
56280
  usesLocale: boolean;
55488
56281
  usesBrands: boolean;
55489
56282
  usesThemes: boolean;
@@ -55596,6 +56389,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
55596
56389
  name: string;
55597
56390
  description: string;
55598
56391
  id: string;
56392
+ tags: string[];
55599
56393
  source: "upload" | "git";
55600
56394
  version: string;
55601
56395
  isPrivate: boolean;
@@ -55637,7 +56431,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
55637
56431
  isDefault?: boolean | undefined;
55638
56432
  thumbnailURL?: string | undefined;
55639
56433
  }[]>;
55640
- tags: string[];
55641
56434
  usesLocale: boolean;
55642
56435
  usesBrands: boolean;
55643
56436
  usesThemes: boolean;
@@ -55737,6 +56530,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
55737
56530
  name: string;
55738
56531
  description: string;
55739
56532
  id: string;
56533
+ tags: string[];
55740
56534
  source: "upload" | "git";
55741
56535
  version: string;
55742
56536
  isPrivate: boolean;
@@ -55778,7 +56572,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
55778
56572
  isDefault?: boolean | null | undefined;
55779
56573
  thumbnailURL?: string | null | undefined;
55780
56574
  }[]>;
55781
- tags: string[];
55782
56575
  usesLocale: boolean;
55783
56576
  usesBrands: boolean;
55784
56577
  usesThemes: boolean;
@@ -57275,7 +58068,7 @@ declare const DTOExportJob: z.ZodObject<{
57275
58068
  brandPersistentId?: string | undefined;
57276
58069
  themePersistentId?: string | undefined;
57277
58070
  themePersistentIds?: string[] | undefined;
57278
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
58071
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
57279
58072
  finishedAt?: Date | undefined;
57280
58073
  index?: number | undefined;
57281
58074
  estimatedExecutionTime?: number | undefined;
@@ -57414,7 +58207,7 @@ declare const DTOExportJob: z.ZodObject<{
57414
58207
  brandPersistentId?: string | undefined;
57415
58208
  themePersistentId?: string | undefined;
57416
58209
  themePersistentIds?: string[] | undefined;
57417
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
58210
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
57418
58211
  finishedAt?: Date | undefined;
57419
58212
  index?: number | undefined;
57420
58213
  estimatedExecutionTime?: number | undefined;
@@ -58166,7 +58959,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
58166
58959
  brandPersistentId?: string | undefined;
58167
58960
  themePersistentId?: string | undefined;
58168
58961
  themePersistentIds?: string[] | undefined;
58169
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
58962
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
58170
58963
  finishedAt?: Date | undefined;
58171
58964
  index?: number | undefined;
58172
58965
  estimatedExecutionTime?: number | undefined;
@@ -58305,7 +59098,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
58305
59098
  brandPersistentId?: string | undefined;
58306
59099
  themePersistentId?: string | undefined;
58307
59100
  themePersistentIds?: string[] | undefined;
58308
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
59101
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
58309
59102
  finishedAt?: Date | undefined;
58310
59103
  index?: number | undefined;
58311
59104
  estimatedExecutionTime?: number | undefined;
@@ -58446,7 +59239,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
58446
59239
  brandPersistentId?: string | undefined;
58447
59240
  themePersistentId?: string | undefined;
58448
59241
  themePersistentIds?: string[] | undefined;
58449
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
59242
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
58450
59243
  finishedAt?: Date | undefined;
58451
59244
  index?: number | undefined;
58452
59245
  estimatedExecutionTime?: number | undefined;
@@ -58587,7 +59380,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
58587
59380
  brandPersistentId?: string | undefined;
58588
59381
  themePersistentId?: string | undefined;
58589
59382
  themePersistentIds?: string[] | undefined;
58590
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
59383
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
58591
59384
  finishedAt?: Date | undefined;
58592
59385
  index?: number | undefined;
58593
59386
  estimatedExecutionTime?: number | undefined;
@@ -59084,7 +59877,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
59084
59877
  brandId?: string | undefined;
59085
59878
  themeId?: string | undefined;
59086
59879
  themePersistentIds?: string[] | undefined;
59087
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
59880
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
59088
59881
  previewMode?: boolean | undefined;
59089
59882
  }, {
59090
59883
  designSystemVersionId: string;
@@ -59167,7 +59960,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
59167
59960
  brandId?: string | undefined;
59168
59961
  themeId?: string | undefined;
59169
59962
  themePersistentIds?: string[] | undefined;
59170
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
59963
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
59171
59964
  previewMode?: boolean | undefined;
59172
59965
  }>;
59173
59966
  type DTOExportJobCreateInput = z.infer<typeof DTOExportJobCreateInput>;
@@ -59895,7 +60688,7 @@ declare const DTOPipeline: z.ZodObject<{
59895
60688
  brandPersistentId?: string | undefined;
59896
60689
  themePersistentId?: string | undefined;
59897
60690
  themePersistentIds?: string[] | undefined;
59898
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
60691
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
59899
60692
  finishedAt?: Date | undefined;
59900
60693
  index?: number | undefined;
59901
60694
  estimatedExecutionTime?: number | undefined;
@@ -60034,7 +60827,7 @@ declare const DTOPipeline: z.ZodObject<{
60034
60827
  brandPersistentId?: string | undefined;
60035
60828
  themePersistentId?: string | undefined;
60036
60829
  themePersistentIds?: string[] | undefined;
60037
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
60830
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
60038
60831
  finishedAt?: Date | undefined;
60039
60832
  index?: number | undefined;
60040
60833
  estimatedExecutionTime?: number | undefined;
@@ -60409,7 +61202,7 @@ declare const DTOPipeline: z.ZodObject<{
60409
61202
  brandPersistentId?: string | undefined;
60410
61203
  themePersistentId?: string | undefined;
60411
61204
  themePersistentIds?: string[] | undefined;
60412
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
61205
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
60413
61206
  finishedAt?: Date | undefined;
60414
61207
  index?: number | undefined;
60415
61208
  estimatedExecutionTime?: number | undefined;
@@ -60455,7 +61248,7 @@ declare const DTOPipeline: z.ZodObject<{
60455
61248
  brandPersistentId?: string | undefined;
60456
61249
  themePersistentId?: string | undefined;
60457
61250
  themePersistentIds?: string[] | undefined;
60458
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
61251
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
60459
61252
  webhookUrl?: string | undefined;
60460
61253
  destinationSnDocs?: {
60461
61254
  environment: "Live" | "Preview";
@@ -60634,7 +61427,7 @@ declare const DTOPipeline: z.ZodObject<{
60634
61427
  brandPersistentId?: string | undefined;
60635
61428
  themePersistentId?: string | undefined;
60636
61429
  themePersistentIds?: string[] | undefined;
60637
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
61430
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
60638
61431
  finishedAt?: Date | undefined;
60639
61432
  index?: number | undefined;
60640
61433
  estimatedExecutionTime?: number | undefined;
@@ -60680,7 +61473,7 @@ declare const DTOPipeline: z.ZodObject<{
60680
61473
  brandPersistentId?: string | undefined;
60681
61474
  themePersistentId?: string | undefined;
60682
61475
  themePersistentIds?: string[] | undefined;
60683
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
61476
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
60684
61477
  webhookUrl?: string | undefined;
60685
61478
  destinationSnDocs?: {
60686
61479
  environment: "Live" | "Preview";
@@ -61465,7 +62258,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
61465
62258
  brandPersistentId?: string | undefined;
61466
62259
  themePersistentId?: string | undefined;
61467
62260
  themePersistentIds?: string[] | undefined;
61468
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
62261
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
61469
62262
  finishedAt?: Date | undefined;
61470
62263
  index?: number | undefined;
61471
62264
  estimatedExecutionTime?: number | undefined;
@@ -61604,7 +62397,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
61604
62397
  brandPersistentId?: string | undefined;
61605
62398
  themePersistentId?: string | undefined;
61606
62399
  themePersistentIds?: string[] | undefined;
61607
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
62400
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
61608
62401
  finishedAt?: Date | undefined;
61609
62402
  index?: number | undefined;
61610
62403
  estimatedExecutionTime?: number | undefined;
@@ -61979,7 +62772,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
61979
62772
  brandPersistentId?: string | undefined;
61980
62773
  themePersistentId?: string | undefined;
61981
62774
  themePersistentIds?: string[] | undefined;
61982
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
62775
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
61983
62776
  finishedAt?: Date | undefined;
61984
62777
  index?: number | undefined;
61985
62778
  estimatedExecutionTime?: number | undefined;
@@ -62025,7 +62818,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62025
62818
  brandPersistentId?: string | undefined;
62026
62819
  themePersistentId?: string | undefined;
62027
62820
  themePersistentIds?: string[] | undefined;
62028
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
62821
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62029
62822
  webhookUrl?: string | undefined;
62030
62823
  destinationSnDocs?: {
62031
62824
  environment: "Live" | "Preview";
@@ -62204,7 +62997,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62204
62997
  brandPersistentId?: string | undefined;
62205
62998
  themePersistentId?: string | undefined;
62206
62999
  themePersistentIds?: string[] | undefined;
62207
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
63000
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62208
63001
  finishedAt?: Date | undefined;
62209
63002
  index?: number | undefined;
62210
63003
  estimatedExecutionTime?: number | undefined;
@@ -62250,7 +63043,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62250
63043
  brandPersistentId?: string | undefined;
62251
63044
  themePersistentId?: string | undefined;
62252
63045
  themePersistentIds?: string[] | undefined;
62253
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
63046
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62254
63047
  webhookUrl?: string | undefined;
62255
63048
  destinationSnDocs?: {
62256
63049
  environment: "Live" | "Preview";
@@ -62431,7 +63224,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62431
63224
  brandPersistentId?: string | undefined;
62432
63225
  themePersistentId?: string | undefined;
62433
63226
  themePersistentIds?: string[] | undefined;
62434
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
63227
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62435
63228
  finishedAt?: Date | undefined;
62436
63229
  index?: number | undefined;
62437
63230
  estimatedExecutionTime?: number | undefined;
@@ -62477,7 +63270,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62477
63270
  brandPersistentId?: string | undefined;
62478
63271
  themePersistentId?: string | undefined;
62479
63272
  themePersistentIds?: string[] | undefined;
62480
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
63273
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62481
63274
  webhookUrl?: string | undefined;
62482
63275
  destinationSnDocs?: {
62483
63276
  environment: "Live" | "Preview";
@@ -62658,7 +63451,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62658
63451
  brandPersistentId?: string | undefined;
62659
63452
  themePersistentId?: string | undefined;
62660
63453
  themePersistentIds?: string[] | undefined;
62661
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
63454
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62662
63455
  finishedAt?: Date | undefined;
62663
63456
  index?: number | undefined;
62664
63457
  estimatedExecutionTime?: number | undefined;
@@ -62704,7 +63497,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
62704
63497
  brandPersistentId?: string | undefined;
62705
63498
  themePersistentId?: string | undefined;
62706
63499
  themePersistentIds?: string[] | undefined;
62707
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
63500
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
62708
63501
  webhookUrl?: string | undefined;
62709
63502
  destinationSnDocs?: {
62710
63503
  environment: "Live" | "Preview";
@@ -63490,7 +64283,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
63490
64283
  brandPersistentId?: string | undefined;
63491
64284
  themePersistentId?: string | undefined;
63492
64285
  themePersistentIds?: string[] | undefined;
63493
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
64286
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
63494
64287
  finishedAt?: Date | undefined;
63495
64288
  index?: number | undefined;
63496
64289
  estimatedExecutionTime?: number | undefined;
@@ -63629,7 +64422,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
63629
64422
  brandPersistentId?: string | undefined;
63630
64423
  themePersistentId?: string | undefined;
63631
64424
  themePersistentIds?: string[] | undefined;
63632
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
64425
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
63633
64426
  finishedAt?: Date | undefined;
63634
64427
  index?: number | undefined;
63635
64428
  estimatedExecutionTime?: number | undefined;
@@ -64004,7 +64797,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64004
64797
  brandPersistentId?: string | undefined;
64005
64798
  themePersistentId?: string | undefined;
64006
64799
  themePersistentIds?: string[] | undefined;
64007
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
64800
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64008
64801
  finishedAt?: Date | undefined;
64009
64802
  index?: number | undefined;
64010
64803
  estimatedExecutionTime?: number | undefined;
@@ -64050,7 +64843,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64050
64843
  brandPersistentId?: string | undefined;
64051
64844
  themePersistentId?: string | undefined;
64052
64845
  themePersistentIds?: string[] | undefined;
64053
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
64846
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64054
64847
  webhookUrl?: string | undefined;
64055
64848
  destinationSnDocs?: {
64056
64849
  environment: "Live" | "Preview";
@@ -64229,7 +65022,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64229
65022
  brandPersistentId?: string | undefined;
64230
65023
  themePersistentId?: string | undefined;
64231
65024
  themePersistentIds?: string[] | undefined;
64232
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
65025
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64233
65026
  finishedAt?: Date | undefined;
64234
65027
  index?: number | undefined;
64235
65028
  estimatedExecutionTime?: number | undefined;
@@ -64275,7 +65068,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64275
65068
  brandPersistentId?: string | undefined;
64276
65069
  themePersistentId?: string | undefined;
64277
65070
  themePersistentIds?: string[] | undefined;
64278
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
65071
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64279
65072
  webhookUrl?: string | undefined;
64280
65073
  destinationSnDocs?: {
64281
65074
  environment: "Live" | "Preview";
@@ -64456,7 +65249,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64456
65249
  brandPersistentId?: string | undefined;
64457
65250
  themePersistentId?: string | undefined;
64458
65251
  themePersistentIds?: string[] | undefined;
64459
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
65252
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64460
65253
  finishedAt?: Date | undefined;
64461
65254
  index?: number | undefined;
64462
65255
  estimatedExecutionTime?: number | undefined;
@@ -64502,7 +65295,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64502
65295
  brandPersistentId?: string | undefined;
64503
65296
  themePersistentId?: string | undefined;
64504
65297
  themePersistentIds?: string[] | undefined;
64505
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
65298
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64506
65299
  webhookUrl?: string | undefined;
64507
65300
  destinationSnDocs?: {
64508
65301
  environment: "Live" | "Preview";
@@ -64683,7 +65476,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64683
65476
  brandPersistentId?: string | undefined;
64684
65477
  themePersistentId?: string | undefined;
64685
65478
  themePersistentIds?: string[] | undefined;
64686
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
65479
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64687
65480
  finishedAt?: Date | undefined;
64688
65481
  index?: number | undefined;
64689
65482
  estimatedExecutionTime?: number | undefined;
@@ -64729,7 +65522,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
64729
65522
  brandPersistentId?: string | undefined;
64730
65523
  themePersistentId?: string | undefined;
64731
65524
  themePersistentIds?: string[] | undefined;
64732
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
65525
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
64733
65526
  webhookUrl?: string | undefined;
64734
65527
  destinationSnDocs?: {
64735
65528
  environment: "Live" | "Preview";
@@ -83608,8 +84401,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
83608
84401
  source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
83609
84402
  }>, "strip", z.ZodTypeAny, {
83610
84403
  id: string;
83611
- createdAt: Date;
83612
84404
  email: string;
84405
+ createdAt: Date;
83613
84406
  profile: {
83614
84407
  name: string;
83615
84408
  nickname?: string | undefined;
@@ -83641,8 +84434,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
83641
84434
  source?: "SignUp" | "Invite" | "SSO" | undefined;
83642
84435
  }, {
83643
84436
  id: string;
83644
- createdAt: Date;
83645
84437
  email: string;
84438
+ createdAt: Date;
83646
84439
  profile: {
83647
84440
  name: string;
83648
84441
  nickname?: string | undefined;
@@ -83817,8 +84610,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
83817
84610
  source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
83818
84611
  }>, "strip", z.ZodTypeAny, {
83819
84612
  id: string;
83820
- createdAt: Date;
83821
84613
  email: string;
84614
+ createdAt: Date;
83822
84615
  profile: {
83823
84616
  name: string;
83824
84617
  nickname?: string | undefined;
@@ -83850,8 +84643,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
83850
84643
  source?: "SignUp" | "Invite" | "SSO" | undefined;
83851
84644
  }, {
83852
84645
  id: string;
83853
- createdAt: Date;
83854
84646
  email: string;
84647
+ createdAt: Date;
83855
84648
  profile: {
83856
84649
  name: string;
83857
84650
  nickname?: string | undefined;
@@ -83885,8 +84678,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
83885
84678
  }, "strip", z.ZodTypeAny, {
83886
84679
  user: {
83887
84680
  id: string;
83888
- createdAt: Date;
83889
84681
  email: string;
84682
+ createdAt: Date;
83890
84683
  profile: {
83891
84684
  name: string;
83892
84685
  nickname?: string | undefined;
@@ -83920,8 +84713,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
83920
84713
  }, {
83921
84714
  user: {
83922
84715
  id: string;
83923
- createdAt: Date;
83924
84716
  email: string;
84717
+ createdAt: Date;
83925
84718
  profile: {
83926
84719
  name: string;
83927
84720
  nickname?: string | undefined;
@@ -94052,8 +94845,24 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
94052
94845
  }>;
94053
94846
  type DTOWorkspaceResponse = z.infer<typeof DTOWorkspaceResponse>;
94054
94847
 
94055
- declare function pageVisitsToDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocPageVisitData[];
94056
- declare function calculateChangeOverTime(currentIntervalData: DTOPublishedDocPageVisitData[], priorIntervalData: DTOPublishedDocPageVisitData[], priorIntervalStartDate: Date, priorIntervalEndDate: Date): DTODocumentationPageAnalyticsDifference;
94848
+ type PageAnalyticsInput = {
94849
+ pagePersistentId: string;
94850
+ priorDataPoints: PublishedDocPageVisitsEntry[];
94851
+ currentDataPoints: PublishedDocPageVisitsEntry[];
94852
+ timeFrame: DTODocumentationAnalyticsTimeFrame;
94853
+ };
94854
+ declare function documentationAnalyticsToPageComparisonDto(input: PageAnalyticsInput): DTOPublishedDocPageAnalyticsComparisonData;
94855
+ type GlobalAnalyticsInput = {
94856
+ priorDataPoints: PublishedDocPageVisitsEntry[];
94857
+ currentDataPoints: PublishedDocPageVisitsEntry[];
94858
+ timeFrame: DTODocumentationAnalyticsTimeFrame;
94859
+ };
94860
+ declare function documentationAnalyticsToComparisonDto(input: GlobalAnalyticsInput): DTOPublishedDocAnalyticsComparisonData;
94861
+
94862
+ declare function documentationAnalyticsToGlobalDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocVisitData[];
94863
+ declare function documentationAnalyticsToPageDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocPageVisitData[];
94864
+
94865
+ declare function documentationAnalyticsToHeatMapDto(entries: PublishedDocPageVisitsEntry[], timeFrame: DTODocumentationAnalyticsTimeFrame): DTOPublishedDocVisitHeatMapWeek;
94057
94866
 
94058
94867
  declare function elementGroupsToDocumentationGroupStructureDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupStructureV1[];
94059
94868
  declare function elementGroupsToDocumentationGroupDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV1[];
@@ -94864,6 +95673,7 @@ declare class ExportersEndpoint {
94864
95673
  name: string;
94865
95674
  description: string;
94866
95675
  id: string;
95676
+ tags: string[];
94867
95677
  source: "upload" | "git";
94868
95678
  version: string;
94869
95679
  isPrivate: boolean;
@@ -94905,7 +95715,6 @@ declare class ExportersEndpoint {
94905
95715
  isDefault?: boolean | undefined;
94906
95716
  thumbnailURL?: string | undefined;
94907
95717
  }[]>;
94908
- tags: string[];
94909
95718
  usesLocale: boolean;
94910
95719
  usesBrands: boolean;
94911
95720
  usesThemes: boolean;
@@ -95005,6 +95814,7 @@ declare class ExportersEndpoint {
95005
95814
  name: string;
95006
95815
  description: string;
95007
95816
  id: string;
95817
+ tags: string[];
95008
95818
  source: "upload" | "git";
95009
95819
  version: string;
95010
95820
  isPrivate: boolean;
@@ -95046,7 +95856,6 @@ declare class ExportersEndpoint {
95046
95856
  isDefault?: boolean | undefined;
95047
95857
  thumbnailURL?: string | undefined;
95048
95858
  }[]>;
95049
- tags: string[];
95050
95859
  usesLocale: boolean;
95051
95860
  usesBrands: boolean;
95052
95861
  usesThemes: boolean;
@@ -95147,6 +95956,7 @@ declare class ExportersEndpoint {
95147
95956
  name: string;
95148
95957
  description: string;
95149
95958
  id: string;
95959
+ tags: string[];
95150
95960
  source: "upload" | "git";
95151
95961
  version: string;
95152
95962
  isPrivate: boolean;
@@ -95188,7 +95998,6 @@ declare class ExportersEndpoint {
95188
95998
  isDefault?: boolean | undefined;
95189
95999
  thumbnailURL?: string | undefined;
95190
96000
  }[]>;
95191
- tags: string[];
95192
96001
  usesLocale: boolean;
95193
96002
  usesBrands: boolean;
95194
96003
  usesThemes: boolean;
@@ -95282,6 +96091,7 @@ declare class ExportersEndpoint {
95282
96091
  name: string;
95283
96092
  description: string;
95284
96093
  id: string;
96094
+ tags: string[];
95285
96095
  source: "upload" | "git";
95286
96096
  version: string;
95287
96097
  isPrivate: boolean;
@@ -95323,7 +96133,6 @@ declare class ExportersEndpoint {
95323
96133
  isDefault?: boolean | undefined;
95324
96134
  thumbnailURL?: string | undefined;
95325
96135
  }[]>;
95326
- tags: string[];
95327
96136
  usesLocale: boolean;
95328
96137
  usesBrands: boolean;
95329
96138
  usesThemes: boolean;
@@ -95422,6 +96231,7 @@ declare class ExportersEndpoint {
95422
96231
  name: string;
95423
96232
  description: string;
95424
96233
  id: string;
96234
+ tags: string[];
95425
96235
  source: "upload" | "git";
95426
96236
  version: string;
95427
96237
  isPrivate: boolean;
@@ -95463,7 +96273,6 @@ declare class ExportersEndpoint {
95463
96273
  isDefault?: boolean | undefined;
95464
96274
  thumbnailURL?: string | undefined;
95465
96275
  }[]>;
95466
- tags: string[];
95467
96276
  usesLocale: boolean;
95468
96277
  usesBrands: boolean;
95469
96278
  usesThemes: boolean;
@@ -95746,133 +96555,123 @@ declare const DTOUpdateVersionInput: z.ZodObject<{
95746
96555
  }>;
95747
96556
  type DTOUpdateVersionInput = z.infer<typeof DTOUpdateVersionInput>;
95748
96557
 
95749
- declare const DTODocumentationAnalyticsTimeFrame: z.ZodObject<{
95750
- start: z.ZodDate;
95751
- end: z.ZodDate;
95752
- }, "strip", z.ZodTypeAny, {
95753
- start: Date;
95754
- end: Date;
95755
- }, {
95756
- start: Date;
95757
- end: Date;
95758
- }>;
95759
- type DTODocumentationAnalyticsTimeFrame = z.infer<typeof DTODocumentationAnalyticsTimeFrame>;
96558
+ /**
96559
+ * @deprecated
96560
+ */
95760
96561
  declare const DTODocumentationAnalyticsTimeFrameComparison: z.ZodObject<{
95761
96562
  referencePeriod: z.ZodObject<{
95762
96563
  start: z.ZodDate;
95763
- end: z.ZodDate;
96564
+ end: z.ZodOptional<z.ZodDate>;
95764
96565
  }, "strip", z.ZodTypeAny, {
95765
96566
  start: Date;
95766
- end: Date;
96567
+ end?: Date | undefined;
95767
96568
  }, {
95768
96569
  start: Date;
95769
- end: Date;
96570
+ end?: Date | undefined;
95770
96571
  }>;
95771
96572
  baselinePeriod: z.ZodObject<{
95772
96573
  start: z.ZodDate;
95773
- end: z.ZodDate;
96574
+ end: z.ZodOptional<z.ZodDate>;
95774
96575
  }, "strip", z.ZodTypeAny, {
95775
96576
  start: Date;
95776
- end: Date;
96577
+ end?: Date | undefined;
95777
96578
  }, {
95778
96579
  start: Date;
95779
- end: Date;
96580
+ end?: Date | undefined;
95780
96581
  }>;
95781
96582
  }, "strip", z.ZodTypeAny, {
95782
96583
  referencePeriod: {
95783
96584
  start: Date;
95784
- end: Date;
96585
+ end?: Date | undefined;
95785
96586
  };
95786
96587
  baselinePeriod: {
95787
96588
  start: Date;
95788
- end: Date;
96589
+ end?: Date | undefined;
95789
96590
  };
95790
96591
  }, {
95791
96592
  referencePeriod: {
95792
96593
  start: Date;
95793
- end: Date;
96594
+ end?: Date | undefined;
95794
96595
  };
95795
96596
  baselinePeriod: {
95796
96597
  start: Date;
95797
- end: Date;
96598
+ end?: Date | undefined;
95798
96599
  };
95799
96600
  }>;
96601
+ /**
96602
+ * @deprecated
96603
+ */
95800
96604
  type DTODocumentationAnalyticsTimeFrameComparison = z.infer<typeof DTODocumentationAnalyticsTimeFrameComparison>;
95801
- declare const DTODocumentationAnalyticsQueryParams: z.ZodObject<{
95802
- start: z.ZodDate;
95803
- end: z.ZodOptional<z.ZodDate>;
95804
- }, "strip", z.ZodTypeAny, {
95805
- start: Date;
95806
- end?: Date | undefined;
95807
- }, {
95808
- start: Date;
95809
- end?: Date | undefined;
95810
- }>;
95811
- type DTODocumentationAnalyticsQueryParams = z.infer<typeof DTODocumentationAnalyticsQueryParams>;
96605
+ /**
96606
+ * @deprecated
96607
+ */
95812
96608
  declare const DTODocumentationAnalyticsDiffPayload: z.ZodObject<{
95813
96609
  timeFrames: z.ZodArray<z.ZodObject<{
95814
96610
  referencePeriod: z.ZodObject<{
95815
96611
  start: z.ZodDate;
95816
- end: z.ZodDate;
96612
+ end: z.ZodOptional<z.ZodDate>;
95817
96613
  }, "strip", z.ZodTypeAny, {
95818
96614
  start: Date;
95819
- end: Date;
96615
+ end?: Date | undefined;
95820
96616
  }, {
95821
96617
  start: Date;
95822
- end: Date;
96618
+ end?: Date | undefined;
95823
96619
  }>;
95824
96620
  baselinePeriod: z.ZodObject<{
95825
96621
  start: z.ZodDate;
95826
- end: z.ZodDate;
96622
+ end: z.ZodOptional<z.ZodDate>;
95827
96623
  }, "strip", z.ZodTypeAny, {
95828
96624
  start: Date;
95829
- end: Date;
96625
+ end?: Date | undefined;
95830
96626
  }, {
95831
96627
  start: Date;
95832
- end: Date;
96628
+ end?: Date | undefined;
95833
96629
  }>;
95834
96630
  }, "strip", z.ZodTypeAny, {
95835
96631
  referencePeriod: {
95836
96632
  start: Date;
95837
- end: Date;
96633
+ end?: Date | undefined;
95838
96634
  };
95839
96635
  baselinePeriod: {
95840
96636
  start: Date;
95841
- end: Date;
96637
+ end?: Date | undefined;
95842
96638
  };
95843
96639
  }, {
95844
96640
  referencePeriod: {
95845
96641
  start: Date;
95846
- end: Date;
96642
+ end?: Date | undefined;
95847
96643
  };
95848
96644
  baselinePeriod: {
95849
96645
  start: Date;
95850
- end: Date;
96646
+ end?: Date | undefined;
95851
96647
  };
95852
96648
  }>, "many">;
95853
96649
  }, "strip", z.ZodTypeAny, {
95854
96650
  timeFrames: {
95855
96651
  referencePeriod: {
95856
96652
  start: Date;
95857
- end: Date;
96653
+ end?: Date | undefined;
95858
96654
  };
95859
96655
  baselinePeriod: {
95860
96656
  start: Date;
95861
- end: Date;
96657
+ end?: Date | undefined;
95862
96658
  };
95863
96659
  }[];
95864
96660
  }, {
95865
96661
  timeFrames: {
95866
96662
  referencePeriod: {
95867
96663
  start: Date;
95868
- end: Date;
96664
+ end?: Date | undefined;
95869
96665
  };
95870
96666
  baselinePeriod: {
95871
96667
  start: Date;
95872
- end: Date;
96668
+ end?: Date | undefined;
95873
96669
  };
95874
96670
  }[];
95875
96671
  }>;
96672
+ /**
96673
+ * @deprecated
96674
+ */
95876
96675
  type DTODocumentationAnalyticsDiffPayload = z.infer<typeof DTODocumentationAnalyticsDiffPayload>;
95877
96676
 
95878
96677
  declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
@@ -97053,7 +97852,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
97053
97852
  brandPersistentId?: string | undefined;
97054
97853
  themePersistentId?: string | undefined;
97055
97854
  themePersistentIds?: string[] | undefined;
97056
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
97855
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
97057
97856
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
97058
97857
  }, {
97059
97858
  name: string;
@@ -97145,7 +97944,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
97145
97944
  brandPersistentId?: string | undefined;
97146
97945
  themePersistentId?: string | undefined;
97147
97946
  themePersistentIds?: string[] | undefined;
97148
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
97947
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
97149
97948
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
97150
97949
  }>;
97151
97950
  type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
@@ -97577,7 +98376,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
97577
98376
  eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
97578
98377
  themePersistentId?: string | undefined;
97579
98378
  themePersistentIds?: string[] | undefined;
97580
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
98379
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
97581
98380
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
97582
98381
  gitQuery?: {
97583
98382
  organization?: string | undefined;
@@ -97678,7 +98477,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
97678
98477
  eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
97679
98478
  themePersistentId?: string | undefined;
97680
98479
  themePersistentIds?: string[] | undefined;
97681
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
98480
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
97682
98481
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
97683
98482
  gitQuery?: {
97684
98483
  organization?: string | undefined;
@@ -98629,7 +99428,7 @@ declare class PipelinesEndpoint {
98629
99428
  brandPersistentId?: string | undefined;
98630
99429
  themePersistentId?: string | undefined;
98631
99430
  themePersistentIds?: string[] | undefined;
98632
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
99431
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
98633
99432
  finishedAt?: Date | undefined;
98634
99433
  index?: number | undefined;
98635
99434
  estimatedExecutionTime?: number | undefined;
@@ -98675,7 +99474,7 @@ declare class PipelinesEndpoint {
98675
99474
  brandPersistentId?: string | undefined;
98676
99475
  themePersistentId?: string | undefined;
98677
99476
  themePersistentIds?: string[] | undefined;
98678
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
99477
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
98679
99478
  webhookUrl?: string | undefined;
98680
99479
  destinationSnDocs?: {
98681
99480
  environment: "Live" | "Preview";
@@ -98857,7 +99656,7 @@ declare class PipelinesEndpoint {
98857
99656
  brandPersistentId?: string | undefined;
98858
99657
  themePersistentId?: string | undefined;
98859
99658
  themePersistentIds?: string[] | undefined;
98860
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
99659
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
98861
99660
  finishedAt?: Date | undefined;
98862
99661
  index?: number | undefined;
98863
99662
  estimatedExecutionTime?: number | undefined;
@@ -98903,7 +99702,7 @@ declare class PipelinesEndpoint {
98903
99702
  brandPersistentId?: string | undefined;
98904
99703
  themePersistentId?: string | undefined;
98905
99704
  themePersistentIds?: string[] | undefined;
98906
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
99705
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
98907
99706
  webhookUrl?: string | undefined;
98908
99707
  destinationSnDocs?: {
98909
99708
  environment: "Live" | "Preview";
@@ -99085,7 +99884,7 @@ declare class PipelinesEndpoint {
99085
99884
  brandPersistentId?: string | undefined;
99086
99885
  themePersistentId?: string | undefined;
99087
99886
  themePersistentIds?: string[] | undefined;
99088
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
99887
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
99089
99888
  finishedAt?: Date | undefined;
99090
99889
  index?: number | undefined;
99091
99890
  estimatedExecutionTime?: number | undefined;
@@ -99131,7 +99930,7 @@ declare class PipelinesEndpoint {
99131
99930
  brandPersistentId?: string | undefined;
99132
99931
  themePersistentId?: string | undefined;
99133
99932
  themePersistentIds?: string[] | undefined;
99134
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
99933
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
99135
99934
  webhookUrl?: string | undefined;
99136
99935
  destinationSnDocs?: {
99137
99936
  environment: "Live" | "Preview";
@@ -99305,7 +100104,7 @@ declare class PipelinesEndpoint {
99305
100104
  brandPersistentId?: string | undefined;
99306
100105
  themePersistentId?: string | undefined;
99307
100106
  themePersistentIds?: string[] | undefined;
99308
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
100107
+ exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
99309
100108
  finishedAt?: Date | undefined;
99310
100109
  index?: number | undefined;
99311
100110
  estimatedExecutionTime?: number | undefined;
@@ -99412,63 +100211,58 @@ declare class CodeComponentsEndpoint {
99412
100211
  private readonly requestExecutor;
99413
100212
  constructor(requestExecutor: RequestExecutor);
99414
100213
  import(dsId: string, vId: string, body: DTOCodeComponentsCreateInput): Promise<{
99415
- codeComponents: {
99416
- id: string;
99417
- designSystemVersionId: string;
99418
- persistentId: string;
99419
- createdAt: Date;
99420
- updatedAt: Date;
99421
- exportName: string;
99422
- properties: Record<string, {
99423
- type: string;
99424
- name: string;
99425
- control: {
99426
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
99427
- isArray: boolean;
99428
- };
99429
- required: boolean;
99430
- defaultValue?: string | undefined;
99431
- }>;
99432
- }[];
100214
+ created: number;
100215
+ updated: number;
100216
+ deleted: number;
99433
100217
  }>;
99434
100218
  list(dsId: string, vId: string): Promise<{
99435
100219
  codeComponents: {
99436
100220
  id: string;
99437
- designSystemVersionId: string;
99438
- persistentId: string;
99439
100221
  createdAt: Date;
99440
100222
  updatedAt: Date;
99441
- exportName: string;
100223
+ persistentId: string;
100224
+ description: string;
99442
100225
  properties: Record<string, {
99443
- type: string;
99444
100226
  name: string;
99445
- control: {
99446
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
99447
- isArray: boolean;
99448
- };
100227
+ description: string;
99449
100228
  required: boolean;
100229
+ type?: any;
100230
+ tags?: Record<string, string> | undefined;
99450
100231
  defaultValue?: string | undefined;
100232
+ declarations?: {
100233
+ name: string;
100234
+ fileName: string;
100235
+ }[] | undefined;
99451
100236
  }>;
100237
+ designSystemVersionId: string;
100238
+ exportName: string;
100239
+ componentPath: string;
100240
+ tags?: Record<string, string> | undefined;
99452
100241
  }[];
99453
100242
  }>;
99454
100243
  deleteAll(dsId: string, vId: string): Promise<{
99455
100244
  codeComponents: {
99456
100245
  id: string;
99457
- designSystemVersionId: string;
99458
- persistentId: string;
99459
100246
  createdAt: Date;
99460
100247
  updatedAt: Date;
99461
- exportName: string;
100248
+ persistentId: string;
100249
+ description: string;
99462
100250
  properties: Record<string, {
99463
- type: string;
99464
100251
  name: string;
99465
- control: {
99466
- type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
99467
- isArray: boolean;
99468
- };
100252
+ description: string;
99469
100253
  required: boolean;
100254
+ type?: any;
100255
+ tags?: Record<string, string> | undefined;
99470
100256
  defaultValue?: string | undefined;
100257
+ declarations?: {
100258
+ name: string;
100259
+ fileName: string;
100260
+ }[] | undefined;
99471
100261
  }>;
100262
+ designSystemVersionId: string;
100263
+ exportName: string;
100264
+ componentPath: string;
100265
+ tags?: Record<string, string> | undefined;
99472
100266
  }[];
99473
100267
  }>;
99474
100268
  }
@@ -99621,9 +100415,9 @@ declare class DesignSystemComponentEndpoint {
99621
100415
  name: string;
99622
100416
  description?: string | undefined;
99623
100417
  };
100418
+ brandId: string;
99624
100419
  createdAt: Date;
99625
100420
  updatedAt: Date;
99626
- brandId: string;
99627
100421
  }[];
99628
100422
  }>;
99629
100423
  create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<{
@@ -99635,9 +100429,9 @@ declare class DesignSystemComponentEndpoint {
99635
100429
  name: string;
99636
100430
  description?: string | undefined;
99637
100431
  };
100432
+ brandId: string;
99638
100433
  createdAt: Date;
99639
100434
  updatedAt: Date;
99640
- brandId: string;
99641
100435
  };
99642
100436
  }>;
99643
100437
  }
@@ -101260,9 +102054,9 @@ declare class FigmaComponentsEndpoint {
101260
102054
  name: string;
101261
102055
  description?: string | undefined;
101262
102056
  };
102057
+ brandId: string;
101263
102058
  createdAt: Date;
101264
102059
  updatedAt: Date;
101265
- brandId: string;
101266
102060
  exportProperties: {
101267
102061
  isAsset: boolean;
101268
102062
  };
@@ -101359,7 +102153,7 @@ declare class ElementPropertyDefinitionsEndpoint {
101359
102153
  constructor(requestExecutor: RequestExecutor);
101360
102154
  list(designSystemId: string, versionId: string): Promise<{
101361
102155
  definitions: {
101362
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
102156
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
101363
102157
  id: string;
101364
102158
  designSystemVersionId: string;
101365
102159
  persistentId: string;
@@ -101383,7 +102177,7 @@ declare class ElementPropertyDefinitionsEndpoint {
101383
102177
  }>;
101384
102178
  create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
101385
102179
  definition: {
101386
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
102180
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
101387
102181
  id: string;
101388
102182
  designSystemVersionId: string;
101389
102183
  persistentId: string;
@@ -101407,7 +102201,7 @@ declare class ElementPropertyDefinitionsEndpoint {
101407
102201
  }>;
101408
102202
  update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
101409
102203
  definition: {
101410
- type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
102204
+ type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
101411
102205
  id: string;
101412
102206
  designSystemVersionId: string;
101413
102207
  persistentId: string;
@@ -102657,7 +103451,7 @@ declare class TokenGroupsEndpoint {
102657
103451
  description?: string | undefined;
102658
103452
  };
102659
103453
  brandId: string;
102660
- tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
103454
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
102661
103455
  isRoot: boolean;
102662
103456
  childrenIds: string[];
102663
103457
  };
@@ -103029,8 +103823,8 @@ declare class TokensEndpoint {
103029
103823
  name: string;
103030
103824
  description?: string | undefined;
103031
103825
  };
103032
- updatedAt: Date;
103033
103826
  brandId: string;
103827
+ updatedAt: Date;
103034
103828
  originStyle?: {
103035
103829
  id: string;
103036
103830
  name: string;
@@ -103116,15 +103910,72 @@ declare class DesignSystemVersionsEndpoint {
103116
103910
  declare class DesignSystemAnalyticsEndpoint {
103117
103911
  private readonly requestExecutor;
103118
103912
  constructor(requestExecutor: RequestExecutor);
103119
- get(designSystemId: string, versionId: string, query: DTODocumentationAnalyticsQueryParams): Promise<{
103913
+ get(designSystemId: string, versionId: string, body: DTODocumentationAnalyticsRequest): Promise<{
103120
103914
  analytics: {
103121
103915
  pagePersistentId: string;
103916
+ timestamp: Date;
103917
+ versionId: string;
103918
+ visits: number;
103919
+ sessions: number;
103920
+ locale?: string | undefined;
103921
+ }[];
103922
+ perPageAnalytics: {
103923
+ pagePersistentId: string;
103924
+ timestamp: Date;
103925
+ versionId: string;
103926
+ visits: number;
103927
+ sessions: number;
103928
+ locale?: string | undefined;
103929
+ }[];
103930
+ globalAnalytics: {
103931
+ timestamp: Date;
103122
103932
  versionId: string;
103933
+ visits: number;
103934
+ sessions: number;
103935
+ locale?: string | undefined;
103936
+ }[];
103937
+ pageAnalytics: {
103938
+ pagePersistentId: string;
103123
103939
  timestamp: Date;
103940
+ versionId: string;
103124
103941
  visits: number;
103125
103942
  sessions: number;
103126
103943
  locale?: string | undefined;
103127
103944
  }[];
103945
+ heatMapData: {
103946
+ timeFrame: {
103947
+ start: Date;
103948
+ end?: Date | undefined;
103949
+ };
103950
+ mon: number[];
103951
+ tue: number[];
103952
+ wed: number[];
103953
+ thu: number[];
103954
+ fri: number[];
103955
+ sat: number[];
103956
+ sun: number[];
103957
+ }[];
103958
+ comparisonData: {
103959
+ timeFrame: {
103960
+ start: Date;
103961
+ end?: Date | undefined;
103962
+ };
103963
+ priorVisitCount: number;
103964
+ priorSessionCount: number;
103965
+ currentVisitCount: number;
103966
+ currentSessionCount: number;
103967
+ }[];
103968
+ pageComparisonData: {
103969
+ pagePersistentId: string;
103970
+ timeFrame: {
103971
+ start: Date;
103972
+ end?: Date | undefined;
103973
+ };
103974
+ priorVisitCount: number;
103975
+ priorSessionCount: number;
103976
+ currentVisitCount: number;
103977
+ currentSessionCount: number;
103978
+ }[];
103128
103979
  }>;
103129
103980
  }
103130
103981
 
@@ -103689,12 +104540,12 @@ declare class StorybookEntriesEndpoint {
103689
104540
  list(dsId: string): Promise<{
103690
104541
  entries: {
103691
104542
  id: string;
104543
+ url: string;
103692
104544
  createdAt: Date;
103693
104545
  updatedAt: Date;
103694
104546
  sourceId: string;
103695
104547
  designSystemId: string;
103696
104548
  storyId: string;
103697
- url: string;
103698
104549
  origin: {
103699
104550
  type: "story" | "docs";
103700
104551
  name: string;
@@ -105218,8 +106069,8 @@ declare class UsersEndpoint {
105218
106069
  getMe(): Promise<{
105219
106070
  user: {
105220
106071
  id: string;
105221
- createdAt: Date;
105222
106072
  email: string;
106073
+ createdAt: Date;
105223
106074
  profile: {
105224
106075
  name: string;
105225
106076
  nickname?: string | undefined;
@@ -105455,8 +106306,8 @@ declare class UsersEndpoint {
105455
106306
  delete(uid: string): Promise<{
105456
106307
  user: {
105457
106308
  id: string;
105458
- createdAt: Date;
105459
106309
  email: string;
106310
+ createdAt: Date;
105460
106311
  profile: {
105461
106312
  name: string;
105462
106313
  nickname?: string | undefined;
@@ -105491,8 +106342,8 @@ declare class UsersEndpoint {
105491
106342
  updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
105492
106343
  user: {
105493
106344
  id: string;
105494
- createdAt: Date;
105495
106345
  email: string;
106346
+ createdAt: Date;
105496
106347
  profile: {
105497
106348
  name: string;
105498
106349
  nickname?: string | undefined;
@@ -107667,4 +108518,4 @@ declare function isValidRedirectPath(path: string): {
107667
108518
  reason: ValidationErrorReason | undefined;
107668
108519
  };
107669
108520
 
107670
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsQueryParams, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocPageVisitData, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateChangeOverTime, calculateElementParentChain, computeDocsHierarchy, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pageVisitsToDto, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
108521
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };