@@ -819,86 +819,62 @@ export namespace projectManagement {
819819export function refreshToken(refreshTokenPathOrObject : string | object , httpAgent ? : Agent ): Credential ;
820820
821821// @public
822- export function remoteConfig(app ? : app . App ): remoteConfig .RemoteConfig ;
822+ export function remoteConfig(app ? : App ): remoteConfig .RemoteConfig ;
823823
824824// @public (undocumented)
825825export namespace remoteConfig {
826- export interface ExplicitParameterValue {
827- value: string ;
828- }
829- export interface InAppDefaultValue {
830- useInAppDefault: boolean ;
831- }
832- export interface ListVersionsOptions {
833- endTime? : Date | string ;
834- endVersionNumber? : string | number ;
835- pageSize? : number ;
836- pageToken? : string ;
837- startTime? : Date | string ;
838- }
839- export interface ListVersionsResult {
840- nextPageToken? : string ;
841- versions: Version [];
842- }
843- export interface RemoteConfig {
844- // (undocumented)
845- app: app .App ;
846- createTemplateFromJSON(json : string ): RemoteConfigTemplate ;
847- getTemplate(): Promise <RemoteConfigTemplate >;
848- getTemplateAtVersion(versionNumber : number | string ): Promise <RemoteConfigTemplate >;
849- listVersions(options ? : ListVersionsOptions ): Promise <ListVersionsResult >;
850- publishTemplate(template : RemoteConfigTemplate , options ? : {
851- force: boolean ;
852- }): Promise <RemoteConfigTemplate >;
853- rollback(versionNumber : string | number ): Promise <RemoteConfigTemplate >;
854- validateTemplate(template : RemoteConfigTemplate ): Promise <RemoteConfigTemplate >;
855- }
856- export interface RemoteConfigCondition {
857- expression: string ;
858- name: string ;
859- tagColor? : TagColor ;
860- }
861- export interface RemoteConfigParameter {
862- conditionalValues? : {
863- [key : string ]: RemoteConfigParameterValue ;
864- };
865- defaultValue? : RemoteConfigParameterValue ;
866- description? : string ;
867- }
868- export interface RemoteConfigParameterGroup {
869- description? : string ;
870- parameters: {
871- [key : string ]: RemoteConfigParameter ;
872- };
873- }
874- export type RemoteConfigParameterValue = ExplicitParameterValue | InAppDefaultValue ;
875- export interface RemoteConfigTemplate {
876- conditions: RemoteConfigCondition [];
877- readonly etag: string ;
878- parameterGroups: {
879- [key : string ]: RemoteConfigParameterGroup ;
880- };
881- parameters: {
882- [key : string ]: RemoteConfigParameter ;
883- };
884- version? : Version ;
885- }
886- export interface RemoteConfigUser {
887- email: string ;
888- imageUrl? : string ;
889- name? : string ;
890- }
891- export type TagColor = ' BLUE' | ' BROWN' | ' CYAN' | ' DEEP_ORANGE' | ' GREEN' | ' INDIGO' | ' LIME' | ' ORANGE' | ' PINK' | ' PURPLE' | ' TEAL' ;
892- export interface Version {
893- description? : string ;
894- isLegacy? : boolean ;
895- rollbackSource? : string ;
896- updateOrigin? : (' REMOTE_CONFIG_UPDATE_ORIGIN_UNSPECIFIED' | ' CONSOLE' | ' REST_API' | ' ADMIN_SDK_NODE' );
897- updateTime? : string ;
898- updateType? : (' REMOTE_CONFIG_UPDATE_TYPE_UNSPECIFIED' | ' INCREMENTAL_UPDATE' | ' FORCED_UPDATE' | ' ROLLBACK' );
899- updateUser? : RemoteConfigUser ;
900- versionNumber? : string ;
901- }
826+ // Warning: (ae-forgotten-export) The symbol "ExplicitParameterValue" needs to be exported by the entry point default-namespace.d.ts
827+ //
828+ // (undocumented)
829+ export type ExplicitParameterValue = ExplicitParameterValue ;
830+ // Warning: (ae-forgotten-export) The symbol "InAppDefaultValue" needs to be exported by the entry point default-namespace.d.ts
831+ //
832+ // (undocumented)
833+ export type InAppDefaultValue = InAppDefaultValue ;
834+ // Warning: (ae-forgotten-export) The symbol "ListVersionsOptions" needs to be exported by the entry point default-namespace.d.ts
835+ //
836+ // (undocumented)
837+ export type ListVersionsOptions = ListVersionsOptions ;
838+ // Warning: (ae-forgotten-export) The symbol "ListVersionsResult" needs to be exported by the entry point default-namespace.d.ts
839+ //
840+ // (undocumented)
841+ export type ListVersionsResult = ListVersionsResult ;
842+ // Warning: (ae-forgotten-export) The symbol "RemoteConfig" needs to be exported by the entry point default-namespace.d.ts
843+ //
844+ // (undocumented)
845+ export type RemoteConfig = RemoteConfig ;
846+ // Warning: (ae-forgotten-export) The symbol "RemoteConfigCondition" needs to be exported by the entry point default-namespace.d.ts
847+ //
848+ // (undocumented)
849+ export type RemoteConfigCondition = RemoteConfigCondition ;
850+ // Warning: (ae-forgotten-export) The symbol "RemoteConfigParameter" needs to be exported by the entry point default-namespace.d.ts
851+ //
852+ // (undocumented)
853+ export type RemoteConfigParameter = RemoteConfigParameter ;
854+ // Warning: (ae-forgotten-export) The symbol "RemoteConfigParameterGroup" needs to be exported by the entry point default-namespace.d.ts
855+ //
856+ // (undocumented)
857+ export type RemoteConfigParameterGroup = RemoteConfigParameterGroup ;
858+ // Warning: (ae-forgotten-export) The symbol "RemoteConfigParameterValue" needs to be exported by the entry point default-namespace.d.ts
859+ //
860+ // (undocumented)
861+ export type RemoteConfigParameterValue = RemoteConfigParameterValue ;
862+ // Warning: (ae-forgotten-export) The symbol "RemoteConfigTemplate" needs to be exported by the entry point default-namespace.d.ts
863+ //
864+ // (undocumented)
865+ export type RemoteConfigTemplate = RemoteConfigTemplate ;
866+ // Warning: (ae-forgotten-export) The symbol "RemoteConfigUser" needs to be exported by the entry point default-namespace.d.ts
867+ //
868+ // (undocumented)
869+ export type RemoteConfigUser = RemoteConfigUser ;
870+ // Warning: (ae-forgotten-export) The symbol "TagColor" needs to be exported by the entry point default-namespace.d.ts
871+ //
872+ // (undocumented)
873+ export type TagColor = TagColor ;
874+ // Warning: (ae-forgotten-export) The symbol "Version" needs to be exported by the entry point default-namespace.d.ts
875+ //
876+ // (undocumented)
877+ export type Version = Version ;
902878}
903879
904880// @public (undocumented)
0 commit comments