@supernova-studio/client 1.6.0 → 1.6.1
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 +1123 -526
- package/dist/index.d.ts +1123 -526
- package/dist/index.js +343 -234
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +927 -818
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
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.
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
3149
|
+
persistentId: string;
|
|
3150
|
+
description: string;
|
|
3122
3151
|
properties: Record<string, {
|
|
3123
|
-
type: string;
|
|
3124
3152
|
name: string;
|
|
3125
|
-
|
|
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
|
-
|
|
3171
|
+
persistentId: string;
|
|
3172
|
+
description: string;
|
|
3139
3173
|
properties: Record<string, {
|
|
3140
|
-
type: string;
|
|
3141
3174
|
name: string;
|
|
3142
|
-
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
3246
|
+
persistentId: string;
|
|
3247
|
+
description: string;
|
|
3200
3248
|
properties: Record<string, {
|
|
3201
|
-
type: string;
|
|
3202
3249
|
name: string;
|
|
3203
|
-
|
|
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
|
-
|
|
3268
|
+
persistentId: string;
|
|
3269
|
+
description: string;
|
|
3217
3270
|
properties: Record<string, {
|
|
3218
|
-
type: string;
|
|
3219
3271
|
name: string;
|
|
3220
|
-
|
|
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
|
-
|
|
3292
|
+
persistentId: string;
|
|
3293
|
+
description: string;
|
|
3236
3294
|
properties: Record<string, {
|
|
3237
|
-
type: string;
|
|
3238
3295
|
name: string;
|
|
3239
|
-
|
|
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
|
-
|
|
3316
|
+
persistentId: string;
|
|
3317
|
+
description: string;
|
|
3255
3318
|
properties: Record<string, {
|
|
3256
|
-
type: string;
|
|
3257
3319
|
name: string;
|
|
3258
|
-
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
3392
|
+
persistentId: string;
|
|
3393
|
+
description: string;
|
|
3317
3394
|
properties: Record<string, {
|
|
3318
|
-
type: string;
|
|
3319
3395
|
name: string;
|
|
3320
|
-
|
|
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
|
-
|
|
3414
|
+
persistentId: string;
|
|
3415
|
+
description: string;
|
|
3334
3416
|
properties: Record<string, {
|
|
3335
|
-
type: string;
|
|
3336
3417
|
name: string;
|
|
3337
|
-
|
|
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
|
-
|
|
3438
|
+
persistentId: string;
|
|
3439
|
+
description: string;
|
|
3353
3440
|
properties: Record<string, {
|
|
3354
|
-
type: string;
|
|
3355
3441
|
name: string;
|
|
3356
|
-
|
|
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
|
-
|
|
3462
|
+
persistentId: string;
|
|
3463
|
+
description: string;
|
|
3372
3464
|
properties: Record<string, {
|
|
3373
|
-
type: string;
|
|
3374
3465
|
name: string;
|
|
3375
|
-
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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,541 @@ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
|
|
|
22020
22180
|
description?: string | undefined;
|
|
22021
22181
|
};
|
|
22022
22182
|
brandId: string;
|
|
22023
|
-
tokenType: "
|
|
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
|
|
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
|
-
},
|
|
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
|
|
22053
|
-
|
|
22054
|
-
|
|
22055
|
-
|
|
22056
|
-
|
|
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 DTOPubishedDocAnalyticsComparisonData: 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
|
-
|
|
22061
|
-
|
|
22062
|
-
|
|
22063
|
-
|
|
22310
|
+
timeFrame: {
|
|
22311
|
+
start: Date;
|
|
22312
|
+
end?: Date | undefined;
|
|
22313
|
+
};
|
|
22064
22314
|
priorVisitCount: number;
|
|
22065
22315
|
priorSessionCount: number;
|
|
22066
|
-
}, {
|
|
22067
|
-
startDate: Date;
|
|
22068
|
-
endDate: Date;
|
|
22069
22316
|
currentVisitCount: number;
|
|
22070
22317
|
currentSessionCount: number;
|
|
22318
|
+
}, {
|
|
22319
|
+
timeFrame: {
|
|
22320
|
+
start: Date;
|
|
22321
|
+
end?: Date | undefined;
|
|
22322
|
+
};
|
|
22071
22323
|
priorVisitCount: number;
|
|
22072
22324
|
priorSessionCount: number;
|
|
22325
|
+
currentVisitCount: number;
|
|
22326
|
+
currentSessionCount: number;
|
|
22073
22327
|
}>;
|
|
22074
|
-
type
|
|
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;
|
|
22081
|
-
priorVisitCount: z.ZodNumber;
|
|
22082
|
-
priorSessionCount: z.ZodNumber;
|
|
22083
|
-
}, "strip", z.ZodTypeAny, {
|
|
22084
|
-
startDate: Date;
|
|
22085
|
-
endDate: Date;
|
|
22086
|
-
currentVisitCount: number;
|
|
22087
|
-
currentSessionCount: number;
|
|
22088
|
-
priorVisitCount: number;
|
|
22089
|
-
priorSessionCount: number;
|
|
22090
|
-
}, {
|
|
22091
|
-
startDate: Date;
|
|
22092
|
-
endDate: Date;
|
|
22093
|
-
currentVisitCount: number;
|
|
22094
|
-
currentSessionCount: number;
|
|
22095
|
-
priorVisitCount: number;
|
|
22096
|
-
priorSessionCount: number;
|
|
22097
|
-
}>, "many">;
|
|
22098
|
-
}, "strip", z.ZodTypeAny, {
|
|
22099
|
-
differences: {
|
|
22100
|
-
startDate: Date;
|
|
22101
|
-
endDate: Date;
|
|
22102
|
-
currentVisitCount: number;
|
|
22103
|
-
currentSessionCount: number;
|
|
22104
|
-
priorVisitCount: number;
|
|
22105
|
-
priorSessionCount: number;
|
|
22106
|
-
}[];
|
|
22107
|
-
}, {
|
|
22108
|
-
differences: {
|
|
22109
|
-
startDate: Date;
|
|
22110
|
-
endDate: Date;
|
|
22111
|
-
currentVisitCount: number;
|
|
22112
|
-
currentSessionCount: number;
|
|
22113
|
-
priorVisitCount: number;
|
|
22114
|
-
priorSessionCount: number;
|
|
22115
|
-
}[];
|
|
22116
|
-
}>;
|
|
22117
|
-
type DTODocumentationPageIntervalDifferenceResponse = z.infer<typeof DTODocumentationPageIntervalDifferenceResponse>;
|
|
22328
|
+
type DTOPubishedDocAnalyticsComparisonData = z.infer<typeof DTOPubishedDocAnalyticsComparisonData>;
|
|
22118
22329
|
declare const DTODocumentationPageAnalyticsResponse: z.ZodObject<{
|
|
22119
|
-
|
|
22330
|
+
/**
|
|
22331
|
+
* @deprecated
|
|
22332
|
+
*/
|
|
22333
|
+
analytics: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
22334
|
+
timestamp: z.ZodDate;
|
|
22120
22335
|
versionId: z.ZodString;
|
|
22336
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
22337
|
+
visits: z.ZodNumber;
|
|
22338
|
+
sessions: z.ZodNumber;
|
|
22339
|
+
}, {
|
|
22121
22340
|
pagePersistentId: z.ZodString;
|
|
22341
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22342
|
+
pagePersistentId: string;
|
|
22343
|
+
timestamp: Date;
|
|
22344
|
+
versionId: string;
|
|
22345
|
+
visits: number;
|
|
22346
|
+
sessions: number;
|
|
22347
|
+
locale?: string | undefined;
|
|
22348
|
+
}, {
|
|
22349
|
+
pagePersistentId: string;
|
|
22350
|
+
timestamp: Date;
|
|
22351
|
+
versionId: string;
|
|
22352
|
+
visits: number;
|
|
22353
|
+
sessions: number;
|
|
22354
|
+
locale?: string | undefined;
|
|
22355
|
+
}>, "many">;
|
|
22356
|
+
/**
|
|
22357
|
+
* @deprecated
|
|
22358
|
+
*/
|
|
22359
|
+
perPageAnalytics: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
22360
|
+
timestamp: z.ZodDate;
|
|
22361
|
+
versionId: z.ZodString;
|
|
22122
22362
|
locale: z.ZodOptional<z.ZodString>;
|
|
22363
|
+
visits: z.ZodNumber;
|
|
22364
|
+
sessions: z.ZodNumber;
|
|
22365
|
+
}, {
|
|
22366
|
+
pagePersistentId: z.ZodString;
|
|
22367
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22368
|
+
pagePersistentId: string;
|
|
22369
|
+
timestamp: Date;
|
|
22370
|
+
versionId: string;
|
|
22371
|
+
visits: number;
|
|
22372
|
+
sessions: number;
|
|
22373
|
+
locale?: string | undefined;
|
|
22374
|
+
}, {
|
|
22375
|
+
pagePersistentId: string;
|
|
22376
|
+
timestamp: Date;
|
|
22377
|
+
versionId: string;
|
|
22378
|
+
visits: number;
|
|
22379
|
+
sessions: number;
|
|
22380
|
+
locale?: string | undefined;
|
|
22381
|
+
}>, "many">;
|
|
22382
|
+
globalAnalytics: z.ZodArray<z.ZodObject<{
|
|
22123
22383
|
timestamp: z.ZodDate;
|
|
22384
|
+
versionId: z.ZodString;
|
|
22385
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
22124
22386
|
visits: z.ZodNumber;
|
|
22125
22387
|
sessions: z.ZodNumber;
|
|
22126
22388
|
}, "strip", z.ZodTypeAny, {
|
|
22127
|
-
|
|
22389
|
+
timestamp: Date;
|
|
22128
22390
|
versionId: string;
|
|
22391
|
+
visits: number;
|
|
22392
|
+
sessions: number;
|
|
22393
|
+
locale?: string | undefined;
|
|
22394
|
+
}, {
|
|
22129
22395
|
timestamp: Date;
|
|
22396
|
+
versionId: string;
|
|
22130
22397
|
visits: number;
|
|
22131
22398
|
sessions: number;
|
|
22132
22399
|
locale?: string | undefined;
|
|
22400
|
+
}>, "many">;
|
|
22401
|
+
pageAnalytics: 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;
|
|
22133
22407
|
}, {
|
|
22408
|
+
pagePersistentId: z.ZodString;
|
|
22409
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22134
22410
|
pagePersistentId: string;
|
|
22411
|
+
timestamp: Date;
|
|
22135
22412
|
versionId: string;
|
|
22413
|
+
visits: number;
|
|
22414
|
+
sessions: number;
|
|
22415
|
+
locale?: string | undefined;
|
|
22416
|
+
}, {
|
|
22417
|
+
pagePersistentId: string;
|
|
22136
22418
|
timestamp: Date;
|
|
22419
|
+
versionId: string;
|
|
22137
22420
|
visits: number;
|
|
22138
22421
|
sessions: number;
|
|
22139
22422
|
locale?: string | undefined;
|
|
22140
22423
|
}>, "many">;
|
|
22424
|
+
heatMapData: z.ZodArray<z.ZodObject<{
|
|
22425
|
+
/**
|
|
22426
|
+
* For which timeframe it was calculated
|
|
22427
|
+
*/
|
|
22428
|
+
timeFrame: z.ZodObject<{
|
|
22429
|
+
start: z.ZodDate;
|
|
22430
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
22431
|
+
}, "strip", z.ZodTypeAny, {
|
|
22432
|
+
start: Date;
|
|
22433
|
+
end?: Date | undefined;
|
|
22434
|
+
}, {
|
|
22435
|
+
start: Date;
|
|
22436
|
+
end?: Date | undefined;
|
|
22437
|
+
}>;
|
|
22438
|
+
mon: z.ZodArray<z.ZodNumber, "many">;
|
|
22439
|
+
tue: z.ZodArray<z.ZodNumber, "many">;
|
|
22440
|
+
wed: z.ZodArray<z.ZodNumber, "many">;
|
|
22441
|
+
thu: z.ZodArray<z.ZodNumber, "many">;
|
|
22442
|
+
fri: z.ZodArray<z.ZodNumber, "many">;
|
|
22443
|
+
sat: z.ZodArray<z.ZodNumber, "many">;
|
|
22444
|
+
sun: z.ZodArray<z.ZodNumber, "many">;
|
|
22445
|
+
}, "strip", z.ZodTypeAny, {
|
|
22446
|
+
timeFrame: {
|
|
22447
|
+
start: Date;
|
|
22448
|
+
end?: Date | undefined;
|
|
22449
|
+
};
|
|
22450
|
+
mon: number[];
|
|
22451
|
+
tue: number[];
|
|
22452
|
+
wed: number[];
|
|
22453
|
+
thu: number[];
|
|
22454
|
+
fri: number[];
|
|
22455
|
+
sat: number[];
|
|
22456
|
+
sun: number[];
|
|
22457
|
+
}, {
|
|
22458
|
+
timeFrame: {
|
|
22459
|
+
start: Date;
|
|
22460
|
+
end?: Date | undefined;
|
|
22461
|
+
};
|
|
22462
|
+
mon: number[];
|
|
22463
|
+
tue: number[];
|
|
22464
|
+
wed: number[];
|
|
22465
|
+
thu: number[];
|
|
22466
|
+
fri: number[];
|
|
22467
|
+
sat: number[];
|
|
22468
|
+
sun: number[];
|
|
22469
|
+
}>, "many">;
|
|
22470
|
+
comparisonData: z.ZodArray<z.ZodObject<{
|
|
22471
|
+
/**
|
|
22472
|
+
* For which timeframe it was calculated
|
|
22473
|
+
*/
|
|
22474
|
+
timeFrame: z.ZodObject<{
|
|
22475
|
+
start: z.ZodDate;
|
|
22476
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
22477
|
+
}, "strip", z.ZodTypeAny, {
|
|
22478
|
+
start: Date;
|
|
22479
|
+
end?: Date | undefined;
|
|
22480
|
+
}, {
|
|
22481
|
+
start: Date;
|
|
22482
|
+
end?: Date | undefined;
|
|
22483
|
+
}>;
|
|
22484
|
+
priorVisitCount: z.ZodNumber;
|
|
22485
|
+
priorSessionCount: z.ZodNumber;
|
|
22486
|
+
currentVisitCount: z.ZodNumber;
|
|
22487
|
+
currentSessionCount: z.ZodNumber;
|
|
22488
|
+
}, "strip", z.ZodTypeAny, {
|
|
22489
|
+
timeFrame: {
|
|
22490
|
+
start: Date;
|
|
22491
|
+
end?: Date | undefined;
|
|
22492
|
+
};
|
|
22493
|
+
priorVisitCount: number;
|
|
22494
|
+
priorSessionCount: number;
|
|
22495
|
+
currentVisitCount: number;
|
|
22496
|
+
currentSessionCount: number;
|
|
22497
|
+
}, {
|
|
22498
|
+
timeFrame: {
|
|
22499
|
+
start: Date;
|
|
22500
|
+
end?: Date | undefined;
|
|
22501
|
+
};
|
|
22502
|
+
priorVisitCount: number;
|
|
22503
|
+
priorSessionCount: number;
|
|
22504
|
+
currentVisitCount: number;
|
|
22505
|
+
currentSessionCount: number;
|
|
22506
|
+
}>, "many">;
|
|
22141
22507
|
}, "strip", z.ZodTypeAny, {
|
|
22142
22508
|
analytics: {
|
|
22143
22509
|
pagePersistentId: string;
|
|
22510
|
+
timestamp: Date;
|
|
22144
22511
|
versionId: string;
|
|
22512
|
+
visits: number;
|
|
22513
|
+
sessions: number;
|
|
22514
|
+
locale?: string | undefined;
|
|
22515
|
+
}[];
|
|
22516
|
+
perPageAnalytics: {
|
|
22517
|
+
pagePersistentId: string;
|
|
22518
|
+
timestamp: Date;
|
|
22519
|
+
versionId: string;
|
|
22520
|
+
visits: number;
|
|
22521
|
+
sessions: number;
|
|
22522
|
+
locale?: string | undefined;
|
|
22523
|
+
}[];
|
|
22524
|
+
globalAnalytics: {
|
|
22525
|
+
timestamp: Date;
|
|
22526
|
+
versionId: string;
|
|
22527
|
+
visits: number;
|
|
22528
|
+
sessions: number;
|
|
22529
|
+
locale?: string | undefined;
|
|
22530
|
+
}[];
|
|
22531
|
+
pageAnalytics: {
|
|
22532
|
+
pagePersistentId: string;
|
|
22145
22533
|
timestamp: Date;
|
|
22534
|
+
versionId: string;
|
|
22146
22535
|
visits: number;
|
|
22147
22536
|
sessions: number;
|
|
22148
22537
|
locale?: string | undefined;
|
|
22149
22538
|
}[];
|
|
22539
|
+
heatMapData: {
|
|
22540
|
+
timeFrame: {
|
|
22541
|
+
start: Date;
|
|
22542
|
+
end?: Date | undefined;
|
|
22543
|
+
};
|
|
22544
|
+
mon: number[];
|
|
22545
|
+
tue: number[];
|
|
22546
|
+
wed: number[];
|
|
22547
|
+
thu: number[];
|
|
22548
|
+
fri: number[];
|
|
22549
|
+
sat: number[];
|
|
22550
|
+
sun: number[];
|
|
22551
|
+
}[];
|
|
22552
|
+
comparisonData: {
|
|
22553
|
+
timeFrame: {
|
|
22554
|
+
start: Date;
|
|
22555
|
+
end?: Date | undefined;
|
|
22556
|
+
};
|
|
22557
|
+
priorVisitCount: number;
|
|
22558
|
+
priorSessionCount: number;
|
|
22559
|
+
currentVisitCount: number;
|
|
22560
|
+
currentSessionCount: number;
|
|
22561
|
+
}[];
|
|
22150
22562
|
}, {
|
|
22151
22563
|
analytics: {
|
|
22152
22564
|
pagePersistentId: string;
|
|
22565
|
+
timestamp: Date;
|
|
22566
|
+
versionId: string;
|
|
22567
|
+
visits: number;
|
|
22568
|
+
sessions: number;
|
|
22569
|
+
locale?: string | undefined;
|
|
22570
|
+
}[];
|
|
22571
|
+
perPageAnalytics: {
|
|
22572
|
+
pagePersistentId: string;
|
|
22573
|
+
timestamp: Date;
|
|
22574
|
+
versionId: string;
|
|
22575
|
+
visits: number;
|
|
22576
|
+
sessions: number;
|
|
22577
|
+
locale?: string | undefined;
|
|
22578
|
+
}[];
|
|
22579
|
+
globalAnalytics: {
|
|
22580
|
+
timestamp: Date;
|
|
22153
22581
|
versionId: string;
|
|
22582
|
+
visits: number;
|
|
22583
|
+
sessions: number;
|
|
22584
|
+
locale?: string | undefined;
|
|
22585
|
+
}[];
|
|
22586
|
+
pageAnalytics: {
|
|
22587
|
+
pagePersistentId: string;
|
|
22154
22588
|
timestamp: Date;
|
|
22589
|
+
versionId: string;
|
|
22155
22590
|
visits: number;
|
|
22156
22591
|
sessions: number;
|
|
22157
22592
|
locale?: string | undefined;
|
|
22158
22593
|
}[];
|
|
22594
|
+
heatMapData: {
|
|
22595
|
+
timeFrame: {
|
|
22596
|
+
start: Date;
|
|
22597
|
+
end?: Date | undefined;
|
|
22598
|
+
};
|
|
22599
|
+
mon: number[];
|
|
22600
|
+
tue: number[];
|
|
22601
|
+
wed: number[];
|
|
22602
|
+
thu: number[];
|
|
22603
|
+
fri: number[];
|
|
22604
|
+
sat: number[];
|
|
22605
|
+
sun: number[];
|
|
22606
|
+
}[];
|
|
22607
|
+
comparisonData: {
|
|
22608
|
+
timeFrame: {
|
|
22609
|
+
start: Date;
|
|
22610
|
+
end?: Date | undefined;
|
|
22611
|
+
};
|
|
22612
|
+
priorVisitCount: number;
|
|
22613
|
+
priorSessionCount: number;
|
|
22614
|
+
currentVisitCount: number;
|
|
22615
|
+
currentSessionCount: number;
|
|
22616
|
+
}[];
|
|
22159
22617
|
}>;
|
|
22160
22618
|
type DTODocumentationPageAnalyticsResponse = z.infer<typeof DTODocumentationPageAnalyticsResponse>;
|
|
22619
|
+
declare const DTODocumentationAnalyticsRequest: z.ZodObject<{
|
|
22620
|
+
timeFrames: z.ZodArray<z.ZodObject<{
|
|
22621
|
+
start: z.ZodDate;
|
|
22622
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
22623
|
+
}, "strip", z.ZodTypeAny, {
|
|
22624
|
+
start: Date;
|
|
22625
|
+
end?: Date | undefined;
|
|
22626
|
+
}, {
|
|
22627
|
+
start: Date;
|
|
22628
|
+
end?: Date | undefined;
|
|
22629
|
+
}>, "many">;
|
|
22630
|
+
}, "strip", z.ZodTypeAny, {
|
|
22631
|
+
timeFrames: {
|
|
22632
|
+
start: Date;
|
|
22633
|
+
end?: Date | undefined;
|
|
22634
|
+
}[];
|
|
22635
|
+
}, {
|
|
22636
|
+
timeFrames: {
|
|
22637
|
+
start: Date;
|
|
22638
|
+
end?: Date | undefined;
|
|
22639
|
+
}[];
|
|
22640
|
+
}>;
|
|
22641
|
+
type DTODocumentationAnalyticsRequest = z.infer<typeof DTODocumentationAnalyticsRequest>;
|
|
22642
|
+
|
|
22643
|
+
/**
|
|
22644
|
+
* @deprecated
|
|
22645
|
+
*/
|
|
22646
|
+
declare const DTODocumentationPageAnalyticsDifference: z.ZodObject<{
|
|
22647
|
+
startDate: z.ZodDate;
|
|
22648
|
+
endDate: z.ZodOptional<z.ZodDate>;
|
|
22649
|
+
currentVisitCount: z.ZodNumber;
|
|
22650
|
+
currentSessionCount: z.ZodNumber;
|
|
22651
|
+
priorVisitCount: z.ZodNumber;
|
|
22652
|
+
priorSessionCount: z.ZodNumber;
|
|
22653
|
+
}, "strip", z.ZodTypeAny, {
|
|
22654
|
+
priorVisitCount: number;
|
|
22655
|
+
priorSessionCount: number;
|
|
22656
|
+
currentVisitCount: number;
|
|
22657
|
+
currentSessionCount: number;
|
|
22658
|
+
startDate: Date;
|
|
22659
|
+
endDate?: Date | undefined;
|
|
22660
|
+
}, {
|
|
22661
|
+
priorVisitCount: number;
|
|
22662
|
+
priorSessionCount: number;
|
|
22663
|
+
currentVisitCount: number;
|
|
22664
|
+
currentSessionCount: number;
|
|
22665
|
+
startDate: Date;
|
|
22666
|
+
endDate?: Date | undefined;
|
|
22667
|
+
}>;
|
|
22668
|
+
/**
|
|
22669
|
+
* @deprecated
|
|
22670
|
+
*/
|
|
22671
|
+
type DTODocumentationPageAnalyticsDifference = z.infer<typeof DTODocumentationPageAnalyticsDifference>;
|
|
22672
|
+
/**
|
|
22673
|
+
* @deprecated
|
|
22674
|
+
*/
|
|
22675
|
+
declare const DTODocumentationPageIntervalDifferenceResponse: z.ZodObject<{
|
|
22676
|
+
differences: z.ZodArray<z.ZodObject<{
|
|
22677
|
+
startDate: z.ZodDate;
|
|
22678
|
+
endDate: z.ZodOptional<z.ZodDate>;
|
|
22679
|
+
currentVisitCount: z.ZodNumber;
|
|
22680
|
+
currentSessionCount: z.ZodNumber;
|
|
22681
|
+
priorVisitCount: z.ZodNumber;
|
|
22682
|
+
priorSessionCount: z.ZodNumber;
|
|
22683
|
+
}, "strip", z.ZodTypeAny, {
|
|
22684
|
+
priorVisitCount: number;
|
|
22685
|
+
priorSessionCount: number;
|
|
22686
|
+
currentVisitCount: number;
|
|
22687
|
+
currentSessionCount: number;
|
|
22688
|
+
startDate: Date;
|
|
22689
|
+
endDate?: Date | undefined;
|
|
22690
|
+
}, {
|
|
22691
|
+
priorVisitCount: number;
|
|
22692
|
+
priorSessionCount: number;
|
|
22693
|
+
currentVisitCount: number;
|
|
22694
|
+
currentSessionCount: number;
|
|
22695
|
+
startDate: Date;
|
|
22696
|
+
endDate?: Date | undefined;
|
|
22697
|
+
}>, "many">;
|
|
22698
|
+
}, "strip", z.ZodTypeAny, {
|
|
22699
|
+
differences: {
|
|
22700
|
+
priorVisitCount: number;
|
|
22701
|
+
priorSessionCount: number;
|
|
22702
|
+
currentVisitCount: number;
|
|
22703
|
+
currentSessionCount: number;
|
|
22704
|
+
startDate: Date;
|
|
22705
|
+
endDate?: Date | undefined;
|
|
22706
|
+
}[];
|
|
22707
|
+
}, {
|
|
22708
|
+
differences: {
|
|
22709
|
+
priorVisitCount: number;
|
|
22710
|
+
priorSessionCount: number;
|
|
22711
|
+
currentVisitCount: number;
|
|
22712
|
+
currentSessionCount: number;
|
|
22713
|
+
startDate: Date;
|
|
22714
|
+
endDate?: Date | undefined;
|
|
22715
|
+
}[];
|
|
22716
|
+
}>;
|
|
22717
|
+
type DTODocumentationPageIntervalDifferenceResponse = z.infer<typeof DTODocumentationPageIntervalDifferenceResponse>;
|
|
22161
22718
|
|
|
22162
22719
|
declare const DTODocumentationPageAnchor: z.ZodObject<{
|
|
22163
22720
|
blockId: z.ZodString;
|
|
@@ -24982,7 +25539,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
24982
25539
|
brandPersistentId?: string | undefined;
|
|
24983
25540
|
themePersistentId?: string | undefined;
|
|
24984
25541
|
themePersistentIds?: string[] | undefined;
|
|
24985
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
25542
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
24986
25543
|
finishedAt?: Date | undefined;
|
|
24987
25544
|
index?: number | undefined;
|
|
24988
25545
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -25121,7 +25678,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25121
25678
|
brandPersistentId?: string | undefined;
|
|
25122
25679
|
themePersistentId?: string | undefined;
|
|
25123
25680
|
themePersistentIds?: string[] | undefined;
|
|
25124
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
25681
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
25125
25682
|
finishedAt?: Date | undefined;
|
|
25126
25683
|
index?: number | undefined;
|
|
25127
25684
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -25262,7 +25819,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25262
25819
|
brandPersistentId?: string | undefined;
|
|
25263
25820
|
themePersistentId?: string | undefined;
|
|
25264
25821
|
themePersistentIds?: string[] | undefined;
|
|
25265
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
25822
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
25266
25823
|
finishedAt?: Date | undefined;
|
|
25267
25824
|
index?: number | undefined;
|
|
25268
25825
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -25403,7 +25960,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25403
25960
|
brandPersistentId?: string | undefined;
|
|
25404
25961
|
themePersistentId?: string | undefined;
|
|
25405
25962
|
themePersistentIds?: string[] | undefined;
|
|
25406
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
25963
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
25407
25964
|
finishedAt?: Date | undefined;
|
|
25408
25965
|
index?: number | undefined;
|
|
25409
25966
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -26023,9 +26580,9 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
26023
26580
|
name: string;
|
|
26024
26581
|
description?: string | undefined;
|
|
26025
26582
|
};
|
|
26583
|
+
brandId: string;
|
|
26026
26584
|
createdAt: Date;
|
|
26027
26585
|
updatedAt: Date;
|
|
26028
|
-
brandId: string;
|
|
26029
26586
|
exportProperties: {
|
|
26030
26587
|
isAsset: boolean;
|
|
26031
26588
|
};
|
|
@@ -26077,9 +26634,9 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
26077
26634
|
name: string;
|
|
26078
26635
|
description?: string | undefined;
|
|
26079
26636
|
};
|
|
26637
|
+
brandId: string;
|
|
26080
26638
|
createdAt: Date;
|
|
26081
26639
|
updatedAt: Date;
|
|
26082
|
-
brandId: string;
|
|
26083
26640
|
exportProperties: {
|
|
26084
26641
|
isAsset: boolean;
|
|
26085
26642
|
};
|
|
@@ -26278,9 +26835,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
26278
26835
|
name: string;
|
|
26279
26836
|
description?: string | undefined;
|
|
26280
26837
|
};
|
|
26838
|
+
brandId: string;
|
|
26281
26839
|
createdAt: Date;
|
|
26282
26840
|
updatedAt: Date;
|
|
26283
|
-
brandId: string;
|
|
26284
26841
|
exportProperties: {
|
|
26285
26842
|
isAsset: boolean;
|
|
26286
26843
|
};
|
|
@@ -26332,9 +26889,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
26332
26889
|
name: string;
|
|
26333
26890
|
description?: string | undefined;
|
|
26334
26891
|
};
|
|
26892
|
+
brandId: string;
|
|
26335
26893
|
createdAt: Date;
|
|
26336
26894
|
updatedAt: Date;
|
|
26337
|
-
brandId: string;
|
|
26338
26895
|
exportProperties: {
|
|
26339
26896
|
isAsset: boolean;
|
|
26340
26897
|
};
|
|
@@ -26388,9 +26945,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
26388
26945
|
name: string;
|
|
26389
26946
|
description?: string | undefined;
|
|
26390
26947
|
};
|
|
26948
|
+
brandId: string;
|
|
26391
26949
|
createdAt: Date;
|
|
26392
26950
|
updatedAt: Date;
|
|
26393
|
-
brandId: string;
|
|
26394
26951
|
exportProperties: {
|
|
26395
26952
|
isAsset: boolean;
|
|
26396
26953
|
};
|
|
@@ -26444,9 +27001,9 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
26444
27001
|
name: string;
|
|
26445
27002
|
description?: string | undefined;
|
|
26446
27003
|
};
|
|
27004
|
+
brandId: string;
|
|
26447
27005
|
createdAt: Date;
|
|
26448
27006
|
updatedAt: Date;
|
|
26449
|
-
brandId: string;
|
|
26450
27007
|
exportProperties: {
|
|
26451
27008
|
isAsset: boolean;
|
|
26452
27009
|
};
|
|
@@ -47190,7 +47747,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
47190
47747
|
isImmutable: z.ZodBoolean;
|
|
47191
47748
|
immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
|
|
47192
47749
|
}, "strip", z.ZodTypeAny, {
|
|
47193
|
-
type: "
|
|
47750
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47194
47751
|
id: string;
|
|
47195
47752
|
designSystemVersionId: string;
|
|
47196
47753
|
persistentId: string;
|
|
@@ -47211,7 +47768,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
47211
47768
|
linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
|
|
47212
47769
|
immutablePropertyType?: "Collection" | undefined;
|
|
47213
47770
|
}, {
|
|
47214
|
-
type: "
|
|
47771
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47215
47772
|
id: string;
|
|
47216
47773
|
designSystemVersionId: string;
|
|
47217
47774
|
persistentId: string;
|
|
@@ -47280,7 +47837,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
47280
47837
|
isImmutable: z.ZodBoolean;
|
|
47281
47838
|
immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
|
|
47282
47839
|
}, "strip", z.ZodTypeAny, {
|
|
47283
|
-
type: "
|
|
47840
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47284
47841
|
id: string;
|
|
47285
47842
|
designSystemVersionId: string;
|
|
47286
47843
|
persistentId: string;
|
|
@@ -47301,7 +47858,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
47301
47858
|
linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
|
|
47302
47859
|
immutablePropertyType?: "Collection" | undefined;
|
|
47303
47860
|
}, {
|
|
47304
|
-
type: "
|
|
47861
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47305
47862
|
id: string;
|
|
47306
47863
|
designSystemVersionId: string;
|
|
47307
47864
|
persistentId: string;
|
|
@@ -47324,7 +47881,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
47324
47881
|
}>, "many">;
|
|
47325
47882
|
}, "strip", z.ZodTypeAny, {
|
|
47326
47883
|
definitions: {
|
|
47327
|
-
type: "
|
|
47884
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47328
47885
|
id: string;
|
|
47329
47886
|
designSystemVersionId: string;
|
|
47330
47887
|
persistentId: string;
|
|
@@ -47347,7 +47904,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
47347
47904
|
}[];
|
|
47348
47905
|
}, {
|
|
47349
47906
|
definitions: {
|
|
47350
|
-
type: "
|
|
47907
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47351
47908
|
id: string;
|
|
47352
47909
|
designSystemVersionId: string;
|
|
47353
47910
|
persistentId: string;
|
|
@@ -47417,7 +47974,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
47417
47974
|
isImmutable: z.ZodBoolean;
|
|
47418
47975
|
immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
|
|
47419
47976
|
}, "strip", z.ZodTypeAny, {
|
|
47420
|
-
type: "
|
|
47977
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47421
47978
|
id: string;
|
|
47422
47979
|
designSystemVersionId: string;
|
|
47423
47980
|
persistentId: string;
|
|
@@ -47438,7 +47995,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
47438
47995
|
linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
|
|
47439
47996
|
immutablePropertyType?: "Collection" | undefined;
|
|
47440
47997
|
}, {
|
|
47441
|
-
type: "
|
|
47998
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47442
47999
|
id: string;
|
|
47443
48000
|
designSystemVersionId: string;
|
|
47444
48001
|
persistentId: string;
|
|
@@ -47461,7 +48018,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
47461
48018
|
}>;
|
|
47462
48019
|
}, "strip", z.ZodTypeAny, {
|
|
47463
48020
|
definition: {
|
|
47464
|
-
type: "
|
|
48021
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47465
48022
|
id: string;
|
|
47466
48023
|
designSystemVersionId: string;
|
|
47467
48024
|
persistentId: string;
|
|
@@ -47484,7 +48041,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
47484
48041
|
};
|
|
47485
48042
|
}, {
|
|
47486
48043
|
definition: {
|
|
47487
|
-
type: "
|
|
48044
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47488
48045
|
id: string;
|
|
47489
48046
|
designSystemVersionId: string;
|
|
47490
48047
|
persistentId: string;
|
|
@@ -47550,7 +48107,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
|
|
|
47550
48107
|
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"FigmaComponent" | "DocumentationPage", z.ZodTypeDef, "FigmaComponent" | "DocumentationPage">>>, NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined, "FigmaComponent" | "DocumentationPage" | null | undefined>;
|
|
47551
48108
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
47552
48109
|
}, "strip", z.ZodTypeAny, {
|
|
47553
|
-
type: "
|
|
48110
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47554
48111
|
persistentId: string;
|
|
47555
48112
|
meta: {
|
|
47556
48113
|
name: string;
|
|
@@ -47568,7 +48125,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
|
|
|
47568
48125
|
linkElementType?: NonNullable<"FigmaComponent" | "DocumentationPage"> | undefined;
|
|
47569
48126
|
columnWidth?: number | undefined;
|
|
47570
48127
|
}, {
|
|
47571
|
-
type: "
|
|
48128
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
47572
48129
|
persistentId: string;
|
|
47573
48130
|
meta: {
|
|
47574
48131
|
name: string;
|
|
@@ -53651,6 +54208,7 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
53651
54208
|
name: string;
|
|
53652
54209
|
description: string;
|
|
53653
54210
|
id: string;
|
|
54211
|
+
tags: string[];
|
|
53654
54212
|
source: "upload" | "git";
|
|
53655
54213
|
version: string;
|
|
53656
54214
|
isPrivate: boolean;
|
|
@@ -53692,7 +54250,6 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
53692
54250
|
isDefault?: boolean | undefined;
|
|
53693
54251
|
thumbnailURL?: string | undefined;
|
|
53694
54252
|
}[]>;
|
|
53695
|
-
tags: string[];
|
|
53696
54253
|
usesLocale: boolean;
|
|
53697
54254
|
usesBrands: boolean;
|
|
53698
54255
|
usesThemes: boolean;
|
|
@@ -53784,6 +54341,7 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
53784
54341
|
name: string;
|
|
53785
54342
|
description: string;
|
|
53786
54343
|
id: string;
|
|
54344
|
+
tags: string[];
|
|
53787
54345
|
source: "upload" | "git";
|
|
53788
54346
|
version: string;
|
|
53789
54347
|
isPrivate: boolean;
|
|
@@ -53825,7 +54383,6 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
53825
54383
|
isDefault?: boolean | null | undefined;
|
|
53826
54384
|
thumbnailURL?: string | null | undefined;
|
|
53827
54385
|
}[]>;
|
|
53828
|
-
tags: string[];
|
|
53829
54386
|
usesLocale: boolean;
|
|
53830
54387
|
usesBrands: boolean;
|
|
53831
54388
|
usesThemes: boolean;
|
|
@@ -54340,6 +54897,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54340
54897
|
name: string;
|
|
54341
54898
|
description: string;
|
|
54342
54899
|
id: string;
|
|
54900
|
+
tags: string[];
|
|
54343
54901
|
source: "upload" | "git";
|
|
54344
54902
|
version: string;
|
|
54345
54903
|
isPrivate: boolean;
|
|
@@ -54381,7 +54939,6 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54381
54939
|
isDefault?: boolean | undefined;
|
|
54382
54940
|
thumbnailURL?: string | undefined;
|
|
54383
54941
|
}[]>;
|
|
54384
|
-
tags: string[];
|
|
54385
54942
|
usesLocale: boolean;
|
|
54386
54943
|
usesBrands: boolean;
|
|
54387
54944
|
usesThemes: boolean;
|
|
@@ -54473,6 +55030,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54473
55030
|
name: string;
|
|
54474
55031
|
description: string;
|
|
54475
55032
|
id: string;
|
|
55033
|
+
tags: string[];
|
|
54476
55034
|
source: "upload" | "git";
|
|
54477
55035
|
version: string;
|
|
54478
55036
|
isPrivate: boolean;
|
|
@@ -54514,7 +55072,6 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54514
55072
|
isDefault?: boolean | null | undefined;
|
|
54515
55073
|
thumbnailURL?: string | null | undefined;
|
|
54516
55074
|
}[]>;
|
|
54517
|
-
tags: string[];
|
|
54518
55075
|
usesLocale: boolean;
|
|
54519
55076
|
usesBrands: boolean;
|
|
54520
55077
|
usesThemes: boolean;
|
|
@@ -54626,6 +55183,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54626
55183
|
name: string;
|
|
54627
55184
|
description: string;
|
|
54628
55185
|
id: string;
|
|
55186
|
+
tags: string[];
|
|
54629
55187
|
source: "upload" | "git";
|
|
54630
55188
|
version: string;
|
|
54631
55189
|
isPrivate: boolean;
|
|
@@ -54667,7 +55225,6 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54667
55225
|
isDefault?: boolean | undefined;
|
|
54668
55226
|
thumbnailURL?: string | undefined;
|
|
54669
55227
|
}[]>;
|
|
54670
|
-
tags: string[];
|
|
54671
55228
|
usesLocale: boolean;
|
|
54672
55229
|
usesBrands: boolean;
|
|
54673
55230
|
usesThemes: boolean;
|
|
@@ -54766,6 +55323,7 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54766
55323
|
name: string;
|
|
54767
55324
|
description: string;
|
|
54768
55325
|
id: string;
|
|
55326
|
+
tags: string[];
|
|
54769
55327
|
source: "upload" | "git";
|
|
54770
55328
|
version: string;
|
|
54771
55329
|
isPrivate: boolean;
|
|
@@ -54807,7 +55365,6 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
54807
55365
|
isDefault?: boolean | null | undefined;
|
|
54808
55366
|
thumbnailURL?: string | null | undefined;
|
|
54809
55367
|
}[]>;
|
|
54810
|
-
tags: string[];
|
|
54811
55368
|
usesLocale: boolean;
|
|
54812
55369
|
usesBrands: boolean;
|
|
54813
55370
|
usesThemes: boolean;
|
|
@@ -55309,6 +55866,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55309
55866
|
name: string;
|
|
55310
55867
|
description: string;
|
|
55311
55868
|
id: string;
|
|
55869
|
+
tags: string[];
|
|
55312
55870
|
source: "upload" | "git";
|
|
55313
55871
|
version: string;
|
|
55314
55872
|
isPrivate: boolean;
|
|
@@ -55350,7 +55908,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55350
55908
|
isDefault?: boolean | undefined;
|
|
55351
55909
|
thumbnailURL?: string | undefined;
|
|
55352
55910
|
}[]>;
|
|
55353
|
-
tags: string[];
|
|
55354
55911
|
usesLocale: boolean;
|
|
55355
55912
|
usesBrands: boolean;
|
|
55356
55913
|
usesThemes: boolean;
|
|
@@ -55442,6 +55999,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55442
55999
|
name: string;
|
|
55443
56000
|
description: string;
|
|
55444
56001
|
id: string;
|
|
56002
|
+
tags: string[];
|
|
55445
56003
|
source: "upload" | "git";
|
|
55446
56004
|
version: string;
|
|
55447
56005
|
isPrivate: boolean;
|
|
@@ -55483,7 +56041,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55483
56041
|
isDefault?: boolean | null | undefined;
|
|
55484
56042
|
thumbnailURL?: string | null | undefined;
|
|
55485
56043
|
}[]>;
|
|
55486
|
-
tags: string[];
|
|
55487
56044
|
usesLocale: boolean;
|
|
55488
56045
|
usesBrands: boolean;
|
|
55489
56046
|
usesThemes: boolean;
|
|
@@ -55596,6 +56153,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55596
56153
|
name: string;
|
|
55597
56154
|
description: string;
|
|
55598
56155
|
id: string;
|
|
56156
|
+
tags: string[];
|
|
55599
56157
|
source: "upload" | "git";
|
|
55600
56158
|
version: string;
|
|
55601
56159
|
isPrivate: boolean;
|
|
@@ -55637,7 +56195,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55637
56195
|
isDefault?: boolean | undefined;
|
|
55638
56196
|
thumbnailURL?: string | undefined;
|
|
55639
56197
|
}[]>;
|
|
55640
|
-
tags: string[];
|
|
55641
56198
|
usesLocale: boolean;
|
|
55642
56199
|
usesBrands: boolean;
|
|
55643
56200
|
usesThemes: boolean;
|
|
@@ -55737,6 +56294,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55737
56294
|
name: string;
|
|
55738
56295
|
description: string;
|
|
55739
56296
|
id: string;
|
|
56297
|
+
tags: string[];
|
|
55740
56298
|
source: "upload" | "git";
|
|
55741
56299
|
version: string;
|
|
55742
56300
|
isPrivate: boolean;
|
|
@@ -55778,7 +56336,6 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
55778
56336
|
isDefault?: boolean | null | undefined;
|
|
55779
56337
|
thumbnailURL?: string | null | undefined;
|
|
55780
56338
|
}[]>;
|
|
55781
|
-
tags: string[];
|
|
55782
56339
|
usesLocale: boolean;
|
|
55783
56340
|
usesBrands: boolean;
|
|
55784
56341
|
usesThemes: boolean;
|
|
@@ -57275,7 +57832,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
57275
57832
|
brandPersistentId?: string | undefined;
|
|
57276
57833
|
themePersistentId?: string | undefined;
|
|
57277
57834
|
themePersistentIds?: string[] | undefined;
|
|
57278
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
57835
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
57279
57836
|
finishedAt?: Date | undefined;
|
|
57280
57837
|
index?: number | undefined;
|
|
57281
57838
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -57414,7 +57971,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
57414
57971
|
brandPersistentId?: string | undefined;
|
|
57415
57972
|
themePersistentId?: string | undefined;
|
|
57416
57973
|
themePersistentIds?: string[] | undefined;
|
|
57417
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
57974
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
57418
57975
|
finishedAt?: Date | undefined;
|
|
57419
57976
|
index?: number | undefined;
|
|
57420
57977
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58166,7 +58723,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
58166
58723
|
brandPersistentId?: string | undefined;
|
|
58167
58724
|
themePersistentId?: string | undefined;
|
|
58168
58725
|
themePersistentIds?: string[] | undefined;
|
|
58169
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
58726
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
58170
58727
|
finishedAt?: Date | undefined;
|
|
58171
58728
|
index?: number | undefined;
|
|
58172
58729
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58305,7 +58862,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
58305
58862
|
brandPersistentId?: string | undefined;
|
|
58306
58863
|
themePersistentId?: string | undefined;
|
|
58307
58864
|
themePersistentIds?: string[] | undefined;
|
|
58308
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
58865
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
58309
58866
|
finishedAt?: Date | undefined;
|
|
58310
58867
|
index?: number | undefined;
|
|
58311
58868
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58446,7 +59003,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
58446
59003
|
brandPersistentId?: string | undefined;
|
|
58447
59004
|
themePersistentId?: string | undefined;
|
|
58448
59005
|
themePersistentIds?: string[] | undefined;
|
|
58449
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
59006
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
58450
59007
|
finishedAt?: Date | undefined;
|
|
58451
59008
|
index?: number | undefined;
|
|
58452
59009
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -58587,7 +59144,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
58587
59144
|
brandPersistentId?: string | undefined;
|
|
58588
59145
|
themePersistentId?: string | undefined;
|
|
58589
59146
|
themePersistentIds?: string[] | undefined;
|
|
58590
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
59147
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
58591
59148
|
finishedAt?: Date | undefined;
|
|
58592
59149
|
index?: number | undefined;
|
|
58593
59150
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -59084,7 +59641,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
59084
59641
|
brandId?: string | undefined;
|
|
59085
59642
|
themeId?: string | undefined;
|
|
59086
59643
|
themePersistentIds?: string[] | undefined;
|
|
59087
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
59644
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
59088
59645
|
previewMode?: boolean | undefined;
|
|
59089
59646
|
}, {
|
|
59090
59647
|
designSystemVersionId: string;
|
|
@@ -59167,7 +59724,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
59167
59724
|
brandId?: string | undefined;
|
|
59168
59725
|
themeId?: string | undefined;
|
|
59169
59726
|
themePersistentIds?: string[] | undefined;
|
|
59170
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
59727
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
59171
59728
|
previewMode?: boolean | undefined;
|
|
59172
59729
|
}>;
|
|
59173
59730
|
type DTOExportJobCreateInput = z.infer<typeof DTOExportJobCreateInput>;
|
|
@@ -59895,7 +60452,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59895
60452
|
brandPersistentId?: string | undefined;
|
|
59896
60453
|
themePersistentId?: string | undefined;
|
|
59897
60454
|
themePersistentIds?: string[] | undefined;
|
|
59898
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
60455
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
59899
60456
|
finishedAt?: Date | undefined;
|
|
59900
60457
|
index?: number | undefined;
|
|
59901
60458
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60034,7 +60591,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60034
60591
|
brandPersistentId?: string | undefined;
|
|
60035
60592
|
themePersistentId?: string | undefined;
|
|
60036
60593
|
themePersistentIds?: string[] | undefined;
|
|
60037
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
60594
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60038
60595
|
finishedAt?: Date | undefined;
|
|
60039
60596
|
index?: number | undefined;
|
|
60040
60597
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60409,7 +60966,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60409
60966
|
brandPersistentId?: string | undefined;
|
|
60410
60967
|
themePersistentId?: string | undefined;
|
|
60411
60968
|
themePersistentIds?: string[] | undefined;
|
|
60412
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
60969
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60413
60970
|
finishedAt?: Date | undefined;
|
|
60414
60971
|
index?: number | undefined;
|
|
60415
60972
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60455,7 +61012,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60455
61012
|
brandPersistentId?: string | undefined;
|
|
60456
61013
|
themePersistentId?: string | undefined;
|
|
60457
61014
|
themePersistentIds?: string[] | undefined;
|
|
60458
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
61015
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60459
61016
|
webhookUrl?: string | undefined;
|
|
60460
61017
|
destinationSnDocs?: {
|
|
60461
61018
|
environment: "Live" | "Preview";
|
|
@@ -60634,7 +61191,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60634
61191
|
brandPersistentId?: string | undefined;
|
|
60635
61192
|
themePersistentId?: string | undefined;
|
|
60636
61193
|
themePersistentIds?: string[] | undefined;
|
|
60637
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
61194
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60638
61195
|
finishedAt?: Date | undefined;
|
|
60639
61196
|
index?: number | undefined;
|
|
60640
61197
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -60680,7 +61237,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60680
61237
|
brandPersistentId?: string | undefined;
|
|
60681
61238
|
themePersistentId?: string | undefined;
|
|
60682
61239
|
themePersistentIds?: string[] | undefined;
|
|
60683
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
61240
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
60684
61241
|
webhookUrl?: string | undefined;
|
|
60685
61242
|
destinationSnDocs?: {
|
|
60686
61243
|
environment: "Live" | "Preview";
|
|
@@ -61465,7 +62022,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61465
62022
|
brandPersistentId?: string | undefined;
|
|
61466
62023
|
themePersistentId?: string | undefined;
|
|
61467
62024
|
themePersistentIds?: string[] | undefined;
|
|
61468
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62025
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
61469
62026
|
finishedAt?: Date | undefined;
|
|
61470
62027
|
index?: number | undefined;
|
|
61471
62028
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -61604,7 +62161,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61604
62161
|
brandPersistentId?: string | undefined;
|
|
61605
62162
|
themePersistentId?: string | undefined;
|
|
61606
62163
|
themePersistentIds?: string[] | undefined;
|
|
61607
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62164
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
61608
62165
|
finishedAt?: Date | undefined;
|
|
61609
62166
|
index?: number | undefined;
|
|
61610
62167
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -61979,7 +62536,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61979
62536
|
brandPersistentId?: string | undefined;
|
|
61980
62537
|
themePersistentId?: string | undefined;
|
|
61981
62538
|
themePersistentIds?: string[] | undefined;
|
|
61982
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62539
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
61983
62540
|
finishedAt?: Date | undefined;
|
|
61984
62541
|
index?: number | undefined;
|
|
61985
62542
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -62025,7 +62582,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62025
62582
|
brandPersistentId?: string | undefined;
|
|
62026
62583
|
themePersistentId?: string | undefined;
|
|
62027
62584
|
themePersistentIds?: string[] | undefined;
|
|
62028
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62585
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62029
62586
|
webhookUrl?: string | undefined;
|
|
62030
62587
|
destinationSnDocs?: {
|
|
62031
62588
|
environment: "Live" | "Preview";
|
|
@@ -62204,7 +62761,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62204
62761
|
brandPersistentId?: string | undefined;
|
|
62205
62762
|
themePersistentId?: string | undefined;
|
|
62206
62763
|
themePersistentIds?: string[] | undefined;
|
|
62207
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62764
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62208
62765
|
finishedAt?: Date | undefined;
|
|
62209
62766
|
index?: number | undefined;
|
|
62210
62767
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -62250,7 +62807,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62250
62807
|
brandPersistentId?: string | undefined;
|
|
62251
62808
|
themePersistentId?: string | undefined;
|
|
62252
62809
|
themePersistentIds?: string[] | undefined;
|
|
62253
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62810
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62254
62811
|
webhookUrl?: string | undefined;
|
|
62255
62812
|
destinationSnDocs?: {
|
|
62256
62813
|
environment: "Live" | "Preview";
|
|
@@ -62431,7 +62988,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62431
62988
|
brandPersistentId?: string | undefined;
|
|
62432
62989
|
themePersistentId?: string | undefined;
|
|
62433
62990
|
themePersistentIds?: string[] | undefined;
|
|
62434
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
62991
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62435
62992
|
finishedAt?: Date | undefined;
|
|
62436
62993
|
index?: number | undefined;
|
|
62437
62994
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -62477,7 +63034,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62477
63034
|
brandPersistentId?: string | undefined;
|
|
62478
63035
|
themePersistentId?: string | undefined;
|
|
62479
63036
|
themePersistentIds?: string[] | undefined;
|
|
62480
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
63037
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62481
63038
|
webhookUrl?: string | undefined;
|
|
62482
63039
|
destinationSnDocs?: {
|
|
62483
63040
|
environment: "Live" | "Preview";
|
|
@@ -62658,7 +63215,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62658
63215
|
brandPersistentId?: string | undefined;
|
|
62659
63216
|
themePersistentId?: string | undefined;
|
|
62660
63217
|
themePersistentIds?: string[] | undefined;
|
|
62661
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
63218
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62662
63219
|
finishedAt?: Date | undefined;
|
|
62663
63220
|
index?: number | undefined;
|
|
62664
63221
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -62704,7 +63261,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62704
63261
|
brandPersistentId?: string | undefined;
|
|
62705
63262
|
themePersistentId?: string | undefined;
|
|
62706
63263
|
themePersistentIds?: string[] | undefined;
|
|
62707
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
63264
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
62708
63265
|
webhookUrl?: string | undefined;
|
|
62709
63266
|
destinationSnDocs?: {
|
|
62710
63267
|
environment: "Live" | "Preview";
|
|
@@ -63490,7 +64047,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63490
64047
|
brandPersistentId?: string | undefined;
|
|
63491
64048
|
themePersistentId?: string | undefined;
|
|
63492
64049
|
themePersistentIds?: string[] | undefined;
|
|
63493
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
64050
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
63494
64051
|
finishedAt?: Date | undefined;
|
|
63495
64052
|
index?: number | undefined;
|
|
63496
64053
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -63629,7 +64186,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63629
64186
|
brandPersistentId?: string | undefined;
|
|
63630
64187
|
themePersistentId?: string | undefined;
|
|
63631
64188
|
themePersistentIds?: string[] | undefined;
|
|
63632
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
64189
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
63633
64190
|
finishedAt?: Date | undefined;
|
|
63634
64191
|
index?: number | undefined;
|
|
63635
64192
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64004,7 +64561,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64004
64561
|
brandPersistentId?: string | undefined;
|
|
64005
64562
|
themePersistentId?: string | undefined;
|
|
64006
64563
|
themePersistentIds?: string[] | undefined;
|
|
64007
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
64564
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64008
64565
|
finishedAt?: Date | undefined;
|
|
64009
64566
|
index?: number | undefined;
|
|
64010
64567
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64050,7 +64607,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64050
64607
|
brandPersistentId?: string | undefined;
|
|
64051
64608
|
themePersistentId?: string | undefined;
|
|
64052
64609
|
themePersistentIds?: string[] | undefined;
|
|
64053
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
64610
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64054
64611
|
webhookUrl?: string | undefined;
|
|
64055
64612
|
destinationSnDocs?: {
|
|
64056
64613
|
environment: "Live" | "Preview";
|
|
@@ -64229,7 +64786,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64229
64786
|
brandPersistentId?: string | undefined;
|
|
64230
64787
|
themePersistentId?: string | undefined;
|
|
64231
64788
|
themePersistentIds?: string[] | undefined;
|
|
64232
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
64789
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64233
64790
|
finishedAt?: Date | undefined;
|
|
64234
64791
|
index?: number | undefined;
|
|
64235
64792
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64275,7 +64832,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64275
64832
|
brandPersistentId?: string | undefined;
|
|
64276
64833
|
themePersistentId?: string | undefined;
|
|
64277
64834
|
themePersistentIds?: string[] | undefined;
|
|
64278
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
64835
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64279
64836
|
webhookUrl?: string | undefined;
|
|
64280
64837
|
destinationSnDocs?: {
|
|
64281
64838
|
environment: "Live" | "Preview";
|
|
@@ -64456,7 +65013,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64456
65013
|
brandPersistentId?: string | undefined;
|
|
64457
65014
|
themePersistentId?: string | undefined;
|
|
64458
65015
|
themePersistentIds?: string[] | undefined;
|
|
64459
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
65016
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64460
65017
|
finishedAt?: Date | undefined;
|
|
64461
65018
|
index?: number | undefined;
|
|
64462
65019
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64502,7 +65059,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64502
65059
|
brandPersistentId?: string | undefined;
|
|
64503
65060
|
themePersistentId?: string | undefined;
|
|
64504
65061
|
themePersistentIds?: string[] | undefined;
|
|
64505
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
65062
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64506
65063
|
webhookUrl?: string | undefined;
|
|
64507
65064
|
destinationSnDocs?: {
|
|
64508
65065
|
environment: "Live" | "Preview";
|
|
@@ -64683,7 +65240,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64683
65240
|
brandPersistentId?: string | undefined;
|
|
64684
65241
|
themePersistentId?: string | undefined;
|
|
64685
65242
|
themePersistentIds?: string[] | undefined;
|
|
64686
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
65243
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64687
65244
|
finishedAt?: Date | undefined;
|
|
64688
65245
|
index?: number | undefined;
|
|
64689
65246
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -64729,7 +65286,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64729
65286
|
brandPersistentId?: string | undefined;
|
|
64730
65287
|
themePersistentId?: string | undefined;
|
|
64731
65288
|
themePersistentIds?: string[] | undefined;
|
|
64732
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
65289
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
64733
65290
|
webhookUrl?: string | undefined;
|
|
64734
65291
|
destinationSnDocs?: {
|
|
64735
65292
|
environment: "Live" | "Preview";
|
|
@@ -83608,8 +84165,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83608
84165
|
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
83609
84166
|
}>, "strip", z.ZodTypeAny, {
|
|
83610
84167
|
id: string;
|
|
83611
|
-
createdAt: Date;
|
|
83612
84168
|
email: string;
|
|
84169
|
+
createdAt: Date;
|
|
83613
84170
|
profile: {
|
|
83614
84171
|
name: string;
|
|
83615
84172
|
nickname?: string | undefined;
|
|
@@ -83641,8 +84198,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83641
84198
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
83642
84199
|
}, {
|
|
83643
84200
|
id: string;
|
|
83644
|
-
createdAt: Date;
|
|
83645
84201
|
email: string;
|
|
84202
|
+
createdAt: Date;
|
|
83646
84203
|
profile: {
|
|
83647
84204
|
name: string;
|
|
83648
84205
|
nickname?: string | undefined;
|
|
@@ -83817,8 +84374,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
83817
84374
|
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
83818
84375
|
}>, "strip", z.ZodTypeAny, {
|
|
83819
84376
|
id: string;
|
|
83820
|
-
createdAt: Date;
|
|
83821
84377
|
email: string;
|
|
84378
|
+
createdAt: Date;
|
|
83822
84379
|
profile: {
|
|
83823
84380
|
name: string;
|
|
83824
84381
|
nickname?: string | undefined;
|
|
@@ -83850,8 +84407,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
83850
84407
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
83851
84408
|
}, {
|
|
83852
84409
|
id: string;
|
|
83853
|
-
createdAt: Date;
|
|
83854
84410
|
email: string;
|
|
84411
|
+
createdAt: Date;
|
|
83855
84412
|
profile: {
|
|
83856
84413
|
name: string;
|
|
83857
84414
|
nickname?: string | undefined;
|
|
@@ -83885,8 +84442,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
83885
84442
|
}, "strip", z.ZodTypeAny, {
|
|
83886
84443
|
user: {
|
|
83887
84444
|
id: string;
|
|
83888
|
-
createdAt: Date;
|
|
83889
84445
|
email: string;
|
|
84446
|
+
createdAt: Date;
|
|
83890
84447
|
profile: {
|
|
83891
84448
|
name: string;
|
|
83892
84449
|
nickname?: string | undefined;
|
|
@@ -83920,8 +84477,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
83920
84477
|
}, {
|
|
83921
84478
|
user: {
|
|
83922
84479
|
id: string;
|
|
83923
|
-
createdAt: Date;
|
|
83924
84480
|
email: string;
|
|
84481
|
+
createdAt: Date;
|
|
83925
84482
|
profile: {
|
|
83926
84483
|
name: string;
|
|
83927
84484
|
nickname?: string | undefined;
|
|
@@ -94052,8 +94609,17 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
94052
94609
|
}>;
|
|
94053
94610
|
type DTOWorkspaceResponse = z.infer<typeof DTOWorkspaceResponse>;
|
|
94054
94611
|
|
|
94055
|
-
|
|
94056
|
-
|
|
94612
|
+
type Input$2 = {
|
|
94613
|
+
priorDataPoints: PublishedDocPageVisitsEntry[];
|
|
94614
|
+
currentDataPoints: PublishedDocPageVisitsEntry[];
|
|
94615
|
+
timeFrame: DTODocumentationAnalyticsTimeFrame;
|
|
94616
|
+
};
|
|
94617
|
+
declare function documentationAnalyticsToComparisonDto(input: Input$2): DTOPubishedDocAnalyticsComparisonData;
|
|
94618
|
+
|
|
94619
|
+
declare function documentationAnalyticsToGlobalDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocVisitData[];
|
|
94620
|
+
declare function documentationAnalyticsToPageDto(entries: PublishedDocPageVisitsEntry[]): DTOPublishedDocPageVisitData[];
|
|
94621
|
+
|
|
94622
|
+
declare function documentationAnalyticsToHeatMapDto(entries: PublishedDocPageVisitsEntry[], timeFrame: DTODocumentationAnalyticsTimeFrame): DTOPublishedDocVisitHeatMapWeek;
|
|
94057
94623
|
|
|
94058
94624
|
declare function elementGroupsToDocumentationGroupStructureDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupStructureV1[];
|
|
94059
94625
|
declare function elementGroupsToDocumentationGroupDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV1[];
|
|
@@ -94864,6 +95430,7 @@ declare class ExportersEndpoint {
|
|
|
94864
95430
|
name: string;
|
|
94865
95431
|
description: string;
|
|
94866
95432
|
id: string;
|
|
95433
|
+
tags: string[];
|
|
94867
95434
|
source: "upload" | "git";
|
|
94868
95435
|
version: string;
|
|
94869
95436
|
isPrivate: boolean;
|
|
@@ -94905,7 +95472,6 @@ declare class ExportersEndpoint {
|
|
|
94905
95472
|
isDefault?: boolean | undefined;
|
|
94906
95473
|
thumbnailURL?: string | undefined;
|
|
94907
95474
|
}[]>;
|
|
94908
|
-
tags: string[];
|
|
94909
95475
|
usesLocale: boolean;
|
|
94910
95476
|
usesBrands: boolean;
|
|
94911
95477
|
usesThemes: boolean;
|
|
@@ -95005,6 +95571,7 @@ declare class ExportersEndpoint {
|
|
|
95005
95571
|
name: string;
|
|
95006
95572
|
description: string;
|
|
95007
95573
|
id: string;
|
|
95574
|
+
tags: string[];
|
|
95008
95575
|
source: "upload" | "git";
|
|
95009
95576
|
version: string;
|
|
95010
95577
|
isPrivate: boolean;
|
|
@@ -95046,7 +95613,6 @@ declare class ExportersEndpoint {
|
|
|
95046
95613
|
isDefault?: boolean | undefined;
|
|
95047
95614
|
thumbnailURL?: string | undefined;
|
|
95048
95615
|
}[]>;
|
|
95049
|
-
tags: string[];
|
|
95050
95616
|
usesLocale: boolean;
|
|
95051
95617
|
usesBrands: boolean;
|
|
95052
95618
|
usesThemes: boolean;
|
|
@@ -95147,6 +95713,7 @@ declare class ExportersEndpoint {
|
|
|
95147
95713
|
name: string;
|
|
95148
95714
|
description: string;
|
|
95149
95715
|
id: string;
|
|
95716
|
+
tags: string[];
|
|
95150
95717
|
source: "upload" | "git";
|
|
95151
95718
|
version: string;
|
|
95152
95719
|
isPrivate: boolean;
|
|
@@ -95188,7 +95755,6 @@ declare class ExportersEndpoint {
|
|
|
95188
95755
|
isDefault?: boolean | undefined;
|
|
95189
95756
|
thumbnailURL?: string | undefined;
|
|
95190
95757
|
}[]>;
|
|
95191
|
-
tags: string[];
|
|
95192
95758
|
usesLocale: boolean;
|
|
95193
95759
|
usesBrands: boolean;
|
|
95194
95760
|
usesThemes: boolean;
|
|
@@ -95282,6 +95848,7 @@ declare class ExportersEndpoint {
|
|
|
95282
95848
|
name: string;
|
|
95283
95849
|
description: string;
|
|
95284
95850
|
id: string;
|
|
95851
|
+
tags: string[];
|
|
95285
95852
|
source: "upload" | "git";
|
|
95286
95853
|
version: string;
|
|
95287
95854
|
isPrivate: boolean;
|
|
@@ -95323,7 +95890,6 @@ declare class ExportersEndpoint {
|
|
|
95323
95890
|
isDefault?: boolean | undefined;
|
|
95324
95891
|
thumbnailURL?: string | undefined;
|
|
95325
95892
|
}[]>;
|
|
95326
|
-
tags: string[];
|
|
95327
95893
|
usesLocale: boolean;
|
|
95328
95894
|
usesBrands: boolean;
|
|
95329
95895
|
usesThemes: boolean;
|
|
@@ -95422,6 +95988,7 @@ declare class ExportersEndpoint {
|
|
|
95422
95988
|
name: string;
|
|
95423
95989
|
description: string;
|
|
95424
95990
|
id: string;
|
|
95991
|
+
tags: string[];
|
|
95425
95992
|
source: "upload" | "git";
|
|
95426
95993
|
version: string;
|
|
95427
95994
|
isPrivate: boolean;
|
|
@@ -95463,7 +96030,6 @@ declare class ExportersEndpoint {
|
|
|
95463
96030
|
isDefault?: boolean | undefined;
|
|
95464
96031
|
thumbnailURL?: string | undefined;
|
|
95465
96032
|
}[]>;
|
|
95466
|
-
tags: string[];
|
|
95467
96033
|
usesLocale: boolean;
|
|
95468
96034
|
usesBrands: boolean;
|
|
95469
96035
|
usesThemes: boolean;
|
|
@@ -95746,133 +96312,123 @@ declare const DTOUpdateVersionInput: z.ZodObject<{
|
|
|
95746
96312
|
}>;
|
|
95747
96313
|
type DTOUpdateVersionInput = z.infer<typeof DTOUpdateVersionInput>;
|
|
95748
96314
|
|
|
95749
|
-
|
|
95750
|
-
|
|
95751
|
-
|
|
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>;
|
|
96315
|
+
/**
|
|
96316
|
+
* @deprecated
|
|
96317
|
+
*/
|
|
95760
96318
|
declare const DTODocumentationAnalyticsTimeFrameComparison: z.ZodObject<{
|
|
95761
96319
|
referencePeriod: z.ZodObject<{
|
|
95762
96320
|
start: z.ZodDate;
|
|
95763
|
-
end: z.ZodDate
|
|
96321
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
95764
96322
|
}, "strip", z.ZodTypeAny, {
|
|
95765
96323
|
start: Date;
|
|
95766
|
-
end
|
|
96324
|
+
end?: Date | undefined;
|
|
95767
96325
|
}, {
|
|
95768
96326
|
start: Date;
|
|
95769
|
-
end
|
|
96327
|
+
end?: Date | undefined;
|
|
95770
96328
|
}>;
|
|
95771
96329
|
baselinePeriod: z.ZodObject<{
|
|
95772
96330
|
start: z.ZodDate;
|
|
95773
|
-
end: z.ZodDate
|
|
96331
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
95774
96332
|
}, "strip", z.ZodTypeAny, {
|
|
95775
96333
|
start: Date;
|
|
95776
|
-
end
|
|
96334
|
+
end?: Date | undefined;
|
|
95777
96335
|
}, {
|
|
95778
96336
|
start: Date;
|
|
95779
|
-
end
|
|
96337
|
+
end?: Date | undefined;
|
|
95780
96338
|
}>;
|
|
95781
96339
|
}, "strip", z.ZodTypeAny, {
|
|
95782
96340
|
referencePeriod: {
|
|
95783
96341
|
start: Date;
|
|
95784
|
-
end
|
|
96342
|
+
end?: Date | undefined;
|
|
95785
96343
|
};
|
|
95786
96344
|
baselinePeriod: {
|
|
95787
96345
|
start: Date;
|
|
95788
|
-
end
|
|
96346
|
+
end?: Date | undefined;
|
|
95789
96347
|
};
|
|
95790
96348
|
}, {
|
|
95791
96349
|
referencePeriod: {
|
|
95792
96350
|
start: Date;
|
|
95793
|
-
end
|
|
96351
|
+
end?: Date | undefined;
|
|
95794
96352
|
};
|
|
95795
96353
|
baselinePeriod: {
|
|
95796
96354
|
start: Date;
|
|
95797
|
-
end
|
|
96355
|
+
end?: Date | undefined;
|
|
95798
96356
|
};
|
|
95799
96357
|
}>;
|
|
96358
|
+
/**
|
|
96359
|
+
* @deprecated
|
|
96360
|
+
*/
|
|
95800
96361
|
type DTODocumentationAnalyticsTimeFrameComparison = z.infer<typeof DTODocumentationAnalyticsTimeFrameComparison>;
|
|
95801
|
-
|
|
95802
|
-
|
|
95803
|
-
|
|
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>;
|
|
96362
|
+
/**
|
|
96363
|
+
* @deprecated
|
|
96364
|
+
*/
|
|
95812
96365
|
declare const DTODocumentationAnalyticsDiffPayload: z.ZodObject<{
|
|
95813
96366
|
timeFrames: z.ZodArray<z.ZodObject<{
|
|
95814
96367
|
referencePeriod: z.ZodObject<{
|
|
95815
96368
|
start: z.ZodDate;
|
|
95816
|
-
end: z.ZodDate
|
|
96369
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
95817
96370
|
}, "strip", z.ZodTypeAny, {
|
|
95818
96371
|
start: Date;
|
|
95819
|
-
end
|
|
96372
|
+
end?: Date | undefined;
|
|
95820
96373
|
}, {
|
|
95821
96374
|
start: Date;
|
|
95822
|
-
end
|
|
96375
|
+
end?: Date | undefined;
|
|
95823
96376
|
}>;
|
|
95824
96377
|
baselinePeriod: z.ZodObject<{
|
|
95825
96378
|
start: z.ZodDate;
|
|
95826
|
-
end: z.ZodDate
|
|
96379
|
+
end: z.ZodOptional<z.ZodDate>;
|
|
95827
96380
|
}, "strip", z.ZodTypeAny, {
|
|
95828
96381
|
start: Date;
|
|
95829
|
-
end
|
|
96382
|
+
end?: Date | undefined;
|
|
95830
96383
|
}, {
|
|
95831
96384
|
start: Date;
|
|
95832
|
-
end
|
|
96385
|
+
end?: Date | undefined;
|
|
95833
96386
|
}>;
|
|
95834
96387
|
}, "strip", z.ZodTypeAny, {
|
|
95835
96388
|
referencePeriod: {
|
|
95836
96389
|
start: Date;
|
|
95837
|
-
end
|
|
96390
|
+
end?: Date | undefined;
|
|
95838
96391
|
};
|
|
95839
96392
|
baselinePeriod: {
|
|
95840
96393
|
start: Date;
|
|
95841
|
-
end
|
|
96394
|
+
end?: Date | undefined;
|
|
95842
96395
|
};
|
|
95843
96396
|
}, {
|
|
95844
96397
|
referencePeriod: {
|
|
95845
96398
|
start: Date;
|
|
95846
|
-
end
|
|
96399
|
+
end?: Date | undefined;
|
|
95847
96400
|
};
|
|
95848
96401
|
baselinePeriod: {
|
|
95849
96402
|
start: Date;
|
|
95850
|
-
end
|
|
96403
|
+
end?: Date | undefined;
|
|
95851
96404
|
};
|
|
95852
96405
|
}>, "many">;
|
|
95853
96406
|
}, "strip", z.ZodTypeAny, {
|
|
95854
96407
|
timeFrames: {
|
|
95855
96408
|
referencePeriod: {
|
|
95856
96409
|
start: Date;
|
|
95857
|
-
end
|
|
96410
|
+
end?: Date | undefined;
|
|
95858
96411
|
};
|
|
95859
96412
|
baselinePeriod: {
|
|
95860
96413
|
start: Date;
|
|
95861
|
-
end
|
|
96414
|
+
end?: Date | undefined;
|
|
95862
96415
|
};
|
|
95863
96416
|
}[];
|
|
95864
96417
|
}, {
|
|
95865
96418
|
timeFrames: {
|
|
95866
96419
|
referencePeriod: {
|
|
95867
96420
|
start: Date;
|
|
95868
|
-
end
|
|
96421
|
+
end?: Date | undefined;
|
|
95869
96422
|
};
|
|
95870
96423
|
baselinePeriod: {
|
|
95871
96424
|
start: Date;
|
|
95872
|
-
end
|
|
96425
|
+
end?: Date | undefined;
|
|
95873
96426
|
};
|
|
95874
96427
|
}[];
|
|
95875
96428
|
}>;
|
|
96429
|
+
/**
|
|
96430
|
+
* @deprecated
|
|
96431
|
+
*/
|
|
95876
96432
|
type DTODocumentationAnalyticsDiffPayload = z.infer<typeof DTODocumentationAnalyticsDiffPayload>;
|
|
95877
96433
|
|
|
95878
96434
|
declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
@@ -97053,7 +97609,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
97053
97609
|
brandPersistentId?: string | undefined;
|
|
97054
97610
|
themePersistentId?: string | undefined;
|
|
97055
97611
|
themePersistentIds?: string[] | undefined;
|
|
97056
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
97612
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
97057
97613
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
97058
97614
|
}, {
|
|
97059
97615
|
name: string;
|
|
@@ -97145,7 +97701,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
97145
97701
|
brandPersistentId?: string | undefined;
|
|
97146
97702
|
themePersistentId?: string | undefined;
|
|
97147
97703
|
themePersistentIds?: string[] | undefined;
|
|
97148
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
97704
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
97149
97705
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
97150
97706
|
}>;
|
|
97151
97707
|
type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
|
|
@@ -97577,7 +98133,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
97577
98133
|
eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
|
|
97578
98134
|
themePersistentId?: string | undefined;
|
|
97579
98135
|
themePersistentIds?: string[] | undefined;
|
|
97580
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
98136
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
97581
98137
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
97582
98138
|
gitQuery?: {
|
|
97583
98139
|
organization?: string | undefined;
|
|
@@ -97678,7 +98234,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
97678
98234
|
eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
|
|
97679
98235
|
themePersistentId?: string | undefined;
|
|
97680
98236
|
themePersistentIds?: string[] | undefined;
|
|
97681
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
98237
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
97682
98238
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
97683
98239
|
gitQuery?: {
|
|
97684
98240
|
organization?: string | undefined;
|
|
@@ -98629,7 +99185,7 @@ declare class PipelinesEndpoint {
|
|
|
98629
99185
|
brandPersistentId?: string | undefined;
|
|
98630
99186
|
themePersistentId?: string | undefined;
|
|
98631
99187
|
themePersistentIds?: string[] | undefined;
|
|
98632
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99188
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
98633
99189
|
finishedAt?: Date | undefined;
|
|
98634
99190
|
index?: number | undefined;
|
|
98635
99191
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -98675,7 +99231,7 @@ declare class PipelinesEndpoint {
|
|
|
98675
99231
|
brandPersistentId?: string | undefined;
|
|
98676
99232
|
themePersistentId?: string | undefined;
|
|
98677
99233
|
themePersistentIds?: string[] | undefined;
|
|
98678
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99234
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
98679
99235
|
webhookUrl?: string | undefined;
|
|
98680
99236
|
destinationSnDocs?: {
|
|
98681
99237
|
environment: "Live" | "Preview";
|
|
@@ -98857,7 +99413,7 @@ declare class PipelinesEndpoint {
|
|
|
98857
99413
|
brandPersistentId?: string | undefined;
|
|
98858
99414
|
themePersistentId?: string | undefined;
|
|
98859
99415
|
themePersistentIds?: string[] | undefined;
|
|
98860
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99416
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
98861
99417
|
finishedAt?: Date | undefined;
|
|
98862
99418
|
index?: number | undefined;
|
|
98863
99419
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -98903,7 +99459,7 @@ declare class PipelinesEndpoint {
|
|
|
98903
99459
|
brandPersistentId?: string | undefined;
|
|
98904
99460
|
themePersistentId?: string | undefined;
|
|
98905
99461
|
themePersistentIds?: string[] | undefined;
|
|
98906
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99462
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
98907
99463
|
webhookUrl?: string | undefined;
|
|
98908
99464
|
destinationSnDocs?: {
|
|
98909
99465
|
environment: "Live" | "Preview";
|
|
@@ -99085,7 +99641,7 @@ declare class PipelinesEndpoint {
|
|
|
99085
99641
|
brandPersistentId?: string | undefined;
|
|
99086
99642
|
themePersistentId?: string | undefined;
|
|
99087
99643
|
themePersistentIds?: string[] | undefined;
|
|
99088
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99644
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
99089
99645
|
finishedAt?: Date | undefined;
|
|
99090
99646
|
index?: number | undefined;
|
|
99091
99647
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -99131,7 +99687,7 @@ declare class PipelinesEndpoint {
|
|
|
99131
99687
|
brandPersistentId?: string | undefined;
|
|
99132
99688
|
themePersistentId?: string | undefined;
|
|
99133
99689
|
themePersistentIds?: string[] | undefined;
|
|
99134
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99690
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
99135
99691
|
webhookUrl?: string | undefined;
|
|
99136
99692
|
destinationSnDocs?: {
|
|
99137
99693
|
environment: "Live" | "Preview";
|
|
@@ -99305,7 +99861,7 @@ declare class PipelinesEndpoint {
|
|
|
99305
99861
|
brandPersistentId?: string | undefined;
|
|
99306
99862
|
themePersistentId?: string | undefined;
|
|
99307
99863
|
themePersistentIds?: string[] | undefined;
|
|
99308
|
-
exporterPropertyValues?: Record<string, string | number | boolean |
|
|
99864
|
+
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
99309
99865
|
finishedAt?: Date | undefined;
|
|
99310
99866
|
index?: number | undefined;
|
|
99311
99867
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -99412,63 +99968,58 @@ declare class CodeComponentsEndpoint {
|
|
|
99412
99968
|
private readonly requestExecutor;
|
|
99413
99969
|
constructor(requestExecutor: RequestExecutor);
|
|
99414
99970
|
import(dsId: string, vId: string, body: DTOCodeComponentsCreateInput): Promise<{
|
|
99415
|
-
|
|
99416
|
-
|
|
99417
|
-
|
|
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
|
-
}[];
|
|
99971
|
+
created: number;
|
|
99972
|
+
updated: number;
|
|
99973
|
+
deleted: number;
|
|
99433
99974
|
}>;
|
|
99434
99975
|
list(dsId: string, vId: string): Promise<{
|
|
99435
99976
|
codeComponents: {
|
|
99436
99977
|
id: string;
|
|
99437
|
-
designSystemVersionId: string;
|
|
99438
|
-
persistentId: string;
|
|
99439
99978
|
createdAt: Date;
|
|
99440
99979
|
updatedAt: Date;
|
|
99441
|
-
|
|
99980
|
+
persistentId: string;
|
|
99981
|
+
description: string;
|
|
99442
99982
|
properties: Record<string, {
|
|
99443
|
-
type: string;
|
|
99444
99983
|
name: string;
|
|
99445
|
-
|
|
99446
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
99447
|
-
isArray: boolean;
|
|
99448
|
-
};
|
|
99984
|
+
description: string;
|
|
99449
99985
|
required: boolean;
|
|
99986
|
+
type?: any;
|
|
99987
|
+
tags?: Record<string, string> | undefined;
|
|
99450
99988
|
defaultValue?: string | undefined;
|
|
99989
|
+
declarations?: {
|
|
99990
|
+
name: string;
|
|
99991
|
+
fileName: string;
|
|
99992
|
+
}[] | undefined;
|
|
99451
99993
|
}>;
|
|
99994
|
+
designSystemVersionId: string;
|
|
99995
|
+
exportName: string;
|
|
99996
|
+
componentPath: string;
|
|
99997
|
+
tags?: Record<string, string> | undefined;
|
|
99452
99998
|
}[];
|
|
99453
99999
|
}>;
|
|
99454
100000
|
deleteAll(dsId: string, vId: string): Promise<{
|
|
99455
100001
|
codeComponents: {
|
|
99456
100002
|
id: string;
|
|
99457
|
-
designSystemVersionId: string;
|
|
99458
|
-
persistentId: string;
|
|
99459
100003
|
createdAt: Date;
|
|
99460
100004
|
updatedAt: Date;
|
|
99461
|
-
|
|
100005
|
+
persistentId: string;
|
|
100006
|
+
description: string;
|
|
99462
100007
|
properties: Record<string, {
|
|
99463
|
-
type: string;
|
|
99464
100008
|
name: string;
|
|
99465
|
-
|
|
99466
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
99467
|
-
isArray: boolean;
|
|
99468
|
-
};
|
|
100009
|
+
description: string;
|
|
99469
100010
|
required: boolean;
|
|
100011
|
+
type?: any;
|
|
100012
|
+
tags?: Record<string, string> | undefined;
|
|
99470
100013
|
defaultValue?: string | undefined;
|
|
100014
|
+
declarations?: {
|
|
100015
|
+
name: string;
|
|
100016
|
+
fileName: string;
|
|
100017
|
+
}[] | undefined;
|
|
99471
100018
|
}>;
|
|
100019
|
+
designSystemVersionId: string;
|
|
100020
|
+
exportName: string;
|
|
100021
|
+
componentPath: string;
|
|
100022
|
+
tags?: Record<string, string> | undefined;
|
|
99472
100023
|
}[];
|
|
99473
100024
|
}>;
|
|
99474
100025
|
}
|
|
@@ -99621,9 +100172,9 @@ declare class DesignSystemComponentEndpoint {
|
|
|
99621
100172
|
name: string;
|
|
99622
100173
|
description?: string | undefined;
|
|
99623
100174
|
};
|
|
100175
|
+
brandId: string;
|
|
99624
100176
|
createdAt: Date;
|
|
99625
100177
|
updatedAt: Date;
|
|
99626
|
-
brandId: string;
|
|
99627
100178
|
}[];
|
|
99628
100179
|
}>;
|
|
99629
100180
|
create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<{
|
|
@@ -99635,9 +100186,9 @@ declare class DesignSystemComponentEndpoint {
|
|
|
99635
100186
|
name: string;
|
|
99636
100187
|
description?: string | undefined;
|
|
99637
100188
|
};
|
|
100189
|
+
brandId: string;
|
|
99638
100190
|
createdAt: Date;
|
|
99639
100191
|
updatedAt: Date;
|
|
99640
|
-
brandId: string;
|
|
99641
100192
|
};
|
|
99642
100193
|
}>;
|
|
99643
100194
|
}
|
|
@@ -101260,9 +101811,9 @@ declare class FigmaComponentsEndpoint {
|
|
|
101260
101811
|
name: string;
|
|
101261
101812
|
description?: string | undefined;
|
|
101262
101813
|
};
|
|
101814
|
+
brandId: string;
|
|
101263
101815
|
createdAt: Date;
|
|
101264
101816
|
updatedAt: Date;
|
|
101265
|
-
brandId: string;
|
|
101266
101817
|
exportProperties: {
|
|
101267
101818
|
isAsset: boolean;
|
|
101268
101819
|
};
|
|
@@ -101359,7 +101910,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
101359
101910
|
constructor(requestExecutor: RequestExecutor);
|
|
101360
101911
|
list(designSystemId: string, versionId: string): Promise<{
|
|
101361
101912
|
definitions: {
|
|
101362
|
-
type: "
|
|
101913
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
101363
101914
|
id: string;
|
|
101364
101915
|
designSystemVersionId: string;
|
|
101365
101916
|
persistentId: string;
|
|
@@ -101383,7 +101934,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
101383
101934
|
}>;
|
|
101384
101935
|
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
101385
101936
|
definition: {
|
|
101386
|
-
type: "
|
|
101937
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
101387
101938
|
id: string;
|
|
101388
101939
|
designSystemVersionId: string;
|
|
101389
101940
|
persistentId: string;
|
|
@@ -101407,7 +101958,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
101407
101958
|
}>;
|
|
101408
101959
|
update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
|
|
101409
101960
|
definition: {
|
|
101410
|
-
type: "
|
|
101961
|
+
type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
|
|
101411
101962
|
id: string;
|
|
101412
101963
|
designSystemVersionId: string;
|
|
101413
101964
|
persistentId: string;
|
|
@@ -102657,7 +103208,7 @@ declare class TokenGroupsEndpoint {
|
|
|
102657
103208
|
description?: string | undefined;
|
|
102658
103209
|
};
|
|
102659
103210
|
brandId: string;
|
|
102660
|
-
tokenType: "
|
|
103211
|
+
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
103212
|
isRoot: boolean;
|
|
102662
103213
|
childrenIds: string[];
|
|
102663
103214
|
};
|
|
@@ -103029,8 +103580,8 @@ declare class TokensEndpoint {
|
|
|
103029
103580
|
name: string;
|
|
103030
103581
|
description?: string | undefined;
|
|
103031
103582
|
};
|
|
103032
|
-
updatedAt: Date;
|
|
103033
103583
|
brandId: string;
|
|
103584
|
+
updatedAt: Date;
|
|
103034
103585
|
originStyle?: {
|
|
103035
103586
|
id: string;
|
|
103036
103587
|
name: string;
|
|
@@ -103116,15 +103667,61 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
103116
103667
|
declare class DesignSystemAnalyticsEndpoint {
|
|
103117
103668
|
private readonly requestExecutor;
|
|
103118
103669
|
constructor(requestExecutor: RequestExecutor);
|
|
103119
|
-
get(designSystemId: string, versionId: string,
|
|
103670
|
+
get(designSystemId: string, versionId: string, body: DTODocumentationAnalyticsRequest): Promise<{
|
|
103120
103671
|
analytics: {
|
|
103121
103672
|
pagePersistentId: string;
|
|
103673
|
+
timestamp: Date;
|
|
103674
|
+
versionId: string;
|
|
103675
|
+
visits: number;
|
|
103676
|
+
sessions: number;
|
|
103677
|
+
locale?: string | undefined;
|
|
103678
|
+
}[];
|
|
103679
|
+
perPageAnalytics: {
|
|
103680
|
+
pagePersistentId: string;
|
|
103681
|
+
timestamp: Date;
|
|
103122
103682
|
versionId: string;
|
|
103683
|
+
visits: number;
|
|
103684
|
+
sessions: number;
|
|
103685
|
+
locale?: string | undefined;
|
|
103686
|
+
}[];
|
|
103687
|
+
globalAnalytics: {
|
|
103123
103688
|
timestamp: Date;
|
|
103689
|
+
versionId: string;
|
|
103124
103690
|
visits: number;
|
|
103125
103691
|
sessions: number;
|
|
103126
103692
|
locale?: string | undefined;
|
|
103127
103693
|
}[];
|
|
103694
|
+
pageAnalytics: {
|
|
103695
|
+
pagePersistentId: string;
|
|
103696
|
+
timestamp: Date;
|
|
103697
|
+
versionId: string;
|
|
103698
|
+
visits: number;
|
|
103699
|
+
sessions: number;
|
|
103700
|
+
locale?: string | undefined;
|
|
103701
|
+
}[];
|
|
103702
|
+
heatMapData: {
|
|
103703
|
+
timeFrame: {
|
|
103704
|
+
start: Date;
|
|
103705
|
+
end?: Date | undefined;
|
|
103706
|
+
};
|
|
103707
|
+
mon: number[];
|
|
103708
|
+
tue: number[];
|
|
103709
|
+
wed: number[];
|
|
103710
|
+
thu: number[];
|
|
103711
|
+
fri: number[];
|
|
103712
|
+
sat: number[];
|
|
103713
|
+
sun: number[];
|
|
103714
|
+
}[];
|
|
103715
|
+
comparisonData: {
|
|
103716
|
+
timeFrame: {
|
|
103717
|
+
start: Date;
|
|
103718
|
+
end?: Date | undefined;
|
|
103719
|
+
};
|
|
103720
|
+
priorVisitCount: number;
|
|
103721
|
+
priorSessionCount: number;
|
|
103722
|
+
currentVisitCount: number;
|
|
103723
|
+
currentSessionCount: number;
|
|
103724
|
+
}[];
|
|
103128
103725
|
}>;
|
|
103129
103726
|
}
|
|
103130
103727
|
|
|
@@ -103689,12 +104286,12 @@ declare class StorybookEntriesEndpoint {
|
|
|
103689
104286
|
list(dsId: string): Promise<{
|
|
103690
104287
|
entries: {
|
|
103691
104288
|
id: string;
|
|
104289
|
+
url: string;
|
|
103692
104290
|
createdAt: Date;
|
|
103693
104291
|
updatedAt: Date;
|
|
103694
104292
|
sourceId: string;
|
|
103695
104293
|
designSystemId: string;
|
|
103696
104294
|
storyId: string;
|
|
103697
|
-
url: string;
|
|
103698
104295
|
origin: {
|
|
103699
104296
|
type: "story" | "docs";
|
|
103700
104297
|
name: string;
|
|
@@ -105218,8 +105815,8 @@ declare class UsersEndpoint {
|
|
|
105218
105815
|
getMe(): Promise<{
|
|
105219
105816
|
user: {
|
|
105220
105817
|
id: string;
|
|
105221
|
-
createdAt: Date;
|
|
105222
105818
|
email: string;
|
|
105819
|
+
createdAt: Date;
|
|
105223
105820
|
profile: {
|
|
105224
105821
|
name: string;
|
|
105225
105822
|
nickname?: string | undefined;
|
|
@@ -105455,8 +106052,8 @@ declare class UsersEndpoint {
|
|
|
105455
106052
|
delete(uid: string): Promise<{
|
|
105456
106053
|
user: {
|
|
105457
106054
|
id: string;
|
|
105458
|
-
createdAt: Date;
|
|
105459
106055
|
email: string;
|
|
106056
|
+
createdAt: Date;
|
|
105460
106057
|
profile: {
|
|
105461
106058
|
name: string;
|
|
105462
106059
|
nickname?: string | undefined;
|
|
@@ -105491,8 +106088,8 @@ declare class UsersEndpoint {
|
|
|
105491
106088
|
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
105492
106089
|
user: {
|
|
105493
106090
|
id: string;
|
|
105494
|
-
createdAt: Date;
|
|
105495
106091
|
email: string;
|
|
106092
|
+
createdAt: Date;
|
|
105496
106093
|
profile: {
|
|
105497
106094
|
name: string;
|
|
105498
106095
|
nickname?: string | undefined;
|
|
@@ -107667,4 +108264,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
107667
108264
|
reason: ValidationErrorReason | undefined;
|
|
107668
108265
|
};
|
|
107669
108266
|
|
|
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 };
|
|
108267
|
+
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, 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, DTOPubishedDocAnalyticsComparisonData, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, 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, 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 };
|