@tellescope/types-models 1.167.0 → 1.167.1
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 +9 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +9 -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 +7 -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,8 @@ export interface AgentRecord extends AgentRecord_readonly, AgentRecord_required,
|
|
|
4396
4403
|
embedding?: number[];
|
|
4397
4404
|
source?: string;
|
|
4398
4405
|
externalId?: string;
|
|
4406
|
+
indexed?: boolean;
|
|
4407
|
+
indexId?: string;
|
|
4399
4408
|
}
|
|
4400
4409
|
export type ModelForName_required = {
|
|
4401
4410
|
agent_records: AgentRecord_required;
|