@avallon-labs/sdk 26.6.0 → 26.7.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/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3446,6 +3446,7 @@ type ListChatsParams = {
|
|
|
3446
3446
|
type ListEmailsSortBy = (typeof ListEmailsSortBy)[keyof typeof ListEmailsSortBy];
|
|
3447
3447
|
declare const ListEmailsSortBy: {
|
|
3448
3448
|
readonly created_at: "created_at";
|
|
3449
|
+
readonly sent_at: "sent_at";
|
|
3449
3450
|
};
|
|
3450
3451
|
|
|
3451
3452
|
/**
|
package/dist/index.js
CHANGED
|
@@ -3961,7 +3961,8 @@ var ListChatsSortOrder = {
|
|
|
3961
3961
|
|
|
3962
3962
|
// generated/models/listEmailsSortBy.ts
|
|
3963
3963
|
var ListEmailsSortBy = {
|
|
3964
|
-
created_at: "created_at"
|
|
3964
|
+
created_at: "created_at",
|
|
3965
|
+
sent_at: "sent_at"
|
|
3965
3966
|
};
|
|
3966
3967
|
|
|
3967
3968
|
// generated/models/listEmailsSortOrder.ts
|