@createiq/backend 1.0.82 → 1.0.84
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/client/types.gen.ts +9 -4
- package/dist/index.d.cts +9 -4
- package/dist/index.d.ts +9 -4
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/client/types.gen.ts
CHANGED
|
@@ -393,7 +393,6 @@ export type CreateDocumentMetadataDto = {
|
|
|
393
393
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
394
394
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
395
395
|
workflowType: 'offline' | 'w1' | 'w1Ext' | 'w1ExtOffline' | 'w1ExtStage2' | 'w1ExtStage2Offline' | 'w1ExtCombinedStage' | 'w1ExtCombinedStageOffline';
|
|
396
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
397
396
|
mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
|
|
398
397
|
governingLaw: string;
|
|
399
398
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -409,6 +408,8 @@ export type CreateDocumentMetadataDto = {
|
|
|
409
408
|
description?: string;
|
|
410
409
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
411
410
|
disclaimer?: DocumentDisclaimerDto;
|
|
411
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
412
|
+
receiverSigningBanner?: string;
|
|
412
413
|
availability: 'default' | 'new' | 'unavailable';
|
|
413
414
|
year: number;
|
|
414
415
|
prefillReceiverAnswers: boolean;
|
|
@@ -851,7 +852,6 @@ export type DocumentDto = {
|
|
|
851
852
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
852
853
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
853
854
|
hasSchema: boolean;
|
|
854
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
855
855
|
mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
|
|
856
856
|
governingLaw: string;
|
|
857
857
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -871,6 +871,8 @@ export type DocumentDto = {
|
|
|
871
871
|
description?: string;
|
|
872
872
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
873
873
|
disclaimer?: DocumentDisclaimerDto;
|
|
874
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
875
|
+
receiverSigningBanner?: string;
|
|
874
876
|
availability: 'default' | 'new' | 'unavailable';
|
|
875
877
|
year: number;
|
|
876
878
|
prefillReceiverAnswers: boolean;
|
|
@@ -928,6 +930,7 @@ export type ActiveOrPendingUserForNakhodaAdminDto = {
|
|
|
928
930
|
accountName?: string;
|
|
929
931
|
emailsEnabled?: boolean;
|
|
930
932
|
accountId?: string;
|
|
933
|
+
dateExpiresAt?: string;
|
|
931
934
|
lastName: string;
|
|
932
935
|
firstName: string;
|
|
933
936
|
dateAccepted?: string;
|
|
@@ -961,7 +964,6 @@ export type UpdateAccountNameDto = {
|
|
|
961
964
|
export type UpdateDocumentDto = {
|
|
962
965
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
963
966
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
964
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
965
967
|
mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
|
|
966
968
|
governingLaw: string;
|
|
967
969
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -979,6 +981,8 @@ export type UpdateDocumentDto = {
|
|
|
979
981
|
description?: string;
|
|
980
982
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
981
983
|
disclaimer?: DocumentDisclaimerDto;
|
|
984
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
985
|
+
receiverSigningBanner?: string;
|
|
982
986
|
availability: 'default' | 'new' | 'unavailable';
|
|
983
987
|
year: number;
|
|
984
988
|
prefillReceiverAnswers: boolean;
|
|
@@ -2938,7 +2942,6 @@ export type NegotiationUpgradeChangesDto = {
|
|
|
2938
2942
|
export type DocumentWithPackDto = {
|
|
2939
2943
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
2940
2944
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
2941
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
2942
2945
|
mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
|
|
2943
2946
|
governingLaw: string;
|
|
2944
2947
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -2960,6 +2963,8 @@ export type DocumentWithPackDto = {
|
|
|
2960
2963
|
description?: string;
|
|
2961
2964
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
2962
2965
|
disclaimer?: DocumentDisclaimerDto;
|
|
2966
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
2967
|
+
receiverSigningBanner?: string;
|
|
2963
2968
|
availability: 'default' | 'new' | 'unavailable';
|
|
2964
2969
|
year: number;
|
|
2965
2970
|
prefillReceiverAnswers: boolean;
|
package/dist/index.d.cts
CHANGED
|
@@ -345,7 +345,6 @@ type CreateDocumentMetadataDto = {
|
|
|
345
345
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
346
346
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
347
347
|
workflowType: 'offline' | 'w1' | 'w1Ext' | 'w1ExtOffline' | 'w1ExtStage2' | 'w1ExtStage2Offline' | 'w1ExtCombinedStage' | 'w1ExtCombinedStageOffline';
|
|
348
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
349
348
|
mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
|
|
350
349
|
governingLaw: string;
|
|
351
350
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -361,6 +360,8 @@ type CreateDocumentMetadataDto = {
|
|
|
361
360
|
description?: string;
|
|
362
361
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
363
362
|
disclaimer?: DocumentDisclaimerDto;
|
|
363
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
364
|
+
receiverSigningBanner?: string;
|
|
364
365
|
availability: 'default' | 'new' | 'unavailable';
|
|
365
366
|
year: number;
|
|
366
367
|
prefillReceiverAnswers: boolean;
|
|
@@ -745,7 +746,6 @@ type DocumentDto = {
|
|
|
745
746
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
746
747
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
747
748
|
hasSchema: boolean;
|
|
748
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
749
749
|
mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
|
|
750
750
|
governingLaw: string;
|
|
751
751
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -765,6 +765,8 @@ type DocumentDto = {
|
|
|
765
765
|
description?: string;
|
|
766
766
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
767
767
|
disclaimer?: DocumentDisclaimerDto;
|
|
768
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
769
|
+
receiverSigningBanner?: string;
|
|
768
770
|
availability: 'default' | 'new' | 'unavailable';
|
|
769
771
|
year: number;
|
|
770
772
|
prefillReceiverAnswers: boolean;
|
|
@@ -814,6 +816,7 @@ type ActiveOrPendingUserForNakhodaAdminDto = {
|
|
|
814
816
|
accountName?: string;
|
|
815
817
|
emailsEnabled?: boolean;
|
|
816
818
|
accountId?: string;
|
|
819
|
+
dateExpiresAt?: string;
|
|
817
820
|
lastName: string;
|
|
818
821
|
firstName: string;
|
|
819
822
|
dateAccepted?: string;
|
|
@@ -843,7 +846,6 @@ type UpdateAccountNameDto = {
|
|
|
843
846
|
type UpdateDocumentDto = {
|
|
844
847
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
845
848
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
846
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
847
849
|
mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
|
|
848
850
|
governingLaw: string;
|
|
849
851
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -861,6 +863,8 @@ type UpdateDocumentDto = {
|
|
|
861
863
|
description?: string;
|
|
862
864
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
863
865
|
disclaimer?: DocumentDisclaimerDto;
|
|
866
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
867
|
+
receiverSigningBanner?: string;
|
|
864
868
|
availability: 'default' | 'new' | 'unavailable';
|
|
865
869
|
year: number;
|
|
866
870
|
prefillReceiverAnswers: boolean;
|
|
@@ -2538,7 +2542,6 @@ type NegotiationUpgradeChangesDto = {
|
|
|
2538
2542
|
type DocumentWithPackDto = {
|
|
2539
2543
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
2540
2544
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
2541
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
2542
2545
|
mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
|
|
2543
2546
|
governingLaw: string;
|
|
2544
2547
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -2560,6 +2563,8 @@ type DocumentWithPackDto = {
|
|
|
2560
2563
|
description?: string;
|
|
2561
2564
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
2562
2565
|
disclaimer?: DocumentDisclaimerDto;
|
|
2566
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
2567
|
+
receiverSigningBanner?: string;
|
|
2563
2568
|
availability: 'default' | 'new' | 'unavailable';
|
|
2564
2569
|
year: number;
|
|
2565
2570
|
prefillReceiverAnswers: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -345,7 +345,6 @@ type CreateDocumentMetadataDto = {
|
|
|
345
345
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
346
346
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
347
347
|
workflowType: 'offline' | 'w1' | 'w1Ext' | 'w1ExtOffline' | 'w1ExtStage2' | 'w1ExtStage2Offline' | 'w1ExtCombinedStage' | 'w1ExtCombinedStageOffline';
|
|
348
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
349
348
|
mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
|
|
350
349
|
governingLaw: string;
|
|
351
350
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -361,6 +360,8 @@ type CreateDocumentMetadataDto = {
|
|
|
361
360
|
description?: string;
|
|
362
361
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
363
362
|
disclaimer?: DocumentDisclaimerDto;
|
|
363
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
364
|
+
receiverSigningBanner?: string;
|
|
364
365
|
availability: 'default' | 'new' | 'unavailable';
|
|
365
366
|
year: number;
|
|
366
367
|
prefillReceiverAnswers: boolean;
|
|
@@ -745,7 +746,6 @@ type DocumentDto = {
|
|
|
745
746
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
746
747
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
747
748
|
hasSchema: boolean;
|
|
748
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
749
749
|
mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
|
|
750
750
|
governingLaw: string;
|
|
751
751
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -765,6 +765,8 @@ type DocumentDto = {
|
|
|
765
765
|
description?: string;
|
|
766
766
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
767
767
|
disclaimer?: DocumentDisclaimerDto;
|
|
768
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
769
|
+
receiverSigningBanner?: string;
|
|
768
770
|
availability: 'default' | 'new' | 'unavailable';
|
|
769
771
|
year: number;
|
|
770
772
|
prefillReceiverAnswers: boolean;
|
|
@@ -814,6 +816,7 @@ type ActiveOrPendingUserForNakhodaAdminDto = {
|
|
|
814
816
|
accountName?: string;
|
|
815
817
|
emailsEnabled?: boolean;
|
|
816
818
|
accountId?: string;
|
|
819
|
+
dateExpiresAt?: string;
|
|
817
820
|
lastName: string;
|
|
818
821
|
firstName: string;
|
|
819
822
|
dateAccepted?: string;
|
|
@@ -843,7 +846,6 @@ type UpdateAccountNameDto = {
|
|
|
843
846
|
type UpdateDocumentDto = {
|
|
844
847
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
845
848
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
846
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
847
849
|
mustHaveAuxiliaryDocumentBeforeExecuted?: boolean;
|
|
848
850
|
governingLaw: string;
|
|
849
851
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -861,6 +863,8 @@ type UpdateDocumentDto = {
|
|
|
861
863
|
description?: string;
|
|
862
864
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
863
865
|
disclaimer?: DocumentDisclaimerDto;
|
|
866
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
867
|
+
receiverSigningBanner?: string;
|
|
864
868
|
availability: 'default' | 'new' | 'unavailable';
|
|
865
869
|
year: number;
|
|
866
870
|
prefillReceiverAnswers: boolean;
|
|
@@ -2538,7 +2542,6 @@ type NegotiationUpgradeChangesDto = {
|
|
|
2538
2542
|
type DocumentWithPackDto = {
|
|
2539
2543
|
mustHaveSignaturePagesBeforeExecuted: boolean;
|
|
2540
2544
|
initiatorCanUploadCounterpartySignaturePages: boolean;
|
|
2541
|
-
eSignMakeDraftEnvelopes: boolean;
|
|
2542
2545
|
mustHaveAuxiliaryDocumentBeforeExecuted: boolean;
|
|
2543
2546
|
governingLaw: string;
|
|
2544
2547
|
uploadFullDocumentsInsteadOfSignaturePages: boolean;
|
|
@@ -2560,6 +2563,8 @@ type DocumentWithPackDto = {
|
|
|
2560
2563
|
description?: string;
|
|
2561
2564
|
partyThatCanUploadExecutedVersion?: 'initiator' | 'receiver' | 'moderator' | 'any-regular' | 'any';
|
|
2562
2565
|
disclaimer?: DocumentDisclaimerDto;
|
|
2566
|
+
eSignMakeDraftEnvelopes: boolean;
|
|
2567
|
+
receiverSigningBanner?: string;
|
|
2563
2568
|
availability: 'default' | 'new' | 'unavailable';
|
|
2564
2569
|
year: number;
|
|
2565
2570
|
prefillReceiverAnswers: boolean;
|
package/package.json
CHANGED
package/swagger.json.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
04a171b8f70b2c56dba5773ab2cf11240883be3a26d786d01563d950654f9c87
|