Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented eventarc event publishing API #1617

Merged
merged 21 commits into from
Apr 13, 2022
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.
Jump to
Jump to file
Failed to load files.
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[];
pavelgj marked this conversation as resolved.
Show resolved Hide resolved
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;

```