@supernova-studio/client 0.44.0 → 0.45.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 +319 -122
- package/dist/index.d.ts +319 -122
- package/dist/index.js +311 -292
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +563 -544
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/documentation/documentation-group-v1-to-dto.ts +30 -5
- package/src/api/conversion/documentation/documentation-group-v2-to-dto.ts +28 -8
- package/src/api/conversion/documentation/documentation-item-configuration-v1-to-dto.ts +18 -16
- package/src/api/conversion/documentation/documentation-item-configuration-v2-to-dto.ts +15 -13
- package/src/api/conversion/documentation/documentation-page-to-dto-utils.ts +62 -0
- package/src/api/conversion/documentation/documentation-page-v1-to-dto.ts +47 -26
- package/src/api/conversion/documentation/documentation-page-v2-to-dto.ts +23 -9
- package/src/api/conversion/index.ts +0 -2
- package/src/api/dto/design-systems/version.ts +17 -0
- package/src/api/dto/workspaces/integrations.ts +2 -2
- package/src/api/payloads/design-systems/version.ts +5 -2
- package/src/api/payloads/workspaces/workspace-integrations.ts +9 -1
- package/src/yjs/design-system-content/documentation-hierarchy.ts +5 -11
- package/src/api/conversion/design-system/index.ts +0 -1
- package/src/api/conversion/design-system/version-to-dto.ts +0 -17
- package/src/api/conversion/design-systems/brand.ts +0 -14
- package/src/api/conversion/design-systems/elements/index.ts +0 -1
- package/src/api/conversion/design-systems/elements/properties/index.ts +0 -2
- package/src/api/conversion/design-systems/elements/properties/property-definition.ts +0 -21
- package/src/api/conversion/design-systems/elements/properties/property-value.ts +0 -28
- package/src/api/conversion/design-systems/index.ts +0 -3
- package/src/api/conversion/design-systems/view.ts +0 -18
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
3
|
-
import { PageBlockV1,
|
|
2
|
+
import { PageBlockV1, DocumentationPageV2, ElementGroup, DocumentationGroupV1, DocumentationPageV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Integration, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
3
|
+
import { z } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
5
5
|
import { Schema } from 'prosemirror-model';
|
|
6
6
|
|
|
@@ -291,6 +291,93 @@ declare const DTOExporterPropertyListResponse: z.ZodObject<{
|
|
|
291
291
|
}>;
|
|
292
292
|
type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListResponse>;
|
|
293
293
|
|
|
294
|
+
declare const VersionSQSPayload: z.ZodObject<{
|
|
295
|
+
designSystemId: z.ZodString;
|
|
296
|
+
input: z.ZodObject<{
|
|
297
|
+
meta: z.ZodObject<{
|
|
298
|
+
name: z.ZodOptional<z.ZodString>;
|
|
299
|
+
description: z.ZodOptional<z.ZodString>;
|
|
300
|
+
}, "strip", z.ZodTypeAny, {
|
|
301
|
+
name?: string | undefined;
|
|
302
|
+
description?: string | undefined;
|
|
303
|
+
}, {
|
|
304
|
+
name?: string | undefined;
|
|
305
|
+
description?: string | undefined;
|
|
306
|
+
}>;
|
|
307
|
+
version: z.ZodEffects<z.ZodString, string, string>;
|
|
308
|
+
changeLog: z.ZodOptional<z.ZodString>;
|
|
309
|
+
}, "strip", z.ZodTypeAny, {
|
|
310
|
+
meta: {
|
|
311
|
+
name?: string | undefined;
|
|
312
|
+
description?: string | undefined;
|
|
313
|
+
};
|
|
314
|
+
version: string;
|
|
315
|
+
changeLog?: string | undefined;
|
|
316
|
+
}, {
|
|
317
|
+
meta: {
|
|
318
|
+
name?: string | undefined;
|
|
319
|
+
description?: string | undefined;
|
|
320
|
+
};
|
|
321
|
+
version: string;
|
|
322
|
+
changeLog?: string | undefined;
|
|
323
|
+
}>;
|
|
324
|
+
}, "strip", z.ZodTypeAny, {
|
|
325
|
+
designSystemId: string;
|
|
326
|
+
input: {
|
|
327
|
+
meta: {
|
|
328
|
+
name?: string | undefined;
|
|
329
|
+
description?: string | undefined;
|
|
330
|
+
};
|
|
331
|
+
version: string;
|
|
332
|
+
changeLog?: string | undefined;
|
|
333
|
+
};
|
|
334
|
+
}, {
|
|
335
|
+
designSystemId: string;
|
|
336
|
+
input: {
|
|
337
|
+
meta: {
|
|
338
|
+
name?: string | undefined;
|
|
339
|
+
description?: string | undefined;
|
|
340
|
+
};
|
|
341
|
+
version: string;
|
|
342
|
+
changeLog?: string | undefined;
|
|
343
|
+
};
|
|
344
|
+
}>;
|
|
345
|
+
type VersionSQSPayload = z.infer<typeof VersionSQSPayload>;
|
|
346
|
+
declare const DTODesignSystemVersionCreationResponse: z.ZodObject<{
|
|
347
|
+
meta: z.ZodObject<{
|
|
348
|
+
name: z.ZodString;
|
|
349
|
+
description: z.ZodOptional<z.ZodString>;
|
|
350
|
+
}, "strip", z.ZodTypeAny, {
|
|
351
|
+
name: string;
|
|
352
|
+
description?: string | undefined;
|
|
353
|
+
}, {
|
|
354
|
+
name: string;
|
|
355
|
+
description?: string | undefined;
|
|
356
|
+
}>;
|
|
357
|
+
version: z.ZodString;
|
|
358
|
+
changeLog: z.ZodString;
|
|
359
|
+
isReadOnly: z.ZodBoolean;
|
|
360
|
+
designSystemId: z.ZodString;
|
|
361
|
+
}, "strip", z.ZodTypeAny, {
|
|
362
|
+
meta: {
|
|
363
|
+
name: string;
|
|
364
|
+
description?: string | undefined;
|
|
365
|
+
};
|
|
366
|
+
version: string;
|
|
367
|
+
changeLog: string;
|
|
368
|
+
designSystemId: string;
|
|
369
|
+
isReadOnly: boolean;
|
|
370
|
+
}, {
|
|
371
|
+
meta: {
|
|
372
|
+
name: string;
|
|
373
|
+
description?: string | undefined;
|
|
374
|
+
};
|
|
375
|
+
version: string;
|
|
376
|
+
changeLog: string;
|
|
377
|
+
designSystemId: string;
|
|
378
|
+
isReadOnly: boolean;
|
|
379
|
+
}>;
|
|
380
|
+
type DTODesignSystemVersionCreationResponse = z.infer<typeof DTODesignSystemVersionCreationResponse>;
|
|
294
381
|
declare const DTODesignSystemVersion: z.ZodObject<{
|
|
295
382
|
id: z.ZodString;
|
|
296
383
|
createdAt: z.ZodDate;
|
|
@@ -316,8 +403,8 @@ declare const DTODesignSystemVersion: z.ZodObject<{
|
|
|
316
403
|
};
|
|
317
404
|
createdAt: Date;
|
|
318
405
|
version: string;
|
|
319
|
-
isReadonly: boolean;
|
|
320
406
|
changeLog: string;
|
|
407
|
+
isReadonly: boolean;
|
|
321
408
|
designSystemId: string;
|
|
322
409
|
}, {
|
|
323
410
|
id: string;
|
|
@@ -327,8 +414,8 @@ declare const DTODesignSystemVersion: z.ZodObject<{
|
|
|
327
414
|
};
|
|
328
415
|
createdAt: Date;
|
|
329
416
|
version: string;
|
|
330
|
-
isReadonly: boolean;
|
|
331
417
|
changeLog: string;
|
|
418
|
+
isReadonly: boolean;
|
|
332
419
|
designSystemId: string;
|
|
333
420
|
}>;
|
|
334
421
|
type DTODesignSystemVersion = z.infer<typeof DTODesignSystemVersion>;
|
|
@@ -358,8 +445,8 @@ declare const DTODesignSystemVersionsListResponse: z.ZodObject<{
|
|
|
358
445
|
};
|
|
359
446
|
createdAt: Date;
|
|
360
447
|
version: string;
|
|
361
|
-
isReadonly: boolean;
|
|
362
448
|
changeLog: string;
|
|
449
|
+
isReadonly: boolean;
|
|
363
450
|
designSystemId: string;
|
|
364
451
|
}, {
|
|
365
452
|
id: string;
|
|
@@ -369,8 +456,8 @@ declare const DTODesignSystemVersionsListResponse: z.ZodObject<{
|
|
|
369
456
|
};
|
|
370
457
|
createdAt: Date;
|
|
371
458
|
version: string;
|
|
372
|
-
isReadonly: boolean;
|
|
373
459
|
changeLog: string;
|
|
460
|
+
isReadonly: boolean;
|
|
374
461
|
designSystemId: string;
|
|
375
462
|
}>, "many">;
|
|
376
463
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -382,8 +469,8 @@ declare const DTODesignSystemVersionsListResponse: z.ZodObject<{
|
|
|
382
469
|
};
|
|
383
470
|
createdAt: Date;
|
|
384
471
|
version: string;
|
|
385
|
-
isReadonly: boolean;
|
|
386
472
|
changeLog: string;
|
|
473
|
+
isReadonly: boolean;
|
|
387
474
|
designSystemId: string;
|
|
388
475
|
}[];
|
|
389
476
|
}, {
|
|
@@ -395,8 +482,8 @@ declare const DTODesignSystemVersionsListResponse: z.ZodObject<{
|
|
|
395
482
|
};
|
|
396
483
|
createdAt: Date;
|
|
397
484
|
version: string;
|
|
398
|
-
isReadonly: boolean;
|
|
399
485
|
changeLog: string;
|
|
486
|
+
isReadonly: boolean;
|
|
400
487
|
designSystemId: string;
|
|
401
488
|
}[];
|
|
402
489
|
}>;
|
|
@@ -427,8 +514,8 @@ declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
|
427
514
|
};
|
|
428
515
|
createdAt: Date;
|
|
429
516
|
version: string;
|
|
430
|
-
isReadonly: boolean;
|
|
431
517
|
changeLog: string;
|
|
518
|
+
isReadonly: boolean;
|
|
432
519
|
designSystemId: string;
|
|
433
520
|
}, {
|
|
434
521
|
id: string;
|
|
@@ -438,8 +525,8 @@ declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
|
438
525
|
};
|
|
439
526
|
createdAt: Date;
|
|
440
527
|
version: string;
|
|
441
|
-
isReadonly: boolean;
|
|
442
528
|
changeLog: string;
|
|
529
|
+
isReadonly: boolean;
|
|
443
530
|
designSystemId: string;
|
|
444
531
|
}>;
|
|
445
532
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -451,8 +538,8 @@ declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
|
451
538
|
};
|
|
452
539
|
createdAt: Date;
|
|
453
540
|
version: string;
|
|
454
|
-
isReadonly: boolean;
|
|
455
541
|
changeLog: string;
|
|
542
|
+
isReadonly: boolean;
|
|
456
543
|
designSystemId: string;
|
|
457
544
|
};
|
|
458
545
|
}, {
|
|
@@ -464,8 +551,8 @@ declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
|
464
551
|
};
|
|
465
552
|
createdAt: Date;
|
|
466
553
|
version: string;
|
|
467
|
-
isReadonly: boolean;
|
|
468
554
|
changeLog: string;
|
|
555
|
+
isReadonly: boolean;
|
|
469
556
|
designSystemId: string;
|
|
470
557
|
};
|
|
471
558
|
}>;
|
|
@@ -8191,6 +8278,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8191
8278
|
} | null | undefined;
|
|
8192
8279
|
} | null | undefined;
|
|
8193
8280
|
documentationItemId?: string | null | undefined;
|
|
8281
|
+
pageHeadingId?: string | null | undefined;
|
|
8194
8282
|
url?: string | null | undefined;
|
|
8195
8283
|
openInNewTab?: boolean | null | undefined;
|
|
8196
8284
|
urlPreview?: {
|
|
@@ -8372,6 +8460,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8372
8460
|
} | null | undefined;
|
|
8373
8461
|
} | null | undefined;
|
|
8374
8462
|
documentationItemId?: string | null | undefined;
|
|
8463
|
+
pageHeadingId?: string | null | undefined;
|
|
8375
8464
|
url?: string | null | undefined;
|
|
8376
8465
|
openInNewTab?: boolean | null | undefined;
|
|
8377
8466
|
urlPreview?: {
|
|
@@ -8671,6 +8760,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8671
8760
|
} | null | undefined;
|
|
8672
8761
|
} | null | undefined;
|
|
8673
8762
|
documentationItemId?: string | null | undefined;
|
|
8763
|
+
pageHeadingId?: string | null | undefined;
|
|
8674
8764
|
url?: string | null | undefined;
|
|
8675
8765
|
openInNewTab?: boolean | null | undefined;
|
|
8676
8766
|
urlPreview?: {
|
|
@@ -8852,6 +8942,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8852
8942
|
} | null | undefined;
|
|
8853
8943
|
} | null | undefined;
|
|
8854
8944
|
documentationItemId?: string | null | undefined;
|
|
8945
|
+
pageHeadingId?: string | null | undefined;
|
|
8855
8946
|
url?: string | null | undefined;
|
|
8856
8947
|
openInNewTab?: boolean | null | undefined;
|
|
8857
8948
|
urlPreview?: {
|
|
@@ -14805,7 +14896,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14805
14896
|
createdAt: z.ZodDate;
|
|
14806
14897
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14807
14898
|
id: z.ZodString;
|
|
14808
|
-
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
14899
|
+
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
14809
14900
|
integrationId: z.ZodString;
|
|
14810
14901
|
accessToken: z.ZodString;
|
|
14811
14902
|
userId: z.ZodString;
|
|
@@ -14824,10 +14915,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14824
14915
|
username?: string | undefined;
|
|
14825
14916
|
avatarUrl?: string | undefined;
|
|
14826
14917
|
}>>;
|
|
14918
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
14827
14919
|
}, "strip", z.ZodTypeAny, {
|
|
14828
14920
|
id: string;
|
|
14829
14921
|
createdAt: Date;
|
|
14830
|
-
type: "OAuth2" | "PAT";
|
|
14922
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14831
14923
|
accessToken: string;
|
|
14832
14924
|
userId: string;
|
|
14833
14925
|
integrationId: string;
|
|
@@ -14837,10 +14929,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14837
14929
|
username?: string | undefined;
|
|
14838
14930
|
avatarUrl?: string | undefined;
|
|
14839
14931
|
} | undefined;
|
|
14932
|
+
customUrl?: string | undefined;
|
|
14840
14933
|
}, {
|
|
14841
14934
|
id: string;
|
|
14842
14935
|
createdAt: Date;
|
|
14843
|
-
type: "OAuth2" | "PAT";
|
|
14936
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14844
14937
|
accessToken: string;
|
|
14845
14938
|
userId: string;
|
|
14846
14939
|
integrationId: string;
|
|
@@ -14850,6 +14943,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14850
14943
|
username?: string | undefined;
|
|
14851
14944
|
avatarUrl?: string | undefined;
|
|
14852
14945
|
} | undefined;
|
|
14946
|
+
customUrl?: string | undefined;
|
|
14853
14947
|
}>, "many">>;
|
|
14854
14948
|
}, "strip", z.ZodTypeAny, {
|
|
14855
14949
|
id: string;
|
|
@@ -14859,7 +14953,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14859
14953
|
integrationCredentials?: {
|
|
14860
14954
|
id: string;
|
|
14861
14955
|
createdAt: Date;
|
|
14862
|
-
type: "OAuth2" | "PAT";
|
|
14956
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14863
14957
|
accessToken: string;
|
|
14864
14958
|
userId: string;
|
|
14865
14959
|
integrationId: string;
|
|
@@ -14869,6 +14963,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14869
14963
|
username?: string | undefined;
|
|
14870
14964
|
avatarUrl?: string | undefined;
|
|
14871
14965
|
} | undefined;
|
|
14966
|
+
customUrl?: string | undefined;
|
|
14872
14967
|
}[] | undefined;
|
|
14873
14968
|
}, {
|
|
14874
14969
|
id: string;
|
|
@@ -14878,7 +14973,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14878
14973
|
integrationCredentials?: {
|
|
14879
14974
|
id: string;
|
|
14880
14975
|
createdAt: Date;
|
|
14881
|
-
type: "OAuth2" | "PAT";
|
|
14976
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14882
14977
|
accessToken: string;
|
|
14883
14978
|
userId: string;
|
|
14884
14979
|
integrationId: string;
|
|
@@ -14888,6 +14983,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14888
14983
|
username?: string | undefined;
|
|
14889
14984
|
avatarUrl?: string | undefined;
|
|
14890
14985
|
} | undefined;
|
|
14986
|
+
customUrl?: string | undefined;
|
|
14891
14987
|
}[] | undefined;
|
|
14892
14988
|
}>;
|
|
14893
14989
|
type DTOIntegration = z.infer<typeof DTOIntegration>;
|
|
@@ -14907,7 +15003,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14907
15003
|
createdAt: z.ZodDate;
|
|
14908
15004
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14909
15005
|
id: z.ZodString;
|
|
14910
|
-
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
15006
|
+
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
14911
15007
|
integrationId: z.ZodString;
|
|
14912
15008
|
accessToken: z.ZodString;
|
|
14913
15009
|
userId: z.ZodString;
|
|
@@ -14926,10 +15022,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14926
15022
|
username?: string | undefined;
|
|
14927
15023
|
avatarUrl?: string | undefined;
|
|
14928
15024
|
}>>;
|
|
15025
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
14929
15026
|
}, "strip", z.ZodTypeAny, {
|
|
14930
15027
|
id: string;
|
|
14931
15028
|
createdAt: Date;
|
|
14932
|
-
type: "OAuth2" | "PAT";
|
|
15029
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14933
15030
|
accessToken: string;
|
|
14934
15031
|
userId: string;
|
|
14935
15032
|
integrationId: string;
|
|
@@ -14939,10 +15036,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14939
15036
|
username?: string | undefined;
|
|
14940
15037
|
avatarUrl?: string | undefined;
|
|
14941
15038
|
} | undefined;
|
|
15039
|
+
customUrl?: string | undefined;
|
|
14942
15040
|
}, {
|
|
14943
15041
|
id: string;
|
|
14944
15042
|
createdAt: Date;
|
|
14945
|
-
type: "OAuth2" | "PAT";
|
|
15043
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14946
15044
|
accessToken: string;
|
|
14947
15045
|
userId: string;
|
|
14948
15046
|
integrationId: string;
|
|
@@ -14952,6 +15050,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14952
15050
|
username?: string | undefined;
|
|
14953
15051
|
avatarUrl?: string | undefined;
|
|
14954
15052
|
} | undefined;
|
|
15053
|
+
customUrl?: string | undefined;
|
|
14955
15054
|
}>, "many">>;
|
|
14956
15055
|
}, "strip", z.ZodTypeAny, {
|
|
14957
15056
|
id: string;
|
|
@@ -14961,7 +15060,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14961
15060
|
integrationCredentials?: {
|
|
14962
15061
|
id: string;
|
|
14963
15062
|
createdAt: Date;
|
|
14964
|
-
type: "OAuth2" | "PAT";
|
|
15063
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14965
15064
|
accessToken: string;
|
|
14966
15065
|
userId: string;
|
|
14967
15066
|
integrationId: string;
|
|
@@ -14971,6 +15070,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14971
15070
|
username?: string | undefined;
|
|
14972
15071
|
avatarUrl?: string | undefined;
|
|
14973
15072
|
} | undefined;
|
|
15073
|
+
customUrl?: string | undefined;
|
|
14974
15074
|
}[] | undefined;
|
|
14975
15075
|
}, {
|
|
14976
15076
|
id: string;
|
|
@@ -14980,7 +15080,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14980
15080
|
integrationCredentials?: {
|
|
14981
15081
|
id: string;
|
|
14982
15082
|
createdAt: Date;
|
|
14983
|
-
type: "OAuth2" | "PAT";
|
|
15083
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
14984
15084
|
accessToken: string;
|
|
14985
15085
|
userId: string;
|
|
14986
15086
|
integrationId: string;
|
|
@@ -14990,6 +15090,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
14990
15090
|
username?: string | undefined;
|
|
14991
15091
|
avatarUrl?: string | undefined;
|
|
14992
15092
|
} | undefined;
|
|
15093
|
+
customUrl?: string | undefined;
|
|
14993
15094
|
}[] | undefined;
|
|
14994
15095
|
}>;
|
|
14995
15096
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15001,7 +15102,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15001
15102
|
integrationCredentials?: {
|
|
15002
15103
|
id: string;
|
|
15003
15104
|
createdAt: Date;
|
|
15004
|
-
type: "OAuth2" | "PAT";
|
|
15105
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15005
15106
|
accessToken: string;
|
|
15006
15107
|
userId: string;
|
|
15007
15108
|
integrationId: string;
|
|
@@ -15011,6 +15112,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15011
15112
|
username?: string | undefined;
|
|
15012
15113
|
avatarUrl?: string | undefined;
|
|
15013
15114
|
} | undefined;
|
|
15115
|
+
customUrl?: string | undefined;
|
|
15014
15116
|
}[] | undefined;
|
|
15015
15117
|
};
|
|
15016
15118
|
}, {
|
|
@@ -15022,7 +15124,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15022
15124
|
integrationCredentials?: {
|
|
15023
15125
|
id: string;
|
|
15024
15126
|
createdAt: Date;
|
|
15025
|
-
type: "OAuth2" | "PAT";
|
|
15127
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15026
15128
|
accessToken: string;
|
|
15027
15129
|
userId: string;
|
|
15028
15130
|
integrationId: string;
|
|
@@ -15032,6 +15134,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15032
15134
|
username?: string | undefined;
|
|
15033
15135
|
avatarUrl?: string | undefined;
|
|
15034
15136
|
} | undefined;
|
|
15137
|
+
customUrl?: string | undefined;
|
|
15035
15138
|
}[] | undefined;
|
|
15036
15139
|
};
|
|
15037
15140
|
}>;
|
|
@@ -15044,7 +15147,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15044
15147
|
createdAt: z.ZodDate;
|
|
15045
15148
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15046
15149
|
id: z.ZodString;
|
|
15047
|
-
type: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
15150
|
+
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
15048
15151
|
integrationId: z.ZodString;
|
|
15049
15152
|
accessToken: z.ZodString;
|
|
15050
15153
|
userId: z.ZodString;
|
|
@@ -15063,10 +15166,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15063
15166
|
username?: string | undefined;
|
|
15064
15167
|
avatarUrl?: string | undefined;
|
|
15065
15168
|
}>>;
|
|
15169
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
15066
15170
|
}, "strip", z.ZodTypeAny, {
|
|
15067
15171
|
id: string;
|
|
15068
15172
|
createdAt: Date;
|
|
15069
|
-
type: "OAuth2" | "PAT";
|
|
15173
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15070
15174
|
accessToken: string;
|
|
15071
15175
|
userId: string;
|
|
15072
15176
|
integrationId: string;
|
|
@@ -15076,10 +15180,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15076
15180
|
username?: string | undefined;
|
|
15077
15181
|
avatarUrl?: string | undefined;
|
|
15078
15182
|
} | undefined;
|
|
15183
|
+
customUrl?: string | undefined;
|
|
15079
15184
|
}, {
|
|
15080
15185
|
id: string;
|
|
15081
15186
|
createdAt: Date;
|
|
15082
|
-
type: "OAuth2" | "PAT";
|
|
15187
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15083
15188
|
accessToken: string;
|
|
15084
15189
|
userId: string;
|
|
15085
15190
|
integrationId: string;
|
|
@@ -15089,6 +15194,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15089
15194
|
username?: string | undefined;
|
|
15090
15195
|
avatarUrl?: string | undefined;
|
|
15091
15196
|
} | undefined;
|
|
15197
|
+
customUrl?: string | undefined;
|
|
15092
15198
|
}>, "many">>;
|
|
15093
15199
|
}, "strip", z.ZodTypeAny, {
|
|
15094
15200
|
id: string;
|
|
@@ -15098,7 +15204,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15098
15204
|
integrationCredentials?: {
|
|
15099
15205
|
id: string;
|
|
15100
15206
|
createdAt: Date;
|
|
15101
|
-
type: "OAuth2" | "PAT";
|
|
15207
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15102
15208
|
accessToken: string;
|
|
15103
15209
|
userId: string;
|
|
15104
15210
|
integrationId: string;
|
|
@@ -15108,6 +15214,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15108
15214
|
username?: string | undefined;
|
|
15109
15215
|
avatarUrl?: string | undefined;
|
|
15110
15216
|
} | undefined;
|
|
15217
|
+
customUrl?: string | undefined;
|
|
15111
15218
|
}[] | undefined;
|
|
15112
15219
|
}, {
|
|
15113
15220
|
id: string;
|
|
@@ -15117,7 +15224,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15117
15224
|
integrationCredentials?: {
|
|
15118
15225
|
id: string;
|
|
15119
15226
|
createdAt: Date;
|
|
15120
|
-
type: "OAuth2" | "PAT";
|
|
15227
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15121
15228
|
accessToken: string;
|
|
15122
15229
|
userId: string;
|
|
15123
15230
|
integrationId: string;
|
|
@@ -15127,6 +15234,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15127
15234
|
username?: string | undefined;
|
|
15128
15235
|
avatarUrl?: string | undefined;
|
|
15129
15236
|
} | undefined;
|
|
15237
|
+
customUrl?: string | undefined;
|
|
15130
15238
|
}[] | undefined;
|
|
15131
15239
|
}>, "many">;
|
|
15132
15240
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15138,7 +15246,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15138
15246
|
integrationCredentials?: {
|
|
15139
15247
|
id: string;
|
|
15140
15248
|
createdAt: Date;
|
|
15141
|
-
type: "OAuth2" | "PAT";
|
|
15249
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15142
15250
|
accessToken: string;
|
|
15143
15251
|
userId: string;
|
|
15144
15252
|
integrationId: string;
|
|
@@ -15148,6 +15256,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15148
15256
|
username?: string | undefined;
|
|
15149
15257
|
avatarUrl?: string | undefined;
|
|
15150
15258
|
} | undefined;
|
|
15259
|
+
customUrl?: string | undefined;
|
|
15151
15260
|
}[] | undefined;
|
|
15152
15261
|
}[];
|
|
15153
15262
|
}, {
|
|
@@ -15159,7 +15268,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15159
15268
|
integrationCredentials?: {
|
|
15160
15269
|
id: string;
|
|
15161
15270
|
createdAt: Date;
|
|
15162
|
-
type: "OAuth2" | "PAT";
|
|
15271
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
15163
15272
|
accessToken: string;
|
|
15164
15273
|
userId: string;
|
|
15165
15274
|
integrationId: string;
|
|
@@ -15169,6 +15278,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15169
15278
|
username?: string | undefined;
|
|
15170
15279
|
avatarUrl?: string | undefined;
|
|
15171
15280
|
} | undefined;
|
|
15281
|
+
customUrl?: string | undefined;
|
|
15172
15282
|
}[] | undefined;
|
|
15173
15283
|
}[];
|
|
15174
15284
|
}>;
|
|
@@ -16030,23 +16140,23 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16030
16140
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
16031
16141
|
bypassProxy: z.ZodBoolean;
|
|
16032
16142
|
}, "strip", z.ZodTypeAny, {
|
|
16143
|
+
enabledScopes: string[];
|
|
16144
|
+
bypassProxy: boolean;
|
|
16033
16145
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
16146
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16034
16147
|
registryUrl: string;
|
|
16035
16148
|
proxyUrl: string;
|
|
16036
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16037
|
-
enabledScopes: string[];
|
|
16038
|
-
bypassProxy: boolean;
|
|
16039
16149
|
customRegistryUrl?: string | undefined;
|
|
16040
16150
|
accessToken?: "redacted" | undefined;
|
|
16041
16151
|
username?: string | undefined;
|
|
16042
16152
|
password?: "redacted" | undefined;
|
|
16043
16153
|
}, {
|
|
16154
|
+
enabledScopes: string[];
|
|
16155
|
+
bypassProxy: boolean;
|
|
16044
16156
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
16157
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16045
16158
|
registryUrl: string;
|
|
16046
16159
|
proxyUrl: string;
|
|
16047
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16048
|
-
enabledScopes: string[];
|
|
16049
|
-
bypassProxy: boolean;
|
|
16050
16160
|
customRegistryUrl?: string | undefined;
|
|
16051
16161
|
accessToken?: "redacted" | undefined;
|
|
16052
16162
|
username?: string | undefined;
|
|
@@ -16205,12 +16315,12 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16205
16315
|
daysUntilDue?: number | undefined;
|
|
16206
16316
|
};
|
|
16207
16317
|
npmRegistry?: {
|
|
16318
|
+
enabledScopes: string[];
|
|
16319
|
+
bypassProxy: boolean;
|
|
16208
16320
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
16321
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16209
16322
|
registryUrl: string;
|
|
16210
16323
|
proxyUrl: string;
|
|
16211
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16212
|
-
enabledScopes: string[];
|
|
16213
|
-
bypassProxy: boolean;
|
|
16214
16324
|
customRegistryUrl?: string | undefined;
|
|
16215
16325
|
accessToken?: "redacted" | undefined;
|
|
16216
16326
|
username?: string | undefined;
|
|
@@ -16369,12 +16479,12 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16369
16479
|
daysUntilDue?: number | undefined;
|
|
16370
16480
|
};
|
|
16371
16481
|
npmRegistry?: {
|
|
16482
|
+
enabledScopes: string[];
|
|
16483
|
+
bypassProxy: boolean;
|
|
16372
16484
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
16485
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16373
16486
|
registryUrl: string;
|
|
16374
16487
|
proxyUrl: string;
|
|
16375
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16376
|
-
enabledScopes: string[];
|
|
16377
|
-
bypassProxy: boolean;
|
|
16378
16488
|
customRegistryUrl?: string | undefined;
|
|
16379
16489
|
accessToken?: "redacted" | undefined;
|
|
16380
16490
|
username?: string | undefined;
|
|
@@ -16537,12 +16647,12 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16537
16647
|
daysUntilDue?: number | undefined;
|
|
16538
16648
|
};
|
|
16539
16649
|
npmRegistry?: {
|
|
16650
|
+
enabledScopes: string[];
|
|
16651
|
+
bypassProxy: boolean;
|
|
16540
16652
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
16653
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16541
16654
|
registryUrl: string;
|
|
16542
16655
|
proxyUrl: string;
|
|
16543
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16544
|
-
enabledScopes: string[];
|
|
16545
|
-
bypassProxy: boolean;
|
|
16546
16656
|
customRegistryUrl?: string | undefined;
|
|
16547
16657
|
accessToken?: "redacted" | undefined;
|
|
16548
16658
|
username?: string | undefined;
|
|
@@ -16705,12 +16815,12 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
16705
16815
|
daysUntilDue?: number | undefined;
|
|
16706
16816
|
};
|
|
16707
16817
|
npmRegistry?: {
|
|
16818
|
+
enabledScopes: string[];
|
|
16819
|
+
bypassProxy: boolean;
|
|
16708
16820
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
16821
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16709
16822
|
registryUrl: string;
|
|
16710
16823
|
proxyUrl: string;
|
|
16711
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
16712
|
-
enabledScopes: string[];
|
|
16713
|
-
bypassProxy: boolean;
|
|
16714
16824
|
customRegistryUrl?: string | undefined;
|
|
16715
16825
|
accessToken?: "redacted" | undefined;
|
|
16716
16826
|
username?: string | undefined;
|
|
@@ -17576,23 +17686,23 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
17576
17686
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
17577
17687
|
bypassProxy: z.ZodBoolean;
|
|
17578
17688
|
}, "strip", z.ZodTypeAny, {
|
|
17689
|
+
enabledScopes: string[];
|
|
17690
|
+
bypassProxy: boolean;
|
|
17579
17691
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
17692
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17580
17693
|
registryUrl: string;
|
|
17581
17694
|
proxyUrl: string;
|
|
17582
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17583
|
-
enabledScopes: string[];
|
|
17584
|
-
bypassProxy: boolean;
|
|
17585
17695
|
customRegistryUrl?: string | undefined;
|
|
17586
17696
|
accessToken?: "redacted" | undefined;
|
|
17587
17697
|
username?: string | undefined;
|
|
17588
17698
|
password?: "redacted" | undefined;
|
|
17589
17699
|
}, {
|
|
17700
|
+
enabledScopes: string[];
|
|
17701
|
+
bypassProxy: boolean;
|
|
17590
17702
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
17703
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17591
17704
|
registryUrl: string;
|
|
17592
17705
|
proxyUrl: string;
|
|
17593
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17594
|
-
enabledScopes: string[];
|
|
17595
|
-
bypassProxy: boolean;
|
|
17596
17706
|
customRegistryUrl?: string | undefined;
|
|
17597
17707
|
accessToken?: "redacted" | undefined;
|
|
17598
17708
|
username?: string | undefined;
|
|
@@ -17751,12 +17861,12 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
17751
17861
|
daysUntilDue?: number | undefined;
|
|
17752
17862
|
};
|
|
17753
17863
|
npmRegistry?: {
|
|
17864
|
+
enabledScopes: string[];
|
|
17865
|
+
bypassProxy: boolean;
|
|
17754
17866
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
17867
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17755
17868
|
registryUrl: string;
|
|
17756
17869
|
proxyUrl: string;
|
|
17757
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17758
|
-
enabledScopes: string[];
|
|
17759
|
-
bypassProxy: boolean;
|
|
17760
17870
|
customRegistryUrl?: string | undefined;
|
|
17761
17871
|
accessToken?: "redacted" | undefined;
|
|
17762
17872
|
username?: string | undefined;
|
|
@@ -17915,12 +18025,12 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
17915
18025
|
daysUntilDue?: number | undefined;
|
|
17916
18026
|
};
|
|
17917
18027
|
npmRegistry?: {
|
|
18028
|
+
enabledScopes: string[];
|
|
18029
|
+
bypassProxy: boolean;
|
|
17918
18030
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18031
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17919
18032
|
registryUrl: string;
|
|
17920
18033
|
proxyUrl: string;
|
|
17921
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
17922
|
-
enabledScopes: string[];
|
|
17923
|
-
bypassProxy: boolean;
|
|
17924
18034
|
customRegistryUrl?: string | undefined;
|
|
17925
18035
|
accessToken?: "redacted" | undefined;
|
|
17926
18036
|
username?: string | undefined;
|
|
@@ -18083,12 +18193,12 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18083
18193
|
daysUntilDue?: number | undefined;
|
|
18084
18194
|
};
|
|
18085
18195
|
npmRegistry?: {
|
|
18196
|
+
enabledScopes: string[];
|
|
18197
|
+
bypassProxy: boolean;
|
|
18086
18198
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18199
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18087
18200
|
registryUrl: string;
|
|
18088
18201
|
proxyUrl: string;
|
|
18089
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18090
|
-
enabledScopes: string[];
|
|
18091
|
-
bypassProxy: boolean;
|
|
18092
18202
|
customRegistryUrl?: string | undefined;
|
|
18093
18203
|
accessToken?: "redacted" | undefined;
|
|
18094
18204
|
username?: string | undefined;
|
|
@@ -18251,12 +18361,12 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18251
18361
|
daysUntilDue?: number | undefined;
|
|
18252
18362
|
};
|
|
18253
18363
|
npmRegistry?: {
|
|
18364
|
+
enabledScopes: string[];
|
|
18365
|
+
bypassProxy: boolean;
|
|
18254
18366
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18367
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18255
18368
|
registryUrl: string;
|
|
18256
18369
|
proxyUrl: string;
|
|
18257
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18258
|
-
enabledScopes: string[];
|
|
18259
|
-
bypassProxy: boolean;
|
|
18260
18370
|
customRegistryUrl?: string | undefined;
|
|
18261
18371
|
accessToken?: "redacted" | undefined;
|
|
18262
18372
|
username?: string | undefined;
|
|
@@ -18421,12 +18531,12 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18421
18531
|
daysUntilDue?: number | undefined;
|
|
18422
18532
|
};
|
|
18423
18533
|
npmRegistry?: {
|
|
18534
|
+
enabledScopes: string[];
|
|
18535
|
+
bypassProxy: boolean;
|
|
18424
18536
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18537
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18425
18538
|
registryUrl: string;
|
|
18426
18539
|
proxyUrl: string;
|
|
18427
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18428
|
-
enabledScopes: string[];
|
|
18429
|
-
bypassProxy: boolean;
|
|
18430
18540
|
customRegistryUrl?: string | undefined;
|
|
18431
18541
|
accessToken?: "redacted" | undefined;
|
|
18432
18542
|
username?: string | undefined;
|
|
@@ -18591,12 +18701,12 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
18591
18701
|
daysUntilDue?: number | undefined;
|
|
18592
18702
|
};
|
|
18593
18703
|
npmRegistry?: {
|
|
18704
|
+
enabledScopes: string[];
|
|
18705
|
+
bypassProxy: boolean;
|
|
18594
18706
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18707
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18595
18708
|
registryUrl: string;
|
|
18596
18709
|
proxyUrl: string;
|
|
18597
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18598
|
-
enabledScopes: string[];
|
|
18599
|
-
bypassProxy: boolean;
|
|
18600
18710
|
customRegistryUrl?: string | undefined;
|
|
18601
18711
|
accessToken?: "redacted" | undefined;
|
|
18602
18712
|
username?: string | undefined;
|
|
@@ -18621,23 +18731,23 @@ declare const DTONpmRegistryConfig: z.ZodObject<{
|
|
|
18621
18731
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
18622
18732
|
bypassProxy: z.ZodBoolean;
|
|
18623
18733
|
}, "strip", z.ZodTypeAny, {
|
|
18734
|
+
enabledScopes: string[];
|
|
18735
|
+
bypassProxy: boolean;
|
|
18624
18736
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18737
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18625
18738
|
registryUrl: string;
|
|
18626
18739
|
proxyUrl: string;
|
|
18627
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18628
|
-
enabledScopes: string[];
|
|
18629
|
-
bypassProxy: boolean;
|
|
18630
18740
|
customRegistryUrl?: string | undefined;
|
|
18631
18741
|
accessToken?: "redacted" | undefined;
|
|
18632
18742
|
username?: string | undefined;
|
|
18633
18743
|
password?: "redacted" | undefined;
|
|
18634
18744
|
}, {
|
|
18745
|
+
enabledScopes: string[];
|
|
18746
|
+
bypassProxy: boolean;
|
|
18635
18747
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
18748
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18636
18749
|
registryUrl: string;
|
|
18637
18750
|
proxyUrl: string;
|
|
18638
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
18639
|
-
enabledScopes: string[];
|
|
18640
|
-
bypassProxy: boolean;
|
|
18641
18751
|
customRegistryUrl?: string | undefined;
|
|
18642
18752
|
accessToken?: "redacted" | undefined;
|
|
18643
18753
|
username?: string | undefined;
|
|
@@ -19498,23 +19608,23 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
19498
19608
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
19499
19609
|
bypassProxy: z.ZodBoolean;
|
|
19500
19610
|
}, "strip", z.ZodTypeAny, {
|
|
19611
|
+
enabledScopes: string[];
|
|
19612
|
+
bypassProxy: boolean;
|
|
19501
19613
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
19614
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19502
19615
|
registryUrl: string;
|
|
19503
19616
|
proxyUrl: string;
|
|
19504
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19505
|
-
enabledScopes: string[];
|
|
19506
|
-
bypassProxy: boolean;
|
|
19507
19617
|
customRegistryUrl?: string | undefined;
|
|
19508
19618
|
accessToken?: "redacted" | undefined;
|
|
19509
19619
|
username?: string | undefined;
|
|
19510
19620
|
password?: "redacted" | undefined;
|
|
19511
19621
|
}, {
|
|
19622
|
+
enabledScopes: string[];
|
|
19623
|
+
bypassProxy: boolean;
|
|
19512
19624
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
19625
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19513
19626
|
registryUrl: string;
|
|
19514
19627
|
proxyUrl: string;
|
|
19515
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19516
|
-
enabledScopes: string[];
|
|
19517
|
-
bypassProxy: boolean;
|
|
19518
19628
|
customRegistryUrl?: string | undefined;
|
|
19519
19629
|
accessToken?: "redacted" | undefined;
|
|
19520
19630
|
username?: string | undefined;
|
|
@@ -19673,12 +19783,12 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
19673
19783
|
daysUntilDue?: number | undefined;
|
|
19674
19784
|
};
|
|
19675
19785
|
npmRegistry?: {
|
|
19786
|
+
enabledScopes: string[];
|
|
19787
|
+
bypassProxy: boolean;
|
|
19676
19788
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
19789
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19677
19790
|
registryUrl: string;
|
|
19678
19791
|
proxyUrl: string;
|
|
19679
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19680
|
-
enabledScopes: string[];
|
|
19681
|
-
bypassProxy: boolean;
|
|
19682
19792
|
customRegistryUrl?: string | undefined;
|
|
19683
19793
|
accessToken?: "redacted" | undefined;
|
|
19684
19794
|
username?: string | undefined;
|
|
@@ -19837,12 +19947,12 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
19837
19947
|
daysUntilDue?: number | undefined;
|
|
19838
19948
|
};
|
|
19839
19949
|
npmRegistry?: {
|
|
19950
|
+
enabledScopes: string[];
|
|
19951
|
+
bypassProxy: boolean;
|
|
19840
19952
|
registryType: "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory" | "Custom";
|
|
19953
|
+
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19841
19954
|
registryUrl: string;
|
|
19842
19955
|
proxyUrl: string;
|
|
19843
|
-
authType: "Custom" | "Basic" | "Bearer" | "None";
|
|
19844
|
-
enabledScopes: string[];
|
|
19845
|
-
bypassProxy: boolean;
|
|
19846
19956
|
customRegistryUrl?: string | undefined;
|
|
19847
19957
|
accessToken?: "redacted" | undefined;
|
|
19848
19958
|
username?: string | undefined;
|
|
@@ -19851,27 +19961,42 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
19851
19961
|
}>;
|
|
19852
19962
|
type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
19853
19963
|
|
|
19854
|
-
declare function designSystemVersionToDto(version: DesignSystemVersion): DTODesignSystemVersion;
|
|
19855
|
-
|
|
19856
|
-
declare function elementPropertyDefinitionToDto(elementProperyDefinition: ElementPropertyDefinition): DTOElementPropertyDefinition;
|
|
19857
|
-
|
|
19858
|
-
declare function elementPropertyValueToDto(elementPropertyValue: ElementPropertyValue): DTOElementPropertyValue;
|
|
19859
|
-
|
|
19860
|
-
declare function designSystemBrandToDto(brand: Brand): DTOBrand;
|
|
19861
|
-
|
|
19862
|
-
declare function elementViewToDto(elementView: ElementView, columns: ElementViewColumn[]): DTOElementView;
|
|
19863
|
-
|
|
19864
19964
|
declare function documentationElementsToHierarchyDto(docPages: DocumentationPageV2[], docGroups: ElementGroup[], routingVersion: string): DTODocumentationHierarchyV2;
|
|
19865
19965
|
|
|
19866
19966
|
declare function elementGroupsToDocumentationGroupStructureDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupStructureV1[];
|
|
19867
19967
|
declare function elementGroupsToDocumentationGroupDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV1[];
|
|
19968
|
+
declare function elementGroupsToDocumentationGroupFixedConfigurationDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV1[];
|
|
19868
19969
|
|
|
19869
19970
|
declare function elementGroupsToDocumentationGroupStructureDTOV2(groups: ElementGroup[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupStructureV2[];
|
|
19870
19971
|
declare function elementGroupsToDocumentationGroupDTOV2(groups: ElementGroup[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV2[];
|
|
19972
|
+
declare function elementGroupsToDocumentationGroupFixedConfigurationDTOV2(groups: ElementGroup[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV2[];
|
|
19871
19973
|
|
|
19872
|
-
declare const
|
|
19873
|
-
|
|
19974
|
+
declare const getDtoDefaultItemConfigurationV1: () => {
|
|
19975
|
+
readonly showSidebar: true;
|
|
19976
|
+
readonly isHidden: false;
|
|
19977
|
+
readonly isPrivate: false;
|
|
19978
|
+
readonly header: {
|
|
19979
|
+
readonly alignment: "Left";
|
|
19980
|
+
readonly backgroundImageScaleType: "AspectFill";
|
|
19981
|
+
readonly description: "";
|
|
19982
|
+
readonly showBackgroundOverlay: false;
|
|
19983
|
+
readonly showCoverText: true;
|
|
19984
|
+
};
|
|
19985
|
+
};
|
|
19986
|
+
declare function documentationItemConfigurationToDTOV1(config: DocumentationItemConfigurationV1 | undefined): DTODocumentationItemConfigurationV1;
|
|
19874
19987
|
|
|
19988
|
+
declare const getDtoDefaultItemConfigurationV2: () => {
|
|
19989
|
+
readonly showSidebar: true;
|
|
19990
|
+
readonly isHidden: false;
|
|
19991
|
+
readonly isPrivate: false;
|
|
19992
|
+
readonly header: {
|
|
19993
|
+
readonly alignment: "Left";
|
|
19994
|
+
readonly backgroundImageScaleType: "AspectFill";
|
|
19995
|
+
readonly description: "";
|
|
19996
|
+
readonly showBackgroundOverlay: false;
|
|
19997
|
+
readonly showCoverText: true;
|
|
19998
|
+
};
|
|
19999
|
+
};
|
|
19875
20000
|
declare function documentationItemConfigurationToDTOV2(config: DocumentationItemConfigurationV2 | undefined): DTODocumentationItemConfigurationV2;
|
|
19876
20001
|
|
|
19877
20002
|
type GroupLike = {
|
|
@@ -19880,11 +20005,17 @@ type GroupLike = {
|
|
|
19880
20005
|
};
|
|
19881
20006
|
declare function buildDocPagePublishPaths(groups: (ElementGroup | DocumentationGroupV1)[], pages: (DocumentationPageV1 | DocumentationPageV2)[], routingVersion: string): Map<string, string>;
|
|
19882
20007
|
declare function calculateElementParentChain<T extends GroupLike>(elementParentPersistentId: string, groupPersistentIdToGroupMap: Map<string, T>): T[];
|
|
20008
|
+
declare function applyPrivacyConfigurationToNestedItems<PageType extends DocumentationPageV1 | DocumentationPageV2, GroupType extends DocumentationGroupV1 | ElementGroup, ItemConfigurationType extends DocumentationItemConfigurationV1 | DocumentationItemConfigurationV2>(pages: PageType[], groups: GroupType[], getDefaultItemConfiguration: () => ItemConfigurationType): {
|
|
20009
|
+
pages: PageType[];
|
|
20010
|
+
groups: GroupType[];
|
|
20011
|
+
};
|
|
19883
20012
|
|
|
19884
20013
|
declare function documentationPagesToDTOV1(pages: DocumentationPageV1[], groups: DocumentationGroupV1[], routingVersion: string): DocumentationPageV1DTO[];
|
|
20014
|
+
declare function documentationPagesFixedConfigurationToDTOV1(pages: DocumentationPageV1[], groups: DocumentationGroupV1[], routingVersion: string): DocumentationPageV1DTO[];
|
|
19885
20015
|
|
|
19886
20016
|
declare function documentationPagesToStructureDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageStructureV2[];
|
|
19887
20017
|
declare function documentationPagesToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
20018
|
+
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
19888
20019
|
|
|
19889
20020
|
declare function integrationToDto(integration: Integration): DTOIntegration;
|
|
19890
20021
|
|
|
@@ -19915,34 +20046,44 @@ declare const DTOCreateBrandInput: z.ZodObject<{
|
|
|
19915
20046
|
}>;
|
|
19916
20047
|
type DTOCreateBrandInput = z.infer<typeof DTOCreateBrandInput>;
|
|
19917
20048
|
|
|
20049
|
+
declare const ObjectMeta: z.ZodObject<{
|
|
20050
|
+
name: z.ZodOptional<z.ZodString>;
|
|
20051
|
+
description: z.ZodOptional<z.ZodString>;
|
|
20052
|
+
}, "strip", z.ZodTypeAny, {
|
|
20053
|
+
name?: string | undefined;
|
|
20054
|
+
description?: string | undefined;
|
|
20055
|
+
}, {
|
|
20056
|
+
name?: string | undefined;
|
|
20057
|
+
description?: string | undefined;
|
|
20058
|
+
}>;
|
|
19918
20059
|
declare function validateSemver(version: string): boolean;
|
|
19919
20060
|
declare const DTOCreateVersionInput: z.ZodObject<{
|
|
19920
20061
|
meta: z.ZodObject<{
|
|
19921
|
-
name: z.ZodString
|
|
20062
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19922
20063
|
description: z.ZodOptional<z.ZodString>;
|
|
19923
20064
|
}, "strip", z.ZodTypeAny, {
|
|
19924
|
-
name
|
|
20065
|
+
name?: string | undefined;
|
|
19925
20066
|
description?: string | undefined;
|
|
19926
20067
|
}, {
|
|
19927
|
-
name
|
|
20068
|
+
name?: string | undefined;
|
|
19928
20069
|
description?: string | undefined;
|
|
19929
20070
|
}>;
|
|
19930
20071
|
version: z.ZodEffects<z.ZodString, string, string>;
|
|
19931
|
-
changeLog: z.ZodString
|
|
20072
|
+
changeLog: z.ZodOptional<z.ZodString>;
|
|
19932
20073
|
}, "strip", z.ZodTypeAny, {
|
|
19933
20074
|
meta: {
|
|
19934
|
-
name
|
|
20075
|
+
name?: string | undefined;
|
|
19935
20076
|
description?: string | undefined;
|
|
19936
20077
|
};
|
|
19937
20078
|
version: string;
|
|
19938
|
-
changeLog
|
|
20079
|
+
changeLog?: string | undefined;
|
|
19939
20080
|
}, {
|
|
19940
20081
|
meta: {
|
|
19941
|
-
name
|
|
20082
|
+
name?: string | undefined;
|
|
19942
20083
|
description?: string | undefined;
|
|
19943
20084
|
};
|
|
19944
20085
|
version: string;
|
|
19945
|
-
changeLog
|
|
20086
|
+
changeLog?: string | undefined;
|
|
19946
20087
|
}>;
|
|
19947
20088
|
type DTOCreateVersionInput = z.infer<typeof DTOCreateVersionInput>;
|
|
19948
20089
|
|
|
@@ -20269,7 +20410,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
20269
20410
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
20270
20411
|
} | undefined;
|
|
20271
20412
|
};
|
|
20272
|
-
category: "
|
|
20413
|
+
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
20273
20414
|
behavior: {
|
|
20274
20415
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
20275
20416
|
items?: {
|
|
@@ -20340,7 +20481,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
20340
20481
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
20341
20482
|
} | undefined;
|
|
20342
20483
|
};
|
|
20343
|
-
category: "
|
|
20484
|
+
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
20344
20485
|
behavior: {
|
|
20345
20486
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
20346
20487
|
items?: {
|
|
@@ -20413,7 +20554,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
20413
20554
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
20414
20555
|
} | undefined;
|
|
20415
20556
|
};
|
|
20416
|
-
category: "
|
|
20557
|
+
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
20417
20558
|
behavior: {
|
|
20418
20559
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
20419
20560
|
items?: {
|
|
@@ -20486,7 +20627,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
20486
20627
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
20487
20628
|
} | undefined;
|
|
20488
20629
|
};
|
|
20489
|
-
category: "
|
|
20630
|
+
category: "Figma" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
20490
20631
|
behavior: {
|
|
20491
20632
|
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
20492
20633
|
items?: {
|
|
@@ -20544,27 +20685,27 @@ declare const NpmRegistryInput: z.ZodObject<{
|
|
|
20544
20685
|
username: z.ZodString;
|
|
20545
20686
|
password: z.ZodString;
|
|
20546
20687
|
}, "strip", z.ZodTypeAny, {
|
|
20688
|
+
enabledScopes: string[];
|
|
20547
20689
|
registryType: string;
|
|
20548
20690
|
authType: string;
|
|
20691
|
+
authHeaderName: string;
|
|
20692
|
+
authHeaderValue: string;
|
|
20549
20693
|
accessToken: string;
|
|
20550
20694
|
username: string;
|
|
20551
20695
|
password: string;
|
|
20552
|
-
enabledScopes: string[];
|
|
20553
|
-
authHeaderName: string;
|
|
20554
|
-
authHeaderValue: string;
|
|
20555
20696
|
customRegistryUrl?: string | undefined;
|
|
20556
20697
|
bypassProxy?: boolean | undefined;
|
|
20557
20698
|
npmProxyRegistryConfigId?: string | undefined;
|
|
20558
20699
|
npmProxyVersion?: number | undefined;
|
|
20559
20700
|
}, {
|
|
20701
|
+
enabledScopes: string[];
|
|
20560
20702
|
registryType: string;
|
|
20561
20703
|
authType: string;
|
|
20704
|
+
authHeaderName: string;
|
|
20705
|
+
authHeaderValue: string;
|
|
20562
20706
|
accessToken: string;
|
|
20563
20707
|
username: string;
|
|
20564
20708
|
password: string;
|
|
20565
|
-
enabledScopes: string[];
|
|
20566
|
-
authHeaderName: string;
|
|
20567
|
-
authHeaderValue: string;
|
|
20568
20709
|
customRegistryUrl?: string | undefined;
|
|
20569
20710
|
bypassProxy?: boolean | undefined;
|
|
20570
20711
|
npmProxyRegistryConfigId?: string | undefined;
|
|
@@ -20904,6 +21045,62 @@ declare const DTOWorkspaceIntegrationOauthInput: z.ZodObject<{
|
|
|
20904
21045
|
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
20905
21046
|
}>;
|
|
20906
21047
|
type DTOWorkspaceIntegrationOauthInput = z.infer<typeof DTOWorkspaceIntegrationOauthInput>;
|
|
21048
|
+
declare const DTOWorkspaceIntegrationPATInput: z.ZodObject<{
|
|
21049
|
+
userId: z.ZodString;
|
|
21050
|
+
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
21051
|
+
token: z.ZodEffects<z.ZodObject<{
|
|
21052
|
+
access_token: z.ZodString;
|
|
21053
|
+
refresh_token: z.ZodOptional<z.ZodString>;
|
|
21054
|
+
expires_in: z.ZodOptional<z.ZodNumber>;
|
|
21055
|
+
token_type: z.ZodOptional<z.ZodString>;
|
|
21056
|
+
custom_url: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
21057
|
+
}, "strip", z.ZodTypeAny, {
|
|
21058
|
+
access_token: string;
|
|
21059
|
+
refresh_token?: string | undefined;
|
|
21060
|
+
expires_in?: number | undefined;
|
|
21061
|
+
token_type?: string | undefined;
|
|
21062
|
+
custom_url?: string | undefined;
|
|
21063
|
+
}, {
|
|
21064
|
+
access_token: string;
|
|
21065
|
+
refresh_token?: string | undefined;
|
|
21066
|
+
expires_in?: number | undefined;
|
|
21067
|
+
token_type?: string | undefined;
|
|
21068
|
+
custom_url?: string | undefined;
|
|
21069
|
+
}>, {
|
|
21070
|
+
accessToken: string;
|
|
21071
|
+
refreshToken: string | undefined;
|
|
21072
|
+
expiresIn: number | undefined;
|
|
21073
|
+
tokenType: string | undefined;
|
|
21074
|
+
customUrl: string | undefined;
|
|
21075
|
+
}, {
|
|
21076
|
+
access_token: string;
|
|
21077
|
+
refresh_token?: string | undefined;
|
|
21078
|
+
expires_in?: number | undefined;
|
|
21079
|
+
token_type?: string | undefined;
|
|
21080
|
+
custom_url?: string | undefined;
|
|
21081
|
+
}>;
|
|
21082
|
+
}, "strip", z.ZodTypeAny, {
|
|
21083
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
21084
|
+
userId: string;
|
|
21085
|
+
token: {
|
|
21086
|
+
accessToken: string;
|
|
21087
|
+
refreshToken: string | undefined;
|
|
21088
|
+
expiresIn: number | undefined;
|
|
21089
|
+
tokenType: string | undefined;
|
|
21090
|
+
customUrl: string | undefined;
|
|
21091
|
+
};
|
|
21092
|
+
}, {
|
|
21093
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
21094
|
+
userId: string;
|
|
21095
|
+
token: {
|
|
21096
|
+
access_token: string;
|
|
21097
|
+
refresh_token?: string | undefined;
|
|
21098
|
+
expires_in?: number | undefined;
|
|
21099
|
+
token_type?: string | undefined;
|
|
21100
|
+
custom_url?: string | undefined;
|
|
21101
|
+
};
|
|
21102
|
+
}>;
|
|
21103
|
+
type DTOWorkspaceIntegrationPATInput = z.infer<typeof DTOWorkspaceIntegrationPATInput>;
|
|
20907
21104
|
|
|
20908
21105
|
type DocumentationHierarchyTransaction = {
|
|
20909
21106
|
pages: DocumentationPageV2[];
|
|
@@ -23227,4 +23424,4 @@ declare const BlockDefinitionUtils: {
|
|
|
23227
23424
|
};
|
|
23228
23425
|
};
|
|
23229
23426
|
|
|
23230
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionGetResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, WorkspaceConfigurationPayload, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain,
|
|
23427
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateSemver, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|