Skip to content

Commit

Permalink
chore(merge): merge develop into main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 22, 2024
2 parents 315623a + 788966c commit fc33381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions libs/backend/database/src/types/pushSubscription.type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Field, InputType, ObjectType, OmitType, PartialType } from '@nestjs/graphql';
import { Field, InputType, Int, ObjectType, OmitType, PartialType } from '@nestjs/graphql';

@ObjectType({ description: 'An Exception' })
export class PushSubscriptionKeysType {
Expand All @@ -12,8 +12,9 @@ export class PushSubscriptionKeysType {
export class PushSubscriptionType {
@Field(() => String, { nullable: true })
endpoint?: string;
@Field(() => String, { nullable: true })
expirationTime?: string;

@Field(() => Int, { nullable: true })
expirationTime?: number;

@Field(() => PushSubscriptionKeysType, { nullable: true })
keys?: PushSubscriptionKeys;
Expand Down
2 changes: 1 addition & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,5 @@
"skipTests": true
}
},
"nxCloudAccessToken": "NTM2YmYwOTAtM2NlZC00ZDFmLTkwMDAtNzljM2Y4MDFiMTBmfHJlYWQtd3JpdGU="
"nxCloudAccessToken": "NGRkMmFkZjktYmRjZi00OTFhLWJkMzEtZDcwZjMwM2Q3MzkwfHJlYWQtd3JpdGU="
}

0 comments on commit fc33381

Please sign in to comment.