@criipto/signatures 1.29.2 → 1.30.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.
|
@@ -97,11 +97,13 @@ export type AddSignatoryOutput = {
|
|
|
97
97
|
signatureOrder: SignatureOrder;
|
|
98
98
|
};
|
|
99
99
|
export type AllOfEvidenceProviderInput = {
|
|
100
|
+
/** Order of providers returned is not guaranteed to match input order */
|
|
100
101
|
providers: Array<SingleEvidenceProviderInput>;
|
|
101
102
|
};
|
|
102
103
|
export type AllOfSignatureEvidenceProvider = SignatureEvidenceProvider & {
|
|
103
104
|
__typename?: 'AllOfSignatureEvidenceProvider';
|
|
104
105
|
id: Scalars['ID']['output'];
|
|
106
|
+
/** Order of providers returned is not garantueed */
|
|
105
107
|
providers: Array<SingleSignatureEvidenceProvider>;
|
|
106
108
|
};
|
|
107
109
|
export type AnonymousViewer = Viewer & {
|
|
@@ -163,6 +165,7 @@ export type BatchSignatoryViewer = Viewer & {
|
|
|
163
165
|
authenticated: Scalars['Boolean']['output'];
|
|
164
166
|
batchSignatoryId: Scalars['ID']['output'];
|
|
165
167
|
documents: SignatoryDocumentConnection;
|
|
168
|
+
/** Order of providers returned is not guaranteed */
|
|
166
169
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
167
170
|
id: Scalars['ID']['output'];
|
|
168
171
|
signer: Scalars['Boolean']['output'];
|
|
@@ -285,7 +288,7 @@ export type CreateSignatureOrderInput = {
|
|
|
285
288
|
/** By default signatories will be prompted to sign with a Criipto Verify based e-ID, this setting disables it. */
|
|
286
289
|
disableVerifyEvidenceProvider?: InputMaybe<Scalars['Boolean']['input']>;
|
|
287
290
|
documents: Array<DocumentInput>;
|
|
288
|
-
/** Define evidence providers for signature order if not using built-in Criipto Verify for e-IDs */
|
|
291
|
+
/** Define evidence providers for signature order if not using built-in Criipto Verify for e-IDs. Order of providers returned is not guaranteed to match input order */
|
|
289
292
|
evidenceProviders?: InputMaybe<Array<EvidenceProviderInput>>;
|
|
290
293
|
/** Defines when a signatory must be validated, default is when signing, but can be expanded to also be required when viewing documents. */
|
|
291
294
|
evidenceValidationStages?: InputMaybe<Array<EvidenceValidationStage>>;
|
|
@@ -746,6 +749,7 @@ export type PdfDocumentForm = {
|
|
|
746
749
|
};
|
|
747
750
|
export type PdfSealPosition = {
|
|
748
751
|
page: Scalars['Int']['input'];
|
|
752
|
+
scale?: InputMaybe<Scalars['Float']['input']>;
|
|
749
753
|
x: Scalars['Float']['input'];
|
|
750
754
|
y: Scalars['Float']['input'];
|
|
751
755
|
};
|
|
@@ -867,6 +871,7 @@ export type Signatory = {
|
|
|
867
871
|
documents: SignatoryDocumentConnection;
|
|
868
872
|
/** A download link for signatories to download their signed documents. Signatories must verify their identity before downloading. Can be used when signature order is closed with document retention. */
|
|
869
873
|
downloadHref?: Maybe<Scalars['String']['output']>;
|
|
874
|
+
/** Order of providers returned is not guaranteed */
|
|
870
875
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
871
876
|
/** A link to the signatures frontend, you can send this link to your users to enable them to sign your documents. */
|
|
872
877
|
href: Scalars['String']['output'];
|
|
@@ -961,6 +966,7 @@ export type SignatoryViewer = Viewer & {
|
|
|
961
966
|
authenticated: Scalars['Boolean']['output'];
|
|
962
967
|
documents: SignatoryDocumentConnection;
|
|
963
968
|
download?: Maybe<SignatoryViewerDownload>;
|
|
969
|
+
/** Order of providers returned is not guaranteed */
|
|
964
970
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
965
971
|
id: Scalars['ID']['output'];
|
|
966
972
|
/** @deprecated("Deprecated in favor of 'signingAs'") */
|
|
@@ -1011,6 +1017,7 @@ export type SignatureOrder = {
|
|
|
1011
1017
|
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1012
1018
|
createdAt: Scalars['DateTime']['output'];
|
|
1013
1019
|
documents: Array<Document>;
|
|
1020
|
+
/** Order of providers returned is not guaranteed */
|
|
1014
1021
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
1015
1022
|
expiresAt: Scalars['DateTime']['output'];
|
|
1016
1023
|
id: Scalars['ID']['output'];
|
|
@@ -1133,6 +1140,7 @@ export type UnvalidatedSignatoryViewer = Viewer & {
|
|
|
1133
1140
|
__typename?: 'UnvalidatedSignatoryViewer';
|
|
1134
1141
|
authenticated: Scalars['Boolean']['output'];
|
|
1135
1142
|
download?: Maybe<SignatoryViewerDownload>;
|
|
1143
|
+
/** Order of providers returned is not guaranteed */
|
|
1136
1144
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
1137
1145
|
id: Scalars['ID']['output'];
|
|
1138
1146
|
signatoryId: Scalars['ID']['output'];
|
|
@@ -97,11 +97,13 @@ export type AddSignatoryOutput = {
|
|
|
97
97
|
signatureOrder: SignatureOrder;
|
|
98
98
|
};
|
|
99
99
|
export type AllOfEvidenceProviderInput = {
|
|
100
|
+
/** Order of providers returned is not guaranteed to match input order */
|
|
100
101
|
providers: Array<SingleEvidenceProviderInput>;
|
|
101
102
|
};
|
|
102
103
|
export type AllOfSignatureEvidenceProvider = SignatureEvidenceProvider & {
|
|
103
104
|
__typename?: 'AllOfSignatureEvidenceProvider';
|
|
104
105
|
id: Scalars['ID']['output'];
|
|
106
|
+
/** Order of providers returned is not garantueed */
|
|
105
107
|
providers: Array<SingleSignatureEvidenceProvider>;
|
|
106
108
|
};
|
|
107
109
|
export type AnonymousViewer = Viewer & {
|
|
@@ -163,6 +165,7 @@ export type BatchSignatoryViewer = Viewer & {
|
|
|
163
165
|
authenticated: Scalars['Boolean']['output'];
|
|
164
166
|
batchSignatoryId: Scalars['ID']['output'];
|
|
165
167
|
documents: SignatoryDocumentConnection;
|
|
168
|
+
/** Order of providers returned is not guaranteed */
|
|
166
169
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
167
170
|
id: Scalars['ID']['output'];
|
|
168
171
|
signer: Scalars['Boolean']['output'];
|
|
@@ -285,7 +288,7 @@ export type CreateSignatureOrderInput = {
|
|
|
285
288
|
/** By default signatories will be prompted to sign with a Criipto Verify based e-ID, this setting disables it. */
|
|
286
289
|
disableVerifyEvidenceProvider?: InputMaybe<Scalars['Boolean']['input']>;
|
|
287
290
|
documents: Array<DocumentInput>;
|
|
288
|
-
/** Define evidence providers for signature order if not using built-in Criipto Verify for e-IDs */
|
|
291
|
+
/** Define evidence providers for signature order if not using built-in Criipto Verify for e-IDs. Order of providers returned is not guaranteed to match input order */
|
|
289
292
|
evidenceProviders?: InputMaybe<Array<EvidenceProviderInput>>;
|
|
290
293
|
/** Defines when a signatory must be validated, default is when signing, but can be expanded to also be required when viewing documents. */
|
|
291
294
|
evidenceValidationStages?: InputMaybe<Array<EvidenceValidationStage>>;
|
|
@@ -746,6 +749,7 @@ export type PdfDocumentForm = {
|
|
|
746
749
|
};
|
|
747
750
|
export type PdfSealPosition = {
|
|
748
751
|
page: Scalars['Int']['input'];
|
|
752
|
+
scale?: InputMaybe<Scalars['Float']['input']>;
|
|
749
753
|
x: Scalars['Float']['input'];
|
|
750
754
|
y: Scalars['Float']['input'];
|
|
751
755
|
};
|
|
@@ -867,6 +871,7 @@ export type Signatory = {
|
|
|
867
871
|
documents: SignatoryDocumentConnection;
|
|
868
872
|
/** A download link for signatories to download their signed documents. Signatories must verify their identity before downloading. Can be used when signature order is closed with document retention. */
|
|
869
873
|
downloadHref?: Maybe<Scalars['String']['output']>;
|
|
874
|
+
/** Order of providers returned is not guaranteed */
|
|
870
875
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
871
876
|
/** A link to the signatures frontend, you can send this link to your users to enable them to sign your documents. */
|
|
872
877
|
href: Scalars['String']['output'];
|
|
@@ -961,6 +966,7 @@ export type SignatoryViewer = Viewer & {
|
|
|
961
966
|
authenticated: Scalars['Boolean']['output'];
|
|
962
967
|
documents: SignatoryDocumentConnection;
|
|
963
968
|
download?: Maybe<SignatoryViewerDownload>;
|
|
969
|
+
/** Order of providers returned is not guaranteed */
|
|
964
970
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
965
971
|
id: Scalars['ID']['output'];
|
|
966
972
|
/** @deprecated("Deprecated in favor of 'signingAs'") */
|
|
@@ -1011,6 +1017,7 @@ export type SignatureOrder = {
|
|
|
1011
1017
|
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1012
1018
|
createdAt: Scalars['DateTime']['output'];
|
|
1013
1019
|
documents: Array<Document>;
|
|
1020
|
+
/** Order of providers returned is not guaranteed */
|
|
1014
1021
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
1015
1022
|
expiresAt: Scalars['DateTime']['output'];
|
|
1016
1023
|
id: Scalars['ID']['output'];
|
|
@@ -1133,6 +1140,7 @@ export type UnvalidatedSignatoryViewer = Viewer & {
|
|
|
1133
1140
|
__typename?: 'UnvalidatedSignatoryViewer';
|
|
1134
1141
|
authenticated: Scalars['Boolean']['output'];
|
|
1135
1142
|
download?: Maybe<SignatoryViewerDownload>;
|
|
1143
|
+
/** Order of providers returned is not guaranteed */
|
|
1136
1144
|
evidenceProviders: Array<SignatureEvidenceProvider>;
|
|
1137
1145
|
id: Scalars['ID']['output'];
|
|
1138
1146
|
signatoryId: Scalars['ID']['output'];
|