@tellescope/types-models 1.167.0 → 1.168.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/lib/cjs/index.d.ts +25 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +25 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +22 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -263,6 +263,8 @@ export interface Organization_readonly extends ClientRecord {
|
|
|
263
263
|
environment: string;
|
|
264
264
|
};
|
|
265
265
|
fromEmails?: string[];
|
|
266
|
+
twilioSID?: string;
|
|
267
|
+
twilioCustomerId?: string;
|
|
266
268
|
}
|
|
267
269
|
export interface Organization_required {
|
|
268
270
|
}
|
|
@@ -2917,6 +2919,11 @@ export type PortalBlockForType = {
|
|
|
2917
2919
|
text: string;
|
|
2918
2920
|
}>;
|
|
2919
2921
|
chat: BuildPortalBlockInfo<'chat', {}>;
|
|
2922
|
+
"Orders": BuildPortalBlockInfo<'Orders', {}>;
|
|
2923
|
+
"Manage Subscription Button": BuildPortalBlockInfo<'Manage Subscription Button', {}>;
|
|
2924
|
+
HTML: BuildPortalBlockInfo<'HTML', {
|
|
2925
|
+
html: string;
|
|
2926
|
+
}>;
|
|
2920
2927
|
};
|
|
2921
2928
|
export type PortalBlockType = keyof PortalBlockForType;
|
|
2922
2929
|
export type PortalBlock = PortalBlockForType[PortalBlockType];
|
|
@@ -4396,6 +4403,7 @@ export interface AgentRecord extends AgentRecord_readonly, AgentRecord_required,
|
|
|
4396
4403
|
embedding?: number[];
|
|
4397
4404
|
source?: string;
|
|
4398
4405
|
externalId?: string;
|
|
4406
|
+
indexed?: boolean;
|
|
4399
4407
|
}
|
|
4400
4408
|
export type ModelForName_required = {
|
|
4401
4409
|
agent_records: AgentRecord_required;
|
|
@@ -5443,4 +5451,21 @@ export type ZendeskArticle = {
|
|
|
5443
5451
|
title: string;
|
|
5444
5452
|
body: string;
|
|
5445
5453
|
};
|
|
5454
|
+
export type KendraSearchResult = {
|
|
5455
|
+
ResultItems: {
|
|
5456
|
+
Content: string;
|
|
5457
|
+
DocumentAttributes: ({
|
|
5458
|
+
Key: "_source_uri";
|
|
5459
|
+
Value: {
|
|
5460
|
+
StringValue: string;
|
|
5461
|
+
};
|
|
5462
|
+
})[];
|
|
5463
|
+
DocumentId: string;
|
|
5464
|
+
DocumentTitle: string;
|
|
5465
|
+
DocumentURI: string;
|
|
5466
|
+
ScoreAttributes: {
|
|
5467
|
+
ScoreConfidence: "VERY_HIGH" | "HIGH" | "MEDIUM" | "LOW" | "NOT_AVAILABLE";
|
|
5468
|
+
};
|
|
5469
|
+
}[];
|
|
5470
|
+
};
|
|
5446
5471
|
//# sourceMappingURL=index.d.ts.map
|