@tellescope/types-models 1.131.0 → 1.131.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 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +5 -1
- 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 +2 -2
- package/src/index.ts +2 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export type StripeCheckoutInfo = {
|
|
|
13
13
|
stripeAccount: string;
|
|
14
14
|
businessName: string;
|
|
15
15
|
};
|
|
16
|
-
export type SortBy = 'updatedAt';
|
|
16
|
+
export type SortBy = 'updatedAt' | 'dueDateInMS';
|
|
17
17
|
export type AccessType = "All" | "Default" | "Assigned" | null;
|
|
18
18
|
export type AccessAction = "create" | "read" | "update" | "delete";
|
|
19
19
|
export type AccessResources = ModelName | 'apiKeys';
|
|
@@ -362,6 +362,10 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
362
362
|
iframeURL: string;
|
|
363
363
|
}[];
|
|
364
364
|
stripePublicKeys?: string[];
|
|
365
|
+
defaultDoseSpotPharmacies?: {
|
|
366
|
+
id: string;
|
|
367
|
+
name: string;
|
|
368
|
+
}[];
|
|
365
369
|
}
|
|
366
370
|
export type OrganizationTheme = {
|
|
367
371
|
name: string;
|