n8n-nodes-base
Version:
Base nodes of n8n
33 lines (30 loc) • 1.12 kB
text/typescript
/**
* Stripe Node - Version 1
* Re-exports all discriminator combinations.
*/
import type { StripeV1BalanceNode } from './resource_balance';
import type { StripeV1ChargeNode } from './resource_charge';
import type { StripeV1CouponNode } from './resource_coupon';
import type { StripeV1CustomerNode } from './resource_customer';
import type { StripeV1CustomerCardNode } from './resource_customer_card';
import type { StripeV1MeterEventNode } from './resource_meter_event';
import type { StripeV1SourceNode } from './resource_source';
import type { StripeV1TokenNode } from './resource_token';
export * from './resource_balance';
export * from './resource_charge';
export * from './resource_coupon';
export * from './resource_customer';
export * from './resource_customer_card';
export * from './resource_meter_event';
export * from './resource_source';
export * from './resource_token';
export type StripeV1Node =
| StripeV1BalanceNode
| StripeV1ChargeNode
| StripeV1CouponNode
| StripeV1CustomerNode
| StripeV1CustomerCardNode
| StripeV1MeterEventNode
| StripeV1SourceNode
| StripeV1TokenNode
;