@supernova-studio/client 0.54.3 → 0.54.5
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 +343 -72
- package/dist/index.d.ts +343 -72
- package/dist/index.js +98 -91
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +442 -435
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4858,6 +4858,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4858
4858
|
} | null | undefined>;
|
|
4859
4859
|
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
4860
4860
|
approvalRequiredForPublishing: z.ZodBoolean;
|
|
4861
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
4861
4862
|
createdAt: z.ZodDate;
|
|
4862
4863
|
updatedAt: z.ZodDate;
|
|
4863
4864
|
}, "description" | "name" | "docExporterId">, {
|
|
@@ -4891,6 +4892,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4891
4892
|
basePrefixes: string[];
|
|
4892
4893
|
isApprovalFeatureEnabled: boolean;
|
|
4893
4894
|
approvalRequiredForPublishing: boolean;
|
|
4895
|
+
accessMode: "Open" | "InviteOnly";
|
|
4894
4896
|
docUserSlug?: string | undefined;
|
|
4895
4897
|
docViewUrl?: string | undefined;
|
|
4896
4898
|
designSystemSwitcher?: {
|
|
@@ -4915,6 +4917,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4915
4917
|
basePrefixes: string[];
|
|
4916
4918
|
isApprovalFeatureEnabled: boolean;
|
|
4917
4919
|
approvalRequiredForPublishing: boolean;
|
|
4920
|
+
accessMode: "Open" | "InviteOnly";
|
|
4918
4921
|
docUserSlug?: string | null | undefined;
|
|
4919
4922
|
docViewUrl?: string | null | undefined;
|
|
4920
4923
|
designSystemSwitcher?: {
|
|
@@ -8962,108 +8965,219 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
8962
8965
|
}>;
|
|
8963
8966
|
type DTOPublishDocumentationResponse = z.infer<typeof DTOPublishDocumentationResponse>;
|
|
8964
8967
|
|
|
8965
|
-
declare const DTOFigmaComponentBooleanProperty: z.ZodObject<{
|
|
8968
|
+
declare const DTOFigmaComponentBooleanProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
8969
|
+
id: z.ZodString;
|
|
8970
|
+
name: z.ZodString;
|
|
8971
|
+
}, {
|
|
8966
8972
|
type: z.ZodLiteral<"Boolean">;
|
|
8967
8973
|
defaultValue: z.ZodBoolean;
|
|
8968
|
-
}
|
|
8974
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8975
|
+
id: string;
|
|
8969
8976
|
type: "Boolean";
|
|
8977
|
+
name: string;
|
|
8970
8978
|
defaultValue: boolean;
|
|
8971
8979
|
}, {
|
|
8980
|
+
id: string;
|
|
8972
8981
|
type: "Boolean";
|
|
8982
|
+
name: string;
|
|
8973
8983
|
defaultValue: boolean;
|
|
8974
8984
|
}>;
|
|
8975
8985
|
type DTOFigmaComponentBooleanProperty = z.infer<typeof DTOFigmaComponentBooleanProperty>;
|
|
8976
|
-
declare const DTOFigmaComponentInstanceSwapProperty: z.ZodObject<{
|
|
8986
|
+
declare const DTOFigmaComponentInstanceSwapProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
8987
|
+
id: z.ZodString;
|
|
8988
|
+
name: z.ZodString;
|
|
8989
|
+
}, {
|
|
8977
8990
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
8978
8991
|
defaultValue: z.ZodString;
|
|
8979
|
-
}
|
|
8992
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8993
|
+
id: string;
|
|
8980
8994
|
type: "InstanceSwap";
|
|
8995
|
+
name: string;
|
|
8981
8996
|
defaultValue: string;
|
|
8982
8997
|
}, {
|
|
8998
|
+
id: string;
|
|
8983
8999
|
type: "InstanceSwap";
|
|
9000
|
+
name: string;
|
|
8984
9001
|
defaultValue: string;
|
|
8985
9002
|
}>;
|
|
8986
9003
|
type DTOFigmaComponentInstanceSwapProperty = z.infer<typeof DTOFigmaComponentInstanceSwapProperty>;
|
|
8987
|
-
declare const DTOFigmaComponentTextProperty: z.ZodObject<{
|
|
9004
|
+
declare const DTOFigmaComponentTextProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
9005
|
+
id: z.ZodString;
|
|
9006
|
+
name: z.ZodString;
|
|
9007
|
+
}, {
|
|
8988
9008
|
type: z.ZodLiteral<"Text">;
|
|
9009
|
+
id: z.ZodString;
|
|
8989
9010
|
defaultValue: z.ZodString;
|
|
8990
|
-
}
|
|
9011
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9012
|
+
id: string;
|
|
8991
9013
|
type: "Text";
|
|
9014
|
+
name: string;
|
|
8992
9015
|
defaultValue: string;
|
|
8993
9016
|
}, {
|
|
9017
|
+
id: string;
|
|
8994
9018
|
type: "Text";
|
|
9019
|
+
name: string;
|
|
8995
9020
|
defaultValue: string;
|
|
8996
9021
|
}>;
|
|
8997
9022
|
type DTOFigmaComponentTextProperty = z.infer<typeof DTOFigmaComponentTextProperty>;
|
|
8998
|
-
declare const DTOFigmaComponentVariantProperty: z.ZodObject<{
|
|
9023
|
+
declare const DTOFigmaComponentVariantProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
9024
|
+
id: z.ZodString;
|
|
9025
|
+
name: z.ZodString;
|
|
9026
|
+
}, {
|
|
8999
9027
|
type: z.ZodLiteral<"Variant">;
|
|
9000
9028
|
defaultValue: z.ZodString;
|
|
9001
9029
|
options: z.ZodArray<z.ZodString, "many">;
|
|
9002
|
-
}
|
|
9030
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9031
|
+
id: string;
|
|
9003
9032
|
options: string[];
|
|
9004
9033
|
type: "Variant";
|
|
9034
|
+
name: string;
|
|
9005
9035
|
defaultValue: string;
|
|
9006
9036
|
}, {
|
|
9037
|
+
id: string;
|
|
9007
9038
|
options: string[];
|
|
9008
9039
|
type: "Variant";
|
|
9040
|
+
name: string;
|
|
9009
9041
|
defaultValue: string;
|
|
9010
9042
|
}>;
|
|
9011
9043
|
type DTOFigmaComponentVariantProperty = z.infer<typeof DTOFigmaComponentVariantProperty>;
|
|
9012
|
-
declare const DTOFigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9044
|
+
declare const DTOFigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
9045
|
+
id: z.ZodString;
|
|
9046
|
+
name: z.ZodString;
|
|
9047
|
+
}, {
|
|
9013
9048
|
type: z.ZodLiteral<"Boolean">;
|
|
9014
9049
|
defaultValue: z.ZodBoolean;
|
|
9015
|
-
}
|
|
9050
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9051
|
+
id: string;
|
|
9016
9052
|
type: "Boolean";
|
|
9053
|
+
name: string;
|
|
9017
9054
|
defaultValue: boolean;
|
|
9018
9055
|
}, {
|
|
9056
|
+
id: string;
|
|
9019
9057
|
type: "Boolean";
|
|
9058
|
+
name: string;
|
|
9020
9059
|
defaultValue: boolean;
|
|
9021
|
-
}>, z.ZodObject<{
|
|
9060
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9061
|
+
id: z.ZodString;
|
|
9062
|
+
name: z.ZodString;
|
|
9063
|
+
}, {
|
|
9022
9064
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9023
9065
|
defaultValue: z.ZodString;
|
|
9024
|
-
}
|
|
9066
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9067
|
+
id: string;
|
|
9025
9068
|
type: "InstanceSwap";
|
|
9069
|
+
name: string;
|
|
9026
9070
|
defaultValue: string;
|
|
9027
9071
|
}, {
|
|
9072
|
+
id: string;
|
|
9028
9073
|
type: "InstanceSwap";
|
|
9074
|
+
name: string;
|
|
9029
9075
|
defaultValue: string;
|
|
9030
|
-
}>, z.ZodObject<{
|
|
9076
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9077
|
+
id: z.ZodString;
|
|
9078
|
+
name: z.ZodString;
|
|
9079
|
+
}, {
|
|
9031
9080
|
type: z.ZodLiteral<"Text">;
|
|
9081
|
+
id: z.ZodString;
|
|
9032
9082
|
defaultValue: z.ZodString;
|
|
9033
|
-
}
|
|
9083
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9084
|
+
id: string;
|
|
9034
9085
|
type: "Text";
|
|
9086
|
+
name: string;
|
|
9035
9087
|
defaultValue: string;
|
|
9036
9088
|
}, {
|
|
9089
|
+
id: string;
|
|
9037
9090
|
type: "Text";
|
|
9091
|
+
name: string;
|
|
9092
|
+
defaultValue: string;
|
|
9093
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9094
|
+
id: z.ZodString;
|
|
9095
|
+
name: z.ZodString;
|
|
9096
|
+
}, {
|
|
9097
|
+
type: z.ZodLiteral<"Variant">;
|
|
9098
|
+
defaultValue: z.ZodString;
|
|
9099
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
9100
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9101
|
+
id: string;
|
|
9102
|
+
options: string[];
|
|
9103
|
+
type: "Variant";
|
|
9104
|
+
name: string;
|
|
9105
|
+
defaultValue: string;
|
|
9106
|
+
}, {
|
|
9107
|
+
id: string;
|
|
9108
|
+
options: string[];
|
|
9109
|
+
type: "Variant";
|
|
9110
|
+
name: string;
|
|
9038
9111
|
defaultValue: string;
|
|
9039
9112
|
}>]>;
|
|
9040
9113
|
type DTOFigmaComponentProperty = z.infer<typeof DTOFigmaComponentProperty>;
|
|
9041
|
-
declare const DTOFigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9114
|
+
declare const DTOFigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
9115
|
+
id: z.ZodString;
|
|
9116
|
+
name: z.ZodString;
|
|
9117
|
+
}, {
|
|
9042
9118
|
type: z.ZodLiteral<"Boolean">;
|
|
9043
9119
|
defaultValue: z.ZodBoolean;
|
|
9044
|
-
}
|
|
9120
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9121
|
+
id: string;
|
|
9045
9122
|
type: "Boolean";
|
|
9123
|
+
name: string;
|
|
9046
9124
|
defaultValue: boolean;
|
|
9047
9125
|
}, {
|
|
9126
|
+
id: string;
|
|
9048
9127
|
type: "Boolean";
|
|
9128
|
+
name: string;
|
|
9049
9129
|
defaultValue: boolean;
|
|
9050
|
-
}>, z.ZodObject<{
|
|
9130
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9131
|
+
id: z.ZodString;
|
|
9132
|
+
name: z.ZodString;
|
|
9133
|
+
}, {
|
|
9051
9134
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9052
9135
|
defaultValue: z.ZodString;
|
|
9053
|
-
}
|
|
9136
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9137
|
+
id: string;
|
|
9054
9138
|
type: "InstanceSwap";
|
|
9139
|
+
name: string;
|
|
9055
9140
|
defaultValue: string;
|
|
9056
9141
|
}, {
|
|
9142
|
+
id: string;
|
|
9057
9143
|
type: "InstanceSwap";
|
|
9144
|
+
name: string;
|
|
9058
9145
|
defaultValue: string;
|
|
9059
|
-
}>, z.ZodObject<{
|
|
9146
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9147
|
+
id: z.ZodString;
|
|
9148
|
+
name: z.ZodString;
|
|
9149
|
+
}, {
|
|
9060
9150
|
type: z.ZodLiteral<"Text">;
|
|
9151
|
+
id: z.ZodString;
|
|
9061
9152
|
defaultValue: z.ZodString;
|
|
9062
|
-
}
|
|
9153
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9154
|
+
id: string;
|
|
9063
9155
|
type: "Text";
|
|
9156
|
+
name: string;
|
|
9064
9157
|
defaultValue: string;
|
|
9065
9158
|
}, {
|
|
9159
|
+
id: string;
|
|
9066
9160
|
type: "Text";
|
|
9161
|
+
name: string;
|
|
9162
|
+
defaultValue: string;
|
|
9163
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9164
|
+
id: z.ZodString;
|
|
9165
|
+
name: z.ZodString;
|
|
9166
|
+
}, {
|
|
9167
|
+
type: z.ZodLiteral<"Variant">;
|
|
9168
|
+
defaultValue: z.ZodString;
|
|
9169
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
9170
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9171
|
+
id: string;
|
|
9172
|
+
options: string[];
|
|
9173
|
+
type: "Variant";
|
|
9174
|
+
name: string;
|
|
9175
|
+
defaultValue: string;
|
|
9176
|
+
}, {
|
|
9177
|
+
id: string;
|
|
9178
|
+
options: string[];
|
|
9179
|
+
type: "Variant";
|
|
9180
|
+
name: string;
|
|
9067
9181
|
defaultValue: string;
|
|
9068
9182
|
}>]>>;
|
|
9069
9183
|
type DTOFigmaComponentPropertyMap = z.infer<typeof DTOFigmaComponentPropertyMap>;
|
|
@@ -9117,32 +9231,73 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9117
9231
|
nodeId?: string | undefined;
|
|
9118
9232
|
}>>;
|
|
9119
9233
|
parentComponentPersistentId: z.ZodOptional<z.ZodString>;
|
|
9120
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9234
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
9235
|
+
id: z.ZodString;
|
|
9236
|
+
name: z.ZodString;
|
|
9237
|
+
}, {
|
|
9121
9238
|
type: z.ZodLiteral<"Boolean">;
|
|
9122
9239
|
defaultValue: z.ZodBoolean;
|
|
9123
|
-
}
|
|
9240
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9241
|
+
id: string;
|
|
9124
9242
|
type: "Boolean";
|
|
9243
|
+
name: string;
|
|
9125
9244
|
defaultValue: boolean;
|
|
9126
9245
|
}, {
|
|
9246
|
+
id: string;
|
|
9127
9247
|
type: "Boolean";
|
|
9248
|
+
name: string;
|
|
9128
9249
|
defaultValue: boolean;
|
|
9129
|
-
}>, z.ZodObject<{
|
|
9250
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9251
|
+
id: z.ZodString;
|
|
9252
|
+
name: z.ZodString;
|
|
9253
|
+
}, {
|
|
9130
9254
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9131
9255
|
defaultValue: z.ZodString;
|
|
9132
|
-
}
|
|
9256
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9257
|
+
id: string;
|
|
9133
9258
|
type: "InstanceSwap";
|
|
9259
|
+
name: string;
|
|
9134
9260
|
defaultValue: string;
|
|
9135
9261
|
}, {
|
|
9262
|
+
id: string;
|
|
9136
9263
|
type: "InstanceSwap";
|
|
9264
|
+
name: string;
|
|
9137
9265
|
defaultValue: string;
|
|
9138
|
-
}>, z.ZodObject<{
|
|
9266
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9267
|
+
id: z.ZodString;
|
|
9268
|
+
name: z.ZodString;
|
|
9269
|
+
}, {
|
|
9139
9270
|
type: z.ZodLiteral<"Text">;
|
|
9271
|
+
id: z.ZodString;
|
|
9140
9272
|
defaultValue: z.ZodString;
|
|
9141
|
-
}
|
|
9273
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9274
|
+
id: string;
|
|
9142
9275
|
type: "Text";
|
|
9276
|
+
name: string;
|
|
9143
9277
|
defaultValue: string;
|
|
9144
9278
|
}, {
|
|
9279
|
+
id: string;
|
|
9145
9280
|
type: "Text";
|
|
9281
|
+
name: string;
|
|
9282
|
+
defaultValue: string;
|
|
9283
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9284
|
+
id: z.ZodString;
|
|
9285
|
+
name: z.ZodString;
|
|
9286
|
+
}, {
|
|
9287
|
+
type: z.ZodLiteral<"Variant">;
|
|
9288
|
+
defaultValue: z.ZodString;
|
|
9289
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
9290
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9291
|
+
id: string;
|
|
9292
|
+
options: string[];
|
|
9293
|
+
type: "Variant";
|
|
9294
|
+
name: string;
|
|
9295
|
+
defaultValue: string;
|
|
9296
|
+
}, {
|
|
9297
|
+
id: string;
|
|
9298
|
+
options: string[];
|
|
9299
|
+
type: "Variant";
|
|
9300
|
+
name: string;
|
|
9146
9301
|
defaultValue: string;
|
|
9147
9302
|
}>]>>>;
|
|
9148
9303
|
childrenPersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -9172,13 +9327,25 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9172
9327
|
} | undefined;
|
|
9173
9328
|
parentComponentPersistentId?: string | undefined;
|
|
9174
9329
|
componentPropertyDefinitions?: Record<string, {
|
|
9330
|
+
id: string;
|
|
9175
9331
|
type: "Boolean";
|
|
9332
|
+
name: string;
|
|
9176
9333
|
defaultValue: boolean;
|
|
9177
9334
|
} | {
|
|
9335
|
+
id: string;
|
|
9178
9336
|
type: "InstanceSwap";
|
|
9337
|
+
name: string;
|
|
9179
9338
|
defaultValue: string;
|
|
9180
9339
|
} | {
|
|
9340
|
+
id: string;
|
|
9181
9341
|
type: "Text";
|
|
9342
|
+
name: string;
|
|
9343
|
+
defaultValue: string;
|
|
9344
|
+
} | {
|
|
9345
|
+
id: string;
|
|
9346
|
+
options: string[];
|
|
9347
|
+
type: "Variant";
|
|
9348
|
+
name: string;
|
|
9182
9349
|
defaultValue: string;
|
|
9183
9350
|
}> | undefined;
|
|
9184
9351
|
childrenPersistentIds?: string[] | undefined;
|
|
@@ -9208,13 +9375,25 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9208
9375
|
} | undefined;
|
|
9209
9376
|
parentComponentPersistentId?: string | undefined;
|
|
9210
9377
|
componentPropertyDefinitions?: Record<string, {
|
|
9378
|
+
id: string;
|
|
9211
9379
|
type: "Boolean";
|
|
9380
|
+
name: string;
|
|
9212
9381
|
defaultValue: boolean;
|
|
9213
9382
|
} | {
|
|
9383
|
+
id: string;
|
|
9214
9384
|
type: "InstanceSwap";
|
|
9385
|
+
name: string;
|
|
9215
9386
|
defaultValue: string;
|
|
9216
9387
|
} | {
|
|
9388
|
+
id: string;
|
|
9217
9389
|
type: "Text";
|
|
9390
|
+
name: string;
|
|
9391
|
+
defaultValue: string;
|
|
9392
|
+
} | {
|
|
9393
|
+
id: string;
|
|
9394
|
+
options: string[];
|
|
9395
|
+
type: "Variant";
|
|
9396
|
+
name: string;
|
|
9218
9397
|
defaultValue: string;
|
|
9219
9398
|
}> | undefined;
|
|
9220
9399
|
childrenPersistentIds?: string[] | undefined;
|
|
@@ -9271,32 +9450,73 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9271
9450
|
nodeId?: string | undefined;
|
|
9272
9451
|
}>>;
|
|
9273
9452
|
parentComponentPersistentId: z.ZodOptional<z.ZodString>;
|
|
9274
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9453
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
9454
|
+
id: z.ZodString;
|
|
9455
|
+
name: z.ZodString;
|
|
9456
|
+
}, {
|
|
9275
9457
|
type: z.ZodLiteral<"Boolean">;
|
|
9276
9458
|
defaultValue: z.ZodBoolean;
|
|
9277
|
-
}
|
|
9459
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9460
|
+
id: string;
|
|
9278
9461
|
type: "Boolean";
|
|
9462
|
+
name: string;
|
|
9279
9463
|
defaultValue: boolean;
|
|
9280
9464
|
}, {
|
|
9465
|
+
id: string;
|
|
9281
9466
|
type: "Boolean";
|
|
9467
|
+
name: string;
|
|
9282
9468
|
defaultValue: boolean;
|
|
9283
|
-
}>, z.ZodObject<{
|
|
9469
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9470
|
+
id: z.ZodString;
|
|
9471
|
+
name: z.ZodString;
|
|
9472
|
+
}, {
|
|
9284
9473
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9285
9474
|
defaultValue: z.ZodString;
|
|
9286
|
-
}
|
|
9475
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9476
|
+
id: string;
|
|
9287
9477
|
type: "InstanceSwap";
|
|
9478
|
+
name: string;
|
|
9288
9479
|
defaultValue: string;
|
|
9289
9480
|
}, {
|
|
9481
|
+
id: string;
|
|
9290
9482
|
type: "InstanceSwap";
|
|
9483
|
+
name: string;
|
|
9291
9484
|
defaultValue: string;
|
|
9292
|
-
}>, z.ZodObject<{
|
|
9485
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9486
|
+
id: z.ZodString;
|
|
9487
|
+
name: z.ZodString;
|
|
9488
|
+
}, {
|
|
9293
9489
|
type: z.ZodLiteral<"Text">;
|
|
9490
|
+
id: z.ZodString;
|
|
9294
9491
|
defaultValue: z.ZodString;
|
|
9295
|
-
}
|
|
9492
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9493
|
+
id: string;
|
|
9296
9494
|
type: "Text";
|
|
9495
|
+
name: string;
|
|
9297
9496
|
defaultValue: string;
|
|
9298
9497
|
}, {
|
|
9498
|
+
id: string;
|
|
9299
9499
|
type: "Text";
|
|
9500
|
+
name: string;
|
|
9501
|
+
defaultValue: string;
|
|
9502
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9503
|
+
id: z.ZodString;
|
|
9504
|
+
name: z.ZodString;
|
|
9505
|
+
}, {
|
|
9506
|
+
type: z.ZodLiteral<"Variant">;
|
|
9507
|
+
defaultValue: z.ZodString;
|
|
9508
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
9509
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9510
|
+
id: string;
|
|
9511
|
+
options: string[];
|
|
9512
|
+
type: "Variant";
|
|
9513
|
+
name: string;
|
|
9514
|
+
defaultValue: string;
|
|
9515
|
+
}, {
|
|
9516
|
+
id: string;
|
|
9517
|
+
options: string[];
|
|
9518
|
+
type: "Variant";
|
|
9519
|
+
name: string;
|
|
9300
9520
|
defaultValue: string;
|
|
9301
9521
|
}>]>>>;
|
|
9302
9522
|
childrenPersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -9326,13 +9546,25 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9326
9546
|
} | undefined;
|
|
9327
9547
|
parentComponentPersistentId?: string | undefined;
|
|
9328
9548
|
componentPropertyDefinitions?: Record<string, {
|
|
9549
|
+
id: string;
|
|
9329
9550
|
type: "Boolean";
|
|
9551
|
+
name: string;
|
|
9330
9552
|
defaultValue: boolean;
|
|
9331
9553
|
} | {
|
|
9554
|
+
id: string;
|
|
9332
9555
|
type: "InstanceSwap";
|
|
9556
|
+
name: string;
|
|
9333
9557
|
defaultValue: string;
|
|
9334
9558
|
} | {
|
|
9559
|
+
id: string;
|
|
9335
9560
|
type: "Text";
|
|
9561
|
+
name: string;
|
|
9562
|
+
defaultValue: string;
|
|
9563
|
+
} | {
|
|
9564
|
+
id: string;
|
|
9565
|
+
options: string[];
|
|
9566
|
+
type: "Variant";
|
|
9567
|
+
name: string;
|
|
9336
9568
|
defaultValue: string;
|
|
9337
9569
|
}> | undefined;
|
|
9338
9570
|
childrenPersistentIds?: string[] | undefined;
|
|
@@ -9362,13 +9594,25 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9362
9594
|
} | undefined;
|
|
9363
9595
|
parentComponentPersistentId?: string | undefined;
|
|
9364
9596
|
componentPropertyDefinitions?: Record<string, {
|
|
9597
|
+
id: string;
|
|
9365
9598
|
type: "Boolean";
|
|
9599
|
+
name: string;
|
|
9366
9600
|
defaultValue: boolean;
|
|
9367
9601
|
} | {
|
|
9602
|
+
id: string;
|
|
9368
9603
|
type: "InstanceSwap";
|
|
9604
|
+
name: string;
|
|
9369
9605
|
defaultValue: string;
|
|
9370
9606
|
} | {
|
|
9607
|
+
id: string;
|
|
9371
9608
|
type: "Text";
|
|
9609
|
+
name: string;
|
|
9610
|
+
defaultValue: string;
|
|
9611
|
+
} | {
|
|
9612
|
+
id: string;
|
|
9613
|
+
options: string[];
|
|
9614
|
+
type: "Variant";
|
|
9615
|
+
name: string;
|
|
9372
9616
|
defaultValue: string;
|
|
9373
9617
|
}> | undefined;
|
|
9374
9618
|
childrenPersistentIds?: string[] | undefined;
|
|
@@ -9400,13 +9644,25 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9400
9644
|
} | undefined;
|
|
9401
9645
|
parentComponentPersistentId?: string | undefined;
|
|
9402
9646
|
componentPropertyDefinitions?: Record<string, {
|
|
9647
|
+
id: string;
|
|
9403
9648
|
type: "Boolean";
|
|
9649
|
+
name: string;
|
|
9404
9650
|
defaultValue: boolean;
|
|
9405
9651
|
} | {
|
|
9652
|
+
id: string;
|
|
9406
9653
|
type: "InstanceSwap";
|
|
9654
|
+
name: string;
|
|
9407
9655
|
defaultValue: string;
|
|
9408
9656
|
} | {
|
|
9657
|
+
id: string;
|
|
9409
9658
|
type: "Text";
|
|
9659
|
+
name: string;
|
|
9660
|
+
defaultValue: string;
|
|
9661
|
+
} | {
|
|
9662
|
+
id: string;
|
|
9663
|
+
options: string[];
|
|
9664
|
+
type: "Variant";
|
|
9665
|
+
name: string;
|
|
9410
9666
|
defaultValue: string;
|
|
9411
9667
|
}> | undefined;
|
|
9412
9668
|
childrenPersistentIds?: string[] | undefined;
|
|
@@ -9438,13 +9694,25 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9438
9694
|
} | undefined;
|
|
9439
9695
|
parentComponentPersistentId?: string | undefined;
|
|
9440
9696
|
componentPropertyDefinitions?: Record<string, {
|
|
9697
|
+
id: string;
|
|
9441
9698
|
type: "Boolean";
|
|
9699
|
+
name: string;
|
|
9442
9700
|
defaultValue: boolean;
|
|
9443
9701
|
} | {
|
|
9702
|
+
id: string;
|
|
9444
9703
|
type: "InstanceSwap";
|
|
9704
|
+
name: string;
|
|
9445
9705
|
defaultValue: string;
|
|
9446
9706
|
} | {
|
|
9707
|
+
id: string;
|
|
9447
9708
|
type: "Text";
|
|
9709
|
+
name: string;
|
|
9710
|
+
defaultValue: string;
|
|
9711
|
+
} | {
|
|
9712
|
+
id: string;
|
|
9713
|
+
options: string[];
|
|
9714
|
+
type: "Variant";
|
|
9715
|
+
name: string;
|
|
9448
9716
|
defaultValue: string;
|
|
9449
9717
|
}> | undefined;
|
|
9450
9718
|
childrenPersistentIds?: string[] | undefined;
|
|
@@ -32746,16 +33014,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
32746
33014
|
}, "strip", z.ZodTypeAny, {
|
|
32747
33015
|
id: string;
|
|
32748
33016
|
email?: string | undefined;
|
|
32749
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32750
33017
|
handle?: string | undefined;
|
|
32751
33018
|
avatarUrl?: string | undefined;
|
|
33019
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32752
33020
|
customUrl?: string | undefined;
|
|
32753
33021
|
}, {
|
|
32754
33022
|
id: string;
|
|
32755
33023
|
email?: string | undefined;
|
|
32756
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32757
33024
|
handle?: string | undefined;
|
|
32758
33025
|
avatarUrl?: string | undefined;
|
|
33026
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32759
33027
|
customUrl?: string | undefined;
|
|
32760
33028
|
}>>;
|
|
32761
33029
|
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -32768,16 +33036,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
32768
33036
|
}, "strip", z.ZodTypeAny, {
|
|
32769
33037
|
id: string;
|
|
32770
33038
|
email?: string | undefined;
|
|
32771
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32772
33039
|
handle?: string | undefined;
|
|
32773
33040
|
avatarUrl?: string | undefined;
|
|
33041
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32774
33042
|
customUrl?: string | undefined;
|
|
32775
33043
|
}, {
|
|
32776
33044
|
id: string;
|
|
32777
33045
|
email?: string | undefined;
|
|
32778
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32779
33046
|
handle?: string | undefined;
|
|
32780
33047
|
avatarUrl?: string | undefined;
|
|
33048
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32781
33049
|
customUrl?: string | undefined;
|
|
32782
33050
|
}>, "many">>;
|
|
32783
33051
|
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -32790,16 +33058,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
32790
33058
|
}, "strip", z.ZodTypeAny, {
|
|
32791
33059
|
id: string;
|
|
32792
33060
|
email?: string | undefined;
|
|
32793
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32794
33061
|
handle?: string | undefined;
|
|
32795
33062
|
avatarUrl?: string | undefined;
|
|
33063
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32796
33064
|
customUrl?: string | undefined;
|
|
32797
33065
|
}, {
|
|
32798
33066
|
id: string;
|
|
32799
33067
|
email?: string | undefined;
|
|
32800
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32801
33068
|
handle?: string | undefined;
|
|
32802
33069
|
avatarUrl?: string | undefined;
|
|
33070
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32803
33071
|
customUrl?: string | undefined;
|
|
32804
33072
|
}>, "many">>;
|
|
32805
33073
|
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -32812,16 +33080,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
32812
33080
|
}, "strip", z.ZodTypeAny, {
|
|
32813
33081
|
id: string;
|
|
32814
33082
|
email?: string | undefined;
|
|
32815
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32816
33083
|
handle?: string | undefined;
|
|
32817
33084
|
avatarUrl?: string | undefined;
|
|
33085
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32818
33086
|
customUrl?: string | undefined;
|
|
32819
33087
|
}, {
|
|
32820
33088
|
id: string;
|
|
32821
33089
|
email?: string | undefined;
|
|
32822
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32823
33090
|
handle?: string | undefined;
|
|
32824
33091
|
avatarUrl?: string | undefined;
|
|
33092
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32825
33093
|
customUrl?: string | undefined;
|
|
32826
33094
|
}>, "many">>;
|
|
32827
33095
|
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -32834,98 +33102,98 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
32834
33102
|
}, "strip", z.ZodTypeAny, {
|
|
32835
33103
|
id: string;
|
|
32836
33104
|
email?: string | undefined;
|
|
32837
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32838
33105
|
handle?: string | undefined;
|
|
32839
33106
|
avatarUrl?: string | undefined;
|
|
33107
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32840
33108
|
customUrl?: string | undefined;
|
|
32841
33109
|
}, {
|
|
32842
33110
|
id: string;
|
|
32843
33111
|
email?: string | undefined;
|
|
32844
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32845
33112
|
handle?: string | undefined;
|
|
32846
33113
|
avatarUrl?: string | undefined;
|
|
33114
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32847
33115
|
customUrl?: string | undefined;
|
|
32848
33116
|
}>, "many">>;
|
|
32849
33117
|
}, "strip", z.ZodTypeAny, {
|
|
32850
33118
|
azure?: {
|
|
32851
33119
|
id: string;
|
|
32852
33120
|
email?: string | undefined;
|
|
32853
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32854
33121
|
handle?: string | undefined;
|
|
32855
33122
|
avatarUrl?: string | undefined;
|
|
33123
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32856
33124
|
customUrl?: string | undefined;
|
|
32857
33125
|
}[] | undefined;
|
|
32858
33126
|
github?: {
|
|
32859
33127
|
id: string;
|
|
32860
33128
|
email?: string | undefined;
|
|
32861
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32862
33129
|
handle?: string | undefined;
|
|
32863
33130
|
avatarUrl?: string | undefined;
|
|
33131
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32864
33132
|
customUrl?: string | undefined;
|
|
32865
33133
|
}[] | undefined;
|
|
32866
33134
|
gitlab?: {
|
|
32867
33135
|
id: string;
|
|
32868
33136
|
email?: string | undefined;
|
|
32869
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32870
33137
|
handle?: string | undefined;
|
|
32871
33138
|
avatarUrl?: string | undefined;
|
|
33139
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32872
33140
|
customUrl?: string | undefined;
|
|
32873
33141
|
}[] | undefined;
|
|
32874
33142
|
bitbucket?: {
|
|
32875
33143
|
id: string;
|
|
32876
33144
|
email?: string | undefined;
|
|
32877
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32878
33145
|
handle?: string | undefined;
|
|
32879
33146
|
avatarUrl?: string | undefined;
|
|
33147
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32880
33148
|
customUrl?: string | undefined;
|
|
32881
33149
|
}[] | undefined;
|
|
32882
33150
|
figma?: {
|
|
32883
33151
|
id: string;
|
|
32884
33152
|
email?: string | undefined;
|
|
32885
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32886
33153
|
handle?: string | undefined;
|
|
32887
33154
|
avatarUrl?: string | undefined;
|
|
33155
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32888
33156
|
customUrl?: string | undefined;
|
|
32889
33157
|
} | undefined;
|
|
32890
33158
|
}, {
|
|
32891
33159
|
azure?: {
|
|
32892
33160
|
id: string;
|
|
32893
33161
|
email?: string | undefined;
|
|
32894
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32895
33162
|
handle?: string | undefined;
|
|
32896
33163
|
avatarUrl?: string | undefined;
|
|
33164
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32897
33165
|
customUrl?: string | undefined;
|
|
32898
33166
|
}[] | undefined;
|
|
32899
33167
|
github?: {
|
|
32900
33168
|
id: string;
|
|
32901
33169
|
email?: string | undefined;
|
|
32902
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32903
33170
|
handle?: string | undefined;
|
|
32904
33171
|
avatarUrl?: string | undefined;
|
|
33172
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32905
33173
|
customUrl?: string | undefined;
|
|
32906
33174
|
}[] | undefined;
|
|
32907
33175
|
gitlab?: {
|
|
32908
33176
|
id: string;
|
|
32909
33177
|
email?: string | undefined;
|
|
32910
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32911
33178
|
handle?: string | undefined;
|
|
32912
33179
|
avatarUrl?: string | undefined;
|
|
33180
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32913
33181
|
customUrl?: string | undefined;
|
|
32914
33182
|
}[] | undefined;
|
|
32915
33183
|
bitbucket?: {
|
|
32916
33184
|
id: string;
|
|
32917
33185
|
email?: string | undefined;
|
|
32918
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32919
33186
|
handle?: string | undefined;
|
|
32920
33187
|
avatarUrl?: string | undefined;
|
|
33188
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32921
33189
|
customUrl?: string | undefined;
|
|
32922
33190
|
}[] | undefined;
|
|
32923
33191
|
figma?: {
|
|
32924
33192
|
id: string;
|
|
32925
33193
|
email?: string | undefined;
|
|
32926
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32927
33194
|
handle?: string | undefined;
|
|
32928
33195
|
avatarUrl?: string | undefined;
|
|
33196
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32929
33197
|
customUrl?: string | undefined;
|
|
32930
33198
|
} | undefined;
|
|
32931
33199
|
}>>;
|
|
@@ -32961,41 +33229,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
32961
33229
|
azure?: {
|
|
32962
33230
|
id: string;
|
|
32963
33231
|
email?: string | undefined;
|
|
32964
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32965
33232
|
handle?: string | undefined;
|
|
32966
33233
|
avatarUrl?: string | undefined;
|
|
33234
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32967
33235
|
customUrl?: string | undefined;
|
|
32968
33236
|
}[] | undefined;
|
|
32969
33237
|
github?: {
|
|
32970
33238
|
id: string;
|
|
32971
33239
|
email?: string | undefined;
|
|
32972
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32973
33240
|
handle?: string | undefined;
|
|
32974
33241
|
avatarUrl?: string | undefined;
|
|
33242
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32975
33243
|
customUrl?: string | undefined;
|
|
32976
33244
|
}[] | undefined;
|
|
32977
33245
|
gitlab?: {
|
|
32978
33246
|
id: string;
|
|
32979
33247
|
email?: string | undefined;
|
|
32980
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32981
33248
|
handle?: string | undefined;
|
|
32982
33249
|
avatarUrl?: string | undefined;
|
|
33250
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32983
33251
|
customUrl?: string | undefined;
|
|
32984
33252
|
}[] | undefined;
|
|
32985
33253
|
bitbucket?: {
|
|
32986
33254
|
id: string;
|
|
32987
33255
|
email?: string | undefined;
|
|
32988
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32989
33256
|
handle?: string | undefined;
|
|
32990
33257
|
avatarUrl?: string | undefined;
|
|
33258
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32991
33259
|
customUrl?: string | undefined;
|
|
32992
33260
|
}[] | undefined;
|
|
32993
33261
|
figma?: {
|
|
32994
33262
|
id: string;
|
|
32995
33263
|
email?: string | undefined;
|
|
32996
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
32997
33264
|
handle?: string | undefined;
|
|
32998
33265
|
avatarUrl?: string | undefined;
|
|
33266
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
32999
33267
|
customUrl?: string | undefined;
|
|
33000
33268
|
} | undefined;
|
|
33001
33269
|
} | undefined;
|
|
@@ -33030,41 +33298,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33030
33298
|
azure?: {
|
|
33031
33299
|
id: string;
|
|
33032
33300
|
email?: string | undefined;
|
|
33033
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33034
33301
|
handle?: string | undefined;
|
|
33035
33302
|
avatarUrl?: string | undefined;
|
|
33303
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33036
33304
|
customUrl?: string | undefined;
|
|
33037
33305
|
}[] | undefined;
|
|
33038
33306
|
github?: {
|
|
33039
33307
|
id: string;
|
|
33040
33308
|
email?: string | undefined;
|
|
33041
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33042
33309
|
handle?: string | undefined;
|
|
33043
33310
|
avatarUrl?: string | undefined;
|
|
33311
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33044
33312
|
customUrl?: string | undefined;
|
|
33045
33313
|
}[] | undefined;
|
|
33046
33314
|
gitlab?: {
|
|
33047
33315
|
id: string;
|
|
33048
33316
|
email?: string | undefined;
|
|
33049
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33050
33317
|
handle?: string | undefined;
|
|
33051
33318
|
avatarUrl?: string | undefined;
|
|
33319
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33052
33320
|
customUrl?: string | undefined;
|
|
33053
33321
|
}[] | undefined;
|
|
33054
33322
|
bitbucket?: {
|
|
33055
33323
|
id: string;
|
|
33056
33324
|
email?: string | undefined;
|
|
33057
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33058
33325
|
handle?: string | undefined;
|
|
33059
33326
|
avatarUrl?: string | undefined;
|
|
33327
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33060
33328
|
customUrl?: string | undefined;
|
|
33061
33329
|
}[] | undefined;
|
|
33062
33330
|
figma?: {
|
|
33063
33331
|
id: string;
|
|
33064
33332
|
email?: string | undefined;
|
|
33065
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33066
33333
|
handle?: string | undefined;
|
|
33067
33334
|
avatarUrl?: string | undefined;
|
|
33335
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33068
33336
|
customUrl?: string | undefined;
|
|
33069
33337
|
} | undefined;
|
|
33070
33338
|
} | undefined;
|
|
@@ -33101,41 +33369,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33101
33369
|
azure?: {
|
|
33102
33370
|
id: string;
|
|
33103
33371
|
email?: string | undefined;
|
|
33104
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33105
33372
|
handle?: string | undefined;
|
|
33106
33373
|
avatarUrl?: string | undefined;
|
|
33374
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33107
33375
|
customUrl?: string | undefined;
|
|
33108
33376
|
}[] | undefined;
|
|
33109
33377
|
github?: {
|
|
33110
33378
|
id: string;
|
|
33111
33379
|
email?: string | undefined;
|
|
33112
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33113
33380
|
handle?: string | undefined;
|
|
33114
33381
|
avatarUrl?: string | undefined;
|
|
33382
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33115
33383
|
customUrl?: string | undefined;
|
|
33116
33384
|
}[] | undefined;
|
|
33117
33385
|
gitlab?: {
|
|
33118
33386
|
id: string;
|
|
33119
33387
|
email?: string | undefined;
|
|
33120
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33121
33388
|
handle?: string | undefined;
|
|
33122
33389
|
avatarUrl?: string | undefined;
|
|
33390
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33123
33391
|
customUrl?: string | undefined;
|
|
33124
33392
|
}[] | undefined;
|
|
33125
33393
|
bitbucket?: {
|
|
33126
33394
|
id: string;
|
|
33127
33395
|
email?: string | undefined;
|
|
33128
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33129
33396
|
handle?: string | undefined;
|
|
33130
33397
|
avatarUrl?: string | undefined;
|
|
33398
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33131
33399
|
customUrl?: string | undefined;
|
|
33132
33400
|
}[] | undefined;
|
|
33133
33401
|
figma?: {
|
|
33134
33402
|
id: string;
|
|
33135
33403
|
email?: string | undefined;
|
|
33136
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33137
33404
|
handle?: string | undefined;
|
|
33138
33405
|
avatarUrl?: string | undefined;
|
|
33406
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33139
33407
|
customUrl?: string | undefined;
|
|
33140
33408
|
} | undefined;
|
|
33141
33409
|
} | undefined;
|
|
@@ -33172,41 +33440,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
|
33172
33440
|
azure?: {
|
|
33173
33441
|
id: string;
|
|
33174
33442
|
email?: string | undefined;
|
|
33175
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33176
33443
|
handle?: string | undefined;
|
|
33177
33444
|
avatarUrl?: string | undefined;
|
|
33445
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33178
33446
|
customUrl?: string | undefined;
|
|
33179
33447
|
}[] | undefined;
|
|
33180
33448
|
github?: {
|
|
33181
33449
|
id: string;
|
|
33182
33450
|
email?: string | undefined;
|
|
33183
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33184
33451
|
handle?: string | undefined;
|
|
33185
33452
|
avatarUrl?: string | undefined;
|
|
33453
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33186
33454
|
customUrl?: string | undefined;
|
|
33187
33455
|
}[] | undefined;
|
|
33188
33456
|
gitlab?: {
|
|
33189
33457
|
id: string;
|
|
33190
33458
|
email?: string | undefined;
|
|
33191
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33192
33459
|
handle?: string | undefined;
|
|
33193
33460
|
avatarUrl?: string | undefined;
|
|
33461
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33194
33462
|
customUrl?: string | undefined;
|
|
33195
33463
|
}[] | undefined;
|
|
33196
33464
|
bitbucket?: {
|
|
33197
33465
|
id: string;
|
|
33198
33466
|
email?: string | undefined;
|
|
33199
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33200
33467
|
handle?: string | undefined;
|
|
33201
33468
|
avatarUrl?: string | undefined;
|
|
33469
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33202
33470
|
customUrl?: string | undefined;
|
|
33203
33471
|
}[] | undefined;
|
|
33204
33472
|
figma?: {
|
|
33205
33473
|
id: string;
|
|
33206
33474
|
email?: string | undefined;
|
|
33207
|
-
authType?: "OAuth2" | "PAT" | undefined;
|
|
33208
33475
|
handle?: string | undefined;
|
|
33209
33476
|
avatarUrl?: string | undefined;
|
|
33477
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
33210
33478
|
customUrl?: string | undefined;
|
|
33211
33479
|
} | undefined;
|
|
33212
33480
|
} | undefined;
|
|
@@ -39358,6 +39626,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
39358
39626
|
} | null | undefined>>;
|
|
39359
39627
|
isApprovalFeatureEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
39360
39628
|
approvalRequiredForPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
39629
|
+
accessMode: z.ZodOptional<z.ZodEnum<["Open", "InviteOnly"]>>;
|
|
39361
39630
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
39362
39631
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
39363
39632
|
}, "id" | "createdAt" | "updatedAt" | "workspaceId" | "docSlug" | "docViewUrl">, {
|
|
@@ -39390,6 +39659,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
39390
39659
|
} | undefined;
|
|
39391
39660
|
isApprovalFeatureEnabled?: boolean | undefined;
|
|
39392
39661
|
approvalRequiredForPublishing?: boolean | undefined;
|
|
39662
|
+
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
39393
39663
|
}, {
|
|
39394
39664
|
name?: string | undefined;
|
|
39395
39665
|
description?: string | undefined;
|
|
@@ -39409,6 +39679,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
39409
39679
|
} | null | undefined;
|
|
39410
39680
|
isApprovalFeatureEnabled?: boolean | undefined;
|
|
39411
39681
|
approvalRequiredForPublishing?: boolean | undefined;
|
|
39682
|
+
accessMode?: "Open" | "InviteOnly" | undefined;
|
|
39412
39683
|
}>;
|
|
39413
39684
|
type DTODesignSystemUpdateInput = z.infer<typeof DTODesignSystemUpdateInput>;
|
|
39414
39685
|
|