Skip to content

Commit

Permalink
update controller
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalavedra committed Jan 25, 2024
1 parent a75a307 commit 2a2667f
Show file tree
Hide file tree
Showing 9 changed files with 1,103 additions and 957 deletions.
6 changes: 3 additions & 3 deletions src/apis/notificationSubscriptionsApiWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import {
NotificationSubscriptionDeleteResponse,
NotificationSubscriptionListQueries,
NotificationSubscriptionListResponse,
NotificationSubscriptionsApi,
} from "../generated";
import { httpErrorHandler } from "../utilities/httpErrorHandler";
import { NotificationsApi } from "../generated";
import { GetNotificationSubscriptionRequest } from "../models/getNotificationSubscriptionRequest";

@httpErrorHandler
export class NotificationSubscriptionsApiWrapper extends BaseApiWrapper<NotificationsApi> {
export class NotificationSubscriptionsApiWrapper extends BaseApiWrapper<NotificationSubscriptionsApi> {
constructor(accessToken: string, basePath?: string) {
super(NotificationsApi, accessToken, basePath);
super(NotificationSubscriptionsApi, accessToken, basePath);
}

/**
Expand Down
6 changes: 3 additions & 3 deletions src/apis/notificationTriggersApiWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import {
NotificationTriggerListQueries,
NotificationTriggerListResponse,
NotificationTriggerResponse,
NotificationTriggersApi,
} from "../generated";
import { httpErrorHandler } from "../utilities/httpErrorHandler";
import { NotificationsApi } from "../generated";
import { GetNotificationTriggerRequest } from "../models/getNotificationTriggerRequest";

@httpErrorHandler
export class NotificationTriggersApiWrapper extends BaseApiWrapper<NotificationsApi> {
export class NotificationTriggersApiWrapper extends BaseApiWrapper<NotificationTriggersApi> {
constructor(accessToken: string, basePath?: string) {
super(NotificationsApi, accessToken, basePath);
super(NotificationTriggersApi, accessToken, basePath);
}

/**
Expand Down
349 changes: 349 additions & 0 deletions src/generated/apis/NotificationSubscriptionsApi.ts

Large diffs are not rendered by default.

349 changes: 349 additions & 0 deletions src/generated/apis/NotificationTriggersApi.ts

Large diffs are not rendered by default.

690 changes: 20 additions & 670 deletions src/generated/apis/NotificationsApi.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export * from "./servers";
export { RequiredError } from "./apis/baseapi";

export { PromiseMiddleware as Middleware } from './middleware';
export { PromiseNotificationsApi as NotificationsApi,PromiseAccountsApi as AccountsApi, PromiseAuthenticationApi as AuthenticationApi, PromiseContractsApi as ContractsApi, PromiseGoogleAuthenticationApi as GoogleAuthenticationApi, PromiseInventoriesApi as InventoriesApi, PromiseOAuthApi as OAuthApi, PromisePlayersApi as PlayersApi, PromisePlayersAuthenticationApi as PlayersAuthenticationApi, PromisePoliciesApi as PoliciesApi, PromisePolicyRulesApi as PolicyRulesApi, PromiseSessionsApi as SessionsApi, PromiseSettingsApi as SettingsApi, PromiseTransactionIntentsApi as TransactionIntentsApi, PromiseWeb3ConnectionsApi as Web3ConnectionsApi } from './types/PromiseAPI';
export { PromiseNotificationTriggersApi as NotificationTriggersApi, PromiseNotificationSubscriptionsApi as NotificationSubscriptionsApi, PromiseNotificationsApi as NotificationsApi, PromiseAccountsApi as AccountsApi, PromiseAuthenticationApi as AuthenticationApi, PromiseContractsApi as ContractsApi, PromiseGoogleAuthenticationApi as GoogleAuthenticationApi, PromiseInventoriesApi as InventoriesApi, PromiseOAuthApi as OAuthApi, PromisePlayersApi as PlayersApi, PromisePlayersAuthenticationApi as PlayersAuthenticationApi, PromisePoliciesApi as PoliciesApi, PromisePolicyRulesApi as PolicyRulesApi, PromiseSessionsApi as SessionsApi, PromiseSettingsApi as SettingsApi, PromiseTransactionIntentsApi as TransactionIntentsApi, PromiseWeb3ConnectionsApi as Web3ConnectionsApi } from './types/PromiseAPI';

Loading

0 comments on commit 2a2667f

Please sign in to comment.