-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(signature-collection): New endpoint to update signature page num…
…ber (#16163) * New endpoint to update signature page number * Fix tests after client update --------- Co-authored-by: albinagu <[email protected]> Co-authored-by: kksteini <[email protected]>
- Loading branch information
1 parent
4cb5e52
commit 60a4187
Showing
6 changed files
with
152 additions
and
6 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
libs/api/domains/signature-collection/src/lib/dto/signatureUpdate.input.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { IsNumber } from 'class-validator' | ||
import { Field, InputType } from '@nestjs/graphql' | ||
import { SignatureCollectionSignatureIdInput } from './signatureId.input' | ||
|
||
@InputType() | ||
export class SignatureCollectionSignatureUpdateInput extends SignatureCollectionSignatureIdInput { | ||
@Field() | ||
@IsNumber() | ||
pageNumber!: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters