@tellescope/types-models 1.131.1 → 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 +1 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -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';
|