Skip to content
Closed
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
47 changes: 47 additions & 0 deletions DefaultApi.md

Large diffs are not rendered by default.

317 changes: 316 additions & 1 deletion apis/DefaultApi.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/apis/DefaultApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export declare class DefaultApiRequestFactory extends BaseAPIRequestFactory {
getApps(_options?: Configuration): Promise<RequestContext>;
getNotification(appId: string, notificationId: string, _options?: Configuration): Promise<RequestContext>;
getNotificationHistory(notificationId: string, getNotificationHistoryRequestBody: GetNotificationHistoryRequestBody, _options?: Configuration): Promise<RequestContext>;
getNotifications(appId: string, limit?: number, offset?: number, kind?: 0 | 1 | 3, _options?: Configuration): Promise<RequestContext>;
getNotifications(appId: string, limit?: number, offset?: number, kind?: 0 | 1 | 3, timeOffset?: string, _options?: Configuration): Promise<RequestContext>;
getOutcomes(appId: string, outcomeNames: string, outcomeNames2?: string, outcomeTimeRange?: string, outcomePlatforms?: string, outcomeAttribution?: string, _options?: Configuration): Promise<RequestContext>;
getSegments(appId: string, offset?: number, limit?: number, _options?: Configuration): Promise<RequestContext>;
getUser(appId: string, aliasLabel: string, aliasId: string, _options?: Configuration): Promise<RequestContext>;
Expand Down
181 changes: 180 additions & 1 deletion dist/apis/DefaultApi.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/apis/DefaultApi.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/helpers.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ export interface CreateNotificationWithRetryResult {
wasReplayed: boolean;
}
export declare function createNotificationWithRetry(configuration: Configuration, notification: Notification, options?: CreateNotificationWithRetryOptions): Promise<CreateNotificationWithRetryResult>;
export type MessageSent = CreateNotificationSuccessResponse;
export type MessageNotSent = CreateNotificationSuccessResponse;
export declare function isMessageSent(response: CreateNotificationSuccessResponse): response is MessageSent;
export declare function isMessageNotSent(response: CreateNotificationSuccessResponse): response is MessageNotSent;
10 changes: 9 additions & 1 deletion dist/helpers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/helpers.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/models/NotificationSlice.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export declare class NotificationSlice {
'total_count'?: number;
'offset'?: number;
'limit'?: number;
'time_offset'?: string;
'next_time_offset'?: string;
'notifications'?: Array<NotificationWithMeta>;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
Expand Down
12 changes: 12 additions & 0 deletions dist/models/NotificationSlice.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/models/NotificationSlice.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/types/ObjectParamAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export interface DefaultApiGetNotificationsRequest {
limit?: number;
offset?: number;
kind?: 0 | 1 | 3;
timeOffset?: string;
}
export interface DefaultApiGetOutcomesRequest {
appId: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/types/ObjectParamAPI.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading