@supernova-studio/client 0.47.19 → 0.47.22
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 +1542 -345
- package/dist/index.d.ts +1542 -345
- package/dist/index.js +78 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +59 -20
- 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/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";
|
|
@@ -24201,29 +24289,37 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24201
24289
|
projectId: string;
|
|
24202
24290
|
repositoryId: string;
|
|
24203
24291
|
url?: string | undefined;
|
|
24292
|
+
userId?: number | undefined;
|
|
24204
24293
|
credentialId?: string | undefined;
|
|
24205
24294
|
relativePath?: string | undefined;
|
|
24295
|
+
connectionId?: string | undefined;
|
|
24206
24296
|
} | undefined;
|
|
24207
24297
|
bitbucket?: {
|
|
24208
24298
|
branch: string;
|
|
24209
24299
|
workspaceSlug: string;
|
|
24210
24300
|
projectKey: string;
|
|
24211
24301
|
repoSlug: string;
|
|
24302
|
+
userId?: number | undefined;
|
|
24212
24303
|
credentialId?: string | undefined;
|
|
24213
24304
|
relativePath?: string | undefined;
|
|
24305
|
+
connectionId?: string | undefined;
|
|
24214
24306
|
} | undefined;
|
|
24215
24307
|
github?: {
|
|
24216
24308
|
url: string;
|
|
24217
24309
|
branch: string;
|
|
24310
|
+
userId?: number | undefined;
|
|
24218
24311
|
credentialId?: string | undefined;
|
|
24219
24312
|
relativePath?: string | undefined;
|
|
24313
|
+
connectionId?: string | undefined;
|
|
24220
24314
|
} | undefined;
|
|
24221
24315
|
gitlab?: {
|
|
24222
24316
|
branch: string;
|
|
24223
24317
|
projectId: string;
|
|
24224
24318
|
url?: string | undefined;
|
|
24319
|
+
userId?: number | undefined;
|
|
24225
24320
|
credentialId?: string | undefined;
|
|
24226
24321
|
relativePath?: string | undefined;
|
|
24322
|
+
connectionId?: string | undefined;
|
|
24227
24323
|
} | undefined;
|
|
24228
24324
|
documentation?: {
|
|
24229
24325
|
environment: "Live" | "Preview";
|
|
@@ -24291,29 +24387,37 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
24291
24387
|
projectId: string;
|
|
24292
24388
|
repositoryId: string;
|
|
24293
24389
|
url?: string | null | undefined;
|
|
24390
|
+
userId?: number | undefined;
|
|
24294
24391
|
credentialId?: string | undefined;
|
|
24295
24392
|
relativePath?: string | null | undefined;
|
|
24393
|
+
connectionId?: string | undefined;
|
|
24296
24394
|
} | undefined;
|
|
24297
24395
|
bitbucket?: {
|
|
24298
24396
|
branch: string;
|
|
24299
24397
|
workspaceSlug: string;
|
|
24300
24398
|
projectKey: string;
|
|
24301
24399
|
repoSlug: string;
|
|
24400
|
+
userId?: number | undefined;
|
|
24302
24401
|
credentialId?: string | undefined;
|
|
24303
24402
|
relativePath?: string | null | undefined;
|
|
24403
|
+
connectionId?: string | undefined;
|
|
24304
24404
|
} | undefined;
|
|
24305
24405
|
github?: {
|
|
24306
24406
|
url: string;
|
|
24307
24407
|
branch: string;
|
|
24408
|
+
userId?: number | undefined;
|
|
24308
24409
|
credentialId?: string | undefined;
|
|
24309
24410
|
relativePath?: string | null | undefined;
|
|
24411
|
+
connectionId?: string | undefined;
|
|
24310
24412
|
} | undefined;
|
|
24311
24413
|
gitlab?: {
|
|
24312
24414
|
branch: string;
|
|
24313
24415
|
projectId: string;
|
|
24314
24416
|
url?: string | null | undefined;
|
|
24417
|
+
userId?: number | undefined;
|
|
24315
24418
|
credentialId?: string | undefined;
|
|
24316
24419
|
relativePath?: string | null | undefined;
|
|
24420
|
+
connectionId?: string | undefined;
|
|
24317
24421
|
} | undefined;
|
|
24318
24422
|
documentation?: {
|
|
24319
24423
|
environment: "Live" | "Preview";
|
|
@@ -24454,22 +24558,809 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24454
24558
|
branch: z.ZodString;
|
|
24455
24559
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24456
24560
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24561
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24562
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24563
|
+
}, "strip", z.ZodTypeAny, {
|
|
24564
|
+
branch: string;
|
|
24565
|
+
organizationId: string;
|
|
24566
|
+
projectId: string;
|
|
24567
|
+
repositoryId: string;
|
|
24568
|
+
url?: string | undefined;
|
|
24569
|
+
userId?: number | undefined;
|
|
24570
|
+
credentialId?: string | undefined;
|
|
24571
|
+
relativePath?: string | undefined;
|
|
24572
|
+
connectionId?: string | undefined;
|
|
24573
|
+
}, {
|
|
24574
|
+
branch: string;
|
|
24575
|
+
organizationId: string;
|
|
24576
|
+
projectId: string;
|
|
24577
|
+
repositoryId: string;
|
|
24578
|
+
url?: string | null | undefined;
|
|
24579
|
+
userId?: number | undefined;
|
|
24580
|
+
credentialId?: string | undefined;
|
|
24581
|
+
relativePath?: string | null | undefined;
|
|
24582
|
+
connectionId?: string | undefined;
|
|
24583
|
+
}>>;
|
|
24584
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
24585
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
24586
|
+
workspaceSlug: z.ZodString;
|
|
24587
|
+
projectKey: z.ZodString;
|
|
24588
|
+
repoSlug: z.ZodString;
|
|
24589
|
+
branch: z.ZodString;
|
|
24590
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24591
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24592
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24593
|
+
}, "strip", z.ZodTypeAny, {
|
|
24594
|
+
branch: string;
|
|
24595
|
+
workspaceSlug: string;
|
|
24596
|
+
projectKey: string;
|
|
24597
|
+
repoSlug: string;
|
|
24598
|
+
userId?: number | undefined;
|
|
24599
|
+
credentialId?: string | undefined;
|
|
24600
|
+
relativePath?: string | undefined;
|
|
24601
|
+
connectionId?: string | undefined;
|
|
24602
|
+
}, {
|
|
24603
|
+
branch: string;
|
|
24604
|
+
workspaceSlug: string;
|
|
24605
|
+
projectKey: string;
|
|
24606
|
+
repoSlug: string;
|
|
24607
|
+
userId?: number | undefined;
|
|
24608
|
+
credentialId?: string | undefined;
|
|
24609
|
+
relativePath?: string | null | undefined;
|
|
24610
|
+
connectionId?: string | undefined;
|
|
24611
|
+
}>>;
|
|
24612
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
24613
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
24614
|
+
url: z.ZodString;
|
|
24615
|
+
branch: z.ZodString;
|
|
24616
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24617
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24618
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24619
|
+
}, "strip", z.ZodTypeAny, {
|
|
24620
|
+
url: string;
|
|
24621
|
+
branch: string;
|
|
24622
|
+
userId?: number | undefined;
|
|
24623
|
+
credentialId?: string | undefined;
|
|
24624
|
+
relativePath?: string | undefined;
|
|
24625
|
+
connectionId?: string | undefined;
|
|
24626
|
+
}, {
|
|
24627
|
+
url: string;
|
|
24628
|
+
branch: string;
|
|
24629
|
+
userId?: number | undefined;
|
|
24630
|
+
credentialId?: string | undefined;
|
|
24631
|
+
relativePath?: string | null | undefined;
|
|
24632
|
+
connectionId?: string | undefined;
|
|
24633
|
+
}>>;
|
|
24634
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
24635
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
24636
|
+
projectId: z.ZodString;
|
|
24637
|
+
branch: z.ZodString;
|
|
24638
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24639
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24640
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
24641
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24642
|
+
}, "strip", z.ZodTypeAny, {
|
|
24643
|
+
branch: string;
|
|
24644
|
+
projectId: string;
|
|
24645
|
+
url?: string | undefined;
|
|
24646
|
+
userId?: number | undefined;
|
|
24647
|
+
credentialId?: string | undefined;
|
|
24648
|
+
relativePath?: string | undefined;
|
|
24649
|
+
connectionId?: string | undefined;
|
|
24650
|
+
}, {
|
|
24651
|
+
branch: string;
|
|
24652
|
+
projectId: string;
|
|
24653
|
+
url?: string | null | undefined;
|
|
24654
|
+
userId?: number | undefined;
|
|
24655
|
+
credentialId?: string | undefined;
|
|
24656
|
+
relativePath?: string | null | undefined;
|
|
24657
|
+
connectionId?: string | undefined;
|
|
24658
|
+
}>>;
|
|
24659
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
24660
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
24661
|
+
}, "strip", z.ZodTypeAny, {
|
|
24662
|
+
environment: "Live" | "Preview";
|
|
24663
|
+
}, {
|
|
24664
|
+
environment: "Live" | "Preview";
|
|
24665
|
+
}>>;
|
|
24666
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
24667
|
+
}, "strip", z.ZodTypeAny, {
|
|
24668
|
+
s3?: {} | undefined;
|
|
24669
|
+
azure?: {
|
|
24670
|
+
branch: string;
|
|
24671
|
+
organizationId: string;
|
|
24672
|
+
projectId: string;
|
|
24673
|
+
repositoryId: string;
|
|
24674
|
+
url?: string | undefined;
|
|
24675
|
+
userId?: number | undefined;
|
|
24676
|
+
credentialId?: string | undefined;
|
|
24677
|
+
relativePath?: string | undefined;
|
|
24678
|
+
connectionId?: string | undefined;
|
|
24679
|
+
} | undefined;
|
|
24680
|
+
bitbucket?: {
|
|
24681
|
+
branch: string;
|
|
24682
|
+
workspaceSlug: string;
|
|
24683
|
+
projectKey: string;
|
|
24684
|
+
repoSlug: string;
|
|
24685
|
+
userId?: number | undefined;
|
|
24686
|
+
credentialId?: string | undefined;
|
|
24687
|
+
relativePath?: string | undefined;
|
|
24688
|
+
connectionId?: string | undefined;
|
|
24689
|
+
} | undefined;
|
|
24690
|
+
github?: {
|
|
24691
|
+
url: string;
|
|
24692
|
+
branch: string;
|
|
24693
|
+
userId?: number | undefined;
|
|
24694
|
+
credentialId?: string | undefined;
|
|
24695
|
+
relativePath?: string | undefined;
|
|
24696
|
+
connectionId?: string | undefined;
|
|
24697
|
+
} | undefined;
|
|
24698
|
+
gitlab?: {
|
|
24699
|
+
branch: string;
|
|
24700
|
+
projectId: string;
|
|
24701
|
+
url?: string | undefined;
|
|
24702
|
+
userId?: number | undefined;
|
|
24703
|
+
credentialId?: string | undefined;
|
|
24704
|
+
relativePath?: string | undefined;
|
|
24705
|
+
connectionId?: string | undefined;
|
|
24706
|
+
} | undefined;
|
|
24707
|
+
documentation?: {
|
|
24708
|
+
environment: "Live" | "Preview";
|
|
24709
|
+
} | undefined;
|
|
24710
|
+
webhookUrl?: string | undefined;
|
|
24711
|
+
}, {
|
|
24712
|
+
s3?: {} | undefined;
|
|
24713
|
+
azure?: {
|
|
24714
|
+
branch: string;
|
|
24715
|
+
organizationId: string;
|
|
24716
|
+
projectId: string;
|
|
24717
|
+
repositoryId: string;
|
|
24718
|
+
url?: string | null | undefined;
|
|
24719
|
+
userId?: number | undefined;
|
|
24720
|
+
credentialId?: string | undefined;
|
|
24721
|
+
relativePath?: string | null | undefined;
|
|
24722
|
+
connectionId?: string | undefined;
|
|
24723
|
+
} | undefined;
|
|
24724
|
+
bitbucket?: {
|
|
24725
|
+
branch: string;
|
|
24726
|
+
workspaceSlug: string;
|
|
24727
|
+
projectKey: string;
|
|
24728
|
+
repoSlug: string;
|
|
24729
|
+
userId?: number | undefined;
|
|
24730
|
+
credentialId?: string | undefined;
|
|
24731
|
+
relativePath?: string | null | undefined;
|
|
24732
|
+
connectionId?: string | undefined;
|
|
24733
|
+
} | undefined;
|
|
24734
|
+
github?: {
|
|
24735
|
+
url: string;
|
|
24736
|
+
branch: string;
|
|
24737
|
+
userId?: number | undefined;
|
|
24738
|
+
credentialId?: string | undefined;
|
|
24739
|
+
relativePath?: string | null | undefined;
|
|
24740
|
+
connectionId?: string | undefined;
|
|
24741
|
+
} | undefined;
|
|
24742
|
+
gitlab?: {
|
|
24743
|
+
branch: string;
|
|
24744
|
+
projectId: string;
|
|
24745
|
+
url?: string | null | undefined;
|
|
24746
|
+
userId?: number | undefined;
|
|
24747
|
+
credentialId?: string | undefined;
|
|
24748
|
+
relativePath?: string | null | undefined;
|
|
24749
|
+
connectionId?: string | undefined;
|
|
24750
|
+
} | undefined;
|
|
24751
|
+
documentation?: {
|
|
24752
|
+
environment: "Live" | "Preview";
|
|
24753
|
+
} | undefined;
|
|
24754
|
+
webhookUrl?: string | undefined;
|
|
24755
|
+
}>;
|
|
24756
|
+
exporterId: z.ZodString;
|
|
24757
|
+
scheduleId: z.ZodOptional<z.ZodString>;
|
|
24758
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
24759
|
+
error: z.ZodOptional<z.ZodString>;
|
|
24760
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
24761
|
+
bucket: z.ZodString;
|
|
24762
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
24763
|
+
path: z.ZodString;
|
|
24764
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
24765
|
+
}, "strip", z.ZodTypeAny, {
|
|
24766
|
+
path: string;
|
|
24767
|
+
files: string[];
|
|
24768
|
+
bucket: string;
|
|
24769
|
+
urlPrefix?: string | undefined;
|
|
24770
|
+
}, {
|
|
24771
|
+
path: string;
|
|
24772
|
+
files: string[];
|
|
24773
|
+
bucket: string;
|
|
24774
|
+
urlPrefix?: string | undefined;
|
|
24775
|
+
}>>;
|
|
24776
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
24777
|
+
pullRequestUrl: z.ZodString;
|
|
24778
|
+
}, "strip", z.ZodTypeAny, {
|
|
24779
|
+
pullRequestUrl: string;
|
|
24780
|
+
}, {
|
|
24781
|
+
pullRequestUrl: string;
|
|
24782
|
+
}>>;
|
|
24783
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
24784
|
+
pullRequestUrl: z.ZodString;
|
|
24785
|
+
}, "strip", z.ZodTypeAny, {
|
|
24786
|
+
pullRequestUrl: string;
|
|
24787
|
+
}, {
|
|
24788
|
+
pullRequestUrl: string;
|
|
24789
|
+
}>>;
|
|
24790
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
24791
|
+
pullRequestUrl: z.ZodString;
|
|
24792
|
+
}, "strip", z.ZodTypeAny, {
|
|
24793
|
+
pullRequestUrl: string;
|
|
24794
|
+
}, {
|
|
24795
|
+
pullRequestUrl: string;
|
|
24796
|
+
}>>;
|
|
24797
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
24798
|
+
pullRequestUrl: z.ZodString;
|
|
24799
|
+
}, "strip", z.ZodTypeAny, {
|
|
24800
|
+
pullRequestUrl: string;
|
|
24801
|
+
}, {
|
|
24802
|
+
pullRequestUrl: string;
|
|
24803
|
+
}>>;
|
|
24804
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
24805
|
+
url: z.ZodString;
|
|
24806
|
+
}, "strip", z.ZodTypeAny, {
|
|
24807
|
+
url: string;
|
|
24808
|
+
}, {
|
|
24809
|
+
url: string;
|
|
24810
|
+
}>>;
|
|
24811
|
+
}, "strip", z.ZodTypeAny, {
|
|
24812
|
+
error?: string | undefined;
|
|
24813
|
+
github?: {
|
|
24814
|
+
pullRequestUrl: string;
|
|
24815
|
+
} | undefined;
|
|
24816
|
+
azure?: {
|
|
24817
|
+
pullRequestUrl: string;
|
|
24818
|
+
} | undefined;
|
|
24819
|
+
gitlab?: {
|
|
24820
|
+
pullRequestUrl: string;
|
|
24821
|
+
} | undefined;
|
|
24822
|
+
bitbucket?: {
|
|
24823
|
+
pullRequestUrl: string;
|
|
24824
|
+
} | undefined;
|
|
24825
|
+
s3?: {
|
|
24826
|
+
path: string;
|
|
24827
|
+
files: string[];
|
|
24828
|
+
bucket: string;
|
|
24829
|
+
urlPrefix?: string | undefined;
|
|
24830
|
+
} | undefined;
|
|
24831
|
+
sndocs?: {
|
|
24832
|
+
url: string;
|
|
24833
|
+
} | undefined;
|
|
24834
|
+
}, {
|
|
24835
|
+
error?: string | undefined;
|
|
24836
|
+
github?: {
|
|
24837
|
+
pullRequestUrl: string;
|
|
24838
|
+
} | undefined;
|
|
24839
|
+
azure?: {
|
|
24840
|
+
pullRequestUrl: string;
|
|
24841
|
+
} | undefined;
|
|
24842
|
+
gitlab?: {
|
|
24843
|
+
pullRequestUrl: string;
|
|
24844
|
+
} | undefined;
|
|
24845
|
+
bitbucket?: {
|
|
24846
|
+
pullRequestUrl: string;
|
|
24847
|
+
} | undefined;
|
|
24848
|
+
s3?: {
|
|
24849
|
+
path: string;
|
|
24850
|
+
files: string[];
|
|
24851
|
+
bucket: string;
|
|
24852
|
+
urlPrefix?: string | undefined;
|
|
24853
|
+
} | undefined;
|
|
24854
|
+
sndocs?: {
|
|
24855
|
+
url: string;
|
|
24856
|
+
} | undefined;
|
|
24857
|
+
}>>;
|
|
24858
|
+
}, "strip", z.ZodTypeAny, {
|
|
24859
|
+
id: string;
|
|
24860
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24861
|
+
createdAt: Date;
|
|
24862
|
+
exporterId: string;
|
|
24863
|
+
destinations: {
|
|
24864
|
+
s3?: {} | undefined;
|
|
24865
|
+
azure?: {
|
|
24866
|
+
branch: string;
|
|
24867
|
+
organizationId: string;
|
|
24868
|
+
projectId: string;
|
|
24869
|
+
repositoryId: string;
|
|
24870
|
+
url?: string | undefined;
|
|
24871
|
+
userId?: number | undefined;
|
|
24872
|
+
credentialId?: string | undefined;
|
|
24873
|
+
relativePath?: string | undefined;
|
|
24874
|
+
connectionId?: string | undefined;
|
|
24875
|
+
} | undefined;
|
|
24876
|
+
bitbucket?: {
|
|
24877
|
+
branch: string;
|
|
24878
|
+
workspaceSlug: string;
|
|
24879
|
+
projectKey: string;
|
|
24880
|
+
repoSlug: string;
|
|
24881
|
+
userId?: number | undefined;
|
|
24882
|
+
credentialId?: string | undefined;
|
|
24883
|
+
relativePath?: string | undefined;
|
|
24884
|
+
connectionId?: string | undefined;
|
|
24885
|
+
} | undefined;
|
|
24886
|
+
github?: {
|
|
24887
|
+
url: string;
|
|
24888
|
+
branch: string;
|
|
24889
|
+
userId?: number | undefined;
|
|
24890
|
+
credentialId?: string | undefined;
|
|
24891
|
+
relativePath?: string | undefined;
|
|
24892
|
+
connectionId?: string | undefined;
|
|
24893
|
+
} | undefined;
|
|
24894
|
+
gitlab?: {
|
|
24895
|
+
branch: string;
|
|
24896
|
+
projectId: string;
|
|
24897
|
+
url?: string | undefined;
|
|
24898
|
+
userId?: number | undefined;
|
|
24899
|
+
credentialId?: string | undefined;
|
|
24900
|
+
relativePath?: string | undefined;
|
|
24901
|
+
connectionId?: string | undefined;
|
|
24902
|
+
} | undefined;
|
|
24903
|
+
documentation?: {
|
|
24904
|
+
environment: "Live" | "Preview";
|
|
24905
|
+
} | undefined;
|
|
24906
|
+
webhookUrl?: string | undefined;
|
|
24907
|
+
};
|
|
24908
|
+
designSystemVersion: {
|
|
24909
|
+
id: string;
|
|
24910
|
+
meta: {
|
|
24911
|
+
name: string;
|
|
24912
|
+
description?: string | undefined;
|
|
24913
|
+
};
|
|
24914
|
+
version: string;
|
|
24915
|
+
isReadonly: boolean;
|
|
24916
|
+
};
|
|
24917
|
+
designSystem: {
|
|
24918
|
+
id: string;
|
|
24919
|
+
meta: {
|
|
24920
|
+
name: string;
|
|
24921
|
+
description?: string | undefined;
|
|
24922
|
+
};
|
|
24923
|
+
};
|
|
24924
|
+
finishedAt?: Date | undefined;
|
|
24925
|
+
index?: number | undefined;
|
|
24926
|
+
estimatedExecutionTime?: number | undefined;
|
|
24927
|
+
createdBy?: {
|
|
24928
|
+
userId: string;
|
|
24929
|
+
userName: string;
|
|
24930
|
+
} | undefined;
|
|
24931
|
+
scheduleId?: string | undefined;
|
|
24932
|
+
result?: {
|
|
24933
|
+
error?: string | undefined;
|
|
24934
|
+
github?: {
|
|
24935
|
+
pullRequestUrl: string;
|
|
24936
|
+
} | undefined;
|
|
24937
|
+
azure?: {
|
|
24938
|
+
pullRequestUrl: string;
|
|
24939
|
+
} | undefined;
|
|
24940
|
+
gitlab?: {
|
|
24941
|
+
pullRequestUrl: string;
|
|
24942
|
+
} | undefined;
|
|
24943
|
+
bitbucket?: {
|
|
24944
|
+
pullRequestUrl: string;
|
|
24945
|
+
} | undefined;
|
|
24946
|
+
s3?: {
|
|
24947
|
+
path: string;
|
|
24948
|
+
files: string[];
|
|
24949
|
+
bucket: string;
|
|
24950
|
+
urlPrefix?: string | undefined;
|
|
24951
|
+
} | undefined;
|
|
24952
|
+
sndocs?: {
|
|
24953
|
+
url: string;
|
|
24954
|
+
} | undefined;
|
|
24955
|
+
} | undefined;
|
|
24956
|
+
}, {
|
|
24957
|
+
id: string;
|
|
24958
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24959
|
+
createdAt: Date;
|
|
24960
|
+
exporterId: string;
|
|
24961
|
+
destinations: {
|
|
24962
|
+
s3?: {} | undefined;
|
|
24963
|
+
azure?: {
|
|
24964
|
+
branch: string;
|
|
24965
|
+
organizationId: string;
|
|
24966
|
+
projectId: string;
|
|
24967
|
+
repositoryId: string;
|
|
24968
|
+
url?: string | null | undefined;
|
|
24969
|
+
userId?: number | undefined;
|
|
24970
|
+
credentialId?: string | undefined;
|
|
24971
|
+
relativePath?: string | null | undefined;
|
|
24972
|
+
connectionId?: string | undefined;
|
|
24973
|
+
} | undefined;
|
|
24974
|
+
bitbucket?: {
|
|
24975
|
+
branch: string;
|
|
24976
|
+
workspaceSlug: string;
|
|
24977
|
+
projectKey: string;
|
|
24978
|
+
repoSlug: string;
|
|
24979
|
+
userId?: number | undefined;
|
|
24980
|
+
credentialId?: string | undefined;
|
|
24981
|
+
relativePath?: string | null | undefined;
|
|
24982
|
+
connectionId?: string | undefined;
|
|
24983
|
+
} | undefined;
|
|
24984
|
+
github?: {
|
|
24985
|
+
url: string;
|
|
24986
|
+
branch: string;
|
|
24987
|
+
userId?: number | undefined;
|
|
24988
|
+
credentialId?: string | undefined;
|
|
24989
|
+
relativePath?: string | null | undefined;
|
|
24990
|
+
connectionId?: string | undefined;
|
|
24991
|
+
} | undefined;
|
|
24992
|
+
gitlab?: {
|
|
24993
|
+
branch: string;
|
|
24994
|
+
projectId: string;
|
|
24995
|
+
url?: string | null | undefined;
|
|
24996
|
+
userId?: number | undefined;
|
|
24997
|
+
credentialId?: string | undefined;
|
|
24998
|
+
relativePath?: string | null | undefined;
|
|
24999
|
+
connectionId?: string | undefined;
|
|
25000
|
+
} | undefined;
|
|
25001
|
+
documentation?: {
|
|
25002
|
+
environment: "Live" | "Preview";
|
|
25003
|
+
} | undefined;
|
|
25004
|
+
webhookUrl?: string | undefined;
|
|
25005
|
+
};
|
|
25006
|
+
designSystemVersion: {
|
|
25007
|
+
id: string;
|
|
25008
|
+
meta: {
|
|
25009
|
+
name: string;
|
|
25010
|
+
description?: string | undefined;
|
|
25011
|
+
};
|
|
25012
|
+
version: string;
|
|
25013
|
+
isReadonly: boolean;
|
|
25014
|
+
};
|
|
25015
|
+
designSystem: {
|
|
25016
|
+
id: string;
|
|
25017
|
+
meta: {
|
|
25018
|
+
name: string;
|
|
25019
|
+
description?: string | undefined;
|
|
25020
|
+
};
|
|
25021
|
+
};
|
|
25022
|
+
finishedAt?: Date | undefined;
|
|
25023
|
+
index?: number | undefined;
|
|
25024
|
+
estimatedExecutionTime?: number | undefined;
|
|
25025
|
+
createdBy?: {
|
|
25026
|
+
userId: string;
|
|
25027
|
+
userName: string;
|
|
25028
|
+
} | undefined;
|
|
25029
|
+
scheduleId?: string | undefined;
|
|
25030
|
+
result?: {
|
|
25031
|
+
error?: string | undefined;
|
|
25032
|
+
github?: {
|
|
25033
|
+
pullRequestUrl: string;
|
|
25034
|
+
} | undefined;
|
|
25035
|
+
azure?: {
|
|
25036
|
+
pullRequestUrl: string;
|
|
25037
|
+
} | undefined;
|
|
25038
|
+
gitlab?: {
|
|
25039
|
+
pullRequestUrl: string;
|
|
25040
|
+
} | undefined;
|
|
25041
|
+
bitbucket?: {
|
|
25042
|
+
pullRequestUrl: string;
|
|
25043
|
+
} | undefined;
|
|
25044
|
+
s3?: {
|
|
25045
|
+
path: string;
|
|
25046
|
+
files: string[];
|
|
25047
|
+
bucket: string;
|
|
25048
|
+
urlPrefix?: string | undefined;
|
|
25049
|
+
} | undefined;
|
|
25050
|
+
sndocs?: {
|
|
25051
|
+
url: string;
|
|
25052
|
+
} | undefined;
|
|
25053
|
+
} | undefined;
|
|
25054
|
+
}>;
|
|
25055
|
+
}, "strip", z.ZodTypeAny, {
|
|
25056
|
+
job: {
|
|
25057
|
+
id: string;
|
|
25058
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
25059
|
+
createdAt: Date;
|
|
25060
|
+
exporterId: string;
|
|
25061
|
+
destinations: {
|
|
25062
|
+
s3?: {} | undefined;
|
|
25063
|
+
azure?: {
|
|
25064
|
+
branch: string;
|
|
25065
|
+
organizationId: string;
|
|
25066
|
+
projectId: string;
|
|
25067
|
+
repositoryId: string;
|
|
25068
|
+
url?: string | undefined;
|
|
25069
|
+
userId?: number | undefined;
|
|
25070
|
+
credentialId?: string | undefined;
|
|
25071
|
+
relativePath?: string | undefined;
|
|
25072
|
+
connectionId?: string | undefined;
|
|
25073
|
+
} | undefined;
|
|
25074
|
+
bitbucket?: {
|
|
25075
|
+
branch: string;
|
|
25076
|
+
workspaceSlug: string;
|
|
25077
|
+
projectKey: string;
|
|
25078
|
+
repoSlug: string;
|
|
25079
|
+
userId?: number | undefined;
|
|
25080
|
+
credentialId?: string | undefined;
|
|
25081
|
+
relativePath?: string | undefined;
|
|
25082
|
+
connectionId?: string | undefined;
|
|
25083
|
+
} | undefined;
|
|
25084
|
+
github?: {
|
|
25085
|
+
url: string;
|
|
25086
|
+
branch: string;
|
|
25087
|
+
userId?: number | undefined;
|
|
25088
|
+
credentialId?: string | undefined;
|
|
25089
|
+
relativePath?: string | undefined;
|
|
25090
|
+
connectionId?: string | undefined;
|
|
25091
|
+
} | undefined;
|
|
25092
|
+
gitlab?: {
|
|
25093
|
+
branch: string;
|
|
25094
|
+
projectId: string;
|
|
25095
|
+
url?: string | undefined;
|
|
25096
|
+
userId?: number | undefined;
|
|
25097
|
+
credentialId?: string | undefined;
|
|
25098
|
+
relativePath?: string | undefined;
|
|
25099
|
+
connectionId?: string | undefined;
|
|
25100
|
+
} | undefined;
|
|
25101
|
+
documentation?: {
|
|
25102
|
+
environment: "Live" | "Preview";
|
|
25103
|
+
} | undefined;
|
|
25104
|
+
webhookUrl?: string | undefined;
|
|
25105
|
+
};
|
|
25106
|
+
designSystemVersion: {
|
|
25107
|
+
id: string;
|
|
25108
|
+
meta: {
|
|
25109
|
+
name: string;
|
|
25110
|
+
description?: string | undefined;
|
|
25111
|
+
};
|
|
25112
|
+
version: string;
|
|
25113
|
+
isReadonly: boolean;
|
|
25114
|
+
};
|
|
25115
|
+
designSystem: {
|
|
25116
|
+
id: string;
|
|
25117
|
+
meta: {
|
|
25118
|
+
name: string;
|
|
25119
|
+
description?: string | undefined;
|
|
25120
|
+
};
|
|
25121
|
+
};
|
|
25122
|
+
finishedAt?: Date | undefined;
|
|
25123
|
+
index?: number | undefined;
|
|
25124
|
+
estimatedExecutionTime?: number | undefined;
|
|
25125
|
+
createdBy?: {
|
|
25126
|
+
userId: string;
|
|
25127
|
+
userName: string;
|
|
25128
|
+
} | undefined;
|
|
25129
|
+
scheduleId?: string | undefined;
|
|
25130
|
+
result?: {
|
|
25131
|
+
error?: string | undefined;
|
|
25132
|
+
github?: {
|
|
25133
|
+
pullRequestUrl: string;
|
|
25134
|
+
} | undefined;
|
|
25135
|
+
azure?: {
|
|
25136
|
+
pullRequestUrl: string;
|
|
25137
|
+
} | undefined;
|
|
25138
|
+
gitlab?: {
|
|
25139
|
+
pullRequestUrl: string;
|
|
25140
|
+
} | undefined;
|
|
25141
|
+
bitbucket?: {
|
|
25142
|
+
pullRequestUrl: string;
|
|
25143
|
+
} | undefined;
|
|
25144
|
+
s3?: {
|
|
25145
|
+
path: string;
|
|
25146
|
+
files: string[];
|
|
25147
|
+
bucket: string;
|
|
25148
|
+
urlPrefix?: string | undefined;
|
|
25149
|
+
} | undefined;
|
|
25150
|
+
sndocs?: {
|
|
25151
|
+
url: string;
|
|
25152
|
+
} | undefined;
|
|
25153
|
+
} | undefined;
|
|
25154
|
+
};
|
|
25155
|
+
}, {
|
|
25156
|
+
job: {
|
|
25157
|
+
id: string;
|
|
25158
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
25159
|
+
createdAt: Date;
|
|
25160
|
+
exporterId: string;
|
|
25161
|
+
destinations: {
|
|
25162
|
+
s3?: {} | undefined;
|
|
25163
|
+
azure?: {
|
|
25164
|
+
branch: string;
|
|
25165
|
+
organizationId: string;
|
|
25166
|
+
projectId: string;
|
|
25167
|
+
repositoryId: string;
|
|
25168
|
+
url?: string | null | undefined;
|
|
25169
|
+
userId?: number | undefined;
|
|
25170
|
+
credentialId?: string | undefined;
|
|
25171
|
+
relativePath?: string | null | undefined;
|
|
25172
|
+
connectionId?: string | undefined;
|
|
25173
|
+
} | undefined;
|
|
25174
|
+
bitbucket?: {
|
|
25175
|
+
branch: string;
|
|
25176
|
+
workspaceSlug: string;
|
|
25177
|
+
projectKey: string;
|
|
25178
|
+
repoSlug: string;
|
|
25179
|
+
userId?: number | undefined;
|
|
25180
|
+
credentialId?: string | undefined;
|
|
25181
|
+
relativePath?: string | null | undefined;
|
|
25182
|
+
connectionId?: string | undefined;
|
|
25183
|
+
} | undefined;
|
|
25184
|
+
github?: {
|
|
25185
|
+
url: string;
|
|
25186
|
+
branch: string;
|
|
25187
|
+
userId?: number | undefined;
|
|
25188
|
+
credentialId?: string | undefined;
|
|
25189
|
+
relativePath?: string | null | undefined;
|
|
25190
|
+
connectionId?: string | undefined;
|
|
25191
|
+
} | undefined;
|
|
25192
|
+
gitlab?: {
|
|
25193
|
+
branch: string;
|
|
25194
|
+
projectId: string;
|
|
25195
|
+
url?: string | null | undefined;
|
|
25196
|
+
userId?: number | undefined;
|
|
25197
|
+
credentialId?: string | undefined;
|
|
25198
|
+
relativePath?: string | null | undefined;
|
|
25199
|
+
connectionId?: string | undefined;
|
|
25200
|
+
} | undefined;
|
|
25201
|
+
documentation?: {
|
|
25202
|
+
environment: "Live" | "Preview";
|
|
25203
|
+
} | undefined;
|
|
25204
|
+
webhookUrl?: string | undefined;
|
|
25205
|
+
};
|
|
25206
|
+
designSystemVersion: {
|
|
25207
|
+
id: string;
|
|
25208
|
+
meta: {
|
|
25209
|
+
name: string;
|
|
25210
|
+
description?: string | undefined;
|
|
25211
|
+
};
|
|
25212
|
+
version: string;
|
|
25213
|
+
isReadonly: boolean;
|
|
25214
|
+
};
|
|
25215
|
+
designSystem: {
|
|
25216
|
+
id: string;
|
|
25217
|
+
meta: {
|
|
25218
|
+
name: string;
|
|
25219
|
+
description?: string | undefined;
|
|
25220
|
+
};
|
|
25221
|
+
};
|
|
25222
|
+
finishedAt?: Date | undefined;
|
|
25223
|
+
index?: number | undefined;
|
|
25224
|
+
estimatedExecutionTime?: number | undefined;
|
|
25225
|
+
createdBy?: {
|
|
25226
|
+
userId: string;
|
|
25227
|
+
userName: string;
|
|
25228
|
+
} | undefined;
|
|
25229
|
+
scheduleId?: string | undefined;
|
|
25230
|
+
result?: {
|
|
25231
|
+
error?: string | undefined;
|
|
25232
|
+
github?: {
|
|
25233
|
+
pullRequestUrl: string;
|
|
25234
|
+
} | undefined;
|
|
25235
|
+
azure?: {
|
|
25236
|
+
pullRequestUrl: string;
|
|
25237
|
+
} | undefined;
|
|
25238
|
+
gitlab?: {
|
|
25239
|
+
pullRequestUrl: string;
|
|
25240
|
+
} | undefined;
|
|
25241
|
+
bitbucket?: {
|
|
25242
|
+
pullRequestUrl: string;
|
|
25243
|
+
} | undefined;
|
|
25244
|
+
s3?: {
|
|
25245
|
+
path: string;
|
|
25246
|
+
files: string[];
|
|
25247
|
+
bucket: string;
|
|
25248
|
+
urlPrefix?: string | undefined;
|
|
25249
|
+
} | undefined;
|
|
25250
|
+
sndocs?: {
|
|
25251
|
+
url: string;
|
|
25252
|
+
} | undefined;
|
|
25253
|
+
} | undefined;
|
|
25254
|
+
};
|
|
25255
|
+
}>;
|
|
25256
|
+
type DTOExportJobResponse = z.infer<typeof DTOExportJobResponse>;
|
|
25257
|
+
|
|
25258
|
+
declare const DTOPipeline: z.ZodObject<{
|
|
25259
|
+
latestJobs: z.ZodArray<z.ZodObject<{
|
|
25260
|
+
id: z.ZodString;
|
|
25261
|
+
createdAt: z.ZodDate;
|
|
25262
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
25263
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
25264
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
25265
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
25266
|
+
createdBy: z.ZodOptional<z.ZodObject<{
|
|
25267
|
+
userId: z.ZodString;
|
|
25268
|
+
userName: z.ZodString;
|
|
25269
|
+
}, "strip", z.ZodTypeAny, {
|
|
25270
|
+
userId: string;
|
|
25271
|
+
userName: string;
|
|
25272
|
+
}, {
|
|
25273
|
+
userId: string;
|
|
25274
|
+
userName: string;
|
|
25275
|
+
}>>;
|
|
25276
|
+
designSystem: z.ZodObject<{
|
|
25277
|
+
id: z.ZodString;
|
|
25278
|
+
meta: z.ZodObject<{
|
|
25279
|
+
name: z.ZodString;
|
|
25280
|
+
description: z.ZodOptional<z.ZodString>;
|
|
25281
|
+
}, "strip", z.ZodTypeAny, {
|
|
25282
|
+
name: string;
|
|
25283
|
+
description?: string | undefined;
|
|
25284
|
+
}, {
|
|
25285
|
+
name: string;
|
|
25286
|
+
description?: string | undefined;
|
|
25287
|
+
}>;
|
|
25288
|
+
}, "strip", z.ZodTypeAny, {
|
|
25289
|
+
id: string;
|
|
25290
|
+
meta: {
|
|
25291
|
+
name: string;
|
|
25292
|
+
description?: string | undefined;
|
|
25293
|
+
};
|
|
25294
|
+
}, {
|
|
25295
|
+
id: string;
|
|
25296
|
+
meta: {
|
|
25297
|
+
name: string;
|
|
25298
|
+
description?: string | undefined;
|
|
25299
|
+
};
|
|
25300
|
+
}>;
|
|
25301
|
+
designSystemVersion: z.ZodObject<{
|
|
25302
|
+
id: z.ZodString;
|
|
25303
|
+
meta: z.ZodObject<{
|
|
25304
|
+
name: z.ZodString;
|
|
25305
|
+
description: z.ZodOptional<z.ZodString>;
|
|
25306
|
+
}, "strip", z.ZodTypeAny, {
|
|
25307
|
+
name: string;
|
|
25308
|
+
description?: string | undefined;
|
|
25309
|
+
}, {
|
|
25310
|
+
name: string;
|
|
25311
|
+
description?: string | undefined;
|
|
25312
|
+
}>;
|
|
25313
|
+
version: z.ZodString;
|
|
25314
|
+
isReadonly: z.ZodBoolean;
|
|
25315
|
+
}, "strip", z.ZodTypeAny, {
|
|
25316
|
+
id: string;
|
|
25317
|
+
meta: {
|
|
25318
|
+
name: string;
|
|
25319
|
+
description?: string | undefined;
|
|
25320
|
+
};
|
|
25321
|
+
version: string;
|
|
25322
|
+
isReadonly: boolean;
|
|
25323
|
+
}, {
|
|
25324
|
+
id: string;
|
|
25325
|
+
meta: {
|
|
25326
|
+
name: string;
|
|
25327
|
+
description?: string | undefined;
|
|
25328
|
+
};
|
|
25329
|
+
version: string;
|
|
25330
|
+
isReadonly: boolean;
|
|
25331
|
+
}>;
|
|
25332
|
+
destinations: z.ZodObject<{
|
|
25333
|
+
s3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
25334
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
25335
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25336
|
+
organizationId: z.ZodString;
|
|
25337
|
+
projectId: z.ZodString;
|
|
25338
|
+
repositoryId: z.ZodString;
|
|
25339
|
+
branch: z.ZodString;
|
|
25340
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25341
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25342
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25343
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24457
25344
|
}, "strip", z.ZodTypeAny, {
|
|
24458
25345
|
branch: string;
|
|
24459
25346
|
organizationId: string;
|
|
24460
25347
|
projectId: string;
|
|
24461
25348
|
repositoryId: string;
|
|
24462
25349
|
url?: string | undefined;
|
|
25350
|
+
userId?: number | undefined;
|
|
24463
25351
|
credentialId?: string | undefined;
|
|
24464
25352
|
relativePath?: string | undefined;
|
|
25353
|
+
connectionId?: string | undefined;
|
|
24465
25354
|
}, {
|
|
24466
25355
|
branch: string;
|
|
24467
25356
|
organizationId: string;
|
|
24468
25357
|
projectId: string;
|
|
24469
25358
|
repositoryId: string;
|
|
24470
25359
|
url?: string | null | undefined;
|
|
25360
|
+
userId?: number | undefined;
|
|
24471
25361
|
credentialId?: string | undefined;
|
|
24472
25362
|
relativePath?: string | null | undefined;
|
|
25363
|
+
connectionId?: string | undefined;
|
|
24473
25364
|
}>>;
|
|
24474
25365
|
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
24475
25366
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -24478,36 +25369,48 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24478
25369
|
repoSlug: z.ZodString;
|
|
24479
25370
|
branch: z.ZodString;
|
|
24480
25371
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25372
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25373
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24481
25374
|
}, "strip", z.ZodTypeAny, {
|
|
24482
25375
|
branch: string;
|
|
24483
25376
|
workspaceSlug: string;
|
|
24484
25377
|
projectKey: string;
|
|
24485
25378
|
repoSlug: string;
|
|
25379
|
+
userId?: number | undefined;
|
|
24486
25380
|
credentialId?: string | undefined;
|
|
24487
25381
|
relativePath?: string | undefined;
|
|
25382
|
+
connectionId?: string | undefined;
|
|
24488
25383
|
}, {
|
|
24489
25384
|
branch: string;
|
|
24490
25385
|
workspaceSlug: string;
|
|
24491
25386
|
projectKey: string;
|
|
24492
25387
|
repoSlug: string;
|
|
25388
|
+
userId?: number | undefined;
|
|
24493
25389
|
credentialId?: string | undefined;
|
|
24494
25390
|
relativePath?: string | null | undefined;
|
|
25391
|
+
connectionId?: string | undefined;
|
|
24495
25392
|
}>>;
|
|
24496
25393
|
github: z.ZodOptional<z.ZodObject<{
|
|
24497
25394
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
24498
25395
|
url: z.ZodString;
|
|
24499
25396
|
branch: z.ZodString;
|
|
24500
25397
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25398
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25399
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24501
25400
|
}, "strip", z.ZodTypeAny, {
|
|
24502
25401
|
url: string;
|
|
24503
25402
|
branch: string;
|
|
25403
|
+
userId?: number | undefined;
|
|
24504
25404
|
credentialId?: string | undefined;
|
|
24505
25405
|
relativePath?: string | undefined;
|
|
25406
|
+
connectionId?: string | undefined;
|
|
24506
25407
|
}, {
|
|
24507
25408
|
url: string;
|
|
24508
25409
|
branch: string;
|
|
25410
|
+
userId?: number | undefined;
|
|
24509
25411
|
credentialId?: string | undefined;
|
|
24510
25412
|
relativePath?: string | null | undefined;
|
|
25413
|
+
connectionId?: string | undefined;
|
|
24511
25414
|
}>>;
|
|
24512
25415
|
gitlab: z.ZodOptional<z.ZodObject<{
|
|
24513
25416
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -24515,18 +25418,24 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24515
25418
|
branch: z.ZodString;
|
|
24516
25419
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
24517
25420
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25421
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25422
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
24518
25423
|
}, "strip", z.ZodTypeAny, {
|
|
24519
25424
|
branch: string;
|
|
24520
25425
|
projectId: string;
|
|
24521
25426
|
url?: string | undefined;
|
|
25427
|
+
userId?: number | undefined;
|
|
24522
25428
|
credentialId?: string | undefined;
|
|
24523
25429
|
relativePath?: string | undefined;
|
|
25430
|
+
connectionId?: string | undefined;
|
|
24524
25431
|
}, {
|
|
24525
25432
|
branch: string;
|
|
24526
25433
|
projectId: string;
|
|
24527
25434
|
url?: string | null | undefined;
|
|
25435
|
+
userId?: number | undefined;
|
|
24528
25436
|
credentialId?: string | undefined;
|
|
24529
25437
|
relativePath?: string | null | undefined;
|
|
25438
|
+
connectionId?: string | undefined;
|
|
24530
25439
|
}>>;
|
|
24531
25440
|
documentation: z.ZodOptional<z.ZodObject<{
|
|
24532
25441
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -24544,29 +25453,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24544
25453
|
projectId: string;
|
|
24545
25454
|
repositoryId: string;
|
|
24546
25455
|
url?: string | undefined;
|
|
25456
|
+
userId?: number | undefined;
|
|
24547
25457
|
credentialId?: string | undefined;
|
|
24548
25458
|
relativePath?: string | undefined;
|
|
25459
|
+
connectionId?: string | undefined;
|
|
24549
25460
|
} | undefined;
|
|
24550
25461
|
bitbucket?: {
|
|
24551
25462
|
branch: string;
|
|
24552
25463
|
workspaceSlug: string;
|
|
24553
25464
|
projectKey: string;
|
|
24554
25465
|
repoSlug: string;
|
|
25466
|
+
userId?: number | undefined;
|
|
24555
25467
|
credentialId?: string | undefined;
|
|
24556
25468
|
relativePath?: string | undefined;
|
|
25469
|
+
connectionId?: string | undefined;
|
|
24557
25470
|
} | undefined;
|
|
24558
25471
|
github?: {
|
|
24559
25472
|
url: string;
|
|
24560
25473
|
branch: string;
|
|
25474
|
+
userId?: number | undefined;
|
|
24561
25475
|
credentialId?: string | undefined;
|
|
24562
25476
|
relativePath?: string | undefined;
|
|
25477
|
+
connectionId?: string | undefined;
|
|
24563
25478
|
} | undefined;
|
|
24564
25479
|
gitlab?: {
|
|
24565
25480
|
branch: string;
|
|
24566
25481
|
projectId: string;
|
|
24567
25482
|
url?: string | undefined;
|
|
25483
|
+
userId?: number | undefined;
|
|
24568
25484
|
credentialId?: string | undefined;
|
|
24569
25485
|
relativePath?: string | undefined;
|
|
25486
|
+
connectionId?: string | undefined;
|
|
24570
25487
|
} | undefined;
|
|
24571
25488
|
documentation?: {
|
|
24572
25489
|
environment: "Live" | "Preview";
|
|
@@ -24580,29 +25497,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24580
25497
|
projectId: string;
|
|
24581
25498
|
repositoryId: string;
|
|
24582
25499
|
url?: string | null | undefined;
|
|
25500
|
+
userId?: number | undefined;
|
|
24583
25501
|
credentialId?: string | undefined;
|
|
24584
25502
|
relativePath?: string | null | undefined;
|
|
25503
|
+
connectionId?: string | undefined;
|
|
24585
25504
|
} | undefined;
|
|
24586
25505
|
bitbucket?: {
|
|
24587
25506
|
branch: string;
|
|
24588
25507
|
workspaceSlug: string;
|
|
24589
25508
|
projectKey: string;
|
|
24590
25509
|
repoSlug: string;
|
|
25510
|
+
userId?: number | undefined;
|
|
24591
25511
|
credentialId?: string | undefined;
|
|
24592
25512
|
relativePath?: string | null | undefined;
|
|
25513
|
+
connectionId?: string | undefined;
|
|
24593
25514
|
} | undefined;
|
|
24594
25515
|
github?: {
|
|
24595
25516
|
url: string;
|
|
24596
25517
|
branch: string;
|
|
25518
|
+
userId?: number | undefined;
|
|
24597
25519
|
credentialId?: string | undefined;
|
|
24598
25520
|
relativePath?: string | null | undefined;
|
|
25521
|
+
connectionId?: string | undefined;
|
|
24599
25522
|
} | undefined;
|
|
24600
25523
|
gitlab?: {
|
|
24601
25524
|
branch: string;
|
|
24602
25525
|
projectId: string;
|
|
24603
25526
|
url?: string | null | undefined;
|
|
25527
|
+
userId?: number | undefined;
|
|
24604
25528
|
credentialId?: string | undefined;
|
|
24605
25529
|
relativePath?: string | null | undefined;
|
|
25530
|
+
connectionId?: string | undefined;
|
|
24606
25531
|
} | undefined;
|
|
24607
25532
|
documentation?: {
|
|
24608
25533
|
environment: "Live" | "Preview";
|
|
@@ -24724,29 +25649,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24724
25649
|
projectId: string;
|
|
24725
25650
|
repositoryId: string;
|
|
24726
25651
|
url?: string | undefined;
|
|
25652
|
+
userId?: number | undefined;
|
|
24727
25653
|
credentialId?: string | undefined;
|
|
24728
25654
|
relativePath?: string | undefined;
|
|
25655
|
+
connectionId?: string | undefined;
|
|
24729
25656
|
} | undefined;
|
|
24730
25657
|
bitbucket?: {
|
|
24731
25658
|
branch: string;
|
|
24732
25659
|
workspaceSlug: string;
|
|
24733
25660
|
projectKey: string;
|
|
24734
25661
|
repoSlug: string;
|
|
25662
|
+
userId?: number | undefined;
|
|
24735
25663
|
credentialId?: string | undefined;
|
|
24736
25664
|
relativePath?: string | undefined;
|
|
25665
|
+
connectionId?: string | undefined;
|
|
24737
25666
|
} | undefined;
|
|
24738
25667
|
github?: {
|
|
24739
25668
|
url: string;
|
|
24740
25669
|
branch: string;
|
|
25670
|
+
userId?: number | undefined;
|
|
24741
25671
|
credentialId?: string | undefined;
|
|
24742
25672
|
relativePath?: string | undefined;
|
|
25673
|
+
connectionId?: string | undefined;
|
|
24743
25674
|
} | undefined;
|
|
24744
25675
|
gitlab?: {
|
|
24745
25676
|
branch: string;
|
|
24746
25677
|
projectId: string;
|
|
24747
25678
|
url?: string | undefined;
|
|
25679
|
+
userId?: number | undefined;
|
|
24748
25680
|
credentialId?: string | undefined;
|
|
24749
25681
|
relativePath?: string | undefined;
|
|
25682
|
+
connectionId?: string | undefined;
|
|
24750
25683
|
} | undefined;
|
|
24751
25684
|
documentation?: {
|
|
24752
25685
|
environment: "Live" | "Preview";
|
|
@@ -24814,29 +25747,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24814
25747
|
projectId: string;
|
|
24815
25748
|
repositoryId: string;
|
|
24816
25749
|
url?: string | null | undefined;
|
|
25750
|
+
userId?: number | undefined;
|
|
24817
25751
|
credentialId?: string | undefined;
|
|
24818
25752
|
relativePath?: string | null | undefined;
|
|
25753
|
+
connectionId?: string | undefined;
|
|
24819
25754
|
} | undefined;
|
|
24820
25755
|
bitbucket?: {
|
|
24821
25756
|
branch: string;
|
|
24822
25757
|
workspaceSlug: string;
|
|
24823
25758
|
projectKey: string;
|
|
24824
25759
|
repoSlug: string;
|
|
25760
|
+
userId?: number | undefined;
|
|
24825
25761
|
credentialId?: string | undefined;
|
|
24826
25762
|
relativePath?: string | null | undefined;
|
|
25763
|
+
connectionId?: string | undefined;
|
|
24827
25764
|
} | undefined;
|
|
24828
25765
|
github?: {
|
|
24829
25766
|
url: string;
|
|
24830
25767
|
branch: string;
|
|
25768
|
+
userId?: number | undefined;
|
|
24831
25769
|
credentialId?: string | undefined;
|
|
24832
25770
|
relativePath?: string | null | undefined;
|
|
25771
|
+
connectionId?: string | undefined;
|
|
24833
25772
|
} | undefined;
|
|
24834
25773
|
gitlab?: {
|
|
24835
25774
|
branch: string;
|
|
24836
25775
|
projectId: string;
|
|
24837
25776
|
url?: string | null | undefined;
|
|
25777
|
+
userId?: number | undefined;
|
|
24838
25778
|
credentialId?: string | undefined;
|
|
24839
25779
|
relativePath?: string | null | undefined;
|
|
25780
|
+
connectionId?: string | undefined;
|
|
24840
25781
|
} | undefined;
|
|
24841
25782
|
documentation?: {
|
|
24842
25783
|
environment: "Live" | "Preview";
|
|
@@ -24891,9 +25832,140 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24891
25832
|
url: string;
|
|
24892
25833
|
} | undefined;
|
|
24893
25834
|
} | undefined;
|
|
24894
|
-
}>;
|
|
25835
|
+
}>, "many">;
|
|
25836
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
25837
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
25838
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
25839
|
+
}, "strip", z.ZodTypeAny, {
|
|
25840
|
+
environment: "Live" | "Preview";
|
|
25841
|
+
}, {
|
|
25842
|
+
environment: "Live" | "Preview";
|
|
25843
|
+
}>>;
|
|
25844
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
25845
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
25846
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25847
|
+
url: z.ZodString;
|
|
25848
|
+
branch: z.ZodString;
|
|
25849
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25850
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25851
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25852
|
+
}, "strip", z.ZodTypeAny, {
|
|
25853
|
+
url: string;
|
|
25854
|
+
branch: string;
|
|
25855
|
+
userId?: number | undefined;
|
|
25856
|
+
credentialId?: string | undefined;
|
|
25857
|
+
relativePath?: string | undefined;
|
|
25858
|
+
connectionId?: string | undefined;
|
|
25859
|
+
}, {
|
|
25860
|
+
url: string;
|
|
25861
|
+
branch: string;
|
|
25862
|
+
userId?: number | undefined;
|
|
25863
|
+
credentialId?: string | undefined;
|
|
25864
|
+
relativePath?: string | null | undefined;
|
|
25865
|
+
connectionId?: string | undefined;
|
|
25866
|
+
}>>;
|
|
25867
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
25868
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25869
|
+
organizationId: z.ZodString;
|
|
25870
|
+
projectId: z.ZodString;
|
|
25871
|
+
repositoryId: z.ZodString;
|
|
25872
|
+
branch: z.ZodString;
|
|
25873
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25874
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25875
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25876
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25877
|
+
}, "strip", z.ZodTypeAny, {
|
|
25878
|
+
branch: string;
|
|
25879
|
+
organizationId: string;
|
|
25880
|
+
projectId: string;
|
|
25881
|
+
repositoryId: string;
|
|
25882
|
+
url?: string | undefined;
|
|
25883
|
+
userId?: number | undefined;
|
|
25884
|
+
credentialId?: string | undefined;
|
|
25885
|
+
relativePath?: string | undefined;
|
|
25886
|
+
connectionId?: string | undefined;
|
|
25887
|
+
}, {
|
|
25888
|
+
branch: string;
|
|
25889
|
+
organizationId: string;
|
|
25890
|
+
projectId: string;
|
|
25891
|
+
repositoryId: string;
|
|
25892
|
+
url?: string | null | undefined;
|
|
25893
|
+
userId?: number | undefined;
|
|
25894
|
+
credentialId?: string | undefined;
|
|
25895
|
+
relativePath?: string | null | undefined;
|
|
25896
|
+
connectionId?: string | undefined;
|
|
25897
|
+
}>>;
|
|
25898
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
25899
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25900
|
+
projectId: z.ZodString;
|
|
25901
|
+
branch: z.ZodString;
|
|
25902
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25903
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25904
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25905
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25906
|
+
}, "strip", z.ZodTypeAny, {
|
|
25907
|
+
branch: string;
|
|
25908
|
+
projectId: string;
|
|
25909
|
+
url?: string | undefined;
|
|
25910
|
+
userId?: number | undefined;
|
|
25911
|
+
credentialId?: string | undefined;
|
|
25912
|
+
relativePath?: string | undefined;
|
|
25913
|
+
connectionId?: string | undefined;
|
|
25914
|
+
}, {
|
|
25915
|
+
branch: string;
|
|
25916
|
+
projectId: string;
|
|
25917
|
+
url?: string | null | undefined;
|
|
25918
|
+
userId?: number | undefined;
|
|
25919
|
+
credentialId?: string | undefined;
|
|
25920
|
+
relativePath?: string | null | undefined;
|
|
25921
|
+
connectionId?: string | undefined;
|
|
25922
|
+
}>>;
|
|
25923
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
25924
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
25925
|
+
workspaceSlug: z.ZodString;
|
|
25926
|
+
projectKey: z.ZodString;
|
|
25927
|
+
repoSlug: z.ZodString;
|
|
25928
|
+
branch: z.ZodString;
|
|
25929
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25930
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
25931
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
25932
|
+
}, "strip", z.ZodTypeAny, {
|
|
25933
|
+
branch: string;
|
|
25934
|
+
workspaceSlug: string;
|
|
25935
|
+
projectKey: string;
|
|
25936
|
+
repoSlug: string;
|
|
25937
|
+
userId?: number | undefined;
|
|
25938
|
+
credentialId?: string | undefined;
|
|
25939
|
+
relativePath?: string | undefined;
|
|
25940
|
+
connectionId?: string | undefined;
|
|
25941
|
+
}, {
|
|
25942
|
+
branch: string;
|
|
25943
|
+
workspaceSlug: string;
|
|
25944
|
+
projectKey: string;
|
|
25945
|
+
repoSlug: string;
|
|
25946
|
+
userId?: number | undefined;
|
|
25947
|
+
credentialId?: string | undefined;
|
|
25948
|
+
relativePath?: string | null | undefined;
|
|
25949
|
+
connectionId?: string | undefined;
|
|
25950
|
+
}>>;
|
|
25951
|
+
id: z.ZodString;
|
|
25952
|
+
name: z.ZodString;
|
|
25953
|
+
eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
25954
|
+
isEnabled: z.ZodBoolean;
|
|
25955
|
+
workspaceId: z.ZodString;
|
|
25956
|
+
designSystemId: z.ZodString;
|
|
25957
|
+
exporterId: z.ZodString;
|
|
25958
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25959
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
24895
25960
|
}, "strip", z.ZodTypeAny, {
|
|
24896
|
-
|
|
25961
|
+
id: string;
|
|
25962
|
+
workspaceId: string;
|
|
25963
|
+
name: string;
|
|
25964
|
+
exporterId: string;
|
|
25965
|
+
designSystemId: string;
|
|
25966
|
+
isEnabled: boolean;
|
|
25967
|
+
eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
|
|
25968
|
+
latestJobs: {
|
|
24897
25969
|
id: string;
|
|
24898
25970
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24899
25971
|
createdAt: Date;
|
|
@@ -24906,29 +25978,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24906
25978
|
projectId: string;
|
|
24907
25979
|
repositoryId: string;
|
|
24908
25980
|
url?: string | undefined;
|
|
25981
|
+
userId?: number | undefined;
|
|
24909
25982
|
credentialId?: string | undefined;
|
|
24910
25983
|
relativePath?: string | undefined;
|
|
25984
|
+
connectionId?: string | undefined;
|
|
24911
25985
|
} | undefined;
|
|
24912
25986
|
bitbucket?: {
|
|
24913
25987
|
branch: string;
|
|
24914
25988
|
workspaceSlug: string;
|
|
24915
25989
|
projectKey: string;
|
|
24916
25990
|
repoSlug: string;
|
|
25991
|
+
userId?: number | undefined;
|
|
24917
25992
|
credentialId?: string | undefined;
|
|
24918
25993
|
relativePath?: string | undefined;
|
|
25994
|
+
connectionId?: string | undefined;
|
|
24919
25995
|
} | undefined;
|
|
24920
25996
|
github?: {
|
|
24921
25997
|
url: string;
|
|
24922
25998
|
branch: string;
|
|
25999
|
+
userId?: number | undefined;
|
|
24923
26000
|
credentialId?: string | undefined;
|
|
24924
26001
|
relativePath?: string | undefined;
|
|
26002
|
+
connectionId?: string | undefined;
|
|
24925
26003
|
} | undefined;
|
|
24926
26004
|
gitlab?: {
|
|
24927
26005
|
branch: string;
|
|
24928
26006
|
projectId: string;
|
|
24929
26007
|
url?: string | undefined;
|
|
26008
|
+
userId?: number | undefined;
|
|
24930
26009
|
credentialId?: string | undefined;
|
|
24931
26010
|
relativePath?: string | undefined;
|
|
26011
|
+
connectionId?: string | undefined;
|
|
24932
26012
|
} | undefined;
|
|
24933
26013
|
documentation?: {
|
|
24934
26014
|
environment: "Live" | "Preview";
|
|
@@ -24983,9 +26063,61 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24983
26063
|
url: string;
|
|
24984
26064
|
} | undefined;
|
|
24985
26065
|
} | undefined;
|
|
24986
|
-
};
|
|
26066
|
+
}[];
|
|
26067
|
+
brandPersistentId?: string | undefined;
|
|
26068
|
+
themePersistentId?: string | undefined;
|
|
26069
|
+
webhookUrl?: string | undefined;
|
|
26070
|
+
destinationSnDocs?: {
|
|
26071
|
+
environment: "Live" | "Preview";
|
|
26072
|
+
} | undefined;
|
|
26073
|
+
destinationS3?: {} | undefined;
|
|
26074
|
+
destinationGithub?: {
|
|
26075
|
+
url: string;
|
|
26076
|
+
branch: string;
|
|
26077
|
+
userId?: number | undefined;
|
|
26078
|
+
credentialId?: string | undefined;
|
|
26079
|
+
relativePath?: string | undefined;
|
|
26080
|
+
connectionId?: string | undefined;
|
|
26081
|
+
} | undefined;
|
|
26082
|
+
destinationAzure?: {
|
|
26083
|
+
branch: string;
|
|
26084
|
+
organizationId: string;
|
|
26085
|
+
projectId: string;
|
|
26086
|
+
repositoryId: string;
|
|
26087
|
+
url?: string | undefined;
|
|
26088
|
+
userId?: number | undefined;
|
|
26089
|
+
credentialId?: string | undefined;
|
|
26090
|
+
relativePath?: string | undefined;
|
|
26091
|
+
connectionId?: string | undefined;
|
|
26092
|
+
} | undefined;
|
|
26093
|
+
destinationGitlab?: {
|
|
26094
|
+
branch: string;
|
|
26095
|
+
projectId: string;
|
|
26096
|
+
url?: string | undefined;
|
|
26097
|
+
userId?: number | undefined;
|
|
26098
|
+
credentialId?: string | undefined;
|
|
26099
|
+
relativePath?: string | undefined;
|
|
26100
|
+
connectionId?: string | undefined;
|
|
26101
|
+
} | undefined;
|
|
26102
|
+
destinationBitbucket?: {
|
|
26103
|
+
branch: string;
|
|
26104
|
+
workspaceSlug: string;
|
|
26105
|
+
projectKey: string;
|
|
26106
|
+
repoSlug: string;
|
|
26107
|
+
userId?: number | undefined;
|
|
26108
|
+
credentialId?: string | undefined;
|
|
26109
|
+
relativePath?: string | undefined;
|
|
26110
|
+
connectionId?: string | undefined;
|
|
26111
|
+
} | undefined;
|
|
24987
26112
|
}, {
|
|
24988
|
-
|
|
26113
|
+
id: string;
|
|
26114
|
+
workspaceId: string;
|
|
26115
|
+
name: string;
|
|
26116
|
+
exporterId: string;
|
|
26117
|
+
designSystemId: string;
|
|
26118
|
+
isEnabled: boolean;
|
|
26119
|
+
eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
|
|
26120
|
+
latestJobs: {
|
|
24989
26121
|
id: string;
|
|
24990
26122
|
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
24991
26123
|
createdAt: Date;
|
|
@@ -24998,29 +26130,37 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
24998
26130
|
projectId: string;
|
|
24999
26131
|
repositoryId: string;
|
|
25000
26132
|
url?: string | null | undefined;
|
|
26133
|
+
userId?: number | undefined;
|
|
25001
26134
|
credentialId?: string | undefined;
|
|
25002
26135
|
relativePath?: string | null | undefined;
|
|
26136
|
+
connectionId?: string | undefined;
|
|
25003
26137
|
} | undefined;
|
|
25004
26138
|
bitbucket?: {
|
|
25005
26139
|
branch: string;
|
|
25006
26140
|
workspaceSlug: string;
|
|
25007
26141
|
projectKey: string;
|
|
25008
26142
|
repoSlug: string;
|
|
26143
|
+
userId?: number | undefined;
|
|
25009
26144
|
credentialId?: string | undefined;
|
|
25010
26145
|
relativePath?: string | null | undefined;
|
|
26146
|
+
connectionId?: string | undefined;
|
|
25011
26147
|
} | undefined;
|
|
25012
26148
|
github?: {
|
|
25013
26149
|
url: string;
|
|
25014
26150
|
branch: string;
|
|
26151
|
+
userId?: number | undefined;
|
|
25015
26152
|
credentialId?: string | undefined;
|
|
25016
26153
|
relativePath?: string | null | undefined;
|
|
26154
|
+
connectionId?: string | undefined;
|
|
25017
26155
|
} | undefined;
|
|
25018
26156
|
gitlab?: {
|
|
25019
26157
|
branch: string;
|
|
25020
26158
|
projectId: string;
|
|
25021
26159
|
url?: string | null | undefined;
|
|
26160
|
+
userId?: number | undefined;
|
|
25022
26161
|
credentialId?: string | undefined;
|
|
25023
26162
|
relativePath?: string | null | undefined;
|
|
26163
|
+
connectionId?: string | undefined;
|
|
25024
26164
|
} | undefined;
|
|
25025
26165
|
documentation?: {
|
|
25026
26166
|
environment: "Live" | "Preview";
|
|
@@ -25075,164 +26215,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
25075
26215
|
url: string;
|
|
25076
26216
|
} | undefined;
|
|
25077
26217
|
} | 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";
|
|
26218
|
+
}[];
|
|
25236
26219
|
brandPersistentId?: string | undefined;
|
|
25237
26220
|
themePersistentId?: string | undefined;
|
|
25238
26221
|
webhookUrl?: string | undefined;
|
|
@@ -25243,8 +26226,10 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
25243
26226
|
destinationGithub?: {
|
|
25244
26227
|
url: string;
|
|
25245
26228
|
branch: string;
|
|
26229
|
+
userId?: number | undefined;
|
|
25246
26230
|
credentialId?: string | undefined;
|
|
25247
26231
|
relativePath?: string | null | undefined;
|
|
26232
|
+
connectionId?: string | undefined;
|
|
25248
26233
|
} | undefined;
|
|
25249
26234
|
destinationAzure?: {
|
|
25250
26235
|
branch: string;
|
|
@@ -25252,23 +26237,29 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
25252
26237
|
projectId: string;
|
|
25253
26238
|
repositoryId: string;
|
|
25254
26239
|
url?: string | null | undefined;
|
|
26240
|
+
userId?: number | undefined;
|
|
25255
26241
|
credentialId?: string | undefined;
|
|
25256
26242
|
relativePath?: string | null | undefined;
|
|
26243
|
+
connectionId?: string | undefined;
|
|
25257
26244
|
} | undefined;
|
|
25258
26245
|
destinationGitlab?: {
|
|
25259
26246
|
branch: string;
|
|
25260
26247
|
projectId: string;
|
|
25261
26248
|
url?: string | null | undefined;
|
|
26249
|
+
userId?: number | undefined;
|
|
25262
26250
|
credentialId?: string | undefined;
|
|
25263
26251
|
relativePath?: string | null | undefined;
|
|
26252
|
+
connectionId?: string | undefined;
|
|
25264
26253
|
} | undefined;
|
|
25265
26254
|
destinationBitbucket?: {
|
|
25266
26255
|
branch: string;
|
|
25267
26256
|
workspaceSlug: string;
|
|
25268
26257
|
projectKey: string;
|
|
25269
26258
|
repoSlug: string;
|
|
26259
|
+
userId?: number | undefined;
|
|
25270
26260
|
credentialId?: string | undefined;
|
|
25271
26261
|
relativePath?: string | null | undefined;
|
|
26262
|
+
connectionId?: string | undefined;
|
|
25272
26263
|
} | undefined;
|
|
25273
26264
|
}>;
|
|
25274
26265
|
type DTOPipeline = z.infer<typeof DTOPipeline>;
|
|
@@ -25894,7 +26885,7 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25894
26885
|
workspaceId: z.ZodString;
|
|
25895
26886
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
25896
26887
|
createdAt: z.ZodDate;
|
|
25897
|
-
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26888
|
+
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
25898
26889
|
id: z.ZodString;
|
|
25899
26890
|
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
25900
26891
|
integrationId: z.ZodString;
|
|
@@ -25906,27 +26897,28 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25906
26897
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
25907
26898
|
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
25908
26899
|
username: z.ZodOptional<z.ZodString>;
|
|
26900
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
25909
26901
|
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.
|
|
26902
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26903
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26904
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26905
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26906
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26907
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25916
26908
|
}, "strip", z.ZodTypeAny, {
|
|
25917
|
-
id
|
|
26909
|
+
id?: string | undefined;
|
|
25918
26910
|
type?: string | undefined;
|
|
25919
26911
|
email?: string | undefined;
|
|
25920
26912
|
handle?: string | undefined;
|
|
25921
26913
|
avatarUrl?: string | undefined;
|
|
25922
26914
|
organization?: string | undefined;
|
|
25923
26915
|
}, {
|
|
25924
|
-
id
|
|
25925
|
-
type?: string | undefined;
|
|
25926
|
-
email?: string | undefined;
|
|
25927
|
-
handle?: string | undefined;
|
|
25928
|
-
avatarUrl?: string | undefined;
|
|
25929
|
-
organization?: string | undefined;
|
|
26916
|
+
id?: string | null | undefined;
|
|
26917
|
+
type?: string | null | undefined;
|
|
26918
|
+
email?: string | null | undefined;
|
|
26919
|
+
handle?: string | null | undefined;
|
|
26920
|
+
avatarUrl?: string | null | undefined;
|
|
26921
|
+
organization?: string | null | undefined;
|
|
25930
26922
|
}>>;
|
|
25931
26923
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
25932
26924
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -25945,17 +26937,15 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25945
26937
|
email: string;
|
|
25946
26938
|
avatar?: string | undefined;
|
|
25947
26939
|
}>>;
|
|
25948
|
-
}, "strip", z.ZodTypeAny, {
|
|
26940
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
25949
26941
|
id: string;
|
|
25950
|
-
createdAt: Date;
|
|
25951
26942
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
26943
|
+
createdAt: Date;
|
|
25952
26944
|
userId: string;
|
|
25953
|
-
accessToken: string;
|
|
25954
26945
|
integrationId: string;
|
|
25955
|
-
customUrl?: string | undefined;
|
|
25956
26946
|
username?: string | undefined;
|
|
25957
26947
|
profile?: {
|
|
25958
|
-
id
|
|
26948
|
+
id?: string | undefined;
|
|
25959
26949
|
type?: string | undefined;
|
|
25960
26950
|
email?: string | undefined;
|
|
25961
26951
|
handle?: string | undefined;
|
|
@@ -25968,26 +26958,25 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25968
26958
|
email: string;
|
|
25969
26959
|
avatar?: string | undefined;
|
|
25970
26960
|
} | undefined;
|
|
25971
|
-
expiresAt?: Date | undefined;
|
|
25972
|
-
refreshToken?: string | undefined;
|
|
25973
26961
|
tokenName?: string | undefined;
|
|
26962
|
+
expiresAt?: Date | undefined;
|
|
25974
26963
|
refreshedAt?: Date | undefined;
|
|
26964
|
+
appInstallationId?: string | undefined;
|
|
26965
|
+
customUrl?: string | undefined;
|
|
25975
26966
|
}, {
|
|
25976
26967
|
id: string;
|
|
25977
|
-
createdAt: Date;
|
|
25978
26968
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
26969
|
+
createdAt: Date;
|
|
25979
26970
|
userId: string;
|
|
25980
|
-
accessToken: string;
|
|
25981
26971
|
integrationId: string;
|
|
25982
|
-
customUrl?: string | undefined;
|
|
25983
26972
|
username?: string | undefined;
|
|
25984
26973
|
profile?: {
|
|
25985
|
-
id
|
|
25986
|
-
type?: string | undefined;
|
|
25987
|
-
email?: string | undefined;
|
|
25988
|
-
handle?: string | undefined;
|
|
25989
|
-
avatarUrl?: string | undefined;
|
|
25990
|
-
organization?: string | undefined;
|
|
26974
|
+
id?: string | null | undefined;
|
|
26975
|
+
type?: string | null | undefined;
|
|
26976
|
+
email?: string | null | undefined;
|
|
26977
|
+
handle?: string | null | undefined;
|
|
26978
|
+
avatarUrl?: string | null | undefined;
|
|
26979
|
+
organization?: string | null | undefined;
|
|
25991
26980
|
} | undefined;
|
|
25992
26981
|
user?: {
|
|
25993
26982
|
id: string;
|
|
@@ -25995,10 +26984,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
25995
26984
|
email: string;
|
|
25996
26985
|
avatar?: string | undefined;
|
|
25997
26986
|
} | undefined;
|
|
25998
|
-
expiresAt?: Date | undefined;
|
|
25999
|
-
refreshToken?: string | undefined;
|
|
26000
26987
|
tokenName?: string | undefined;
|
|
26988
|
+
expiresAt?: Date | undefined;
|
|
26001
26989
|
refreshedAt?: Date | undefined;
|
|
26990
|
+
appInstallationId?: string | undefined;
|
|
26991
|
+
customUrl?: string | undefined;
|
|
26002
26992
|
}>, "many">>;
|
|
26003
26993
|
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26004
26994
|
designSystemId: z.ZodString;
|
|
@@ -26026,15 +27016,13 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26026
27016
|
createdAt: Date;
|
|
26027
27017
|
integrationCredentials?: {
|
|
26028
27018
|
id: string;
|
|
26029
|
-
createdAt: Date;
|
|
26030
27019
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27020
|
+
createdAt: Date;
|
|
26031
27021
|
userId: string;
|
|
26032
|
-
accessToken: string;
|
|
26033
27022
|
integrationId: string;
|
|
26034
|
-
customUrl?: string | undefined;
|
|
26035
27023
|
username?: string | undefined;
|
|
26036
27024
|
profile?: {
|
|
26037
|
-
id
|
|
27025
|
+
id?: string | undefined;
|
|
26038
27026
|
type?: string | undefined;
|
|
26039
27027
|
email?: string | undefined;
|
|
26040
27028
|
handle?: string | undefined;
|
|
@@ -26047,10 +27035,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26047
27035
|
email: string;
|
|
26048
27036
|
avatar?: string | undefined;
|
|
26049
27037
|
} | undefined;
|
|
26050
|
-
expiresAt?: Date | undefined;
|
|
26051
|
-
refreshToken?: string | undefined;
|
|
26052
27038
|
tokenName?: string | undefined;
|
|
27039
|
+
expiresAt?: Date | undefined;
|
|
26053
27040
|
refreshedAt?: Date | undefined;
|
|
27041
|
+
appInstallationId?: string | undefined;
|
|
27042
|
+
customUrl?: string | undefined;
|
|
26054
27043
|
}[] | undefined;
|
|
26055
27044
|
integrationDesignSystems?: {
|
|
26056
27045
|
designSystemId: string;
|
|
@@ -26066,20 +27055,18 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26066
27055
|
createdAt: Date;
|
|
26067
27056
|
integrationCredentials?: {
|
|
26068
27057
|
id: string;
|
|
26069
|
-
createdAt: Date;
|
|
26070
27058
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27059
|
+
createdAt: Date;
|
|
26071
27060
|
userId: string;
|
|
26072
|
-
accessToken: string;
|
|
26073
27061
|
integrationId: string;
|
|
26074
|
-
customUrl?: string | undefined;
|
|
26075
27062
|
username?: string | undefined;
|
|
26076
27063
|
profile?: {
|
|
26077
|
-
id
|
|
26078
|
-
type?: string | undefined;
|
|
26079
|
-
email?: string | undefined;
|
|
26080
|
-
handle?: string | undefined;
|
|
26081
|
-
avatarUrl?: string | undefined;
|
|
26082
|
-
organization?: string | undefined;
|
|
27064
|
+
id?: string | null | undefined;
|
|
27065
|
+
type?: string | null | undefined;
|
|
27066
|
+
email?: string | null | undefined;
|
|
27067
|
+
handle?: string | null | undefined;
|
|
27068
|
+
avatarUrl?: string | null | undefined;
|
|
27069
|
+
organization?: string | null | undefined;
|
|
26083
27070
|
} | undefined;
|
|
26084
27071
|
user?: {
|
|
26085
27072
|
id: string;
|
|
@@ -26087,10 +27074,11 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26087
27074
|
email: string;
|
|
26088
27075
|
avatar?: string | undefined;
|
|
26089
27076
|
} | undefined;
|
|
26090
|
-
expiresAt?: Date | undefined;
|
|
26091
|
-
refreshToken?: string | undefined;
|
|
26092
27077
|
tokenName?: string | undefined;
|
|
27078
|
+
expiresAt?: Date | undefined;
|
|
26093
27079
|
refreshedAt?: Date | undefined;
|
|
27080
|
+
appInstallationId?: string | undefined;
|
|
27081
|
+
customUrl?: string | undefined;
|
|
26094
27082
|
}[] | undefined;
|
|
26095
27083
|
integrationDesignSystems?: {
|
|
26096
27084
|
designSystemId: string;
|
|
@@ -26101,6 +27089,112 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
26101
27089
|
}[] | undefined;
|
|
26102
27090
|
}>;
|
|
26103
27091
|
type DTOIntegration = z.infer<typeof DTOIntegration>;
|
|
27092
|
+
declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
|
|
27093
|
+
id: z.ZodString;
|
|
27094
|
+
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
27095
|
+
integrationId: z.ZodString;
|
|
27096
|
+
accessToken: z.ZodString;
|
|
27097
|
+
userId: z.ZodString;
|
|
27098
|
+
createdAt: z.ZodDate;
|
|
27099
|
+
refreshToken: z.ZodOptional<z.ZodString>;
|
|
27100
|
+
tokenName: z.ZodOptional<z.ZodString>;
|
|
27101
|
+
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
27102
|
+
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
27103
|
+
username: z.ZodOptional<z.ZodString>;
|
|
27104
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
27105
|
+
profile: z.ZodOptional<z.ZodObject<{
|
|
27106
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27107
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27108
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27109
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27110
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27111
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27112
|
+
}, "strip", z.ZodTypeAny, {
|
|
27113
|
+
id?: string | undefined;
|
|
27114
|
+
type?: string | undefined;
|
|
27115
|
+
email?: string | undefined;
|
|
27116
|
+
handle?: string | undefined;
|
|
27117
|
+
avatarUrl?: string | undefined;
|
|
27118
|
+
organization?: string | undefined;
|
|
27119
|
+
}, {
|
|
27120
|
+
id?: string | null | undefined;
|
|
27121
|
+
type?: string | null | undefined;
|
|
27122
|
+
email?: string | null | undefined;
|
|
27123
|
+
handle?: string | null | undefined;
|
|
27124
|
+
avatarUrl?: string | null | undefined;
|
|
27125
|
+
organization?: string | null | undefined;
|
|
27126
|
+
}>>;
|
|
27127
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
27128
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
27129
|
+
id: z.ZodString;
|
|
27130
|
+
name: z.ZodString;
|
|
27131
|
+
email: z.ZodString;
|
|
27132
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
27133
|
+
}, "strip", z.ZodTypeAny, {
|
|
27134
|
+
id: string;
|
|
27135
|
+
name: string;
|
|
27136
|
+
email: string;
|
|
27137
|
+
avatar?: string | undefined;
|
|
27138
|
+
}, {
|
|
27139
|
+
id: string;
|
|
27140
|
+
name: string;
|
|
27141
|
+
email: string;
|
|
27142
|
+
avatar?: string | undefined;
|
|
27143
|
+
}>>;
|
|
27144
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
27145
|
+
id: string;
|
|
27146
|
+
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27147
|
+
createdAt: Date;
|
|
27148
|
+
userId: string;
|
|
27149
|
+
integrationId: string;
|
|
27150
|
+
username?: string | undefined;
|
|
27151
|
+
profile?: {
|
|
27152
|
+
id?: string | undefined;
|
|
27153
|
+
type?: string | undefined;
|
|
27154
|
+
email?: string | undefined;
|
|
27155
|
+
handle?: string | undefined;
|
|
27156
|
+
avatarUrl?: string | undefined;
|
|
27157
|
+
organization?: string | undefined;
|
|
27158
|
+
} | undefined;
|
|
27159
|
+
user?: {
|
|
27160
|
+
id: string;
|
|
27161
|
+
name: string;
|
|
27162
|
+
email: string;
|
|
27163
|
+
avatar?: string | undefined;
|
|
27164
|
+
} | undefined;
|
|
27165
|
+
tokenName?: string | undefined;
|
|
27166
|
+
expiresAt?: Date | undefined;
|
|
27167
|
+
refreshedAt?: Date | undefined;
|
|
27168
|
+
appInstallationId?: string | undefined;
|
|
27169
|
+
customUrl?: string | undefined;
|
|
27170
|
+
}, {
|
|
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 | null | undefined;
|
|
27179
|
+
type?: string | null | undefined;
|
|
27180
|
+
email?: string | null | undefined;
|
|
27181
|
+
handle?: string | null | undefined;
|
|
27182
|
+
avatarUrl?: string | null | undefined;
|
|
27183
|
+
organization?: string | null | 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
|
+
type DTOIntegrationCredentials = z.infer<typeof DTOIntegrationCredentials>;
|
|
26104
27198
|
declare const DTOIntegrationOAuthGetResponse: z.ZodObject<{
|
|
26105
27199
|
url: z.ZodString;
|
|
26106
27200
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26115,7 +27209,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26115
27209
|
workspaceId: z.ZodString;
|
|
26116
27210
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
26117
27211
|
createdAt: z.ZodDate;
|
|
26118
|
-
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27212
|
+
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
26119
27213
|
id: z.ZodString;
|
|
26120
27214
|
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
26121
27215
|
integrationId: z.ZodString;
|
|
@@ -26127,27 +27221,28 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26127
27221
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
26128
27222
|
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
26129
27223
|
username: z.ZodOptional<z.ZodString>;
|
|
27224
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
26130
27225
|
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.
|
|
27226
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27227
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27228
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27229
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27230
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27231
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26137
27232
|
}, "strip", z.ZodTypeAny, {
|
|
26138
|
-
id
|
|
27233
|
+
id?: string | undefined;
|
|
26139
27234
|
type?: string | undefined;
|
|
26140
27235
|
email?: string | undefined;
|
|
26141
27236
|
handle?: string | undefined;
|
|
26142
27237
|
avatarUrl?: string | undefined;
|
|
26143
27238
|
organization?: string | undefined;
|
|
26144
27239
|
}, {
|
|
26145
|
-
id
|
|
26146
|
-
type?: string | undefined;
|
|
26147
|
-
email?: string | undefined;
|
|
26148
|
-
handle?: string | undefined;
|
|
26149
|
-
avatarUrl?: string | undefined;
|
|
26150
|
-
organization?: string | undefined;
|
|
27240
|
+
id?: string | null | undefined;
|
|
27241
|
+
type?: string | null | undefined;
|
|
27242
|
+
email?: string | null | undefined;
|
|
27243
|
+
handle?: string | null | undefined;
|
|
27244
|
+
avatarUrl?: string | null | undefined;
|
|
27245
|
+
organization?: string | null | undefined;
|
|
26151
27246
|
}>>;
|
|
26152
27247
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
26153
27248
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -26166,17 +27261,15 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26166
27261
|
email: string;
|
|
26167
27262
|
avatar?: string | undefined;
|
|
26168
27263
|
}>>;
|
|
26169
|
-
}, "strip", z.ZodTypeAny, {
|
|
27264
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
26170
27265
|
id: string;
|
|
26171
|
-
createdAt: Date;
|
|
26172
27266
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27267
|
+
createdAt: Date;
|
|
26173
27268
|
userId: string;
|
|
26174
|
-
accessToken: string;
|
|
26175
27269
|
integrationId: string;
|
|
26176
|
-
customUrl?: string | undefined;
|
|
26177
27270
|
username?: string | undefined;
|
|
26178
27271
|
profile?: {
|
|
26179
|
-
id
|
|
27272
|
+
id?: string | undefined;
|
|
26180
27273
|
type?: string | undefined;
|
|
26181
27274
|
email?: string | undefined;
|
|
26182
27275
|
handle?: string | undefined;
|
|
@@ -26189,26 +27282,25 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26189
27282
|
email: string;
|
|
26190
27283
|
avatar?: string | undefined;
|
|
26191
27284
|
} | undefined;
|
|
26192
|
-
expiresAt?: Date | undefined;
|
|
26193
|
-
refreshToken?: string | undefined;
|
|
26194
27285
|
tokenName?: string | undefined;
|
|
27286
|
+
expiresAt?: Date | undefined;
|
|
26195
27287
|
refreshedAt?: Date | undefined;
|
|
27288
|
+
appInstallationId?: string | undefined;
|
|
27289
|
+
customUrl?: string | undefined;
|
|
26196
27290
|
}, {
|
|
26197
27291
|
id: string;
|
|
26198
|
-
createdAt: Date;
|
|
26199
27292
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27293
|
+
createdAt: Date;
|
|
26200
27294
|
userId: string;
|
|
26201
|
-
accessToken: string;
|
|
26202
27295
|
integrationId: string;
|
|
26203
|
-
customUrl?: string | undefined;
|
|
26204
27296
|
username?: string | undefined;
|
|
26205
27297
|
profile?: {
|
|
26206
|
-
id
|
|
26207
|
-
type?: string | undefined;
|
|
26208
|
-
email?: string | undefined;
|
|
26209
|
-
handle?: string | undefined;
|
|
26210
|
-
avatarUrl?: string | undefined;
|
|
26211
|
-
organization?: string | undefined;
|
|
27298
|
+
id?: string | null | undefined;
|
|
27299
|
+
type?: string | null | undefined;
|
|
27300
|
+
email?: string | null | undefined;
|
|
27301
|
+
handle?: string | null | undefined;
|
|
27302
|
+
avatarUrl?: string | null | undefined;
|
|
27303
|
+
organization?: string | null | undefined;
|
|
26212
27304
|
} | undefined;
|
|
26213
27305
|
user?: {
|
|
26214
27306
|
id: string;
|
|
@@ -26216,10 +27308,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26216
27308
|
email: string;
|
|
26217
27309
|
avatar?: string | undefined;
|
|
26218
27310
|
} | undefined;
|
|
26219
|
-
expiresAt?: Date | undefined;
|
|
26220
|
-
refreshToken?: string | undefined;
|
|
26221
27311
|
tokenName?: string | undefined;
|
|
27312
|
+
expiresAt?: Date | undefined;
|
|
26222
27313
|
refreshedAt?: Date | undefined;
|
|
27314
|
+
appInstallationId?: string | undefined;
|
|
27315
|
+
customUrl?: string | undefined;
|
|
26223
27316
|
}>, "many">>;
|
|
26224
27317
|
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26225
27318
|
designSystemId: z.ZodString;
|
|
@@ -26247,15 +27340,13 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26247
27340
|
createdAt: Date;
|
|
26248
27341
|
integrationCredentials?: {
|
|
26249
27342
|
id: string;
|
|
26250
|
-
createdAt: Date;
|
|
26251
27343
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27344
|
+
createdAt: Date;
|
|
26252
27345
|
userId: string;
|
|
26253
|
-
accessToken: string;
|
|
26254
27346
|
integrationId: string;
|
|
26255
|
-
customUrl?: string | undefined;
|
|
26256
27347
|
username?: string | undefined;
|
|
26257
27348
|
profile?: {
|
|
26258
|
-
id
|
|
27349
|
+
id?: string | undefined;
|
|
26259
27350
|
type?: string | undefined;
|
|
26260
27351
|
email?: string | undefined;
|
|
26261
27352
|
handle?: string | undefined;
|
|
@@ -26268,10 +27359,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26268
27359
|
email: string;
|
|
26269
27360
|
avatar?: string | undefined;
|
|
26270
27361
|
} | undefined;
|
|
26271
|
-
expiresAt?: Date | undefined;
|
|
26272
|
-
refreshToken?: string | undefined;
|
|
26273
27362
|
tokenName?: string | undefined;
|
|
27363
|
+
expiresAt?: Date | undefined;
|
|
26274
27364
|
refreshedAt?: Date | undefined;
|
|
27365
|
+
appInstallationId?: string | undefined;
|
|
27366
|
+
customUrl?: string | undefined;
|
|
26275
27367
|
}[] | undefined;
|
|
26276
27368
|
integrationDesignSystems?: {
|
|
26277
27369
|
designSystemId: string;
|
|
@@ -26287,20 +27379,18 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26287
27379
|
createdAt: Date;
|
|
26288
27380
|
integrationCredentials?: {
|
|
26289
27381
|
id: string;
|
|
26290
|
-
createdAt: Date;
|
|
26291
27382
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27383
|
+
createdAt: Date;
|
|
26292
27384
|
userId: string;
|
|
26293
|
-
accessToken: string;
|
|
26294
27385
|
integrationId: string;
|
|
26295
|
-
customUrl?: string | undefined;
|
|
26296
27386
|
username?: string | undefined;
|
|
26297
27387
|
profile?: {
|
|
26298
|
-
id
|
|
26299
|
-
type?: string | undefined;
|
|
26300
|
-
email?: string | undefined;
|
|
26301
|
-
handle?: string | undefined;
|
|
26302
|
-
avatarUrl?: string | undefined;
|
|
26303
|
-
organization?: string | undefined;
|
|
27388
|
+
id?: string | null | undefined;
|
|
27389
|
+
type?: string | null | undefined;
|
|
27390
|
+
email?: string | null | undefined;
|
|
27391
|
+
handle?: string | null | undefined;
|
|
27392
|
+
avatarUrl?: string | null | undefined;
|
|
27393
|
+
organization?: string | null | undefined;
|
|
26304
27394
|
} | undefined;
|
|
26305
27395
|
user?: {
|
|
26306
27396
|
id: string;
|
|
@@ -26308,10 +27398,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26308
27398
|
email: string;
|
|
26309
27399
|
avatar?: string | undefined;
|
|
26310
27400
|
} | undefined;
|
|
26311
|
-
expiresAt?: Date | undefined;
|
|
26312
|
-
refreshToken?: string | undefined;
|
|
26313
27401
|
tokenName?: string | undefined;
|
|
27402
|
+
expiresAt?: Date | undefined;
|
|
26314
27403
|
refreshedAt?: Date | undefined;
|
|
27404
|
+
appInstallationId?: string | undefined;
|
|
27405
|
+
customUrl?: string | undefined;
|
|
26315
27406
|
}[] | undefined;
|
|
26316
27407
|
integrationDesignSystems?: {
|
|
26317
27408
|
designSystemId: string;
|
|
@@ -26329,15 +27420,13 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26329
27420
|
createdAt: Date;
|
|
26330
27421
|
integrationCredentials?: {
|
|
26331
27422
|
id: string;
|
|
26332
|
-
createdAt: Date;
|
|
26333
27423
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27424
|
+
createdAt: Date;
|
|
26334
27425
|
userId: string;
|
|
26335
|
-
accessToken: string;
|
|
26336
27426
|
integrationId: string;
|
|
26337
|
-
customUrl?: string | undefined;
|
|
26338
27427
|
username?: string | undefined;
|
|
26339
27428
|
profile?: {
|
|
26340
|
-
id
|
|
27429
|
+
id?: string | undefined;
|
|
26341
27430
|
type?: string | undefined;
|
|
26342
27431
|
email?: string | undefined;
|
|
26343
27432
|
handle?: string | undefined;
|
|
@@ -26350,10 +27439,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26350
27439
|
email: string;
|
|
26351
27440
|
avatar?: string | undefined;
|
|
26352
27441
|
} | undefined;
|
|
26353
|
-
expiresAt?: Date | undefined;
|
|
26354
|
-
refreshToken?: string | undefined;
|
|
26355
27442
|
tokenName?: string | undefined;
|
|
27443
|
+
expiresAt?: Date | undefined;
|
|
26356
27444
|
refreshedAt?: Date | undefined;
|
|
27445
|
+
appInstallationId?: string | undefined;
|
|
27446
|
+
customUrl?: string | undefined;
|
|
26357
27447
|
}[] | undefined;
|
|
26358
27448
|
integrationDesignSystems?: {
|
|
26359
27449
|
designSystemId: string;
|
|
@@ -26371,20 +27461,18 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26371
27461
|
createdAt: Date;
|
|
26372
27462
|
integrationCredentials?: {
|
|
26373
27463
|
id: string;
|
|
26374
|
-
createdAt: Date;
|
|
26375
27464
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27465
|
+
createdAt: Date;
|
|
26376
27466
|
userId: string;
|
|
26377
|
-
accessToken: string;
|
|
26378
27467
|
integrationId: string;
|
|
26379
|
-
customUrl?: string | undefined;
|
|
26380
27468
|
username?: string | undefined;
|
|
26381
27469
|
profile?: {
|
|
26382
|
-
id
|
|
26383
|
-
type?: string | undefined;
|
|
26384
|
-
email?: string | undefined;
|
|
26385
|
-
handle?: string | undefined;
|
|
26386
|
-
avatarUrl?: string | undefined;
|
|
26387
|
-
organization?: string | undefined;
|
|
27470
|
+
id?: string | null | undefined;
|
|
27471
|
+
type?: string | null | undefined;
|
|
27472
|
+
email?: string | null | undefined;
|
|
27473
|
+
handle?: string | null | undefined;
|
|
27474
|
+
avatarUrl?: string | null | undefined;
|
|
27475
|
+
organization?: string | null | undefined;
|
|
26388
27476
|
} | undefined;
|
|
26389
27477
|
user?: {
|
|
26390
27478
|
id: string;
|
|
@@ -26392,10 +27480,11 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
26392
27480
|
email: string;
|
|
26393
27481
|
avatar?: string | undefined;
|
|
26394
27482
|
} | undefined;
|
|
26395
|
-
expiresAt?: Date | undefined;
|
|
26396
|
-
refreshToken?: string | undefined;
|
|
26397
27483
|
tokenName?: string | undefined;
|
|
27484
|
+
expiresAt?: Date | undefined;
|
|
26398
27485
|
refreshedAt?: Date | undefined;
|
|
27486
|
+
appInstallationId?: string | undefined;
|
|
27487
|
+
customUrl?: string | undefined;
|
|
26399
27488
|
}[] | undefined;
|
|
26400
27489
|
integrationDesignSystems?: {
|
|
26401
27490
|
designSystemId: string;
|
|
@@ -26413,7 +27502,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26413
27502
|
workspaceId: z.ZodString;
|
|
26414
27503
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
26415
27504
|
createdAt: z.ZodDate;
|
|
26416
|
-
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27505
|
+
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<Omit<{
|
|
26417
27506
|
id: z.ZodString;
|
|
26418
27507
|
type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
26419
27508
|
integrationId: z.ZodString;
|
|
@@ -26425,27 +27514,28 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26425
27514
|
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
26426
27515
|
refreshedAt: z.ZodOptional<z.ZodDate>;
|
|
26427
27516
|
username: z.ZodOptional<z.ZodString>;
|
|
27517
|
+
appInstallationId: z.ZodOptional<z.ZodString>;
|
|
26428
27518
|
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.
|
|
27519
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27520
|
+
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27521
|
+
handle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27522
|
+
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27523
|
+
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
27524
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26435
27525
|
}, "strip", z.ZodTypeAny, {
|
|
26436
|
-
id
|
|
27526
|
+
id?: string | undefined;
|
|
26437
27527
|
type?: string | undefined;
|
|
26438
27528
|
email?: string | undefined;
|
|
26439
27529
|
handle?: string | undefined;
|
|
26440
27530
|
avatarUrl?: string | undefined;
|
|
26441
27531
|
organization?: string | undefined;
|
|
26442
27532
|
}, {
|
|
26443
|
-
id
|
|
26444
|
-
type?: string | undefined;
|
|
26445
|
-
email?: string | undefined;
|
|
26446
|
-
handle?: string | undefined;
|
|
26447
|
-
avatarUrl?: string | undefined;
|
|
26448
|
-
organization?: string | undefined;
|
|
27533
|
+
id?: string | null | undefined;
|
|
27534
|
+
type?: string | null | undefined;
|
|
27535
|
+
email?: string | null | undefined;
|
|
27536
|
+
handle?: string | null | undefined;
|
|
27537
|
+
avatarUrl?: string | null | undefined;
|
|
27538
|
+
organization?: string | null | undefined;
|
|
26449
27539
|
}>>;
|
|
26450
27540
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
26451
27541
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -26464,17 +27554,15 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26464
27554
|
email: string;
|
|
26465
27555
|
avatar?: string | undefined;
|
|
26466
27556
|
}>>;
|
|
26467
|
-
}, "strip", z.ZodTypeAny, {
|
|
27557
|
+
}, "accessToken" | "refreshToken">, "strip", z.ZodTypeAny, {
|
|
26468
27558
|
id: string;
|
|
26469
|
-
createdAt: Date;
|
|
26470
27559
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27560
|
+
createdAt: Date;
|
|
26471
27561
|
userId: string;
|
|
26472
|
-
accessToken: string;
|
|
26473
27562
|
integrationId: string;
|
|
26474
|
-
customUrl?: string | undefined;
|
|
26475
27563
|
username?: string | undefined;
|
|
26476
27564
|
profile?: {
|
|
26477
|
-
id
|
|
27565
|
+
id?: string | undefined;
|
|
26478
27566
|
type?: string | undefined;
|
|
26479
27567
|
email?: string | undefined;
|
|
26480
27568
|
handle?: string | undefined;
|
|
@@ -26487,26 +27575,25 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26487
27575
|
email: string;
|
|
26488
27576
|
avatar?: string | undefined;
|
|
26489
27577
|
} | undefined;
|
|
26490
|
-
expiresAt?: Date | undefined;
|
|
26491
|
-
refreshToken?: string | undefined;
|
|
26492
27578
|
tokenName?: string | undefined;
|
|
27579
|
+
expiresAt?: Date | undefined;
|
|
26493
27580
|
refreshedAt?: Date | undefined;
|
|
27581
|
+
appInstallationId?: string | undefined;
|
|
27582
|
+
customUrl?: string | undefined;
|
|
26494
27583
|
}, {
|
|
26495
27584
|
id: string;
|
|
26496
|
-
createdAt: Date;
|
|
26497
27585
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27586
|
+
createdAt: Date;
|
|
26498
27587
|
userId: string;
|
|
26499
|
-
accessToken: string;
|
|
26500
27588
|
integrationId: string;
|
|
26501
|
-
customUrl?: string | undefined;
|
|
26502
27589
|
username?: string | undefined;
|
|
26503
27590
|
profile?: {
|
|
26504
|
-
id
|
|
26505
|
-
type?: string | undefined;
|
|
26506
|
-
email?: string | undefined;
|
|
26507
|
-
handle?: string | undefined;
|
|
26508
|
-
avatarUrl?: string | undefined;
|
|
26509
|
-
organization?: string | undefined;
|
|
27591
|
+
id?: string | null | undefined;
|
|
27592
|
+
type?: string | null | undefined;
|
|
27593
|
+
email?: string | null | undefined;
|
|
27594
|
+
handle?: string | null | undefined;
|
|
27595
|
+
avatarUrl?: string | null | undefined;
|
|
27596
|
+
organization?: string | null | undefined;
|
|
26510
27597
|
} | undefined;
|
|
26511
27598
|
user?: {
|
|
26512
27599
|
id: string;
|
|
@@ -26514,10 +27601,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26514
27601
|
email: string;
|
|
26515
27602
|
avatar?: string | undefined;
|
|
26516
27603
|
} | undefined;
|
|
26517
|
-
expiresAt?: Date | undefined;
|
|
26518
|
-
refreshToken?: string | undefined;
|
|
26519
27604
|
tokenName?: string | undefined;
|
|
27605
|
+
expiresAt?: Date | undefined;
|
|
26520
27606
|
refreshedAt?: Date | undefined;
|
|
27607
|
+
appInstallationId?: string | undefined;
|
|
27608
|
+
customUrl?: string | undefined;
|
|
26521
27609
|
}>, "many">>;
|
|
26522
27610
|
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26523
27611
|
designSystemId: z.ZodString;
|
|
@@ -26545,15 +27633,13 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26545
27633
|
createdAt: Date;
|
|
26546
27634
|
integrationCredentials?: {
|
|
26547
27635
|
id: string;
|
|
26548
|
-
createdAt: Date;
|
|
26549
27636
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27637
|
+
createdAt: Date;
|
|
26550
27638
|
userId: string;
|
|
26551
|
-
accessToken: string;
|
|
26552
27639
|
integrationId: string;
|
|
26553
|
-
customUrl?: string | undefined;
|
|
26554
27640
|
username?: string | undefined;
|
|
26555
27641
|
profile?: {
|
|
26556
|
-
id
|
|
27642
|
+
id?: string | undefined;
|
|
26557
27643
|
type?: string | undefined;
|
|
26558
27644
|
email?: string | undefined;
|
|
26559
27645
|
handle?: string | undefined;
|
|
@@ -26566,10 +27652,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26566
27652
|
email: string;
|
|
26567
27653
|
avatar?: string | undefined;
|
|
26568
27654
|
} | undefined;
|
|
26569
|
-
expiresAt?: Date | undefined;
|
|
26570
|
-
refreshToken?: string | undefined;
|
|
26571
27655
|
tokenName?: string | undefined;
|
|
27656
|
+
expiresAt?: Date | undefined;
|
|
26572
27657
|
refreshedAt?: Date | undefined;
|
|
27658
|
+
appInstallationId?: string | undefined;
|
|
27659
|
+
customUrl?: string | undefined;
|
|
26573
27660
|
}[] | undefined;
|
|
26574
27661
|
integrationDesignSystems?: {
|
|
26575
27662
|
designSystemId: string;
|
|
@@ -26585,20 +27672,18 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26585
27672
|
createdAt: Date;
|
|
26586
27673
|
integrationCredentials?: {
|
|
26587
27674
|
id: string;
|
|
26588
|
-
createdAt: Date;
|
|
26589
27675
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27676
|
+
createdAt: Date;
|
|
26590
27677
|
userId: string;
|
|
26591
|
-
accessToken: string;
|
|
26592
27678
|
integrationId: string;
|
|
26593
|
-
customUrl?: string | undefined;
|
|
26594
27679
|
username?: string | undefined;
|
|
26595
27680
|
profile?: {
|
|
26596
|
-
id
|
|
26597
|
-
type?: string | undefined;
|
|
26598
|
-
email?: string | undefined;
|
|
26599
|
-
handle?: string | undefined;
|
|
26600
|
-
avatarUrl?: string | undefined;
|
|
26601
|
-
organization?: string | undefined;
|
|
27681
|
+
id?: string | null | undefined;
|
|
27682
|
+
type?: string | null | undefined;
|
|
27683
|
+
email?: string | null | undefined;
|
|
27684
|
+
handle?: string | null | undefined;
|
|
27685
|
+
avatarUrl?: string | null | undefined;
|
|
27686
|
+
organization?: string | null | undefined;
|
|
26602
27687
|
} | undefined;
|
|
26603
27688
|
user?: {
|
|
26604
27689
|
id: string;
|
|
@@ -26606,10 +27691,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26606
27691
|
email: string;
|
|
26607
27692
|
avatar?: string | undefined;
|
|
26608
27693
|
} | undefined;
|
|
26609
|
-
expiresAt?: Date | undefined;
|
|
26610
|
-
refreshToken?: string | undefined;
|
|
26611
27694
|
tokenName?: string | undefined;
|
|
27695
|
+
expiresAt?: Date | undefined;
|
|
26612
27696
|
refreshedAt?: Date | undefined;
|
|
27697
|
+
appInstallationId?: string | undefined;
|
|
27698
|
+
customUrl?: string | undefined;
|
|
26613
27699
|
}[] | undefined;
|
|
26614
27700
|
integrationDesignSystems?: {
|
|
26615
27701
|
designSystemId: string;
|
|
@@ -26627,15 +27713,13 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26627
27713
|
createdAt: Date;
|
|
26628
27714
|
integrationCredentials?: {
|
|
26629
27715
|
id: string;
|
|
26630
|
-
createdAt: Date;
|
|
26631
27716
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27717
|
+
createdAt: Date;
|
|
26632
27718
|
userId: string;
|
|
26633
|
-
accessToken: string;
|
|
26634
27719
|
integrationId: string;
|
|
26635
|
-
customUrl?: string | undefined;
|
|
26636
27720
|
username?: string | undefined;
|
|
26637
27721
|
profile?: {
|
|
26638
|
-
id
|
|
27722
|
+
id?: string | undefined;
|
|
26639
27723
|
type?: string | undefined;
|
|
26640
27724
|
email?: string | undefined;
|
|
26641
27725
|
handle?: string | undefined;
|
|
@@ -26648,10 +27732,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26648
27732
|
email: string;
|
|
26649
27733
|
avatar?: string | undefined;
|
|
26650
27734
|
} | undefined;
|
|
26651
|
-
expiresAt?: Date | undefined;
|
|
26652
|
-
refreshToken?: string | undefined;
|
|
26653
27735
|
tokenName?: string | undefined;
|
|
27736
|
+
expiresAt?: Date | undefined;
|
|
26654
27737
|
refreshedAt?: Date | undefined;
|
|
27738
|
+
appInstallationId?: string | undefined;
|
|
27739
|
+
customUrl?: string | undefined;
|
|
26655
27740
|
}[] | undefined;
|
|
26656
27741
|
integrationDesignSystems?: {
|
|
26657
27742
|
designSystemId: string;
|
|
@@ -26669,20 +27754,18 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26669
27754
|
createdAt: Date;
|
|
26670
27755
|
integrationCredentials?: {
|
|
26671
27756
|
id: string;
|
|
26672
|
-
createdAt: Date;
|
|
26673
27757
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
27758
|
+
createdAt: Date;
|
|
26674
27759
|
userId: string;
|
|
26675
|
-
accessToken: string;
|
|
26676
27760
|
integrationId: string;
|
|
26677
|
-
customUrl?: string | undefined;
|
|
26678
27761
|
username?: string | undefined;
|
|
26679
27762
|
profile?: {
|
|
26680
|
-
id
|
|
26681
|
-
type?: string | undefined;
|
|
26682
|
-
email?: string | undefined;
|
|
26683
|
-
handle?: string | undefined;
|
|
26684
|
-
avatarUrl?: string | undefined;
|
|
26685
|
-
organization?: string | undefined;
|
|
27763
|
+
id?: string | null | undefined;
|
|
27764
|
+
type?: string | null | undefined;
|
|
27765
|
+
email?: string | null | undefined;
|
|
27766
|
+
handle?: string | null | undefined;
|
|
27767
|
+
avatarUrl?: string | null | undefined;
|
|
27768
|
+
organization?: string | null | undefined;
|
|
26686
27769
|
} | undefined;
|
|
26687
27770
|
user?: {
|
|
26688
27771
|
id: string;
|
|
@@ -26690,10 +27773,11 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
26690
27773
|
email: string;
|
|
26691
27774
|
avatar?: string | undefined;
|
|
26692
27775
|
} | undefined;
|
|
26693
|
-
expiresAt?: Date | undefined;
|
|
26694
|
-
refreshToken?: string | undefined;
|
|
26695
27776
|
tokenName?: string | undefined;
|
|
27777
|
+
expiresAt?: Date | undefined;
|
|
26696
27778
|
refreshedAt?: Date | undefined;
|
|
27779
|
+
appInstallationId?: string | undefined;
|
|
27780
|
+
customUrl?: string | undefined;
|
|
26697
27781
|
}[] | undefined;
|
|
26698
27782
|
integrationDesignSystems?: {
|
|
26699
27783
|
designSystemId: string;
|
|
@@ -31453,6 +32537,7 @@ declare function gitRepositoryToDto(repo: GitRepository): DTOGitRepository;
|
|
|
31453
32537
|
declare function gitBranchToDto(branch: GitBranch): DTOGitBranch;
|
|
31454
32538
|
|
|
31455
32539
|
declare function integrationToDto(integration: ExtendedIntegration): DTOIntegration;
|
|
32540
|
+
declare function integrationCredentialToDto(credential: IntegrationCredentials): DTOIntegrationCredentials;
|
|
31456
32541
|
|
|
31457
32542
|
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
31458
32543
|
persistentId: z.ZodString;
|
|
@@ -32169,22 +33254,28 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32169
33254
|
branch: z.ZodString;
|
|
32170
33255
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32171
33256
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33257
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33258
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32172
33259
|
}, "strip", z.ZodTypeAny, {
|
|
32173
33260
|
branch: string;
|
|
32174
33261
|
organizationId: string;
|
|
32175
33262
|
projectId: string;
|
|
32176
33263
|
repositoryId: string;
|
|
32177
33264
|
url?: string | undefined;
|
|
33265
|
+
userId?: number | undefined;
|
|
32178
33266
|
credentialId?: string | undefined;
|
|
32179
33267
|
relativePath?: string | undefined;
|
|
33268
|
+
connectionId?: string | undefined;
|
|
32180
33269
|
}, {
|
|
32181
33270
|
branch: string;
|
|
32182
33271
|
organizationId: string;
|
|
32183
33272
|
projectId: string;
|
|
32184
33273
|
repositoryId: string;
|
|
32185
33274
|
url?: string | null | undefined;
|
|
33275
|
+
userId?: number | undefined;
|
|
32186
33276
|
credentialId?: string | undefined;
|
|
32187
33277
|
relativePath?: string | null | undefined;
|
|
33278
|
+
connectionId?: string | undefined;
|
|
32188
33279
|
}>>>;
|
|
32189
33280
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32190
33281
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32193,36 +33284,48 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32193
33284
|
repoSlug: z.ZodString;
|
|
32194
33285
|
branch: z.ZodString;
|
|
32195
33286
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33287
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33288
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32196
33289
|
}, "strip", z.ZodTypeAny, {
|
|
32197
33290
|
branch: string;
|
|
32198
33291
|
workspaceSlug: string;
|
|
32199
33292
|
projectKey: string;
|
|
32200
33293
|
repoSlug: string;
|
|
33294
|
+
userId?: number | undefined;
|
|
32201
33295
|
credentialId?: string | undefined;
|
|
32202
33296
|
relativePath?: string | undefined;
|
|
33297
|
+
connectionId?: string | undefined;
|
|
32203
33298
|
}, {
|
|
32204
33299
|
branch: string;
|
|
32205
33300
|
workspaceSlug: string;
|
|
32206
33301
|
projectKey: string;
|
|
32207
33302
|
repoSlug: string;
|
|
33303
|
+
userId?: number | undefined;
|
|
32208
33304
|
credentialId?: string | undefined;
|
|
32209
33305
|
relativePath?: string | null | undefined;
|
|
33306
|
+
connectionId?: string | undefined;
|
|
32210
33307
|
}>>>;
|
|
32211
33308
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32212
33309
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
32213
33310
|
url: z.ZodString;
|
|
32214
33311
|
branch: z.ZodString;
|
|
32215
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>;
|
|
32216
33315
|
}, "strip", z.ZodTypeAny, {
|
|
32217
33316
|
url: string;
|
|
32218
33317
|
branch: string;
|
|
33318
|
+
userId?: number | undefined;
|
|
32219
33319
|
credentialId?: string | undefined;
|
|
32220
33320
|
relativePath?: string | undefined;
|
|
33321
|
+
connectionId?: string | undefined;
|
|
32221
33322
|
}, {
|
|
32222
33323
|
url: string;
|
|
32223
33324
|
branch: string;
|
|
33325
|
+
userId?: number | undefined;
|
|
32224
33326
|
credentialId?: string | undefined;
|
|
32225
33327
|
relativePath?: string | null | undefined;
|
|
33328
|
+
connectionId?: string | undefined;
|
|
32226
33329
|
}>>>;
|
|
32227
33330
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32228
33331
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32230,18 +33333,24 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32230
33333
|
branch: z.ZodString;
|
|
32231
33334
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32232
33335
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33336
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33337
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32233
33338
|
}, "strip", z.ZodTypeAny, {
|
|
32234
33339
|
branch: string;
|
|
32235
33340
|
projectId: string;
|
|
32236
33341
|
url?: string | undefined;
|
|
33342
|
+
userId?: number | undefined;
|
|
32237
33343
|
credentialId?: string | undefined;
|
|
32238
33344
|
relativePath?: string | undefined;
|
|
33345
|
+
connectionId?: string | undefined;
|
|
32239
33346
|
}, {
|
|
32240
33347
|
branch: string;
|
|
32241
33348
|
projectId: string;
|
|
32242
33349
|
url?: string | null | undefined;
|
|
33350
|
+
userId?: number | undefined;
|
|
32243
33351
|
credentialId?: string | undefined;
|
|
32244
33352
|
relativePath?: string | null | undefined;
|
|
33353
|
+
connectionId?: string | undefined;
|
|
32245
33354
|
}>>>;
|
|
32246
33355
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32247
33356
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -32259,29 +33368,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32259
33368
|
projectId: string;
|
|
32260
33369
|
repositoryId: string;
|
|
32261
33370
|
url?: string | undefined;
|
|
33371
|
+
userId?: number | undefined;
|
|
32262
33372
|
credentialId?: string | undefined;
|
|
32263
33373
|
relativePath?: string | undefined;
|
|
33374
|
+
connectionId?: string | undefined;
|
|
32264
33375
|
} | null | undefined;
|
|
32265
33376
|
bitbucket?: {
|
|
32266
33377
|
branch: string;
|
|
32267
33378
|
workspaceSlug: string;
|
|
32268
33379
|
projectKey: string;
|
|
32269
33380
|
repoSlug: string;
|
|
33381
|
+
userId?: number | undefined;
|
|
32270
33382
|
credentialId?: string | undefined;
|
|
32271
33383
|
relativePath?: string | undefined;
|
|
33384
|
+
connectionId?: string | undefined;
|
|
32272
33385
|
} | null | undefined;
|
|
32273
33386
|
github?: {
|
|
32274
33387
|
url: string;
|
|
32275
33388
|
branch: string;
|
|
33389
|
+
userId?: number | undefined;
|
|
32276
33390
|
credentialId?: string | undefined;
|
|
32277
33391
|
relativePath?: string | undefined;
|
|
33392
|
+
connectionId?: string | undefined;
|
|
32278
33393
|
} | null | undefined;
|
|
32279
33394
|
gitlab?: {
|
|
32280
33395
|
branch: string;
|
|
32281
33396
|
projectId: string;
|
|
32282
33397
|
url?: string | undefined;
|
|
33398
|
+
userId?: number | undefined;
|
|
32283
33399
|
credentialId?: string | undefined;
|
|
32284
33400
|
relativePath?: string | undefined;
|
|
33401
|
+
connectionId?: string | undefined;
|
|
32285
33402
|
} | null | undefined;
|
|
32286
33403
|
documentation?: {
|
|
32287
33404
|
environment: "Live" | "Preview";
|
|
@@ -32295,29 +33412,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32295
33412
|
projectId: string;
|
|
32296
33413
|
repositoryId: string;
|
|
32297
33414
|
url?: string | null | undefined;
|
|
33415
|
+
userId?: number | undefined;
|
|
32298
33416
|
credentialId?: string | undefined;
|
|
32299
33417
|
relativePath?: string | null | undefined;
|
|
33418
|
+
connectionId?: string | undefined;
|
|
32300
33419
|
} | null | undefined;
|
|
32301
33420
|
bitbucket?: {
|
|
32302
33421
|
branch: string;
|
|
32303
33422
|
workspaceSlug: string;
|
|
32304
33423
|
projectKey: string;
|
|
32305
33424
|
repoSlug: string;
|
|
33425
|
+
userId?: number | undefined;
|
|
32306
33426
|
credentialId?: string | undefined;
|
|
32307
33427
|
relativePath?: string | null | undefined;
|
|
33428
|
+
connectionId?: string | undefined;
|
|
32308
33429
|
} | null | undefined;
|
|
32309
33430
|
github?: {
|
|
32310
33431
|
url: string;
|
|
32311
33432
|
branch: string;
|
|
33433
|
+
userId?: number | undefined;
|
|
32312
33434
|
credentialId?: string | undefined;
|
|
32313
33435
|
relativePath?: string | null | undefined;
|
|
33436
|
+
connectionId?: string | undefined;
|
|
32314
33437
|
} | null | undefined;
|
|
32315
33438
|
gitlab?: {
|
|
32316
33439
|
branch: string;
|
|
32317
33440
|
projectId: string;
|
|
32318
33441
|
url?: string | null | undefined;
|
|
33442
|
+
userId?: number | undefined;
|
|
32319
33443
|
credentialId?: string | undefined;
|
|
32320
33444
|
relativePath?: string | null | undefined;
|
|
33445
|
+
connectionId?: string | undefined;
|
|
32321
33446
|
} | null | undefined;
|
|
32322
33447
|
documentation?: {
|
|
32323
33448
|
environment: "Live" | "Preview";
|
|
@@ -32346,29 +33471,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32346
33471
|
projectId: string;
|
|
32347
33472
|
repositoryId: string;
|
|
32348
33473
|
url?: string | undefined;
|
|
33474
|
+
userId?: number | undefined;
|
|
32349
33475
|
credentialId?: string | undefined;
|
|
32350
33476
|
relativePath?: string | undefined;
|
|
33477
|
+
connectionId?: string | undefined;
|
|
32351
33478
|
} | null | undefined;
|
|
32352
33479
|
bitbucket?: {
|
|
32353
33480
|
branch: string;
|
|
32354
33481
|
workspaceSlug: string;
|
|
32355
33482
|
projectKey: string;
|
|
32356
33483
|
repoSlug: string;
|
|
33484
|
+
userId?: number | undefined;
|
|
32357
33485
|
credentialId?: string | undefined;
|
|
32358
33486
|
relativePath?: string | undefined;
|
|
33487
|
+
connectionId?: string | undefined;
|
|
32359
33488
|
} | null | undefined;
|
|
32360
33489
|
github?: {
|
|
32361
33490
|
url: string;
|
|
32362
33491
|
branch: string;
|
|
33492
|
+
userId?: number | undefined;
|
|
32363
33493
|
credentialId?: string | undefined;
|
|
32364
33494
|
relativePath?: string | undefined;
|
|
33495
|
+
connectionId?: string | undefined;
|
|
32365
33496
|
} | null | undefined;
|
|
32366
33497
|
gitlab?: {
|
|
32367
33498
|
branch: string;
|
|
32368
33499
|
projectId: string;
|
|
32369
33500
|
url?: string | undefined;
|
|
33501
|
+
userId?: number | undefined;
|
|
32370
33502
|
credentialId?: string | undefined;
|
|
32371
33503
|
relativePath?: string | undefined;
|
|
33504
|
+
connectionId?: string | undefined;
|
|
32372
33505
|
} | null | undefined;
|
|
32373
33506
|
documentation?: {
|
|
32374
33507
|
environment: "Live" | "Preview";
|
|
@@ -32399,29 +33532,37 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
32399
33532
|
projectId: string;
|
|
32400
33533
|
repositoryId: string;
|
|
32401
33534
|
url?: string | null | undefined;
|
|
33535
|
+
userId?: number | undefined;
|
|
32402
33536
|
credentialId?: string | undefined;
|
|
32403
33537
|
relativePath?: string | null | undefined;
|
|
33538
|
+
connectionId?: string | undefined;
|
|
32404
33539
|
} | null | undefined;
|
|
32405
33540
|
bitbucket?: {
|
|
32406
33541
|
branch: string;
|
|
32407
33542
|
workspaceSlug: string;
|
|
32408
33543
|
projectKey: string;
|
|
32409
33544
|
repoSlug: string;
|
|
33545
|
+
userId?: number | undefined;
|
|
32410
33546
|
credentialId?: string | undefined;
|
|
32411
33547
|
relativePath?: string | null | undefined;
|
|
33548
|
+
connectionId?: string | undefined;
|
|
32412
33549
|
} | null | undefined;
|
|
32413
33550
|
github?: {
|
|
32414
33551
|
url: string;
|
|
32415
33552
|
branch: string;
|
|
33553
|
+
userId?: number | undefined;
|
|
32416
33554
|
credentialId?: string | undefined;
|
|
32417
33555
|
relativePath?: string | null | undefined;
|
|
33556
|
+
connectionId?: string | undefined;
|
|
32418
33557
|
} | null | undefined;
|
|
32419
33558
|
gitlab?: {
|
|
32420
33559
|
branch: string;
|
|
32421
33560
|
projectId: string;
|
|
32422
33561
|
url?: string | null | undefined;
|
|
33562
|
+
userId?: number | undefined;
|
|
32423
33563
|
credentialId?: string | undefined;
|
|
32424
33564
|
relativePath?: string | null | undefined;
|
|
33565
|
+
connectionId?: string | undefined;
|
|
32425
33566
|
} | null | undefined;
|
|
32426
33567
|
documentation?: {
|
|
32427
33568
|
environment: "Live" | "Preview";
|
|
@@ -32470,22 +33611,28 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32470
33611
|
branch: z.ZodString;
|
|
32471
33612
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32472
33613
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33614
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33615
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32473
33616
|
}, "strip", z.ZodTypeAny, {
|
|
32474
33617
|
branch: string;
|
|
32475
33618
|
organizationId: string;
|
|
32476
33619
|
projectId: string;
|
|
32477
33620
|
repositoryId: string;
|
|
32478
33621
|
url?: string | undefined;
|
|
33622
|
+
userId?: number | undefined;
|
|
32479
33623
|
credentialId?: string | undefined;
|
|
32480
33624
|
relativePath?: string | undefined;
|
|
33625
|
+
connectionId?: string | undefined;
|
|
32481
33626
|
}, {
|
|
32482
33627
|
branch: string;
|
|
32483
33628
|
organizationId: string;
|
|
32484
33629
|
projectId: string;
|
|
32485
33630
|
repositoryId: string;
|
|
32486
33631
|
url?: string | null | undefined;
|
|
33632
|
+
userId?: number | undefined;
|
|
32487
33633
|
credentialId?: string | undefined;
|
|
32488
33634
|
relativePath?: string | null | undefined;
|
|
33635
|
+
connectionId?: string | undefined;
|
|
32489
33636
|
}>>>;
|
|
32490
33637
|
bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32491
33638
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32494,36 +33641,48 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32494
33641
|
repoSlug: z.ZodString;
|
|
32495
33642
|
branch: z.ZodString;
|
|
32496
33643
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33644
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33645
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32497
33646
|
}, "strip", z.ZodTypeAny, {
|
|
32498
33647
|
branch: string;
|
|
32499
33648
|
workspaceSlug: string;
|
|
32500
33649
|
projectKey: string;
|
|
32501
33650
|
repoSlug: string;
|
|
33651
|
+
userId?: number | undefined;
|
|
32502
33652
|
credentialId?: string | undefined;
|
|
32503
33653
|
relativePath?: string | undefined;
|
|
33654
|
+
connectionId?: string | undefined;
|
|
32504
33655
|
}, {
|
|
32505
33656
|
branch: string;
|
|
32506
33657
|
workspaceSlug: string;
|
|
32507
33658
|
projectKey: string;
|
|
32508
33659
|
repoSlug: string;
|
|
33660
|
+
userId?: number | undefined;
|
|
32509
33661
|
credentialId?: string | undefined;
|
|
32510
33662
|
relativePath?: string | null | undefined;
|
|
33663
|
+
connectionId?: string | undefined;
|
|
32511
33664
|
}>>>;
|
|
32512
33665
|
github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32513
33666
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
32514
33667
|
url: z.ZodString;
|
|
32515
33668
|
branch: z.ZodString;
|
|
32516
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>;
|
|
32517
33672
|
}, "strip", z.ZodTypeAny, {
|
|
32518
33673
|
url: string;
|
|
32519
33674
|
branch: string;
|
|
33675
|
+
userId?: number | undefined;
|
|
32520
33676
|
credentialId?: string | undefined;
|
|
32521
33677
|
relativePath?: string | undefined;
|
|
33678
|
+
connectionId?: string | undefined;
|
|
32522
33679
|
}, {
|
|
32523
33680
|
url: string;
|
|
32524
33681
|
branch: string;
|
|
33682
|
+
userId?: number | undefined;
|
|
32525
33683
|
credentialId?: string | undefined;
|
|
32526
33684
|
relativePath?: string | null | undefined;
|
|
33685
|
+
connectionId?: string | undefined;
|
|
32527
33686
|
}>>>;
|
|
32528
33687
|
gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32529
33688
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -32531,18 +33690,24 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32531
33690
|
branch: z.ZodString;
|
|
32532
33691
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
32533
33692
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
33693
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
33694
|
+
userId: z.ZodOptional<z.ZodNumber>;
|
|
32534
33695
|
}, "strip", z.ZodTypeAny, {
|
|
32535
33696
|
branch: string;
|
|
32536
33697
|
projectId: string;
|
|
32537
33698
|
url?: string | undefined;
|
|
33699
|
+
userId?: number | undefined;
|
|
32538
33700
|
credentialId?: string | undefined;
|
|
32539
33701
|
relativePath?: string | undefined;
|
|
33702
|
+
connectionId?: string | undefined;
|
|
32540
33703
|
}, {
|
|
32541
33704
|
branch: string;
|
|
32542
33705
|
projectId: string;
|
|
32543
33706
|
url?: string | null | undefined;
|
|
33707
|
+
userId?: number | undefined;
|
|
32544
33708
|
credentialId?: string | undefined;
|
|
32545
33709
|
relativePath?: string | null | undefined;
|
|
33710
|
+
connectionId?: string | undefined;
|
|
32546
33711
|
}>>>;
|
|
32547
33712
|
documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
32548
33713
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
@@ -32560,29 +33725,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32560
33725
|
projectId: string;
|
|
32561
33726
|
repositoryId: string;
|
|
32562
33727
|
url?: string | undefined;
|
|
33728
|
+
userId?: number | undefined;
|
|
32563
33729
|
credentialId?: string | undefined;
|
|
32564
33730
|
relativePath?: string | undefined;
|
|
33731
|
+
connectionId?: string | undefined;
|
|
32565
33732
|
} | null | undefined;
|
|
32566
33733
|
bitbucket?: {
|
|
32567
33734
|
branch: string;
|
|
32568
33735
|
workspaceSlug: string;
|
|
32569
33736
|
projectKey: string;
|
|
32570
33737
|
repoSlug: string;
|
|
33738
|
+
userId?: number | undefined;
|
|
32571
33739
|
credentialId?: string | undefined;
|
|
32572
33740
|
relativePath?: string | undefined;
|
|
33741
|
+
connectionId?: string | undefined;
|
|
32573
33742
|
} | null | undefined;
|
|
32574
33743
|
github?: {
|
|
32575
33744
|
url: string;
|
|
32576
33745
|
branch: string;
|
|
33746
|
+
userId?: number | undefined;
|
|
32577
33747
|
credentialId?: string | undefined;
|
|
32578
33748
|
relativePath?: string | undefined;
|
|
33749
|
+
connectionId?: string | undefined;
|
|
32579
33750
|
} | null | undefined;
|
|
32580
33751
|
gitlab?: {
|
|
32581
33752
|
branch: string;
|
|
32582
33753
|
projectId: string;
|
|
32583
33754
|
url?: string | undefined;
|
|
33755
|
+
userId?: number | undefined;
|
|
32584
33756
|
credentialId?: string | undefined;
|
|
32585
33757
|
relativePath?: string | undefined;
|
|
33758
|
+
connectionId?: string | undefined;
|
|
32586
33759
|
} | null | undefined;
|
|
32587
33760
|
documentation?: {
|
|
32588
33761
|
environment: "Live" | "Preview";
|
|
@@ -32596,29 +33769,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32596
33769
|
projectId: string;
|
|
32597
33770
|
repositoryId: string;
|
|
32598
33771
|
url?: string | null | undefined;
|
|
33772
|
+
userId?: number | undefined;
|
|
32599
33773
|
credentialId?: string | undefined;
|
|
32600
33774
|
relativePath?: string | null | undefined;
|
|
33775
|
+
connectionId?: string | undefined;
|
|
32601
33776
|
} | null | undefined;
|
|
32602
33777
|
bitbucket?: {
|
|
32603
33778
|
branch: string;
|
|
32604
33779
|
workspaceSlug: string;
|
|
32605
33780
|
projectKey: string;
|
|
32606
33781
|
repoSlug: string;
|
|
33782
|
+
userId?: number | undefined;
|
|
32607
33783
|
credentialId?: string | undefined;
|
|
32608
33784
|
relativePath?: string | null | undefined;
|
|
33785
|
+
connectionId?: string | undefined;
|
|
32609
33786
|
} | null | undefined;
|
|
32610
33787
|
github?: {
|
|
32611
33788
|
url: string;
|
|
32612
33789
|
branch: string;
|
|
33790
|
+
userId?: number | undefined;
|
|
32613
33791
|
credentialId?: string | undefined;
|
|
32614
33792
|
relativePath?: string | null | undefined;
|
|
33793
|
+
connectionId?: string | undefined;
|
|
32615
33794
|
} | null | undefined;
|
|
32616
33795
|
gitlab?: {
|
|
32617
33796
|
branch: string;
|
|
32618
33797
|
projectId: string;
|
|
32619
33798
|
url?: string | null | undefined;
|
|
33799
|
+
userId?: number | undefined;
|
|
32620
33800
|
credentialId?: string | undefined;
|
|
32621
33801
|
relativePath?: string | null | undefined;
|
|
33802
|
+
connectionId?: string | undefined;
|
|
32622
33803
|
} | null | undefined;
|
|
32623
33804
|
documentation?: {
|
|
32624
33805
|
environment: "Live" | "Preview";
|
|
@@ -32650,29 +33831,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32650
33831
|
projectId: string;
|
|
32651
33832
|
repositoryId: string;
|
|
32652
33833
|
url?: string | undefined;
|
|
33834
|
+
userId?: number | undefined;
|
|
32653
33835
|
credentialId?: string | undefined;
|
|
32654
33836
|
relativePath?: string | undefined;
|
|
33837
|
+
connectionId?: string | undefined;
|
|
32655
33838
|
} | null | undefined;
|
|
32656
33839
|
bitbucket?: {
|
|
32657
33840
|
branch: string;
|
|
32658
33841
|
workspaceSlug: string;
|
|
32659
33842
|
projectKey: string;
|
|
32660
33843
|
repoSlug: string;
|
|
33844
|
+
userId?: number | undefined;
|
|
32661
33845
|
credentialId?: string | undefined;
|
|
32662
33846
|
relativePath?: string | undefined;
|
|
33847
|
+
connectionId?: string | undefined;
|
|
32663
33848
|
} | null | undefined;
|
|
32664
33849
|
github?: {
|
|
32665
33850
|
url: string;
|
|
32666
33851
|
branch: string;
|
|
33852
|
+
userId?: number | undefined;
|
|
32667
33853
|
credentialId?: string | undefined;
|
|
32668
33854
|
relativePath?: string | undefined;
|
|
33855
|
+
connectionId?: string | undefined;
|
|
32669
33856
|
} | null | undefined;
|
|
32670
33857
|
gitlab?: {
|
|
32671
33858
|
branch: string;
|
|
32672
33859
|
projectId: string;
|
|
32673
33860
|
url?: string | undefined;
|
|
33861
|
+
userId?: number | undefined;
|
|
32674
33862
|
credentialId?: string | undefined;
|
|
32675
33863
|
relativePath?: string | undefined;
|
|
33864
|
+
connectionId?: string | undefined;
|
|
32676
33865
|
} | null | undefined;
|
|
32677
33866
|
documentation?: {
|
|
32678
33867
|
environment: "Live" | "Preview";
|
|
@@ -32704,29 +33893,37 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
32704
33893
|
projectId: string;
|
|
32705
33894
|
repositoryId: string;
|
|
32706
33895
|
url?: string | null | undefined;
|
|
33896
|
+
userId?: number | undefined;
|
|
32707
33897
|
credentialId?: string | undefined;
|
|
32708
33898
|
relativePath?: string | null | undefined;
|
|
33899
|
+
connectionId?: string | undefined;
|
|
32709
33900
|
} | null | undefined;
|
|
32710
33901
|
bitbucket?: {
|
|
32711
33902
|
branch: string;
|
|
32712
33903
|
workspaceSlug: string;
|
|
32713
33904
|
projectKey: string;
|
|
32714
33905
|
repoSlug: string;
|
|
33906
|
+
userId?: number | undefined;
|
|
32715
33907
|
credentialId?: string | undefined;
|
|
32716
33908
|
relativePath?: string | null | undefined;
|
|
33909
|
+
connectionId?: string | undefined;
|
|
32717
33910
|
} | null | undefined;
|
|
32718
33911
|
github?: {
|
|
32719
33912
|
url: string;
|
|
32720
33913
|
branch: string;
|
|
33914
|
+
userId?: number | undefined;
|
|
32721
33915
|
credentialId?: string | undefined;
|
|
32722
33916
|
relativePath?: string | null | undefined;
|
|
33917
|
+
connectionId?: string | undefined;
|
|
32723
33918
|
} | null | undefined;
|
|
32724
33919
|
gitlab?: {
|
|
32725
33920
|
branch: string;
|
|
32726
33921
|
projectId: string;
|
|
32727
33922
|
url?: string | null | undefined;
|
|
33923
|
+
userId?: number | undefined;
|
|
32728
33924
|
credentialId?: string | undefined;
|
|
32729
33925
|
relativePath?: string | null | undefined;
|
|
33926
|
+
connectionId?: string | undefined;
|
|
32730
33927
|
} | null | undefined;
|
|
32731
33928
|
documentation?: {
|
|
32732
33929
|
environment: "Live" | "Preview";
|
|
@@ -35836,4 +37033,4 @@ declare const BlockDefinitionUtils: {
|
|
|
35836
37033
|
};
|
|
35837
37034
|
};
|
|
35838
37035
|
|
|
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 };
|
|
37036
|
+
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 };
|