@gtmi/ramp-site-client 0.0.1 → 0.0.2

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/es/index.mjs CHANGED
@@ -1403,29 +1403,9 @@ const client = createClient(createConfig());
1403
1403
  ...options.headers
1404
1404
  }
1405
1405
  });
1406
- /**
1407
- * GET internal-nav
1408
- */ const getApiInternalNav = (options)=>(options?.client ?? client).get({
1409
- security: [
1410
- {
1411
- in: 'cookie',
1412
- name: 'next-auth.session-token',
1413
- type: 'apiKey'
1414
- }
1415
- ],
1416
- url: '/api/internal-nav',
1417
- ...options
1418
- });
1419
1406
  /**
1420
1407
  * GET isv / logo
1421
1408
  */ const getApiIsvLogo = (options)=>(options.client ?? client).get({
1422
- security: [
1423
- {
1424
- in: 'cookie',
1425
- name: 'next-auth.session-token',
1426
- type: 'apiKey'
1427
- }
1428
- ],
1429
1409
  url: '/api/isv/logo',
1430
1410
  ...options
1431
1411
  });
@@ -1612,13 +1592,6 @@ const client = createClient(createConfig());
1612
1592
  /**
1613
1593
  * GET phone-logs / {phoneNumber}
1614
1594
  */ const getApiPhoneLogsByPhoneNumber = (options)=>(options.client ?? client).get({
1615
- security: [
1616
- {
1617
- in: 'cookie',
1618
- name: 'next-auth.session-token',
1619
- type: 'apiKey'
1620
- }
1621
- ],
1622
1595
  url: '/api/phone-logs/{phoneNumber}',
1623
1596
  ...options
1624
1597
  });
@@ -1672,13 +1645,6 @@ const client = createClient(createConfig());
1672
1645
  /**
1673
1646
  * GET session
1674
1647
  */ const getApiSession = (options)=>(options?.client ?? client).get({
1675
- security: [
1676
- {
1677
- in: 'cookie',
1678
- name: 'next-auth.session-token',
1679
- type: 'apiKey'
1680
- }
1681
- ],
1682
1648
  url: '/api/session',
1683
1649
  ...options
1684
1650
  });
