@supernova-studio/client 0.47.19 → 0.47.23
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 +1568 -345
- package/dist/index.d.ts +1568 -345
- package/dist/index.js +81 -40
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +62 -21
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/export/pipeline.ts +1 -0
- package/src/api/conversion/integrations/integration.ts +26 -10
- package/src/api/dto/export/exporter.ts +5 -0
- package/src/api/dto/export/job.ts +3 -0
- package/src/api/dto/export/pipeline.ts +3 -0
- package/src/api/dto/workspaces/integrations.ts +8 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { PageBlockV1, DocumentationPageV2, ElementGroup, DocumentationGroupV1, DocumentationPageV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
2
|
+
import { PageBlockV1, DocumentationPageV2, ElementGroup, DocumentationGroupV1, DocumentationPageV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import { z, ZodTypeDef } from 'zod';
|
|
5
5
|
import * as Y from 'yjs';
|
|
@@ -23612,6 +23612,14 @@ declare const DTOExporterCreateInput: z.ZodObject<{
|
|
|
23612
23612
|
provider: "azure" | "bitbucket" | "github" | "gitlab";
|
|
23613
23613
|
}>;
|
|
23614
23614
|
type DTOExporterCreateInput = z.infer<typeof DTOExporterCreateInput>;
|
|
23615
|
+
declare const DTOExporterUpdateInput: z.ZodObject<{
|
|
23616
|
+
url: z.ZodOptional<z.ZodString>;
|
|
23617
|
+
}, "strip", z.ZodTypeAny, {
|
|
23618
|
+
url?: string | undefined;
|
|
23619
|
+
}, {
|
|
23620
|
+
url?: string | undefined;
|
|
23621
|
+
}>;
|
|
23622
|
+
type DTOExporterUpdateInput = z.infer<typeof DTOExporterUpdateInput>;
|
|
23615
23623
|
|
|
23616
23624
|
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
23617
23625
|
userId: z.ZodString;
|
|
@@ -23692,22 +23700,28 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23692
23700
|
branch: z.ZodString;
|
|
23693
23701
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23694
23702
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23703
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
23704
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23695
23705
|
}, "strip", z.ZodTypeAny, {
|
|
23696
23706
|
branch: string;
|
|
23697
23707
|
organizationId: string;
|
|
23698
23708
|
projectId: string;
|
|
23699
23709
|
repositoryId: string;
|
|
23700
23710
|
url?: string | undefined;
|
|
23711
|
+
userId?: number | undefined;
|
|
23701
23712
|
credentialId?: string | undefined;
|
|
23702
23713
|
relativePath?: string | undefined;
|
|
23714
|
+
connectionId?: string | undefined;
|
|
23703
23715
|
}, {
|
|
23704
23716
|
branch: string;
|
|
23705
23717
|
organizationId: string;
|
|
23706
23718
|
projectId: string;
|
|
23707
23719
|
repositoryId: string;
|
|
23708
23720
|
url?: string | null | undefined;
|
|
23721
|
+
userId?: number | undefined;
|
|
23709
23722
|
credentialId?: string | undefined;
|
|
23710
23723
|
relativePath?: string | null | undefined;
|
|
23724
|
+
connectionId?: string | undefined;
|
|
23711
23725
|
}>>;
|
|
23712
23726
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
23713
23727
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -23716,36 +23730,48 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23716
23730
|
repoSlug: z.ZodString;
|
|
23717
23731
|
branch: z.ZodString;
|
|
23718
23732
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23733
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
23734
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23719
23735
|
}, "strip", z.ZodTypeAny, {
|
|
23720
23736
|
branch: string;
|
|
23721
23737
|
workspaceSlug: string;
|
|
23722
23738
|
projectKey: string;
|
|
23723
23739
|
repoSlug: string;
|
|
23740
|
+
userId?: number | undefined;
|
|
23724
23741
|
credentialId?: string | undefined;
|
|
23725
23742
|
relativePath?: string | undefined;
|
|
23743
|
+
connectionId?: string | undefined;
|
|
23726
23744
|
}, {
|
|
23727
23745
|
branch: string;
|
|
23728
23746
|
workspaceSlug: string;
|
|
23729
23747
|
projectKey: string;
|
|
23730
23748
|
repoSlug: string;
|
|
23749
|
+
userId?: number | undefined;
|
|
23731
23750
|
credentialId?: string | undefined;
|
|
23732
23751
|
relativePath?: string | null | undefined;
|
|
23752
|
+
connectionId?: string | undefined;
|
|
23733
23753
|
}>>;
|
|
23734
23754
|
github: z.ZodOptional<z.ZodObject<{
|
|
23735
23755
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
23736
23756
|
url: z.ZodString;
|
|
23737
23757
|
branch: z.ZodString;
|
|
23738
23758
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23759
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
23760
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23739
23761
|
}, "strip", z.ZodTypeAny, {
|
|
23740
23762
|
url: string;
|
|
23741
23763
|
branch: string;
|
|
23764
|
+
userId?: number | undefined;
|
|
23742
23765
|
credentialId?: string | undefined;
|
|
23743
23766
|
relativePath?: string | undefined;
|
|
23767
|
+
connectionId?: string | undefined;
|
|
23744
23768
|
}, {
|
|
23745
23769
|
url: string;
|
|
23746
23770
|
branch: string;
|
|
23771
|
+
userId?: number | undefined;
|
|
23747
23772
|
credentialId?: string | undefined;
|
|
23748
23773
|
relativePath?: string | null | undefined;
|
|
23774
|
+
connectionId?: string | undefined;
|
|
23749
23775
|
}>>;
|
|
23750
23776
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
23751
23777
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -23753,18 +23779,24 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23753
23779
|
branch: z.ZodString;
|
|
23754
23780
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23755
23781
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23782
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
23783
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23756
23784
|
}, "strip", z.ZodTypeAny, {
|
|
23757
23785
|
branch: string;
|
|
23758
23786
|
projectId: string;
|
|
23759
23787
|
url?: string | undefined;
|
|
23788
|
+
userId?: number | undefined;
|
|
23760
23789
|
credentialId?: string | undefined;
|
|
23761
23790
|
relativePath?: string | undefined;
|
|
23791
|
+
connectionId?: string | undefined;
|
|
23762
23792
|
}, {
|
|
23763
23793
|
branch: string;
|
|
23764
23794
|
projectId: string;
|
|
23765
23795
|
url?: string | null | undefined;
|
|
23796
|
+
userId?: number | undefined;
|
|
23766
23797
|
credentialId?: string | undefined;
|
|
23767
23798
|
relativePath?: string | null | undefined;
|
|
23799
|
+
connectionId?: string | undefined;
|
|
23768
23800
|
}>>;
|
|
23769
23801
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
23770
23802
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -23782,29 +23814,37 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23782
23814
|
projectId: string;
|
|
23783
23815
|
repositoryId: string;
|
|
23784
23816
|
url?: string | undefined;
|
|
23817
|
+
userId?: number | undefined;
|
|
23785
23818
|
credentialId?: string | undefined;
|
|
23786
23819
|
relativePath?: string | undefined;
|
|
23820
|
+
connectionId?: string | undefined;
|
|
23787
23821
|
} | undefined;
|
|
23788
23822
|
bitbucket?: {
|
|
23789
23823
|
branch: string;
|
|
23790
23824
|
workspaceSlug: string;
|
|
23791
23825
|
projectKey: string;
|
|
23792
23826
|
repoSlug: string;
|
|
23827
|
+
userId?: number | undefined;
|
|
23793
23828
|
credentialId?: string | undefined;
|
|
23794
23829
|
relativePath?: string | undefined;
|
|
23830
|
+
connectionId?: string | undefined;
|
|
23795
23831
|
} | undefined;
|
|
23796
23832
|
github?: {
|
|
23797
23833
|
url: string;
|
|
23798
23834
|
branch: string;
|
|
23835
|
+
userId?: number | undefined;
|
|
23799
23836
|
credentialId?: string | undefined;
|
|
23800
23837
|
relativePath?: string | undefined;
|
|
23838
|
+
connectionId?: string | undefined;
|
|
23801
23839
|
} | undefined;
|
|
23802
23840
|
gitlab?: {
|
|
23803
23841
|
branch: string;
|
|
23804
23842
|
projectId: string;
|
|
23805
23843
|
url?: string | undefined;
|
|
23844
|
+
userId?: number | undefined;
|
|
23806
23845
|
credentialId?: string | undefined;
|
|
23807
23846
|
relativePath?: string | undefined;
|
|
23847
|
+
connectionId?: string | undefined;
|
|
23808
23848
|
} | undefined;
|
|
23809
23849
|
documentation?: {
|
|
23810
23850
|
environment: "Live" | "Preview";
|
|
@@ -23818,29 +23858,37 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23818
23858
|
projectId: string;
|
|
23819
23859
|
repositoryId: string;
|
|
23820
23860
|
url?: string | null | undefined;
|
|
23861
|
+
userId?: number | undefined;
|
|
23821
23862
|
credentialId?: string | undefined;
|
|
23822
23863
|
relativePath?: string | null | undefined;
|
|
23864
|
+
connectionId?: string | undefined;
|
|
23823
23865
|
} | undefined;
|
|
23824
23866
|
bitbucket?: {
|
|
23825
23867
|
branch: string;
|
|
23826
23868
|
workspaceSlug: string;
|
|
23827
23869
|
projectKey: string;
|
|
23828
23870
|
repoSlug: string;
|
|
23871
|
+
userId?: number | undefined;
|
|
23829
23872
|
credentialId?: string | undefined;
|
|
23830
23873
|
relativePath?: string | null | undefined;
|
|
23874
|
+
connectionId?: string | undefined;
|
|
23831
23875
|
} | undefined;
|
|
23832
23876
|
github?: {
|
|
23833
23877
|
url: string;
|
|
23834
23878
|
branch: string;
|
|
23879
|
+
userId?: number | undefined;
|
|
23835
23880
|
credentialId?: string | undefined;
|
|
23836
23881
|
relativePath?: string | null | undefined;
|
|
23882
|
+
connectionId?: string | undefined;
|
|
23837
23883
|
} | undefined;
|
|
23838
23884
|
gitlab?: {
|
|
23839
23885
|
branch: string;
|
|
23840
23886
|
projectId: string;
|
|
23841
23887
|
url?: string | null | undefined;
|
|
23888
|
+
userId?: number | undefined;
|
|
23842
23889
|
credentialId?: string | undefined;
|
|
23843
23890
|
relativePath?: string | null | undefined;
|
|
23891
|
+
connectionId?: string | undefined;
|
|
23844
23892
|
} | undefined;
|
|
23845
23893
|
documentation?: {
|
|
23846
23894
|
environment: "Live" | "Preview";
|
|
@@ -23931,22 +23979,28 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23931
23979
|
branch: z.ZodString;
|
|
23932
23980
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23933
23981
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23982
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
23983
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23934
23984
|
}, "strip", z.ZodTypeAny, {
|
|
23935
23985
|
branch: string;
|
|
23936
23986
|
organizationId: string;
|
|
23937
23987
|
projectId: string;
|
|
23938
23988
|
repositoryId: string;
|
|
23939
23989
|
url?: string | undefined;
|
|
23990
|
+
userId?: number | undefined;
|
|
23940
23991
|
credentialId?: string | undefined;
|
|
23941
23992
|
relativePath?: string | undefined;
|
|
23993
|
+
connectionId?: string | undefined;
|
|
23942
23994
|
}, {
|
|
23943
23995
|
branch: string;
|
|
23944
23996
|
organizationId: string;
|
|
23945
23997
|
projectId: string;
|
|
23946
23998
|
repositoryId: string;
|
|
23947
23999
|
url?: string | null | undefined;
|
|
24000
|
+
userId?: number | undefined;
|
|
23948
24001
|
credentialId?: string | undefined;
|
|
23949
24002
|
relativePath?: string | null | undefined;
|
|
24003
|
+
connectionId?: string | undefined;
|
|
23950
24004
|
}>>;
|
|
23951
24005
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
23952
24006
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -23955,36 +24009,48 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23955
24009
|
repoSlug: z.ZodString;
|
|
23956
24010
|
branch: z.ZodString;
|
|
23957
24011
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24012
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24013
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23958
24014
|
}, "strip", z.ZodTypeAny, {
|
|
23959
24015
|
branch: string;
|
|
23960
24016
|
workspaceSlug: string;
|
|
23961
24017
|
projectKey: string;
|
|
23962
24018
|
repoSlug: string;
|
|
24019
|
+
userId?: number | undefined;
|
|
23963
24020
|
credentialId?: string | undefined;
|
|
23964
24021
|
relativePath?: string | undefined;
|
|
24022
|
+
connectionId?: string | undefined;
|
|
23965
24023
|
}, {
|
|
23966
24024
|
branch: string;
|
|
23967
24025
|
workspaceSlug: string;
|
|
23968
24026
|
projectKey: string;
|
|
23969
24027
|
repoSlug: string;
|
|
24028
|
+
userId?: number | undefined;
|
|
23970
24029
|
credentialId?: string | undefined;
|
|
23971
24030
|
relativePath?: string | null | undefined;
|
|
24031
|
+
connectionId?: string | undefined;
|
|
23972
24032
|
}>>;
|
|
23973
24033
|
github: z.ZodOptional<z.ZodObject<{
|
|
23974
24034
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
23975
24035
|
url: z.ZodString;
|
|
23976
24036
|
branch: z.ZodString;
|
|
23977
24037
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24038
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24039
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23978
24040
|
}, "strip", z.ZodTypeAny, {
|
|
23979
24041
|
url: string;
|
|
23980
24042
|
branch: string;
|
|
24043
|
+
userId?: number | undefined;
|
|
23981
24044
|
credentialId?: string | undefined;
|
|
23982
24045
|
relativePath?: string | undefined;
|
|
24046
|
+
connectionId?: string | undefined;
|
|
23983
24047
|
}, {
|
|
23984
24048
|
url: string;
|
|
23985
24049
|
branch: string;
|
|
24050
|
+
userId?: number | undefined;
|
|
23986
24051
|
credentialId?: string | undefined;
|
|
23987
24052
|
relativePath?: string | null | undefined;
|
|
24053
|
+
connectionId?: string | undefined;
|
|
23988
24054
|
}>>;
|
|
23989
24055
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
23990
24056
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -23992,18 +24058,24 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23992
24058
|
branch: z.ZodString;
|
|
23993
24059
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23994
24060
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24061
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24062
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
23995
24063
|
}, "strip", z.ZodTypeAny, {
|
|
23996
24064
|
branch: string;
|
|
23997
24065
|
projectId: string;
|
|
23998
24066
|
url?: string | undefined;
|
|
24067
|
+
userId?: number | undefined;
|
|
23999
24068
|
credentialId?: string | undefined;
|
|
24000
24069
|
relativePath?: string | undefined;
|
|
24070
|
+
connectionId?: string | undefined;
|
|
24001
24071
|
}, {
|
|
24002
24072
|
branch: string;
|
|
24003
24073
|
projectId: string;
|
|
24004
24074
|
url?: string | null | undefined;
|
|
24075
|
+
userId?: number | undefined;
|
|
24005
24076
|
credentialId?: string | undefined;
|
|
24006
24077
|
relativePath?: string | null | undefined;
|
|
24078
|
+
connectionId?: string | undefined;
|
|
24007
24079
|
}>>;
|
|
24008
24080
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
24009
24081
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -24021,29 +24093,37 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24021
24093
|
projectId: string;
|
|
24022
24094
|
repositoryId: string;
|
|
24023
24095
|
url?: string | undefined;
|
|
24096
|
+
userId?: number | undefined;
|
|
24024
24097
|
credentialId?: string | undefined;
|
|
24025
24098
|
relativePath?: string | undefined;
|
|
24099
|
+
connectionId?: string | undefined;
|
|
24026
24100
|
} | undefined;
|
|
24027
24101
|
bitbucket?: {
|
|
24028
24102
|
branch: string;
|
|
24029
24103
|
workspaceSlug: string;
|
|
24030
24104
|
projectKey: string;
|
|
24031
24105
|
repoSlug: string;
|
|
24106
|
+
userId?: number | undefined;
|
|
24032
24107
|
credentialId?: string | undefined;
|
|
24033
24108
|
relativePath?: string | undefined;
|
|
24109
|
+
connectionId?: string | undefined;
|
|
24034
24110
|
} | undefined;
|
|
24035
24111
|
github?: {
|
|
24036
24112
|
url: string;
|
|
24037
24113
|
branch: string;
|
|
24114
|
+
userId?: number | undefined;
|
|
24038
24115
|
credentialId?: string | undefined;
|
|
24039
24116
|
relativePath?: string | undefined;
|
|
24117
|
+
connectionId?: string | undefined;
|
|
24040
24118
|
} | undefined;
|
|
24041
24119
|
gitlab?: {
|
|
24042
24120
|
branch: string;
|
|
24043
24121
|
projectId: string;
|
|
24044
24122
|
url?: string | undefined;
|
|
24123
|
+
userId?: number | undefined;
|
|
24045
24124
|
credentialId?: string | undefined;
|
|
24046
24125
|
relativePath?: string | undefined;
|
|
24126
|
+
connectionId?: string | undefined;
|
|
24047
24127
|
} | undefined;
|
|
24048
24128
|
documentation?: {
|
|
24049
24129
|
environment: "Live" | "Preview";
|
|
@@ -24057,29 +24137,37 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24057
24137
|
projectId: string;
|
|
24058
24138
|
repositoryId: string;
|
|
24059
24139
|
url?: string | null | undefined;
|
|
24140
|
+
userId?: number | undefined;
|
|
24060
24141
|
credentialId?: string | undefined;
|
|
24061
24142
|
relativePath?: string | null | undefined;
|
|
24143
|
+
connectionId?: string | undefined;
|
|
24062
24144
|
} | undefined;
|
|
24063
24145
|
bitbucket?: {
|
|
24064
24146
|
branch: string;
|
|
24065
24147
|
workspaceSlug: string;
|
|
24066
24148
|
projectKey: string;
|
|
24067
24149
|
repoSlug: string;
|
|
24150
|
+
userId?: number | undefined;
|
|
24068
24151
|
credentialId?: string | undefined;
|
|
24069
24152
|
relativePath?: string | null | undefined;
|
|
24153
|
+
connectionId?: string | undefined;
|
|
24070
24154
|
} | undefined;
|
|
24071
24155
|
github?: {
|
|
24072
24156
|
url: string;
|
|
24073
24157
|
branch: string;
|
|
24158
|
+
userId?: number | undefined;
|
|
24074
24159
|
credentialId?: string | undefined;
|
|
24075
24160
|
relativePath?: string | null | undefined;
|
|
24161
|
+
connectionId?: string | undefined;
|
|
24076
24162
|
} | undefined;
|
|
24077
24163
|
gitlab?: {
|
|
24078
24164
|
branch: string;
|
|
24079
24165
|
projectId: string;
|
|
24080
24166
|
url?: string | null | undefined;
|
|
24167
|
+
userId?: number | undefined;
|
|
24081
24168
|
credentialId?: string | undefined;
|
|
24082
24169
|
relativePath?: string | null | undefined;
|
|
24170
|
+
connectionId?: string | undefined;
|
|
24083
24171
|
} | undefined;
|
|
24084
24172
|
documentation?: {
|
|
24085
24173
|
environment: "Live" | "Preview";
|
|
@@ -24188,6 +24276,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24188
24276
|
url: string;
|
|
24189
24277
|
} | undefined;
|
|
24190
24278
|
}>>;
|
|
24279
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
24280
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
24191
24281
|
}, "strip", z.ZodTypeAny, {
|
|
24192
24282
|
id: string;
|
|
24193
24283
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -24201,29 +24291,37 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24201
24291
|
projectId: string;
|
|
24202
24292
|
repositoryId: string;
|
|
24203
24293
|
url?: string | undefined;
|
|
24294
|
+
userId?: number | undefined;
|
|
24204
24295
|
credentialId?: string | undefined;
|
|
24205
24296
|
relativePath?: string | undefined;
|
|
24297
|
+
connectionId?: string | undefined;
|
|
24206
24298
|
} | undefined;
|
|
24207
24299
|
bitbucket?: {
|
|
24208
24300
|
branch: string;
|
|
24209
24301
|
workspaceSlug: string;
|
|
24210
24302
|
projectKey: string;
|
|
24211
24303
|
repoSlug: string;
|
|
24304
|
+
userId?: number | undefined;
|
|
24212
24305
|
credentialId?: string | undefined;
|
|
24213
24306
|
relativePath?: string | undefined;
|
|
24307
|
+
connectionId?: string | undefined;
|
|
24214
24308
|
} | undefined;
|
|
24215
24309
|
github?: {
|
|
24216
24310
|
url: string;
|
|
24217
24311
|
branch: string;
|
|
24312
|
+
userId?: number | undefined;
|
|
24218
24313
|
credentialId?: string | undefined;
|
|
24219
24314
|
relativePath?: string | undefined;
|
|
24315
|
+
connectionId?: string | undefined;
|
|
24220
24316
|
} | undefined;
|
|
24221
24317
|
gitlab?: {
|
|
24222
24318
|
branch: string;
|
|
24223
24319
|
projectId: string;
|
|
24224
24320
|
url?: string | undefined;
|
|
24321
|
+
userId?: number | undefined;
|
|
24225
24322
|
credentialId?: string | undefined;
|
|
24226
24323
|
relativePath?: string | undefined;
|
|
24324
|
+
connectionId?: string | undefined;
|
|
24227
24325
|
} | undefined;
|
|
24228
24326
|
documentation?: {
|
|
24229
24327
|
environment: "Live" | "Preview";
|
|
@@ -24246,6 +24344,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24246
24344
|
description?: string | undefined;
|
|
24247
24345
|
};
|
|
24248
24346
|
};
|
|
24347
|
+
brandPersistentId?: string | undefined;
|
|
24348
|
+
themePersistentId?: string | undefined;
|
|
24249
24349
|
finishedAt?: Date | undefined;
|
|
24250
24350
|
index?: number | undefined;
|
|
24251
24351
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24291,29 +24391,37 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24291
24391
|
projectId: string;
|
|
24292
24392
|
repositoryId: string;
|
|
24293
24393
|
url?: string | null | undefined;
|
|
24394
|
+
userId?: number | undefined;
|
|
24294
24395
|
credentialId?: string | undefined;
|
|
24295
24396
|
relativePath?: string | null | undefined;
|
|
24397
|
+
connectionId?: string | undefined;
|
|
24296
24398
|
} | undefined;
|
|
24297
24399
|
bitbucket?: {
|
|
24298
24400
|
branch: string;
|
|
24299
24401
|
workspaceSlug: string;
|
|
24300
24402
|
projectKey: string;
|
|
24301
24403
|
repoSlug: string;
|
|
24404
|
+
userId?: number | undefined;
|
|
24302
24405
|
credentialId?: string | undefined;
|
|
24303
24406
|
relativePath?: string | null | undefined;
|
|
24407
|
+
connectionId?: string | undefined;
|
|
24304
24408
|
} | undefined;
|
|
24305
24409
|
github?: {
|
|
24306
24410
|
url: string;
|
|
24307
24411
|
branch: string;
|
|
24412
|
+
userId?: number | undefined;
|
|
24308
24413
|
credentialId?: string | undefined;
|
|
24309
24414
|
relativePath?: string | null | undefined;
|
|
24415
|
+
connectionId?: string | undefined;
|
|
24310
24416
|
} | undefined;
|
|
24311
24417
|
gitlab?: {
|
|
24312
24418
|
branch: string;
|
|
24313
24419
|
projectId: string;
|
|
24314
24420
|
url?: string | null | undefined;
|
|
24421
|
+
userId?: number | undefined;
|
|
24315
24422
|
credentialId?: string | undefined;
|
|
24316
24423
|
relativePath?: string | null | undefined;
|
|
24424
|
+
connectionId?: string | undefined;
|
|
24317
24425
|
} | undefined;
|
|
24318
24426
|
documentation?: {
|
|
24319
24427
|
environment: "Live" | "Preview";
|
|
@@ -24336,6 +24444,8 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24336
24444
|
description?: string | undefined;
|
|
24337
24445
|
};
|
|
24338
24446
|
};
|
|
24447
|
+
brandPersistentId?: string | undefined;
|
|
24448
|
+
themePersistentId?: string | undefined;
|
|
24339
24449
|
finishedAt?: Date | undefined;
|
|
24340
24450
|
index?: number | undefined;
|
|
24341
24451
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24454,22 +24564,819 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24454
24564
|
branch: z.ZodString;
|
|
24455
24565
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24456
24566
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24567
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24568
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24569
|
+
}, "strip", z.ZodTypeAny, {
|
|
24570
|
+
branch: string;
|
|
24571
|
+
organizationId: string;
|
|
24572
|
+
projectId: string;
|
|
24573
|
+
repositoryId: string;
|
|
24574
|
+
url?: string | undefined;
|
|
24575
|
+
userId?: number | undefined;
|
|
24576
|
+
credentialId?: string | undefined;
|
|
24577
|
+
relativePath?: string | undefined;
|
|
24578
|
+
connectionId?: string | undefined;
|
|
24579
|
+
}, {
|
|
24580
|
+
branch: string;
|
|
24581
|
+
organizationId: string;
|
|
24582
|
+
projectId: string;
|
|
24583
|
+
repositoryId: string;
|
|
24584
|
+
url?: string | null | undefined;
|
|
24585
|
+
userId?: number | undefined;
|
|
24586
|
+
credentialId?: string | undefined;
|
|
24587
|
+
relativePath?: string | null | undefined;
|
|
24588
|
+
connectionId?: string | undefined;
|
|
24589
|
+
}>>;
|
|
24590
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
24591
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
24592
|
+
workspaceSlug: z.ZodString;
|
|
24593
|
+
projectKey: z.ZodString;
|
|
24594
|
+
repoSlug: z.ZodString;
|
|
24595
|
+
branch: z.ZodString;
|
|
24596
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24597
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24598
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24599
|
+
}, "strip", z.ZodTypeAny, {
|
|
24600
|
+
branch: string;
|
|
24601
|
+
workspaceSlug: string;
|
|
24602
|
+
projectKey: string;
|
|
24603
|
+
repoSlug: string;
|
|
24604
|
+
userId?: number | undefined;
|
|
24605
|
+
credentialId?: string | undefined;
|
|
24606
|
+
relativePath?: string | undefined;
|
|
24607
|
+
connectionId?: string | undefined;
|
|
24608
|
+
}, {
|
|
24609
|
+
branch: string;
|
|
24610
|
+
workspaceSlug: string;
|
|
24611
|
+
projectKey: string;
|
|
24612
|
+
repoSlug: string;
|
|
24613
|
+
userId?: number | undefined;
|
|
24614
|
+
credentialId?: string | undefined;
|
|
24615
|
+
relativePath?: string | null | undefined;
|
|
24616
|
+
connectionId?: string | undefined;
|
|
24617
|
+
}>>;
|
|
24618
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
24619
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
24620
|
+
url: z.ZodString;
|
|
24621
|
+
branch: z.ZodString;
|
|
24622
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24623
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24624
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24625
|
+
}, "strip", z.ZodTypeAny, {
|
|
24626
|
+
url: string;
|
|
24627
|
+
branch: string;
|
|
24628
|
+
userId?: number | undefined;
|
|
24629
|
+
credentialId?: string | undefined;
|
|
24630
|
+
relativePath?: string | undefined;
|
|
24631
|
+
connectionId?: string | undefined;
|
|
24632
|
+
}, {
|
|
24633
|
+
url: string;
|
|
24634
|
+
branch: string;
|
|
24635
|
+
userId?: number | undefined;
|
|
24636
|
+
credentialId?: string | undefined;
|
|
24637
|
+
relativePath?: string | null | undefined;
|
|
24638
|
+
connectionId?: string | undefined;
|
|
24639
|
+
}>>;
|
|
24640
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
24641
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
24642
|
+
projectId: z.ZodString;
|
|
24643
|
+
branch: z.ZodString;
|
|
24644
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24645
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24646
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24647
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24648
|
+
}, "strip", z.ZodTypeAny, {
|
|
24649
|
+
branch: string;
|
|
24650
|
+
projectId: string;
|
|
24651
|
+
url?: string | undefined;
|
|
24652
|
+
userId?: number | undefined;
|
|
24653
|
+
credentialId?: string | undefined;
|
|
24654
|
+
relativePath?: string | undefined;
|
|
24655
|
+
connectionId?: string | undefined;
|
|
24656
|
+
}, {
|
|
24657
|
+
branch: string;
|
|
24658
|
+
projectId: string;
|
|
24659
|
+
url?: string | null | undefined;
|
|
24660
|
+
userId?: number | undefined;
|
|
24661
|
+
credentialId?: string | undefined;
|
|
24662
|
+
relativePath?: string | null | undefined;
|
|
24663
|
+
connectionId?: string | undefined;
|
|
24664
|
+
}>>;
|
|
24665
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
24666
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
24667
|
+
}, "strip", z.ZodTypeAny, {
|
|
24668
|
+
environment: "Live" | "Preview";
|
|
24669
|
+
}, {
|
|
24670
|
+
environment: "Live" | "Preview";
|
|
24671
|
+
}>>;
|
|
24672
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
24673
|
+
}, "strip", z.ZodTypeAny, {
|
|
24674
|
+
s3?: {} | undefined;
|
|
24675
|
+
azure?: {
|
|
24676
|
+
branch: string;
|
|
24677
|
+
organizationId: string;
|
|
24678
|
+
projectId: string;
|
|
24679
|
+
repositoryId: string;
|
|
24680
|
+
url?: string | undefined;
|
|
24681
|
+
userId?: number | undefined;
|
|
24682
|
+
credentialId?: string | undefined;
|
|
24683
|
+
relativePath?: string | undefined;
|
|
24684
|
+
connectionId?: string | undefined;
|
|
24685
|
+
} | undefined;
|
|
24686
|
+
bitbucket?: {
|
|
24687
|
+
branch: string;
|
|
24688
|
+
workspaceSlug: string;
|
|
24689
|
+
projectKey: string;
|
|
24690
|
+
repoSlug: string;
|
|
24691
|
+
userId?: number | undefined;
|
|
24692
|
+
credentialId?: string | undefined;
|
|
24693
|
+
relativePath?: string | undefined;
|
|
24694
|
+
connectionId?: string | undefined;
|
|
24695
|
+
} | undefined;
|
|
24696
|
+
github?: {
|
|
24697
|
+
url: string;
|
|
24698
|
+
branch: string;
|
|
24699
|
+
userId?: number | undefined;
|
|
24700
|
+
credentialId?: string | undefined;
|
|
24701
|
+
relativePath?: string | undefined;
|
|
24702
|
+
connectionId?: string | undefined;
|
|
24703
|
+
} | undefined;
|
|
24704
|
+
gitlab?: {
|
|
24705
|
+
branch: string;
|
|
24706
|
+
projectId: string;
|
|
24707
|
+
url?: string | undefined;
|
|
24708
|
+
userId?: number | undefined;
|
|
24709
|
+
credentialId?: string | undefined;
|
|
24710
|
+
relativePath?: string | undefined;
|
|
24711
|
+
connectionId?: string | undefined;
|
|
24712
|
+
} | undefined;
|
|
24713
|
+
documentation?: {
|
|
24714
|
+
environment: "Live" | "Preview";
|
|
24715
|
+
} | undefined;
|
|
24716
|
+
webhookUrl?: string | undefined;
|
|
24717
|
+
}, {
|
|
24718
|
+
s3?: {} | undefined;
|
|
24719
|
+
azure?: {
|
|
24720
|
+
branch: string;
|
|
24721
|
+
organizationId: string;
|
|
24722
|
+
projectId: string;
|
|
24723
|
+
repositoryId: string;
|
|
24724
|
+
url?: string | null | undefined;
|
|
24725
|
+
userId?: number | undefined;
|
|
24726
|
+
credentialId?: string | undefined;
|
|
24727
|
+
relativePath?: string | null | undefined;
|
|
24728
|
+
connectionId?: string | undefined;
|
|
24729
|
+
} | undefined;
|
|
24730
|
+
bitbucket?: {
|
|
24731
|
+
branch: string;
|
|
24732
|
+
workspaceSlug: string;
|
|
24733
|
+
projectKey: string;
|
|
24734
|
+
repoSlug: string;
|
|
24735
|
+
userId?: number | undefined;
|
|
24736
|
+
credentialId?: string | undefined;
|
|
24737
|
+
relativePath?: string | null | undefined;
|
|
24738
|
+
connectionId?: string | undefined;
|
|
24739
|
+
} | undefined;
|
|
24740
|
+
github?: {
|
|
24741
|
+
url: string;
|
|
24742
|
+
branch: string;
|
|
24743
|
+
userId?: number | undefined;
|
|
24744
|
+
credentialId?: string | undefined;
|
|
24745
|
+
relativePath?: string | null | undefined;
|
|
24746
|
+
connectionId?: string | undefined;
|
|
24747
|
+
} | undefined;
|
|
24748
|
+
gitlab?: {
|
|
24749
|
+
branch: string;
|
|
24750
|
+
projectId: string;
|
|
24751
|
+
url?: string | null | undefined;
|
|
24752
|
+
userId?: number | undefined;
|
|
24753
|
+
credentialId?: string | undefined;
|
|
24754
|
+
relativePath?: string | null | undefined;
|
|
24755
|
+
connectionId?: string | undefined;
|
|
24756
|
+
} | undefined;
|
|
24757
|
+
documentation?: {
|
|
24758
|
+
environment: "Live" | "Preview";
|
|
24759
|
+
} | undefined;
|
|
24760
|
+
webhookUrl?: string | undefined;
|
|
24761
|
+
}>;
|
|
24762
|
+
exporterId: z.ZodString;
|
|
24763
|
+
scheduleId: z.ZodOptional<z.ZodString>;
|
|
24764
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
24765
|
+
error: z.ZodOptional<z.ZodString>;
|
|
24766
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
24767
|
+
bucket: z.ZodString;
|
|
24768
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
24769
|
+
path: z.ZodString;
|
|
24770
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
24771
|
+
}, "strip", z.ZodTypeAny, {
|
|
24772
|
+
path: string;
|
|
24773
|
+
files: string[];
|
|
24774
|
+
bucket: string;
|
|
24775
|
+
urlPrefix?: string | undefined;
|
|
24776
|
+
}, {
|
|
24777
|
+
path: string;
|
|
24778
|
+
files: string[];
|
|
24779
|
+
bucket: string;
|
|
24780
|
+
urlPrefix?: string | undefined;
|
|
24781
|
+
}>>;
|
|
24782
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
24783
|
+
pullRequestUrl: z.ZodString;
|
|
24784
|
+
}, "strip", z.ZodTypeAny, {
|
|
24785
|
+
pullRequestUrl: string;
|
|
24786
|
+
}, {
|
|
24787
|
+
pullRequestUrl: string;
|
|
24788
|
+
}>>;
|
|
24789
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
24790
|
+
pullRequestUrl: z.ZodString;
|
|
24791
|
+
}, "strip", z.ZodTypeAny, {
|
|
24792
|
+
pullRequestUrl: string;
|
|
24793
|
+
}, {
|
|
24794
|
+
pullRequestUrl: string;
|
|
24795
|
+
}>>;
|
|
24796
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
24797
|
+
pullRequestUrl: z.ZodString;
|
|
24798
|
+
}, "strip", z.ZodTypeAny, {
|
|
24799
|
+
pullRequestUrl: string;
|
|
24800
|
+
}, {
|
|
24801
|
+
pullRequestUrl: string;
|
|
24802
|
+
}>>;
|
|
24803
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
24804
|
+
pullRequestUrl: z.ZodString;
|
|
24805
|
+
}, "strip", z.ZodTypeAny, {
|
|
24806
|
+
pullRequestUrl: string;
|
|
24807
|
+
}, {
|
|
24808
|
+
pullRequestUrl: string;
|
|
24809
|
+
}>>;
|
|
24810
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
24811
|
+
url: z.ZodString;
|
|
24812
|
+
}, "strip", z.ZodTypeAny, {
|
|
24813
|
+
url: string;
|
|
24814
|
+
}, {
|
|
24815
|
+
url: string;
|
|
24816
|
+
}>>;
|
|
24817
|
+
}, "strip", z.ZodTypeAny, {
|
|
24818
|
+
error?: string | undefined;
|
|
24819
|
+
github?: {
|
|
24820
|
+
pullRequestUrl: string;
|
|
24821
|
+
} | undefined;
|
|
24822
|
+
azure?: {
|
|
24823
|
+
pullRequestUrl: string;
|
|
24824
|
+
} | undefined;
|
|
24825
|
+
gitlab?: {
|
|
24826
|
+
pullRequestUrl: string;
|
|
24827
|
+
} | undefined;
|
|
24828
|
+
bitbucket?: {
|
|
24829
|
+
pullRequestUrl: string;
|
|
24830
|
+
} | undefined;
|
|
24831
|
+
s3?: {
|
|
24832
|
+
path: string;
|
|
24833
|
+
files: string[];
|
|
24834
|
+
bucket: string;
|
|
24835
|
+
urlPrefix?: string | undefined;
|
|
24836
|
+
} | undefined;
|
|
24837
|
+
sndocs?: {
|
|
24838
|
+
url: string;
|
|
24839
|
+
} | undefined;
|
|
24840
|
+
}, {
|
|
24841
|
+
error?: string | undefined;
|
|
24842
|
+
github?: {
|
|
24843
|
+
pullRequestUrl: string;
|
|
24844
|
+
} | undefined;
|
|
24845
|
+
azure?: {
|
|
24846
|
+
pullRequestUrl: string;
|
|
24847
|
+
} | undefined;
|
|
24848
|
+
gitlab?: {
|
|
24849
|
+
pullRequestUrl: string;
|
|
24850
|
+
} | undefined;
|
|
24851
|
+
bitbucket?: {
|
|
24852
|
+
pullRequestUrl: string;
|
|
24853
|
+
} | undefined;
|
|
24854
|
+
s3?: {
|
|
24855
|
+
path: string;
|
|
24856
|
+
files: string[];
|
|
24857
|
+
bucket: string;
|
|
24858
|
+
urlPrefix?: string | undefined;
|
|
24859
|
+
} | undefined;
|
|
24860
|
+
sndocs?: {
|
|
24861
|
+
url: string;
|
|
24862
|
+
} | undefined;
|
|
24863
|
+
}>>;
|
|
24864
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
24865
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
24866
|
+
}, "strip", z.ZodTypeAny, {
|
|
24867
|
+
id: string;
|
|
24868
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24869
|
+
createdAt: Date;
|
|
24870
|
+
exporterId: string;
|
|
24871
|
+
destinations: {
|
|
24872
|
+
s3?: {} | undefined;
|
|
24873
|
+
azure?: {
|
|
24874
|
+
branch: string;
|
|
24875
|
+
organizationId: string;
|
|
24876
|
+
projectId: string;
|
|
24877
|
+
repositoryId: string;
|
|
24878
|
+
url?: string | undefined;
|
|
24879
|
+
userId?: number | undefined;
|
|
24880
|
+
credentialId?: string | undefined;
|
|
24881
|
+
relativePath?: string | undefined;
|
|
24882
|
+
connectionId?: string | undefined;
|
|
24883
|
+
} | undefined;
|
|
24884
|
+
bitbucket?: {
|
|
24885
|
+
branch: string;
|
|
24886
|
+
workspaceSlug: string;
|
|
24887
|
+
projectKey: string;
|
|
24888
|
+
repoSlug: string;
|
|
24889
|
+
userId?: number | undefined;
|
|
24890
|
+
credentialId?: string | undefined;
|
|
24891
|
+
relativePath?: string | undefined;
|
|
24892
|
+
connectionId?: string | undefined;
|
|
24893
|
+
} | undefined;
|
|
24894
|
+
github?: {
|
|
24895
|
+
url: string;
|
|
24896
|
+
branch: string;
|
|
24897
|
+
userId?: number | undefined;
|
|
24898
|
+
credentialId?: string | undefined;
|
|
24899
|
+
relativePath?: string | undefined;
|
|
24900
|
+
connectionId?: string | undefined;
|
|
24901
|
+
} | undefined;
|
|
24902
|
+
gitlab?: {
|
|
24903
|
+
branch: string;
|
|
24904
|
+
projectId: string;
|
|
24905
|
+
url?: string | undefined;
|
|
24906
|
+
userId?: number | undefined;
|
|
24907
|
+
credentialId?: string | undefined;
|
|
24908
|
+
relativePath?: string | undefined;
|
|
24909
|
+
connectionId?: string | undefined;
|
|
24910
|
+
} | undefined;
|
|
24911
|
+
documentation?: {
|
|
24912
|
+
environment: "Live" | "Preview";
|
|
24913
|
+
} | undefined;
|
|
24914
|
+
webhookUrl?: string | undefined;
|
|
24915
|
+
};
|
|
24916
|
+
designSystemVersion: {
|
|
24917
|
+
id: string;
|
|
24918
|
+
meta: {
|
|
24919
|
+
name: string;
|
|
24920
|
+
description?: string | undefined;
|
|
24921
|
+
};
|
|
24922
|
+
version: string;
|
|
24923
|
+
isReadonly: boolean;
|
|
24924
|
+
};
|
|
24925
|
+
designSystem: {
|
|
24926
|
+
id: string;
|
|
24927
|
+
meta: {
|
|
24928
|
+
name: string;
|
|
24929
|
+
description?: string | undefined;
|
|
24930
|
+
};
|
|
24931
|
+
};
|
|
24932
|
+
brandPersistentId?: string | undefined;
|
|
24933
|
+
themePersistentId?: string | undefined;
|
|
24934
|
+
finishedAt?: Date | undefined;
|
|
24935
|
+
index?: number | undefined;
|
|
24936
|
+
estimatedExecutionTime?: number | undefined;
|
|
24937
|
+
createdBy?: {
|
|
24938
|
+
userId: string;
|
|
24939
|
+
userName: string;
|
|
24940
|
+
} | undefined;
|
|
24941
|
+
scheduleId?: string | undefined;
|
|
24942
|
+
result?: {
|
|
24943
|
+
error?: string | undefined;
|
|
24944
|
+
github?: {
|
|
24945
|
+
pullRequestUrl: string;
|
|
24946
|
+
} | undefined;
|
|
24947
|
+
azure?: {
|
|
24948
|
+
pullRequestUrl: string;
|
|
24949
|
+
} | undefined;
|
|
24950
|
+
gitlab?: {
|
|
24951
|
+
pullRequestUrl: string;
|
|
24952
|
+
} | undefined;
|
|
24953
|
+
bitbucket?: {
|
|
24954
|
+
pullRequestUrl: string;
|
|
24955
|
+
} | undefined;
|
|
24956
|
+
s3?: {
|
|
24957
|
+
path: string;
|
|
24958
|
+
files: string[];
|
|
24959
|
+
bucket: string;
|
|
24960
|
+
urlPrefix?: string | undefined;
|
|
24961
|
+
} | undefined;
|
|
24962
|
+
sndocs?: {
|
|
24963
|
+
url: string;
|
|
24964
|
+
} | undefined;
|
|
24965
|
+
} | undefined;
|
|
24966
|
+
}, {
|
|
24967
|
+
id: string;
|
|
24968
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24969
|
+
createdAt: Date;
|
|
24970
|
+
exporterId: string;
|
|
24971
|
+
destinations: {
|
|
24972
|
+
s3?: {} | undefined;
|
|
24973
|
+
azure?: {
|
|
24974
|
+
branch: string;
|
|
24975
|
+
organizationId: string;
|
|
24976
|
+
projectId: string;
|
|
24977
|
+
repositoryId: string;
|
|
24978
|
+
url?: string | null | undefined;
|
|
24979
|
+
userId?: number | undefined;
|
|
24980
|
+
credentialId?: string | undefined;
|
|
24981
|
+
relativePath?: string | null | undefined;
|
|
24982
|
+
connectionId?: string | undefined;
|
|
24983
|
+
} | undefined;
|
|
24984
|
+
bitbucket?: {
|
|
24985
|
+
branch: string;
|
|
24986
|
+
workspaceSlug: string;
|
|
24987
|
+
projectKey: string;
|
|
24988
|
+
repoSlug: string;
|
|
24989
|
+
userId?: number | undefined;
|
|
24990
|
+
credentialId?: string | undefined;
|
|
24991
|
+
relativePath?: string | null | undefined;
|
|
24992
|
+
connectionId?: string | undefined;
|
|
24993
|
+
} | undefined;
|
|
24994
|
+
github?: {
|
|
24995
|
+
url: string;
|
|
24996
|
+
branch: string;
|
|
24997
|
+
userId?: number | undefined;
|
|
24998
|
+
credentialId?: string | undefined;
|
|
24999
|
+
relativePath?: string | null | undefined;
|
|
25000
|
+
connectionId?: string | undefined;
|
|
25001
|
+
} | undefined;
|
|
25002
|
+
gitlab?: {
|
|
25003
|
+
branch: string;
|
|
25004
|
+
projectId: string;
|
|
25005
|
+
url?: string | null | undefined;
|
|
25006
|
+
userId?: number | undefined;
|
|
25007
|
+
credentialId?: string | undefined;
|
|
25008
|
+
relativePath?: string | null | undefined;
|
|
25009
|
+
connectionId?: string | undefined;
|
|
25010
|
+
} | undefined;
|
|
25011
|
+
documentation?: {
|
|
25012
|
+
environment: "Live" | "Preview";
|
|
25013
|
+
} | undefined;
|
|
25014
|
+
webhookUrl?: string | undefined;
|
|
25015
|
+
};
|
|
25016
|
+
designSystemVersion: {
|
|
25017
|
+
id: string;
|
|
25018
|
+
meta: {
|
|
25019
|
+
name: string;
|
|
25020
|
+
description?: string | undefined;
|
|
25021
|
+
};
|
|
25022
|
+
version: string;
|
|
25023
|
+
isReadonly: boolean;
|
|
25024
|
+
};
|
|
25025
|
+
designSystem: {
|
|
25026
|
+
id: string;
|
|
25027
|
+
meta: {
|
|
25028
|
+
name: string;
|
|
25029
|
+
description?: string | undefined;
|
|
25030
|
+
};
|
|
25031
|
+
};
|
|
25032
|
+
brandPersistentId?: string | undefined;
|
|
25033
|
+
themePersistentId?: string | undefined;
|
|
25034
|
+
finishedAt?: Date | undefined;
|
|
25035
|
+
index?: number | undefined;
|
|
25036
|
+
estimatedExecutionTime?: number | undefined;
|
|
25037
|
+
createdBy?: {
|
|
25038
|
+
userId: string;
|
|
25039
|
+
userName: string;
|
|
25040
|
+
} | undefined;
|
|
25041
|
+
scheduleId?: string | undefined;
|
|
25042
|
+
result?: {
|
|
25043
|
+
error?: string | undefined;
|
|
25044
|
+
github?: {
|
|
25045
|
+
pullRequestUrl: string;
|
|
25046
|
+
} | undefined;
|
|
25047
|
+
azure?: {
|
|
25048
|
+
pullRequestUrl: string;
|
|
25049
|
+
} | undefined;
|
|
25050
|
+
gitlab?: {
|
|
25051
|
+
pullRequestUrl: string;
|
|
25052
|
+
} | undefined;
|
|
25053
|
+
bitbucket?: {
|
|
25054
|
+
pullRequestUrl: string;
|
|
25055
|
+
} | undefined;
|
|
25056
|
+
s3?: {
|
|
25057
|
+
path: string;
|
|
25058
|
+
files: string[];
|
|
25059
|
+
bucket: string;
|
|
25060
|
+
urlPrefix?: string | undefined;
|
|
25061
|
+
} | undefined;
|
|
25062
|
+
sndocs?: {
|
|
25063
|
+
url: string;
|
|
25064
|
+
} | undefined;
|
|
25065
|
+
} | undefined;
|
|
25066
|
+
}>;
|
|
25067
|
+
}, "strip", z.ZodTypeAny, {
|
|
25068
|
+
job: {
|
|
25069
|
+
id: string;
|
|
25070
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
25071
|
+
createdAt: Date;
|
|
25072
|
+
exporterId: string;
|
|
25073
|
+
destinations: {
|
|
25074
|
+
s3?: {} | undefined;
|
|
25075
|
+
azure?: {
|
|
25076
|
+
branch: string;
|
|
25077
|
+
organizationId: string;
|
|
25078
|
+
projectId: string;
|
|
25079
|
+
repositoryId: string;
|
|
25080
|
+
url?: string | undefined;
|
|
25081
|
+
userId?: number | undefined;
|
|
25082
|
+
credentialId?: string | undefined;
|
|
25083
|
+
relativePath?: string | undefined;
|
|
25084
|
+
connectionId?: string | undefined;
|
|
25085
|
+
} | undefined;
|
|
25086
|
+
bitbucket?: {
|
|
25087
|
+
branch: string;
|
|
25088
|
+
workspaceSlug: string;
|
|
25089
|
+
projectKey: string;
|
|
25090
|
+
repoSlug: string;
|
|
25091
|
+
userId?: number | undefined;
|
|
25092
|
+
credentialId?: string | undefined;
|
|
25093
|
+
relativePath?: string | undefined;
|
|
25094
|
+
connectionId?: string | undefined;
|
|
25095
|
+
} | undefined;
|
|
25096
|
+
github?: {
|
|
25097
|
+
url: string;
|
|
25098
|
+
branch: string;
|
|
25099
|
+
userId?: number | undefined;
|
|
25100
|
+
credentialId?: string | undefined;
|
|
25101
|
+
relativePath?: string | undefined;
|
|
25102
|
+
connectionId?: string | undefined;
|
|
25103
|
+
} | undefined;
|
|
25104
|
+
gitlab?: {
|
|
25105
|
+
branch: string;
|
|
25106
|
+
projectId: string;
|
|
25107
|
+
url?: string | undefined;
|
|
25108
|
+
userId?: number | undefined;
|
|
25109
|
+
credentialId?: string | undefined;
|
|
25110
|
+
relativePath?: string | undefined;
|
|
25111
|
+
connectionId?: string | undefined;
|
|
25112
|
+
} | undefined;
|
|
25113
|
+
documentation?: {
|
|
25114
|
+
environment: "Live" | "Preview";
|
|
25115
|
+
} | undefined;
|
|
25116
|
+
webhookUrl?: string | undefined;
|
|
25117
|
+
};
|
|
25118
|
+
designSystemVersion: {
|
|
25119
|
+
id: string;
|
|
25120
|
+
meta: {
|
|
25121
|
+
name: string;
|
|
25122
|
+
description?: string | undefined;
|
|
25123
|
+
};
|
|
25124
|
+
version: string;
|
|
25125
|
+
isReadonly: boolean;
|
|
25126
|
+
};
|
|
25127
|
+
designSystem: {
|
|
25128
|
+
id: string;
|
|
25129
|
+
meta: {
|
|
25130
|
+
name: string;
|
|
25131
|
+
description?: string | undefined;
|
|
25132
|
+
};
|
|
25133
|
+
};
|
|
25134
|
+
brandPersistentId?: string | undefined;
|
|
25135
|
+
themePersistentId?: string | undefined;
|
|
25136
|
+
finishedAt?: Date | undefined;
|
|
25137
|
+
index?: number | undefined;
|
|
25138
|
+
estimatedExecutionTime?: number | undefined;
|
|
25139
|
+
createdBy?: {
|
|
25140
|
+
userId: string;
|
|
25141
|
+
userName: string;
|
|
25142
|
+
} | undefined;
|
|
25143
|
+
scheduleId?: string | undefined;
|
|
25144
|
+
result?: {
|
|
25145
|
+
error?: string | undefined;
|
|
25146
|
+
github?: {
|
|
25147
|
+
pullRequestUrl: string;
|
|
25148
|
+
} | undefined;
|
|
25149
|
+
azure?: {
|
|
25150
|
+
pullRequestUrl: string;
|
|
25151
|
+
} | undefined;
|
|
25152
|
+
gitlab?: {
|
|
25153
|
+
pullRequestUrl: string;
|
|
25154
|
+
} | undefined;
|
|
25155
|
+
bitbucket?: {
|
|
25156
|
+
pullRequestUrl: string;
|
|
25157
|
+
} | undefined;
|
|
25158
|
+
s3?: {
|
|
25159
|
+
path: string;
|
|
25160
|
+
files: string[];
|
|
25161
|
+
bucket: string;
|
|
25162
|
+
urlPrefix?: string | undefined;
|
|
25163
|
+
} | undefined;
|
|
25164
|
+
sndocs?: {
|
|
25165
|
+
url: string;
|
|
25166
|
+
} | undefined;
|
|
25167
|
+
} | undefined;
|
|
25168
|
+
};
|
|
25169
|
+
}, {
|
|
25170
|
+
job: {
|
|
25171
|
+
id: string;
|
|
25172
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
25173
|
+
createdAt: Date;
|
|
25174
|
+
exporterId: string;
|
|
25175
|
+
destinations: {
|
|
25176
|
+
s3?: {} | undefined;
|
|
25177
|
+
azure?: {
|
|
25178
|
+
branch: string;
|
|
25179
|
+
organizationId: string;
|
|
25180
|
+
projectId: string;
|
|
25181
|
+
repositoryId: string;
|
|
25182
|
+
url?: string | null | undefined;
|
|
25183
|
+
userId?: number | undefined;
|
|
25184
|
+
credentialId?: string | undefined;
|
|
25185
|
+
relativePath?: string | null | undefined;
|
|
25186
|
+
connectionId?: string | undefined;
|
|
25187
|
+
} | undefined;
|
|
25188
|
+
bitbucket?: {
|
|
25189
|
+
branch: string;
|
|
25190
|
+
workspaceSlug: string;
|
|
25191
|
+
projectKey: string;
|
|
25192
|
+
repoSlug: string;
|
|
25193
|
+
userId?: number | undefined;
|
|
25194
|
+
credentialId?: string | undefined;
|
|
25195
|
+
relativePath?: string | null | undefined;
|
|
25196
|
+
connectionId?: string | undefined;
|
|
25197
|
+
} | undefined;
|
|
25198
|
+
github?: {
|
|
25199
|
+
url: string;
|
|
25200
|
+
branch: string;
|
|
25201
|
+
userId?: number | undefined;
|
|
25202
|
+
credentialId?: string | undefined;
|
|
25203
|
+
relativePath?: string | null | undefined;
|
|
25204
|
+
connectionId?: string | undefined;
|
|
25205
|
+
} | undefined;
|
|
25206
|
+
gitlab?: {
|
|
25207
|
+
branch: string;
|
|
25208
|
+
projectId: string;
|
|
25209
|
+
url?: string | null | undefined;
|
|
25210
|
+
userId?: number | undefined;
|
|
25211
|
+
credentialId?: string | undefined;
|
|
25212
|
+
relativePath?: string | null | undefined;
|
|
25213
|
+
connectionId?: string | undefined;
|
|
25214
|
+
} | undefined;
|
|
25215
|
+
documentation?: {
|
|
25216
|
+
environment: "Live" | "Preview";
|
|
25217
|
+
} | undefined;
|
|
25218
|
+
webhookUrl?: string | undefined;
|
|
25219
|
+
};
|
|
25220
|
+
designSystemVersion: {
|
|
25221
|
+
id: string;
|
|
25222
|
+
meta: {
|
|
25223
|
+
name: string;
|
|
25224
|
+
description?: string | undefined;
|
|
25225
|
+
};
|
|
25226
|
+
version: string;
|
|
25227
|
+
isReadonly: boolean;
|
|
25228
|
+
};
|
|
25229
|
+
designSystem: {
|
|
25230
|
+
id: string;
|
|
25231
|
+
meta: {
|
|
25232
|
+
name: string;
|
|
25233
|
+
description?: string | undefined;
|
|
25234
|
+
};
|
|
25235
|
+
};
|
|
25236
|
+
brandPersistentId?: string | undefined;
|
|
25237
|
+
themePersistentId?: string | undefined;
|
|
25238
|
+
finishedAt?: Date | undefined;
|
|
25239
|
+
index?: number | undefined;
|
|
25240
|
+
estimatedExecutionTime?: number | undefined;
|
|
25241
|
+
createdBy?: {
|
|
25242
|
+
userId: string;
|
|
25243
|
+
userName: string;
|
|
25244
|
+
} | undefined;
|
|
25245
|
+
scheduleId?: string | undefined;
|
|
25246
|
+
result?: {
|
|
25247
|
+
error?: string | undefined;
|
|
25248
|
+
github?: {
|
|
25249
|
+
pullRequestUrl: string;
|
|
25250
|
+
} | undefined;
|
|
25251
|
+
azure?: {
|
|
25252
|
+
pullRequestUrl: string;
|
|
25253
|
+
} | undefined;
|
|
25254
|
+
gitlab?: {
|
|
25255
|
+
pullRequestUrl: string;
|
|
25256
|
+
} | undefined;
|
|
25257
|
+
bitbucket?: {
|
|
25258
|
+
pullRequestUrl: string;
|
|
25259
|
+
} | undefined;
|
|
25260
|
+
s3?: {
|
|
25261
|
+
path: string;
|
|
25262
|
+
files: string[];
|
|
25263
|
+
bucket: string;
|
|
25264
|
+
urlPrefix?: string | undefined;
|
|
25265
|
+
} | undefined;
|
|
25266
|
+
sndocs?: {
|
|
25267
|
+
url: string;
|
|
25268
|
+
} | undefined;
|
|
25269
|
+
} | undefined;
|
|
25270
|
+
};
|
|
25271
|
+
}>;
|
|
25272
|
+
type DTOExportJobResponse = z.infer<typeof DTOExportJobResponse>;
|
|
25273
|
+
|
|
25274
|
+
declare const DTOPipeline: z.ZodObject<{
|
|
25275
|
+
latestJobs: z.ZodArray<z.ZodObject<{
|
|
25276
|
+
id: z.ZodString;
|
|
25277
|
+
createdAt: z.ZodDate;
|
|
25278
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
25279
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
25280
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
25281
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
25282
|
+
createdBy: z.ZodOptional<z.ZodObject<{
|
|
25283
|
+
userId: z.ZodString;
|
|
25284
|
+
userName: z.ZodString;
|
|
25285
|
+
}, "strip", z.ZodTypeAny, {
|
|
25286
|
+
userId: string;
|
|
25287
|
+
userName: string;
|
|
25288
|
+
}, {
|
|
25289
|
+
userId: string;
|
|
25290
|
+
userName: string;
|
|
25291
|
+
}>>;
|
|
25292
|
+
designSystem: z.ZodObject<{
|
|
25293
|
+
id: z.ZodString;
|
|
25294
|
+
meta: z.ZodObject<{
|
|
25295
|
+
name: z.ZodString;
|
|
25296
|
+
description: z.ZodOptional<z.ZodString>;
|
|
25297
|
+
}, "strip", z.ZodTypeAny, {
|
|
25298
|
+
name: string;
|
|
25299
|
+
description?: string | undefined;
|
|
25300
|
+
}, {
|
|
25301
|
+
name: string;
|
|
25302
|
+
description?: string | undefined;
|
|
25303
|
+
}>;
|
|
25304
|
+
}, "strip", z.ZodTypeAny, {
|
|
25305
|
+
id: string;
|
|
25306
|
+
meta: {
|
|
25307
|
+
name: string;
|
|
25308
|
+
description?: string | undefined;
|
|
25309
|
+
};
|
|
25310
|
+
}, {
|
|
25311
|
+
id: string;
|
|
25312
|
+
meta: {
|
|
25313
|
+
name: string;
|
|
25314
|
+
description?: string | undefined;
|
|
25315
|
+
};
|
|
25316
|
+
}>;
|
|
25317
|
+
designSystemVersion: z.ZodObject<{
|
|
25318
|
+
id: z.ZodString;
|
|
25319
|
+
meta: z.ZodObject<{
|
|
25320
|
+
name: z.ZodString;
|
|
25321
|
+
description: z.ZodOptional<z.ZodString>;
|
|
25322
|
+
}, "strip", z.ZodTypeAny, {
|
|
25323
|
+
name: string;
|
|
25324
|
+
description?: string | undefined;
|
|
25325
|
+
}, {
|
|
25326
|
+
name: string;
|
|
25327
|
+
description?: string | undefined;
|
|
25328
|
+
}>;
|
|
25329
|
+
version: z.ZodString;
|
|
25330
|
+
isReadonly: z.ZodBoolean;
|
|
25331
|
+
}, "strip", z.ZodTypeAny, {
|
|
25332
|
+
id: string;
|
|
25333
|
+
meta: {
|
|
25334
|
+
name: string;
|
|
25335
|
+
description?: string | undefined;
|
|
25336
|
+
};
|
|
25337
|
+
version: string;
|
|
25338
|
+
isReadonly: boolean;
|
|
25339
|
+
}, {
|
|
25340
|
+
id: string;
|
|
25341
|
+
meta: {
|
|
25342
|
+
name: string;
|
|
25343
|
+
description?: string | undefined;
|
|
25344
|
+
};
|
|
25345
|
+
version: string;
|
|
25346
|
+
isReadonly: boolean;
|
|
25347
|
+
}>;
|
|
25348
|
+
destinations: z.ZodObject<{
|
|
25349
|
+
s3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
25350
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
25351
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25352
|
+
organizationId: z.ZodString;
|
|
25353
|
+
projectId: z.ZodString;
|
|
25354
|
+
repositoryId: z.ZodString;
|
|
25355
|
+
branch: z.ZodString;
|
|
25356
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25357
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25358
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25359
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24457
25360
|
}, "strip", z.ZodTypeAny, {
|
|
24458
25361
|
branch: string;
|
|
24459
25362
|
organizationId: string;
|
|
24460
25363
|
projectId: string;
|
|
24461
25364
|
repositoryId: string;
|
|
24462
25365
|
url?: string | undefined;
|
|
25366
|
+
userId?: number | undefined;
|
|
24463
25367
|
credentialId?: string | undefined;
|
|
24464
25368
|
relativePath?: string | undefined;
|
|
25369
|
+
connectionId?: string | undefined;
|
|
24465
25370
|
}, {
|
|
24466
25371
|
branch: string;
|
|
24467
25372
|
organizationId: string;
|
|
24468
25373
|
projectId: string;
|
|
24469
25374
|
repositoryId: string;
|
|
24470
25375
|
url?: string | null | undefined;
|
|
25376
|
+
userId?: number | undefined;
|
|
24471
25377
|
credentialId?: string | undefined;
|
|
24472
25378
|
relativePath?: string | null | undefined;
|
|
25379
|
+
connectionId?: string | undefined;
|
|
24473
25380
|
}>>;
|
|
24474
25381
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
24475
25382
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -24478,36 +25385,48 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24478
25385
|
repoSlug: z.ZodString;
|
|
24479
25386
|
branch: z.ZodString;
|
|
24480
25387
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25388
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25389
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24481
25390
|
}, "strip", z.ZodTypeAny, {
|
|
24482
25391
|
branch: string;
|
|
24483
25392
|
workspaceSlug: string;
|
|
24484
25393
|
projectKey: string;
|
|
24485
25394
|
repoSlug: string;
|
|
25395
|
+
userId?: number | undefined;
|
|
24486
25396
|
credentialId?: string | undefined;
|
|
24487
25397
|
relativePath?: string | undefined;
|
|
25398
|
+
connectionId?: string | undefined;
|
|
24488
25399
|
}, {
|
|
24489
25400
|
branch: string;
|
|
24490
25401
|
workspaceSlug: string;
|
|
24491
25402
|
projectKey: string;
|
|
24492
25403
|
repoSlug: string;
|
|
25404
|
+
userId?: number | undefined;
|
|
24493
25405
|
credentialId?: string | undefined;
|
|
24494
25406
|
relativePath?: string | null | undefined;
|
|
25407
|
+
connectionId?: string | undefined;
|
|
24495
25408
|
}>>;
|
|
24496
25409
|
github: z.ZodOptional<z.ZodObject<{
|
|
24497
25410
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
24498
25411
|
url: z.ZodString;
|
|
24499
25412
|
branch: z.ZodString;
|
|
24500
25413
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25414
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25415
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24501
25416
|
}, "strip", z.ZodTypeAny, {
|
|
24502
25417
|
url: string;
|
|
24503
25418
|
branch: string;
|
|
25419
|
+
userId?: number | undefined;
|
|
24504
25420
|
credentialId?: string | undefined;
|
|
24505
25421
|
relativePath?: string | undefined;
|
|
25422
|
+
connectionId?: string | undefined;
|
|
24506
25423
|
}, {
|
|
24507
25424
|
url: string;
|
|
24508
25425
|
branch: string;
|
|
25426
|
+
userId?: number | undefined;
|
|
24509
25427
|
credentialId?: string | undefined;
|
|
24510
25428
|
relativePath?: string | null | undefined;
|
|
25429
|
+
connectionId?: string | undefined;
|
|
24511
25430
|
}>>;
|
|
24512
25431
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
24513
25432
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -24515,18 +25434,24 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24515
25434
|
branch: z.ZodString;
|
|
24516
25435
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24517
25436
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25437
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25438
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24518
25439
|
}, "strip", z.ZodTypeAny, {
|
|
24519
25440
|
branch: string;
|
|
24520
25441
|
projectId: string;
|
|
24521
25442
|
url?: string | undefined;
|
|
25443
|
+
userId?: number | undefined;
|
|
24522
25444
|
credentialId?: string | undefined;
|
|
24523
25445
|
relativePath?: string | undefined;
|
|
25446
|
+
connectionId?: string | undefined;
|
|
24524
25447
|
}, {
|
|
24525
25448
|
branch: string;
|
|
24526
25449
|
projectId: string;
|
|
24527
25450
|
url?: string | null | undefined;
|
|
25451
|
+
userId?: number | undefined;
|
|
24528
25452
|
credentialId?: string | undefined;
|
|
24529
25453
|
relativePath?: string | null | undefined;
|
|
25454
|
+
connectionId?: string | undefined;
|
|
24530
25455
|
}>>;
|
|
24531
25456
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
24532
25457
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -24544,29 +25469,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24544
25469
|
projectId: string;
|
|
24545
25470
|
repositoryId: string;
|
|
24546
25471
|
url?: string | undefined;
|
|
25472
|
+
userId?: number | undefined;
|
|
24547
25473
|
credentialId?: string | undefined;
|
|
24548
25474
|
relativePath?: string | undefined;
|
|
25475
|
+
connectionId?: string | undefined;
|
|
24549
25476
|
} | undefined;
|
|
24550
25477
|
bitbucket?: {
|
|
24551
25478
|
branch: string;
|
|
24552
25479
|
workspaceSlug: string;
|
|
24553
25480
|
projectKey: string;
|
|
24554
25481
|
repoSlug: string;
|
|
25482
|
+
userId?: number | undefined;
|
|
24555
25483
|
credentialId?: string | undefined;
|
|
24556
25484
|
relativePath?: string | undefined;
|
|
25485
|
+
connectionId?: string | undefined;
|
|
24557
25486
|
} | undefined;
|
|
24558
25487
|
github?: {
|
|
24559
25488
|
url: string;
|
|
24560
25489
|
branch: string;
|
|
25490
|
+
userId?: number | undefined;
|
|
24561
25491
|
credentialId?: string | undefined;
|
|
24562
25492
|
relativePath?: string | undefined;
|
|
25493
|
+
connectionId?: string | undefined;
|
|
24563
25494
|
} | undefined;
|
|
24564
25495
|
gitlab?: {
|
|
24565
25496
|
branch: string;
|
|
24566
25497
|
projectId: string;
|
|
24567
25498
|
url?: string | undefined;
|
|
25499
|
+
userId?: number | undefined;
|
|
24568
25500
|
credentialId?: string | undefined;
|
|
24569
25501
|
relativePath?: string | undefined;
|
|
25502
|
+
connectionId?: string | undefined;
|
|
24570
25503
|
} | undefined;
|
|
24571
25504
|
documentation?: {
|
|
24572
25505
|
environment: "Live" | "Preview";
|
|
@@ -24580,29 +25513,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24580
25513
|
projectId: string;
|
|
24581
25514
|
repositoryId: string;
|
|
24582
25515
|
url?: string | null | undefined;
|
|
25516
|
+
userId?: number | undefined;
|
|
24583
25517
|
credentialId?: string | undefined;
|
|
24584
25518
|
relativePath?: string | null | undefined;
|
|
25519
|
+
connectionId?: string | undefined;
|
|
24585
25520
|
} | undefined;
|
|
24586
25521
|
bitbucket?: {
|
|
24587
25522
|
branch: string;
|
|
24588
25523
|
workspaceSlug: string;
|
|
24589
25524
|
projectKey: string;
|
|
24590
25525
|
repoSlug: string;
|
|
25526
|
+
userId?: number | undefined;
|
|
24591
25527
|
credentialId?: string | undefined;
|
|
24592
25528
|
relativePath?: string | null | undefined;
|
|
25529
|
+
connectionId?: string | undefined;
|
|
24593
25530
|
} | undefined;
|
|
24594
25531
|
github?: {
|
|
24595
25532
|
url: string;
|
|
24596
25533
|
branch: string;
|
|
25534
|
+
userId?: number | undefined;
|
|
24597
25535
|
credentialId?: string | undefined;
|
|
24598
25536
|
relativePath?: string | null | undefined;
|
|
25537
|
+
connectionId?: string | undefined;
|
|
24599
25538
|
} | undefined;
|
|
24600
25539
|
gitlab?: {
|
|
24601
25540
|
branch: string;
|
|
24602
25541
|
projectId: string;
|
|
24603
25542
|
url?: string | null | undefined;
|
|
25543
|
+
userId?: number | undefined;
|
|
24604
25544
|
credentialId?: string | undefined;
|
|
24605
25545
|
relativePath?: string | null | undefined;
|
|
25546
|
+
connectionId?: string | undefined;
|
|
24606
25547
|
} | undefined;
|
|
24607
25548
|
documentation?: {
|
|
24608
25549
|
environment: "Live" | "Preview";
|
|
@@ -24711,6 +25652,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24711
25652
|
url: string;
|
|
24712
25653
|
} | undefined;
|
|
24713
25654
|
}>>;
|
|
25655
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25656
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
24714
25657
|
}, "strip", z.ZodTypeAny, {
|
|
24715
25658
|
id: string;
|
|
24716
25659
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
@@ -24724,29 +25667,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24724
25667
|
projectId: string;
|
|
24725
25668
|
repositoryId: string;
|
|
24726
25669
|
url?: string | undefined;
|
|
25670
|
+
userId?: number | undefined;
|
|
24727
25671
|
credentialId?: string | undefined;
|
|
24728
25672
|
relativePath?: string | undefined;
|
|
25673
|
+
connectionId?: string | undefined;
|
|
24729
25674
|
} | undefined;
|
|
24730
25675
|
bitbucket?: {
|
|
24731
25676
|
branch: string;
|
|
24732
25677
|
workspaceSlug: string;
|
|
24733
25678
|
projectKey: string;
|
|
24734
25679
|
repoSlug: string;
|
|
25680
|
+
userId?: number | undefined;
|
|
24735
25681
|
credentialId?: string | undefined;
|
|
24736
25682
|
relativePath?: string | undefined;
|
|
25683
|
+
connectionId?: string | undefined;
|
|
24737
25684
|
} | undefined;
|
|
24738
25685
|
github?: {
|
|
24739
25686
|
url: string;
|
|
24740
25687
|
branch: string;
|
|
25688
|
+
userId?: number | undefined;
|
|
24741
25689
|
credentialId?: string | undefined;
|
|
24742
25690
|
relativePath?: string | undefined;
|
|
25691
|
+
connectionId?: string | undefined;
|
|
24743
25692
|
} | undefined;
|
|
24744
25693
|
gitlab?: {
|
|
24745
25694
|
branch: string;
|
|
24746
25695
|
projectId: string;
|
|
24747
25696
|
url?: string | undefined;
|
|
25697
|
+
userId?: number | undefined;
|
|
24748
25698
|
credentialId?: string | undefined;
|
|
24749
25699
|
relativePath?: string | undefined;
|
|
25700
|
+
connectionId?: string | undefined;
|
|
24750
25701
|
} | undefined;
|
|
24751
25702
|
documentation?: {
|
|
24752
25703
|
environment: "Live" | "Preview";
|
|
@@ -24769,6 +25720,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24769
25720
|
description?: string | undefined;
|
|
24770
25721
|
};
|
|
24771
25722
|
};
|
|
25723
|
+
brandPersistentId?: string | undefined;
|
|
25724
|
+
themePersistentId?: string | undefined;
|
|
24772
25725
|
finishedAt?: Date | undefined;
|
|
24773
25726
|
index?: number | undefined;
|
|
24774
25727
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24814,29 +25767,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24814
25767
|
projectId: string;
|
|
24815
25768
|
repositoryId: string;
|
|
24816
25769
|
url?: string | null | undefined;
|
|
25770
|
+
userId?: number | undefined;
|
|
24817
25771
|
credentialId?: string | undefined;
|
|
24818
25772
|
relativePath?: string | null | undefined;
|
|
25773
|
+
connectionId?: string | undefined;
|
|
24819
25774
|
} | undefined;
|
|
24820
25775
|
bitbucket?: {
|
|
24821
25776
|
branch: string;
|
|
24822
25777
|
workspaceSlug: string;
|
|
24823
25778
|
projectKey: string;
|
|
24824
25779
|
repoSlug: string;
|
|
25780
|
+
userId?: number | undefined;
|
|
24825
25781
|
credentialId?: string | undefined;
|
|
24826
25782
|
relativePath?: string | null | undefined;
|
|
25783
|
+
connectionId?: string | undefined;
|
|
24827
25784
|
} | undefined;
|
|
24828
25785
|
github?: {
|
|
24829
25786
|
url: string;
|
|
24830
25787
|
branch: string;
|
|
25788
|
+
userId?: number | undefined;
|
|
24831
25789
|
credentialId?: string | undefined;
|
|
24832
25790
|
relativePath?: string | null | undefined;
|
|
25791
|
+
connectionId?: string | undefined;
|
|
24833
25792
|
} | undefined;
|
|
24834
25793
|
gitlab?: {
|
|
24835
25794
|
branch: string;
|
|
24836
25795
|
projectId: string;
|
|
24837
25796
|
url?: string | null | undefined;
|
|
25797
|
+
userId?: number | undefined;
|
|
24838
25798
|
credentialId?: string | undefined;
|
|
24839
25799
|
relativePath?: string | null | undefined;
|
|
25800
|
+
connectionId?: string | undefined;
|
|
24840
25801
|
} | undefined;
|
|
24841
25802
|
documentation?: {
|
|
24842
25803
|
environment: "Live" | "Preview";
|
|
@@ -24859,6 +25820,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24859
25820
|
description?: string | undefined;
|
|
24860
25821
|
};
|
|
24861
25822
|
};
|
|
25823
|
+
brandPersistentId?: string | undefined;
|
|
25824
|
+
themePersistentId?: string | undefined;
|
|
24862
25825
|
finishedAt?: Date | undefined;
|
|
24863
25826
|
index?: number | undefined;
|
|
24864
25827
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24891,9 +25854,140 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24891
25854
|
url: string;
|
|
24892
25855
|
} | undefined;
|
|
24893
25856
|
} | undefined;
|
|
24894
|
-
}>;
|
|
25857
|
+
}>, "many">;
|
|
25858
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
25859
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
25860
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
25861
|
+
}, "strip", z.ZodTypeAny, {
|
|
25862
|
+
environment: "Live" | "Preview";
|
|
25863
|
+
}, {
|
|
25864
|
+
environment: "Live" | "Preview";
|
|
25865
|
+
}>>;
|
|
25866
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
25867
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
25868
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25869
|
+
url: z.ZodString;
|
|
25870
|
+
branch: z.ZodString;
|
|
25871
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25872
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25873
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25874
|
+
}, "strip", z.ZodTypeAny, {
|
|
25875
|
+
url: string;
|
|
25876
|
+
branch: string;
|
|
25877
|
+
userId?: number | undefined;
|
|
25878
|
+
credentialId?: string | undefined;
|
|
25879
|
+
relativePath?: string | undefined;
|
|
25880
|
+
connectionId?: string | undefined;
|
|
25881
|
+
}, {
|
|
25882
|
+
url: string;
|
|
25883
|
+
branch: string;
|
|
25884
|
+
userId?: number | undefined;
|
|
25885
|
+
credentialId?: string | undefined;
|
|
25886
|
+
relativePath?: string | null | undefined;
|
|
25887
|
+
connectionId?: string | undefined;
|
|
25888
|
+
}>>;
|
|
25889
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
25890
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25891
|
+
organizationId: z.ZodString;
|
|
25892
|
+
projectId: z.ZodString;
|
|
25893
|
+
repositoryId: z.ZodString;
|
|
25894
|
+
branch: z.ZodString;
|
|
25895
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25896
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25897
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25898
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25899
|
+
}, "strip", z.ZodTypeAny, {
|
|
25900
|
+
branch: string;
|
|
25901
|
+
organizationId: string;
|
|
25902
|
+
projectId: string;
|
|
25903
|
+
repositoryId: string;
|
|
25904
|
+
url?: string | undefined;
|
|
25905
|
+
userId?: number | undefined;
|
|
25906
|
+
credentialId?: string | undefined;
|
|
25907
|
+
relativePath?: string | undefined;
|
|
25908
|
+
connectionId?: string | undefined;
|
|
25909
|
+
}, {
|
|
25910
|
+
branch: string;
|
|
25911
|
+
organizationId: string;
|
|
25912
|
+
projectId: string;
|
|
25913
|
+
repositoryId: string;
|
|
25914
|
+
url?: string | null | undefined;
|
|
25915
|
+
userId?: number | undefined;
|
|
25916
|
+
credentialId?: string | undefined;
|
|
25917
|
+
relativePath?: string | null | undefined;
|
|
25918
|
+
connectionId?: string | undefined;
|
|
25919
|
+
}>>;
|
|
25920
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
25921
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25922
|
+
projectId: z.ZodString;
|
|
25923
|
+
branch: z.ZodString;
|
|
25924
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25925
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25926
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25927
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25928
|
+
}, "strip", z.ZodTypeAny, {
|
|
25929
|
+
branch: string;
|
|
25930
|
+
projectId: string;
|
|
25931
|
+
url?: string | undefined;
|
|
25932
|
+
userId?: number | undefined;
|
|
25933
|
+
credentialId?: string | undefined;
|
|
25934
|
+
relativePath?: string | undefined;
|
|
25935
|
+
connectionId?: string | undefined;
|
|
25936
|
+
}, {
|
|
25937
|
+
branch: string;
|
|
25938
|
+
projectId: string;
|
|
25939
|
+
url?: string | null | undefined;
|
|
25940
|
+
userId?: number | undefined;
|
|
25941
|
+
credentialId?: string | undefined;
|
|
25942
|
+
relativePath?: string | null | undefined;
|
|
25943
|
+
connectionId?: string | undefined;
|
|
25944
|
+
}>>;
|
|
25945
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
25946
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25947
|
+
workspaceSlug: z.ZodString;
|
|
25948
|
+
projectKey: z.ZodString;
|
|
25949
|
+
repoSlug: z.ZodString;
|
|
25950
|
+
branch: z.ZodString;
|
|
25951
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25952
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25953
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25954
|
+
}, "strip", z.ZodTypeAny, {
|
|
25955
|
+
branch: string;
|
|
25956
|
+
workspaceSlug: string;
|
|
25957
|
+
projectKey: string;
|
|
25958
|
+
repoSlug: string;
|
|
25959
|
+
userId?: number | undefined;
|
|
25960
|
+
credentialId?: string | undefined;
|
|
25961
|
+
relativePath?: string | undefined;
|
|
25962
|
+
connectionId?: string | undefined;
|
|
25963
|
+
}, {
|
|
25964
|
+
branch: string;
|
|
25965
|
+
workspaceSlug: string;
|
|
25966
|
+
projectKey: string;
|
|
25967
|
+
repoSlug: string;
|
|
25968
|
+
userId?: number | undefined;
|
|
25969
|
+
credentialId?: string | undefined;
|
|
25970
|
+
relativePath?: string | null | undefined;
|
|
25971
|
+
connectionId?: string | undefined;
|
|
25972
|
+
}>>;
|
|
25973
|
+
id: z.ZodString;
|
|
25974
|
+
name: z.ZodString;
|
|
25975
|
+
eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
25976
|
+
isEnabled: z.ZodBoolean;
|
|
25977
|
+
workspaceId: z.ZodString;
|
|
25978
|
+
designSystemId: z.ZodString;
|
|
25979
|
+
exporterId: z.ZodString;
|
|
25980
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25981
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
24895
25982
|
}, "strip", z.ZodTypeAny, {
|
|
24896
|
-
|
|
25983
|
+
id: string;
|
|
25984
|
+
workspaceId: string;
|
|
25985
|
+
name: string;
|
|
25986
|
+
exporterId: string;
|
|
25987
|
+
designSystemId: string;
|
|
25988
|
+
isEnabled: boolean;
|
|
25989
|
+
eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
|
|
25990
|
+
latestJobs: {
|
|
24897
25991
|
id: string;
|
|
24898
25992
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24899
25993
|
createdAt: Date;
|
|
@@ -24906,29 +26000,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24906
26000
|
projectId: string;
|
|
24907
26001
|
repositoryId: string;
|
|
24908
26002
|
url?: string | undefined;
|
|
26003
|
+
userId?: number | undefined;
|
|
24909
26004
|
credentialId?: string | undefined;
|
|
24910
26005
|
relativePath?: string | undefined;
|
|
26006
|
+
connectionId?: string | undefined;
|
|
24911
26007
|
} | undefined;
|
|
24912
26008
|
bitbucket?: {
|
|
24913
26009
|
branch: string;
|
|
24914
26010
|
workspaceSlug: string;
|
|
24915
26011
|
projectKey: string;
|
|
24916
26012
|
repoSlug: string;
|
|
26013
|
+
userId?: number | undefined;
|
|
24917
26014
|
credentialId?: string | undefined;
|
|
24918
26015
|
relativePath?: string | undefined;
|
|
26016
|
+
connectionId?: string | undefined;
|
|
24919
26017
|
} | undefined;
|
|
24920
26018
|
github?: {
|
|
24921
26019
|
url: string;
|
|
24922
26020
|
branch: string;
|
|
26021
|
+
userId?: number | undefined;
|
|
24923
26022
|
credentialId?: string | undefined;
|
|
24924
26023
|
relativePath?: string | undefined;
|
|
26024
|
+
connectionId?: string | undefined;
|
|
24925
26025
|
} | undefined;
|
|
24926
26026
|
gitlab?: {
|
|
24927
26027
|
branch: string;
|
|
24928
26028
|
projectId: string;
|
|
24929
26029
|
url?: string | undefined;
|
|
26030
|
+
userId?: number | undefined;
|
|
24930
26031
|
credentialId?: string | undefined;
|
|
24931
26032
|
relativePath?: string | undefined;
|
|
26033
|
+
connectionId?: string | undefined;
|
|
24932
26034
|
} | undefined;
|
|
24933
26035
|
documentation?: {
|
|
24934
26036
|
environment: "Live" | "Preview";
|
|
@@ -24951,6 +26053,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24951
26053
|
description?: string | undefined;
|
|
24952
26054
|
};
|
|
24953
26055
|
};
|
|
26056
|
+
brandPersistentId?: string | undefined;
|
|
26057
|
+
themePersistentId?: string | undefined;
|
|
24954
26058
|
finishedAt?: Date | undefined;
|
|
24955
26059
|
index?: number | undefined;
|
|
24956
26060
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -24983,9 +26087,61 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24983
26087
|
url: string;
|
|
24984
26088
|
} | undefined;
|
|
24985
26089
|
} | undefined;
|
|
24986
|
-
};
|
|
26090
|
+
}[];
|
|
26091
|
+
brandPersistentId?: string | undefined;
|
|
26092
|
+
themePersistentId?: string | undefined;
|
|
26093
|
+
webhookUrl?: string | undefined;
|
|
26094
|
+
destinationSnDocs?: {
|
|
26095
|
+
environment: "Live" | "Preview";
|
|
26096
|
+
} | undefined;
|
|
26097
|
+
destinationS3?: {} | undefined;
|
|
26098
|
+
destinationGithub?: {
|
|
26099
|
+
url: string;
|
|
26100
|
+
branch: string;
|
|
26101
|
+
userId?: number | undefined;
|
|
26102
|
+
credentialId?: string | undefined;
|
|
26103
|
+
relativePath?: string | undefined;
|
|
26104
|
+
connectionId?: string | undefined;
|
|
26105
|
+
} | undefined;
|
|
26106
|
+
destinationAzure?: {
|
|
26107
|
+
branch: string;
|
|
26108
|
+
organizationId: string;
|
|
26109
|
+
projectId: string;
|
|
26110
|
+
repositoryId: string;
|
|
26111
|
+
url?: string | undefined;
|
|
26112
|
+
userId?: number | undefined;
|
|
26113
|
+
credentialId?: string | undefined;
|
|
26114
|
+
relativePath?: string | undefined;
|
|
26115
|
+
connectionId?: string | undefined;
|
|
26116
|
+
} | undefined;
|
|
26117
|
+
destinationGitlab?: {
|
|
26118
|
+
branch: string;
|
|
26119
|
+
projectId: string;
|
|
26120
|
+
url?: string | undefined;
|
|
26121
|
+
userId?: number | undefined;
|
|
26122
|
+
credentialId?: string | undefined;
|
|
26123
|
+
relativePath?: string | undefined;
|
|
26124
|
+
connectionId?: string | undefined;
|
|
26125
|
+
} | undefined;
|
|
26126
|
+
destinationBitbucket?: {
|
|
26127
|
+
branch: string;
|
|
26128
|
+
workspaceSlug: string;
|
|
26129
|
+
projectKey: string;
|
|
26130
|
+
repoSlug: string;
|
|
26131
|
+
userId?: number | undefined;
|
|
26132
|
+
credentialId?: string | undefined;
|
|
26133
|
+
relativePath?: string | undefined;
|
|
26134
|
+
connectionId?: string | undefined;
|
|
26135
|
+
} | undefined;
|
|
24987
26136
|
}, {
|
|
24988
|
-
|
|
26137
|
+
id: string;
|
|
26138
|
+
workspaceId: string;
|
|
26139
|
+
name: string;
|
|
26140
|
+
exporterId: string;
|
|
26141
|
+
designSystemId: string;
|
|
26142
|
+
isEnabled: boolean;
|
|
26143
|
+
eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
|
|
26144
|
+
latestJobs: {
|
|
24989
26145
|
id: string;
|
|
24990
26146
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24991
26147
|
createdAt: Date;
|
|
@@ -24998,29 +26154,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24998
26154
|
projectId: string;
|
|
24999
26155
|
repositoryId: string;
|
|
25000
26156
|
url?: string | null | undefined;
|
|
26157
|
+
userId?: number | undefined;
|
|
25001
26158
|
credentialId?: string | undefined;
|
|
25002
26159
|
relativePath?: string | null | undefined;
|
|
26160
|
+
connectionId?: string | undefined;
|
|
25003
26161
|
} | undefined;
|
|
25004
26162
|
bitbucket?: {
|
|
25005
26163
|
branch: string;
|
|
25006
26164
|
workspaceSlug: string;
|
|
25007
26165
|
projectKey: string;
|
|
25008
26166
|
repoSlug: string;
|
|
26167
|
+
userId?: number | undefined;
|
|
25009
26168
|
credentialId?: string | undefined;
|
|
25010
26169
|
relativePath?: string | null | undefined;
|
|
26170
|
+
connectionId?: string | undefined;
|
|
25011
26171
|
} | undefined;
|
|
25012
26172
|
github?: {
|
|
25013
26173
|
url: string;
|
|
25014
26174
|
branch: string;
|
|
26175
|
+
userId?: number | undefined;
|
|
25015
26176
|
credentialId?: string | undefined;
|
|
25016
26177
|
relativePath?: string | null | undefined;
|
|
26178
|
+
connectionId?: string | undefined;
|
|
25017
26179
|
} | undefined;
|
|
25018
26180
|
gitlab?: {
|
|
25019
26181
|
branch: string;
|
|
25020
26182
|
projectId: string;
|
|
25021
26183
|
url?: string | null | undefined;
|
|
26184
|
+
userId?: number | undefined;
|
|
25022
26185
|
credentialId?: string | undefined;
|
|
25023
26186
|
relativePath?: string | null | undefined;
|
|
26187
|
+
connectionId?: string | undefined;
|
|
25024
26188
|
} | undefined;
|
|
25025
26189
|
documentation?: {
|
|
25026
26190
|
environment: "Live" | "Preview";
|
|
@@ -25043,6 +26207,8 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
25043
26207
|
description?: string | undefined;
|
|
25044
26208
|
};
|
|
25045
26209
|
};
|
|
26210
|
+
brandPersistentId?: string | undefined;
|
|
26211
|
+
themePersistentId?: string | undefined;
|
|
25046
26212
|
finishedAt?: Date | undefined;
|
|
25047
26213
|
index?: number | undefined;
|
|
25048
26214
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -25075,164 +26241,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
25075
26241
|
url: string;
|
|
25076
26242
|
} | undefined;
|
|
25077
26243
|
} | undefined;
|
|
25078
|
-
};
|
|
25079
|
-
}>;
|
|
25080
|
-
type DTOExportJobResponse = z.infer<typeof DTOExportJobResponse>;
|
|
25081
|
-
|
|
25082
|
-
declare const DTOPipeline: z.ZodObject<{
|
|
25083
|
-
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
25084
|
-
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
25085
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
25086
|
-
}, "strip", z.ZodTypeAny, {
|
|
25087
|
-
environment: "Live" | "Preview";
|
|
25088
|
-
}, {
|
|
25089
|
-
environment: "Live" | "Preview";
|
|
25090
|
-
}>>;
|
|
25091
|
-
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
25092
|
-
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
25093
|
-
credentialId: z.ZodOptional<z.ZodString>;
|
|
25094
|
-
url: z.ZodString;
|
|
25095
|
-
branch: z.ZodString;
|
|
25096
|
-
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25097
|
-
}, "strip", z.ZodTypeAny, {
|
|
25098
|
-
url: string;
|
|
25099
|
-
branch: string;
|
|
25100
|
-
credentialId?: string | undefined;
|
|
25101
|
-
relativePath?: string | undefined;
|
|
25102
|
-
}, {
|
|
25103
|
-
url: string;
|
|
25104
|
-
branch: string;
|
|
25105
|
-
credentialId?: string | undefined;
|
|
25106
|
-
relativePath?: string | null | undefined;
|
|
25107
|
-
}>>;
|
|
25108
|
-
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
25109
|
-
credentialId: z.ZodOptional<z.ZodString>;
|
|
25110
|
-
organizationId: z.ZodString;
|
|
25111
|
-
projectId: z.ZodString;
|
|
25112
|
-
repositoryId: z.ZodString;
|
|
25113
|
-
branch: z.ZodString;
|
|
25114
|
-
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25115
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25116
|
-
}, "strip", z.ZodTypeAny, {
|
|
25117
|
-
branch: string;
|
|
25118
|
-
organizationId: string;
|
|
25119
|
-
projectId: string;
|
|
25120
|
-
repositoryId: string;
|
|
25121
|
-
url?: string | undefined;
|
|
25122
|
-
credentialId?: string | undefined;
|
|
25123
|
-
relativePath?: string | undefined;
|
|
25124
|
-
}, {
|
|
25125
|
-
branch: string;
|
|
25126
|
-
organizationId: string;
|
|
25127
|
-
projectId: string;
|
|
25128
|
-
repositoryId: string;
|
|
25129
|
-
url?: string | null | undefined;
|
|
25130
|
-
credentialId?: string | undefined;
|
|
25131
|
-
relativePath?: string | null | undefined;
|
|
25132
|
-
}>>;
|
|
25133
|
-
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
25134
|
-
credentialId: z.ZodOptional<z.ZodString>;
|
|
25135
|
-
projectId: z.ZodString;
|
|
25136
|
-
branch: z.ZodString;
|
|
25137
|
-
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25138
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25139
|
-
}, "strip", z.ZodTypeAny, {
|
|
25140
|
-
branch: string;
|
|
25141
|
-
projectId: string;
|
|
25142
|
-
url?: string | undefined;
|
|
25143
|
-
credentialId?: string | undefined;
|
|
25144
|
-
relativePath?: string | undefined;
|
|
25145
|
-
}, {
|
|
25146
|
-
branch: string;
|
|
25147
|
-
projectId: string;
|
|
25148
|
-
url?: string | null | undefined;
|
|
25149
|
-
credentialId?: string | undefined;
|
|
25150
|
-
relativePath?: string | null | undefined;
|
|
25151
|
-
}>>;
|
|
25152
|
-
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
25153
|
-
credentialId: z.ZodOptional<z.ZodString>;
|
|
25154
|
-
workspaceSlug: z.ZodString;
|
|
25155
|
-
projectKey: z.ZodString;
|
|
25156
|
-
repoSlug: z.ZodString;
|
|
25157
|
-
branch: z.ZodString;
|
|
25158
|
-
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25159
|
-
}, "strip", z.ZodTypeAny, {
|
|
25160
|
-
branch: string;
|
|
25161
|
-
workspaceSlug: string;
|
|
25162
|
-
projectKey: string;
|
|
25163
|
-
repoSlug: string;
|
|
25164
|
-
credentialId?: string | undefined;
|
|
25165
|
-
relativePath?: string | undefined;
|
|
25166
|
-
}, {
|
|
25167
|
-
branch: string;
|
|
25168
|
-
workspaceSlug: string;
|
|
25169
|
-
projectKey: string;
|
|
25170
|
-
repoSlug: string;
|
|
25171
|
-
credentialId?: string | undefined;
|
|
25172
|
-
relativePath?: string | null | undefined;
|
|
25173
|
-
}>>;
|
|
25174
|
-
id: z.ZodString;
|
|
25175
|
-
name: z.ZodString;
|
|
25176
|
-
eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
25177
|
-
isEnabled: z.ZodBoolean;
|
|
25178
|
-
workspaceId: z.ZodString;
|
|
25179
|
-
designSystemId: z.ZodString;
|
|
25180
|
-
exporterId: z.ZodString;
|
|
25181
|
-
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25182
|
-
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
25183
|
-
}, "strip", z.ZodTypeAny, {
|
|
25184
|
-
id: string;
|
|
25185
|
-
workspaceId: string;
|
|
25186
|
-
name: string;
|
|
25187
|
-
exporterId: string;
|
|
25188
|
-
designSystemId: string;
|
|
25189
|
-
isEnabled: boolean;
|
|
25190
|
-
eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
|
|
25191
|
-
brandPersistentId?: string | undefined;
|
|
25192
|
-
themePersistentId?: string | undefined;
|
|
25193
|
-
webhookUrl?: string | undefined;
|
|
25194
|
-
destinationSnDocs?: {
|
|
25195
|
-
environment: "Live" | "Preview";
|
|
25196
|
-
} | undefined;
|
|
25197
|
-
destinationS3?: {} | undefined;
|
|
25198
|
-
destinationGithub?: {
|
|
25199
|
-
url: string;
|
|
25200
|
-
branch: string;
|
|
25201
|
-
credentialId?: string | undefined;
|
|
25202
|
-
relativePath?: string | undefined;
|
|
25203
|
-
} | undefined;
|
|
25204
|
-
destinationAzure?: {
|
|
25205
|
-
branch: string;
|
|
25206
|
-
organizationId: string;
|
|
25207
|
-
projectId: string;
|
|
25208
|
-
repositoryId: string;
|
|
25209
|
-
url?: string | undefined;
|
|
25210
|
-
credentialId?: string | undefined;
|
|
25211
|
-
relativePath?: string | undefined;
|
|
25212
|
-
} | undefined;
|
|
25213
|
-
destinationGitlab?: {
|
|
25214
|
-
branch: string;
|
|
25215
|
-
projectId: string;
|
|
25216
|
-
url?: string | undefined;
|
|
25217
|
-
credentialId?: string | undefined;
|
|
25218
|
-
relativePath?: string | undefined;
|
|
25219
|
-
} | undefined;
|
|
25220
|
-
destinationBitbucket?: {
|
|
25221
|
-
branch: string;
|
|
25222
|
-
workspaceSlug: string;
|
|
25223
|
-
projectKey: string;
|
|
25224
|
-
repoSlug: string;
|
|
25225
|
-
credentialId?: string | undefined;
|
|
25226
|
-
relativePath?: string | undefined;
|
|
25227
|
-
} | undefined;
|
|
25228
|
-
}, {
|
|
25229
|
-
id: string;
|
|
25230
|
-
workspaceId: string;
|
|
25231
|
-
name: string;
|
|
25232
|
-
exporterId: string;
|
|
25233
|
-
designSystemId: string;
|
|
25234
|
-
isEnabled: boolean;
|
|
25235
|
-
eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
|
|
26244
|
+
}[];
|
|
25236
26245
|
brandPersistentId?: string | undefined;
|
|
25237
26246
|
themePersistentId?: string | undefined;
|
|
25238
26247
|
webhookUrl?: string | undefined;
|
|
@@ -25243,8 +26252,10 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
25243
26252
|
destinationGithub?: {
|
|
25244
26253
|
url: string;
|
|
25245
26254
|
branch: string;
|
|
26255
|
+
userId?: number | undefined;
|
|
25246
26256
|
credentialId?: string | undefined;
|
|
25247
26257
|
relativePath?: string | null | undefined;
|
|
26258
|
+
connectionId?: string | undefined;
|
|
25248
26259
|
} | undefined;
|
|
25249
26260
|
destinationAzure?: {
|
|
25250
26261
|
branch: string;
|
|
@@ -25252,23 +26263,29 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
25252
26263
|
projectId: string;
|
|
25253
26264
|
repositoryId: string;
|
|
25254
26265
|
url?: string | null | undefined;
|
|
26266
|
+
userId?: number | undefined;
|
|
25255
26267
|
credentialId?: string | undefined;
|
|
25256
26268
|
relativePath?: string | null | undefined;
|
|
26269
|
+
connectionId?: string | undefined;
|
|
25257
26270
|
} | undefined;
|
|
25258
26271
|
destinationGitlab?: {
|
|
25259
26272
|
branch: string;
|
|
25260
26273
|
projectId: string;
|
|
25261
26274
|
url?: string | null | undefined;
|
|
26275
|
+
userId?: number | undefined;
|
|
25262
26276
|
credentialId?: string | undefined;
|
|
25263
26277
|
relativePath?: string | null | undefined;
|
|
26278
|
+
connectionId?: string | undefined;
|
|
25264
26279
|
} | undefined;
|
|
25265
26280
|
destinationBitbucket?: {
|
|
25266
26281
|
branch: string;
|
|
25267
26282
|
workspaceSlug: string;
|
|
25268
26283
|
projectKey: string;
|
|
25269
26284
|
repoSlug: string;
|
|
26285
|
+
userId?: number | undefined;
|
|
25270
26286
|
credentialId?: string | undefined;
|
|
25271
26287
|
relativePath?: string | null | undefined;
|
|
26288
|
+
connectionId?: string | undefined;
|
|
25272
26289
|
} | undefined;
|
|
25273
26290
|
}>;
|
|
25274
26291
|
type DTOPipeline = z.infer<typeof DTOPipeline>;
|
|
@@ -25894,7 +26911,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25894
26911
|
workspaceId: z.ZodString;
|
|
25895
26912
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
25896
26913
|
createdAt: z.ZodDate;
|
|
25897
|
-
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26914
|
+
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
25898
26915
|
id: z.ZodString;
|
|
25899
26916
|
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
25900
26917
|
integrationId: z.ZodString;
|
|
@@ -25906,27 +26923,28 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25906
26923
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
25907
26924
|
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
25908
26925
|
username: z.ZodOptional<z.ZodString>;
|
|
26926
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
25909
26927
|
profile: z.ZodOptional<z.ZodObject<{
|
|
25910
|
-
id: z.
|
|
25911
|
-
email: z.ZodOptional<z.
|
|
25912
|
-
handle: z.ZodOptional<z.
|
|
25913
|
-
type: z.ZodOptional<z.
|
|
25914
|
-
avatarUrl: z.ZodOptional<z.
|
|
25915
|
-
organization: z.ZodOptional<z.
|
|
26928
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26929
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26930
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26931
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26932
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26933
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25916
26934
|
}, "strip", z.ZodTypeAny, {
|
|
25917
|
-
id
|
|
26935
|
+
id?: string | undefined;
|
|
25918
26936
|
type?: string | undefined;
|
|
25919
26937
|
email?: string | undefined;
|
|
25920
26938
|
handle?: string | undefined;
|
|
25921
26939
|
avatarUrl?: string | undefined;
|
|
25922
26940
|
organization?: string | undefined;
|
|
25923
26941
|
}, {
|
|
25924
|
-
id
|
|
25925
|
-
type?: string | undefined;
|
|
25926
|
-
email?: string | undefined;
|
|
25927
|
-
handle?: string | undefined;
|
|
25928
|
-
avatarUrl?: string | undefined;
|
|
25929
|
-
organization?: string | undefined;
|
|
26942
|
+
id?: string | null | undefined;
|
|
26943
|
+
type?: string | null | undefined;
|
|
26944
|
+
email?: string | null | undefined;
|
|
26945
|
+
handle?: string | null | undefined;
|
|
26946
|
+
avatarUrl?: string | null | undefined;
|
|
26947
|
+
organization?: string | null | undefined;
|
|
25930
26948
|
}>>;
|
|
25931
26949
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
25932
26950
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -25945,17 +26963,15 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25945
26963
|
email: string;
|
|
25946
26964
|
avatar?: string | undefined;
|
|
25947
26965
|
}>>;
|
|
25948
|
-
}, "strip", z.ZodTypeAny, {
|
|
26966
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
25949
26967
|
id: string;
|
|
25950
|
-
createdAt: Date;
|
|
25951
26968
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
26969
|
+
createdAt: Date;
|
|
25952
26970
|
userId: string;
|
|
25953
|
-
accessToken: string;
|
|
25954
26971
|
integrationId: string;
|
|
25955
|
-
customUrl?: string | undefined;
|
|
25956
26972
|
username?: string | undefined;
|
|
25957
26973
|
profile?: {
|
|
25958
|
-
id
|
|
26974
|
+
id?: string | undefined;
|
|
25959
26975
|
type?: string | undefined;
|
|
25960
26976
|
email?: string | undefined;
|
|
25961
26977
|
handle?: string | undefined;
|
|
@@ -25968,26 +26984,25 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25968
26984
|
email: string;
|
|
25969
26985
|
avatar?: string | undefined;
|
|
25970
26986
|
} | undefined;
|
|
25971
|
-
expiresAt?: Date | undefined;
|
|
25972
|
-
refreshToken?: string | undefined;
|
|
25973
26987
|
tokenName?: string | undefined;
|
|
26988
|
+
expiresAt?: Date | undefined;
|
|
25974
26989
|
refreshedAt?: Date | undefined;
|
|
26990
|
+
appInstallationId?: string | undefined;
|
|
26991
|
+
customUrl?: string | undefined;
|
|
25975
26992
|
}, {
|
|
25976
26993
|
id: string;
|
|
25977
|
-
createdAt: Date;
|
|
25978
26994
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
26995
|
+
createdAt: Date;
|
|
25979
26996
|
userId: string;
|
|
25980
|
-
accessToken: string;
|
|
25981
26997
|
integrationId: string;
|
|
25982
|
-
customUrl?: string | undefined;
|
|
25983
26998
|
username?: string | undefined;
|
|
25984
26999
|
profile?: {
|
|
25985
|
-
id
|
|
25986
|
-
type?: string | undefined;
|
|
25987
|
-
email?: string | undefined;
|
|
25988
|
-
handle?: string | undefined;
|
|
25989
|
-
avatarUrl?: string | undefined;
|
|
25990
|
-
organization?: string | undefined;
|
|
27000
|
+
id?: string | null | undefined;
|
|
27001
|
+
type?: string | null | undefined;
|
|
27002
|
+
email?: string | null | undefined;
|
|
27003
|
+
handle?: string | null | undefined;
|
|
27004
|
+
avatarUrl?: string | null | undefined;
|
|
27005
|
+
organization?: string | null | undefined;
|
|
25991
27006
|
} | undefined;
|
|
25992
27007
|
user?: {
|
|
25993
27008
|
id: string;
|
|
@@ -25995,10 +27010,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25995
27010
|
email: string;
|
|
25996
27011
|
avatar?: string | undefined;
|
|
25997
27012
|
} | undefined;
|
|
25998
|
-
expiresAt?: Date | undefined;
|
|
25999
|
-
refreshToken?: string | undefined;
|
|
26000
27013
|
tokenName?: string | undefined;
|
|
27014
|
+
expiresAt?: Date | undefined;
|
|
26001
27015
|
refreshedAt?: Date | undefined;
|
|
27016
|
+
appInstallationId?: string | undefined;
|
|
27017
|
+
customUrl?: string | undefined;
|
|
26002
27018
|
}>, "many">>;
|
|
26003
27019
|
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26004
27020
|
designSystemId: z.ZodString;
|
|
@@ -26026,15 +27042,13 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26026
27042
|
createdAt: Date;
|
|
26027
27043
|
integrationCredentials?: {
|
|
26028
27044
|
id: string;
|
|
26029
|
-
createdAt: Date;
|
|
26030
27045
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27046
|
+
createdAt: Date;
|
|
26031
27047
|
userId: string;
|
|
26032
|
-
accessToken: string;
|
|
26033
27048
|
integrationId: string;
|
|
26034
|
-
customUrl?: string | undefined;
|
|
26035
27049
|
username?: string | undefined;
|
|
26036
27050
|
profile?: {
|
|
26037
|
-
id
|
|
27051
|
+
id?: string | undefined;
|
|
26038
27052
|
type?: string | undefined;
|
|
26039
27053
|
email?: string | undefined;
|
|
26040
27054
|
handle?: string | undefined;
|
|
@@ -26047,10 +27061,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26047
27061
|
email: string;
|
|
26048
27062
|
avatar?: string | undefined;
|
|
26049
27063
|
} | undefined;
|
|
26050
|
-
expiresAt?: Date | undefined;
|
|
26051
|
-
refreshToken?: string | undefined;
|
|
26052
27064
|
tokenName?: string | undefined;
|
|
27065
|
+
expiresAt?: Date | undefined;
|
|
26053
27066
|
refreshedAt?: Date | undefined;
|
|
27067
|
+
appInstallationId?: string | undefined;
|
|
27068
|
+
customUrl?: string | undefined;
|
|
26054
27069
|
}[] | undefined;
|
|
26055
27070
|
integrationDesignSystems?: {
|
|
26056
27071
|
designSystemId: string;
|
|
@@ -26066,20 +27081,18 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26066
27081
|
createdAt: Date;
|
|
26067
27082
|
integrationCredentials?: {
|
|
26068
27083
|
id: string;
|
|
26069
|
-
createdAt: Date;
|
|
26070
27084
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27085
|
+
createdAt: Date;
|
|
26071
27086
|
userId: string;
|
|
26072
|
-
accessToken: string;
|
|
26073
27087
|
integrationId: string;
|
|
26074
|
-
customUrl?: string | undefined;
|
|
26075
27088
|
username?: string | undefined;
|
|
26076
27089
|
profile?: {
|
|
26077
|
-
id
|
|
26078
|
-
type?: string | undefined;
|
|
26079
|
-
email?: string | undefined;
|
|
26080
|
-
handle?: string | undefined;
|
|
26081
|
-
avatarUrl?: string | undefined;
|
|
26082
|
-
organization?: string | undefined;
|
|
27090
|
+
id?: string | null | undefined;
|
|
27091
|
+
type?: string | null | undefined;
|
|
27092
|
+
email?: string | null | undefined;
|
|
27093
|
+
handle?: string | null | undefined;
|
|
27094
|
+
avatarUrl?: string | null | undefined;
|
|
27095
|
+
organization?: string | null | undefined;
|
|
26083
27096
|
} | undefined;
|
|
26084
27097
|
user?: {
|
|
26085
27098
|
id: string;
|
|
@@ -26087,10 +27100,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26087
27100
|
email: string;
|
|
26088
27101
|
avatar?: string | undefined;
|
|
26089
27102
|
} | undefined;
|
|
26090
|
-
expiresAt?: Date | undefined;
|
|
26091
|
-
refreshToken?: string | undefined;
|
|
26092
27103
|
tokenName?: string | undefined;
|
|
27104
|
+
expiresAt?: Date | undefined;
|
|
26093
27105
|
refreshedAt?: Date | undefined;
|
|
27106
|
+
appInstallationId?: string | undefined;
|
|
27107
|
+
customUrl?: string | undefined;
|
|
26094
27108
|
}[] | undefined;
|
|
26095
27109
|
integrationDesignSystems?: {
|
|
26096
27110
|
designSystemId: string;
|
|
@@ -26101,6 +27115,112 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26101
27115
|
}[] | undefined;
|
|
26102
27116
|
}>;
|
|
26103
27117
|
type DTOIntegration = z.infer<typeof DTOIntegration>;
|
|
27118
|
+
declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
27119
|
+
id: z.ZodString;
|
|
27120
|
+
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
27121
|
+
integrationId: z.ZodString;
|
|
27122
|
+
accessToken: z.ZodString;
|
|
27123
|
+
userId: z.ZodString;
|
|
27124
|
+
createdAt: z.ZodDate;
|
|
27125
|
+
refreshToken: z.ZodOptional<z.ZodString>;
|
|
27126
|
+
tokenName: z.ZodOptional<z.ZodString>;
|
|
27127
|
+
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
27128
|
+
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
27129
|
+
username: z.ZodOptional<z.ZodString>;
|
|
27130
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
27131
|
+
profile: z.ZodOptional<z.ZodObject<{
|
|
27132
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27133
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27134
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27135
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27136
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27137
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27138
|
+
}, "strip", z.ZodTypeAny, {
|
|
27139
|
+
id?: string | undefined;
|
|
27140
|
+
type?: string | undefined;
|
|
27141
|
+
email?: string | undefined;
|
|
27142
|
+
handle?: string | undefined;
|
|
27143
|
+
avatarUrl?: string | undefined;
|
|
27144
|
+
organization?: string | undefined;
|
|
27145
|
+
}, {
|
|
27146
|
+
id?: string | null | undefined;
|
|
27147
|
+
type?: string | null | undefined;
|
|
27148
|
+
email?: string | null | undefined;
|
|
27149
|
+
handle?: string | null | undefined;
|
|
27150
|
+
avatarUrl?: string | null | undefined;
|
|
27151
|
+
organization?: string | null | undefined;
|
|
27152
|
+
}>>;
|
|
27153
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
27154
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
27155
|
+
id: z.ZodString;
|
|
27156
|
+
name: z.ZodString;
|
|
27157
|
+
email: z.ZodString;
|
|
27158
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
27159
|
+
}, "strip", z.ZodTypeAny, {
|
|
27160
|
+
id: string;
|
|
27161
|
+
name: string;
|
|
27162
|
+
email: string;
|
|
27163
|
+
avatar?: string | undefined;
|
|
27164
|
+
}, {
|
|
27165
|
+
id: string;
|
|
27166
|
+
name: string;
|
|
27167
|
+
email: string;
|
|
27168
|
+
avatar?: string | undefined;
|
|
27169
|
+
}>>;
|
|
27170
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
27171
|
+
id: string;
|
|
27172
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27173
|
+
createdAt: Date;
|
|
27174
|
+
userId: string;
|
|
27175
|
+
integrationId: string;
|
|
27176
|
+
username?: string | undefined;
|
|
27177
|
+
profile?: {
|
|
27178
|
+
id?: string | undefined;
|
|
27179
|
+
type?: string | undefined;
|
|
27180
|
+
email?: string | undefined;
|
|
27181
|
+
handle?: string | undefined;
|
|
27182
|
+
avatarUrl?: string | undefined;
|
|
27183
|
+
organization?: string | undefined;
|
|
27184
|
+
} | undefined;
|
|
27185
|
+
user?: {
|
|
27186
|
+
id: string;
|
|
27187
|
+
name: string;
|
|
27188
|
+
email: string;
|
|
27189
|
+
avatar?: string | undefined;
|
|
27190
|
+
} | undefined;
|
|
27191
|
+
tokenName?: string | undefined;
|
|
27192
|
+
expiresAt?: Date | undefined;
|
|
27193
|
+
refreshedAt?: Date | undefined;
|
|
27194
|
+
appInstallationId?: string | undefined;
|
|
27195
|
+
customUrl?: string | undefined;
|
|
27196
|
+
}, {
|
|
27197
|
+
id: string;
|
|
27198
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27199
|
+
createdAt: Date;
|
|
27200
|
+
userId: string;
|
|
27201
|
+
integrationId: string;
|
|
27202
|
+
username?: string | undefined;
|
|
27203
|
+
profile?: {
|
|
27204
|
+
id?: string | null | undefined;
|
|
27205
|
+
type?: string | null | undefined;
|
|
27206
|
+
email?: string | null | undefined;
|
|
27207
|
+
handle?: string | null | undefined;
|
|
27208
|
+
avatarUrl?: string | null | undefined;
|
|
27209
|
+
organization?: string | null | undefined;
|
|
27210
|
+
} | undefined;
|
|
27211
|
+
user?: {
|
|
27212
|
+
id: string;
|
|
27213
|
+
name: string;
|
|
27214
|
+
email: string;
|
|
27215
|
+
avatar?: string | undefined;
|
|
27216
|
+
} | undefined;
|
|
27217
|
+
tokenName?: string | undefined;
|
|
27218
|
+
expiresAt?: Date | undefined;
|
|
27219
|
+
refreshedAt?: Date | undefined;
|
|
27220
|
+
appInstallationId?: string | undefined;
|
|
27221
|
+
customUrl?: string | undefined;
|
|
27222
|
+
}>;
|
|
27223
|
+
type DTOIntegrationCredentials = z.infer<typeof DTOIntegrationCredentials>;
|
|
26104
27224
|
declare const DTOIntegrationOAuthGetResponse: z.ZodObject<{
|
|
26105
27225
|
url: z.ZodString;
|
|
26106
27226
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26115,7 +27235,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26115
27235
|
workspaceId: z.ZodString;
|
|
26116
27236
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
26117
27237
|
createdAt: z.ZodDate;
|
|
26118
|
-
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27238
|
+
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
26119
27239
|
id: z.ZodString;
|
|
26120
27240
|
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
26121
27241
|
integrationId: z.ZodString;
|
|
@@ -26127,27 +27247,28 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26127
27247
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
26128
27248
|
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
26129
27249
|
username: z.ZodOptional<z.ZodString>;
|
|
27250
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
26130
27251
|
profile: z.ZodOptional<z.ZodObject<{
|
|
26131
|
-
id: z.
|
|
26132
|
-
email: z.ZodOptional<z.
|
|
26133
|
-
handle: z.ZodOptional<z.
|
|
26134
|
-
type: z.ZodOptional<z.
|
|
26135
|
-
avatarUrl: z.ZodOptional<z.
|
|
26136
|
-
organization: z.ZodOptional<z.
|
|
27252
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27253
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27254
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27255
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27256
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27257
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26137
27258
|
}, "strip", z.ZodTypeAny, {
|
|
26138
|
-
id
|
|
27259
|
+
id?: string | undefined;
|
|
26139
27260
|
type?: string | undefined;
|
|
26140
27261
|
email?: string | undefined;
|
|
26141
27262
|
handle?: string | undefined;
|
|
26142
27263
|
avatarUrl?: string | undefined;
|
|
26143
27264
|
organization?: string | undefined;
|
|
26144
27265
|
}, {
|
|
26145
|
-
id
|
|
26146
|
-
type?: string | undefined;
|
|
26147
|
-
email?: string | undefined;
|
|
26148
|
-
handle?: string | undefined;
|
|
26149
|
-
avatarUrl?: string | undefined;
|
|
26150
|
-
organization?: string | undefined;
|
|
27266
|
+
id?: string | null | undefined;
|
|
27267
|
+
type?: string | null | undefined;
|
|
27268
|
+
email?: string | null | undefined;
|
|
27269
|
+
handle?: string | null | undefined;
|
|
27270
|
+
avatarUrl?: string | null | undefined;
|
|
27271
|
+
organization?: string | null | undefined;
|
|
26151
27272
|
}>>;
|
|
26152
27273
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
26153
27274
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -26166,17 +27287,15 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26166
27287
|
email: string;
|
|
26167
27288
|
avatar?: string | undefined;
|
|
26168
27289
|
}>>;
|
|
26169
|
-
}, "strip", z.ZodTypeAny, {
|
|
27290
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
26170
27291
|
id: string;
|
|
26171
|
-
createdAt: Date;
|
|
26172
27292
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27293
|
+
createdAt: Date;
|
|
26173
27294
|
userId: string;
|
|
26174
|
-
accessToken: string;
|
|
26175
27295
|
integrationId: string;
|
|
26176
|
-
customUrl?: string | undefined;
|
|
26177
27296
|
username?: string | undefined;
|
|
26178
27297
|
profile?: {
|
|
26179
|
-
id
|
|
27298
|
+
id?: string | undefined;
|
|
26180
27299
|
type?: string | undefined;
|
|
26181
27300
|
email?: string | undefined;
|
|
26182
27301
|
handle?: string | undefined;
|
|
@@ -26189,26 +27308,25 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26189
27308
|
email: string;
|
|
26190
27309
|
avatar?: string | undefined;
|
|
26191
27310
|
} | undefined;
|
|
26192
|
-
expiresAt?: Date | undefined;
|
|
26193
|
-
refreshToken?: string | undefined;
|
|
26194
27311
|
tokenName?: string | undefined;
|
|
27312
|
+
expiresAt?: Date | undefined;
|
|
26195
27313
|
refreshedAt?: Date | undefined;
|
|
27314
|
+
appInstallationId?: string | undefined;
|
|
27315
|
+
customUrl?: string | undefined;
|
|
26196
27316
|
}, {
|
|
26197
27317
|
id: string;
|
|
26198
|
-
createdAt: Date;
|
|
26199
27318
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27319
|
+
createdAt: Date;
|
|
26200
27320
|
userId: string;
|
|
26201
|
-
accessToken: string;
|
|
26202
27321
|
integrationId: string;
|
|
26203
|
-
customUrl?: string | undefined;
|
|
26204
27322
|
username?: string | undefined;
|
|
26205
27323
|
profile?: {
|
|
26206
|
-
id
|
|
26207
|
-
type?: string | undefined;
|
|
26208
|
-
email?: string | undefined;
|
|
26209
|
-
handle?: string | undefined;
|
|
26210
|
-
avatarUrl?: string | undefined;
|
|
26211
|
-
organization?: string | undefined;
|
|
27324
|
+
id?: string | null | undefined;
|
|
27325
|
+
type?: string | null | undefined;
|
|
27326
|
+
email?: string | null | undefined;
|
|
27327
|
+
handle?: string | null | undefined;
|
|
27328
|
+
avatarUrl?: string | null | undefined;
|
|
27329
|
+
organization?: string | null | undefined;
|
|
26212
27330
|
} | undefined;
|
|
26213
27331
|
user?: {
|
|
26214
27332
|
id: string;
|
|
@@ -26216,10 +27334,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26216
27334
|
email: string;
|
|
26217
27335
|
avatar?: string | undefined;
|
|
26218
27336
|
} | undefined;
|
|
26219
|
-
expiresAt?: Date | undefined;
|
|
26220
|
-
refreshToken?: string | undefined;
|
|
26221
27337
|
tokenName?: string | undefined;
|
|
27338
|
+
expiresAt?: Date | undefined;
|
|
26222
27339
|
refreshedAt?: Date | undefined;
|
|
27340
|
+
appInstallationId?: string | undefined;
|
|
27341
|
+
customUrl?: string | undefined;
|
|
26223
27342
|
}>, "many">>;
|
|
26224
27343
|
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26225
27344
|
designSystemId: z.ZodString;
|
|
@@ -26247,15 +27366,13 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26247
27366
|
createdAt: Date;
|
|
26248
27367
|
integrationCredentials?: {
|
|
26249
27368
|
id: string;
|
|
26250
|
-
createdAt: Date;
|
|
26251
27369
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27370
|
+
createdAt: Date;
|
|
26252
27371
|
userId: string;
|
|
26253
|
-
accessToken: string;
|
|
26254
27372
|
integrationId: string;
|
|
26255
|
-
customUrl?: string | undefined;
|
|
26256
27373
|
username?: string | undefined;
|
|
26257
27374
|
profile?: {
|
|
26258
|
-
id
|
|
27375
|
+
id?: string | undefined;
|
|
26259
27376
|
type?: string | undefined;
|
|
26260
27377
|
email?: string | undefined;
|
|
26261
27378
|
handle?: string | undefined;
|
|
@@ -26268,10 +27385,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26268
27385
|
email: string;
|
|
26269
27386
|
avatar?: string | undefined;
|
|
26270
27387
|
} | undefined;
|
|
26271
|
-
expiresAt?: Date | undefined;
|
|
26272
|
-
refreshToken?: string | undefined;
|
|
26273
27388
|
tokenName?: string | undefined;
|
|
27389
|
+
expiresAt?: Date | undefined;
|
|
26274
27390
|
refreshedAt?: Date | undefined;
|
|
27391
|
+
appInstallationId?: string | undefined;
|
|
27392
|
+
customUrl?: string | undefined;
|
|
26275
27393
|
}[] | undefined;
|
|
26276
27394
|
integrationDesignSystems?: {
|
|
26277
27395
|
designSystemId: string;
|
|
@@ -26287,20 +27405,18 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26287
27405
|
createdAt: Date;
|
|
26288
27406
|
integrationCredentials?: {
|
|
26289
27407
|
id: string;
|
|
26290
|
-
createdAt: Date;
|
|
26291
27408
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27409
|
+
createdAt: Date;
|
|
26292
27410
|
userId: string;
|
|
26293
|
-
accessToken: string;
|
|
26294
27411
|
integrationId: string;
|
|
26295
|
-
customUrl?: string | undefined;
|
|
26296
27412
|
username?: string | undefined;
|
|
26297
27413
|
profile?: {
|
|
26298
|
-
id
|
|
26299
|
-
type?: string | undefined;
|
|
26300
|
-
email?: string | undefined;
|
|
26301
|
-
handle?: string | undefined;
|
|
26302
|
-
avatarUrl?: string | undefined;
|
|
26303
|
-
organization?: string | undefined;
|
|
27414
|
+
id?: string | null | undefined;
|
|
27415
|
+
type?: string | null | undefined;
|
|
27416
|
+
email?: string | null | undefined;
|
|
27417
|
+
handle?: string | null | undefined;
|
|
27418
|
+
avatarUrl?: string | null | undefined;
|
|
27419
|
+
organization?: string | null | undefined;
|
|
26304
27420
|
} | undefined;
|
|
26305
27421
|
user?: {
|
|
26306
27422
|
id: string;
|
|
@@ -26308,10 +27424,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26308
27424
|
email: string;
|
|
26309
27425
|
avatar?: string | undefined;
|
|
26310
27426
|
} | undefined;
|
|
26311
|
-
expiresAt?: Date | undefined;
|
|
26312
|
-
refreshToken?: string | undefined;
|
|
26313
27427
|
tokenName?: string | undefined;
|
|
27428
|
+
expiresAt?: Date | undefined;
|
|
26314
27429
|
refreshedAt?: Date | undefined;
|
|
27430
|
+
appInstallationId?: string | undefined;
|
|
27431
|
+
customUrl?: string | undefined;
|
|
26315
27432
|
}[] | undefined;
|
|
26316
27433
|
integrationDesignSystems?: {
|
|
26317
27434
|
designSystemId: string;
|
|
@@ -26329,15 +27446,13 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26329
27446
|
createdAt: Date;
|
|
26330
27447
|
integrationCredentials?: {
|
|
26331
27448
|
id: string;
|
|
26332
|
-
createdAt: Date;
|
|
26333
27449
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27450
|
+
createdAt: Date;
|
|
26334
27451
|
userId: string;
|
|
26335
|
-
accessToken: string;
|
|
26336
27452
|
integrationId: string;
|
|
26337
|
-
customUrl?: string | undefined;
|
|
26338
27453
|
username?: string | undefined;
|
|
26339
27454
|
profile?: {
|
|
26340
|
-
id
|
|
27455
|
+
id?: string | undefined;
|
|
26341
27456
|
type?: string | undefined;
|
|
26342
27457
|
email?: string | undefined;
|
|
26343
27458
|
handle?: string | undefined;
|
|
@@ -26350,10 +27465,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26350
27465
|
email: string;
|
|
26351
27466
|
avatar?: string | undefined;
|
|
26352
27467
|
} | undefined;
|
|
26353
|
-
expiresAt?: Date | undefined;
|
|
26354
|
-
refreshToken?: string | undefined;
|
|
26355
27468
|
tokenName?: string | undefined;
|
|
27469
|
+
expiresAt?: Date | undefined;
|
|
26356
27470
|
refreshedAt?: Date | undefined;
|
|
27471
|
+
appInstallationId?: string | undefined;
|
|
27472
|
+
customUrl?: string | undefined;
|
|
26357
27473
|
}[] | undefined;
|
|
26358
27474
|
integrationDesignSystems?: {
|
|
26359
27475
|
designSystemId: string;
|
|
@@ -26371,20 +27487,18 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26371
27487
|
createdAt: Date;
|
|
26372
27488
|
integrationCredentials?: {
|
|
26373
27489
|
id: string;
|
|
26374
|
-
createdAt: Date;
|
|
26375
27490
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27491
|
+
createdAt: Date;
|
|
26376
27492
|
userId: string;
|
|
26377
|
-
accessToken: string;
|
|
26378
27493
|
integrationId: string;
|
|
26379
|
-
customUrl?: string | undefined;
|
|
26380
27494
|
username?: string | undefined;
|
|
26381
27495
|
profile?: {
|
|
26382
|
-
id
|
|
26383
|
-
type?: string | undefined;
|
|
26384
|
-
email?: string | undefined;
|
|
26385
|
-
handle?: string | undefined;
|
|
26386
|
-
avatarUrl?: string | undefined;
|
|
26387
|
-
organization?: string | undefined;
|
|
27496
|
+
id?: string | null | undefined;
|
|
27497
|
+
type?: string | null | undefined;
|
|
27498
|
+
email?: string | null | undefined;
|
|
27499
|
+
handle?: string | null | undefined;
|
|
27500
|
+
avatarUrl?: string | null | undefined;
|
|
27501
|
+
organization?: string | null | undefined;
|
|
26388
27502
|
} | undefined;
|
|
26389
27503
|
user?: {
|
|
26390
27504
|
id: string;
|
|
@@ -26392,10 +27506,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26392
27506
|
email: string;
|
|
26393
27507
|
avatar?: string | undefined;
|
|
26394
27508
|
} | undefined;
|
|
26395
|
-
expiresAt?: Date | undefined;
|
|
26396
|
-
refreshToken?: string | undefined;
|
|
26397
27509
|
tokenName?: string | undefined;
|
|
27510
|
+
expiresAt?: Date | undefined;
|
|
26398
27511
|
refreshedAt?: Date | undefined;
|
|
27512
|
+
appInstallationId?: string | undefined;
|
|
27513
|
+
customUrl?: string | undefined;
|
|
26399
27514
|
}[] | undefined;
|
|
26400
27515
|
integrationDesignSystems?: {
|
|
26401
27516
|
designSystemId: string;
|
|
@@ -26413,7 +27528,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26413
27528
|
workspaceId: z.ZodString;
|
|
26414
27529
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
26415
27530
|
createdAt: z.ZodDate;
|
|
26416
|
-
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27531
|
+
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
26417
27532
|
id: z.ZodString;
|
|
26418
27533
|
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
26419
27534
|
integrationId: z.ZodString;
|
|
@@ -26425,27 +27540,28 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26425
27540
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
26426
27541
|
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
26427
27542
|
username: z.ZodOptional<z.ZodString>;
|
|
27543
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
26428
27544
|
profile: z.ZodOptional<z.ZodObject<{
|
|
26429
|
-
id: z.
|
|
26430
|
-
email: z.ZodOptional<z.
|
|
26431
|
-
handle: z.ZodOptional<z.
|
|
26432
|
-
type: z.ZodOptional<z.
|
|
26433
|
-
avatarUrl: z.ZodOptional<z.
|
|
26434
|
-
organization: z.ZodOptional<z.
|
|
27545
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27546
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27547
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27548
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27549
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27550
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26435
27551
|
}, "strip", z.ZodTypeAny, {
|
|
26436
|
-
id
|
|
27552
|
+
id?: string | undefined;
|
|
26437
27553
|
type?: string | undefined;
|
|
26438
27554
|
email?: string | undefined;
|
|
26439
27555
|
handle?: string | undefined;
|
|
26440
27556
|
avatarUrl?: string | undefined;
|
|
26441
27557
|
organization?: string | undefined;
|
|
26442
27558
|
}, {
|
|
26443
|
-
id
|
|
26444
|
-
type?: string | undefined;
|
|
26445
|
-
email?: string | undefined;
|
|
26446
|
-
handle?: string | undefined;
|
|
26447
|
-
avatarUrl?: string | undefined;
|
|
26448
|
-
organization?: string | undefined;
|
|
27559
|
+
id?: string | null | undefined;
|
|
27560
|
+
type?: string | null | undefined;
|
|
27561
|
+
email?: string | null | undefined;
|
|
27562
|
+
handle?: string | null | undefined;
|
|
27563
|
+
avatarUrl?: string | null | undefined;
|
|
27564
|
+
organization?: string | null | undefined;
|
|
26449
27565
|
}>>;
|
|
26450
27566
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
26451
27567
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -26464,17 +27580,15 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26464
27580
|
email: string;
|
|
26465
27581
|
avatar?: string | undefined;
|
|
26466
27582
|
}>>;
|
|
26467
|
-
}, "strip", z.ZodTypeAny, {
|
|
27583
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
26468
27584
|
id: string;
|
|
26469
|
-
createdAt: Date;
|
|
26470
27585
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27586
|
+
createdAt: Date;
|
|
26471
27587
|
userId: string;
|
|
26472
|
-
accessToken: string;
|
|
26473
27588
|
integrationId: string;
|
|
26474
|
-
customUrl?: string | undefined;
|
|
26475
27589
|
username?: string | undefined;
|
|
26476
27590
|
profile?: {
|
|
26477
|
-
id
|
|
27591
|
+
id?: string | undefined;
|
|
26478
27592
|
type?: string | undefined;
|
|
26479
27593
|
email?: string | undefined;
|
|
26480
27594
|
handle?: string | undefined;
|
|
@@ -26487,26 +27601,25 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26487
27601
|
email: string;
|
|
26488
27602
|
avatar?: string | undefined;
|
|
26489
27603
|
} | undefined;
|
|
26490
|
-
expiresAt?: Date | undefined;
|
|
26491
|
-
refreshToken?: string | undefined;
|
|
26492
27604
|
tokenName?: string | undefined;
|
|
27605
|
+
expiresAt?: Date | undefined;
|
|
26493
27606
|
refreshedAt?: Date | undefined;
|
|
27607
|
+
appInstallationId?: string | undefined;
|
|
27608
|
+
customUrl?: string | undefined;
|
|
26494
27609
|
}, {
|
|
26495
27610
|
id: string;
|
|
26496
|
-
createdAt: Date;
|
|
26497
27611
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27612
|
+
createdAt: Date;
|
|
26498
27613
|
userId: string;
|
|
26499
|
-
accessToken: string;
|
|
26500
27614
|
integrationId: string;
|
|
26501
|
-
customUrl?: string | undefined;
|
|
26502
27615
|
username?: string | undefined;
|
|
26503
27616
|
profile?: {
|
|
26504
|
-
id
|
|
26505
|
-
type?: string | undefined;
|
|
26506
|
-
email?: string | undefined;
|
|
26507
|
-
handle?: string | undefined;
|
|
26508
|
-
avatarUrl?: string | undefined;
|
|
26509
|
-
organization?: string | undefined;
|
|
27617
|
+
id?: string | null | undefined;
|
|
27618
|
+
type?: string | null | undefined;
|
|
27619
|
+
email?: string | null | undefined;
|
|
27620
|
+
handle?: string | null | undefined;
|
|
27621
|
+
avatarUrl?: string | null | undefined;
|
|
27622
|
+
organization?: string | null | undefined;
|
|
26510
27623
|
} | undefined;
|
|
26511
27624
|
user?: {
|
|
26512
27625
|
id: string;
|
|
@@ -26514,10 +27627,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26514
27627
|
email: string;
|
|
26515
27628
|
avatar?: string | undefined;
|
|
26516
27629
|
} | undefined;
|
|
26517
|
-
expiresAt?: Date | undefined;
|
|
26518
|
-
refreshToken?: string | undefined;
|
|
26519
27630
|
tokenName?: string | undefined;
|
|
27631
|
+
expiresAt?: Date | undefined;
|
|
26520
27632
|
refreshedAt?: Date | undefined;
|
|
27633
|
+
appInstallationId?: string | undefined;
|
|
27634
|
+
customUrl?: string | undefined;
|
|
26521
27635
|
}>, "many">>;
|
|
26522
27636
|
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26523
27637
|
designSystemId: z.ZodString;
|
|
@@ -26545,15 +27659,13 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26545
27659
|
createdAt: Date;
|
|
26546
27660
|
integrationCredentials?: {
|
|
26547
27661
|
id: string;
|
|
26548
|
-
createdAt: Date;
|
|
26549
27662
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27663
|
+
createdAt: Date;
|
|
26550
27664
|
userId: string;
|
|
26551
|
-
accessToken: string;
|
|
26552
27665
|
integrationId: string;
|
|
26553
|
-
customUrl?: string | undefined;
|
|
26554
27666
|
username?: string | undefined;
|
|
26555
27667
|
profile?: {
|
|
26556
|
-
id
|
|
27668
|
+
id?: string | undefined;
|
|
26557
27669
|
type?: string | undefined;
|
|
26558
27670
|
email?: string | undefined;
|
|
26559
27671
|
handle?: string | undefined;
|
|
@@ -26566,10 +27678,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26566
27678
|
email: string;
|
|
26567
27679
|
avatar?: string | undefined;
|
|
26568
27680
|
} | undefined;
|
|
26569
|
-
expiresAt?: Date | undefined;
|
|
26570
|
-
refreshToken?: string | undefined;
|
|
26571
27681
|
tokenName?: string | undefined;
|
|
27682
|
+
expiresAt?: Date | undefined;
|
|
26572
27683
|
refreshedAt?: Date | undefined;
|
|
27684
|
+
appInstallationId?: string | undefined;
|
|
27685
|
+
customUrl?: string | undefined;
|
|
26573
27686
|
}[] | undefined;
|
|
26574
27687
|
integrationDesignSystems?: {
|
|
26575
27688
|
designSystemId: string;
|
|
@@ -26585,20 +27698,18 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26585
27698
|
createdAt: Date;
|
|
26586
27699
|
integrationCredentials?: {
|
|
26587
27700
|
id: string;
|
|
26588
|
-
createdAt: Date;
|
|
26589
27701
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27702
|
+
createdAt: Date;
|
|
26590
27703
|
userId: string;
|
|
26591
|
-
accessToken: string;
|
|
26592
27704
|
integrationId: string;
|
|
26593
|
-
customUrl?: string | undefined;
|
|
26594
27705
|
username?: string | undefined;
|
|
26595
27706
|
profile?: {
|
|
26596
|
-
id
|
|
26597
|
-
type?: string | undefined;
|
|
26598
|
-
email?: string | undefined;
|
|
26599
|
-
handle?: string | undefined;
|
|
26600
|
-
avatarUrl?: string | undefined;
|
|
26601
|
-
organization?: string | undefined;
|
|
27707
|
+
id?: string | null | undefined;
|
|
27708
|
+
type?: string | null | undefined;
|
|
27709
|
+
email?: string | null | undefined;
|
|
27710
|
+
handle?: string | null | undefined;
|
|
27711
|
+
avatarUrl?: string | null | undefined;
|
|
27712
|
+
organization?: string | null | undefined;
|
|
26602
27713
|
} | undefined;
|
|
26603
27714
|
user?: {
|
|
26604
27715
|
id: string;
|
|
@@ -26606,10 +27717,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26606
27717
|
email: string;
|
|
26607
27718
|
avatar?: string | undefined;
|
|
26608
27719
|
} | undefined;
|
|
26609
|
-
expiresAt?: Date | undefined;
|
|
26610
|
-
refreshToken?: string | undefined;
|
|
26611
27720
|
tokenName?: string | undefined;
|
|
27721
|
+
expiresAt?: Date | undefined;
|
|
26612
27722
|
refreshedAt?: Date | undefined;
|
|
27723
|
+
appInstallationId?: string | undefined;
|
|
27724
|
+
customUrl?: string | undefined;
|
|
26613
27725
|
}[] | undefined;
|
|
26614
27726
|
integrationDesignSystems?: {
|
|
26615
27727
|
designSystemId: string;
|
|
@@ -26627,15 +27739,13 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26627
27739
|
createdAt: Date;
|
|
26628
27740
|
integrationCredentials?: {
|
|
26629
27741
|
id: string;
|
|
26630
|
-
createdAt: Date;
|
|
26631
27742
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27743
|
+
createdAt: Date;
|
|
26632
27744
|
userId: string;
|
|
26633
|
-
accessToken: string;
|
|
26634
27745
|
integrationId: string;
|
|
26635
|
-
customUrl?: string | undefined;
|
|
26636
27746
|
username?: string | undefined;
|
|
26637
27747
|
profile?: {
|
|
26638
|
-
id
|
|
27748
|
+
id?: string | undefined;
|
|
26639
27749
|
type?: string | undefined;
|
|
26640
27750
|
email?: string | undefined;
|
|
26641
27751
|
handle?: string | undefined;
|
|
@@ -26648,10 +27758,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26648
27758
|
email: string;
|
|
26649
27759
|
avatar?: string | undefined;
|
|
26650
27760
|
} | undefined;
|
|
26651
|
-
expiresAt?: Date | undefined;
|
|
26652
|
-
refreshToken?: string | undefined;
|
|
26653
27761
|
tokenName?: string | undefined;
|
|
27762
|
+
expiresAt?: Date | undefined;
|
|
26654
27763
|
refreshedAt?: Date | undefined;
|
|
27764
|
+
appInstallationId?: string | undefined;
|
|
27765
|
+
customUrl?: string | undefined;
|
|
26655
27766
|
}[] | undefined;
|
|
26656
27767
|
integrationDesignSystems?: {
|
|
26657
27768
|
designSystemId: string;
|
|
@@ -26669,20 +27780,18 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26669
27780
|
createdAt: Date;
|
|
26670
27781
|
integrationCredentials?: {
|
|
26671
27782
|
id: string;
|
|
26672
|
-
createdAt: Date;
|
|
26673
27783
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27784
|
+
createdAt: Date;
|
|
26674
27785
|
userId: string;
|
|
26675
|
-
accessToken: string;
|
|
26676
27786
|
integrationId: string;
|
|
26677
|
-
customUrl?: string | undefined;
|
|
26678
27787
|
username?: string | undefined;
|
|
26679
27788
|
profile?: {
|
|
26680
|
-
id
|
|
26681
|
-
type?: string | undefined;
|
|
26682
|
-
email?: string | undefined;
|
|
26683
|
-
handle?: string | undefined;
|
|
26684
|
-
avatarUrl?: string | undefined;
|
|
26685
|
-
organization?: string | undefined;
|
|
27789
|
+
id?: string | null | undefined;
|
|
27790
|
+
type?: string | null | undefined;
|
|
27791
|
+
email?: string | null | undefined;
|
|
27792
|
+
handle?: string | null | undefined;
|
|
27793
|
+
avatarUrl?: string | null | undefined;
|
|
27794
|
+
organization?: string | null | undefined;
|
|
26686
27795
|
} | undefined;
|
|
26687
27796
|
user?: {
|
|
26688
27797
|
id: string;
|
|
@@ -26690,10 +27799,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26690
27799
|
email: string;
|
|
26691
27800
|
avatar?: string | undefined;
|
|
26692
27801
|
} | undefined;
|
|
26693
|
-
expiresAt?: Date | undefined;
|
|
26694
|
-
refreshToken?: string | undefined;
|
|
26695
27802
|
tokenName?: string | undefined;
|
|
27803
|
+
expiresAt?: Date | undefined;
|
|
26696
27804
|
refreshedAt?: Date | undefined;
|
|
27805
|
+
appInstallationId?: string | undefined;
|
|
27806
|
+
customUrl?: string | undefined;
|
|
26697
27807
|
}[] | undefined;
|
|
26698
27808
|
integrationDesignSystems?: {
|
|
26699
27809
|
designSystemId: string;
|
|
@@ -31453,6 +32563,7 @@ declare function gitRepositoryToDto(repo: GitRepository): DTOGitRepository;
|
|
|
31453
32563
|
declare function gitBranchToDto(branch: GitBranch): DTOGitBranch;
|
|
31454
32564
|
|
|
31455
32565
|
declare function integrationToDto(integration: ExtendedIntegration): DTOIntegration;
|
|
32566
|
+
declare function integrationCredentialToDto(credential: IntegrationCredentials): DTOIntegrationCredentials;
|
|
31456
32567
|
|
|
31457
32568
|
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
31458
32569
|
persistentId: z.ZodString;
|
|
@@ -32169,22 +33280,28 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32169
33280
|
branch: z.ZodString;
|
|
32170
33281
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32171
33282
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33283
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33284
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32172
33285
|
}, "strip", z.ZodTypeAny, {
|
|
32173
33286
|
branch: string;
|
|
32174
33287
|
organizationId: string;
|
|
32175
33288
|
projectId: string;
|
|
32176
33289
|
repositoryId: string;
|
|
32177
33290
|
url?: string | undefined;
|
|
33291
|
+
userId?: number | undefined;
|
|
32178
33292
|
credentialId?: string | undefined;
|
|
32179
33293
|
relativePath?: string | undefined;
|
|
33294
|
+
connectionId?: string | undefined;
|
|
32180
33295
|
}, {
|
|
32181
33296
|
branch: string;
|
|
32182
33297
|
organizationId: string;
|
|
32183
33298
|
projectId: string;
|
|
32184
33299
|
repositoryId: string;
|
|
32185
33300
|
url?: string | null | undefined;
|
|
33301
|
+
userId?: number | undefined;
|
|
32186
33302
|
credentialId?: string | undefined;
|
|
32187
33303
|
relativePath?: string | null | undefined;
|
|
33304
|
+
connectionId?: string | undefined;
|
|
32188
33305
|
}>>>;
|
|
32189
33306
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32190
33307
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32193,36 +33310,48 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32193
33310
|
repoSlug: z.ZodString;
|
|
32194
33311
|
branch: z.ZodString;
|
|
32195
33312
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33313
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33314
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32196
33315
|
}, "strip", z.ZodTypeAny, {
|
|
32197
33316
|
branch: string;
|
|
32198
33317
|
workspaceSlug: string;
|
|
32199
33318
|
projectKey: string;
|
|
32200
33319
|
repoSlug: string;
|
|
33320
|
+
userId?: number | undefined;
|
|
32201
33321
|
credentialId?: string | undefined;
|
|
32202
33322
|
relativePath?: string | undefined;
|
|
33323
|
+
connectionId?: string | undefined;
|
|
32203
33324
|
}, {
|
|
32204
33325
|
branch: string;
|
|
32205
33326
|
workspaceSlug: string;
|
|
32206
33327
|
projectKey: string;
|
|
32207
33328
|
repoSlug: string;
|
|
33329
|
+
userId?: number | undefined;
|
|
32208
33330
|
credentialId?: string | undefined;
|
|
32209
33331
|
relativePath?: string | null | undefined;
|
|
33332
|
+
connectionId?: string | undefined;
|
|
32210
33333
|
}>>>;
|
|
32211
33334
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32212
33335
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
32213
33336
|
url: z.ZodString;
|
|
32214
33337
|
branch: z.ZodString;
|
|
32215
33338
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33339
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33340
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32216
33341
|
}, "strip", z.ZodTypeAny, {
|
|
32217
33342
|
url: string;
|
|
32218
33343
|
branch: string;
|
|
33344
|
+
userId?: number | undefined;
|
|
32219
33345
|
credentialId?: string | undefined;
|
|
32220
33346
|
relativePath?: string | undefined;
|
|
33347
|
+
connectionId?: string | undefined;
|
|
32221
33348
|
}, {
|
|
32222
33349
|
url: string;
|
|
32223
33350
|
branch: string;
|
|
33351
|
+
userId?: number | undefined;
|
|
32224
33352
|
credentialId?: string | undefined;
|
|
32225
33353
|
relativePath?: string | null | undefined;
|
|
33354
|
+
connectionId?: string | undefined;
|
|
32226
33355
|
}>>>;
|
|
32227
33356
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32228
33357
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32230,18 +33359,24 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32230
33359
|
branch: z.ZodString;
|
|
32231
33360
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32232
33361
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33362
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33363
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32233
33364
|
}, "strip", z.ZodTypeAny, {
|
|
32234
33365
|
branch: string;
|
|
32235
33366
|
projectId: string;
|
|
32236
33367
|
url?: string | undefined;
|
|
33368
|
+
userId?: number | undefined;
|
|
32237
33369
|
credentialId?: string | undefined;
|
|
32238
33370
|
relativePath?: string | undefined;
|
|
33371
|
+
connectionId?: string | undefined;
|
|
32239
33372
|
}, {
|
|
32240
33373
|
branch: string;
|
|
32241
33374
|
projectId: string;
|
|
32242
33375
|
url?: string | null | undefined;
|
|
33376
|
+
userId?: number | undefined;
|
|
32243
33377
|
credentialId?: string | undefined;
|
|
32244
33378
|
relativePath?: string | null | undefined;
|
|
33379
|
+
connectionId?: string | undefined;
|
|
32245
33380
|
}>>>;
|
|
32246
33381
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32247
33382
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -32259,29 +33394,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32259
33394
|
projectId: string;
|
|
32260
33395
|
repositoryId: string;
|
|
32261
33396
|
url?: string | undefined;
|
|
33397
|
+
userId?: number | undefined;
|
|
32262
33398
|
credentialId?: string | undefined;
|
|
32263
33399
|
relativePath?: string | undefined;
|
|
33400
|
+
connectionId?: string | undefined;
|
|
32264
33401
|
} | null | undefined;
|
|
32265
33402
|
bitbucket?: {
|
|
32266
33403
|
branch: string;
|
|
32267
33404
|
workspaceSlug: string;
|
|
32268
33405
|
projectKey: string;
|
|
32269
33406
|
repoSlug: string;
|
|
33407
|
+
userId?: number | undefined;
|
|
32270
33408
|
credentialId?: string | undefined;
|
|
32271
33409
|
relativePath?: string | undefined;
|
|
33410
|
+
connectionId?: string | undefined;
|
|
32272
33411
|
} | null | undefined;
|
|
32273
33412
|
github?: {
|
|
32274
33413
|
url: string;
|
|
32275
33414
|
branch: string;
|
|
33415
|
+
userId?: number | undefined;
|
|
32276
33416
|
credentialId?: string | undefined;
|
|
32277
33417
|
relativePath?: string | undefined;
|
|
33418
|
+
connectionId?: string | undefined;
|
|
32278
33419
|
} | null | undefined;
|
|
32279
33420
|
gitlab?: {
|
|
32280
33421
|
branch: string;
|
|
32281
33422
|
projectId: string;
|
|
32282
33423
|
url?: string | undefined;
|
|
33424
|
+
userId?: number | undefined;
|
|
32283
33425
|
credentialId?: string | undefined;
|
|
32284
33426
|
relativePath?: string | undefined;
|
|
33427
|
+
connectionId?: string | undefined;
|
|
32285
33428
|
} | null | undefined;
|
|
32286
33429
|
documentation?: {
|
|
32287
33430
|
environment: "Live" | "Preview";
|
|
@@ -32295,29 +33438,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32295
33438
|
projectId: string;
|
|
32296
33439
|
repositoryId: string;
|
|
32297
33440
|
url?: string | null | undefined;
|
|
33441
|
+
userId?: number | undefined;
|
|
32298
33442
|
credentialId?: string | undefined;
|
|
32299
33443
|
relativePath?: string | null | undefined;
|
|
33444
|
+
connectionId?: string | undefined;
|
|
32300
33445
|
} | null | undefined;
|
|
32301
33446
|
bitbucket?: {
|
|
32302
33447
|
branch: string;
|
|
32303
33448
|
workspaceSlug: string;
|
|
32304
33449
|
projectKey: string;
|
|
32305
33450
|
repoSlug: string;
|
|
33451
|
+
userId?: number | undefined;
|
|
32306
33452
|
credentialId?: string | undefined;
|
|
32307
33453
|
relativePath?: string | null | undefined;
|
|
33454
|
+
connectionId?: string | undefined;
|
|
32308
33455
|
} | null | undefined;
|
|
32309
33456
|
github?: {
|
|
32310
33457
|
url: string;
|
|
32311
33458
|
branch: string;
|
|
33459
|
+
userId?: number | undefined;
|
|
32312
33460
|
credentialId?: string | undefined;
|
|
32313
33461
|
relativePath?: string | null | undefined;
|
|
33462
|
+
connectionId?: string | undefined;
|
|
32314
33463
|
} | null | undefined;
|
|
32315
33464
|
gitlab?: {
|
|
32316
33465
|
branch: string;
|
|
32317
33466
|
projectId: string;
|
|
32318
33467
|
url?: string | null | undefined;
|
|
33468
|
+
userId?: number | undefined;
|
|
32319
33469
|
credentialId?: string | undefined;
|
|
32320
33470
|
relativePath?: string | null | undefined;
|
|
33471
|
+
connectionId?: string | undefined;
|
|
32321
33472
|
} | null | undefined;
|
|
32322
33473
|
documentation?: {
|
|
32323
33474
|
environment: "Live" | "Preview";
|
|
@@ -32346,29 +33497,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32346
33497
|
projectId: string;
|
|
32347
33498
|
repositoryId: string;
|
|
32348
33499
|
url?: string | undefined;
|
|
33500
|
+
userId?: number | undefined;
|
|
32349
33501
|
credentialId?: string | undefined;
|
|
32350
33502
|
relativePath?: string | undefined;
|
|
33503
|
+
connectionId?: string | undefined;
|
|
32351
33504
|
} | null | undefined;
|
|
32352
33505
|
bitbucket?: {
|
|
32353
33506
|
branch: string;
|
|
32354
33507
|
workspaceSlug: string;
|
|
32355
33508
|
projectKey: string;
|
|
32356
33509
|
repoSlug: string;
|
|
33510
|
+
userId?: number | undefined;
|
|
32357
33511
|
credentialId?: string | undefined;
|
|
32358
33512
|
relativePath?: string | undefined;
|
|
33513
|
+
connectionId?: string | undefined;
|
|
32359
33514
|
} | null | undefined;
|
|
32360
33515
|
github?: {
|
|
32361
33516
|
url: string;
|
|
32362
33517
|
branch: string;
|
|
33518
|
+
userId?: number | undefined;
|
|
32363
33519
|
credentialId?: string | undefined;
|
|
32364
33520
|
relativePath?: string | undefined;
|
|
33521
|
+
connectionId?: string | undefined;
|
|
32365
33522
|
} | null | undefined;
|
|
32366
33523
|
gitlab?: {
|
|
32367
33524
|
branch: string;
|
|
32368
33525
|
projectId: string;
|
|
32369
33526
|
url?: string | undefined;
|
|
33527
|
+
userId?: number | undefined;
|
|
32370
33528
|
credentialId?: string | undefined;
|
|
32371
33529
|
relativePath?: string | undefined;
|
|
33530
|
+
connectionId?: string | undefined;
|
|
32372
33531
|
} | null | undefined;
|
|
32373
33532
|
documentation?: {
|
|
32374
33533
|
environment: "Live" | "Preview";
|
|
@@ -32399,29 +33558,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32399
33558
|
projectId: string;
|
|
32400
33559
|
repositoryId: string;
|
|
32401
33560
|
url?: string | null | undefined;
|
|
33561
|
+
userId?: number | undefined;
|
|
32402
33562
|
credentialId?: string | undefined;
|
|
32403
33563
|
relativePath?: string | null | undefined;
|
|
33564
|
+
connectionId?: string | undefined;
|
|
32404
33565
|
} | null | undefined;
|
|
32405
33566
|
bitbucket?: {
|
|
32406
33567
|
branch: string;
|
|
32407
33568
|
workspaceSlug: string;
|
|
32408
33569
|
projectKey: string;
|
|
32409
33570
|
repoSlug: string;
|
|
33571
|
+
userId?: number | undefined;
|
|
32410
33572
|
credentialId?: string | undefined;
|
|
32411
33573
|
relativePath?: string | null | undefined;
|
|
33574
|
+
connectionId?: string | undefined;
|
|
32412
33575
|
} | null | undefined;
|
|
32413
33576
|
github?: {
|
|
32414
33577
|
url: string;
|
|
32415
33578
|
branch: string;
|
|
33579
|
+
userId?: number | undefined;
|
|
32416
33580
|
credentialId?: string | undefined;
|
|
32417
33581
|
relativePath?: string | null | undefined;
|
|
33582
|
+
connectionId?: string | undefined;
|
|
32418
33583
|
} | null | undefined;
|
|
32419
33584
|
gitlab?: {
|
|
32420
33585
|
branch: string;
|
|
32421
33586
|
projectId: string;
|
|
32422
33587
|
url?: string | null | undefined;
|
|
33588
|
+
userId?: number | undefined;
|
|
32423
33589
|
credentialId?: string | undefined;
|
|
32424
33590
|
relativePath?: string | null | undefined;
|
|
33591
|
+
connectionId?: string | undefined;
|
|
32425
33592
|
} | null | undefined;
|
|
32426
33593
|
documentation?: {
|
|
32427
33594
|
environment: "Live" | "Preview";
|
|
@@ -32470,22 +33637,28 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32470
33637
|
branch: z.ZodString;
|
|
32471
33638
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32472
33639
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33640
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33641
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32473
33642
|
}, "strip", z.ZodTypeAny, {
|
|
32474
33643
|
branch: string;
|
|
32475
33644
|
organizationId: string;
|
|
32476
33645
|
projectId: string;
|
|
32477
33646
|
repositoryId: string;
|
|
32478
33647
|
url?: string | undefined;
|
|
33648
|
+
userId?: number | undefined;
|
|
32479
33649
|
credentialId?: string | undefined;
|
|
32480
33650
|
relativePath?: string | undefined;
|
|
33651
|
+
connectionId?: string | undefined;
|
|
32481
33652
|
}, {
|
|
32482
33653
|
branch: string;
|
|
32483
33654
|
organizationId: string;
|
|
32484
33655
|
projectId: string;
|
|
32485
33656
|
repositoryId: string;
|
|
32486
33657
|
url?: string | null | undefined;
|
|
33658
|
+
userId?: number | undefined;
|
|
32487
33659
|
credentialId?: string | undefined;
|
|
32488
33660
|
relativePath?: string | null | undefined;
|
|
33661
|
+
connectionId?: string | undefined;
|
|
32489
33662
|
}>>>;
|
|
32490
33663
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32491
33664
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32494,36 +33667,48 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32494
33667
|
repoSlug: z.ZodString;
|
|
32495
33668
|
branch: z.ZodString;
|
|
32496
33669
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33670
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33671
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32497
33672
|
}, "strip", z.ZodTypeAny, {
|
|
32498
33673
|
branch: string;
|
|
32499
33674
|
workspaceSlug: string;
|
|
32500
33675
|
projectKey: string;
|
|
32501
33676
|
repoSlug: string;
|
|
33677
|
+
userId?: number | undefined;
|
|
32502
33678
|
credentialId?: string | undefined;
|
|
32503
33679
|
relativePath?: string | undefined;
|
|
33680
|
+
connectionId?: string | undefined;
|
|
32504
33681
|
}, {
|
|
32505
33682
|
branch: string;
|
|
32506
33683
|
workspaceSlug: string;
|
|
32507
33684
|
projectKey: string;
|
|
32508
33685
|
repoSlug: string;
|
|
33686
|
+
userId?: number | undefined;
|
|
32509
33687
|
credentialId?: string | undefined;
|
|
32510
33688
|
relativePath?: string | null | undefined;
|
|
33689
|
+
connectionId?: string | undefined;
|
|
32511
33690
|
}>>>;
|
|
32512
33691
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32513
33692
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
32514
33693
|
url: z.ZodString;
|
|
32515
33694
|
branch: z.ZodString;
|
|
32516
33695
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33696
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33697
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32517
33698
|
}, "strip", z.ZodTypeAny, {
|
|
32518
33699
|
url: string;
|
|
32519
33700
|
branch: string;
|
|
33701
|
+
userId?: number | undefined;
|
|
32520
33702
|
credentialId?: string | undefined;
|
|
32521
33703
|
relativePath?: string | undefined;
|
|
33704
|
+
connectionId?: string | undefined;
|
|
32522
33705
|
}, {
|
|
32523
33706
|
url: string;
|
|
32524
33707
|
branch: string;
|
|
33708
|
+
userId?: number | undefined;
|
|
32525
33709
|
credentialId?: string | undefined;
|
|
32526
33710
|
relativePath?: string | null | undefined;
|
|
33711
|
+
connectionId?: string | undefined;
|
|
32527
33712
|
}>>>;
|
|
32528
33713
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32529
33714
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32531,18 +33716,24 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32531
33716
|
branch: z.ZodString;
|
|
32532
33717
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32533
33718
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33719
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33720
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32534
33721
|
}, "strip", z.ZodTypeAny, {
|
|
32535
33722
|
branch: string;
|
|
32536
33723
|
projectId: string;
|
|
32537
33724
|
url?: string | undefined;
|
|
33725
|
+
userId?: number | undefined;
|
|
32538
33726
|
credentialId?: string | undefined;
|
|
32539
33727
|
relativePath?: string | undefined;
|
|
33728
|
+
connectionId?: string | undefined;
|
|
32540
33729
|
}, {
|
|
32541
33730
|
branch: string;
|
|
32542
33731
|
projectId: string;
|
|
32543
33732
|
url?: string | null | undefined;
|
|
33733
|
+
userId?: number | undefined;
|
|
32544
33734
|
credentialId?: string | undefined;
|
|
32545
33735
|
relativePath?: string | null | undefined;
|
|
33736
|
+
connectionId?: string | undefined;
|
|
32546
33737
|
}>>>;
|
|
32547
33738
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32548
33739
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -32560,29 +33751,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32560
33751
|
projectId: string;
|
|
32561
33752
|
repositoryId: string;
|
|
32562
33753
|
url?: string | undefined;
|
|
33754
|
+
userId?: number | undefined;
|
|
32563
33755
|
credentialId?: string | undefined;
|
|
32564
33756
|
relativePath?: string | undefined;
|
|
33757
|
+
connectionId?: string | undefined;
|
|
32565
33758
|
} | null | undefined;
|
|
32566
33759
|
bitbucket?: {
|
|
32567
33760
|
branch: string;
|
|
32568
33761
|
workspaceSlug: string;
|
|
32569
33762
|
projectKey: string;
|
|
32570
33763
|
repoSlug: string;
|
|
33764
|
+
userId?: number | undefined;
|
|
32571
33765
|
credentialId?: string | undefined;
|
|
32572
33766
|
relativePath?: string | undefined;
|
|
33767
|
+
connectionId?: string | undefined;
|
|
32573
33768
|
} | null | undefined;
|
|
32574
33769
|
github?: {
|
|
32575
33770
|
url: string;
|
|
32576
33771
|
branch: string;
|
|
33772
|
+
userId?: number | undefined;
|
|
32577
33773
|
credentialId?: string | undefined;
|
|
32578
33774
|
relativePath?: string | undefined;
|
|
33775
|
+
connectionId?: string | undefined;
|
|
32579
33776
|
} | null | undefined;
|
|
32580
33777
|
gitlab?: {
|
|
32581
33778
|
branch: string;
|
|
32582
33779
|
projectId: string;
|
|
32583
33780
|
url?: string | undefined;
|
|
33781
|
+
userId?: number | undefined;
|
|
32584
33782
|
credentialId?: string | undefined;
|
|
32585
33783
|
relativePath?: string | undefined;
|
|
33784
|
+
connectionId?: string | undefined;
|
|
32586
33785
|
} | null | undefined;
|
|
32587
33786
|
documentation?: {
|
|
32588
33787
|
environment: "Live" | "Preview";
|
|
@@ -32596,29 +33795,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32596
33795
|
projectId: string;
|
|
32597
33796
|
repositoryId: string;
|
|
32598
33797
|
url?: string | null | undefined;
|
|
33798
|
+
userId?: number | undefined;
|
|
32599
33799
|
credentialId?: string | undefined;
|
|
32600
33800
|
relativePath?: string | null | undefined;
|
|
33801
|
+
connectionId?: string | undefined;
|
|
32601
33802
|
} | null | undefined;
|
|
32602
33803
|
bitbucket?: {
|
|
32603
33804
|
branch: string;
|
|
32604
33805
|
workspaceSlug: string;
|
|
32605
33806
|
projectKey: string;
|
|
32606
33807
|
repoSlug: string;
|
|
33808
|
+
userId?: number | undefined;
|
|
32607
33809
|
credentialId?: string | undefined;
|
|
32608
33810
|
relativePath?: string | null | undefined;
|
|
33811
|
+
connectionId?: string | undefined;
|
|
32609
33812
|
} | null | undefined;
|
|
32610
33813
|
github?: {
|
|
32611
33814
|
url: string;
|
|
32612
33815
|
branch: string;
|
|
33816
|
+
userId?: number | undefined;
|
|
32613
33817
|
credentialId?: string | undefined;
|
|
32614
33818
|
relativePath?: string | null | undefined;
|
|
33819
|
+
connectionId?: string | undefined;
|
|
32615
33820
|
} | null | undefined;
|
|
32616
33821
|
gitlab?: {
|
|
32617
33822
|
branch: string;
|
|
32618
33823
|
projectId: string;
|
|
32619
33824
|
url?: string | null | undefined;
|
|
33825
|
+
userId?: number | undefined;
|
|
32620
33826
|
credentialId?: string | undefined;
|
|
32621
33827
|
relativePath?: string | null | undefined;
|
|
33828
|
+
connectionId?: string | undefined;
|
|
32622
33829
|
} | null | undefined;
|
|
32623
33830
|
documentation?: {
|
|
32624
33831
|
environment: "Live" | "Preview";
|
|
@@ -32650,29 +33857,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32650
33857
|
projectId: string;
|
|
32651
33858
|
repositoryId: string;
|
|
32652
33859
|
url?: string | undefined;
|
|
33860
|
+
userId?: number | undefined;
|
|
32653
33861
|
credentialId?: string | undefined;
|
|
32654
33862
|
relativePath?: string | undefined;
|
|
33863
|
+
connectionId?: string | undefined;
|
|
32655
33864
|
} | null | undefined;
|
|
32656
33865
|
bitbucket?: {
|
|
32657
33866
|
branch: string;
|
|
32658
33867
|
workspaceSlug: string;
|
|
32659
33868
|
projectKey: string;
|
|
32660
33869
|
repoSlug: string;
|
|
33870
|
+
userId?: number | undefined;
|
|
32661
33871
|
credentialId?: string | undefined;
|
|
32662
33872
|
relativePath?: string | undefined;
|
|
33873
|
+
connectionId?: string | undefined;
|
|
32663
33874
|
} | null | undefined;
|
|
32664
33875
|
github?: {
|
|
32665
33876
|
url: string;
|
|
32666
33877
|
branch: string;
|
|
33878
|
+
userId?: number | undefined;
|
|
32667
33879
|
credentialId?: string | undefined;
|
|
32668
33880
|
relativePath?: string | undefined;
|
|
33881
|
+
connectionId?: string | undefined;
|
|
32669
33882
|
} | null | undefined;
|
|
32670
33883
|
gitlab?: {
|
|
32671
33884
|
branch: string;
|
|
32672
33885
|
projectId: string;
|
|
32673
33886
|
url?: string | undefined;
|
|
33887
|
+
userId?: number | undefined;
|
|
32674
33888
|
credentialId?: string | undefined;
|
|
32675
33889
|
relativePath?: string | undefined;
|
|
33890
|
+
connectionId?: string | undefined;
|
|
32676
33891
|
} | null | undefined;
|
|
32677
33892
|
documentation?: {
|
|
32678
33893
|
environment: "Live" | "Preview";
|
|
@@ -32704,29 +33919,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32704
33919
|
projectId: string;
|
|
32705
33920
|
repositoryId: string;
|
|
32706
33921
|
url?: string | null | undefined;
|
|
33922
|
+
userId?: number | undefined;
|
|
32707
33923
|
credentialId?: string | undefined;
|
|
32708
33924
|
relativePath?: string | null | undefined;
|
|
33925
|
+
connectionId?: string | undefined;
|
|
32709
33926
|
} | null | undefined;
|
|
32710
33927
|
bitbucket?: {
|
|
32711
33928
|
branch: string;
|
|
32712
33929
|
workspaceSlug: string;
|
|
32713
33930
|
projectKey: string;
|
|
32714
33931
|
repoSlug: string;
|
|
33932
|
+
userId?: number | undefined;
|
|
32715
33933
|
credentialId?: string | undefined;
|
|
32716
33934
|
relativePath?: string | null | undefined;
|
|
33935
|
+
connectionId?: string | undefined;
|
|
32717
33936
|
} | null | undefined;
|
|
32718
33937
|
github?: {
|
|
32719
33938
|
url: string;
|
|
32720
33939
|
branch: string;
|
|
33940
|
+
userId?: number | undefined;
|
|
32721
33941
|
credentialId?: string | undefined;
|
|
32722
33942
|
relativePath?: string | null | undefined;
|
|
33943
|
+
connectionId?: string | undefined;
|
|
32723
33944
|
} | null | undefined;
|
|
32724
33945
|
gitlab?: {
|
|
32725
33946
|
branch: string;
|
|
32726
33947
|
projectId: string;
|
|
32727
33948
|
url?: string | null | undefined;
|
|
33949
|
+
userId?: number | undefined;
|
|
32728
33950
|
credentialId?: string | undefined;
|
|
32729
33951
|
relativePath?: string | null | undefined;
|
|
33952
|
+
connectionId?: string | undefined;
|
|
32730
33953
|
} | null | undefined;
|
|
32731
33954
|
documentation?: {
|
|
32732
33955
|
environment: "Live" | "Preview";
|
|
@@ -35836,4 +37059,4 @@ declare const BlockDefinitionUtils: {
|
|
|
35836
37059
|
};
|
|
35837
37060
|
};
|
|
35838
37061
|
|
|
35839
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, 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, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, 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, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
37062
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, 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, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, 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, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|