File size: 6,536 Bytes
312c2e2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | /**
* Generated by orval v8.5.3 🍺
* Do not edit manually.
* Api
* API specification for FB Group Publisher PRO
* OpenAPI spec version: 0.1.0
*/
import * as zod from "zod";
/**
* @summary Health check
*/
export declare const HealthCheckResponse: zod.ZodObject<{
status: zod.ZodString;
}, "strip", zod.ZodTypeAny, {
status: string;
}, {
status: string;
}>;
/**
* @summary Get current user with subscription state
*/
export declare const GetMeResponse: zod.ZodObject<{
userId: zod.ZodString;
email: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
subscription: zod.ZodObject<{
status: zod.ZodEnum<["none", "trialing", "active", "cancelled", "suspended", "expired"]>;
trialEnd: zod.ZodOptional<zod.ZodNullable<zod.ZodDate>>;
currentPeriodEnd: zod.ZodOptional<zod.ZodNullable<zod.ZodDate>>;
paypalSubscriptionId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
hasAccess: zod.ZodBoolean;
}, "strip", zod.ZodTypeAny, {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
}, {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
}>;
}, "strip", zod.ZodTypeAny, {
userId: string;
subscription: {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
};
email?: string | null | undefined;
}, {
userId: string;
subscription: {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
};
email?: string | null | undefined;
}>;
/**
* @summary Create PayPal subscription, returns approval URL
*/
export declare const CreateSubscriptionResponse: zod.ZodObject<{
subscriptionId: zod.ZodString;
approvalUrl: zod.ZodString;
}, "strip", zod.ZodTypeAny, {
subscriptionId: string;
approvalUrl: string;
}, {
subscriptionId: string;
approvalUrl: string;
}>;
/**
* @summary Activate subscription after PayPal approval
*/
export declare const ActivateSubscriptionBody: zod.ZodObject<{
subscriptionId: zod.ZodString;
}, "strip", zod.ZodTypeAny, {
subscriptionId: string;
}, {
subscriptionId: string;
}>;
export declare const ActivateSubscriptionResponse: zod.ZodObject<{
status: zod.ZodEnum<["none", "trialing", "active", "cancelled", "suspended", "expired"]>;
trialEnd: zod.ZodOptional<zod.ZodNullable<zod.ZodDate>>;
currentPeriodEnd: zod.ZodOptional<zod.ZodNullable<zod.ZodDate>>;
paypalSubscriptionId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
hasAccess: zod.ZodBoolean;
}, "strip", zod.ZodTypeAny, {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
}, {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
}>;
/**
* @summary Cancel current subscription
*/
export declare const CancelSubscriptionResponse: zod.ZodObject<{
status: zod.ZodEnum<["none", "trialing", "active", "cancelled", "suspended", "expired"]>;
trialEnd: zod.ZodOptional<zod.ZodNullable<zod.ZodDate>>;
currentPeriodEnd: zod.ZodOptional<zod.ZodNullable<zod.ZodDate>>;
paypalSubscriptionId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
hasAccess: zod.ZodBoolean;
}, "strip", zod.ZodTypeAny, {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
}, {
status: "none" | "trialing" | "active" | "cancelled" | "suspended" | "expired";
hasAccess: boolean;
trialEnd?: Date | null | undefined;
currentPeriodEnd?: Date | null | undefined;
paypalSubscriptionId?: string | null | undefined;
}>;
/**
* @summary PayPal webhook receiver
*/
export declare const PaypalWebhookBody: zod.ZodRecord<zod.ZodString, zod.ZodUnknown>;
export declare const PaypalWebhookResponse: zod.ZodObject<{
status: zod.ZodString;
}, "strip", zod.ZodTypeAny, {
status: string;
}, {
status: string;
}>;
/**
* @summary List saved group lists
*/
export declare const ListSavedListsResponseItem: zod.ZodObject<{
id: zod.ZodNumber;
name: zod.ZodString;
groupIds: zod.ZodArray<zod.ZodString, "many">;
createdAt: zod.ZodDate;
}, "strip", zod.ZodTypeAny, {
id: number;
name: string;
groupIds: string[];
createdAt: Date;
}, {
id: number;
name: string;
groupIds: string[];
createdAt: Date;
}>;
export declare const ListSavedListsResponse: zod.ZodArray<zod.ZodObject<{
id: zod.ZodNumber;
name: zod.ZodString;
groupIds: zod.ZodArray<zod.ZodString, "many">;
createdAt: zod.ZodDate;
}, "strip", zod.ZodTypeAny, {
id: number;
name: string;
groupIds: string[];
createdAt: Date;
}, {
id: number;
name: string;
groupIds: string[];
createdAt: Date;
}>, "many">;
/**
* @summary Save a group list
*/
export declare const createSavedListBodyNameMax = 80;
export declare const CreateSavedListBody: zod.ZodObject<{
name: zod.ZodString;
groupIds: zod.ZodArray<zod.ZodString, "many">;
}, "strip", zod.ZodTypeAny, {
name: string;
groupIds: string[];
}, {
name: string;
groupIds: string[];
}>;
/**
* @summary Delete a saved list
*/
export declare const DeleteSavedListParams: zod.ZodObject<{
id: zod.ZodNumber;
}, "strip", zod.ZodTypeAny, {
id: number;
}, {
id: number;
}>;
//# sourceMappingURL=api.d.ts.map |