@@ -1698,13 +1664,6 @@ const client = createClient(createConfig());
1698
1664
  /**
1699
1665
  * POST tags
1700
1666
  */ const postApiTags = (options)=>(options.client ?? client).post({
1701
- security: [
1702
- {
1703
- in: 'cookie',
1704
- name: 'next-auth.session-token',
1705
- type: 'apiKey'
1706
- }
1707
- ],
1708
1667
  url: '/api/tags',
1709
1668
  ...options,
1710
1669
  headers: {
@@ -1715,13 +1674,6 @@ const client = createClient(createConfig());
1715
1674
  /**
1716
1675
  * POST telemetry
1717
1676
  */ const postApiTelemetry = (options)=>(options?.client ?? client).post({
1718
- security: [
1719
- {
1720
- in: 'cookie',
1721
- name: 'next-auth.session-token',
1722
- type: 'apiKey'
1723
- }
1724
- ],
1725
1677
  url: '/api/telemetry',
1726
1678
  ...options
1727
1679
  });
@@ -1758,13 +1710,6 @@ const client = createClient(createConfig());
1758
1710
  /**
1759
1711
  * POST verify / check
1760
1712
  */ const postApiVerifyCheck = (options)=>(options.client ?? client).post({
1761
- security: [
1762
- {
1763
- in: 'cookie',
1764
- name: 'next-auth.session-token',
1765
- type: 'apiKey'
1766
- }
1767
- ],
1768
1713
  url: '/api/verify/check',
1769
1714
  ...options,
1770
1715
  headers: {
@@ -1775,13 +1720,6 @@ const client = createClient(createConfig());
1775
1720
  /**
1776
1721
  * POST verify / send
1777
1722
  */ const postApiVerifySend = (options)=>(options.client ?? client).post({
1778
- security: [
1779
- {
1780
- in: 'cookie',
1781
- name: 'next-auth.session-token',
1782
- type: 'apiKey'
1783
- }
1784
- ],
1785
1723
  url: '/api/verify/send',
1786
1724
  ...options,
1787
1725
  headers: {
@@ -1789,34 +1727,232 @@ const client = createClient(createConfig());
1789
1727
  ...options.headers
1790
1728
  }
1791
1729
  });
1730
+ /**
1731
+ * POST webchat / chat
1732
+ */ const postApiWebchatChat = (options)=>(options.client ?? client).post({
1733
+ url: '/api/webchat/chat',
1734
+ ...options,
1735
+ headers: {
1736
+ 'Content-Type': 'application/json',
1737
+ ...options.headers
1738
+ }
1739
+ });
1740
+ /**
1741
+ * POST webchat / conversation
1742
+ */ const postApiWebchatConversation = (options)=>(options.client ?? client).post({
1743
+ url: '/api/webchat/conversation',
1744
+ ...options,
1745
+ headers: {
1746
+ 'Content-Type': 'application/json',
1747
+ ...options.headers
1748
+ }
1749
+ });
1750
+ /**
1751
+ * GET webchat / conversations / token
1752
+ */ const getApiWebchatConversationsToken = (options)=>(options?.client ?? client).get({
1753
+ url: '/api/webchat/conversations/token',
1754
+ ...options
1755
+ });
1756
+ /**
1757
+ * POST webchat / conversations / token
1758
+ */ const postApiWebchatConversationsToken = (options)=>(options.client ?? client).post({
1759
+ url: '/api/webchat/conversations/token',
1760
+ ...options,
1761
+ headers: {
1762
+ 'Content-Type': 'application/json',
1763
+ ...options.headers
1764
+ }
1765
+ });
1766
+ /**
1767
+ * POST webchat / end-chat
1768
+ */ const postApiWebchatEndChat = (options)=>(options.client ?? client).post({
1769
+ url: '/api/webchat/end-chat',
1770
+ ...options,
1771
+ headers: {
1772
+ 'Content-Type': 'application/json',
1773
+ ...options.headers
1774
+ }
1775
+ });
1776
+ /**
1777
+ * POST webchat / live-agent-webchat-connect
1778
+ */ const postApiWebchatLiveAgentWebchatConnect = (options)=>(options.client ?? client).post({
1779
+ url: '/api/webchat/live-agent-webchat-connect',
1780
+ ...options,
1781
+ headers: {
1782
+ 'Content-Type': 'application/json',
1783
+ ...options.headers
1784
+ }
1785
+ });
1786
+ /**
1787
+ * POST webchat / live-agent-webchat-end
1788
+ */ const postApiWebchatLiveAgentWebchatEnd = (options)=>(options.client ?? client).post({
1789
+ url: '/api/webchat/live-agent-webchat-end',
1790
+ ...options,
1791
+ headers: {
1792
+ 'Content-Type': 'application/json',
1793
+ ...options.headers
1794
+ }
1795
+ });
1796
+ /**
1797
+ * POST webchat / ui-config
1798
+ */ const postApiWebchatUiConfig = (options)=>(options.client ?? client).post({
1799
+ url: '/api/webchat/ui-config',
1800
+ ...options,
1801
+ headers: {
1802
+ 'Content-Type': 'application/json',
1803
+ ...options.headers
1804
+ }
1805
+ });
1806
+ /**
1807
+ * GET webchat / voice-token
1808
+ */ const getApiWebchatVoiceToken = (options)=>(options?.client ?? client).get({
1809
+ url: '/api/webchat/voice-token',
1810
+ ...options
1811
+ });
1812
+ /**
1813
+ * POST webchat / webchat-send
1814
+ */ const postApiWebchatWebchatSend = (options)=>(options.client ?? client).post({
1815
+ url: '/api/webchat/webchat-send',
1816
+ ...options,
1817
+ headers: {
1818
+ 'Content-Type': 'application/json',
1819
+ ...options.headers
1820
+ }
1821
+ });
1792
1822
 
1793
1823
  // This file is auto-generated by @hey-api/openapi-ts
1824
+ const zErrorResponse = z.object({
1825
+ error: z.string().optional(),
1826
+ details: z.string().optional()
1827
+ });
1828
+ const zCalledByData = z.object({
1829
+ phoneNumber: z.string().optional(),
1830
+ timestamp: z.number().optional(),
1831
+ direction: z.string().optional(),
1832
+ objectId: z.string().optional()
1833
+ });
1834
+ const zCampaign = z.object({
1835
+ email: z.string().optional(),
1836
+ companyName: z.string().optional(),
1837
+ objectID: z.string().optional(),
1838
+ encryptedObjectId: z.string().optional(),
1839
+ agentNumber: z.string().optional(),
1840
+ tag: z.string().optional(),
1841
+ createdAt: z.string().optional(),
1842
+ numCalls: z.string().optional(),
1843
+ shortLink: z.string().optional()
1844
+ });
1845
+ const zConversationMemoryRecallResponse = z.object({
1846
+ communications: z.string().optional(),
1847
+ observations: z.string().optional(),
1848
+ summaries: z.string().optional(),
1849
+ meta: z.string().optional(),
1850
+ queryTime: z.string().optional()
1851
+ });
1852
+ const zOperator = z.object({
1853
+ id: z.string().optional(),
1854
+ displayName: z.string().optional(),
1855
+ description: z.string().optional(),
1856
+ version: z.string().optional(),
1857
+ availability: z.string().optional(),
1858
+ author: z.string().optional(),
1859
+ prompt: z.string().optional(),
1860
+ outputFormat: z.string().optional(),
1861
+ outputSchema: z.string().optional(),
1862
+ trainingExamples: z.string().optional(),
1863
+ context: z.string().optional(),
1864
+ parameters: z.string().optional()
1865
+ });
1866
+ const zIntelligenceConfiguration = z.object({
1867
+ accountId: z.string().optional(),
1868
+ dateCreated: z.string().optional(),
1869
+ dateUpdated: z.string().optional(),
1870
+ description: z.string().optional(),
1871
+ displayName: z.string().optional(),
1872
+ id: z.string().optional(),
1873
+ rules: z.string().optional(),
1874
+ version: z.string().optional()
1875
+ });
1876
+ const zLockedTemplateData = z.object({
1877
+ agentNumber: z.string().optional(),
1878
+ countryCode: z.string().optional(),
1879
+ dateShared: z.string().optional(),
1880
+ dateExpires: z.string().optional(),
1881
+ objectID: z.string().optional(),
1882
+ templateName: z.string().optional(),
1883
+ userEmail: z.string().optional(),
1884
+ webrtcUrl: z.string().optional()
1885
+ });
1886
+ const zSupportedRegion = z.object({
1887
+ isoCountry: z.string().optional(),
1888
+ numberType: z.string().optional(),
1889
+ bundleSid: z.string().optional(),
1890
+ label: z.string().optional(),
1891
+ flag: z.string().optional(),
1892
+ capabilities: z.string().optional()
1893
+ });
1894
+ /**
1895
+ * Success
1896
+ */ const zPostApiAlgoliaSecuredKeyResponse = z.object({
1897
+ expiresAt: z.number(),
1898
+ securedKey: z.string(),
1899
+ userEmail: z.string()
1900
+ });
1901
+ /**
1902
+ * Success
1903
+ */ const zGetApiCampaignResponse = z.object({
1904
+ calledByData: z.array(zCalledByData),
1905
+ campaigns: z.array(zCampaign),
1906
+ total: z.number()
1907
+ });
1794
1908
  const zDeleteApiConversationMemoryConversationSummariesQuery = z.object({
1795
1909
  profileId: z.string(),
1796
1910
  summaryId: z.string()
1797
1911
  });
1912
+ const zDeleteApiConversationMemoryConversationSummariesResponse = z.union([
1913
+ z.record(z.unknown()),
1914
+ z.record(z.unknown())
1915
+ ]);
1798
1916
  const zGetApiConversationMemoryConversationSummariesQuery = z.object({
1799
1917
  profileId: z.string(),
1800
1918
  summaryId: z.string().optional(),
1801
1919
  pageSize: z.string().optional(),
1802
1920
  pageToken: z.string().optional()
1803
1921
  });
1922
+ /**
1923
+ * Upstream summary data (single summary or paginated list) from the Conversation Memory API
1924
+ */ const zGetApiConversationMemoryConversationSummariesResponse = z.record(z.unknown());
1804
1925
  const zPatchApiConversationMemoryConversationSummariesBody = z.record(z.unknown());
1805
1926
  const zPatchApiConversationMemoryConversationSummariesQuery = z.object({
1806
1927
  profileId: z.string(),
1807
1928
  summaryId: z.string()
1808
1929
  });
1930
+ const zPatchApiConversationMemoryConversationSummariesResponse = z.union([
1931
+ z.record(z.unknown()),
1932
+ z.record(z.unknown())
1933
+ ]);
1809
1934
  const zPostApiConversationMemoryConversationSummariesBody = z.record(z.unknown());
1935
+ const zPostApiConversationMemoryConversationSummariesResponse = z.union([
1936
+ z.record(z.unknown()),
1937
+ z.record(z.unknown())
1938
+ ]);
1810
1939
  const zDeleteApiConversationMemoryIdentifiersQuery = z.object({
1811
1940
  profileId: z.string(),
1812
1941
  idType: z.string(),
1813
1942
  removeAll: z.string().optional(),
1814
1943
  value: z.string().optional()
1815
1944
  });
1945
+ const zDeleteApiConversationMemoryIdentifiersResponse = z.union([
1946
+ z.record(z.unknown()),
1947
+ z.record(z.unknown())
1948
+ ]);
1816
1949
  const zGetApiConversationMemoryIdentifiersQuery = z.object({
1817
1950
  profileId: z.string(),
1818
- idType: z.string()
1951
+ idType: z.string().optional()
1819
1952
  });
1953
+ /**
1954
+ * Upstream identifier data (single value or list) from the Conversation Memory API
1955
+ */ const zGetApiConversationMemoryIdentifiersResponse = z.record(z.unknown());
1820
1956
  const zPatchApiConversationMemoryIdentifiersBody = z.record(z.unknown());
1821
1957
  const zPatchApiConversationMemoryIdentifiersQuery = z.object({
1822
1958
  profileId: z.string(),
@@ -1824,17 +1960,23 @@ const zPatchApiConversationMemoryIdentifiersQuery = z.object({
1824
1960
  removeAll: z.string().optional(),
1825
1961
  value: z.string().optional()
1826
1962
  });
1963
+ const zPatchApiConversationMemoryIdentifiersResponse = z.union([
1964
+ z.record(z.unknown()),
1965
+ z.record(z.unknown())
1966
+ ]);
1827
1967
  const zPostApiConversationMemoryIdentifiersBody = z.record(z.unknown());
1828
- const zPostApiConversationMemoryIdentifiersQuery = z.object({
1829
- profileId: z.string(),
1830
- idType: z.string(),
1831
- removeAll: z.string().optional(),
1832
- value: z.string()
1833
- });
1968
+ const zPostApiConversationMemoryIdentifiersResponse = z.union([
1969
+ z.record(z.unknown()),
1970
+ z.record(z.unknown())
1971
+ ]);
1834
1972
  const zDeleteApiConversationMemoryObservationsQuery = z.object({
1835
1973
  profileId: z.string(),
1836
1974
  observationId: z.string()
1837
1975
  });
1976
+ const zDeleteApiConversationMemoryObservationsResponse = z.union([
1977
+ z.record(z.unknown()),
1978
+ z.record(z.unknown())
1979
+ ]);
1838
1980
  const zGetApiConversationMemoryObservationsQuery = z.object({
1839
1981
  profileId: z.string(),
1840
1982
  observationId: z.string().optional(),
@@ -1845,18 +1987,30 @@ const zGetApiConversationMemoryObservationsQuery = z.object({
1845
1987
  createdAfter: z.string().optional(),
1846
1988
  createdBefore: z.string().optional()
1847
1989
  });
1990
+ /**
1991
+ * Upstream observation data (single observation or paginated list) from the Conversation Memory API
1992
+ */ const zGetApiConversationMemoryObservationsResponse = z.record(z.unknown());
1848
1993
  const zPatchApiConversationMemoryObservationsBody = z.record(z.unknown());
1849
1994
  const zPatchApiConversationMemoryObservationsQuery = z.object({
1850
1995
  profileId: z.string(),
1851
1996
  observationId: z.string()
1852
1997
  });
1998
+ const zPatchApiConversationMemoryObservationsResponse = z.union([
1999
+ z.record(z.unknown()),
2000
+ z.record(z.unknown())
2001
+ ]);
1853
2002
  const zPostApiConversationMemoryObservationsBody = z.record(z.unknown());
1854
- const zPostApiConversationMemoryObservationsQuery = z.object({
1855
- profileId: z.string()
1856
- });
2003
+ const zPostApiConversationMemoryObservationsResponse = z.union([
2004
+ z.record(z.unknown()),
2005
+ z.record(z.unknown())
2006
+ ]);
1857
2007
  const zDeleteApiConversationMemoryProfilesQuery = z.object({
1858
2008
  profileId: z.string()
1859
2009
  });
2010
+ const zDeleteApiConversationMemoryProfilesResponse = z.union([
2011
+ z.record(z.unknown()),
2012
+ z.record(z.unknown())
2013
+ ]);
1860
2014
  const zGetApiConversationMemoryProfilesQuery = z.object({
1861
2015
  profileId: z.string().optional(),
1862
2016
  traitGroups: z.string().optional(),
@@ -1864,27 +2018,58 @@ const zGetApiConversationMemoryProfilesQuery = z.object({
1864
2018
  pageToken: z.string().optional(),
1865
2019
  orderBy: z.string().optional()
1866
2020
  });
2021
+ /**
2022
+ * Upstream profile data (single profile or paginated list) from the Conversation Memory API
2023
+ */ const zGetApiConversationMemoryProfilesResponse = z.record(z.unknown());
1867
2024
  const zPatchApiConversationMemoryProfilesBody = z.record(z.unknown());
1868
2025
  const zPatchApiConversationMemoryProfilesQuery = z.object({
1869
2026
  profileId: z.string()
1870
2027
  });
2028
+ const zPatchApiConversationMemoryProfilesResponse = z.union([
2029
+ z.record(z.unknown()),
2030
+ z.record(z.unknown())
2031
+ ]);
1871
2032
  const zPostApiConversationMemoryProfilesBody = z.record(z.unknown());
1872
2033
  const zPostApiConversationMemoryProfilesQuery = z.object({
1873
- profileId: z.string()
2034
+ profileId: z.string().optional()
1874
2035
  });
2036
+ const zPostApiConversationMemoryProfilesResponse = z.union([
2037
+ z.record(z.unknown()),
2038
+ z.record(z.unknown())
2039
+ ]);
1875
2040
  const zPostApiConversationMemoryProfilesLookupBody = z.record(z.unknown());
2041
+ /**
2042
+ * Upstream profile lookup result from the Conversation Memory API
2043
+ */ const zPostApiConversationMemoryProfilesLookupResponse = z.record(z.unknown());
1876
2044
  const zPostApiConversationMemoryRecallBody = z.record(z.unknown());
2045
+ /**
2046
+ * Recalled communications, observations, and summaries matching the query
2047
+ */ const zPostApiConversationMemoryRecallResponse = zConversationMemoryRecallResponse;
1877
2048
  const zDeleteApiConversationMemoryResetQuery = z.object({
1878
2049
  profileId: z.string()
1879
2050
  });
2051
+ /**
2052
+ * Upstream confirmation payload from the Conversation Memory API
2053
+ */ const zDeleteApiConversationMemoryResetResponse = z.record(z.unknown());
1880
2054
  const zGetApiConversationMemoryTraitGroupsQuery = z.object({
1881
2055
  traitGroupName: z.string().optional(),
1882
2056
  includeTraits: z.string().optional(),
1883
2057
  pageSize: z.string().optional(),
1884
2058
  pageToken: z.string().optional()
1885
2059
  });
2060
+ /**
2061
+ * Upstream trait group data (single group or paginated list) from the Conversation Memory API
2062
+ */ const zGetApiConversationMemoryTraitGroupsResponse = z.record(z.unknown());
1886
2063
  const zPatchApiConversationMemoryTraitGroupsBody = z.record(z.unknown());
2064
+ const zPatchApiConversationMemoryTraitGroupsResponse = z.union([
2065
+ z.record(z.unknown()),
2066
+ z.record(z.unknown())
2067
+ ]);
1887
2068
  const zPostApiConversationMemoryTraitGroupsBody = z.record(z.unknown());
2069
+ const zPostApiConversationMemoryTraitGroupsResponse = z.union([
2070
+ z.record(z.unknown()),
2071
+ z.record(z.unknown())
2072
+ ]);
1888
2073
  const zGetApiConversationMemoryTraitsQuery = z.object({
1889
2074
  profileId: z.string(),
1890
2075
  pageSize: z.string().optional(),
@@ -1892,154 +2077,498 @@ const zGetApiConversationMemoryTraitsQuery = z.object({
1892
2077
  orderBy: z.string().optional(),
1893
2078
  traitGroups: z.string().optional()
1894
2079
  });
2080
+ /**
2081
+ * Upstream paginated trait data from the Conversation Memory API
2082
+ */ const zGetApiConversationMemoryTraitsResponse = z.record(z.unknown());
1895
2083
  const zDeleteApiConversationalIntelligenceOperatorQuery = z.object({
1896
2084
  intelligenceOperatorId: z.string()
1897
2085
  });
2086
+ /**
2087
+ * `{ success: true }` when the upstream returned no content, otherwise the deleted operator object as-is
2088
+ */ const zDeleteApiConversationalIntelligenceOperatorResponse = z.record(z.unknown());
1898
2089
  const zGetApiConversationalIntelligenceOperatorQuery = z.object({
1899
2090
  intelligenceOperatorId: z.string().optional(),
1900
2091
  pageToken: z.string().optional()
1901
2092
  });
2093
+ /**
2094
+ * A single Operator (when intelligenceOperatorId is provided) or an OperatorList (paginated), proxied from the upstream API
2095
+ */ const zGetApiConversationalIntelligenceOperatorResponse = z.record(z.unknown());
1902
2096
  const zPostApiConversationalIntelligenceOperatorBody = z.record(z.unknown());
1903
2097
  const zPostApiConversationalIntelligenceOperatorQuery = z.object({
1904
2098
  intelligenceOperatorId: z.string().optional()
1905
2099
  });
2100
+ /**
2101
+ * The created operator object
2102
+ */ const zPostApiConversationalIntelligenceOperatorResponse = zOperator;
1906
2103
  const zPutApiConversationalIntelligenceOperatorBody = z.record(z.unknown());
1907
2104
  const zPutApiConversationalIntelligenceOperatorQuery = z.object({
1908
2105
  intelligenceOperatorId: z.string()
1909
2106
  });
2107
+ /**
2108
+ * The updated operator object
2109
+ */ const zPutApiConversationalIntelligenceOperatorResponse = zOperator;
2110
+ /**
2111
+ * Success
2112
+ */ const zDeleteApiConversationsDeleteResponse = z.object({
2113
+ success: z.boolean(),
2114
+ message: z.string(),
2115
+ objectID: z.string()
2116
+ });
1910
2117
  const zPostApiConversationsSaveBody = z.record(z.unknown());
2118
+ /**
2119
+ * Success
2120
+ */ const zPostApiConversationsSaveResponse = z.object({
2121
+ message: z.string(),
2122
+ objectID: z.string(),
2123
+ success: z.boolean(),
2124
+ intelligenceConfigurationId: z.string(),
2125
+ crTargetWorker: z.string()
2126
+ });
1911
2127
  const zPostApiConversationsShareBody = z.record(z.unknown());
2128
+ /**
2129
+ * Success
2130
+ */ const zPostApiConversationsShareResponse = z.object({
2131
+ message: z.string(),
2132
+ newObjectID: z.string(),
2133
+ success: z.boolean()
2134
+ });
2135
+ /**
2136
+ * Success
2137
+ */ const zGetApiCountryConfigsResponse = z.object({
2138
+ configs: z.array(z.record(z.unknown()))
2139
+ });
1912
2140
  const zPostApiCreateExternalFlexConnectionBody = z.record(z.unknown());
2141
+ /**
2142
+ * Proxied response from the upstream API (shape depends on upstream; non-2xx upstream statuses are also passed through as-is)
2143
+ */ const zPostApiCreateExternalFlexConnectionResponse = z.record(z.unknown());
1913
2144
  const zPostApiEnhancePromptBody = z.record(z.unknown());
2145
+ /**
2146
+ * Success
2147
+ */ const zPostApiEnhancePromptResponse = z.object({
2148
+ enhancedContext: z.string(),
2149
+ enhancedInstructions: z.string()
2150
+ });
1914
2151
  const zPostApiGenerateTagsBody = z.record(z.unknown());
2152
+ /**
2153
+ * Success
2154
+ */ const zPostApiGenerateTagsResponse = z.object({
2155
+ tags: z.array(z.string())
2156
+ });
1915
2157
  const zPostApiIncrementViewCountBody = z.record(z.unknown());
2158
+ /**
2159
+ * Success
2160
+ */ const zPostApiIncrementViewCountResponse = z.object({
2161
+ objectID: z.string(),
2162
+ success: z.boolean(),
2163
+ viewCount: z.number()
2164
+ });
1916
2165
  const zGetApiIntelligenceConfigurationQuery = z.object({
1917
2166
  intelligenceConfigurationId: z.string().optional(),
1918
2167
  pageToken: z.string().optional()
1919
2168
  });
2169
+ /**
2170
+ * A single IntelligenceConfiguration (when intelligenceConfigurationId is provided) or a paginated list
2171
+ */ const zGetApiIntelligenceConfigurationResponse = z.record(z.unknown());
1920
2172
  const zPostApiIntelligenceConfigurationBody = z.record(z.unknown());
2173
+ /**
2174
+ * The created configuration
2175
+ */ const zPostApiIntelligenceConfigurationResponse = zIntelligenceConfiguration;
1921
2176
  const zPutApiIntelligenceConfigurationBody = z.record(z.unknown());
2177
+ /**
2178
+ * The updated configuration
2179
+ */ const zPutApiIntelligenceConfigurationResponse = zIntelligenceConfiguration;
1922
2180
  const zGetApiIsvLogoQuery = z.object({
1923
2181
  company: z.string()
1924
2182
  });
2183
+ /**
2184
+ * Success
2185
+ */ const zGetApiIsvLogoResponse = z.object({
2186
+ company: z.string(),
2187
+ logoUrl: z.string(),
2188
+ objectID: z.string()
2189
+ });
2190
+ /**
2191
+ * Proxied response from the upstream lead-gen API (shape depends on upstream)
2192
+ */ const zDeleteApiLeadGenResponse = z.record(z.unknown());
1925
2193
  const zGetApiLeadGenQuery = z.object({
1926
2194
  objectID: z.string(),
1927
2195
  agentNumber: z.string()
1928
2196
  });
2197
+ /**
2198
+ * Success
2199
+ */ const zGetApiLeadGenResponse = z.object({
2200
+ templates: z.array(zLockedTemplateData)
2201
+ });
1929
2202
  const zPatchApiLeadGenBody = z.record(z.unknown());
2203
+ /**
2204
+ * Proxied response from the upstream lead-gen API (shape depends on upstream)
2205
+ */ const zPatchApiLeadGenResponse = z.record(z.unknown());
1930
2206
  const zPostApiLeadGenBody = z.record(z.unknown());
2207
+ /**
2208
+ * Proxied response from the upstream lead-gen API (shape depends on upstream)
2209
+ */ const zPostApiLeadGenResponse = z.record(z.unknown());
1931
2210
  const zDeleteApiLinkShortenerQuery = z.object({
1932
2211
  code: z.string()
1933
2212
  });
2213
+ /**
2214
+ * Proxied response from the upstream link-shortener API (shape depends on upstream)
2215
+ */ const zDeleteApiLinkShortenerResponse = z.record(z.unknown());
1934
2216
  const zGetApiLinkShortenerQuery = z.object({
1935
2217
  code: z.string().optional()
1936
2218
  });
2219
+ /**
2220
+ * Proxied response from the upstream link-shortener API (shape depends on upstream)
2221
+ */ const zGetApiLinkShortenerResponse = z.record(z.unknown());
1937
2222
  const zPatchApiLinkShortenerBody = z.record(z.unknown());
1938
2223
  const zPatchApiLinkShortenerQuery = z.object({
1939
2224
  code: z.string()
1940
2225
  });
2226
+ /**
2227
+ * Proxied response from the upstream link-shortener API (shape depends on upstream)
2228
+ */ const zPatchApiLinkShortenerResponse = z.record(z.unknown());
1941
2229
  const zPostApiLinkShortenerBody = z.record(z.unknown());
1942
2230
  const zPostApiLinkShortenerQuery = z.object({
1943
2231
  code: z.string().optional()
1944
2232
  });
2233
+ /**
2234
+ * Proxied response from the upstream link-shortener API (shape depends on upstream)
2235
+ */ const zPostApiLinkShortenerResponse = z.record(z.unknown());
2236
+ /**
2237
+ * Success
2238
+ */ const zDeleteApiLiveNumbersResponse = z.object({
2239
+ success: z.boolean(),
2240
+ liveNumbers: z.array(z.record(z.unknown())),
2241
+ totalCount: z.number(),
2242
+ timestamp: z.string()
2243
+ });
1945
2244
  const zGetApiLiveNumbersQuery = z.object({
1946
2245
  countryCode: z.string().optional()
1947
2246
  });
2247
+ /**
2248
+ * Success
2249
+ */ const zGetApiLiveNumbersResponse = z.object({
2250
+ success: z.boolean(),
2251
+ liveNumbers: z.array(z.record(z.unknown())),
2252
+ totalCount: z.number(),
2253
+ timestamp: z.string()
2254
+ });
1948
2255
  const zPostApiOutboundCallBody = z.record(z.unknown());
2256
+ /**
2257
+ * Proxied response from the upstream agent outbound-call API (shape depends on upstream)
2258
+ */ const zPostApiOutboundCallResponse = z.record(z.unknown());
1949
2259
  const zPostApiOutboundCommunicationTextBody = z.record(z.unknown());
2260
+ /**
2261
+ * Proxied response from the upstream agent outbound-communication-text API (shape depends on upstream)
2262
+ */ const zPostApiOutboundCommunicationTextResponse = z.record(z.unknown());
1950
2263
  const zGetApiPhoneLogsByPhoneNumberPath = z.object({
1951
2264
  phoneNumber: z.string()
1952
2265
  });
1953
2266
  const zGetApiPhoneLogsByPhoneNumberQuery = z.object({
1954
2267
  countryCode: z.string().optional()
1955
2268
  });
2269
+ /**
2270
+ * Phone call logs for the requested number, proxied from the upstream agent API
2271
+ */ const zGetApiPhoneLogsByPhoneNumberResponse = z.record(z.unknown());
1956
2272
  const zGetApiRecentlyActiveNumbersQuery = z.object({
1957
2273
  countryCode: z.string().optional()
1958
2274
  });
2275
+ /**
2276
+ * Success
2277
+ */ const zGetApiRecentlyActiveNumbersResponse = z.object({
2278
+ success: z.boolean(),
2279
+ activeNumbers: z.array(z.record(z.unknown())),
2280
+ totalCount: z.number(),
2281
+ timestamp: z.string()
2282
+ });
1959
2283
  const zPostApiSegmentIdentifyBody = z.record(z.unknown());
2284
+ /**
2285
+ * Success
2286
+ */ const zPostApiSegmentIdentifyResponse = z.object({
2287
+ message: z.string()
2288
+ });
1960
2289
  const zPostApiSegmentProfileBody = z.record(z.unknown());
2290
+ /**
2291
+ * Success
2292
+ */ const zPostApiSegmentProfileResponse = z.object({
2293
+ canonicalUserId: z.string(),
2294
+ data: z.record(z.unknown()),
2295
+ identifier: z.string(),
2296
+ identifiers: z.array(z.record(z.unknown())),
2297
+ matchedKey: z.string(),
2298
+ message: z.string()
2299
+ });
2300
+ /**
2301
+ * Success
2302
+ */ const zGetApiSessionResponse = z.object({
2303
+ authenticated: z.boolean(),
2304
+ user: z.record(z.unknown()),
2305
+ timestamp: z.string()
2306
+ });
2307
+ /**
2308
+ * Success
2309
+ */ const zGetApiSupportedRegionsResponse = z.object({
2310
+ regions: z.array(zSupportedRegion)
2311
+ });
1961
2312
  const zPostApiTagsBody = z.record(z.unknown());
2313
+ /**
2314
+ * Success
2315
+ */ const zPostApiTagsResponse = z.object({
2316
+ success: z.boolean(),
2317
+ tag: z.record(z.unknown())
2318
+ });
1962
2319
  const zPostApiTelemetryQuery = z.object({
1963
2320
  ddforward: z.string().optional()
1964
2321
  });
2322
+ const zPostApiTelemetryResponse = z.union([
2323
+ z.unknown(),
2324
+ z.record(z.unknown())
2325
+ ]);
1965
2326
  const zDeleteApiTemplateQuery = z.object({
1966
2327
  campaign: z.string().optional()
1967
2328
  });
2329
+ /**
2330
+ * Proxied response from the upstream template API (shape depends on upstream)
2331
+ */ const zDeleteApiTemplateResponse = z.record(z.unknown());
1968
2332
  const zPostApiTemplateAutogenBody = z.record(z.unknown());
2333
+ /**
2334
+ * Proxied response from the upstream template-autogen API (shape depends on upstream)
2335
+ */ const zPostApiTemplateAutogenResponse = z.record(z.unknown());
1969
2336
  const zPostApiVerifyCheckBody = z.record(z.unknown());
2337
+ /**
2338
+ * Success
2339
+ */ const zPostApiVerifyCheckResponse = z.object({
2340
+ verified: z.boolean(),
2341
+ error: z.string()
2342
+ });
1970
2343
  const zPostApiVerifySendBody = z.record(z.unknown());
2344
+ /**
2345
+ * Success
2346
+ */ const zPostApiVerifySendResponse = z.object({
2347
+ channel: z.string(),
2348
+ sid: z.string()
2349
+ });
2350
+ const zPostApiWebchatChatBody = z.record(z.unknown());
2351
+ /**
2352
+ * Proxied response from the agent chat service
2353
+ */ const zPostApiWebchatChatResponse = z.record(z.unknown());
2354
+ const zPostApiWebchatConversationBody = z.record(z.unknown());
2355
+ /**
2356
+ * Proxied response from the agent conversation service
2357
+ */ const zPostApiWebchatConversationResponse = z.record(z.unknown());
2358
+ const zGetApiWebchatConversationsTokenQuery = z.object({
2359
+ identity: z.string().optional()
2360
+ });
2361
+ /**
2362
+ * Proxied response from the API conversations-token service
2363
+ */ const zGetApiWebchatConversationsTokenResponse = z.record(z.unknown());
2364
+ const zPostApiWebchatConversationsTokenBody = z.record(z.unknown());
2365
+ const zPostApiWebchatConversationsTokenQuery = z.object({
2366
+ identity: z.string().optional()
2367
+ });
2368
+ /**
2369
+ * Proxied response from the API conversations-token service
2370
+ */ const zPostApiWebchatConversationsTokenResponse = z.record(z.unknown());
2371
+ const zPostApiWebchatEndChatBody = z.record(z.unknown());
2372
+ /**
2373
+ * Proxied response from the agent live-numbers delete service
2374
+ */ const zPostApiWebchatEndChatResponse = z.record(z.unknown());
2375
+ const zPostApiWebchatLiveAgentWebchatConnectBody = z.record(z.unknown());
2376
+ /**
2377
+ * Proxied response from the API live-agent-webchat-connect service
2378
+ */ const zPostApiWebchatLiveAgentWebchatConnectResponse = z.record(z.unknown());
2379
+ const zPostApiWebchatLiveAgentWebchatEndBody = z.record(z.unknown());
2380
+ /**
2381
+ * Proxied response from the API live-agent-webchat-end service
2382
+ */ const zPostApiWebchatLiveAgentWebchatEndResponse = z.record(z.unknown());
2383
+ const zPostApiWebchatUiConfigBody = z.record(z.unknown());
2384
+ /**
2385
+ * Success
2386
+ */ const zPostApiWebchatUiConfigResponse = z.object({
2387
+ ui: z.record(z.unknown()),
2388
+ linkMap: z.record(z.unknown()),
2389
+ hideChatLink: z.boolean(),
2390
+ templateObjectId: z.string(),
2391
+ templateLanguage: z.string(),
2392
+ resolvedCustomerNumber: z.string(),
2393
+ resolvedAgentNumber: z.string(),
2394
+ templateTitle: z.string(),
2395
+ dialogConfig: z.record(z.unknown()),
2396
+ dialogSettings: z.record(z.unknown())
2397
+ });
2398
+ const zGetApiWebchatVoiceTokenQuery = z.object({
2399
+ identity: z.string().optional()
2400
+ });
2401
+ /**
2402
+ * Proxied response from the API voice-token service
2403
+ */ const zGetApiWebchatVoiceTokenResponse = z.record(z.unknown());
2404
+ const zPostApiWebchatWebchatSendBody = z.record(z.unknown());
2405
+ /**
2406
+ * Proxied response from the agent chat service
2407
+ */ const zPostApiWebchatWebchatSendResponse = z.record(z.unknown());
1971
2408
 
1972
2409
  var zod_gen = {
1973
2410
  __proto__: null,
2411
+ zCalledByData: zCalledByData,
2412
+ zCampaign: zCampaign,
2413
+ zConversationMemoryRecallResponse: zConversationMemoryRecallResponse,
1974
2414
  zDeleteApiConversationMemoryConversationSummariesQuery: zDeleteApiConversationMemoryConversationSummariesQuery,
2415
+ zDeleteApiConversationMemoryConversationSummariesResponse: zDeleteApiConversationMemoryConversationSummariesResponse,
1975
2416
  zDeleteApiConversationMemoryIdentifiersQuery: zDeleteApiConversationMemoryIdentifiersQuery,
2417
+ zDeleteApiConversationMemoryIdentifiersResponse: zDeleteApiConversationMemoryIdentifiersResponse,
1976
2418
  zDeleteApiConversationMemoryObservationsQuery: zDeleteApiConversationMemoryObservationsQuery,
2419
+ zDeleteApiConversationMemoryObservationsResponse: zDeleteApiConversationMemoryObservationsResponse,
1977
2420
  zDeleteApiConversationMemoryProfilesQuery: zDeleteApiConversationMemoryProfilesQuery,
2421
+ zDeleteApiConversationMemoryProfilesResponse: zDeleteApiConversationMemoryProfilesResponse,
1978
2422
  zDeleteApiConversationMemoryResetQuery: zDeleteApiConversationMemoryResetQuery,
2423
+ zDeleteApiConversationMemoryResetResponse: zDeleteApiConversationMemoryResetResponse,
1979
2424
  zDeleteApiConversationalIntelligenceOperatorQuery: zDeleteApiConversationalIntelligenceOperatorQuery,
2425
+ zDeleteApiConversationalIntelligenceOperatorResponse: zDeleteApiConversationalIntelligenceOperatorResponse,
2426
+ zDeleteApiConversationsDeleteResponse: zDeleteApiConversationsDeleteResponse,
2427
+ zDeleteApiLeadGenResponse: zDeleteApiLeadGenResponse,
1980
2428
  zDeleteApiLinkShortenerQuery: zDeleteApiLinkShortenerQuery,
2429
+ zDeleteApiLinkShortenerResponse: zDeleteApiLinkShortenerResponse,
2430
+ zDeleteApiLiveNumbersResponse: zDeleteApiLiveNumbersResponse,
1981
2431
  zDeleteApiTemplateQuery: zDeleteApiTemplateQuery,
2432
+ zDeleteApiTemplateResponse: zDeleteApiTemplateResponse,
2433
+ zErrorResponse: zErrorResponse,
2434
+ zGetApiCampaignResponse: zGetApiCampaignResponse,
1982
2435
  zGetApiConversationMemoryConversationSummariesQuery: zGetApiConversationMemoryConversationSummariesQuery,
2436
+ zGetApiConversationMemoryConversationSummariesResponse: zGetApiConversationMemoryConversationSummariesResponse,
1983
2437
  zGetApiConversationMemoryIdentifiersQuery: zGetApiConversationMemoryIdentifiersQuery,
2438
+ zGetApiConversationMemoryIdentifiersResponse: zGetApiConversationMemoryIdentifiersResponse,
1984
2439
  zGetApiConversationMemoryObservationsQuery: zGetApiConversationMemoryObservationsQuery,
2440
+ zGetApiConversationMemoryObservationsResponse: zGetApiConversationMemoryObservationsResponse,
1985
2441
  zGetApiConversationMemoryProfilesQuery: zGetApiConversationMemoryProfilesQuery,
2442
+ zGetApiConversationMemoryProfilesResponse: zGetApiConversationMemoryProfilesResponse,
1986
2443
  zGetApiConversationMemoryTraitGroupsQuery: zGetApiConversationMemoryTraitGroupsQuery,
2444
+ zGetApiConversationMemoryTraitGroupsResponse: zGetApiConversationMemoryTraitGroupsResponse,
1987
2445
  zGetApiConversationMemoryTraitsQuery: zGetApiConversationMemoryTraitsQuery,
2446
+ zGetApiConversationMemoryTraitsResponse: zGetApiConversationMemoryTraitsResponse,
1988
2447
  zGetApiConversationalIntelligenceOperatorQuery: zGetApiConversationalIntelligenceOperatorQuery,
2448
+ zGetApiConversationalIntelligenceOperatorResponse: zGetApiConversationalIntelligenceOperatorResponse,
2449
+ zGetApiCountryConfigsResponse: zGetApiCountryConfigsResponse,
1989
2450
  zGetApiIntelligenceConfigurationQuery: zGetApiIntelligenceConfigurationQuery,
2451
+ zGetApiIntelligenceConfigurationResponse: zGetApiIntelligenceConfigurationResponse,
1990
2452
  zGetApiIsvLogoQuery: zGetApiIsvLogoQuery,
2453
+ zGetApiIsvLogoResponse: zGetApiIsvLogoResponse,
1991
2454
  zGetApiLeadGenQuery: zGetApiLeadGenQuery,
2455
+ zGetApiLeadGenResponse: zGetApiLeadGenResponse,
1992
2456
  zGetApiLinkShortenerQuery: zGetApiLinkShortenerQuery,
2457
+ zGetApiLinkShortenerResponse: zGetApiLinkShortenerResponse,
1993
2458
  zGetApiLiveNumbersQuery: zGetApiLiveNumbersQuery,
2459
+ zGetApiLiveNumbersResponse: zGetApiLiveNumbersResponse,
1994
2460
  zGetApiPhoneLogsByPhoneNumberPath: zGetApiPhoneLogsByPhoneNumberPath,
1995
2461
  zGetApiPhoneLogsByPhoneNumberQuery: zGetApiPhoneLogsByPhoneNumberQuery,
2462
+ zGetApiPhoneLogsByPhoneNumberResponse: zGetApiPhoneLogsByPhoneNumberResponse,
1996
2463
  zGetApiRecentlyActiveNumbersQuery: zGetApiRecentlyActiveNumbersQuery,
2464
+ zGetApiRecentlyActiveNumbersResponse: zGetApiRecentlyActiveNumbersResponse,
2465
+ zGetApiSessionResponse: zGetApiSessionResponse,
2466
+ zGetApiSupportedRegionsResponse: zGetApiSupportedRegionsResponse,
2467
+ zGetApiWebchatConversationsTokenQuery: zGetApiWebchatConversationsTokenQuery,
2468
+ zGetApiWebchatConversationsTokenResponse: zGetApiWebchatConversationsTokenResponse,
2469
+ zGetApiWebchatVoiceTokenQuery: zGetApiWebchatVoiceTokenQuery,
2470
+ zGetApiWebchatVoiceTokenResponse: zGetApiWebchatVoiceTokenResponse,
2471
+ zIntelligenceConfiguration: zIntelligenceConfiguration,
2472
+ zLockedTemplateData: zLockedTemplateData,
2473
+ zOperator: zOperator,
1997
2474
  zPatchApiConversationMemoryConversationSummariesBody: zPatchApiConversationMemoryConversationSummariesBody,
1998
2475
  zPatchApiConversationMemoryConversationSummariesQuery: zPatchApiConversationMemoryConversationSummariesQuery,
2476
+ zPatchApiConversationMemoryConversationSummariesResponse: zPatchApiConversationMemoryConversationSummariesResponse,
1999
2477
  zPatchApiConversationMemoryIdentifiersBody: zPatchApiConversationMemoryIdentifiersBody,
2000
2478
  zPatchApiConversationMemoryIdentifiersQuery: zPatchApiConversationMemoryIdentifiersQuery,
2479
+ zPatchApiConversationMemoryIdentifiersResponse: zPatchApiConversationMemoryIdentifiersResponse,
2001
2480
  zPatchApiConversationMemoryObservationsBody: zPatchApiConversationMemoryObservationsBody,
2002
2481
  zPatchApiConversationMemoryObservationsQuery: zPatchApiConversationMemoryObservationsQuery,
2482
+ zPatchApiConversationMemoryObservationsResponse: zPatchApiConversationMemoryObservationsResponse,
2003
2483
  zPatchApiConversationMemoryProfilesBody: zPatchApiConversationMemoryProfilesBody,
2004
2484
  zPatchApiConversationMemoryProfilesQuery: zPatchApiConversationMemoryProfilesQuery,
2485
+ zPatchApiConversationMemoryProfilesResponse: zPatchApiConversationMemoryProfilesResponse,
2005
2486
  zPatchApiConversationMemoryTraitGroupsBody: zPatchApiConversationMemoryTraitGroupsBody,
2487
+ zPatchApiConversationMemoryTraitGroupsResponse: zPatchApiConversationMemoryTraitGroupsResponse,
2006
2488
  zPatchApiLeadGenBody: zPatchApiLeadGenBody,
2489
+ zPatchApiLeadGenResponse: zPatchApiLeadGenResponse,
2007
2490
  zPatchApiLinkShortenerBody: zPatchApiLinkShortenerBody,
2008
2491
  zPatchApiLinkShortenerQuery: zPatchApiLinkShortenerQuery,
2492
+ zPatchApiLinkShortenerResponse: zPatchApiLinkShortenerResponse,
2493
+ zPostApiAlgoliaSecuredKeyResponse: zPostApiAlgoliaSecuredKeyResponse,
2009
2494
  zPostApiConversationMemoryConversationSummariesBody: zPostApiConversationMemoryConversationSummariesBody,
2495
+ zPostApiConversationMemoryConversationSummariesResponse: zPostApiConversationMemoryConversationSummariesResponse,
2010
2496
  zPostApiConversationMemoryIdentifiersBody: zPostApiConversationMemoryIdentifiersBody,
2011
- zPostApiConversationMemoryIdentifiersQuery: zPostApiConversationMemoryIdentifiersQuery,
2497
+ zPostApiConversationMemoryIdentifiersResponse: zPostApiConversationMemoryIdentifiersResponse,
2012
2498
  zPostApiConversationMemoryObservationsBody: zPostApiConversationMemoryObservationsBody,
2013
- zPostApiConversationMemoryObservationsQuery: zPostApiConversationMemoryObservationsQuery,
2499
+ zPostApiConversationMemoryObservationsResponse: zPostApiConversationMemoryObservationsResponse,
2014
2500
  zPostApiConversationMemoryProfilesBody: zPostApiConversationMemoryProfilesBody,
2015
2501
  zPostApiConversationMemoryProfilesLookupBody: zPostApiConversationMemoryProfilesLookupBody,
2502
+ zPostApiConversationMemoryProfilesLookupResponse: zPostApiConversationMemoryProfilesLookupResponse,
2016
2503
  zPostApiConversationMemoryProfilesQuery: zPostApiConversationMemoryProfilesQuery,
2504
+ zPostApiConversationMemoryProfilesResponse: zPostApiConversationMemoryProfilesResponse,
2017
2505
  zPostApiConversationMemoryRecallBody: zPostApiConversationMemoryRecallBody,
2506
+ zPostApiConversationMemoryRecallResponse: zPostApiConversationMemoryRecallResponse,
2018
2507
  zPostApiConversationMemoryTraitGroupsBody: zPostApiConversationMemoryTraitGroupsBody,
2508
+ zPostApiConversationMemoryTraitGroupsResponse: zPostApiConversationMemoryTraitGroupsResponse,
2019
2509
  zPostApiConversationalIntelligenceOperatorBody: zPostApiConversationalIntelligenceOperatorBody,
2020
2510
  zPostApiConversationalIntelligenceOperatorQuery: zPostApiConversationalIntelligenceOperatorQuery,
2511
+ zPostApiConversationalIntelligenceOperatorResponse: zPostApiConversationalIntelligenceOperatorResponse,
2021
2512
  zPostApiConversationsSaveBody: zPostApiConversationsSaveBody,
2513
+ zPostApiConversationsSaveResponse: zPostApiConversationsSaveResponse,
2022
2514
  zPostApiConversationsShareBody: zPostApiConversationsShareBody,
2515
+ zPostApiConversationsShareResponse: zPostApiConversationsShareResponse,
2023
2516
  zPostApiCreateExternalFlexConnectionBody: zPostApiCreateExternalFlexConnectionBody,
2517
+ zPostApiCreateExternalFlexConnectionResponse: zPostApiCreateExternalFlexConnectionResponse,
2024
2518
  zPostApiEnhancePromptBody: zPostApiEnhancePromptBody,
2519
+ zPostApiEnhancePromptResponse: zPostApiEnhancePromptResponse,
2025
2520
  zPostApiGenerateTagsBody: zPostApiGenerateTagsBody,
2521
+ zPostApiGenerateTagsResponse: zPostApiGenerateTagsResponse,
2026
2522
  zPostApiIncrementViewCountBody: zPostApiIncrementViewCountBody,
2523
+ zPostApiIncrementViewCountResponse: zPostApiIncrementViewCountResponse,
2027
2524
  zPostApiIntelligenceConfigurationBody: zPostApiIntelligenceConfigurationBody,
2525
+ zPostApiIntelligenceConfigurationResponse: zPostApiIntelligenceConfigurationResponse,
2028
2526
  zPostApiLeadGenBody: zPostApiLeadGenBody,
2527
+ zPostApiLeadGenResponse: zPostApiLeadGenResponse,
2029
2528
  zPostApiLinkShortenerBody: zPostApiLinkShortenerBody,
2030
2529
  zPostApiLinkShortenerQuery: zPostApiLinkShortenerQuery,
2530
+ zPostApiLinkShortenerResponse: zPostApiLinkShortenerResponse,
2031
2531
  zPostApiOutboundCallBody: zPostApiOutboundCallBody,
2532
+ zPostApiOutboundCallResponse: zPostApiOutboundCallResponse,
2032
2533
  zPostApiOutboundCommunicationTextBody: zPostApiOutboundCommunicationTextBody,
2534
+ zPostApiOutboundCommunicationTextResponse: zPostApiOutboundCommunicationTextResponse,
2033
2535
  zPostApiSegmentIdentifyBody: zPostApiSegmentIdentifyBody,
2536
+ zPostApiSegmentIdentifyResponse: zPostApiSegmentIdentifyResponse,
2034
2537
  zPostApiSegmentProfileBody: zPostApiSegmentProfileBody,
2538
+ zPostApiSegmentProfileResponse: zPostApiSegmentProfileResponse,
2035
2539
  zPostApiTagsBody: zPostApiTagsBody,
2540
+ zPostApiTagsResponse: zPostApiTagsResponse,
2036
2541
  zPostApiTelemetryQuery: zPostApiTelemetryQuery,
2542
+ zPostApiTelemetryResponse: zPostApiTelemetryResponse,
2037
2543
  zPostApiTemplateAutogenBody: zPostApiTemplateAutogenBody,
2544
+ zPostApiTemplateAutogenResponse: zPostApiTemplateAutogenResponse,
2038
2545
  zPostApiVerifyCheckBody: zPostApiVerifyCheckBody,
2546
+ zPostApiVerifyCheckResponse: zPostApiVerifyCheckResponse,
2039
2547
  zPostApiVerifySendBody: zPostApiVerifySendBody,
2548
+ zPostApiVerifySendResponse: zPostApiVerifySendResponse,
2549
+ zPostApiWebchatChatBody: zPostApiWebchatChatBody,
2550
+ zPostApiWebchatChatResponse: zPostApiWebchatChatResponse,
2551
+ zPostApiWebchatConversationBody: zPostApiWebchatConversationBody,
2552
+ zPostApiWebchatConversationResponse: zPostApiWebchatConversationResponse,
2553
+ zPostApiWebchatConversationsTokenBody: zPostApiWebchatConversationsTokenBody,
2554
+ zPostApiWebchatConversationsTokenQuery: zPostApiWebchatConversationsTokenQuery,
2555
+ zPostApiWebchatConversationsTokenResponse: zPostApiWebchatConversationsTokenResponse,
2556
+ zPostApiWebchatEndChatBody: zPostApiWebchatEndChatBody,
2557
+ zPostApiWebchatEndChatResponse: zPostApiWebchatEndChatResponse,
2558
+ zPostApiWebchatLiveAgentWebchatConnectBody: zPostApiWebchatLiveAgentWebchatConnectBody,
2559
+ zPostApiWebchatLiveAgentWebchatConnectResponse: zPostApiWebchatLiveAgentWebchatConnectResponse,
2560
+ zPostApiWebchatLiveAgentWebchatEndBody: zPostApiWebchatLiveAgentWebchatEndBody,
2561
+ zPostApiWebchatLiveAgentWebchatEndResponse: zPostApiWebchatLiveAgentWebchatEndResponse,
2562
+ zPostApiWebchatUiConfigBody: zPostApiWebchatUiConfigBody,
2563
+ zPostApiWebchatUiConfigResponse: zPostApiWebchatUiConfigResponse,
2564
+ zPostApiWebchatWebchatSendBody: zPostApiWebchatWebchatSendBody,
2565
+ zPostApiWebchatWebchatSendResponse: zPostApiWebchatWebchatSendResponse,
2040
2566
  zPutApiConversationalIntelligenceOperatorBody: zPutApiConversationalIntelligenceOperatorBody,
2041
2567
  zPutApiConversationalIntelligenceOperatorQuery: zPutApiConversationalIntelligenceOperatorQuery,
2042
- zPutApiIntelligenceConfigurationBody: zPutApiIntelligenceConfigurationBody
2568
+ zPutApiConversationalIntelligenceOperatorResponse: zPutApiConversationalIntelligenceOperatorResponse,
2569
+ zPutApiIntelligenceConfigurationBody: zPutApiIntelligenceConfigurationBody,
2570
+ zPutApiIntelligenceConfigurationResponse: zPutApiIntelligenceConfigurationResponse,
2571
+ zSupportedRegion: zSupportedRegion
2043
2572
  };
2044
2573
 
2045
- export { createRampSiteClient, deleteApiConversationMemoryConversationSummaries, deleteApiConversationMemoryIdentifiers, deleteApiConversationMemoryObservations, deleteApiConversationMemoryProfiles, deleteApiConversationMemoryReset, deleteApiConversationalIntelligenceOperator, deleteApiConversationsDelete, deleteApiLeadGen, deleteApiLinkShortener, deleteApiLiveNumbers, deleteApiTemplate, getApiCampaign, getApiConversationMemoryConversationSummaries, getApiConversationMemoryIdentifiers, getApiConversationMemoryObservations, getApiConversationMemoryProfiles, getApiConversationMemoryTraitGroups, getApiConversationMemoryTraits, getApiConversationalIntelligenceOperator, getApiCountryConfigs, getApiIntelligenceConfiguration, getApiInternalNav, getApiIsvLogo, getApiLeadGen, getApiLinkShortener, getApiLiveNumbers, getApiPhoneLogsByPhoneNumber, getApiRecentlyActiveNumbers, getApiSession, getApiSupportedRegions, patchApiConversationMemoryConversationSummaries, patchApiConversationMemoryIdentifiers, patchApiConversationMemoryObservations, patchApiConversationMemoryProfiles, patchApiConversationMemoryTraitGroups, patchApiLeadGen, patchApiLinkShortener, postApiAlgoliaSecuredKey, postApiConversationMemoryConversationSummaries, postApiConversationMemoryIdentifiers, postApiConversationMemoryObservations, postApiConversationMemoryProfiles, postApiConversationMemoryProfilesLookup, postApiConversationMemoryRecall, postApiConversationMemoryTraitGroups, postApiConversationalIntelligenceOperator, postApiConversationsSave, postApiConversationsShare, postApiCreateExternalFlexConnection, postApiEnhancePrompt, postApiGenerateTags, postApiIncrementViewCount, postApiIntelligenceConfiguration, postApiLeadGen, postApiLinkShortener, postApiOutboundCall, postApiOutboundCommunicationText, postApiSegmentIdentify, postApiSegmentProfile, postApiTags, postApiTelemetry, postApiTemplateAutogen, postApiVerifyCheck, postApiVerifySend, putApiConversationalIntelligenceOperator, putApiIntelligenceConfiguration, zod_gen as schemas };
2574
+ export { createRampSiteClient, deleteApiConversationMemoryConversationSummaries, deleteApiConversationMemoryIdentifiers, deleteApiConversationMemoryObservations, deleteApiConversationMemoryProfiles, deleteApiConversationMemoryReset, deleteApiConversationalIntelligenceOperator, deleteApiConversationsDelete, deleteApiLeadGen, deleteApiLinkShortener, deleteApiLiveNumbers, deleteApiTemplate, getApiCampaign, getApiConversationMemoryConversationSummaries, getApiConversationMemoryIdentifiers, getApiConversationMemoryObservations, getApiConversationMemoryProfiles, getApiConversationMemoryTraitGroups, getApiConversationMemoryTraits, getApiConversationalIntelligenceOperator, getApiCountryConfigs, getApiIntelligenceConfiguration, getApiIsvLogo, getApiLeadGen, getApiLinkShortener, getApiLiveNumbers, getApiPhoneLogsByPhoneNumber, getApiRecentlyActiveNumbers, getApiSession, getApiSupportedRegions, getApiWebchatConversationsToken, getApiWebchatVoiceToken, patchApiConversationMemoryConversationSummaries, patchApiConversationMemoryIdentifiers, patchApiConversationMemoryObservations, patchApiConversationMemoryProfiles, patchApiConversationMemoryTraitGroups, patchApiLeadGen, patchApiLinkShortener, postApiAlgoliaSecuredKey, postApiConversationMemoryConversationSummaries, postApiConversationMemoryIdentifiers, postApiConversationMemoryObservations, postApiConversationMemoryProfiles, postApiConversationMemoryProfilesLookup, postApiConversationMemoryRecall, postApiConversationMemoryTraitGroups, postApiConversationalIntelligenceOperator, postApiConversationsSave, postApiConversationsShare, postApiCreateExternalFlexConnection, postApiEnhancePrompt, postApiGenerateTags, postApiIncrementViewCount, postApiIntelligenceConfiguration, postApiLeadGen, postApiLinkShortener, postApiOutboundCall, postApiOutboundCommunicationText, postApiSegmentIdentify, postApiSegmentProfile, postApiTags, postApiTelemetry, postApiTemplateAutogen, postApiVerifyCheck, postApiVerifySend, postApiWebchatChat, postApiWebchatConversation, postApiWebchatConversationsToken, postApiWebchatEndChat, postApiWebchatLiveAgentWebchatConnect, postApiWebchatLiveAgentWebchatEnd, postApiWebchatUiConfig, postApiWebchatWebchatSend, putApiConversationalIntelligenceOperator, putApiIntelligenceConfiguration, zod_gen as schemas };