bundlesocial 2.50.0 → 2.52.0
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 +1268 -553
- package/dist/index.d.ts +1268 -553
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -964,6 +964,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
964
964
|
teamId: string;
|
|
965
965
|
redirectUrl?: string;
|
|
966
966
|
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
967
|
+
/**
|
|
968
|
+
* Mastodon or Bluesky only
|
|
969
|
+
*/
|
|
970
|
+
serverUrl?: string;
|
|
967
971
|
/**
|
|
968
972
|
* Optional. If true, portal will request provider-specific anti-auto-login behavior where supported.
|
|
969
973
|
*/
|
|
@@ -972,6 +976,10 @@ type SocialAccountCreatePortalLinkData = {
|
|
|
972
976
|
* Optional. Instagram only. When true, direct Instagram connections on phones will try to force browser login to avoid the Instagram iOS app deep-link bug.
|
|
973
977
|
*/
|
|
974
978
|
forceBrowserOAuth?: boolean;
|
|
979
|
+
/**
|
|
980
|
+
* Instagram only - connection method
|
|
981
|
+
*/
|
|
982
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM';
|
|
975
983
|
/**
|
|
976
984
|
* Optional. Facebook and Instagram only - when provided, portal skips business scope selection modal for Facebook login paths.
|
|
977
985
|
*/
|
|
@@ -1446,6 +1454,46 @@ type UploadFinalizeLargeUploadResponse = {
|
|
|
1446
1454
|
createdAt: string | null;
|
|
1447
1455
|
updatedAt: string | null;
|
|
1448
1456
|
};
|
|
1457
|
+
type PostGetReconnectSocialAccountCandidatesData = {
|
|
1458
|
+
limit?: number | null;
|
|
1459
|
+
offset?: number | null;
|
|
1460
|
+
teamId: string;
|
|
1461
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1462
|
+
};
|
|
1463
|
+
type PostGetReconnectSocialAccountCandidatesResponse = {
|
|
1464
|
+
items: Array<{
|
|
1465
|
+
id: string;
|
|
1466
|
+
title: string;
|
|
1467
|
+
postDate: string | null;
|
|
1468
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
1469
|
+
createdAt: string | null;
|
|
1470
|
+
updatedAt: string | null;
|
|
1471
|
+
}>;
|
|
1472
|
+
total: number;
|
|
1473
|
+
};
|
|
1474
|
+
type PostReconnectSocialAccountData = {
|
|
1475
|
+
/**
|
|
1476
|
+
* Body
|
|
1477
|
+
*/
|
|
1478
|
+
requestBody?: {
|
|
1479
|
+
teamId: string;
|
|
1480
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
1481
|
+
postIds?: Array<(string)>;
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
type PostReconnectSocialAccountResponse = {
|
|
1485
|
+
total: number;
|
|
1486
|
+
succeeded: number;
|
|
1487
|
+
failed: number;
|
|
1488
|
+
results: Array<{
|
|
1489
|
+
postId: string;
|
|
1490
|
+
title?: string | null;
|
|
1491
|
+
success: boolean;
|
|
1492
|
+
statusBefore?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
1493
|
+
statusAfter?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
1494
|
+
message?: string;
|
|
1495
|
+
}>;
|
|
1496
|
+
};
|
|
1449
1497
|
type PostGetData = {
|
|
1450
1498
|
id: string;
|
|
1451
1499
|
};
|
|
@@ -8972,184 +9020,408 @@ type CommentCreateResponse = {
|
|
|
8972
9020
|
updatedAt: string | null;
|
|
8973
9021
|
deletedAt?: string | null;
|
|
8974
9022
|
};
|
|
8975
|
-
type
|
|
8976
|
-
|
|
8977
|
-
* Body
|
|
8978
|
-
*/
|
|
8979
|
-
requestBody?: {
|
|
8980
|
-
teamId: string;
|
|
8981
|
-
url: string;
|
|
8982
|
-
postId: string;
|
|
8983
|
-
};
|
|
8984
|
-
};
|
|
8985
|
-
type MiscYoutubeSetThumbnailResponse = {
|
|
8986
|
-
items?: Array<{
|
|
8987
|
-
default?: {
|
|
8988
|
-
url: string;
|
|
8989
|
-
width?: number;
|
|
8990
|
-
height?: number;
|
|
8991
|
-
};
|
|
8992
|
-
medium?: {
|
|
8993
|
-
url: string;
|
|
8994
|
-
width?: number;
|
|
8995
|
-
height?: number;
|
|
8996
|
-
};
|
|
8997
|
-
high?: {
|
|
8998
|
-
url: string;
|
|
8999
|
-
width?: number;
|
|
9000
|
-
height?: number;
|
|
9001
|
-
};
|
|
9002
|
-
standard?: {
|
|
9003
|
-
url: string;
|
|
9004
|
-
width?: number;
|
|
9005
|
-
height?: number;
|
|
9006
|
-
};
|
|
9007
|
-
maxres?: {
|
|
9008
|
-
url: string;
|
|
9009
|
-
width?: number;
|
|
9010
|
-
height?: number;
|
|
9011
|
-
};
|
|
9012
|
-
}>;
|
|
9023
|
+
type CommentRetryData = {
|
|
9024
|
+
id: string;
|
|
9013
9025
|
};
|
|
9014
|
-
type
|
|
9015
|
-
|
|
9026
|
+
type CommentRetryResponse = {
|
|
9027
|
+
id: string;
|
|
9016
9028
|
teamId: string;
|
|
9017
|
-
|
|
9018
|
-
|
|
9019
|
-
|
|
9020
|
-
|
|
9021
|
-
|
|
9022
|
-
|
|
9023
|
-
|
|
9024
|
-
|
|
9025
|
-
|
|
9026
|
-
|
|
9027
|
-
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
9033
|
-
|
|
9034
|
-
|
|
9035
|
-
|
|
9036
|
-
|
|
9037
|
-
|
|
9038
|
-
|
|
9039
|
-
|
|
9040
|
-
|
|
9041
|
-
|
|
9042
|
-
|
|
9043
|
-
|
|
9044
|
-
|
|
9045
|
-
|
|
9046
|
-
|
|
9047
|
-
|
|
9048
|
-
|
|
9049
|
-
|
|
9050
|
-
|
|
9051
|
-
|
|
9052
|
-
|
|
9053
|
-
|
|
9054
|
-
|
|
9055
|
-
|
|
9056
|
-
|
|
9057
|
-
|
|
9058
|
-
|
|
9059
|
-
url?: string;
|
|
9060
|
-
width?: number;
|
|
9061
|
-
height?: number;
|
|
9062
|
-
};
|
|
9063
|
-
};
|
|
9064
|
-
localized?: {
|
|
9065
|
-
title?: string;
|
|
9066
|
-
description?: string;
|
|
9067
|
-
};
|
|
9068
|
-
};
|
|
9069
|
-
status?: {
|
|
9070
|
-
privacyStatus?: string;
|
|
9071
|
-
};
|
|
9072
|
-
contentDetails?: {
|
|
9073
|
-
itemCount?: number;
|
|
9074
|
-
};
|
|
9075
|
-
}>;
|
|
9076
|
-
};
|
|
9077
|
-
type MiscYoutubeCreateNewChannelPlaylistData = {
|
|
9078
|
-
/**
|
|
9079
|
-
* Body
|
|
9080
|
-
*/
|
|
9081
|
-
requestBody?: {
|
|
9082
|
-
teamId: string;
|
|
9083
|
-
/**
|
|
9084
|
-
* bundle.social does not store this value and YouTube overites it everytime so you need to pass it everytime
|
|
9085
|
-
*/
|
|
9086
|
-
title: string;
|
|
9087
|
-
/**
|
|
9088
|
-
* bundle.social does not store this value and YouTube overites it everytime so you need to pass it everytime
|
|
9089
|
-
*/
|
|
9090
|
-
description: string;
|
|
9091
|
-
privacyStatus?: 'public' | 'unlisted' | 'private';
|
|
9092
|
-
};
|
|
9093
|
-
};
|
|
9094
|
-
type MiscYoutubeCreateNewChannelPlaylistResponse = {
|
|
9095
|
-
kind?: string;
|
|
9096
|
-
etag?: string;
|
|
9097
|
-
id?: string;
|
|
9098
|
-
snippet?: {
|
|
9099
|
-
publishedAt?: string;
|
|
9100
|
-
channelId?: string;
|
|
9101
|
-
title?: string;
|
|
9102
|
-
description?: string;
|
|
9103
|
-
channelTitle?: string;
|
|
9104
|
-
thumbnails?: {
|
|
9105
|
-
default?: {
|
|
9106
|
-
url?: string;
|
|
9107
|
-
width?: number;
|
|
9108
|
-
height?: number;
|
|
9109
|
-
};
|
|
9110
|
-
medium?: {
|
|
9111
|
-
url?: string;
|
|
9112
|
-
width?: number;
|
|
9113
|
-
height?: number;
|
|
9114
|
-
};
|
|
9115
|
-
high?: {
|
|
9116
|
-
url?: string;
|
|
9117
|
-
width?: number;
|
|
9118
|
-
height?: number;
|
|
9119
|
-
};
|
|
9120
|
-
standard?: {
|
|
9121
|
-
url?: string;
|
|
9122
|
-
width?: number;
|
|
9123
|
-
height?: number;
|
|
9124
|
-
};
|
|
9125
|
-
maxres?: {
|
|
9126
|
-
url?: string;
|
|
9127
|
-
width?: number;
|
|
9128
|
-
height?: number;
|
|
9129
|
-
};
|
|
9130
|
-
};
|
|
9131
|
-
localized?: {
|
|
9132
|
-
title?: string;
|
|
9133
|
-
description?: string;
|
|
9134
|
-
};
|
|
9135
|
-
};
|
|
9136
|
-
status?: {
|
|
9137
|
-
privacyStatus?: string;
|
|
9138
|
-
};
|
|
9139
|
-
contentDetails?: {
|
|
9140
|
-
itemCount?: number;
|
|
9029
|
+
organizationId?: string | null;
|
|
9030
|
+
internalPostId: string;
|
|
9031
|
+
internalParentCommentId?: string | null;
|
|
9032
|
+
fetchedParentCommentId?: string | null;
|
|
9033
|
+
title: string;
|
|
9034
|
+
postDate: string | null;
|
|
9035
|
+
postedDate?: string | null;
|
|
9036
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
|
|
9037
|
+
data: {
|
|
9038
|
+
FACEBOOK?: {
|
|
9039
|
+
text?: string | null;
|
|
9040
|
+
} | null;
|
|
9041
|
+
INSTAGRAM?: {
|
|
9042
|
+
text?: string | null;
|
|
9043
|
+
} | null;
|
|
9044
|
+
THREADS?: {
|
|
9045
|
+
text?: string | null;
|
|
9046
|
+
} | null;
|
|
9047
|
+
TIKTOK?: {
|
|
9048
|
+
text?: string | null;
|
|
9049
|
+
} | null;
|
|
9050
|
+
LINKEDIN?: {
|
|
9051
|
+
text?: string | null;
|
|
9052
|
+
} | null;
|
|
9053
|
+
YOUTUBE?: {
|
|
9054
|
+
text?: string | null;
|
|
9055
|
+
} | null;
|
|
9056
|
+
REDDIT?: {
|
|
9057
|
+
text?: string | null;
|
|
9058
|
+
} | null;
|
|
9059
|
+
MASTODON?: {
|
|
9060
|
+
text?: string | null;
|
|
9061
|
+
} | null;
|
|
9062
|
+
DISCORD?: {
|
|
9063
|
+
text?: string | null;
|
|
9064
|
+
} | null;
|
|
9065
|
+
SLACK?: {
|
|
9066
|
+
text?: string | null;
|
|
9067
|
+
} | null;
|
|
9068
|
+
BLUESKY?: {
|
|
9069
|
+
text?: string | null;
|
|
9070
|
+
} | null;
|
|
9141
9071
|
};
|
|
9142
|
-
|
|
9143
|
-
|
|
9144
|
-
|
|
9145
|
-
|
|
9146
|
-
|
|
9147
|
-
|
|
9148
|
-
|
|
9149
|
-
|
|
9150
|
-
|
|
9151
|
-
|
|
9152
|
-
|
|
9072
|
+
error?: string | null;
|
|
9073
|
+
errors?: {
|
|
9074
|
+
FACEBOOK?: string | null;
|
|
9075
|
+
INSTAGRAM?: string | null;
|
|
9076
|
+
TIKTOK?: string | null;
|
|
9077
|
+
LINKEDIN?: string | null;
|
|
9078
|
+
REDDIT?: string | null;
|
|
9079
|
+
YOUTUBE?: string | null;
|
|
9080
|
+
MASTODON?: string | null;
|
|
9081
|
+
THREADS?: string | null;
|
|
9082
|
+
DISCORD?: string | null;
|
|
9083
|
+
SLACK?: string | null;
|
|
9084
|
+
BLUESKY?: string | null;
|
|
9085
|
+
} | null;
|
|
9086
|
+
errorsVerbose?: {
|
|
9087
|
+
FACEBOOK?: {
|
|
9088
|
+
code?: string | null;
|
|
9089
|
+
errorMessage?: string | null;
|
|
9090
|
+
isTransient?: boolean | null;
|
|
9091
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9092
|
+
httpStatus?: number | null;
|
|
9093
|
+
meta?: unknown;
|
|
9094
|
+
userFacingMessage?: string | null;
|
|
9095
|
+
} | null;
|
|
9096
|
+
INSTAGRAM?: {
|
|
9097
|
+
code?: string | null;
|
|
9098
|
+
errorMessage?: string | null;
|
|
9099
|
+
isTransient?: boolean | null;
|
|
9100
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9101
|
+
httpStatus?: number | null;
|
|
9102
|
+
meta?: unknown;
|
|
9103
|
+
userFacingMessage?: string | null;
|
|
9104
|
+
} | null;
|
|
9105
|
+
TIKTOK?: {
|
|
9106
|
+
code?: string | null;
|
|
9107
|
+
errorMessage?: string | null;
|
|
9108
|
+
isTransient?: boolean | null;
|
|
9109
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9110
|
+
httpStatus?: number | null;
|
|
9111
|
+
meta?: unknown;
|
|
9112
|
+
userFacingMessage?: string | null;
|
|
9113
|
+
} | null;
|
|
9114
|
+
LINKEDIN?: {
|
|
9115
|
+
code?: string | null;
|
|
9116
|
+
errorMessage?: string | null;
|
|
9117
|
+
isTransient?: boolean | null;
|
|
9118
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9119
|
+
httpStatus?: number | null;
|
|
9120
|
+
meta?: unknown;
|
|
9121
|
+
userFacingMessage?: string | null;
|
|
9122
|
+
} | null;
|
|
9123
|
+
REDDIT?: {
|
|
9124
|
+
code?: string | null;
|
|
9125
|
+
errorMessage?: string | null;
|
|
9126
|
+
isTransient?: boolean | null;
|
|
9127
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9128
|
+
httpStatus?: number | null;
|
|
9129
|
+
meta?: unknown;
|
|
9130
|
+
userFacingMessage?: string | null;
|
|
9131
|
+
} | null;
|
|
9132
|
+
YOUTUBE?: {
|
|
9133
|
+
code?: string | null;
|
|
9134
|
+
errorMessage?: string | null;
|
|
9135
|
+
isTransient?: boolean | null;
|
|
9136
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9137
|
+
httpStatus?: number | null;
|
|
9138
|
+
meta?: unknown;
|
|
9139
|
+
userFacingMessage?: string | null;
|
|
9140
|
+
} | null;
|
|
9141
|
+
MASTODON?: {
|
|
9142
|
+
code?: string | null;
|
|
9143
|
+
errorMessage?: string | null;
|
|
9144
|
+
isTransient?: boolean | null;
|
|
9145
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9146
|
+
httpStatus?: number | null;
|
|
9147
|
+
meta?: unknown;
|
|
9148
|
+
userFacingMessage?: string | null;
|
|
9149
|
+
} | null;
|
|
9150
|
+
THREADS?: {
|
|
9151
|
+
code?: string | null;
|
|
9152
|
+
errorMessage?: string | null;
|
|
9153
|
+
isTransient?: boolean | null;
|
|
9154
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9155
|
+
httpStatus?: number | null;
|
|
9156
|
+
meta?: unknown;
|
|
9157
|
+
userFacingMessage?: string | null;
|
|
9158
|
+
} | null;
|
|
9159
|
+
DISCORD?: {
|
|
9160
|
+
code?: string | null;
|
|
9161
|
+
errorMessage?: string | null;
|
|
9162
|
+
isTransient?: boolean | null;
|
|
9163
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9164
|
+
httpStatus?: number | null;
|
|
9165
|
+
meta?: unknown;
|
|
9166
|
+
userFacingMessage?: string | null;
|
|
9167
|
+
} | null;
|
|
9168
|
+
SLACK?: {
|
|
9169
|
+
code?: string | null;
|
|
9170
|
+
errorMessage?: string | null;
|
|
9171
|
+
isTransient?: boolean | null;
|
|
9172
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9173
|
+
httpStatus?: number | null;
|
|
9174
|
+
meta?: unknown;
|
|
9175
|
+
userFacingMessage?: string | null;
|
|
9176
|
+
} | null;
|
|
9177
|
+
BLUESKY?: {
|
|
9178
|
+
code?: string | null;
|
|
9179
|
+
errorMessage?: string | null;
|
|
9180
|
+
isTransient?: boolean | null;
|
|
9181
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
9182
|
+
httpStatus?: number | null;
|
|
9183
|
+
meta?: unknown;
|
|
9184
|
+
userFacingMessage?: string | null;
|
|
9185
|
+
} | null;
|
|
9186
|
+
} | null;
|
|
9187
|
+
externalData?: {
|
|
9188
|
+
FACEBOOK?: {
|
|
9189
|
+
id?: string | null;
|
|
9190
|
+
permalink?: string | null;
|
|
9191
|
+
} | null;
|
|
9192
|
+
INSTAGRAM?: {
|
|
9193
|
+
id?: string | null;
|
|
9194
|
+
permalink?: string | null;
|
|
9195
|
+
} | null;
|
|
9196
|
+
TIKTOK?: {
|
|
9197
|
+
id?: string | null;
|
|
9198
|
+
permalink?: string | null;
|
|
9199
|
+
} | null;
|
|
9200
|
+
LINKEDIN?: {
|
|
9201
|
+
id?: string | null;
|
|
9202
|
+
commentUrn?: string | null;
|
|
9203
|
+
permalink?: string | null;
|
|
9204
|
+
} | null;
|
|
9205
|
+
REDDIT?: {
|
|
9206
|
+
id?: string | null;
|
|
9207
|
+
permalink?: string | null;
|
|
9208
|
+
} | null;
|
|
9209
|
+
YOUTUBE?: {
|
|
9210
|
+
id?: string | null;
|
|
9211
|
+
permalink?: string | null;
|
|
9212
|
+
} | null;
|
|
9213
|
+
MASTODON?: {
|
|
9214
|
+
id?: string | null;
|
|
9215
|
+
permalink?: string | null;
|
|
9216
|
+
} | null;
|
|
9217
|
+
THREADS?: {
|
|
9218
|
+
id?: string | null;
|
|
9219
|
+
permalink?: string | null;
|
|
9220
|
+
} | null;
|
|
9221
|
+
DISCORD?: {
|
|
9222
|
+
id?: string | null;
|
|
9223
|
+
permalink?: string | null;
|
|
9224
|
+
} | null;
|
|
9225
|
+
SLACK?: {
|
|
9226
|
+
id?: string | null;
|
|
9227
|
+
permalink?: string | null;
|
|
9228
|
+
} | null;
|
|
9229
|
+
BLUESKY?: {
|
|
9230
|
+
id?: string | null;
|
|
9231
|
+
uri?: string | null;
|
|
9232
|
+
/**
|
|
9233
|
+
* Content ID of the created record
|
|
9234
|
+
*/
|
|
9235
|
+
cid?: string | null;
|
|
9236
|
+
permalink?: string | null;
|
|
9237
|
+
/**
|
|
9238
|
+
* Author DID (owner of the record)
|
|
9239
|
+
*/
|
|
9240
|
+
did?: string | null;
|
|
9241
|
+
} | null;
|
|
9242
|
+
} | null;
|
|
9243
|
+
createdAt: string | null;
|
|
9244
|
+
updatedAt: string | null;
|
|
9245
|
+
deletedAt?: string | null;
|
|
9246
|
+
};
|
|
9247
|
+
type MiscYoutubeSetThumbnailData = {
|
|
9248
|
+
/**
|
|
9249
|
+
* Body
|
|
9250
|
+
*/
|
|
9251
|
+
requestBody?: {
|
|
9252
|
+
teamId: string;
|
|
9253
|
+
url: string;
|
|
9254
|
+
postId: string;
|
|
9255
|
+
};
|
|
9256
|
+
};
|
|
9257
|
+
type MiscYoutubeSetThumbnailResponse = {
|
|
9258
|
+
items?: Array<{
|
|
9259
|
+
default?: {
|
|
9260
|
+
url: string;
|
|
9261
|
+
width?: number;
|
|
9262
|
+
height?: number;
|
|
9263
|
+
};
|
|
9264
|
+
medium?: {
|
|
9265
|
+
url: string;
|
|
9266
|
+
width?: number;
|
|
9267
|
+
height?: number;
|
|
9268
|
+
};
|
|
9269
|
+
high?: {
|
|
9270
|
+
url: string;
|
|
9271
|
+
width?: number;
|
|
9272
|
+
height?: number;
|
|
9273
|
+
};
|
|
9274
|
+
standard?: {
|
|
9275
|
+
url: string;
|
|
9276
|
+
width?: number;
|
|
9277
|
+
height?: number;
|
|
9278
|
+
};
|
|
9279
|
+
maxres?: {
|
|
9280
|
+
url: string;
|
|
9281
|
+
width?: number;
|
|
9282
|
+
height?: number;
|
|
9283
|
+
};
|
|
9284
|
+
}>;
|
|
9285
|
+
};
|
|
9286
|
+
type MiscYoutubeGetChannelPlaylistData = {
|
|
9287
|
+
maxResults?: number;
|
|
9288
|
+
teamId: string;
|
|
9289
|
+
};
|
|
9290
|
+
type MiscYoutubeGetChannelPlaylistResponse = {
|
|
9291
|
+
kind?: string;
|
|
9292
|
+
etag?: string;
|
|
9293
|
+
nextPageToken?: string;
|
|
9294
|
+
prevPageToken?: string;
|
|
9295
|
+
pageInfo?: {
|
|
9296
|
+
totalResults?: number;
|
|
9297
|
+
resultsPerPage?: number;
|
|
9298
|
+
};
|
|
9299
|
+
items?: Array<{
|
|
9300
|
+
kind?: string;
|
|
9301
|
+
etag?: string;
|
|
9302
|
+
id?: string;
|
|
9303
|
+
snippet?: {
|
|
9304
|
+
publishedAt?: string;
|
|
9305
|
+
channelId?: string;
|
|
9306
|
+
title?: string;
|
|
9307
|
+
description?: string;
|
|
9308
|
+
channelTitle?: string;
|
|
9309
|
+
thumbnails?: {
|
|
9310
|
+
default?: {
|
|
9311
|
+
url?: string;
|
|
9312
|
+
width?: number;
|
|
9313
|
+
height?: number;
|
|
9314
|
+
};
|
|
9315
|
+
medium?: {
|
|
9316
|
+
url?: string;
|
|
9317
|
+
width?: number;
|
|
9318
|
+
height?: number;
|
|
9319
|
+
};
|
|
9320
|
+
high?: {
|
|
9321
|
+
url?: string;
|
|
9322
|
+
width?: number;
|
|
9323
|
+
height?: number;
|
|
9324
|
+
};
|
|
9325
|
+
standard?: {
|
|
9326
|
+
url?: string;
|
|
9327
|
+
width?: number;
|
|
9328
|
+
height?: number;
|
|
9329
|
+
};
|
|
9330
|
+
maxres?: {
|
|
9331
|
+
url?: string;
|
|
9332
|
+
width?: number;
|
|
9333
|
+
height?: number;
|
|
9334
|
+
};
|
|
9335
|
+
};
|
|
9336
|
+
localized?: {
|
|
9337
|
+
title?: string;
|
|
9338
|
+
description?: string;
|
|
9339
|
+
};
|
|
9340
|
+
};
|
|
9341
|
+
status?: {
|
|
9342
|
+
privacyStatus?: string;
|
|
9343
|
+
};
|
|
9344
|
+
contentDetails?: {
|
|
9345
|
+
itemCount?: number;
|
|
9346
|
+
};
|
|
9347
|
+
}>;
|
|
9348
|
+
};
|
|
9349
|
+
type MiscYoutubeCreateNewChannelPlaylistData = {
|
|
9350
|
+
/**
|
|
9351
|
+
* Body
|
|
9352
|
+
*/
|
|
9353
|
+
requestBody?: {
|
|
9354
|
+
teamId: string;
|
|
9355
|
+
/**
|
|
9356
|
+
* bundle.social does not store this value and YouTube overites it everytime so you need to pass it everytime
|
|
9357
|
+
*/
|
|
9358
|
+
title: string;
|
|
9359
|
+
/**
|
|
9360
|
+
* bundle.social does not store this value and YouTube overites it everytime so you need to pass it everytime
|
|
9361
|
+
*/
|
|
9362
|
+
description: string;
|
|
9363
|
+
privacyStatus?: 'public' | 'unlisted' | 'private';
|
|
9364
|
+
};
|
|
9365
|
+
};
|
|
9366
|
+
type MiscYoutubeCreateNewChannelPlaylistResponse = {
|
|
9367
|
+
kind?: string;
|
|
9368
|
+
etag?: string;
|
|
9369
|
+
id?: string;
|
|
9370
|
+
snippet?: {
|
|
9371
|
+
publishedAt?: string;
|
|
9372
|
+
channelId?: string;
|
|
9373
|
+
title?: string;
|
|
9374
|
+
description?: string;
|
|
9375
|
+
channelTitle?: string;
|
|
9376
|
+
thumbnails?: {
|
|
9377
|
+
default?: {
|
|
9378
|
+
url?: string;
|
|
9379
|
+
width?: number;
|
|
9380
|
+
height?: number;
|
|
9381
|
+
};
|
|
9382
|
+
medium?: {
|
|
9383
|
+
url?: string;
|
|
9384
|
+
width?: number;
|
|
9385
|
+
height?: number;
|
|
9386
|
+
};
|
|
9387
|
+
high?: {
|
|
9388
|
+
url?: string;
|
|
9389
|
+
width?: number;
|
|
9390
|
+
height?: number;
|
|
9391
|
+
};
|
|
9392
|
+
standard?: {
|
|
9393
|
+
url?: string;
|
|
9394
|
+
width?: number;
|
|
9395
|
+
height?: number;
|
|
9396
|
+
};
|
|
9397
|
+
maxres?: {
|
|
9398
|
+
url?: string;
|
|
9399
|
+
width?: number;
|
|
9400
|
+
height?: number;
|
|
9401
|
+
};
|
|
9402
|
+
};
|
|
9403
|
+
localized?: {
|
|
9404
|
+
title?: string;
|
|
9405
|
+
description?: string;
|
|
9406
|
+
};
|
|
9407
|
+
};
|
|
9408
|
+
status?: {
|
|
9409
|
+
privacyStatus?: string;
|
|
9410
|
+
};
|
|
9411
|
+
contentDetails?: {
|
|
9412
|
+
itemCount?: number;
|
|
9413
|
+
};
|
|
9414
|
+
};
|
|
9415
|
+
type MiscYoutubeUpdateChannelPlaylistData = {
|
|
9416
|
+
/**
|
|
9417
|
+
* Body
|
|
9418
|
+
*/
|
|
9419
|
+
requestBody?: {
|
|
9420
|
+
teamId: string;
|
|
9421
|
+
/**
|
|
9422
|
+
* bundle.social does not store this value and YouTube overites it everytime so you need to pass it everytime
|
|
9423
|
+
*/
|
|
9424
|
+
title: string;
|
|
9153
9425
|
/**
|
|
9154
9426
|
* bundle.social does not store this value and YouTube overites it everytime so you need to pass it everytime
|
|
9155
9427
|
*/
|
|
@@ -14152,6 +14424,144 @@ type $OpenApiTs = {
|
|
|
14152
14424
|
};
|
|
14153
14425
|
};
|
|
14154
14426
|
};
|
|
14427
|
+
'/api/v1/post/reconnect-social-account/candidates': {
|
|
14428
|
+
get: {
|
|
14429
|
+
req: PostGetReconnectSocialAccountCandidatesData;
|
|
14430
|
+
res: {
|
|
14431
|
+
/**
|
|
14432
|
+
* 200
|
|
14433
|
+
*/
|
|
14434
|
+
200: {
|
|
14435
|
+
items: Array<{
|
|
14436
|
+
id: string;
|
|
14437
|
+
title: string;
|
|
14438
|
+
postDate: string | null;
|
|
14439
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
14440
|
+
createdAt: string | null;
|
|
14441
|
+
updatedAt: string | null;
|
|
14442
|
+
}>;
|
|
14443
|
+
total: number;
|
|
14444
|
+
};
|
|
14445
|
+
/**
|
|
14446
|
+
* 400
|
|
14447
|
+
*/
|
|
14448
|
+
400: {
|
|
14449
|
+
statusCode?: number | null;
|
|
14450
|
+
message: string;
|
|
14451
|
+
issues?: Array<{
|
|
14452
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
14453
|
+
message: string;
|
|
14454
|
+
path?: Array<(string | number)> | null;
|
|
14455
|
+
}> | null;
|
|
14456
|
+
};
|
|
14457
|
+
/**
|
|
14458
|
+
* 401
|
|
14459
|
+
*/
|
|
14460
|
+
401: {
|
|
14461
|
+
statusCode?: number | null;
|
|
14462
|
+
message: string;
|
|
14463
|
+
};
|
|
14464
|
+
/**
|
|
14465
|
+
* 403
|
|
14466
|
+
*/
|
|
14467
|
+
403: {
|
|
14468
|
+
statusCode?: number | null;
|
|
14469
|
+
message: string;
|
|
14470
|
+
};
|
|
14471
|
+
/**
|
|
14472
|
+
* 404
|
|
14473
|
+
*/
|
|
14474
|
+
404: {
|
|
14475
|
+
statusCode?: number | null;
|
|
14476
|
+
message: string;
|
|
14477
|
+
};
|
|
14478
|
+
/**
|
|
14479
|
+
* 429
|
|
14480
|
+
*/
|
|
14481
|
+
429: {
|
|
14482
|
+
statusCode?: number | null;
|
|
14483
|
+
message: string;
|
|
14484
|
+
};
|
|
14485
|
+
/**
|
|
14486
|
+
* 500
|
|
14487
|
+
*/
|
|
14488
|
+
500: {
|
|
14489
|
+
statusCode?: number | null;
|
|
14490
|
+
message: string;
|
|
14491
|
+
};
|
|
14492
|
+
};
|
|
14493
|
+
};
|
|
14494
|
+
};
|
|
14495
|
+
'/api/v1/post/reconnect-social-account': {
|
|
14496
|
+
post: {
|
|
14497
|
+
req: PostReconnectSocialAccountData;
|
|
14498
|
+
res: {
|
|
14499
|
+
/**
|
|
14500
|
+
* 200
|
|
14501
|
+
*/
|
|
14502
|
+
200: {
|
|
14503
|
+
total: number;
|
|
14504
|
+
succeeded: number;
|
|
14505
|
+
failed: number;
|
|
14506
|
+
results: Array<{
|
|
14507
|
+
postId: string;
|
|
14508
|
+
title?: string | null;
|
|
14509
|
+
success: boolean;
|
|
14510
|
+
statusBefore?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
14511
|
+
statusAfter?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
14512
|
+
message?: string;
|
|
14513
|
+
}>;
|
|
14514
|
+
};
|
|
14515
|
+
/**
|
|
14516
|
+
* 400
|
|
14517
|
+
*/
|
|
14518
|
+
400: {
|
|
14519
|
+
statusCode?: number | null;
|
|
14520
|
+
message: string;
|
|
14521
|
+
issues?: Array<{
|
|
14522
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
14523
|
+
message: string;
|
|
14524
|
+
path?: Array<(string | number)> | null;
|
|
14525
|
+
}> | null;
|
|
14526
|
+
};
|
|
14527
|
+
/**
|
|
14528
|
+
* 401
|
|
14529
|
+
*/
|
|
14530
|
+
401: {
|
|
14531
|
+
statusCode?: number | null;
|
|
14532
|
+
message: string;
|
|
14533
|
+
};
|
|
14534
|
+
/**
|
|
14535
|
+
* 403
|
|
14536
|
+
*/
|
|
14537
|
+
403: {
|
|
14538
|
+
statusCode?: number | null;
|
|
14539
|
+
message: string;
|
|
14540
|
+
};
|
|
14541
|
+
/**
|
|
14542
|
+
* 404
|
|
14543
|
+
*/
|
|
14544
|
+
404: {
|
|
14545
|
+
statusCode?: number | null;
|
|
14546
|
+
message: string;
|
|
14547
|
+
};
|
|
14548
|
+
/**
|
|
14549
|
+
* 429
|
|
14550
|
+
*/
|
|
14551
|
+
429: {
|
|
14552
|
+
statusCode?: number | null;
|
|
14553
|
+
message: string;
|
|
14554
|
+
};
|
|
14555
|
+
/**
|
|
14556
|
+
* 500
|
|
14557
|
+
*/
|
|
14558
|
+
500: {
|
|
14559
|
+
statusCode?: number | null;
|
|
14560
|
+
message: string;
|
|
14561
|
+
};
|
|
14562
|
+
};
|
|
14563
|
+
};
|
|
14564
|
+
};
|
|
14155
14565
|
'/api/v1/post/{id}': {
|
|
14156
14566
|
get: {
|
|
14157
14567
|
req: PostGetData;
|
|
@@ -20551,9 +20961,82 @@ type $OpenApiTs = {
|
|
|
20551
20961
|
};
|
|
20552
20962
|
};
|
|
20553
20963
|
};
|
|
20554
|
-
'/api/v1/comment/import/{importId}': {
|
|
20964
|
+
'/api/v1/comment/import/{importId}': {
|
|
20965
|
+
get: {
|
|
20966
|
+
req: CommentImportGetByIdData;
|
|
20967
|
+
res: {
|
|
20968
|
+
/**
|
|
20969
|
+
* 200
|
|
20970
|
+
*/
|
|
20971
|
+
200: {
|
|
20972
|
+
id: string;
|
|
20973
|
+
teamId: string;
|
|
20974
|
+
organizationId?: string | null;
|
|
20975
|
+
socialAccountId: string;
|
|
20976
|
+
postId: string;
|
|
20977
|
+
platform: 'FACEBOOK' | 'INSTAGRAM' | 'LINKEDIN' | 'YOUTUBE' | 'TIKTOK' | 'REDDIT' | 'THREADS' | 'MASTODON' | 'BLUESKY';
|
|
20978
|
+
status: 'PENDING' | 'FETCHING' | 'RETRYING' | 'COMPLETED' | 'SKIPPED' | 'FAILED' | 'RATE_LIMITED';
|
|
20979
|
+
commentsImported: number;
|
|
20980
|
+
error?: string | null;
|
|
20981
|
+
rateLimitResetAt?: string | null;
|
|
20982
|
+
startedAt?: string | null;
|
|
20983
|
+
completedAt?: string | null;
|
|
20984
|
+
createdAt: string | null;
|
|
20985
|
+
updatedAt: string | null;
|
|
20986
|
+
};
|
|
20987
|
+
/**
|
|
20988
|
+
* 400
|
|
20989
|
+
*/
|
|
20990
|
+
400: {
|
|
20991
|
+
statusCode?: number | null;
|
|
20992
|
+
message: string;
|
|
20993
|
+
issues?: Array<{
|
|
20994
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
20995
|
+
message: string;
|
|
20996
|
+
path?: Array<(string | number)> | null;
|
|
20997
|
+
}> | null;
|
|
20998
|
+
};
|
|
20999
|
+
/**
|
|
21000
|
+
* 401
|
|
21001
|
+
*/
|
|
21002
|
+
401: {
|
|
21003
|
+
statusCode?: number | null;
|
|
21004
|
+
message: string;
|
|
21005
|
+
};
|
|
21006
|
+
/**
|
|
21007
|
+
* 403
|
|
21008
|
+
*/
|
|
21009
|
+
403: {
|
|
21010
|
+
statusCode?: number | null;
|
|
21011
|
+
message: string;
|
|
21012
|
+
};
|
|
21013
|
+
/**
|
|
21014
|
+
* 404
|
|
21015
|
+
*/
|
|
21016
|
+
404: {
|
|
21017
|
+
statusCode?: number | null;
|
|
21018
|
+
message: string;
|
|
21019
|
+
};
|
|
21020
|
+
/**
|
|
21021
|
+
* 429
|
|
21022
|
+
*/
|
|
21023
|
+
429: {
|
|
21024
|
+
statusCode?: number | null;
|
|
21025
|
+
message: string;
|
|
21026
|
+
};
|
|
21027
|
+
/**
|
|
21028
|
+
* 500
|
|
21029
|
+
*/
|
|
21030
|
+
500: {
|
|
21031
|
+
statusCode?: number | null;
|
|
21032
|
+
message: string;
|
|
21033
|
+
};
|
|
21034
|
+
};
|
|
21035
|
+
};
|
|
21036
|
+
};
|
|
21037
|
+
'/api/v1/comment/{id}': {
|
|
20555
21038
|
get: {
|
|
20556
|
-
req:
|
|
21039
|
+
req: CommentGetData;
|
|
20557
21040
|
res: {
|
|
20558
21041
|
/**
|
|
20559
21042
|
* 200
|
|
@@ -20562,17 +21045,222 @@ type $OpenApiTs = {
|
|
|
20562
21045
|
id: string;
|
|
20563
21046
|
teamId: string;
|
|
20564
21047
|
organizationId?: string | null;
|
|
20565
|
-
|
|
20566
|
-
|
|
20567
|
-
|
|
20568
|
-
|
|
20569
|
-
|
|
21048
|
+
internalPostId: string;
|
|
21049
|
+
internalParentCommentId?: string | null;
|
|
21050
|
+
fetchedParentCommentId?: string | null;
|
|
21051
|
+
title: string;
|
|
21052
|
+
postDate: string | null;
|
|
21053
|
+
postedDate?: string | null;
|
|
21054
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
|
|
21055
|
+
data: {
|
|
21056
|
+
FACEBOOK?: {
|
|
21057
|
+
text?: string | null;
|
|
21058
|
+
} | null;
|
|
21059
|
+
INSTAGRAM?: {
|
|
21060
|
+
text?: string | null;
|
|
21061
|
+
} | null;
|
|
21062
|
+
THREADS?: {
|
|
21063
|
+
text?: string | null;
|
|
21064
|
+
} | null;
|
|
21065
|
+
TIKTOK?: {
|
|
21066
|
+
text?: string | null;
|
|
21067
|
+
} | null;
|
|
21068
|
+
LINKEDIN?: {
|
|
21069
|
+
text?: string | null;
|
|
21070
|
+
} | null;
|
|
21071
|
+
YOUTUBE?: {
|
|
21072
|
+
text?: string | null;
|
|
21073
|
+
} | null;
|
|
21074
|
+
REDDIT?: {
|
|
21075
|
+
text?: string | null;
|
|
21076
|
+
} | null;
|
|
21077
|
+
MASTODON?: {
|
|
21078
|
+
text?: string | null;
|
|
21079
|
+
} | null;
|
|
21080
|
+
DISCORD?: {
|
|
21081
|
+
text?: string | null;
|
|
21082
|
+
} | null;
|
|
21083
|
+
SLACK?: {
|
|
21084
|
+
text?: string | null;
|
|
21085
|
+
} | null;
|
|
21086
|
+
BLUESKY?: {
|
|
21087
|
+
text?: string | null;
|
|
21088
|
+
} | null;
|
|
21089
|
+
};
|
|
20570
21090
|
error?: string | null;
|
|
20571
|
-
|
|
20572
|
-
|
|
20573
|
-
|
|
21091
|
+
errors?: {
|
|
21092
|
+
FACEBOOK?: string | null;
|
|
21093
|
+
INSTAGRAM?: string | null;
|
|
21094
|
+
TIKTOK?: string | null;
|
|
21095
|
+
LINKEDIN?: string | null;
|
|
21096
|
+
REDDIT?: string | null;
|
|
21097
|
+
YOUTUBE?: string | null;
|
|
21098
|
+
MASTODON?: string | null;
|
|
21099
|
+
THREADS?: string | null;
|
|
21100
|
+
DISCORD?: string | null;
|
|
21101
|
+
SLACK?: string | null;
|
|
21102
|
+
BLUESKY?: string | null;
|
|
21103
|
+
} | null;
|
|
21104
|
+
errorsVerbose?: {
|
|
21105
|
+
FACEBOOK?: {
|
|
21106
|
+
code?: string | null;
|
|
21107
|
+
errorMessage?: string | null;
|
|
21108
|
+
isTransient?: boolean | null;
|
|
21109
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21110
|
+
httpStatus?: number | null;
|
|
21111
|
+
meta?: unknown;
|
|
21112
|
+
userFacingMessage?: string | null;
|
|
21113
|
+
} | null;
|
|
21114
|
+
INSTAGRAM?: {
|
|
21115
|
+
code?: string | null;
|
|
21116
|
+
errorMessage?: string | null;
|
|
21117
|
+
isTransient?: boolean | null;
|
|
21118
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21119
|
+
httpStatus?: number | null;
|
|
21120
|
+
meta?: unknown;
|
|
21121
|
+
userFacingMessage?: string | null;
|
|
21122
|
+
} | null;
|
|
21123
|
+
TIKTOK?: {
|
|
21124
|
+
code?: string | null;
|
|
21125
|
+
errorMessage?: string | null;
|
|
21126
|
+
isTransient?: boolean | null;
|
|
21127
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21128
|
+
httpStatus?: number | null;
|
|
21129
|
+
meta?: unknown;
|
|
21130
|
+
userFacingMessage?: string | null;
|
|
21131
|
+
} | null;
|
|
21132
|
+
LINKEDIN?: {
|
|
21133
|
+
code?: string | null;
|
|
21134
|
+
errorMessage?: string | null;
|
|
21135
|
+
isTransient?: boolean | null;
|
|
21136
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21137
|
+
httpStatus?: number | null;
|
|
21138
|
+
meta?: unknown;
|
|
21139
|
+
userFacingMessage?: string | null;
|
|
21140
|
+
} | null;
|
|
21141
|
+
REDDIT?: {
|
|
21142
|
+
code?: string | null;
|
|
21143
|
+
errorMessage?: string | null;
|
|
21144
|
+
isTransient?: boolean | null;
|
|
21145
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21146
|
+
httpStatus?: number | null;
|
|
21147
|
+
meta?: unknown;
|
|
21148
|
+
userFacingMessage?: string | null;
|
|
21149
|
+
} | null;
|
|
21150
|
+
YOUTUBE?: {
|
|
21151
|
+
code?: string | null;
|
|
21152
|
+
errorMessage?: string | null;
|
|
21153
|
+
isTransient?: boolean | null;
|
|
21154
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21155
|
+
httpStatus?: number | null;
|
|
21156
|
+
meta?: unknown;
|
|
21157
|
+
userFacingMessage?: string | null;
|
|
21158
|
+
} | null;
|
|
21159
|
+
MASTODON?: {
|
|
21160
|
+
code?: string | null;
|
|
21161
|
+
errorMessage?: string | null;
|
|
21162
|
+
isTransient?: boolean | null;
|
|
21163
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21164
|
+
httpStatus?: number | null;
|
|
21165
|
+
meta?: unknown;
|
|
21166
|
+
userFacingMessage?: string | null;
|
|
21167
|
+
} | null;
|
|
21168
|
+
THREADS?: {
|
|
21169
|
+
code?: string | null;
|
|
21170
|
+
errorMessage?: string | null;
|
|
21171
|
+
isTransient?: boolean | null;
|
|
21172
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21173
|
+
httpStatus?: number | null;
|
|
21174
|
+
meta?: unknown;
|
|
21175
|
+
userFacingMessage?: string | null;
|
|
21176
|
+
} | null;
|
|
21177
|
+
DISCORD?: {
|
|
21178
|
+
code?: string | null;
|
|
21179
|
+
errorMessage?: string | null;
|
|
21180
|
+
isTransient?: boolean | null;
|
|
21181
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21182
|
+
httpStatus?: number | null;
|
|
21183
|
+
meta?: unknown;
|
|
21184
|
+
userFacingMessage?: string | null;
|
|
21185
|
+
} | null;
|
|
21186
|
+
SLACK?: {
|
|
21187
|
+
code?: string | null;
|
|
21188
|
+
errorMessage?: string | null;
|
|
21189
|
+
isTransient?: boolean | null;
|
|
21190
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21191
|
+
httpStatus?: number | null;
|
|
21192
|
+
meta?: unknown;
|
|
21193
|
+
userFacingMessage?: string | null;
|
|
21194
|
+
} | null;
|
|
21195
|
+
BLUESKY?: {
|
|
21196
|
+
code?: string | null;
|
|
21197
|
+
errorMessage?: string | null;
|
|
21198
|
+
isTransient?: boolean | null;
|
|
21199
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21200
|
+
httpStatus?: number | null;
|
|
21201
|
+
meta?: unknown;
|
|
21202
|
+
userFacingMessage?: string | null;
|
|
21203
|
+
} | null;
|
|
21204
|
+
} | null;
|
|
21205
|
+
externalData?: {
|
|
21206
|
+
FACEBOOK?: {
|
|
21207
|
+
id?: string | null;
|
|
21208
|
+
permalink?: string | null;
|
|
21209
|
+
} | null;
|
|
21210
|
+
INSTAGRAM?: {
|
|
21211
|
+
id?: string | null;
|
|
21212
|
+
permalink?: string | null;
|
|
21213
|
+
} | null;
|
|
21214
|
+
TIKTOK?: {
|
|
21215
|
+
id?: string | null;
|
|
21216
|
+
permalink?: string | null;
|
|
21217
|
+
} | null;
|
|
21218
|
+
LINKEDIN?: {
|
|
21219
|
+
id?: string | null;
|
|
21220
|
+
commentUrn?: string | null;
|
|
21221
|
+
permalink?: string | null;
|
|
21222
|
+
} | null;
|
|
21223
|
+
REDDIT?: {
|
|
21224
|
+
id?: string | null;
|
|
21225
|
+
permalink?: string | null;
|
|
21226
|
+
} | null;
|
|
21227
|
+
YOUTUBE?: {
|
|
21228
|
+
id?: string | null;
|
|
21229
|
+
permalink?: string | null;
|
|
21230
|
+
} | null;
|
|
21231
|
+
MASTODON?: {
|
|
21232
|
+
id?: string | null;
|
|
21233
|
+
permalink?: string | null;
|
|
21234
|
+
} | null;
|
|
21235
|
+
THREADS?: {
|
|
21236
|
+
id?: string | null;
|
|
21237
|
+
permalink?: string | null;
|
|
21238
|
+
} | null;
|
|
21239
|
+
DISCORD?: {
|
|
21240
|
+
id?: string | null;
|
|
21241
|
+
permalink?: string | null;
|
|
21242
|
+
} | null;
|
|
21243
|
+
SLACK?: {
|
|
21244
|
+
id?: string | null;
|
|
21245
|
+
permalink?: string | null;
|
|
21246
|
+
} | null;
|
|
21247
|
+
BLUESKY?: {
|
|
21248
|
+
id?: string | null;
|
|
21249
|
+
uri?: string | null;
|
|
21250
|
+
/**
|
|
21251
|
+
* Content ID of the created record
|
|
21252
|
+
*/
|
|
21253
|
+
cid?: string | null;
|
|
21254
|
+
permalink?: string | null;
|
|
21255
|
+
/**
|
|
21256
|
+
* Author DID (owner of the record)
|
|
21257
|
+
*/
|
|
21258
|
+
did?: string | null;
|
|
21259
|
+
} | null;
|
|
21260
|
+
} | null;
|
|
20574
21261
|
createdAt: string | null;
|
|
20575
21262
|
updatedAt: string | null;
|
|
21263
|
+
deletedAt?: string | null;
|
|
20576
21264
|
};
|
|
20577
21265
|
/**
|
|
20578
21266
|
* 400
|
|
@@ -20623,10 +21311,8 @@ type $OpenApiTs = {
|
|
|
20623
21311
|
};
|
|
20624
21312
|
};
|
|
20625
21313
|
};
|
|
20626
|
-
|
|
20627
|
-
|
|
20628
|
-
get: {
|
|
20629
|
-
req: CommentGetData;
|
|
21314
|
+
patch: {
|
|
21315
|
+
req: CommentUpdateData;
|
|
20630
21316
|
res: {
|
|
20631
21317
|
/**
|
|
20632
21318
|
* 200
|
|
@@ -20901,8 +21587,8 @@ type $OpenApiTs = {
|
|
|
20901
21587
|
};
|
|
20902
21588
|
};
|
|
20903
21589
|
};
|
|
20904
|
-
|
|
20905
|
-
req:
|
|
21590
|
+
delete: {
|
|
21591
|
+
req: CommentDeleteData;
|
|
20906
21592
|
res: {
|
|
20907
21593
|
/**
|
|
20908
21594
|
* 200
|
|
@@ -21123,10 +21809,291 @@ type $OpenApiTs = {
|
|
|
21123
21809
|
*/
|
|
21124
21810
|
did?: string | null;
|
|
21125
21811
|
} | null;
|
|
21126
|
-
} | null;
|
|
21127
|
-
createdAt: string | null;
|
|
21128
|
-
updatedAt: string | null;
|
|
21129
|
-
deletedAt?: string | null;
|
|
21812
|
+
} | null;
|
|
21813
|
+
createdAt: string | null;
|
|
21814
|
+
updatedAt: string | null;
|
|
21815
|
+
deletedAt?: string | null;
|
|
21816
|
+
};
|
|
21817
|
+
/**
|
|
21818
|
+
* 400
|
|
21819
|
+
*/
|
|
21820
|
+
400: {
|
|
21821
|
+
statusCode?: number | null;
|
|
21822
|
+
message: string;
|
|
21823
|
+
issues?: Array<{
|
|
21824
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
21825
|
+
message: string;
|
|
21826
|
+
path?: Array<(string | number)> | null;
|
|
21827
|
+
}> | null;
|
|
21828
|
+
};
|
|
21829
|
+
/**
|
|
21830
|
+
* 401
|
|
21831
|
+
*/
|
|
21832
|
+
401: {
|
|
21833
|
+
statusCode?: number | null;
|
|
21834
|
+
message: string;
|
|
21835
|
+
};
|
|
21836
|
+
/**
|
|
21837
|
+
* 403
|
|
21838
|
+
*/
|
|
21839
|
+
403: {
|
|
21840
|
+
statusCode?: number | null;
|
|
21841
|
+
message: string;
|
|
21842
|
+
};
|
|
21843
|
+
/**
|
|
21844
|
+
* 404
|
|
21845
|
+
*/
|
|
21846
|
+
404: {
|
|
21847
|
+
statusCode?: number | null;
|
|
21848
|
+
message: string;
|
|
21849
|
+
};
|
|
21850
|
+
/**
|
|
21851
|
+
* 429
|
|
21852
|
+
*/
|
|
21853
|
+
429: {
|
|
21854
|
+
statusCode?: number | null;
|
|
21855
|
+
message: string;
|
|
21856
|
+
};
|
|
21857
|
+
/**
|
|
21858
|
+
* 500
|
|
21859
|
+
*/
|
|
21860
|
+
500: {
|
|
21861
|
+
statusCode?: number | null;
|
|
21862
|
+
message: string;
|
|
21863
|
+
};
|
|
21864
|
+
};
|
|
21865
|
+
};
|
|
21866
|
+
};
|
|
21867
|
+
'/api/v1/comment/': {
|
|
21868
|
+
get: {
|
|
21869
|
+
req: CommentGetListData;
|
|
21870
|
+
res: {
|
|
21871
|
+
/**
|
|
21872
|
+
* 200
|
|
21873
|
+
*/
|
|
21874
|
+
200: {
|
|
21875
|
+
items: Array<{
|
|
21876
|
+
id: string;
|
|
21877
|
+
teamId: string;
|
|
21878
|
+
organizationId?: string | null;
|
|
21879
|
+
internalPostId: string;
|
|
21880
|
+
internalParentCommentId?: string | null;
|
|
21881
|
+
fetchedParentCommentId?: string | null;
|
|
21882
|
+
title: string;
|
|
21883
|
+
postDate: string | null;
|
|
21884
|
+
postedDate?: string | null;
|
|
21885
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
|
|
21886
|
+
data: {
|
|
21887
|
+
FACEBOOK?: {
|
|
21888
|
+
text?: string | null;
|
|
21889
|
+
} | null;
|
|
21890
|
+
INSTAGRAM?: {
|
|
21891
|
+
text?: string | null;
|
|
21892
|
+
} | null;
|
|
21893
|
+
THREADS?: {
|
|
21894
|
+
text?: string | null;
|
|
21895
|
+
} | null;
|
|
21896
|
+
TIKTOK?: {
|
|
21897
|
+
text?: string | null;
|
|
21898
|
+
} | null;
|
|
21899
|
+
LINKEDIN?: {
|
|
21900
|
+
text?: string | null;
|
|
21901
|
+
} | null;
|
|
21902
|
+
YOUTUBE?: {
|
|
21903
|
+
text?: string | null;
|
|
21904
|
+
} | null;
|
|
21905
|
+
REDDIT?: {
|
|
21906
|
+
text?: string | null;
|
|
21907
|
+
} | null;
|
|
21908
|
+
MASTODON?: {
|
|
21909
|
+
text?: string | null;
|
|
21910
|
+
} | null;
|
|
21911
|
+
DISCORD?: {
|
|
21912
|
+
text?: string | null;
|
|
21913
|
+
} | null;
|
|
21914
|
+
SLACK?: {
|
|
21915
|
+
text?: string | null;
|
|
21916
|
+
} | null;
|
|
21917
|
+
BLUESKY?: {
|
|
21918
|
+
text?: string | null;
|
|
21919
|
+
} | null;
|
|
21920
|
+
};
|
|
21921
|
+
error?: string | null;
|
|
21922
|
+
errors?: {
|
|
21923
|
+
FACEBOOK?: string | null;
|
|
21924
|
+
INSTAGRAM?: string | null;
|
|
21925
|
+
TIKTOK?: string | null;
|
|
21926
|
+
LINKEDIN?: string | null;
|
|
21927
|
+
REDDIT?: string | null;
|
|
21928
|
+
YOUTUBE?: string | null;
|
|
21929
|
+
MASTODON?: string | null;
|
|
21930
|
+
THREADS?: string | null;
|
|
21931
|
+
DISCORD?: string | null;
|
|
21932
|
+
SLACK?: string | null;
|
|
21933
|
+
BLUESKY?: string | null;
|
|
21934
|
+
} | null;
|
|
21935
|
+
errorsVerbose?: {
|
|
21936
|
+
FACEBOOK?: {
|
|
21937
|
+
code?: string | null;
|
|
21938
|
+
errorMessage?: string | null;
|
|
21939
|
+
isTransient?: boolean | null;
|
|
21940
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21941
|
+
httpStatus?: number | null;
|
|
21942
|
+
meta?: unknown;
|
|
21943
|
+
userFacingMessage?: string | null;
|
|
21944
|
+
} | null;
|
|
21945
|
+
INSTAGRAM?: {
|
|
21946
|
+
code?: string | null;
|
|
21947
|
+
errorMessage?: string | null;
|
|
21948
|
+
isTransient?: boolean | null;
|
|
21949
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21950
|
+
httpStatus?: number | null;
|
|
21951
|
+
meta?: unknown;
|
|
21952
|
+
userFacingMessage?: string | null;
|
|
21953
|
+
} | null;
|
|
21954
|
+
TIKTOK?: {
|
|
21955
|
+
code?: string | null;
|
|
21956
|
+
errorMessage?: string | null;
|
|
21957
|
+
isTransient?: boolean | null;
|
|
21958
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21959
|
+
httpStatus?: number | null;
|
|
21960
|
+
meta?: unknown;
|
|
21961
|
+
userFacingMessage?: string | null;
|
|
21962
|
+
} | null;
|
|
21963
|
+
LINKEDIN?: {
|
|
21964
|
+
code?: string | null;
|
|
21965
|
+
errorMessage?: string | null;
|
|
21966
|
+
isTransient?: boolean | null;
|
|
21967
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21968
|
+
httpStatus?: number | null;
|
|
21969
|
+
meta?: unknown;
|
|
21970
|
+
userFacingMessage?: string | null;
|
|
21971
|
+
} | null;
|
|
21972
|
+
REDDIT?: {
|
|
21973
|
+
code?: string | null;
|
|
21974
|
+
errorMessage?: string | null;
|
|
21975
|
+
isTransient?: boolean | null;
|
|
21976
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21977
|
+
httpStatus?: number | null;
|
|
21978
|
+
meta?: unknown;
|
|
21979
|
+
userFacingMessage?: string | null;
|
|
21980
|
+
} | null;
|
|
21981
|
+
YOUTUBE?: {
|
|
21982
|
+
code?: string | null;
|
|
21983
|
+
errorMessage?: string | null;
|
|
21984
|
+
isTransient?: boolean | null;
|
|
21985
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21986
|
+
httpStatus?: number | null;
|
|
21987
|
+
meta?: unknown;
|
|
21988
|
+
userFacingMessage?: string | null;
|
|
21989
|
+
} | null;
|
|
21990
|
+
MASTODON?: {
|
|
21991
|
+
code?: string | null;
|
|
21992
|
+
errorMessage?: string | null;
|
|
21993
|
+
isTransient?: boolean | null;
|
|
21994
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21995
|
+
httpStatus?: number | null;
|
|
21996
|
+
meta?: unknown;
|
|
21997
|
+
userFacingMessage?: string | null;
|
|
21998
|
+
} | null;
|
|
21999
|
+
THREADS?: {
|
|
22000
|
+
code?: string | null;
|
|
22001
|
+
errorMessage?: string | null;
|
|
22002
|
+
isTransient?: boolean | null;
|
|
22003
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22004
|
+
httpStatus?: number | null;
|
|
22005
|
+
meta?: unknown;
|
|
22006
|
+
userFacingMessage?: string | null;
|
|
22007
|
+
} | null;
|
|
22008
|
+
DISCORD?: {
|
|
22009
|
+
code?: string | null;
|
|
22010
|
+
errorMessage?: string | null;
|
|
22011
|
+
isTransient?: boolean | null;
|
|
22012
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22013
|
+
httpStatus?: number | null;
|
|
22014
|
+
meta?: unknown;
|
|
22015
|
+
userFacingMessage?: string | null;
|
|
22016
|
+
} | null;
|
|
22017
|
+
SLACK?: {
|
|
22018
|
+
code?: string | null;
|
|
22019
|
+
errorMessage?: string | null;
|
|
22020
|
+
isTransient?: boolean | null;
|
|
22021
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22022
|
+
httpStatus?: number | null;
|
|
22023
|
+
meta?: unknown;
|
|
22024
|
+
userFacingMessage?: string | null;
|
|
22025
|
+
} | null;
|
|
22026
|
+
BLUESKY?: {
|
|
22027
|
+
code?: string | null;
|
|
22028
|
+
errorMessage?: string | null;
|
|
22029
|
+
isTransient?: boolean | null;
|
|
22030
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22031
|
+
httpStatus?: number | null;
|
|
22032
|
+
meta?: unknown;
|
|
22033
|
+
userFacingMessage?: string | null;
|
|
22034
|
+
} | null;
|
|
22035
|
+
} | null;
|
|
22036
|
+
externalData?: {
|
|
22037
|
+
FACEBOOK?: {
|
|
22038
|
+
id?: string | null;
|
|
22039
|
+
permalink?: string | null;
|
|
22040
|
+
} | null;
|
|
22041
|
+
INSTAGRAM?: {
|
|
22042
|
+
id?: string | null;
|
|
22043
|
+
permalink?: string | null;
|
|
22044
|
+
} | null;
|
|
22045
|
+
TIKTOK?: {
|
|
22046
|
+
id?: string | null;
|
|
22047
|
+
permalink?: string | null;
|
|
22048
|
+
} | null;
|
|
22049
|
+
LINKEDIN?: {
|
|
22050
|
+
id?: string | null;
|
|
22051
|
+
commentUrn?: string | null;
|
|
22052
|
+
permalink?: string | null;
|
|
22053
|
+
} | null;
|
|
22054
|
+
REDDIT?: {
|
|
22055
|
+
id?: string | null;
|
|
22056
|
+
permalink?: string | null;
|
|
22057
|
+
} | null;
|
|
22058
|
+
YOUTUBE?: {
|
|
22059
|
+
id?: string | null;
|
|
22060
|
+
permalink?: string | null;
|
|
22061
|
+
} | null;
|
|
22062
|
+
MASTODON?: {
|
|
22063
|
+
id?: string | null;
|
|
22064
|
+
permalink?: string | null;
|
|
22065
|
+
} | null;
|
|
22066
|
+
THREADS?: {
|
|
22067
|
+
id?: string | null;
|
|
22068
|
+
permalink?: string | null;
|
|
22069
|
+
} | null;
|
|
22070
|
+
DISCORD?: {
|
|
22071
|
+
id?: string | null;
|
|
22072
|
+
permalink?: string | null;
|
|
22073
|
+
} | null;
|
|
22074
|
+
SLACK?: {
|
|
22075
|
+
id?: string | null;
|
|
22076
|
+
permalink?: string | null;
|
|
22077
|
+
} | null;
|
|
22078
|
+
BLUESKY?: {
|
|
22079
|
+
id?: string | null;
|
|
22080
|
+
uri?: string | null;
|
|
22081
|
+
/**
|
|
22082
|
+
* Content ID of the created record
|
|
22083
|
+
*/
|
|
22084
|
+
cid?: string | null;
|
|
22085
|
+
permalink?: string | null;
|
|
22086
|
+
/**
|
|
22087
|
+
* Author DID (owner of the record)
|
|
22088
|
+
*/
|
|
22089
|
+
did?: string | null;
|
|
22090
|
+
} | null;
|
|
22091
|
+
} | null;
|
|
22092
|
+
createdAt: string | null;
|
|
22093
|
+
updatedAt: string | null;
|
|
22094
|
+
deletedAt?: string | null;
|
|
22095
|
+
}>;
|
|
22096
|
+
total: number;
|
|
21130
22097
|
};
|
|
21131
22098
|
/**
|
|
21132
22099
|
* 400
|
|
@@ -21177,8 +22144,8 @@ type $OpenApiTs = {
|
|
|
21177
22144
|
};
|
|
21178
22145
|
};
|
|
21179
22146
|
};
|
|
21180
|
-
|
|
21181
|
-
req:
|
|
22147
|
+
post: {
|
|
22148
|
+
req: CommentCreateData;
|
|
21182
22149
|
res: {
|
|
21183
22150
|
/**
|
|
21184
22151
|
* 200
|
|
@@ -21327,363 +22294,82 @@ type $OpenApiTs = {
|
|
|
21327
22294
|
} | null;
|
|
21328
22295
|
SLACK?: {
|
|
21329
22296
|
code?: string | null;
|
|
21330
|
-
errorMessage?: string | null;
|
|
21331
|
-
isTransient?: boolean | null;
|
|
21332
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21333
|
-
httpStatus?: number | null;
|
|
21334
|
-
meta?: unknown;
|
|
21335
|
-
userFacingMessage?: string | null;
|
|
21336
|
-
} | null;
|
|
21337
|
-
BLUESKY?: {
|
|
21338
|
-
code?: string | null;
|
|
21339
|
-
errorMessage?: string | null;
|
|
21340
|
-
isTransient?: boolean | null;
|
|
21341
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21342
|
-
httpStatus?: number | null;
|
|
21343
|
-
meta?: unknown;
|
|
21344
|
-
userFacingMessage?: string | null;
|
|
21345
|
-
} | null;
|
|
21346
|
-
} | null;
|
|
21347
|
-
externalData?: {
|
|
21348
|
-
FACEBOOK?: {
|
|
21349
|
-
id?: string | null;
|
|
21350
|
-
permalink?: string | null;
|
|
21351
|
-
} | null;
|
|
21352
|
-
INSTAGRAM?: {
|
|
21353
|
-
id?: string | null;
|
|
21354
|
-
permalink?: string | null;
|
|
21355
|
-
} | null;
|
|
21356
|
-
TIKTOK?: {
|
|
21357
|
-
id?: string | null;
|
|
21358
|
-
permalink?: string | null;
|
|
21359
|
-
} | null;
|
|
21360
|
-
LINKEDIN?: {
|
|
21361
|
-
id?: string | null;
|
|
21362
|
-
commentUrn?: string | null;
|
|
21363
|
-
permalink?: string | null;
|
|
21364
|
-
} | null;
|
|
21365
|
-
REDDIT?: {
|
|
21366
|
-
id?: string | null;
|
|
21367
|
-
permalink?: string | null;
|
|
21368
|
-
} | null;
|
|
21369
|
-
YOUTUBE?: {
|
|
21370
|
-
id?: string | null;
|
|
21371
|
-
permalink?: string | null;
|
|
21372
|
-
} | null;
|
|
21373
|
-
MASTODON?: {
|
|
21374
|
-
id?: string | null;
|
|
21375
|
-
permalink?: string | null;
|
|
21376
|
-
} | null;
|
|
21377
|
-
THREADS?: {
|
|
21378
|
-
id?: string | null;
|
|
21379
|
-
permalink?: string | null;
|
|
21380
|
-
} | null;
|
|
21381
|
-
DISCORD?: {
|
|
21382
|
-
id?: string | null;
|
|
21383
|
-
permalink?: string | null;
|
|
21384
|
-
} | null;
|
|
21385
|
-
SLACK?: {
|
|
21386
|
-
id?: string | null;
|
|
21387
|
-
permalink?: string | null;
|
|
21388
|
-
} | null;
|
|
21389
|
-
BLUESKY?: {
|
|
21390
|
-
id?: string | null;
|
|
21391
|
-
uri?: string | null;
|
|
21392
|
-
/**
|
|
21393
|
-
* Content ID of the created record
|
|
21394
|
-
*/
|
|
21395
|
-
cid?: string | null;
|
|
21396
|
-
permalink?: string | null;
|
|
21397
|
-
/**
|
|
21398
|
-
* Author DID (owner of the record)
|
|
21399
|
-
*/
|
|
21400
|
-
did?: string | null;
|
|
21401
|
-
} | null;
|
|
21402
|
-
} | null;
|
|
21403
|
-
createdAt: string | null;
|
|
21404
|
-
updatedAt: string | null;
|
|
21405
|
-
deletedAt?: string | null;
|
|
21406
|
-
};
|
|
21407
|
-
/**
|
|
21408
|
-
* 400
|
|
21409
|
-
*/
|
|
21410
|
-
400: {
|
|
21411
|
-
statusCode?: number | null;
|
|
21412
|
-
message: string;
|
|
21413
|
-
issues?: Array<{
|
|
21414
|
-
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
21415
|
-
message: string;
|
|
21416
|
-
path?: Array<(string | number)> | null;
|
|
21417
|
-
}> | null;
|
|
21418
|
-
};
|
|
21419
|
-
/**
|
|
21420
|
-
* 401
|
|
21421
|
-
*/
|
|
21422
|
-
401: {
|
|
21423
|
-
statusCode?: number | null;
|
|
21424
|
-
message: string;
|
|
21425
|
-
};
|
|
21426
|
-
/**
|
|
21427
|
-
* 403
|
|
21428
|
-
*/
|
|
21429
|
-
403: {
|
|
21430
|
-
statusCode?: number | null;
|
|
21431
|
-
message: string;
|
|
21432
|
-
};
|
|
21433
|
-
/**
|
|
21434
|
-
* 404
|
|
21435
|
-
*/
|
|
21436
|
-
404: {
|
|
21437
|
-
statusCode?: number | null;
|
|
21438
|
-
message: string;
|
|
21439
|
-
};
|
|
21440
|
-
/**
|
|
21441
|
-
* 429
|
|
21442
|
-
*/
|
|
21443
|
-
429: {
|
|
21444
|
-
statusCode?: number | null;
|
|
21445
|
-
message: string;
|
|
21446
|
-
};
|
|
21447
|
-
/**
|
|
21448
|
-
* 500
|
|
21449
|
-
*/
|
|
21450
|
-
500: {
|
|
21451
|
-
statusCode?: number | null;
|
|
21452
|
-
message: string;
|
|
21453
|
-
};
|
|
21454
|
-
};
|
|
21455
|
-
};
|
|
21456
|
-
};
|
|
21457
|
-
'/api/v1/comment/': {
|
|
21458
|
-
get: {
|
|
21459
|
-
req: CommentGetListData;
|
|
21460
|
-
res: {
|
|
21461
|
-
/**
|
|
21462
|
-
* 200
|
|
21463
|
-
*/
|
|
21464
|
-
200: {
|
|
21465
|
-
items: Array<{
|
|
21466
|
-
id: string;
|
|
21467
|
-
teamId: string;
|
|
21468
|
-
organizationId?: string | null;
|
|
21469
|
-
internalPostId: string;
|
|
21470
|
-
internalParentCommentId?: string | null;
|
|
21471
|
-
fetchedParentCommentId?: string | null;
|
|
21472
|
-
title: string;
|
|
21473
|
-
postDate: string | null;
|
|
21474
|
-
postedDate?: string | null;
|
|
21475
|
-
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'RETRYING';
|
|
21476
|
-
data: {
|
|
21477
|
-
FACEBOOK?: {
|
|
21478
|
-
text?: string | null;
|
|
21479
|
-
} | null;
|
|
21480
|
-
INSTAGRAM?: {
|
|
21481
|
-
text?: string | null;
|
|
21482
|
-
} | null;
|
|
21483
|
-
THREADS?: {
|
|
21484
|
-
text?: string | null;
|
|
21485
|
-
} | null;
|
|
21486
|
-
TIKTOK?: {
|
|
21487
|
-
text?: string | null;
|
|
21488
|
-
} | null;
|
|
21489
|
-
LINKEDIN?: {
|
|
21490
|
-
text?: string | null;
|
|
21491
|
-
} | null;
|
|
21492
|
-
YOUTUBE?: {
|
|
21493
|
-
text?: string | null;
|
|
21494
|
-
} | null;
|
|
21495
|
-
REDDIT?: {
|
|
21496
|
-
text?: string | null;
|
|
21497
|
-
} | null;
|
|
21498
|
-
MASTODON?: {
|
|
21499
|
-
text?: string | null;
|
|
21500
|
-
} | null;
|
|
21501
|
-
DISCORD?: {
|
|
21502
|
-
text?: string | null;
|
|
21503
|
-
} | null;
|
|
21504
|
-
SLACK?: {
|
|
21505
|
-
text?: string | null;
|
|
21506
|
-
} | null;
|
|
21507
|
-
BLUESKY?: {
|
|
21508
|
-
text?: string | null;
|
|
21509
|
-
} | null;
|
|
21510
|
-
};
|
|
21511
|
-
error?: string | null;
|
|
21512
|
-
errors?: {
|
|
21513
|
-
FACEBOOK?: string | null;
|
|
21514
|
-
INSTAGRAM?: string | null;
|
|
21515
|
-
TIKTOK?: string | null;
|
|
21516
|
-
LINKEDIN?: string | null;
|
|
21517
|
-
REDDIT?: string | null;
|
|
21518
|
-
YOUTUBE?: string | null;
|
|
21519
|
-
MASTODON?: string | null;
|
|
21520
|
-
THREADS?: string | null;
|
|
21521
|
-
DISCORD?: string | null;
|
|
21522
|
-
SLACK?: string | null;
|
|
21523
|
-
BLUESKY?: string | null;
|
|
22297
|
+
errorMessage?: string | null;
|
|
22298
|
+
isTransient?: boolean | null;
|
|
22299
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22300
|
+
httpStatus?: number | null;
|
|
22301
|
+
meta?: unknown;
|
|
22302
|
+
userFacingMessage?: string | null;
|
|
21524
22303
|
} | null;
|
|
21525
|
-
|
|
21526
|
-
|
|
21527
|
-
|
|
21528
|
-
|
|
21529
|
-
|
|
21530
|
-
|
|
21531
|
-
|
|
21532
|
-
|
|
21533
|
-
userFacingMessage?: string | null;
|
|
21534
|
-
} | null;
|
|
21535
|
-
INSTAGRAM?: {
|
|
21536
|
-
code?: string | null;
|
|
21537
|
-
errorMessage?: string | null;
|
|
21538
|
-
isTransient?: boolean | null;
|
|
21539
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21540
|
-
httpStatus?: number | null;
|
|
21541
|
-
meta?: unknown;
|
|
21542
|
-
userFacingMessage?: string | null;
|
|
21543
|
-
} | null;
|
|
21544
|
-
TIKTOK?: {
|
|
21545
|
-
code?: string | null;
|
|
21546
|
-
errorMessage?: string | null;
|
|
21547
|
-
isTransient?: boolean | null;
|
|
21548
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21549
|
-
httpStatus?: number | null;
|
|
21550
|
-
meta?: unknown;
|
|
21551
|
-
userFacingMessage?: string | null;
|
|
21552
|
-
} | null;
|
|
21553
|
-
LINKEDIN?: {
|
|
21554
|
-
code?: string | null;
|
|
21555
|
-
errorMessage?: string | null;
|
|
21556
|
-
isTransient?: boolean | null;
|
|
21557
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21558
|
-
httpStatus?: number | null;
|
|
21559
|
-
meta?: unknown;
|
|
21560
|
-
userFacingMessage?: string | null;
|
|
21561
|
-
} | null;
|
|
21562
|
-
REDDIT?: {
|
|
21563
|
-
code?: string | null;
|
|
21564
|
-
errorMessage?: string | null;
|
|
21565
|
-
isTransient?: boolean | null;
|
|
21566
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21567
|
-
httpStatus?: number | null;
|
|
21568
|
-
meta?: unknown;
|
|
21569
|
-
userFacingMessage?: string | null;
|
|
21570
|
-
} | null;
|
|
21571
|
-
YOUTUBE?: {
|
|
21572
|
-
code?: string | null;
|
|
21573
|
-
errorMessage?: string | null;
|
|
21574
|
-
isTransient?: boolean | null;
|
|
21575
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21576
|
-
httpStatus?: number | null;
|
|
21577
|
-
meta?: unknown;
|
|
21578
|
-
userFacingMessage?: string | null;
|
|
21579
|
-
} | null;
|
|
21580
|
-
MASTODON?: {
|
|
21581
|
-
code?: string | null;
|
|
21582
|
-
errorMessage?: string | null;
|
|
21583
|
-
isTransient?: boolean | null;
|
|
21584
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21585
|
-
httpStatus?: number | null;
|
|
21586
|
-
meta?: unknown;
|
|
21587
|
-
userFacingMessage?: string | null;
|
|
21588
|
-
} | null;
|
|
21589
|
-
THREADS?: {
|
|
21590
|
-
code?: string | null;
|
|
21591
|
-
errorMessage?: string | null;
|
|
21592
|
-
isTransient?: boolean | null;
|
|
21593
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21594
|
-
httpStatus?: number | null;
|
|
21595
|
-
meta?: unknown;
|
|
21596
|
-
userFacingMessage?: string | null;
|
|
21597
|
-
} | null;
|
|
21598
|
-
DISCORD?: {
|
|
21599
|
-
code?: string | null;
|
|
21600
|
-
errorMessage?: string | null;
|
|
21601
|
-
isTransient?: boolean | null;
|
|
21602
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21603
|
-
httpStatus?: number | null;
|
|
21604
|
-
meta?: unknown;
|
|
21605
|
-
userFacingMessage?: string | null;
|
|
21606
|
-
} | null;
|
|
21607
|
-
SLACK?: {
|
|
21608
|
-
code?: string | null;
|
|
21609
|
-
errorMessage?: string | null;
|
|
21610
|
-
isTransient?: boolean | null;
|
|
21611
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21612
|
-
httpStatus?: number | null;
|
|
21613
|
-
meta?: unknown;
|
|
21614
|
-
userFacingMessage?: string | null;
|
|
21615
|
-
} | null;
|
|
21616
|
-
BLUESKY?: {
|
|
21617
|
-
code?: string | null;
|
|
21618
|
-
errorMessage?: string | null;
|
|
21619
|
-
isTransient?: boolean | null;
|
|
21620
|
-
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
21621
|
-
httpStatus?: number | null;
|
|
21622
|
-
meta?: unknown;
|
|
21623
|
-
userFacingMessage?: string | null;
|
|
21624
|
-
} | null;
|
|
22304
|
+
BLUESKY?: {
|
|
22305
|
+
code?: string | null;
|
|
22306
|
+
errorMessage?: string | null;
|
|
22307
|
+
isTransient?: boolean | null;
|
|
22308
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
22309
|
+
httpStatus?: number | null;
|
|
22310
|
+
meta?: unknown;
|
|
22311
|
+
userFacingMessage?: string | null;
|
|
21625
22312
|
} | null;
|
|
21626
|
-
|
|
21627
|
-
|
|
21628
|
-
|
|
21629
|
-
|
|
21630
|
-
|
|
21631
|
-
INSTAGRAM?: {
|
|
21632
|
-
id?: string | null;
|
|
21633
|
-
permalink?: string | null;
|
|
21634
|
-
} | null;
|
|
21635
|
-
TIKTOK?: {
|
|
21636
|
-
id?: string | null;
|
|
21637
|
-
permalink?: string | null;
|
|
21638
|
-
} | null;
|
|
21639
|
-
LINKEDIN?: {
|
|
21640
|
-
id?: string | null;
|
|
21641
|
-
commentUrn?: string | null;
|
|
21642
|
-
permalink?: string | null;
|
|
21643
|
-
} | null;
|
|
21644
|
-
REDDIT?: {
|
|
21645
|
-
id?: string | null;
|
|
21646
|
-
permalink?: string | null;
|
|
21647
|
-
} | null;
|
|
21648
|
-
YOUTUBE?: {
|
|
21649
|
-
id?: string | null;
|
|
21650
|
-
permalink?: string | null;
|
|
21651
|
-
} | null;
|
|
21652
|
-
MASTODON?: {
|
|
21653
|
-
id?: string | null;
|
|
21654
|
-
permalink?: string | null;
|
|
21655
|
-
} | null;
|
|
21656
|
-
THREADS?: {
|
|
21657
|
-
id?: string | null;
|
|
21658
|
-
permalink?: string | null;
|
|
21659
|
-
} | null;
|
|
21660
|
-
DISCORD?: {
|
|
21661
|
-
id?: string | null;
|
|
21662
|
-
permalink?: string | null;
|
|
21663
|
-
} | null;
|
|
21664
|
-
SLACK?: {
|
|
21665
|
-
id?: string | null;
|
|
21666
|
-
permalink?: string | null;
|
|
21667
|
-
} | null;
|
|
21668
|
-
BLUESKY?: {
|
|
21669
|
-
id?: string | null;
|
|
21670
|
-
uri?: string | null;
|
|
21671
|
-
/**
|
|
21672
|
-
* Content ID of the created record
|
|
21673
|
-
*/
|
|
21674
|
-
cid?: string | null;
|
|
21675
|
-
permalink?: string | null;
|
|
21676
|
-
/**
|
|
21677
|
-
* Author DID (owner of the record)
|
|
21678
|
-
*/
|
|
21679
|
-
did?: string | null;
|
|
21680
|
-
} | null;
|
|
22313
|
+
} | null;
|
|
22314
|
+
externalData?: {
|
|
22315
|
+
FACEBOOK?: {
|
|
22316
|
+
id?: string | null;
|
|
22317
|
+
permalink?: string | null;
|
|
21681
22318
|
} | null;
|
|
21682
|
-
|
|
21683
|
-
|
|
21684
|
-
|
|
21685
|
-
|
|
21686
|
-
|
|
22319
|
+
INSTAGRAM?: {
|
|
22320
|
+
id?: string | null;
|
|
22321
|
+
permalink?: string | null;
|
|
22322
|
+
} | null;
|
|
22323
|
+
TIKTOK?: {
|
|
22324
|
+
id?: string | null;
|
|
22325
|
+
permalink?: string | null;
|
|
22326
|
+
} | null;
|
|
22327
|
+
LINKEDIN?: {
|
|
22328
|
+
id?: string | null;
|
|
22329
|
+
commentUrn?: string | null;
|
|
22330
|
+
permalink?: string | null;
|
|
22331
|
+
} | null;
|
|
22332
|
+
REDDIT?: {
|
|
22333
|
+
id?: string | null;
|
|
22334
|
+
permalink?: string | null;
|
|
22335
|
+
} | null;
|
|
22336
|
+
YOUTUBE?: {
|
|
22337
|
+
id?: string | null;
|
|
22338
|
+
permalink?: string | null;
|
|
22339
|
+
} | null;
|
|
22340
|
+
MASTODON?: {
|
|
22341
|
+
id?: string | null;
|
|
22342
|
+
permalink?: string | null;
|
|
22343
|
+
} | null;
|
|
22344
|
+
THREADS?: {
|
|
22345
|
+
id?: string | null;
|
|
22346
|
+
permalink?: string | null;
|
|
22347
|
+
} | null;
|
|
22348
|
+
DISCORD?: {
|
|
22349
|
+
id?: string | null;
|
|
22350
|
+
permalink?: string | null;
|
|
22351
|
+
} | null;
|
|
22352
|
+
SLACK?: {
|
|
22353
|
+
id?: string | null;
|
|
22354
|
+
permalink?: string | null;
|
|
22355
|
+
} | null;
|
|
22356
|
+
BLUESKY?: {
|
|
22357
|
+
id?: string | null;
|
|
22358
|
+
uri?: string | null;
|
|
22359
|
+
/**
|
|
22360
|
+
* Content ID of the created record
|
|
22361
|
+
*/
|
|
22362
|
+
cid?: string | null;
|
|
22363
|
+
permalink?: string | null;
|
|
22364
|
+
/**
|
|
22365
|
+
* Author DID (owner of the record)
|
|
22366
|
+
*/
|
|
22367
|
+
did?: string | null;
|
|
22368
|
+
} | null;
|
|
22369
|
+
} | null;
|
|
22370
|
+
createdAt: string | null;
|
|
22371
|
+
updatedAt: string | null;
|
|
22372
|
+
deletedAt?: string | null;
|
|
21687
22373
|
};
|
|
21688
22374
|
/**
|
|
21689
22375
|
* 400
|
|
@@ -21734,8 +22420,10 @@ type $OpenApiTs = {
|
|
|
21734
22420
|
};
|
|
21735
22421
|
};
|
|
21736
22422
|
};
|
|
22423
|
+
};
|
|
22424
|
+
'/api/v1/comment/{id}/retry': {
|
|
21737
22425
|
post: {
|
|
21738
|
-
req:
|
|
22426
|
+
req: CommentRetryData;
|
|
21739
22427
|
res: {
|
|
21740
22428
|
/**
|
|
21741
22429
|
* 200
|
|
@@ -28862,6 +29550,25 @@ declare class UploadService {
|
|
|
28862
29550
|
declare class PostService {
|
|
28863
29551
|
readonly httpRequest: BaseHttpRequest;
|
|
28864
29552
|
constructor(httpRequest: BaseHttpRequest);
|
|
29553
|
+
/**
|
|
29554
|
+
* Get posts that can be reconnected to a social account
|
|
29555
|
+
* @param data The data for the request.
|
|
29556
|
+
* @param data.teamId
|
|
29557
|
+
* @param data.type
|
|
29558
|
+
* @param data.offset
|
|
29559
|
+
* @param data.limit
|
|
29560
|
+
* @returns unknown 200
|
|
29561
|
+
* @throws ApiError
|
|
29562
|
+
*/
|
|
29563
|
+
postGetReconnectSocialAccountCandidates(data: PostGetReconnectSocialAccountCandidatesData): CancelablePromise<PostGetReconnectSocialAccountCandidatesResponse>;
|
|
29564
|
+
/**
|
|
29565
|
+
* Reconnect social account to matching posts
|
|
29566
|
+
* @param data The data for the request.
|
|
29567
|
+
* @param data.requestBody Body
|
|
29568
|
+
* @returns unknown 200
|
|
29569
|
+
* @throws ApiError
|
|
29570
|
+
*/
|
|
29571
|
+
postReconnectSocialAccount(data?: PostReconnectSocialAccountData): CancelablePromise<PostReconnectSocialAccountResponse>;
|
|
28865
29572
|
/**
|
|
28866
29573
|
* Get post
|
|
28867
29574
|
* @param data The data for the request.
|
|
@@ -29093,6 +29800,14 @@ declare class CommentService {
|
|
|
29093
29800
|
* @throws ApiError
|
|
29094
29801
|
*/
|
|
29095
29802
|
commentCreate(data?: CommentCreateData): CancelablePromise<CommentCreateResponse>;
|
|
29803
|
+
/**
|
|
29804
|
+
* Retry comment
|
|
29805
|
+
* @param data The data for the request.
|
|
29806
|
+
* @param data.id
|
|
29807
|
+
* @returns unknown 200
|
|
29808
|
+
* @throws ApiError
|
|
29809
|
+
*/
|
|
29810
|
+
commentRetry(data: CommentRetryData): CancelablePromise<CommentRetryResponse>;
|
|
29096
29811
|
}
|
|
29097
29812
|
declare class MiscService {
|
|
29098
29813
|
readonly httpRequest: BaseHttpRequest;
|
|
@@ -30037,4 +30752,4 @@ declare class Bundlesocial extends Client {
|
|
|
30037
30752
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
30038
30753
|
}
|
|
30039
30754
|
|
|
30040
|
-
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|
|
30755
|
+
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentRetryData, CommentRetryResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetReconnectSocialAccountCandidatesData, PostGetReconnectSocialAccountCandidatesResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostReconnectSocialAccountData, PostReconnectSocialAccountResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|