tickera-angular-components 0.0.1-dev.142 → 0.0.1-dev.143
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/index.d.ts +2 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1737,13 +1737,11 @@ interface Membership extends Auditable {
|
|
|
1737
1737
|
excluded_show_ids: number[] | null;
|
|
1738
1738
|
}
|
|
1739
1739
|
|
|
1740
|
-
interface FetchVipCardsParams {
|
|
1741
|
-
page?: number;
|
|
1742
|
-
limit?: number;
|
|
1740
|
+
interface FetchVipCardsParams extends CommonFetchAllParams {
|
|
1743
1741
|
status?: VipCardStatus;
|
|
1744
1742
|
membership_id?: number;
|
|
1745
1743
|
customer_id?: number;
|
|
1746
|
-
|
|
1744
|
+
sort_by?: 'vip_card.id' | 'vip_card.uuid' | 'vip_card.customer_id' | 'vip_card.membership_id' | 'vip_card.balance' | 'vip_card.status' | 'vip_card.activated_at' | 'vip_card.last_activity_at' | 'vip_card.expires_at' | 'vip_card.last_low_balance_alert_at' | 'vip_card.last_expiry_alert_at' | 'vip_card.created_at' | 'vip_card.updated_at';
|
|
1747
1745
|
}
|
|
1748
1746
|
|
|
1749
1747
|
interface ActivateVipCardParams {
|