/** * #settings.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ import type { FormFieldValue } from "../../../ui/form_builder/v1alpha/value.js"; export type SettingsValues = { /** a unique identifier for this version of the settings */ version: string; /** A map of the settings values, field_id:value */ settings: { [key: string]: FormFieldValue; }; /** timestamp of when settings were modified */ timestamp?: string | undefined; }; export type SettingsValues_SettingsEntry = { key: string; value?: FormFieldValue | undefined; }; export type SettingsRequest = {}; export type SettingsResponse = { /** Defined via InstallationSettings interface; the values of the settings */ installationSettings?: SettingsValues | undefined; /** Defined via InstanceSettings interface; the values of the settings */ instanceSettings?: SettingsValues | undefined; /** Defined via AppSettings interface; the values of the settings */ appSettings?: SettingsValues | undefined; }; //# sourceMappingURL=settings.d.ts.map