Sid Gifari File Manager
🏠 Root
/
home2
/
nuveprin
/
ahavahome.org
/
wp-content
/
plugins
/
give
/
src
/
Subscriptions
/
resources
/
admin
/
components
/
Editing: types.ts
import { Campaign } from '@givewp/campaigns/admin/components/types'; import {Donation} from '@givewp/donations/admin/components/types'; import {Donor} from '@givewp/donors/admin/components/types'; type PaymentGateway = { id: string; name: string; label: string; subscriptionUrl: string; canSync: boolean; }; /** * @since 4.8.0 */ export type SubscriptionPeriod = 'day' | 'week' | 'month' | 'quarter' | 'year'; /** * @since 4.8.0 */ export type SubscriptionStatus = | 'pending' | 'active' | 'expired' | 'completed' | 'failing' | 'cancelled' | 'suspended' | 'paused' | 'trashed'; /** * @since 4.8.0 */ export type SubscriptionMode = 'test' | 'live'; /** * @since 4.8.0 */ type Money = { value: number; currency: string; }; /** * @since 4.10.0 */ type Form = { id: number; title: string; }; /** * @since 4.10.0 added _embedded * @since 4.8.0 */ export type Subscription = { id: number; donationFormId: number; campaignId: number; createdAt: string; // ISO 8601 string renewsAt: string; // ISO 8601 string donorId: number; period: SubscriptionPeriod; frequency: number; installments: number; transactionId: string; mode: SubscriptionMode; amount: Money; feeAmountRecovered: Money; status: SubscriptionStatus; gatewaySubscriptionId: string; gatewayId: string; donor?: Donor; donations?: Donation[]; gateway?: PaymentGateway; projectedAnnualRevenue?: Money; _embedded?: { 'givewp:campaign': Campaign[]; // the first item in the array is the array of donations 'givewp:donations': [Donation[]] 'givewp:donor': Donor[]; 'givewp:form': Form[]; }; };
Save
Cancel