Skip to content

Commit

Permalink
fix(condo) DOMA-7397 maketypes
Browse files Browse the repository at this point in the history
  • Loading branch information
toplenboren committed Feb 29, 2024
1 parent e6862e8 commit 78ce404
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
13 changes: 13 additions & 0 deletions apps/condo/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -73630,6 +73630,18 @@ type GetNewsItemsRecipientsCountersOutput {
receiversCount: Int!
}

input GetNewsSharingRecipientsInput {
dv: Int!
sender: JSON!
b2bAppContext: B2BAppContextWhereUniqueInput!
}

type GetNewsSharingRecipientsOutput {
id: String!
name: String!
recipients: Int
}

enum AppCategory {
DISPATCHING
GIS
Expand Down Expand Up @@ -77480,6 +77492,7 @@ type Query {
getOverviewDashboard(data: GetOverviewDashboardInput!): GetOverviewDashboardOutput
exportPropertyScopesToExcel(data: ExportPropertyScopeToExcelInput!): ExportPropertyScopeToExcelOutput
getNewsItemsRecipientsCounters(data: GetNewsItemsRecipientsCountersInput!): GetNewsItemsRecipientsCountersOutput
getNewsSharingRecipients(data: GetNewsSharingRecipientsInput!): [GetNewsSharingRecipientsOutput]
allMiniApps(data: AllMiniAppsInput!): [MiniAppOutput!]

"""The version of the Keystone application serving this API."""
Expand Down
19 changes: 19 additions & 0 deletions apps/condo/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22921,6 +22921,19 @@ export type GetNewsItemsRecipientsCountersOutput = {
receiversCount: Scalars['Int'];
};

export type GetNewsSharingRecipientsInput = {
dv: Scalars['Int'];
sender: Scalars['JSON'];
b2bAppContext: B2BAppContextWhereUniqueInput;
};

export type GetNewsSharingRecipientsOutput = {
__typename?: 'GetNewsSharingRecipientsOutput';
id: Scalars['String'];
name: Scalars['String'];
recipients?: Maybe<Scalars['Int']>;
};

export enum GetOverviewDashboardAggregatePeriod {
Day = 'day',
Week = 'week'
Expand Down Expand Up @@ -62876,6 +62889,7 @@ export type Query = {
getOverviewDashboard?: Maybe<GetOverviewDashboardOutput>;
exportPropertyScopesToExcel?: Maybe<ExportPropertyScopeToExcelOutput>;
getNewsItemsRecipientsCounters?: Maybe<GetNewsItemsRecipientsCountersOutput>;
getNewsSharingRecipients?: Maybe<Array<Maybe<GetNewsSharingRecipientsOutput>>>;
allMiniApps?: Maybe<Array<MiniAppOutput>>;
/** The version of the Keystone application serving this API. */
appVersion?: Maybe<Scalars['String']>;
Expand Down Expand Up @@ -69316,6 +69330,11 @@ export type QueryGetNewsItemsRecipientsCountersArgs = {
};


export type QueryGetNewsSharingRecipientsArgs = {
data: GetNewsSharingRecipientsInput;
};


export type QueryAllMiniAppsArgs = {
data: AllMiniAppsInput;
};
Expand Down

0 comments on commit 78ce404

Please sign in to comment.