@@ -736,43 +736,30 @@ export namespace remoteConfig {
736736export const SDK_VERSION: string ;
737737
738738// @public
739- export function securityRules(app ? : app . App ): securityRules .SecurityRules ;
739+ export function securityRules(app ? : App ): securityRules .SecurityRules ;
740740
741741// @public (undocumented)
742742export namespace securityRules {
743- export interface Ruleset extends RulesetMetadata {
744- // (undocumented)
745- readonly source: RulesFile [];
746- }
747- export interface RulesetMetadata {
748- readonly createTime: string ;
749- readonly name: string ;
750- }
751- export interface RulesetMetadataList {
752- readonly nextPageToken? : string ;
753- readonly rulesets: RulesetMetadata [];
754- }
755- export interface RulesFile {
756- // (undocumented)
757- readonly content: string ;
758- // (undocumented)
759- readonly name: string ;
760- }
761- export interface SecurityRules {
762- // (undocumented)
763- app: app .App ;
764- createRuleset(file : RulesFile ): Promise <Ruleset >;
765- createRulesFileFromSource(name : string , source : string | Buffer ): RulesFile ;
766- deleteRuleset(name : string ): Promise <void >;
767- getFirestoreRuleset(): Promise <Ruleset >;
768- getRuleset(name : string ): Promise <Ruleset >;
769- getStorageRuleset(bucket ? : string ): Promise <Ruleset >;
770- listRulesetMetadata(pageSize ? : number , nextPageToken ? : string ): Promise <RulesetMetadataList >;
771- releaseFirestoreRuleset(ruleset : string | RulesetMetadata ): Promise <void >;
772- releaseFirestoreRulesetFromSource(source : string | Buffer ): Promise <Ruleset >;
773- releaseStorageRuleset(ruleset : string | RulesetMetadata , bucket ? : string ): Promise <void >;
774- releaseStorageRulesetFromSource(source : string | Buffer , bucket ? : string ): Promise <Ruleset >;
775- }
743+ // Warning: (ae-forgotten-export) The symbol "Ruleset" needs to be exported by the entry point default-namespace.d.ts
744+ //
745+ // (undocumented)
746+ export type Ruleset = Ruleset ;
747+ // Warning: (ae-forgotten-export) The symbol "RulesetMetadata" needs to be exported by the entry point default-namespace.d.ts
748+ //
749+ // (undocumented)
750+ export type RulesetMetadata = RulesetMetadata ;
751+ // Warning: (ae-forgotten-export) The symbol "RulesetMetadataList" needs to be exported by the entry point default-namespace.d.ts
752+ //
753+ // (undocumented)
754+ export type RulesetMetadataList = RulesetMetadataList ;
755+ // Warning: (ae-forgotten-export) The symbol "RulesFile" needs to be exported by the entry point default-namespace.d.ts
756+ //
757+ // (undocumented)
758+ export type RulesFile = RulesFile ;
759+ // Warning: (ae-forgotten-export) The symbol "SecurityRules" needs to be exported by the entry point default-namespace.d.ts
760+ //
761+ // (undocumented)
762+ export type SecurityRules = SecurityRules ;
776763}
777764
778765// @public (undocumented)
0 commit comments