@elevasis/sdk 0.8.13 → 0.8.14

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/cli.cjs CHANGED
@@ -43883,7 +43883,7 @@ function wrapAction(commandName, fn) {
43883
43883
  // package.json
43884
43884
  var package_default = {
43885
43885
  name: "@elevasis/sdk",
43886
- version: "0.8.13",
43886
+ version: "0.8.14",
43887
43887
  description: "SDK for building Elevasis organization resources",
43888
43888
  type: "module",
43889
43889
  bin: {
package/dist/index.d.ts CHANGED
@@ -1860,9 +1860,10 @@ type Database = {
1860
1860
  comments_count: number;
1861
1861
  created_at: string;
1862
1862
  discovered_at: string;
1863
- draft_response: string | null;
1864
1863
  engagement_count: number;
1864
+ final_response: string | null;
1865
1865
  id: string;
1866
+ initial_draft: string | null;
1866
1867
  matched_keywords: string[];
1867
1868
  matched_query: string | null;
1868
1869
  metadata: Json;
@@ -1874,6 +1875,7 @@ type Database = {
1874
1875
  posted_at: string;
1875
1876
  relevance_score: number;
1876
1877
  responded_at: string | null;
1878
+ reviewed_at: string | null;
1877
1879
  skip_reason: string | null;
1878
1880
  source_category: string | null;
1879
1881
  status: string;
@@ -1885,9 +1887,10 @@ type Database = {
1885
1887
  comments_count?: number;
1886
1888
  created_at?: string;
1887
1889
  discovered_at?: string;
1888
- draft_response?: string | null;
1889
1890
  engagement_count?: number;
1891
+ final_response?: string | null;
1890
1892
  id?: string;
1893
+ initial_draft?: string | null;
1891
1894
  matched_keywords?: string[];
1892
1895
  matched_query?: string | null;
1893
1896
  metadata?: Json;
@@ -1899,6 +1902,7 @@ type Database = {
1899
1902
  posted_at: string;
1900
1903
  relevance_score?: number;
1901
1904
  responded_at?: string | null;
1905
+ reviewed_at?: string | null;
1902
1906
  skip_reason?: string | null;
1903
1907
  source_category?: string | null;
1904
1908
  status?: string;
@@ -1910,9 +1914,10 @@ type Database = {
1910
1914
  comments_count?: number;
1911
1915
  created_at?: string;
1912
1916
  discovered_at?: string;
1913
- draft_response?: string | null;
1914
1917
  engagement_count?: number;
1918
+ final_response?: string | null;
1915
1919
  id?: string;
1920
+ initial_draft?: string | null;
1916
1921
  matched_keywords?: string[];
1917
1922
  matched_query?: string | null;
1918
1923
  metadata?: Json;
@@ -1924,6 +1929,7 @@ type Database = {
1924
1929
  posted_at?: string;
1925
1930
  relevance_score?: number;
1926
1931
  responded_at?: string | null;
1932
+ reviewed_at?: string | null;
1927
1933
  skip_reason?: string | null;
1928
1934
  source_category?: string | null;
1929
1935
  status?: string;
@@ -4070,7 +4076,8 @@ interface UpsertSocialPostParams {
4070
4076
  relevanceScore?: number;
4071
4077
  matchedKeywords?: string[];
4072
4078
  matchedQuery?: string | null;
4073
- draftResponse?: string | null;
4079
+ initialDraft?: string | null;
4080
+ finalResponse?: string | null;
4074
4081
  sourceCategory?: string | null;
4075
4082
  }
4076
4083
  interface UpsertSocialPostsResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "0.8.13",
3
+ "version": "0.8.14",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "type": "module",
6
6
  "bin": {