mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-04 05:56:09 +00:00

* feat: ctx types, delete threads cache, cache.channels.threads, changes to collectors, fix rest types * fix: use apithreadchannel instead * feat: revert threads relationship, fix collectors * fix: cache thread when creating * fix: unused * feat: entitlement trasnformer * fix: non-null assertion * fix: circular? * fix: collector onStop reason type * fix: types * feat: onPass method * fix: undefined value
16 lines
504 B
TypeScript
16 lines
504 B
TypeScript
import type {
|
|
RESTGetAPISKUSubscriptionResult,
|
|
RESTGetAPISKUSubscriptionsQuery,
|
|
RESTGetAPISKUSubscriptionsResult,
|
|
} from '../../types';
|
|
import type { RestArguments, RestArgumentsNoBody } from '../api';
|
|
|
|
export interface SKuRoutes {
|
|
skus(id: string): {
|
|
get: (args?: RestArguments<RESTGetAPISKUSubscriptionsQuery>) => Promise<RESTGetAPISKUSubscriptionsResult>;
|
|
subscriptions(id: string): {
|
|
get: (args?: RestArgumentsNoBody) => Promise<RESTGetAPISKUSubscriptionResult>;
|
|
};
|
|
};
|
|
}
|