@supernova-studio/client 0.47.52 → 0.47.54
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 +884 -1
- package/dist/index.d.ts +884 -1
- package/dist/index.js +109 -103
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +294 -288
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/documentation/publish.ts +8 -0
package/dist/index.d.mts
CHANGED
|
@@ -6834,6 +6834,889 @@ declare const DTOPublishDocumentationRequest: z.ZodObject<{
|
|
|
6834
6834
|
}, {
|
|
6835
6835
|
environment: "Live" | "Preview";
|
|
6836
6836
|
}>;
|
|
6837
|
+
type DTOPublishDocumentationRequest = z.infer<typeof DTOPublishDocumentationRequest>;
|
|
6838
|
+
declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
6839
|
+
job: z.ZodObject<{
|
|
6840
|
+
id: z.ZodString;
|
|
6841
|
+
createdAt: z.ZodDate;
|
|
6842
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
6843
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
6844
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
6845
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
6846
|
+
createdBy: z.ZodOptional<z.ZodObject<{
|
|
6847
|
+
userId: z.ZodString;
|
|
6848
|
+
userName: z.ZodString;
|
|
6849
|
+
}, "strip", z.ZodTypeAny, {
|
|
6850
|
+
userId: string;
|
|
6851
|
+
userName: string;
|
|
6852
|
+
}, {
|
|
6853
|
+
userId: string;
|
|
6854
|
+
userName: string;
|
|
6855
|
+
}>>;
|
|
6856
|
+
designSystem: z.ZodObject<{
|
|
6857
|
+
id: z.ZodString;
|
|
6858
|
+
meta: z.ZodObject<{
|
|
6859
|
+
name: z.ZodString;
|
|
6860
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6861
|
+
}, "strip", z.ZodTypeAny, {
|
|
6862
|
+
name: string;
|
|
6863
|
+
description?: string | undefined;
|
|
6864
|
+
}, {
|
|
6865
|
+
name: string;
|
|
6866
|
+
description?: string | undefined;
|
|
6867
|
+
}>;
|
|
6868
|
+
}, "strip", z.ZodTypeAny, {
|
|
6869
|
+
id: string;
|
|
6870
|
+
meta: {
|
|
6871
|
+
name: string;
|
|
6872
|
+
description?: string | undefined;
|
|
6873
|
+
};
|
|
6874
|
+
}, {
|
|
6875
|
+
id: string;
|
|
6876
|
+
meta: {
|
|
6877
|
+
name: string;
|
|
6878
|
+
description?: string | undefined;
|
|
6879
|
+
};
|
|
6880
|
+
}>;
|
|
6881
|
+
designSystemVersion: z.ZodObject<{
|
|
6882
|
+
id: z.ZodString;
|
|
6883
|
+
meta: z.ZodObject<{
|
|
6884
|
+
name: z.ZodString;
|
|
6885
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6886
|
+
}, "strip", z.ZodTypeAny, {
|
|
6887
|
+
name: string;
|
|
6888
|
+
description?: string | undefined;
|
|
6889
|
+
}, {
|
|
6890
|
+
name: string;
|
|
6891
|
+
description?: string | undefined;
|
|
6892
|
+
}>;
|
|
6893
|
+
version: z.ZodString;
|
|
6894
|
+
isReadonly: z.ZodBoolean;
|
|
6895
|
+
}, "strip", z.ZodTypeAny, {
|
|
6896
|
+
id: string;
|
|
6897
|
+
meta: {
|
|
6898
|
+
name: string;
|
|
6899
|
+
description?: string | undefined;
|
|
6900
|
+
};
|
|
6901
|
+
version: string;
|
|
6902
|
+
isReadonly: boolean;
|
|
6903
|
+
}, {
|
|
6904
|
+
id: string;
|
|
6905
|
+
meta: {
|
|
6906
|
+
name: string;
|
|
6907
|
+
description?: string | undefined;
|
|
6908
|
+
};
|
|
6909
|
+
version: string;
|
|
6910
|
+
isReadonly: boolean;
|
|
6911
|
+
}>;
|
|
6912
|
+
destinations: z.ZodObject<{
|
|
6913
|
+
s3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
6914
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
6915
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
6916
|
+
organizationId: z.ZodString;
|
|
6917
|
+
projectId: z.ZodString;
|
|
6918
|
+
repositoryId: z.ZodString;
|
|
6919
|
+
branch: z.ZodString;
|
|
6920
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6921
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6922
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6923
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
6924
|
+
}, "strip", z.ZodTypeAny, {
|
|
6925
|
+
branch: string;
|
|
6926
|
+
organizationId: string;
|
|
6927
|
+
projectId: string;
|
|
6928
|
+
repositoryId: string;
|
|
6929
|
+
url?: string | undefined;
|
|
6930
|
+
credentialId?: string | undefined;
|
|
6931
|
+
relativePath?: string | undefined;
|
|
6932
|
+
connectionId?: string | undefined;
|
|
6933
|
+
userId?: number | undefined;
|
|
6934
|
+
}, {
|
|
6935
|
+
branch: string;
|
|
6936
|
+
organizationId: string;
|
|
6937
|
+
projectId: string;
|
|
6938
|
+
repositoryId: string;
|
|
6939
|
+
url?: string | null | undefined;
|
|
6940
|
+
credentialId?: string | undefined;
|
|
6941
|
+
relativePath?: string | null | undefined;
|
|
6942
|
+
connectionId?: string | null | undefined;
|
|
6943
|
+
userId?: number | null | undefined;
|
|
6944
|
+
}>>;
|
|
6945
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
6946
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
6947
|
+
workspaceSlug: z.ZodString;
|
|
6948
|
+
projectKey: z.ZodString;
|
|
6949
|
+
repoSlug: z.ZodString;
|
|
6950
|
+
branch: z.ZodString;
|
|
6951
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6952
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6953
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
6954
|
+
}, "strip", z.ZodTypeAny, {
|
|
6955
|
+
branch: string;
|
|
6956
|
+
workspaceSlug: string;
|
|
6957
|
+
projectKey: string;
|
|
6958
|
+
repoSlug: string;
|
|
6959
|
+
credentialId?: string | undefined;
|
|
6960
|
+
relativePath?: string | undefined;
|
|
6961
|
+
connectionId?: string | undefined;
|
|
6962
|
+
userId?: number | undefined;
|
|
6963
|
+
}, {
|
|
6964
|
+
branch: string;
|
|
6965
|
+
workspaceSlug: string;
|
|
6966
|
+
projectKey: string;
|
|
6967
|
+
repoSlug: string;
|
|
6968
|
+
credentialId?: string | undefined;
|
|
6969
|
+
relativePath?: string | null | undefined;
|
|
6970
|
+
connectionId?: string | null | undefined;
|
|
6971
|
+
userId?: number | null | undefined;
|
|
6972
|
+
}>>;
|
|
6973
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
6974
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
6975
|
+
url: z.ZodString;
|
|
6976
|
+
branch: z.ZodString;
|
|
6977
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6978
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6979
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
6980
|
+
}, "strip", z.ZodTypeAny, {
|
|
6981
|
+
url: string;
|
|
6982
|
+
branch: string;
|
|
6983
|
+
credentialId?: string | undefined;
|
|
6984
|
+
relativePath?: string | undefined;
|
|
6985
|
+
connectionId?: string | undefined;
|
|
6986
|
+
userId?: number | undefined;
|
|
6987
|
+
}, {
|
|
6988
|
+
url: string;
|
|
6989
|
+
branch: string;
|
|
6990
|
+
credentialId?: string | undefined;
|
|
6991
|
+
relativePath?: string | null | undefined;
|
|
6992
|
+
connectionId?: string | null | undefined;
|
|
6993
|
+
userId?: number | null | undefined;
|
|
6994
|
+
}>>;
|
|
6995
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
6996
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
6997
|
+
projectId: z.ZodString;
|
|
6998
|
+
branch: z.ZodString;
|
|
6999
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7000
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7001
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
7002
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
7003
|
+
}, "strip", z.ZodTypeAny, {
|
|
7004
|
+
branch: string;
|
|
7005
|
+
projectId: string;
|
|
7006
|
+
url?: string | undefined;
|
|
7007
|
+
credentialId?: string | undefined;
|
|
7008
|
+
relativePath?: string | undefined;
|
|
7009
|
+
connectionId?: string | undefined;
|
|
7010
|
+
userId?: number | undefined;
|
|
7011
|
+
}, {
|
|
7012
|
+
branch: string;
|
|
7013
|
+
projectId: string;
|
|
7014
|
+
url?: string | null | undefined;
|
|
7015
|
+
credentialId?: string | undefined;
|
|
7016
|
+
relativePath?: string | null | undefined;
|
|
7017
|
+
connectionId?: string | null | undefined;
|
|
7018
|
+
userId?: number | null | undefined;
|
|
7019
|
+
}>>;
|
|
7020
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
7021
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
7022
|
+
}, "strip", z.ZodTypeAny, {
|
|
7023
|
+
environment: "Live" | "Preview";
|
|
7024
|
+
}, {
|
|
7025
|
+
environment: "Live" | "Preview";
|
|
7026
|
+
}>>;
|
|
7027
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
7028
|
+
}, "strip", z.ZodTypeAny, {
|
|
7029
|
+
s3?: {} | undefined;
|
|
7030
|
+
azure?: {
|
|
7031
|
+
branch: string;
|
|
7032
|
+
organizationId: string;
|
|
7033
|
+
projectId: string;
|
|
7034
|
+
repositoryId: string;
|
|
7035
|
+
url?: string | undefined;
|
|
7036
|
+
credentialId?: string | undefined;
|
|
7037
|
+
relativePath?: string | undefined;
|
|
7038
|
+
connectionId?: string | undefined;
|
|
7039
|
+
userId?: number | undefined;
|
|
7040
|
+
} | undefined;
|
|
7041
|
+
bitbucket?: {
|
|
7042
|
+
branch: string;
|
|
7043
|
+
workspaceSlug: string;
|
|
7044
|
+
projectKey: string;
|
|
7045
|
+
repoSlug: string;
|
|
7046
|
+
credentialId?: string | undefined;
|
|
7047
|
+
relativePath?: string | undefined;
|
|
7048
|
+
connectionId?: string | undefined;
|
|
7049
|
+
userId?: number | undefined;
|
|
7050
|
+
} | undefined;
|
|
7051
|
+
github?: {
|
|
7052
|
+
url: string;
|
|
7053
|
+
branch: string;
|
|
7054
|
+
credentialId?: string | undefined;
|
|
7055
|
+
relativePath?: string | undefined;
|
|
7056
|
+
connectionId?: string | undefined;
|
|
7057
|
+
userId?: number | undefined;
|
|
7058
|
+
} | undefined;
|
|
7059
|
+
gitlab?: {
|
|
7060
|
+
branch: string;
|
|
7061
|
+
projectId: string;
|
|
7062
|
+
url?: string | undefined;
|
|
7063
|
+
credentialId?: string | undefined;
|
|
7064
|
+
relativePath?: string | undefined;
|
|
7065
|
+
connectionId?: string | undefined;
|
|
7066
|
+
userId?: number | undefined;
|
|
7067
|
+
} | undefined;
|
|
7068
|
+
documentation?: {
|
|
7069
|
+
environment: "Live" | "Preview";
|
|
7070
|
+
} | undefined;
|
|
7071
|
+
webhookUrl?: string | undefined;
|
|
7072
|
+
}, {
|
|
7073
|
+
s3?: {} | undefined;
|
|
7074
|
+
azure?: {
|
|
7075
|
+
branch: string;
|
|
7076
|
+
organizationId: string;
|
|
7077
|
+
projectId: string;
|
|
7078
|
+
repositoryId: string;
|
|
7079
|
+
url?: string | null | undefined;
|
|
7080
|
+
credentialId?: string | undefined;
|
|
7081
|
+
relativePath?: string | null | undefined;
|
|
7082
|
+
connectionId?: string | null | undefined;
|
|
7083
|
+
userId?: number | null | undefined;
|
|
7084
|
+
} | undefined;
|
|
7085
|
+
bitbucket?: {
|
|
7086
|
+
branch: string;
|
|
7087
|
+
workspaceSlug: string;
|
|
7088
|
+
projectKey: string;
|
|
7089
|
+
repoSlug: string;
|
|
7090
|
+
credentialId?: string | undefined;
|
|
7091
|
+
relativePath?: string | null | undefined;
|
|
7092
|
+
connectionId?: string | null | undefined;
|
|
7093
|
+
userId?: number | null | undefined;
|
|
7094
|
+
} | undefined;
|
|
7095
|
+
github?: {
|
|
7096
|
+
url: string;
|
|
7097
|
+
branch: string;
|
|
7098
|
+
credentialId?: string | undefined;
|
|
7099
|
+
relativePath?: string | null | undefined;
|
|
7100
|
+
connectionId?: string | null | undefined;
|
|
7101
|
+
userId?: number | null | undefined;
|
|
7102
|
+
} | undefined;
|
|
7103
|
+
gitlab?: {
|
|
7104
|
+
branch: string;
|
|
7105
|
+
projectId: string;
|
|
7106
|
+
url?: string | null | undefined;
|
|
7107
|
+
credentialId?: string | undefined;
|
|
7108
|
+
relativePath?: string | null | undefined;
|
|
7109
|
+
connectionId?: string | null | undefined;
|
|
7110
|
+
userId?: number | null | undefined;
|
|
7111
|
+
} | undefined;
|
|
7112
|
+
documentation?: {
|
|
7113
|
+
environment: "Live" | "Preview";
|
|
7114
|
+
} | undefined;
|
|
7115
|
+
webhookUrl?: string | undefined;
|
|
7116
|
+
}>;
|
|
7117
|
+
exporterId: z.ZodString;
|
|
7118
|
+
scheduleId: z.ZodOptional<z.ZodString>;
|
|
7119
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
7120
|
+
error: z.ZodOptional<z.ZodString>;
|
|
7121
|
+
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7122
|
+
path: string;
|
|
7123
|
+
files: string[];
|
|
7124
|
+
bucket: string;
|
|
7125
|
+
url?: string | undefined;
|
|
7126
|
+
urlPrefix?: string | undefined;
|
|
7127
|
+
urls?: string[] | undefined;
|
|
7128
|
+
}, z.ZodTypeDef, {
|
|
7129
|
+
path: string;
|
|
7130
|
+
files: string[];
|
|
7131
|
+
bucket: string;
|
|
7132
|
+
url?: string | null | undefined;
|
|
7133
|
+
urlPrefix?: string | undefined;
|
|
7134
|
+
urls?: string[] | null | undefined;
|
|
7135
|
+
}>>>, {
|
|
7136
|
+
path: string;
|
|
7137
|
+
files: string[];
|
|
7138
|
+
bucket: string;
|
|
7139
|
+
url?: string | undefined;
|
|
7140
|
+
urlPrefix?: string | undefined;
|
|
7141
|
+
urls?: string[] | undefined;
|
|
7142
|
+
} | undefined, {
|
|
7143
|
+
path: string;
|
|
7144
|
+
files: string[];
|
|
7145
|
+
bucket: string;
|
|
7146
|
+
url?: string | null | undefined;
|
|
7147
|
+
urlPrefix?: string | undefined;
|
|
7148
|
+
urls?: string[] | null | undefined;
|
|
7149
|
+
} | null | undefined>;
|
|
7150
|
+
github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7151
|
+
pullRequestUrl: string;
|
|
7152
|
+
}, z.ZodTypeDef, {
|
|
7153
|
+
pullRequestUrl: string;
|
|
7154
|
+
}>>>, {
|
|
7155
|
+
pullRequestUrl: string;
|
|
7156
|
+
} | undefined, {
|
|
7157
|
+
pullRequestUrl: string;
|
|
7158
|
+
} | null | undefined>;
|
|
7159
|
+
azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7160
|
+
pullRequestUrl: string;
|
|
7161
|
+
}, z.ZodTypeDef, {
|
|
7162
|
+
pullRequestUrl: string;
|
|
7163
|
+
}>>>, {
|
|
7164
|
+
pullRequestUrl: string;
|
|
7165
|
+
} | undefined, {
|
|
7166
|
+
pullRequestUrl: string;
|
|
7167
|
+
} | null | undefined>;
|
|
7168
|
+
gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7169
|
+
pullRequestUrl: string;
|
|
7170
|
+
}, z.ZodTypeDef, {
|
|
7171
|
+
pullRequestUrl: string;
|
|
7172
|
+
}>>>, {
|
|
7173
|
+
pullRequestUrl: string;
|
|
7174
|
+
} | undefined, {
|
|
7175
|
+
pullRequestUrl: string;
|
|
7176
|
+
} | null | undefined>;
|
|
7177
|
+
bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7178
|
+
pullRequestUrl: string;
|
|
7179
|
+
}, z.ZodTypeDef, {
|
|
7180
|
+
pullRequestUrl: string;
|
|
7181
|
+
}>>>, {
|
|
7182
|
+
pullRequestUrl: string;
|
|
7183
|
+
} | undefined, {
|
|
7184
|
+
pullRequestUrl: string;
|
|
7185
|
+
} | null | undefined>;
|
|
7186
|
+
sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7187
|
+
url: string;
|
|
7188
|
+
}, z.ZodTypeDef, {
|
|
7189
|
+
url: string;
|
|
7190
|
+
}>>>, {
|
|
7191
|
+
url: string;
|
|
7192
|
+
} | undefined, {
|
|
7193
|
+
url: string;
|
|
7194
|
+
} | null | undefined>;
|
|
7195
|
+
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7196
|
+
message: string;
|
|
7197
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7198
|
+
time: Date;
|
|
7199
|
+
id?: string | undefined;
|
|
7200
|
+
}[], z.ZodTypeDef, {
|
|
7201
|
+
message: string;
|
|
7202
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7203
|
+
time: Date;
|
|
7204
|
+
id?: string | undefined;
|
|
7205
|
+
}[]>>>, {
|
|
7206
|
+
message: string;
|
|
7207
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7208
|
+
time: Date;
|
|
7209
|
+
id?: string | undefined;
|
|
7210
|
+
}[] | undefined, {
|
|
7211
|
+
message: string;
|
|
7212
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7213
|
+
time: Date;
|
|
7214
|
+
id?: string | undefined;
|
|
7215
|
+
}[] | null | undefined>;
|
|
7216
|
+
}, "strip", z.ZodTypeAny, {
|
|
7217
|
+
error?: string | undefined;
|
|
7218
|
+
azure?: {
|
|
7219
|
+
pullRequestUrl: string;
|
|
7220
|
+
} | undefined;
|
|
7221
|
+
github?: {
|
|
7222
|
+
pullRequestUrl: string;
|
|
7223
|
+
} | undefined;
|
|
7224
|
+
gitlab?: {
|
|
7225
|
+
pullRequestUrl: string;
|
|
7226
|
+
} | undefined;
|
|
7227
|
+
bitbucket?: {
|
|
7228
|
+
pullRequestUrl: string;
|
|
7229
|
+
} | undefined;
|
|
7230
|
+
logs?: {
|
|
7231
|
+
message: string;
|
|
7232
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7233
|
+
time: Date;
|
|
7234
|
+
id?: string | undefined;
|
|
7235
|
+
}[] | undefined;
|
|
7236
|
+
s3?: {
|
|
7237
|
+
path: string;
|
|
7238
|
+
files: string[];
|
|
7239
|
+
bucket: string;
|
|
7240
|
+
url?: string | undefined;
|
|
7241
|
+
urlPrefix?: string | undefined;
|
|
7242
|
+
urls?: string[] | undefined;
|
|
7243
|
+
} | undefined;
|
|
7244
|
+
sndocs?: {
|
|
7245
|
+
url: string;
|
|
7246
|
+
} | undefined;
|
|
7247
|
+
}, {
|
|
7248
|
+
error?: string | undefined;
|
|
7249
|
+
azure?: {
|
|
7250
|
+
pullRequestUrl: string;
|
|
7251
|
+
} | null | undefined;
|
|
7252
|
+
github?: {
|
|
7253
|
+
pullRequestUrl: string;
|
|
7254
|
+
} | null | undefined;
|
|
7255
|
+
gitlab?: {
|
|
7256
|
+
pullRequestUrl: string;
|
|
7257
|
+
} | null | undefined;
|
|
7258
|
+
bitbucket?: {
|
|
7259
|
+
pullRequestUrl: string;
|
|
7260
|
+
} | null | undefined;
|
|
7261
|
+
logs?: {
|
|
7262
|
+
message: string;
|
|
7263
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7264
|
+
time: Date;
|
|
7265
|
+
id?: string | undefined;
|
|
7266
|
+
}[] | null | undefined;
|
|
7267
|
+
s3?: {
|
|
7268
|
+
path: string;
|
|
7269
|
+
files: string[];
|
|
7270
|
+
bucket: string;
|
|
7271
|
+
url?: string | null | undefined;
|
|
7272
|
+
urlPrefix?: string | undefined;
|
|
7273
|
+
urls?: string[] | null | undefined;
|
|
7274
|
+
} | null | undefined;
|
|
7275
|
+
sndocs?: {
|
|
7276
|
+
url: string;
|
|
7277
|
+
} | null | undefined;
|
|
7278
|
+
}>>;
|
|
7279
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
7280
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
7281
|
+
}, "strip", z.ZodTypeAny, {
|
|
7282
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
7283
|
+
id: string;
|
|
7284
|
+
createdAt: Date;
|
|
7285
|
+
exporterId: string;
|
|
7286
|
+
destinations: {
|
|
7287
|
+
s3?: {} | undefined;
|
|
7288
|
+
azure?: {
|
|
7289
|
+
branch: string;
|
|
7290
|
+
organizationId: string;
|
|
7291
|
+
projectId: string;
|
|
7292
|
+
repositoryId: string;
|
|
7293
|
+
url?: string | undefined;
|
|
7294
|
+
credentialId?: string | undefined;
|
|
7295
|
+
relativePath?: string | undefined;
|
|
7296
|
+
connectionId?: string | undefined;
|
|
7297
|
+
userId?: number | undefined;
|
|
7298
|
+
} | undefined;
|
|
7299
|
+
bitbucket?: {
|
|
7300
|
+
branch: string;
|
|
7301
|
+
workspaceSlug: string;
|
|
7302
|
+
projectKey: string;
|
|
7303
|
+
repoSlug: string;
|
|
7304
|
+
credentialId?: string | undefined;
|
|
7305
|
+
relativePath?: string | undefined;
|
|
7306
|
+
connectionId?: string | undefined;
|
|
7307
|
+
userId?: number | undefined;
|
|
7308
|
+
} | undefined;
|
|
7309
|
+
github?: {
|
|
7310
|
+
url: string;
|
|
7311
|
+
branch: string;
|
|
7312
|
+
credentialId?: string | undefined;
|
|
7313
|
+
relativePath?: string | undefined;
|
|
7314
|
+
connectionId?: string | undefined;
|
|
7315
|
+
userId?: number | undefined;
|
|
7316
|
+
} | undefined;
|
|
7317
|
+
gitlab?: {
|
|
7318
|
+
branch: string;
|
|
7319
|
+
projectId: string;
|
|
7320
|
+
url?: string | undefined;
|
|
7321
|
+
credentialId?: string | undefined;
|
|
7322
|
+
relativePath?: string | undefined;
|
|
7323
|
+
connectionId?: string | undefined;
|
|
7324
|
+
userId?: number | undefined;
|
|
7325
|
+
} | undefined;
|
|
7326
|
+
documentation?: {
|
|
7327
|
+
environment: "Live" | "Preview";
|
|
7328
|
+
} | undefined;
|
|
7329
|
+
webhookUrl?: string | undefined;
|
|
7330
|
+
};
|
|
7331
|
+
designSystemVersion: {
|
|
7332
|
+
id: string;
|
|
7333
|
+
meta: {
|
|
7334
|
+
name: string;
|
|
7335
|
+
description?: string | undefined;
|
|
7336
|
+
};
|
|
7337
|
+
version: string;
|
|
7338
|
+
isReadonly: boolean;
|
|
7339
|
+
};
|
|
7340
|
+
designSystem: {
|
|
7341
|
+
id: string;
|
|
7342
|
+
meta: {
|
|
7343
|
+
name: string;
|
|
7344
|
+
description?: string | undefined;
|
|
7345
|
+
};
|
|
7346
|
+
};
|
|
7347
|
+
brandPersistentId?: string | undefined;
|
|
7348
|
+
themePersistentId?: string | undefined;
|
|
7349
|
+
finishedAt?: Date | undefined;
|
|
7350
|
+
index?: number | undefined;
|
|
7351
|
+
estimatedExecutionTime?: number | undefined;
|
|
7352
|
+
createdBy?: {
|
|
7353
|
+
userId: string;
|
|
7354
|
+
userName: string;
|
|
7355
|
+
} | undefined;
|
|
7356
|
+
scheduleId?: string | undefined;
|
|
7357
|
+
result?: {
|
|
7358
|
+
error?: string | undefined;
|
|
7359
|
+
azure?: {
|
|
7360
|
+
pullRequestUrl: string;
|
|
7361
|
+
} | undefined;
|
|
7362
|
+
github?: {
|
|
7363
|
+
pullRequestUrl: string;
|
|
7364
|
+
} | undefined;
|
|
7365
|
+
gitlab?: {
|
|
7366
|
+
pullRequestUrl: string;
|
|
7367
|
+
} | undefined;
|
|
7368
|
+
bitbucket?: {
|
|
7369
|
+
pullRequestUrl: string;
|
|
7370
|
+
} | undefined;
|
|
7371
|
+
logs?: {
|
|
7372
|
+
message: string;
|
|
7373
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7374
|
+
time: Date;
|
|
7375
|
+
id?: string | undefined;
|
|
7376
|
+
}[] | undefined;
|
|
7377
|
+
s3?: {
|
|
7378
|
+
path: string;
|
|
7379
|
+
files: string[];
|
|
7380
|
+
bucket: string;
|
|
7381
|
+
url?: string | undefined;
|
|
7382
|
+
urlPrefix?: string | undefined;
|
|
7383
|
+
urls?: string[] | undefined;
|
|
7384
|
+
} | undefined;
|
|
7385
|
+
sndocs?: {
|
|
7386
|
+
url: string;
|
|
7387
|
+
} | undefined;
|
|
7388
|
+
} | undefined;
|
|
7389
|
+
}, {
|
|
7390
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
7391
|
+
id: string;
|
|
7392
|
+
createdAt: Date;
|
|
7393
|
+
exporterId: string;
|
|
7394
|
+
destinations: {
|
|
7395
|
+
s3?: {} | undefined;
|
|
7396
|
+
azure?: {
|
|
7397
|
+
branch: string;
|
|
7398
|
+
organizationId: string;
|
|
7399
|
+
projectId: string;
|
|
7400
|
+
repositoryId: string;
|
|
7401
|
+
url?: string | null | undefined;
|
|
7402
|
+
credentialId?: string | undefined;
|
|
7403
|
+
relativePath?: string | null | undefined;
|
|
7404
|
+
connectionId?: string | null | undefined;
|
|
7405
|
+
userId?: number | null | undefined;
|
|
7406
|
+
} | undefined;
|
|
7407
|
+
bitbucket?: {
|
|
7408
|
+
branch: string;
|
|
7409
|
+
workspaceSlug: string;
|
|
7410
|
+
projectKey: string;
|
|
7411
|
+
repoSlug: string;
|
|
7412
|
+
credentialId?: string | undefined;
|
|
7413
|
+
relativePath?: string | null | undefined;
|
|
7414
|
+
connectionId?: string | null | undefined;
|
|
7415
|
+
userId?: number | null | undefined;
|
|
7416
|
+
} | undefined;
|
|
7417
|
+
github?: {
|
|
7418
|
+
url: string;
|
|
7419
|
+
branch: string;
|
|
7420
|
+
credentialId?: string | undefined;
|
|
7421
|
+
relativePath?: string | null | undefined;
|
|
7422
|
+
connectionId?: string | null | undefined;
|
|
7423
|
+
userId?: number | null | undefined;
|
|
7424
|
+
} | undefined;
|
|
7425
|
+
gitlab?: {
|
|
7426
|
+
branch: string;
|
|
7427
|
+
projectId: string;
|
|
7428
|
+
url?: string | null | undefined;
|
|
7429
|
+
credentialId?: string | undefined;
|
|
7430
|
+
relativePath?: string | null | undefined;
|
|
7431
|
+
connectionId?: string | null | undefined;
|
|
7432
|
+
userId?: number | null | undefined;
|
|
7433
|
+
} | undefined;
|
|
7434
|
+
documentation?: {
|
|
7435
|
+
environment: "Live" | "Preview";
|
|
7436
|
+
} | undefined;
|
|
7437
|
+
webhookUrl?: string | undefined;
|
|
7438
|
+
};
|
|
7439
|
+
designSystemVersion: {
|
|
7440
|
+
id: string;
|
|
7441
|
+
meta: {
|
|
7442
|
+
name: string;
|
|
7443
|
+
description?: string | undefined;
|
|
7444
|
+
};
|
|
7445
|
+
version: string;
|
|
7446
|
+
isReadonly: boolean;
|
|
7447
|
+
};
|
|
7448
|
+
designSystem: {
|
|
7449
|
+
id: string;
|
|
7450
|
+
meta: {
|
|
7451
|
+
name: string;
|
|
7452
|
+
description?: string | undefined;
|
|
7453
|
+
};
|
|
7454
|
+
};
|
|
7455
|
+
brandPersistentId?: string | undefined;
|
|
7456
|
+
themePersistentId?: string | undefined;
|
|
7457
|
+
finishedAt?: Date | undefined;
|
|
7458
|
+
index?: number | undefined;
|
|
7459
|
+
estimatedExecutionTime?: number | undefined;
|
|
7460
|
+
createdBy?: {
|
|
7461
|
+
userId: string;
|
|
7462
|
+
userName: string;
|
|
7463
|
+
} | undefined;
|
|
7464
|
+
scheduleId?: string | undefined;
|
|
7465
|
+
result?: {
|
|
7466
|
+
error?: string | undefined;
|
|
7467
|
+
azure?: {
|
|
7468
|
+
pullRequestUrl: string;
|
|
7469
|
+
} | null | undefined;
|
|
7470
|
+
github?: {
|
|
7471
|
+
pullRequestUrl: string;
|
|
7472
|
+
} | null | undefined;
|
|
7473
|
+
gitlab?: {
|
|
7474
|
+
pullRequestUrl: string;
|
|
7475
|
+
} | null | undefined;
|
|
7476
|
+
bitbucket?: {
|
|
7477
|
+
pullRequestUrl: string;
|
|
7478
|
+
} | null | undefined;
|
|
7479
|
+
logs?: {
|
|
7480
|
+
message: string;
|
|
7481
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7482
|
+
time: Date;
|
|
7483
|
+
id?: string | undefined;
|
|
7484
|
+
}[] | null | undefined;
|
|
7485
|
+
s3?: {
|
|
7486
|
+
path: string;
|
|
7487
|
+
files: string[];
|
|
7488
|
+
bucket: string;
|
|
7489
|
+
url?: string | null | undefined;
|
|
7490
|
+
urlPrefix?: string | undefined;
|
|
7491
|
+
urls?: string[] | null | undefined;
|
|
7492
|
+
} | null | undefined;
|
|
7493
|
+
sndocs?: {
|
|
7494
|
+
url: string;
|
|
7495
|
+
} | null | undefined;
|
|
7496
|
+
} | undefined;
|
|
7497
|
+
}>;
|
|
7498
|
+
}, "strip", z.ZodTypeAny, {
|
|
7499
|
+
job: {
|
|
7500
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
7501
|
+
id: string;
|
|
7502
|
+
createdAt: Date;
|
|
7503
|
+
exporterId: string;
|
|
7504
|
+
destinations: {
|
|
7505
|
+
s3?: {} | undefined;
|
|
7506
|
+
azure?: {
|
|
7507
|
+
branch: string;
|
|
7508
|
+
organizationId: string;
|
|
7509
|
+
projectId: string;
|
|
7510
|
+
repositoryId: string;
|
|
7511
|
+
url?: string | undefined;
|
|
7512
|
+
credentialId?: string | undefined;
|
|
7513
|
+
relativePath?: string | undefined;
|
|
7514
|
+
connectionId?: string | undefined;
|
|
7515
|
+
userId?: number | undefined;
|
|
7516
|
+
} | undefined;
|
|
7517
|
+
bitbucket?: {
|
|
7518
|
+
branch: string;
|
|
7519
|
+
workspaceSlug: string;
|
|
7520
|
+
projectKey: string;
|
|
7521
|
+
repoSlug: string;
|
|
7522
|
+
credentialId?: string | undefined;
|
|
7523
|
+
relativePath?: string | undefined;
|
|
7524
|
+
connectionId?: string | undefined;
|
|
7525
|
+
userId?: number | undefined;
|
|
7526
|
+
} | undefined;
|
|
7527
|
+
github?: {
|
|
7528
|
+
url: string;
|
|
7529
|
+
branch: string;
|
|
7530
|
+
credentialId?: string | undefined;
|
|
7531
|
+
relativePath?: string | undefined;
|
|
7532
|
+
connectionId?: string | undefined;
|
|
7533
|
+
userId?: number | undefined;
|
|
7534
|
+
} | undefined;
|
|
7535
|
+
gitlab?: {
|
|
7536
|
+
branch: string;
|
|
7537
|
+
projectId: string;
|
|
7538
|
+
url?: string | undefined;
|
|
7539
|
+
credentialId?: string | undefined;
|
|
7540
|
+
relativePath?: string | undefined;
|
|
7541
|
+
connectionId?: string | undefined;
|
|
7542
|
+
userId?: number | undefined;
|
|
7543
|
+
} | undefined;
|
|
7544
|
+
documentation?: {
|
|
7545
|
+
environment: "Live" | "Preview";
|
|
7546
|
+
} | undefined;
|
|
7547
|
+
webhookUrl?: string | undefined;
|
|
7548
|
+
};
|
|
7549
|
+
designSystemVersion: {
|
|
7550
|
+
id: string;
|
|
7551
|
+
meta: {
|
|
7552
|
+
name: string;
|
|
7553
|
+
description?: string | undefined;
|
|
7554
|
+
};
|
|
7555
|
+
version: string;
|
|
7556
|
+
isReadonly: boolean;
|
|
7557
|
+
};
|
|
7558
|
+
designSystem: {
|
|
7559
|
+
id: string;
|
|
7560
|
+
meta: {
|
|
7561
|
+
name: string;
|
|
7562
|
+
description?: string | undefined;
|
|
7563
|
+
};
|
|
7564
|
+
};
|
|
7565
|
+
brandPersistentId?: string | undefined;
|
|
7566
|
+
themePersistentId?: string | undefined;
|
|
7567
|
+
finishedAt?: Date | undefined;
|
|
7568
|
+
index?: number | undefined;
|
|
7569
|
+
estimatedExecutionTime?: number | undefined;
|
|
7570
|
+
createdBy?: {
|
|
7571
|
+
userId: string;
|
|
7572
|
+
userName: string;
|
|
7573
|
+
} | undefined;
|
|
7574
|
+
scheduleId?: string | undefined;
|
|
7575
|
+
result?: {
|
|
7576
|
+
error?: string | undefined;
|
|
7577
|
+
azure?: {
|
|
7578
|
+
pullRequestUrl: string;
|
|
7579
|
+
} | undefined;
|
|
7580
|
+
github?: {
|
|
7581
|
+
pullRequestUrl: string;
|
|
7582
|
+
} | undefined;
|
|
7583
|
+
gitlab?: {
|
|
7584
|
+
pullRequestUrl: string;
|
|
7585
|
+
} | undefined;
|
|
7586
|
+
bitbucket?: {
|
|
7587
|
+
pullRequestUrl: string;
|
|
7588
|
+
} | undefined;
|
|
7589
|
+
logs?: {
|
|
7590
|
+
message: string;
|
|
7591
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7592
|
+
time: Date;
|
|
7593
|
+
id?: string | undefined;
|
|
7594
|
+
}[] | undefined;
|
|
7595
|
+
s3?: {
|
|
7596
|
+
path: string;
|
|
7597
|
+
files: string[];
|
|
7598
|
+
bucket: string;
|
|
7599
|
+
url?: string | undefined;
|
|
7600
|
+
urlPrefix?: string | undefined;
|
|
7601
|
+
urls?: string[] | undefined;
|
|
7602
|
+
} | undefined;
|
|
7603
|
+
sndocs?: {
|
|
7604
|
+
url: string;
|
|
7605
|
+
} | undefined;
|
|
7606
|
+
} | undefined;
|
|
7607
|
+
};
|
|
7608
|
+
}, {
|
|
7609
|
+
job: {
|
|
7610
|
+
status: "InProgress" | "Success" | "Failed" | "Timeout";
|
|
7611
|
+
id: string;
|
|
7612
|
+
createdAt: Date;
|
|
7613
|
+
exporterId: string;
|
|
7614
|
+
destinations: {
|
|
7615
|
+
s3?: {} | undefined;
|
|
7616
|
+
azure?: {
|
|
7617
|
+
branch: string;
|
|
7618
|
+
organizationId: string;
|
|
7619
|
+
projectId: string;
|
|
7620
|
+
repositoryId: string;
|
|
7621
|
+
url?: string | null | undefined;
|
|
7622
|
+
credentialId?: string | undefined;
|
|
7623
|
+
relativePath?: string | null | undefined;
|
|
7624
|
+
connectionId?: string | null | undefined;
|
|
7625
|
+
userId?: number | null | undefined;
|
|
7626
|
+
} | undefined;
|
|
7627
|
+
bitbucket?: {
|
|
7628
|
+
branch: string;
|
|
7629
|
+
workspaceSlug: string;
|
|
7630
|
+
projectKey: string;
|
|
7631
|
+
repoSlug: string;
|
|
7632
|
+
credentialId?: string | undefined;
|
|
7633
|
+
relativePath?: string | null | undefined;
|
|
7634
|
+
connectionId?: string | null | undefined;
|
|
7635
|
+
userId?: number | null | undefined;
|
|
7636
|
+
} | undefined;
|
|
7637
|
+
github?: {
|
|
7638
|
+
url: string;
|
|
7639
|
+
branch: string;
|
|
7640
|
+
credentialId?: string | undefined;
|
|
7641
|
+
relativePath?: string | null | undefined;
|
|
7642
|
+
connectionId?: string | null | undefined;
|
|
7643
|
+
userId?: number | null | undefined;
|
|
7644
|
+
} | undefined;
|
|
7645
|
+
gitlab?: {
|
|
7646
|
+
branch: string;
|
|
7647
|
+
projectId: string;
|
|
7648
|
+
url?: string | null | undefined;
|
|
7649
|
+
credentialId?: string | undefined;
|
|
7650
|
+
relativePath?: string | null | undefined;
|
|
7651
|
+
connectionId?: string | null | undefined;
|
|
7652
|
+
userId?: number | null | undefined;
|
|
7653
|
+
} | undefined;
|
|
7654
|
+
documentation?: {
|
|
7655
|
+
environment: "Live" | "Preview";
|
|
7656
|
+
} | undefined;
|
|
7657
|
+
webhookUrl?: string | undefined;
|
|
7658
|
+
};
|
|
7659
|
+
designSystemVersion: {
|
|
7660
|
+
id: string;
|
|
7661
|
+
meta: {
|
|
7662
|
+
name: string;
|
|
7663
|
+
description?: string | undefined;
|
|
7664
|
+
};
|
|
7665
|
+
version: string;
|
|
7666
|
+
isReadonly: boolean;
|
|
7667
|
+
};
|
|
7668
|
+
designSystem: {
|
|
7669
|
+
id: string;
|
|
7670
|
+
meta: {
|
|
7671
|
+
name: string;
|
|
7672
|
+
description?: string | undefined;
|
|
7673
|
+
};
|
|
7674
|
+
};
|
|
7675
|
+
brandPersistentId?: string | undefined;
|
|
7676
|
+
themePersistentId?: string | undefined;
|
|
7677
|
+
finishedAt?: Date | undefined;
|
|
7678
|
+
index?: number | undefined;
|
|
7679
|
+
estimatedExecutionTime?: number | undefined;
|
|
7680
|
+
createdBy?: {
|
|
7681
|
+
userId: string;
|
|
7682
|
+
userName: string;
|
|
7683
|
+
} | undefined;
|
|
7684
|
+
scheduleId?: string | undefined;
|
|
7685
|
+
result?: {
|
|
7686
|
+
error?: string | undefined;
|
|
7687
|
+
azure?: {
|
|
7688
|
+
pullRequestUrl: string;
|
|
7689
|
+
} | null | undefined;
|
|
7690
|
+
github?: {
|
|
7691
|
+
pullRequestUrl: string;
|
|
7692
|
+
} | null | undefined;
|
|
7693
|
+
gitlab?: {
|
|
7694
|
+
pullRequestUrl: string;
|
|
7695
|
+
} | null | undefined;
|
|
7696
|
+
bitbucket?: {
|
|
7697
|
+
pullRequestUrl: string;
|
|
7698
|
+
} | null | undefined;
|
|
7699
|
+
logs?: {
|
|
7700
|
+
message: string;
|
|
7701
|
+
type: "user" | "success" | "warning" | "error" | "info";
|
|
7702
|
+
time: Date;
|
|
7703
|
+
id?: string | undefined;
|
|
7704
|
+
}[] | null | undefined;
|
|
7705
|
+
s3?: {
|
|
7706
|
+
path: string;
|
|
7707
|
+
files: string[];
|
|
7708
|
+
bucket: string;
|
|
7709
|
+
url?: string | null | undefined;
|
|
7710
|
+
urlPrefix?: string | undefined;
|
|
7711
|
+
urls?: string[] | null | undefined;
|
|
7712
|
+
} | null | undefined;
|
|
7713
|
+
sndocs?: {
|
|
7714
|
+
url: string;
|
|
7715
|
+
} | null | undefined;
|
|
7716
|
+
} | undefined;
|
|
7717
|
+
};
|
|
7718
|
+
}>;
|
|
7719
|
+
type DTOPublishDocumentationResponse = z.infer<typeof DTOPublishDocumentationResponse>;
|
|
6837
7720
|
|
|
6838
7721
|
declare const DTODocumentationDraftChangeType: z.ZodEnum<["Created", "Updated", "Deleted"]>;
|
|
6839
7722
|
type DTODocumentationDraftChangeType = z.infer<typeof DTODocumentationDraftChangeType>;
|
|
@@ -42214,4 +43097,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
42214
43097
|
|
|
42215
43098
|
declare function generatePageContentHash(content: DocumentationPageEditorModel): string;
|
|
42216
43099
|
|
|
42217
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, 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, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, 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, DTOPublishDocumentationRequest, DTORenderedAssetFile, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, 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 };
|
|
43100
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, 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, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, 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, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, 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 };
|