UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

50 lines 2.05 kB
import type { FromSchema } from 'json-schema-to-ts'; export declare const submitSignupDataSchema: { readonly $id: "#/components/schemas/submitSignupDataSchema"; readonly type: "object"; readonly description: "An object describing the user and company signup data submission."; readonly additionalProperties: false; readonly properties: { readonly password: { readonly type: "string"; readonly example: "k!5As3HquUrQ"; readonly description: "The user's new password."; }; readonly inviteEmails: { readonly type: "array"; readonly description: "A list of email addresses to invite."; readonly items: { readonly type: "string"; }; readonly example: readonly ["marks@lumon.industries", "hellyr@lumon.industries"]; }; readonly name: { readonly type: "string"; readonly description: "The user's name."; readonly example: "Mark Scout"; }; readonly companyRole: { readonly type: "string"; readonly description: "The role of the user within the company."; readonly example: "Developer"; }; readonly companyName: { readonly type: "string"; readonly description: "The name of the company."; readonly example: "Lumon Industries"; }; readonly companyIsNA: { readonly type: "boolean"; readonly description: "Whether the company is based in North America."; readonly example: true; }; readonly productUpdatesEmailConsent: { readonly type: "boolean"; readonly description: "Whether the user has consented to receive product update emails."; readonly example: true; }; }; readonly components: {}; }; export type SubmitSignupDataSchema = FromSchema<typeof submitSignupDataSchema>; //# sourceMappingURL=submit-signup-data-schema.d.ts.map