@elevasis/sdk 0.8.18 → 0.8.19

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
@@ -40071,6 +40071,7 @@ var DOMAINS = {
40071
40071
  INBOUND_PIPELINE: "inbound-pipeline",
40072
40072
  LEAD_GEN_PIPELINE: "lead-gen-pipeline",
40073
40073
  SUPPORT: "support",
40074
+ CLIENT_SUPPORT: "client-support",
40074
40075
  DELIVERY: "delivery",
40075
40076
  OPERATIONS: "operations",
40076
40077
  FINANCE: "finance",
@@ -40101,6 +40102,12 @@ var SUPPORT_DOMAIN = {
40101
40102
  description: "Ticket triage, knowledge base, escalations",
40102
40103
  color: "green"
40103
40104
  };
40105
+ var CLIENT_SUPPORT_DOMAIN = {
40106
+ id: DOMAINS.CLIENT_SUPPORT,
40107
+ name: "Client Support",
40108
+ description: "Client change requests, bug reports, and feature requests",
40109
+ color: "teal"
40110
+ };
40104
40111
  var DELIVERY_DOMAIN = {
40105
40112
  id: DOMAINS.DELIVERY,
40106
40113
  name: "Client Delivery",
@@ -40165,6 +40172,7 @@ var DOMAIN_MAP = {
40165
40172
  [DOMAINS.INBOUND_PIPELINE]: INBOUND_PIPELINE_DOMAIN,
40166
40173
  [DOMAINS.LEAD_GEN_PIPELINE]: LEAD_GEN_PIPELINE_DOMAIN,
40167
40174
  [DOMAINS.SUPPORT]: SUPPORT_DOMAIN,
40175
+ [DOMAINS.CLIENT_SUPPORT]: CLIENT_SUPPORT_DOMAIN,
40168
40176
  [DOMAINS.DELIVERY]: DELIVERY_DOMAIN,
40169
40177
  [DOMAINS.OPERATIONS]: OPERATIONS_DOMAIN,
40170
40178
  [DOMAINS.FINANCE]: FINANCE_DOMAIN,
@@ -43883,7 +43891,7 @@ function wrapAction(commandName, fn) {
43883
43891
  // package.json
43884
43892
  var package_default = {
43885
43893
  name: "@elevasis/sdk",
43886
- version: "0.8.18",
43894
+ version: "0.8.19",
43887
43895
  description: "SDK for building Elevasis organization resources",
43888
43896
  type: "module",
43889
43897
  bin: {
package/dist/index.d.ts CHANGED
@@ -1864,7 +1864,9 @@ type Database = {
1864
1864
  created_at: string;
1865
1865
  discovered_at: string;
1866
1866
  engagement_count: number;
1867
+ feedback: string | null;
1867
1868
  final_response: string | null;
1869
+ fully_reviewed: boolean;
1868
1870
  id: string;
1869
1871
  initial_draft: string | null;
1870
1872
  matched_keywords: string[];
@@ -1874,6 +1876,7 @@ type Database = {
1874
1876
  platform: string;
1875
1877
  platform_post_id: string;
1876
1878
  post_text: string;
1879
+ post_title: string;
1877
1880
  post_url: string;
1878
1881
  posted_at: string;
1879
1882
  relevance_score: number;
@@ -1891,7 +1894,9 @@ type Database = {
1891
1894
  created_at?: string;
1892
1895
  discovered_at?: string;
1893
1896
  engagement_count?: number;
1897
+ feedback?: string | null;
1894
1898
  final_response?: string | null;
1899
+ fully_reviewed?: boolean;
1895
1900
  id?: string;
1896
1901
  initial_draft?: string | null;
1897
1902
  matched_keywords?: string[];
@@ -1901,6 +1906,7 @@ type Database = {
1901
1906
  platform: string;
1902
1907
  platform_post_id: string;
1903
1908
  post_text: string;
1909
+ post_title: string;
1904
1910
  post_url: string;
1905
1911
  posted_at: string;
1906
1912
  relevance_score?: number;
@@ -1918,7 +1924,9 @@ type Database = {
1918
1924
  created_at?: string;
1919
1925
  discovered_at?: string;
1920
1926
  engagement_count?: number;
1927
+ feedback?: string | null;
1921
1928
  final_response?: string | null;
1929
+ fully_reviewed?: boolean;
1922
1930
  id?: string;
1923
1931
  initial_draft?: string | null;
1924
1932
  matched_keywords?: string[];
@@ -1928,6 +1936,7 @@ type Database = {
1928
1936
  platform?: string;
1929
1937
  platform_post_id?: string;
1930
1938
  post_text?: string;
1939
+ post_title?: string;
1931
1940
  post_url?: string;
1932
1941
  posted_at?: string;
1933
1942
  relevance_score?: number;
@@ -3179,7 +3188,7 @@ type Database = {
3179
3188
  name: string;
3180
3189
  organization_id: string;
3181
3190
  request_count: number;
3182
- resource_id: string;
3191
+ resource_id: string | null;
3183
3192
  status: string;
3184
3193
  updated_at: string;
3185
3194
  };
@@ -3192,7 +3201,7 @@ type Database = {
3192
3201
  name: string;
3193
3202
  organization_id: string;
3194
3203
  request_count?: number;
3195
- resource_id: string;
3204
+ resource_id?: string | null;
3196
3205
  status?: string;
3197
3206
  updated_at?: string;
3198
3207
  };
@@ -3205,7 +3214,7 @@ type Database = {
3205
3214
  name?: string;
3206
3215
  organization_id?: string;
3207
3216
  request_count?: number;
3208
- resource_id?: string;
3217
+ resource_id?: string | null;
3209
3218
  status?: string;
3210
3219
  updated_at?: string;
3211
3220
  };
@@ -4126,6 +4135,7 @@ interface UpsertSocialPostParams {
4126
4135
  platformPostId: string;
4127
4136
  authorName: string;
4128
4137
  authorUrl?: string | null;
4138
+ postTitle: string;
4129
4139
  postText: string;
4130
4140
  postUrl: string;
4131
4141
  engagementCount?: number;
@@ -7258,6 +7268,7 @@ declare const DOMAINS: {
7258
7268
  readonly INBOUND_PIPELINE: "inbound-pipeline";
7259
7269
  readonly LEAD_GEN_PIPELINE: "lead-gen-pipeline";
7260
7270
  readonly SUPPORT: "support";
7271
+ readonly CLIENT_SUPPORT: "client-support";
7261
7272
  readonly DELIVERY: "delivery";
7262
7273
  readonly OPERATIONS: "operations";
7263
7274
  readonly FINANCE: "finance";
package/dist/index.js CHANGED
@@ -44,6 +44,7 @@ var DOMAINS = {
44
44
  INBOUND_PIPELINE: "inbound-pipeline",
45
45
  LEAD_GEN_PIPELINE: "lead-gen-pipeline",
46
46
  SUPPORT: "support",
47
+ CLIENT_SUPPORT: "client-support",
47
48
  DELIVERY: "delivery",
48
49
  OPERATIONS: "operations",
49
50
  FINANCE: "finance",
@@ -74,6 +75,12 @@ var SUPPORT_DOMAIN = {
74
75
  description: "Ticket triage, knowledge base, escalations",
75
76
  color: "green"
76
77
  };
78
+ var CLIENT_SUPPORT_DOMAIN = {
79
+ id: DOMAINS.CLIENT_SUPPORT,
80
+ name: "Client Support",
81
+ description: "Client change requests, bug reports, and feature requests",
82
+ color: "teal"
83
+ };
77
84
  var DELIVERY_DOMAIN = {
78
85
  id: DOMAINS.DELIVERY,
79
86
  name: "Client Delivery",
@@ -138,6 +145,7 @@ var DOMAIN_MAP = {
138
145
  [DOMAINS.INBOUND_PIPELINE]: INBOUND_PIPELINE_DOMAIN,
139
146
  [DOMAINS.LEAD_GEN_PIPELINE]: LEAD_GEN_PIPELINE_DOMAIN,
140
147
  [DOMAINS.SUPPORT]: SUPPORT_DOMAIN,
148
+ [DOMAINS.CLIENT_SUPPORT]: CLIENT_SUPPORT_DOMAIN,
141
149
  [DOMAINS.DELIVERY]: DELIVERY_DOMAIN,
142
150
  [DOMAINS.OPERATIONS]: OPERATIONS_DOMAIN,
143
151
  [DOMAINS.FINANCE]: FINANCE_DOMAIN,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "0.8.18",
3
+ "version": "0.8.19",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "type": "module",
6
6
  "bin": {