@tellescope/types-models 1.252.1 → 1.252.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/lib/cjs/index.d.ts +5 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +5 -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 +5 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -402,10 +402,15 @@ export interface Organization_required {
|
|
|
402
402
|
export interface Organization_updatesDisabled {
|
|
403
403
|
subdomain: string;
|
|
404
404
|
}
|
|
405
|
+
export interface OrganizationPlan {
|
|
406
|
+
type?: string;
|
|
407
|
+
}
|
|
405
408
|
export interface Organization extends Organization_readonly, Organization_required, Organization_updatesDisabled {
|
|
406
409
|
inboxThreadsBuiltFrom?: Date | '';
|
|
407
410
|
inboxThreadsBuiltTo?: Date | '';
|
|
408
411
|
bedrockAIAllowed?: boolean;
|
|
412
|
+
plan?: OrganizationPlan;
|
|
413
|
+
onboardingStatus?: string;
|
|
409
414
|
subdomains?: string[];
|
|
410
415
|
owner?: string;
|
|
411
416
|
timezone?: Timezone;
|