@@ -62,6 +62,8 @@ import { OneTimePasswordTokenRequestEndpoint } from "./types/one-time-password-t
6262import { SubscriptionsEndpoint } from './types/subscriptions'
6363import { RulePromotionsEndpoint } from './types/rule-promotions'
6464import { SubscriptionSubscribersEndpoint } from './types/subscription-subscribers'
65+ import { SubscriptionJobsEndpoint } from './types/subscription-jobs'
66+ import { SubscriptionSchedulesEndpoint } from './types/subscription-schedules'
6567
6668export * from './types/config'
6769export * from './types/storage'
@@ -134,6 +136,8 @@ export * from './types/one-time-password-token-request'
134136export * from './types/subscriptions'
135137export * from './types/rule-promotions'
136138export * from './types/subscription-subscribers'
139+ export * from './types/subscription-jobs'
140+ export * from './types/subscription-schedules'
137141
138142// UMD
139143export as namespace moltin
@@ -197,6 +201,8 @@ export class Moltin {
197201 Subscriptions : SubscriptionsEndpoint
198202 RulePromotions : RulePromotionsEndpoint
199203 SubscriptionSubscribers : SubscriptionSubscribersEndpoint
204+ SubscriptionJobs : SubscriptionJobsEndpoint
205+ SubscriptionSchedules : SubscriptionSchedulesEndpoint
200206
201207 Cart ( id ?: string ) : CartEndpoint // This optional cart id is super worrying when using the SDK in a node server :/
202208 constructor ( config : Config )
0 commit comments