@postrun/js 1.2.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-4AAUQJXR.js → chunk-EFB6IKZF.js} +307 -9
- package/dist/chunk-EFB6IKZF.js.map +1 -0
- package/dist/{chunk-YMVIGQGW.js → chunk-XXB7GZ3H.js} +21 -4
- package/dist/chunk-XXB7GZ3H.js.map +1 -0
- package/dist/index.cjs +328 -46
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +44 -8
- package/dist/index.d.ts +44 -8
- package/dist/index.js +8 -42
- package/dist/index.js.map +1 -1
- package/dist/schemas/index.cjs +306 -6
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +307 -6
- package/dist/schemas/index.d.ts +307 -6
- package/dist/schemas/index.js +1 -1
- package/dist/server.cjs +304 -6
- 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-BHE-5ice.d.cts → types.gen-0ufzFdld.d.cts} +708 -9
- package/dist/{types.gen-BHE-5ice.d.ts → types.gen-0ufzFdld.d.ts} +708 -9
- package/package.json +1 -1
- package/dist/chunk-4AAUQJXR.js.map +0 -1
- package/dist/chunk-YMVIGQGW.js.map +0 -1
|
@@ -15,11 +15,12 @@ var zErrorCode = z.enum([
|
|
|
15
15
|
"account_not_available",
|
|
16
16
|
"connection_reauth_required",
|
|
17
17
|
"connection_not_pending",
|
|
18
|
-
"connection_in_use",
|
|
19
18
|
"not_implemented",
|
|
20
19
|
"connection_discovery_failed",
|
|
21
20
|
"media_processing",
|
|
22
21
|
"not_publishable",
|
|
22
|
+
"invalid_connection",
|
|
23
|
+
"invalid_media",
|
|
23
24
|
"profile_scope_invalid",
|
|
24
25
|
"media_unprobeable",
|
|
25
26
|
"media_too_large",
|
|
@@ -60,6 +61,7 @@ var zErrorCode = z.enum([
|
|
|
60
61
|
"media_failed",
|
|
61
62
|
"media_unsupported",
|
|
62
63
|
"media_kind_mismatch",
|
|
64
|
+
"variant_unparseable",
|
|
63
65
|
"publishing_unavailable",
|
|
64
66
|
"x_duplicate_content",
|
|
65
67
|
"x_not_authorized",
|
|
@@ -89,7 +91,8 @@ var zErrorCode = z.enum([
|
|
|
89
91
|
"tiktok_not_authorized",
|
|
90
92
|
"tiktok_rate_limited",
|
|
91
93
|
"tiktok_publish_failed",
|
|
92
|
-
"connection_platform_mismatch"
|
|
94
|
+
"connection_platform_mismatch",
|
|
95
|
+
"connection_removed"
|
|
93
96
|
]);
|
|
94
97
|
var zProfilesListQuery = z.object({
|
|
95
98
|
limit: z.int().gte(1).lte(100).optional().default(20),
|
|
@@ -1131,7 +1134,7 @@ var zPostsListResponse = z.object({
|
|
|
1131
1134
|
variants: z.array(z.object({
|
|
1132
1135
|
id: z.string(),
|
|
1133
1136
|
object: z.literal("post_variant"),
|
|
1134
|
-
connection_id: z.string(),
|
|
1137
|
+
connection_id: z.string().nullable(),
|
|
1135
1138
|
platform: z.enum([
|
|
1136
1139
|
"x",
|
|
1137
1140
|
"linkedin",
|
|
@@ -1410,7 +1413,7 @@ var zPostsCreateResponse = z.object({
|
|
|
1410
1413
|
variants: z.array(z.object({
|
|
1411
1414
|
id: z.string(),
|
|
1412
1415
|
object: z.literal("post_variant"),
|
|
1413
|
-
connection_id: z.string(),
|
|
1416
|
+
connection_id: z.string().nullable(),
|
|
1414
1417
|
platform: z.enum([
|
|
1415
1418
|
"x",
|
|
1416
1419
|
"linkedin",
|
|
@@ -1492,7 +1495,7 @@ var zPostsGetResponse = z.object({
|
|
|
1492
1495
|
variants: z.array(z.object({
|
|
1493
1496
|
id: z.string(),
|
|
1494
1497
|
object: z.literal("post_variant"),
|
|
1495
|
-
connection_id: z.string(),
|
|
1498
|
+
connection_id: z.string().nullable(),
|
|
1496
1499
|
platform: z.enum([
|
|
1497
1500
|
"x",
|
|
1498
1501
|
"linkedin",
|
|
@@ -1768,7 +1771,7 @@ var zPostsUpdateResponse = z.object({
|
|
|
1768
1771
|
variants: z.array(z.object({
|
|
1769
1772
|
id: z.string(),
|
|
1770
1773
|
object: z.literal("post_variant"),
|
|
1771
|
-
connection_id: z.string(),
|
|
1774
|
+
connection_id: z.string().nullable(),
|
|
1772
1775
|
platform: z.enum([
|
|
1773
1776
|
"x",
|
|
1774
1777
|
"linkedin",
|
|
@@ -1815,6 +1818,301 @@ var zPostsUpdateResponse = z.object({
|
|
|
1815
1818
|
dry_run: z.boolean(),
|
|
1816
1819
|
executed: z.boolean()
|
|
1817
1820
|
});
|
|
1821
|
+
var zPostsValidateBody = z.object({
|
|
1822
|
+
profile_id: z.string(),
|
|
1823
|
+
variants: z.array(z.union([
|
|
1824
|
+
z.object({
|
|
1825
|
+
platform: z.literal("x"),
|
|
1826
|
+
post_type: z.enum([
|
|
1827
|
+
"text",
|
|
1828
|
+
"single_image",
|
|
1829
|
+
"multi_image",
|
|
1830
|
+
"video"
|
|
1831
|
+
]),
|
|
1832
|
+
connection_id: z.string(),
|
|
1833
|
+
body: z.string().optional(),
|
|
1834
|
+
media: z.array(z.object({
|
|
1835
|
+
media_id: z.string(),
|
|
1836
|
+
crop_box: z.record(z.string(), z.unknown()).nullish(),
|
|
1837
|
+
alt_text_override: z.string().nullish()
|
|
1838
|
+
})).optional().default([]),
|
|
1839
|
+
settings: z.object({
|
|
1840
|
+
reply_settings: z.enum([
|
|
1841
|
+
"everyone",
|
|
1842
|
+
"following",
|
|
1843
|
+
"mentionedUsers",
|
|
1844
|
+
"subscribers",
|
|
1845
|
+
"verified"
|
|
1846
|
+
]).optional(),
|
|
1847
|
+
quote_tweet_id: z.string().regex(/^[0-9]{1,19}$/).optional(),
|
|
1848
|
+
poll: z.object({
|
|
1849
|
+
options: z.array(z.string().min(1).max(25)).min(2).max(4),
|
|
1850
|
+
duration_minutes: z.int().gte(5).lte(10080),
|
|
1851
|
+
reply_settings: z.enum([
|
|
1852
|
+
"following",
|
|
1853
|
+
"mentionedUsers",
|
|
1854
|
+
"subscribers",
|
|
1855
|
+
"verified"
|
|
1856
|
+
]).optional()
|
|
1857
|
+
}).optional(),
|
|
1858
|
+
reply: z.object({
|
|
1859
|
+
in_reply_to_tweet_id: z.string().regex(/^[0-9]{1,19}$/),
|
|
1860
|
+
exclude_reply_user_ids: z.array(z.string().regex(/^[0-9]{1,19}$/)).optional(),
|
|
1861
|
+
auto_populate_reply_metadata: z.boolean().optional()
|
|
1862
|
+
}).optional(),
|
|
1863
|
+
community_id: z.string().regex(/^[0-9]{1,19}$/).optional(),
|
|
1864
|
+
for_super_followers_only: z.boolean().optional(),
|
|
1865
|
+
geo: z.object({
|
|
1866
|
+
place_id: z.string()
|
|
1867
|
+
}).optional(),
|
|
1868
|
+
card_uri: z.string().optional(),
|
|
1869
|
+
media_tagged_user_ids: z.array(z.string().regex(/^[0-9]{1,19}$/)).max(10).optional()
|
|
1870
|
+
}).optional().default({})
|
|
1871
|
+
}),
|
|
1872
|
+
z.object({
|
|
1873
|
+
platform: z.literal("linkedin"),
|
|
1874
|
+
post_type: z.enum([
|
|
1875
|
+
"text",
|
|
1876
|
+
"single_image",
|
|
1877
|
+
"multi_image",
|
|
1878
|
+
"video"
|
|
1879
|
+
]),
|
|
1880
|
+
connection_id: z.string(),
|
|
1881
|
+
body: z.string().optional(),
|
|
1882
|
+
media: z.array(z.object({
|
|
1883
|
+
media_id: z.string(),
|
|
1884
|
+
crop_box: z.record(z.string(), z.unknown()).nullish(),
|
|
1885
|
+
alt_text_override: z.string().nullish()
|
|
1886
|
+
})).optional().default([]),
|
|
1887
|
+
settings: z.object({
|
|
1888
|
+
visibility: z.enum(["PUBLIC", "CONNECTIONS"]),
|
|
1889
|
+
content_kind: z.enum([
|
|
1890
|
+
"text",
|
|
1891
|
+
"single_image",
|
|
1892
|
+
"video",
|
|
1893
|
+
"multi_image",
|
|
1894
|
+
"document",
|
|
1895
|
+
"article",
|
|
1896
|
+
"poll"
|
|
1897
|
+
]),
|
|
1898
|
+
article: z.object({
|
|
1899
|
+
source: z.url(),
|
|
1900
|
+
title: z.string().max(400).optional(),
|
|
1901
|
+
description: z.string().max(4086).optional(),
|
|
1902
|
+
thumbnail_media_id: z.string().optional()
|
|
1903
|
+
}).optional(),
|
|
1904
|
+
poll: z.object({
|
|
1905
|
+
question: z.string().min(1).max(140),
|
|
1906
|
+
options: z.array(z.string().min(1).max(30)).min(2).max(4),
|
|
1907
|
+
duration: z.enum([
|
|
1908
|
+
"ONE_DAY",
|
|
1909
|
+
"THREE_DAYS",
|
|
1910
|
+
"SEVEN_DAYS",
|
|
1911
|
+
"FOURTEEN_DAYS"
|
|
1912
|
+
])
|
|
1913
|
+
}).optional(),
|
|
1914
|
+
document: z.object({
|
|
1915
|
+
title: z.string().min(1).max(400)
|
|
1916
|
+
}).optional(),
|
|
1917
|
+
disable_reshare: z.boolean().optional(),
|
|
1918
|
+
mentions: z.array(z.object({
|
|
1919
|
+
type: z.enum(["person", "organization"]),
|
|
1920
|
+
name: z.string().min(1),
|
|
1921
|
+
urn: z.string().regex(/^urn:li:(person|organization):/)
|
|
1922
|
+
})).optional()
|
|
1923
|
+
})
|
|
1924
|
+
}),
|
|
1925
|
+
z.object({
|
|
1926
|
+
platform: z.literal("instagram"),
|
|
1927
|
+
post_type: z.enum([
|
|
1928
|
+
"single_image",
|
|
1929
|
+
"carousel",
|
|
1930
|
+
"reel"
|
|
1931
|
+
]),
|
|
1932
|
+
connection_id: z.string(),
|
|
1933
|
+
body: z.string().optional(),
|
|
1934
|
+
media: z.array(z.object({
|
|
1935
|
+
media_id: z.string(),
|
|
1936
|
+
crop_box: z.record(z.string(), z.unknown()).nullish(),
|
|
1937
|
+
alt_text_override: z.string().nullish()
|
|
1938
|
+
})).optional().default([]),
|
|
1939
|
+
settings: z.object({
|
|
1940
|
+
media_type: z.enum([
|
|
1941
|
+
"IMAGE",
|
|
1942
|
+
"CAROUSEL",
|
|
1943
|
+
"REELS"
|
|
1944
|
+
]).optional(),
|
|
1945
|
+
location_id: z.string().optional(),
|
|
1946
|
+
user_tags: z.array(z.object({
|
|
1947
|
+
username: z.string().min(1),
|
|
1948
|
+
x: z.number().gte(0).lte(1),
|
|
1949
|
+
y: z.number().gte(0).lte(1)
|
|
1950
|
+
})).optional(),
|
|
1951
|
+
collaborators: z.array(z.string().min(1)).max(3).optional(),
|
|
1952
|
+
share_to_feed: z.boolean().optional(),
|
|
1953
|
+
thumb_offset: z.int().gte(0).lte(9007199254740991).optional(),
|
|
1954
|
+
cover_url: z.url().optional(),
|
|
1955
|
+
audio_name: z.string().optional()
|
|
1956
|
+
})
|
|
1957
|
+
}),
|
|
1958
|
+
z.object({
|
|
1959
|
+
platform: z.literal("facebook_page"),
|
|
1960
|
+
post_type: z.enum([
|
|
1961
|
+
"text",
|
|
1962
|
+
"single_image",
|
|
1963
|
+
"multi_image",
|
|
1964
|
+
"reel"
|
|
1965
|
+
]),
|
|
1966
|
+
connection_id: z.string(),
|
|
1967
|
+
body: z.string().optional(),
|
|
1968
|
+
media: z.array(z.object({
|
|
1969
|
+
media_id: z.string(),
|
|
1970
|
+
crop_box: z.record(z.string(), z.unknown()).nullish(),
|
|
1971
|
+
alt_text_override: z.string().nullish()
|
|
1972
|
+
})).optional().default([]),
|
|
1973
|
+
settings: z.object({
|
|
1974
|
+
link: z.url().optional()
|
|
1975
|
+
}).optional().default({})
|
|
1976
|
+
}),
|
|
1977
|
+
z.object({
|
|
1978
|
+
platform: z.literal("tiktok"),
|
|
1979
|
+
post_type: z.enum([
|
|
1980
|
+
"video",
|
|
1981
|
+
"single_image",
|
|
1982
|
+
"carousel"
|
|
1983
|
+
]),
|
|
1984
|
+
connection_id: z.string(),
|
|
1985
|
+
body: z.string().optional(),
|
|
1986
|
+
media: z.array(z.object({
|
|
1987
|
+
media_id: z.string(),
|
|
1988
|
+
crop_box: z.record(z.string(), z.unknown()).nullish(),
|
|
1989
|
+
alt_text_override: z.string().nullish()
|
|
1990
|
+
})).optional().default([]),
|
|
1991
|
+
settings: z.object({
|
|
1992
|
+
privacy_level: z.enum([
|
|
1993
|
+
"PUBLIC_TO_EVERYONE",
|
|
1994
|
+
"MUTUAL_FOLLOW_FRIENDS",
|
|
1995
|
+
"FOLLOWER_OF_CREATOR",
|
|
1996
|
+
"SELF_ONLY"
|
|
1997
|
+
]).optional(),
|
|
1998
|
+
disable_comment: z.boolean().optional(),
|
|
1999
|
+
disable_duet: z.boolean().optional(),
|
|
2000
|
+
disable_stitch: z.boolean().optional(),
|
|
2001
|
+
video_cover_timestamp_ms: z.int().gte(0).lte(9007199254740991).optional(),
|
|
2002
|
+
photo_cover_index: z.int().gte(0).lte(9007199254740991).optional(),
|
|
2003
|
+
auto_add_music: z.boolean().optional(),
|
|
2004
|
+
brand_content_toggle: z.boolean().optional(),
|
|
2005
|
+
brand_organic_toggle: z.boolean().optional(),
|
|
2006
|
+
is_aigc: z.boolean().optional()
|
|
2007
|
+
}).optional().default({})
|
|
2008
|
+
})
|
|
2009
|
+
])).min(1)
|
|
2010
|
+
});
|
|
2011
|
+
var zPostsValidateResponse = z.object({
|
|
2012
|
+
object: z.literal("validation"),
|
|
2013
|
+
publishable: z.boolean(),
|
|
2014
|
+
issues: z.array(z.object({
|
|
2015
|
+
code: z.enum([
|
|
2016
|
+
"unauthorized",
|
|
2017
|
+
"forbidden",
|
|
2018
|
+
"not_found",
|
|
2019
|
+
"conflict",
|
|
2020
|
+
"validation_failed",
|
|
2021
|
+
"rate_limited",
|
|
2022
|
+
"internal_error",
|
|
2023
|
+
"idempotency_key_invalid",
|
|
2024
|
+
"idempotency_key_reused",
|
|
2025
|
+
"idempotency_request_in_progress",
|
|
2026
|
+
"account_not_available",
|
|
2027
|
+
"connection_reauth_required",
|
|
2028
|
+
"connection_not_pending",
|
|
2029
|
+
"not_implemented",
|
|
2030
|
+
"connection_discovery_failed",
|
|
2031
|
+
"media_processing",
|
|
2032
|
+
"not_publishable",
|
|
2033
|
+
"invalid_connection",
|
|
2034
|
+
"invalid_media",
|
|
2035
|
+
"profile_scope_invalid",
|
|
2036
|
+
"media_unprobeable",
|
|
2037
|
+
"media_too_large",
|
|
2038
|
+
"media_aspect_ratio_unsupported",
|
|
2039
|
+
"media_resolution_too_low",
|
|
2040
|
+
"media_gif_unsupported",
|
|
2041
|
+
"media_format_recompressed",
|
|
2042
|
+
"media_resolution_downscaled",
|
|
2043
|
+
"video_container_unsupported",
|
|
2044
|
+
"video_codec_unsupported",
|
|
2045
|
+
"video_audio_codec_unsupported",
|
|
2046
|
+
"video_too_large",
|
|
2047
|
+
"video_too_small",
|
|
2048
|
+
"video_dimensions_unsupported",
|
|
2049
|
+
"video_dimensions_too_large",
|
|
2050
|
+
"video_fps_unsupported",
|
|
2051
|
+
"video_fps_too_low",
|
|
2052
|
+
"video_aspect_unsupported",
|
|
2053
|
+
"video_duration_too_short",
|
|
2054
|
+
"video_duration_exceeds_max",
|
|
2055
|
+
"video_transform_failed",
|
|
2056
|
+
"media_fetch_failed",
|
|
2057
|
+
"document_format_unsupported",
|
|
2058
|
+
"document_too_large",
|
|
2059
|
+
"document_too_many_pages",
|
|
2060
|
+
"media_format_indeterminate",
|
|
2061
|
+
"media_count_invalid",
|
|
2062
|
+
"body_too_long",
|
|
2063
|
+
"content_missing",
|
|
2064
|
+
"content_conflict",
|
|
2065
|
+
"content_incomplete",
|
|
2066
|
+
"content_kind_mismatch",
|
|
2067
|
+
"media_type_mismatch",
|
|
2068
|
+
"tag_limit_exceeded",
|
|
2069
|
+
"reel_field_on_non_reel",
|
|
2070
|
+
"field_placement_invalid",
|
|
2071
|
+
"media_not_ready",
|
|
2072
|
+
"media_failed",
|
|
2073
|
+
"media_unsupported",
|
|
2074
|
+
"media_kind_mismatch",
|
|
2075
|
+
"variant_unparseable",
|
|
2076
|
+
"publishing_unavailable",
|
|
2077
|
+
"x_duplicate_content",
|
|
2078
|
+
"x_not_authorized",
|
|
2079
|
+
"x_rate_limited",
|
|
2080
|
+
"x_publish_failed",
|
|
2081
|
+
"x_media_upload_failed",
|
|
2082
|
+
"linkedin_duplicate_content",
|
|
2083
|
+
"linkedin_auth_expired",
|
|
2084
|
+
"linkedin_permission_denied",
|
|
2085
|
+
"linkedin_media_processing",
|
|
2086
|
+
"linkedin_media_upload_failed",
|
|
2087
|
+
"linkedin_publish_failed",
|
|
2088
|
+
"instagram_media_processing",
|
|
2089
|
+
"instagram_container_expired",
|
|
2090
|
+
"instagram_container_failed",
|
|
2091
|
+
"instagram_rate_limited",
|
|
2092
|
+
"instagram_not_authorized",
|
|
2093
|
+
"instagram_publish_failed",
|
|
2094
|
+
"facebook_reel_processing",
|
|
2095
|
+
"facebook_reel_failed",
|
|
2096
|
+
"facebook_rate_limited",
|
|
2097
|
+
"facebook_not_authorized",
|
|
2098
|
+
"facebook_publish_failed",
|
|
2099
|
+
"tiktok_privacy_not_allowed",
|
|
2100
|
+
"tiktok_duration_exceeds_max",
|
|
2101
|
+
"tiktok_media_processing",
|
|
2102
|
+
"tiktok_not_authorized",
|
|
2103
|
+
"tiktok_rate_limited",
|
|
2104
|
+
"tiktok_publish_failed",
|
|
2105
|
+
"connection_platform_mismatch",
|
|
2106
|
+
"connection_removed"
|
|
2107
|
+
]),
|
|
2108
|
+
message: z.string(),
|
|
2109
|
+
hint: z.string().optional(),
|
|
2110
|
+
allowed: z.array(z.string()).optional(),
|
|
2111
|
+
got: z.string().optional(),
|
|
2112
|
+
variant_index: z.int().gte(-9007199254740991).lte(9007199254740991),
|
|
2113
|
+
path: z.array(z.union([z.string(), z.number()]))
|
|
2114
|
+
}))
|
|
2115
|
+
});
|
|
1818
2116
|
var zMetaAccountPath = z.object({
|
|
1819
2117
|
connection_id: z.string()
|
|
1820
2118
|
});
|
|
@@ -3523,6 +3821,6 @@ var zTokensMintResponse = z.object({
|
|
|
3523
3821
|
expires_at: z.string()
|
|
3524
3822
|
});
|
|
3525
3823
|
|
|
3526
|
-
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, 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 };
|
|
3527
|
-
//# sourceMappingURL=chunk-
|
|
3528
|
-
//# sourceMappingURL=chunk-
|
|
3824
|
+
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 };
|
|
3825
|
+
//# sourceMappingURL=chunk-EFB6IKZF.js.map
|
|
3826
|
+
//# sourceMappingURL=chunk-EFB6IKZF.js.map
|