Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,9 @@
"firebase-admin/remote-config": {
"typings": "./lib/remote-config/index.d.ts",
"dist": "./lib/remote-config/index.js"
},
"firebase-admin/eventarc": {
"typings": "./lib/eventarc/index.d.ts",
"dist": "./lib/eventarc/index.js"
}
}
51 changes: 51 additions & 0 deletions etc/firebase-admin.eventarc.api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
## API Report File for "firebase-admin.eventarc"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).

```ts

/// <reference types="node" />

import { Agent } from 'http';

// @public
export class Channel {
readonly allowedEventTypes?: string[];
get eventarc(): Eventarc;
get name(): string;
publish(events: CloudEvent | CloudEvent[]): Promise<void>;
}

// @public
export interface ChannelOptions {
allowedEventTypes?: string[] | string | undefined;
}

// @public
export interface CloudEvent {
[key: string]: any;
data?: object | string;
datacontenttype?: string;
id?: string;
source?: string;
specversion?: CloudEventVersion;
subject?: string;
time?: string;
type: string;
}

// @public
export type CloudEventVersion = '1.0';

// @public
export class Eventarc {
// Warning: (ae-forgotten-export) The symbol "App" needs to be exported by the entry point index.d.ts
get app(): App;
channel(name: string, options?: ChannelOptions): Channel;
channel(options?: ChannelOptions): Channel;
}

// @public
export function getEventarc(app?: App): Eventarc;

```
Loading