@criipto/signatures 1.19.1 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/graphql-sdk.d.ts +13 -0
- package/package.json +1 -1
package/dist/graphql-sdk.d.ts
CHANGED
|
@@ -553,9 +553,16 @@ export type PadesDocumentInput = {
|
|
|
553
553
|
form?: InputMaybe<PadesDocumentFormInput>;
|
|
554
554
|
/** Will not be displayed to signatories, can be used as a reference to your own system. */
|
|
555
555
|
reference?: InputMaybe<Scalars['String']>;
|
|
556
|
+
sealsPageTemplate?: InputMaybe<PadesDocumentSealsPageTemplateInput>;
|
|
556
557
|
storageMode: DocumentStorageMode;
|
|
557
558
|
title: Scalars['String'];
|
|
558
559
|
};
|
|
560
|
+
export type PadesDocumentSealsPageTemplateInput = {
|
|
561
|
+
/** Using the PDF coordinate system, with (x1, y1) being bottom-left */
|
|
562
|
+
area: PdfBoundingBoxInput;
|
|
563
|
+
/** Must be a PDF containing a SINGLE page */
|
|
564
|
+
blob: Scalars['Blob'];
|
|
565
|
+
};
|
|
559
566
|
/** Information about pagination in a connection. */
|
|
560
567
|
export type PageInfo = {
|
|
561
568
|
__typename?: 'PageInfo';
|
|
@@ -568,6 +575,12 @@ export type PageInfo = {
|
|
|
568
575
|
/** When paginating backwards, the cursor to continue. */
|
|
569
576
|
startCursor?: Maybe<Scalars['String']>;
|
|
570
577
|
};
|
|
578
|
+
export type PdfBoundingBoxInput = {
|
|
579
|
+
x1: Scalars['Float'];
|
|
580
|
+
x2: Scalars['Float'];
|
|
581
|
+
y1: Scalars['Float'];
|
|
582
|
+
y2: Scalars['Float'];
|
|
583
|
+
};
|
|
571
584
|
export type PdfDocument = Document & {
|
|
572
585
|
__typename?: 'PdfDocument';
|
|
573
586
|
blob?: Maybe<Scalars['Blob']>;
|