@postrun/js 1.3.0 → 2.0.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/{chunk-KPF3GI7Z.js → chunk-EFB6IKZF.js} +12 -10
- package/dist/chunk-EFB6IKZF.js.map +1 -0
- package/dist/{chunk-JBNHOK3M.js → chunk-XXB7GZ3H.js} +3 -3
- package/dist/{chunk-JBNHOK3M.js.map → chunk-XXB7GZ3H.js.map} +1 -1
- package/dist/index.cjs +10 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/schemas/index.cjs +10 -8
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +8 -6
- package/dist/schemas/index.d.ts +8 -6
- package/dist/schemas/index.js +1 -1
- package/dist/server.cjs +10 -8
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +2 -2
- package/dist/{types.gen-DeuF7WVq.d.cts → types.gen-0ufzFdld.d.cts} +19 -7
- package/dist/{types.gen-DeuF7WVq.d.ts → types.gen-0ufzFdld.d.ts} +19 -7
- package/package.json +1 -1
- package/dist/chunk-KPF3GI7Z.js.map +0 -1
package/dist/schemas/index.d.cts
CHANGED
|
@@ -19,7 +19,6 @@ declare const zErrorCode: z.ZodEnum<{
|
|
|
19
19
|
account_not_available: "account_not_available";
|
|
20
20
|
connection_reauth_required: "connection_reauth_required";
|
|
21
21
|
connection_not_pending: "connection_not_pending";
|
|
22
|
-
connection_in_use: "connection_in_use";
|
|
23
22
|
not_implemented: "not_implemented";
|
|
24
23
|
connection_discovery_failed: "connection_discovery_failed";
|
|
25
24
|
media_processing: "media_processing";
|
|
@@ -66,6 +65,7 @@ declare const zErrorCode: z.ZodEnum<{
|
|
|
66
65
|
media_failed: "media_failed";
|
|
67
66
|
media_unsupported: "media_unsupported";
|
|
68
67
|
media_kind_mismatch: "media_kind_mismatch";
|
|
68
|
+
variant_unparseable: "variant_unparseable";
|
|
69
69
|
publishing_unavailable: "publishing_unavailable";
|
|
70
70
|
x_duplicate_content: "x_duplicate_content";
|
|
71
71
|
x_not_authorized: "x_not_authorized";
|
|
@@ -96,6 +96,7 @@ declare const zErrorCode: z.ZodEnum<{
|
|
|
96
96
|
tiktok_rate_limited: "tiktok_rate_limited";
|
|
97
97
|
tiktok_publish_failed: "tiktok_publish_failed";
|
|
98
98
|
connection_platform_mismatch: "connection_platform_mismatch";
|
|
99
|
+
connection_removed: "connection_removed";
|
|
99
100
|
}>;
|
|
100
101
|
declare const zProfilesListQuery: z.ZodObject<{
|
|
101
102
|
limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
@@ -1139,7 +1140,7 @@ declare const zPostsListResponse: z.ZodObject<{
|
|
|
1139
1140
|
variants: z.ZodArray<z.ZodObject<{
|
|
1140
1141
|
id: z.ZodString;
|
|
1141
1142
|
object: z.ZodLiteral<"post_variant">;
|
|
1142
|
-
connection_id: z.ZodString
|
|
1143
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1143
1144
|
platform: z.ZodEnum<{
|
|
1144
1145
|
x: "x";
|
|
1145
1146
|
linkedin: "linkedin";
|
|
@@ -1413,7 +1414,7 @@ declare const zPostsCreateResponse: z.ZodObject<{
|
|
|
1413
1414
|
variants: z.ZodArray<z.ZodObject<{
|
|
1414
1415
|
id: z.ZodString;
|
|
1415
1416
|
object: z.ZodLiteral<"post_variant">;
|
|
1416
|
-
connection_id: z.ZodString
|
|
1417
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1417
1418
|
platform: z.ZodEnum<{
|
|
1418
1419
|
x: "x";
|
|
1419
1420
|
linkedin: "linkedin";
|
|
@@ -1497,7 +1498,7 @@ declare const zPostsGetResponse: z.ZodObject<{
|
|
|
1497
1498
|
variants: z.ZodArray<z.ZodObject<{
|
|
1498
1499
|
id: z.ZodString;
|
|
1499
1500
|
object: z.ZodLiteral<"post_variant">;
|
|
1500
|
-
connection_id: z.ZodString
|
|
1501
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1501
1502
|
platform: z.ZodEnum<{
|
|
1502
1503
|
x: "x";
|
|
1503
1504
|
linkedin: "linkedin";
|
|
@@ -1768,7 +1769,7 @@ declare const zPostsUpdateResponse: z.ZodObject<{
|
|
|
1768
1769
|
variants: z.ZodArray<z.ZodObject<{
|
|
1769
1770
|
id: z.ZodString;
|
|
1770
1771
|
object: z.ZodLiteral<"post_variant">;
|
|
1771
|
-
connection_id: z.ZodString
|
|
1772
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1772
1773
|
platform: z.ZodEnum<{
|
|
1773
1774
|
x: "x";
|
|
1774
1775
|
linkedin: "linkedin";
|
|
@@ -2026,7 +2027,6 @@ declare const zPostsValidateResponse: z.ZodObject<{
|
|
|
2026
2027
|
account_not_available: "account_not_available";
|
|
2027
2028
|
connection_reauth_required: "connection_reauth_required";
|
|
2028
2029
|
connection_not_pending: "connection_not_pending";
|
|
2029
|
-
connection_in_use: "connection_in_use";
|
|
2030
2030
|
not_implemented: "not_implemented";
|
|
2031
2031
|
connection_discovery_failed: "connection_discovery_failed";
|
|
2032
2032
|
media_processing: "media_processing";
|
|
@@ -2073,6 +2073,7 @@ declare const zPostsValidateResponse: z.ZodObject<{
|
|
|
2073
2073
|
media_failed: "media_failed";
|
|
2074
2074
|
media_unsupported: "media_unsupported";
|
|
2075
2075
|
media_kind_mismatch: "media_kind_mismatch";
|
|
2076
|
+
variant_unparseable: "variant_unparseable";
|
|
2076
2077
|
publishing_unavailable: "publishing_unavailable";
|
|
2077
2078
|
x_duplicate_content: "x_duplicate_content";
|
|
2078
2079
|
x_not_authorized: "x_not_authorized";
|
|
@@ -2103,6 +2104,7 @@ declare const zPostsValidateResponse: z.ZodObject<{
|
|
|
2103
2104
|
tiktok_rate_limited: "tiktok_rate_limited";
|
|
2104
2105
|
tiktok_publish_failed: "tiktok_publish_failed";
|
|
2105
2106
|
connection_platform_mismatch: "connection_platform_mismatch";
|
|
2107
|
+
connection_removed: "connection_removed";
|
|
2106
2108
|
}>;
|
|
2107
2109
|
message: z.ZodString;
|
|
2108
2110
|
hint: z.ZodOptional<z.ZodString>;
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ declare const zErrorCode: z.ZodEnum<{
|
|
|
19
19
|
account_not_available: "account_not_available";
|
|
20
20
|
connection_reauth_required: "connection_reauth_required";
|
|
21
21
|
connection_not_pending: "connection_not_pending";
|
|
22
|
-
connection_in_use: "connection_in_use";
|
|
23
22
|
not_implemented: "not_implemented";
|
|
24
23
|
connection_discovery_failed: "connection_discovery_failed";
|
|
25
24
|
media_processing: "media_processing";
|
|
@@ -66,6 +65,7 @@ declare const zErrorCode: z.ZodEnum<{
|
|
|
66
65
|
media_failed: "media_failed";
|
|
67
66
|
media_unsupported: "media_unsupported";
|
|
68
67
|
media_kind_mismatch: "media_kind_mismatch";
|
|
68
|
+
variant_unparseable: "variant_unparseable";
|
|
69
69
|
publishing_unavailable: "publishing_unavailable";
|
|
70
70
|
x_duplicate_content: "x_duplicate_content";
|
|
71
71
|
x_not_authorized: "x_not_authorized";
|
|
@@ -96,6 +96,7 @@ declare const zErrorCode: z.ZodEnum<{
|
|
|
96
96
|
tiktok_rate_limited: "tiktok_rate_limited";
|
|
97
97
|
tiktok_publish_failed: "tiktok_publish_failed";
|
|
98
98
|
connection_platform_mismatch: "connection_platform_mismatch";
|
|
99
|
+
connection_removed: "connection_removed";
|
|
99
100
|
}>;
|
|
100
101
|
declare const zProfilesListQuery: z.ZodObject<{
|
|
101
102
|
limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
@@ -1139,7 +1140,7 @@ declare const zPostsListResponse: z.ZodObject<{
|
|
|
1139
1140
|
variants: z.ZodArray<z.ZodObject<{
|
|
1140
1141
|
id: z.ZodString;
|
|
1141
1142
|
object: z.ZodLiteral<"post_variant">;
|
|
1142
|
-
connection_id: z.ZodString
|
|
1143
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1143
1144
|
platform: z.ZodEnum<{
|
|
1144
1145
|
x: "x";
|
|
1145
1146
|
linkedin: "linkedin";
|
|
@@ -1413,7 +1414,7 @@ declare const zPostsCreateResponse: z.ZodObject<{
|
|
|
1413
1414
|
variants: z.ZodArray<z.ZodObject<{
|
|
1414
1415
|
id: z.ZodString;
|
|
1415
1416
|
object: z.ZodLiteral<"post_variant">;
|
|
1416
|
-
connection_id: z.ZodString
|
|
1417
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1417
1418
|
platform: z.ZodEnum<{
|
|
1418
1419
|
x: "x";
|
|
1419
1420
|
linkedin: "linkedin";
|
|
@@ -1497,7 +1498,7 @@ declare const zPostsGetResponse: z.ZodObject<{
|
|
|
1497
1498
|
variants: z.ZodArray<z.ZodObject<{
|
|
1498
1499
|
id: z.ZodString;
|
|
1499
1500
|
object: z.ZodLiteral<"post_variant">;
|
|
1500
|
-
connection_id: z.ZodString
|
|
1501
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1501
1502
|
platform: z.ZodEnum<{
|
|
1502
1503
|
x: "x";
|
|
1503
1504
|
linkedin: "linkedin";
|
|
@@ -1768,7 +1769,7 @@ declare const zPostsUpdateResponse: z.ZodObject<{
|
|
|
1768
1769
|
variants: z.ZodArray<z.ZodObject<{
|
|
1769
1770
|
id: z.ZodString;
|
|
1770
1771
|
object: z.ZodLiteral<"post_variant">;
|
|
1771
|
-
connection_id: z.ZodString
|
|
1772
|
+
connection_id: z.ZodNullable<z.ZodString>;
|
|
1772
1773
|
platform: z.ZodEnum<{
|
|
1773
1774
|
x: "x";
|
|
1774
1775
|
linkedin: "linkedin";
|
|
@@ -2026,7 +2027,6 @@ declare const zPostsValidateResponse: z.ZodObject<{
|
|
|
2026
2027
|
account_not_available: "account_not_available";
|
|
2027
2028
|
connection_reauth_required: "connection_reauth_required";
|
|
2028
2029
|
connection_not_pending: "connection_not_pending";
|
|
2029
|
-
connection_in_use: "connection_in_use";
|
|
2030
2030
|
not_implemented: "not_implemented";
|
|
2031
2031
|
connection_discovery_failed: "connection_discovery_failed";
|
|
2032
2032
|
media_processing: "media_processing";
|
|
@@ -2073,6 +2073,7 @@ declare const zPostsValidateResponse: z.ZodObject<{
|
|
|
2073
2073
|
media_failed: "media_failed";
|
|
2074
2074
|
media_unsupported: "media_unsupported";
|
|
2075
2075
|
media_kind_mismatch: "media_kind_mismatch";
|
|
2076
|
+
variant_unparseable: "variant_unparseable";
|
|
2076
2077
|
publishing_unavailable: "publishing_unavailable";
|
|
2077
2078
|
x_duplicate_content: "x_duplicate_content";
|
|
2078
2079
|
x_not_authorized: "x_not_authorized";
|
|
@@ -2103,6 +2104,7 @@ declare const zPostsValidateResponse: z.ZodObject<{
|
|
|
2103
2104
|
tiktok_rate_limited: "tiktok_rate_limited";
|
|
2104
2105
|
tiktok_publish_failed: "tiktok_publish_failed";
|
|
2105
2106
|
connection_platform_mismatch: "connection_platform_mismatch";
|
|
2107
|
+
connection_removed: "connection_removed";
|
|
2106
2108
|
}>;
|
|
2107
2109
|
message: z.ZodString;
|
|
2108
2110
|
hint: z.ZodOptional<z.ZodString>;
|
package/dist/schemas/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { zConnectionsConnectBody, zConnectionsConnectPath, zConnectionsConnectResponse, zConnectionsDeletePath, zConnectionsDeleteResponse, zConnectionsGetPath, zConnectionsGetResponse, zConnectionsListAccountsPath, zConnectionsListAccountsResponse, zConnectionsListByProfilePath, zConnectionsListByProfileQuery, zConnectionsListByProfileResponse, zConnectionsSelectBody, zConnectionsSelectPath, zConnectionsSelectResponse, zErrorCode, zGoogleCreateAdBody, zGoogleCreateAdGroupBody, zGoogleCreateAdGroupPath, zGoogleCreateAdGroupResponse, zGoogleCreateAdPath, zGoogleCreateAdResponse, zGoogleCreateBudgetBody, zGoogleCreateBudgetPath, zGoogleCreateBudgetResponse, zGoogleCreateCampaignBody, zGoogleCreateCampaignPath, zGoogleCreateCampaignResponse, zGoogleCreateConversionActionBody, zGoogleCreateConversionActionPath, zGoogleCreateConversionActionResponse, zGoogleCreateDisplayAdBody, zGoogleCreateDisplayAdPath, zGoogleCreateDisplayAdResponse, zGoogleCreateKeywordBody, zGoogleCreateKeywordPath, zGoogleCreateKeywordResponse, zGoogleDeleteAdBody, zGoogleDeleteAdGroupBody, zGoogleDeleteAdGroupPath, zGoogleDeleteAdGroupResponse, zGoogleDeleteAdPath, zGoogleDeleteAdResponse, zGoogleDeleteBudgetBody, zGoogleDeleteBudgetPath, zGoogleDeleteBudgetResponse, zGoogleDeleteCampaignBody, zGoogleDeleteCampaignPath, zGoogleDeleteCampaignResponse, zGoogleDeleteKeywordBody, zGoogleDeleteKeywordPath, zGoogleDeleteKeywordResponse, zGoogleEditAdGroupBody, zGoogleEditAdGroupPath, zGoogleEditAdGroupResponse, zGoogleEditBudgetBody, zGoogleEditBudgetPath, zGoogleEditBudgetResponse, zGoogleEditCampaignBody, zGoogleEditCampaignPath, zGoogleEditCampaignResponse, zGoogleEnableAdBody, zGoogleEnableAdGroupBody, zGoogleEnableAdGroupPath, zGoogleEnableAdGroupResponse, zGoogleEnableAdPath, zGoogleEnableAdResponse, zGoogleEnableCampaignBody, zGoogleEnableCampaignPath, zGoogleEnableCampaignResponse, zGoogleEnableKeywordBody, zGoogleEnableKeywordPath, zGoogleEnableKeywordResponse, zGoogleGetAccountPath, zGoogleGetAccountResponse, zGoogleGetAdGroupPath, zGoogleGetAdGroupResponse, zGoogleGetAdPath, zGoogleGetAdResponse, zGoogleGetCampaignPath, zGoogleGetCampaignResponse, zGoogleGetConversionActionPath, zGoogleGetConversionActionResponse, zGoogleGetInsightsBody, zGoogleGetInsightsPath, zGoogleGetInsightsResponse, zGoogleGetKeywordPath, zGoogleGetKeywordResponse, zGoogleListAdGroupsPath, zGoogleListAdGroupsResponse, zGoogleListAdsPath, zGoogleListAdsResponse, zGoogleListCampaignsPath, zGoogleListCampaignsResponse, zGoogleListConversionActionsPath, zGoogleListConversionActionsResponse, zGoogleListConversionGoalsPath, zGoogleListConversionGoalsResponse, zGoogleListKeywordsPath, zGoogleListKeywordsResponse, zGooglePauseAdBody, zGooglePauseAdGroupBody, zGooglePauseAdGroupPath, zGooglePauseAdGroupResponse, zGooglePauseAdPath, zGooglePauseAdResponse, zGooglePauseCampaignBody, zGooglePauseCampaignPath, zGooglePauseCampaignResponse, zGooglePauseKeywordBody, zGooglePauseKeywordPath, zGooglePauseKeywordResponse, zGoogleRunGaqlBody, zGoogleRunGaqlPath, zGoogleRunGaqlResponse, zGoogleSetAdGroupBidsBody, zGoogleSetAdGroupBidsPath, zGoogleSetAdGroupBidsResponse, zGoogleSetConversionGoalBody, zGoogleSetConversionGoalPath, zGoogleSetConversionGoalResponse, zGoogleSetKeywordBidBody, zGoogleSetKeywordBidPath, zGoogleSetKeywordBidResponse, zGoogleUploadConversionsBody, zGoogleUploadConversionsPath, zGoogleUploadConversionsResponse, zGoogleUploadImageAssetBody, zGoogleUploadImageAssetPath, zGoogleUploadImageAssetResponse, zLogsGetPath, zLogsGetResponse, zLogsListQuery, zLogsListResponse, zMediaCreateBody, zMediaCreateResponse, zMediaDeletePath, zMediaDeleteResponse, zMediaGetPath, zMediaGetResponse, zMediaListQuery, zMediaListResponse, zMediaUpdateBody, zMediaUpdatePath, zMediaUpdateResponse, zMetaAccountPath, zMetaAccountResponse, zMetaAdPath, zMetaAdResponse, zMetaAdsPath, zMetaAdsResponse, zMetaAdsetPath, zMetaAdsetResponse, zMetaAdsetsPath, zMetaAdsetsResponse, zMetaCampaignPath, zMetaCampaignResponse, zMetaCampaignsPath, zMetaCampaignsResponse, zMetaInsightsPath, zMetaInsightsQuery, zMetaInsightsResponse, zPostsCreateBody, zPostsCreateResponse, zPostsDeletePath, zPostsDeleteResponse, zPostsGetPath, zPostsGetResponse, zPostsListQuery, zPostsListResponse, zPostsUpdateBody, zPostsUpdatePath, zPostsUpdateResponse, zPostsValidateBody, zPostsValidateResponse, zProfilesCreateBody, zProfilesCreateResponse, zProfilesDeletePath, zProfilesDeleteResponse, zProfilesGetPath, zProfilesGetResponse, zProfilesListQuery, zProfilesListResponse, zProfilesUpdateBody, zProfilesUpdatePath, zProfilesUpdateResponse, zTokensMintBody, zTokensMintResponse, zWebhooksCreateEndpointBody, zWebhooksCreateEndpointResponse, zWebhooksCreatePortalResponse, zWebhooksDeleteEndpointPath, zWebhooksDeleteEndpointResponse, zWebhooksGetEndpointPath, zWebhooksGetEndpointResponse, zWebhooksListEndpointsQuery, zWebhooksListEndpointsResponse, zWebhooksListEventTypesResponse, zWebhooksPingBody, zWebhooksPingResponse, zWebhooksUpdateEndpointBody, zWebhooksUpdateEndpointPath, zWebhooksUpdateEndpointResponse } from '../chunk-
|
|
1
|
+
export { zConnectionsConnectBody, zConnectionsConnectPath, zConnectionsConnectResponse, zConnectionsDeletePath, zConnectionsDeleteResponse, zConnectionsGetPath, zConnectionsGetResponse, zConnectionsListAccountsPath, zConnectionsListAccountsResponse, zConnectionsListByProfilePath, zConnectionsListByProfileQuery, zConnectionsListByProfileResponse, zConnectionsSelectBody, zConnectionsSelectPath, zConnectionsSelectResponse, zErrorCode, zGoogleCreateAdBody, zGoogleCreateAdGroupBody, zGoogleCreateAdGroupPath, zGoogleCreateAdGroupResponse, zGoogleCreateAdPath, zGoogleCreateAdResponse, zGoogleCreateBudgetBody, zGoogleCreateBudgetPath, zGoogleCreateBudgetResponse, zGoogleCreateCampaignBody, zGoogleCreateCampaignPath, zGoogleCreateCampaignResponse, zGoogleCreateConversionActionBody, zGoogleCreateConversionActionPath, zGoogleCreateConversionActionResponse, zGoogleCreateDisplayAdBody, zGoogleCreateDisplayAdPath, zGoogleCreateDisplayAdResponse, zGoogleCreateKeywordBody, zGoogleCreateKeywordPath, zGoogleCreateKeywordResponse, zGoogleDeleteAdBody, zGoogleDeleteAdGroupBody, zGoogleDeleteAdGroupPath, zGoogleDeleteAdGroupResponse, zGoogleDeleteAdPath, zGoogleDeleteAdResponse, zGoogleDeleteBudgetBody, zGoogleDeleteBudgetPath, zGoogleDeleteBudgetResponse, zGoogleDeleteCampaignBody, zGoogleDeleteCampaignPath, zGoogleDeleteCampaignResponse, zGoogleDeleteKeywordBody, zGoogleDeleteKeywordPath, zGoogleDeleteKeywordResponse, zGoogleEditAdGroupBody, zGoogleEditAdGroupPath, zGoogleEditAdGroupResponse, zGoogleEditBudgetBody, zGoogleEditBudgetPath, zGoogleEditBudgetResponse, zGoogleEditCampaignBody, zGoogleEditCampaignPath, zGoogleEditCampaignResponse, zGoogleEnableAdBody, zGoogleEnableAdGroupBody, zGoogleEnableAdGroupPath, zGoogleEnableAdGroupResponse, zGoogleEnableAdPath, zGoogleEnableAdResponse, zGoogleEnableCampaignBody, zGoogleEnableCampaignPath, zGoogleEnableCampaignResponse, zGoogleEnableKeywordBody, zGoogleEnableKeywordPath, zGoogleEnableKeywordResponse, zGoogleGetAccountPath, zGoogleGetAccountResponse, zGoogleGetAdGroupPath, zGoogleGetAdGroupResponse, zGoogleGetAdPath, zGoogleGetAdResponse, zGoogleGetCampaignPath, zGoogleGetCampaignResponse, zGoogleGetConversionActionPath, zGoogleGetConversionActionResponse, zGoogleGetInsightsBody, zGoogleGetInsightsPath, zGoogleGetInsightsResponse, zGoogleGetKeywordPath, zGoogleGetKeywordResponse, zGoogleListAdGroupsPath, zGoogleListAdGroupsResponse, zGoogleListAdsPath, zGoogleListAdsResponse, zGoogleListCampaignsPath, zGoogleListCampaignsResponse, zGoogleListConversionActionsPath, zGoogleListConversionActionsResponse, zGoogleListConversionGoalsPath, zGoogleListConversionGoalsResponse, zGoogleListKeywordsPath, zGoogleListKeywordsResponse, zGooglePauseAdBody, zGooglePauseAdGroupBody, zGooglePauseAdGroupPath, zGooglePauseAdGroupResponse, zGooglePauseAdPath, zGooglePauseAdResponse, zGooglePauseCampaignBody, zGooglePauseCampaignPath, zGooglePauseCampaignResponse, zGooglePauseKeywordBody, zGooglePauseKeywordPath, zGooglePauseKeywordResponse, zGoogleRunGaqlBody, zGoogleRunGaqlPath, zGoogleRunGaqlResponse, zGoogleSetAdGroupBidsBody, zGoogleSetAdGroupBidsPath, zGoogleSetAdGroupBidsResponse, zGoogleSetConversionGoalBody, zGoogleSetConversionGoalPath, zGoogleSetConversionGoalResponse, zGoogleSetKeywordBidBody, zGoogleSetKeywordBidPath, zGoogleSetKeywordBidResponse, zGoogleUploadConversionsBody, zGoogleUploadConversionsPath, zGoogleUploadConversionsResponse, zGoogleUploadImageAssetBody, zGoogleUploadImageAssetPath, zGoogleUploadImageAssetResponse, zLogsGetPath, zLogsGetResponse, zLogsListQuery, zLogsListResponse, zMediaCreateBody, zMediaCreateResponse, zMediaDeletePath, zMediaDeleteResponse, zMediaGetPath, zMediaGetResponse, zMediaListQuery, zMediaListResponse, zMediaUpdateBody, zMediaUpdatePath, zMediaUpdateResponse, zMetaAccountPath, zMetaAccountResponse, zMetaAdPath, zMetaAdResponse, zMetaAdsPath, zMetaAdsResponse, zMetaAdsetPath, zMetaAdsetResponse, zMetaAdsetsPath, zMetaAdsetsResponse, zMetaCampaignPath, zMetaCampaignResponse, zMetaCampaignsPath, zMetaCampaignsResponse, zMetaInsightsPath, zMetaInsightsQuery, zMetaInsightsResponse, zPostsCreateBody, zPostsCreateResponse, zPostsDeletePath, zPostsDeleteResponse, zPostsGetPath, zPostsGetResponse, zPostsListQuery, zPostsListResponse, zPostsUpdateBody, zPostsUpdatePath, zPostsUpdateResponse, zPostsValidateBody, zPostsValidateResponse, zProfilesCreateBody, zProfilesCreateResponse, zProfilesDeletePath, zProfilesDeleteResponse, zProfilesGetPath, zProfilesGetResponse, zProfilesListQuery, zProfilesListResponse, zProfilesUpdateBody, zProfilesUpdatePath, zProfilesUpdateResponse, zTokensMintBody, zTokensMintResponse, zWebhooksCreateEndpointBody, zWebhooksCreateEndpointResponse, zWebhooksCreatePortalResponse, zWebhooksDeleteEndpointPath, zWebhooksDeleteEndpointResponse, zWebhooksGetEndpointPath, zWebhooksGetEndpointResponse, zWebhooksListEndpointsQuery, zWebhooksListEndpointsResponse, zWebhooksListEventTypesResponse, zWebhooksPingBody, zWebhooksPingResponse, zWebhooksUpdateEndpointBody, zWebhooksUpdateEndpointPath, zWebhooksUpdateEndpointResponse } from '../chunk-EFB6IKZF.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/server.cjs
CHANGED
|
@@ -811,7 +811,6 @@ var zErrorCode = z__namespace.enum([
|
|
|
811
811
|
"account_not_available",
|
|
812
812
|
"connection_reauth_required",
|
|
813
813
|
"connection_not_pending",
|
|
814
|
-
"connection_in_use",
|
|
815
814
|
"not_implemented",
|
|
816
815
|
"connection_discovery_failed",
|
|
817
816
|
"media_processing",
|
|
@@ -858,6 +857,7 @@ var zErrorCode = z__namespace.enum([
|
|
|
858
857
|
"media_failed",
|
|
859
858
|
"media_unsupported",
|
|
860
859
|
"media_kind_mismatch",
|
|
860
|
+
"variant_unparseable",
|
|
861
861
|
"publishing_unavailable",
|
|
862
862
|
"x_duplicate_content",
|
|
863
863
|
"x_not_authorized",
|
|
@@ -887,7 +887,8 @@ var zErrorCode = z__namespace.enum([
|
|
|
887
887
|
"tiktok_not_authorized",
|
|
888
888
|
"tiktok_rate_limited",
|
|
889
889
|
"tiktok_publish_failed",
|
|
890
|
-
"connection_platform_mismatch"
|
|
890
|
+
"connection_platform_mismatch",
|
|
891
|
+
"connection_removed"
|
|
891
892
|
]);
|
|
892
893
|
z__namespace.object({
|
|
893
894
|
limit: z__namespace.int().gte(1).lte(100).optional().default(20),
|
|
@@ -1929,7 +1930,7 @@ z__namespace.object({
|
|
|
1929
1930
|
variants: z__namespace.array(z__namespace.object({
|
|
1930
1931
|
id: z__namespace.string(),
|
|
1931
1932
|
object: z__namespace.literal("post_variant"),
|
|
1932
|
-
connection_id: z__namespace.string(),
|
|
1933
|
+
connection_id: z__namespace.string().nullable(),
|
|
1933
1934
|
platform: z__namespace.enum([
|
|
1934
1935
|
"x",
|
|
1935
1936
|
"linkedin",
|
|
@@ -2208,7 +2209,7 @@ z__namespace.object({
|
|
|
2208
2209
|
variants: z__namespace.array(z__namespace.object({
|
|
2209
2210
|
id: z__namespace.string(),
|
|
2210
2211
|
object: z__namespace.literal("post_variant"),
|
|
2211
|
-
connection_id: z__namespace.string(),
|
|
2212
|
+
connection_id: z__namespace.string().nullable(),
|
|
2212
2213
|
platform: z__namespace.enum([
|
|
2213
2214
|
"x",
|
|
2214
2215
|
"linkedin",
|
|
@@ -2290,7 +2291,7 @@ z__namespace.object({
|
|
|
2290
2291
|
variants: z__namespace.array(z__namespace.object({
|
|
2291
2292
|
id: z__namespace.string(),
|
|
2292
2293
|
object: z__namespace.literal("post_variant"),
|
|
2293
|
-
connection_id: z__namespace.string(),
|
|
2294
|
+
connection_id: z__namespace.string().nullable(),
|
|
2294
2295
|
platform: z__namespace.enum([
|
|
2295
2296
|
"x",
|
|
2296
2297
|
"linkedin",
|
|
@@ -2566,7 +2567,7 @@ z__namespace.object({
|
|
|
2566
2567
|
variants: z__namespace.array(z__namespace.object({
|
|
2567
2568
|
id: z__namespace.string(),
|
|
2568
2569
|
object: z__namespace.literal("post_variant"),
|
|
2569
|
-
connection_id: z__namespace.string(),
|
|
2570
|
+
connection_id: z__namespace.string().nullable(),
|
|
2570
2571
|
platform: z__namespace.enum([
|
|
2571
2572
|
"x",
|
|
2572
2573
|
"linkedin",
|
|
@@ -2821,7 +2822,6 @@ z__namespace.object({
|
|
|
2821
2822
|
"account_not_available",
|
|
2822
2823
|
"connection_reauth_required",
|
|
2823
2824
|
"connection_not_pending",
|
|
2824
|
-
"connection_in_use",
|
|
2825
2825
|
"not_implemented",
|
|
2826
2826
|
"connection_discovery_failed",
|
|
2827
2827
|
"media_processing",
|
|
@@ -2868,6 +2868,7 @@ z__namespace.object({
|
|
|
2868
2868
|
"media_failed",
|
|
2869
2869
|
"media_unsupported",
|
|
2870
2870
|
"media_kind_mismatch",
|
|
2871
|
+
"variant_unparseable",
|
|
2871
2872
|
"publishing_unavailable",
|
|
2872
2873
|
"x_duplicate_content",
|
|
2873
2874
|
"x_not_authorized",
|
|
@@ -2897,7 +2898,8 @@ z__namespace.object({
|
|
|
2897
2898
|
"tiktok_not_authorized",
|
|
2898
2899
|
"tiktok_rate_limited",
|
|
2899
2900
|
"tiktok_publish_failed",
|
|
2900
|
-
"connection_platform_mismatch"
|
|
2901
|
+
"connection_platform_mismatch",
|
|
2902
|
+
"connection_removed"
|
|
2901
2903
|
]),
|
|
2902
2904
|
message: z__namespace.string(),
|
|
2903
2905
|
hint: z__namespace.string().optional(),
|