@voyantjs/legal-react 0.49.0 → 0.50.1
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/hooks/use-contract-mutation.d.ts +42 -0
- package/dist/hooks/use-contract-mutation.d.ts.map +1 -1
- package/dist/hooks/use-contract.d.ts +7 -0
- package/dist/hooks/use-contract.d.ts.map +1 -1
- package/dist/hooks/use-contracts.d.ts +7 -0
- package/dist/hooks/use-contracts.d.ts.map +1 -1
- package/dist/query-options.d.ts +56 -0
- package/dist/query-options.d.ts.map +1 -1
- package/dist/schemas.d.ts +90 -0
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +2 -1
- package/package.json +5 -5
|
@@ -11,6 +11,13 @@ export declare function useLegalContractMutation(): {
|
|
|
11
11
|
language: string;
|
|
12
12
|
id: string;
|
|
13
13
|
contractNumber: string | null;
|
|
14
|
+
stageHistory: {
|
|
15
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
16
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
17
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
18
|
+
enteredAt: string;
|
|
19
|
+
actorId?: string | null | undefined;
|
|
20
|
+
}[];
|
|
14
21
|
templateVersionId: string | null;
|
|
15
22
|
seriesId: string | null;
|
|
16
23
|
personId: string | null;
|
|
@@ -58,6 +65,13 @@ export declare function useLegalContractMutation(): {
|
|
|
58
65
|
language: string;
|
|
59
66
|
id: string;
|
|
60
67
|
contractNumber: string | null;
|
|
68
|
+
stageHistory: {
|
|
69
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
70
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
71
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
72
|
+
enteredAt: string;
|
|
73
|
+
actorId?: string | null | undefined;
|
|
74
|
+
}[];
|
|
61
75
|
templateVersionId: string | null;
|
|
62
76
|
seriesId: string | null;
|
|
63
77
|
personId: string | null;
|
|
@@ -95,6 +109,13 @@ export declare function useLegalContractMutation(): {
|
|
|
95
109
|
language: string;
|
|
96
110
|
id: string;
|
|
97
111
|
contractNumber: string | null;
|
|
112
|
+
stageHistory: {
|
|
113
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
114
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
115
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
116
|
+
enteredAt: string;
|
|
117
|
+
actorId?: string | null | undefined;
|
|
118
|
+
}[];
|
|
98
119
|
templateVersionId: string | null;
|
|
99
120
|
seriesId: string | null;
|
|
100
121
|
personId: string | null;
|
|
@@ -126,6 +147,13 @@ export declare function useLegalContractMutation(): {
|
|
|
126
147
|
language: string;
|
|
127
148
|
id: string;
|
|
128
149
|
contractNumber: string | null;
|
|
150
|
+
stageHistory: {
|
|
151
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
152
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
153
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
154
|
+
enteredAt: string;
|
|
155
|
+
actorId?: string | null | undefined;
|
|
156
|
+
}[];
|
|
129
157
|
templateVersionId: string | null;
|
|
130
158
|
seriesId: string | null;
|
|
131
159
|
personId: string | null;
|
|
@@ -157,6 +185,13 @@ export declare function useLegalContractMutation(): {
|
|
|
157
185
|
language: string;
|
|
158
186
|
id: string;
|
|
159
187
|
contractNumber: string | null;
|
|
188
|
+
stageHistory: {
|
|
189
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
190
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
191
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
192
|
+
enteredAt: string;
|
|
193
|
+
actorId?: string | null | undefined;
|
|
194
|
+
}[];
|
|
160
195
|
templateVersionId: string | null;
|
|
161
196
|
seriesId: string | null;
|
|
162
197
|
personId: string | null;
|
|
@@ -188,6 +223,13 @@ export declare function useLegalContractMutation(): {
|
|
|
188
223
|
language: string;
|
|
189
224
|
id: string;
|
|
190
225
|
contractNumber: string | null;
|
|
226
|
+
stageHistory: {
|
|
227
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
228
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
229
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
230
|
+
enteredAt: string;
|
|
231
|
+
actorId?: string | null | undefined;
|
|
232
|
+
}[];
|
|
191
233
|
templateVersionId: string | null;
|
|
192
234
|
seriesId: string | null;
|
|
193
235
|
personId: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-contract-mutation.d.ts","sourceRoot":"","sources":["../../src/hooks/use-contract-mutation.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,mCAAmC,EACnC,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,sCAAsC,CAAA;AAC7C,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAW5B,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAC3E,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAC3E,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAA;AAEpG,wBAAgB,wBAAwB
|
|
1
|
+
{"version":3,"file":"use-contract-mutation.d.ts","sourceRoot":"","sources":["../../src/hooks/use-contract-mutation.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,mCAAmC,EACnC,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,sCAAsC,CAAA;AAC7C,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAW5B,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAC3E,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAC3E,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAA;AAEpG,wBAAgB,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAqBI,MAAM;eAAS,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2GzE,MAAM;gBACF,kCAAkC;;;;;;;;;;;;;;;;;;;;YA6BtC,MAAM;gBACF,kCAAkC;;EA8B/C"}
|
|
@@ -8,6 +8,13 @@ export declare function useLegalContract(id: string, options?: UseLegalContractO
|
|
|
8
8
|
language: string;
|
|
9
9
|
id: string;
|
|
10
10
|
contractNumber: string | null;
|
|
11
|
+
stageHistory: {
|
|
12
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
13
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
14
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
15
|
+
enteredAt: string;
|
|
16
|
+
actorId?: string | null | undefined;
|
|
17
|
+
}[];
|
|
11
18
|
templateVersionId: string | null;
|
|
12
19
|
seriesId: string | null;
|
|
13
20
|
personId: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-contract.d.ts","sourceRoot":"","sources":["../../src/hooks/use-contract.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,uBAAuB;IACtC,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B
|
|
1
|
+
{"version":3,"file":"use-contract.d.ts","sourceRoot":"","sources":["../../src/hooks/use-contract.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,uBAAuB;IACtC,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAQjF"}
|
|
@@ -10,6 +10,13 @@ export declare function useLegalContracts(options?: UseLegalContractsOptions): i
|
|
|
10
10
|
language: string;
|
|
11
11
|
id: string;
|
|
12
12
|
contractNumber: string | null;
|
|
13
|
+
stageHistory: {
|
|
14
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
15
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
16
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
17
|
+
enteredAt: string;
|
|
18
|
+
actorId?: string | null | undefined;
|
|
19
|
+
}[];
|
|
13
20
|
templateVersionId: string | null;
|
|
14
21
|
seriesId: string | null;
|
|
15
22
|
personId: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-contracts.d.ts","sourceRoot":"","sources":["../../src/hooks/use-contracts.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAA;AAGjE,MAAM,WAAW,wBAAyB,SAAQ,yBAAyB;IACzE,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,wBAA6B
|
|
1
|
+
{"version":3,"file":"use-contracts.d.ts","sourceRoot":"","sources":["../../src/hooks/use-contracts.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAA;AAGjE,MAAM,WAAW,wBAAyB,SAAQ,yBAAyB;IACzE,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,wBAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAQvE"}
|
package/dist/query-options.d.ts
CHANGED
|
@@ -22,6 +22,13 @@ export declare function getLegalContractsQueryOptions(client: FetchWithValidatio
|
|
|
22
22
|
language: string;
|
|
23
23
|
id: string;
|
|
24
24
|
contractNumber: string | null;
|
|
25
|
+
stageHistory: {
|
|
26
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
27
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
28
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
29
|
+
enteredAt: string;
|
|
30
|
+
actorId?: string | null | undefined;
|
|
31
|
+
}[];
|
|
25
32
|
templateVersionId: string | null;
|
|
26
33
|
seriesId: string | null;
|
|
27
34
|
personId: string | null;
|
|
@@ -57,6 +64,13 @@ export declare function getLegalContractsQueryOptions(client: FetchWithValidatio
|
|
|
57
64
|
language: string;
|
|
58
65
|
id: string;
|
|
59
66
|
contractNumber: string | null;
|
|
67
|
+
stageHistory: {
|
|
68
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
69
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
70
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
71
|
+
enteredAt: string;
|
|
72
|
+
actorId?: string | null | undefined;
|
|
73
|
+
}[];
|
|
60
74
|
templateVersionId: string | null;
|
|
61
75
|
seriesId: string | null;
|
|
62
76
|
personId: string | null;
|
|
@@ -93,6 +107,13 @@ export declare function getLegalContractsQueryOptions(client: FetchWithValidatio
|
|
|
93
107
|
language: string;
|
|
94
108
|
id: string;
|
|
95
109
|
contractNumber: string | null;
|
|
110
|
+
stageHistory: {
|
|
111
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
112
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
113
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
114
|
+
enteredAt: string;
|
|
115
|
+
actorId?: string | null | undefined;
|
|
116
|
+
}[];
|
|
96
117
|
templateVersionId: string | null;
|
|
97
118
|
seriesId: string | null;
|
|
98
119
|
personId: string | null;
|
|
@@ -131,6 +152,13 @@ export declare function getLegalContractsQueryOptions(client: FetchWithValidatio
|
|
|
131
152
|
language: string;
|
|
132
153
|
id: string;
|
|
133
154
|
contractNumber: string | null;
|
|
155
|
+
stageHistory: {
|
|
156
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
157
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
158
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
159
|
+
enteredAt: string;
|
|
160
|
+
actorId?: string | null | undefined;
|
|
161
|
+
}[];
|
|
134
162
|
templateVersionId: string | null;
|
|
135
163
|
seriesId: string | null;
|
|
136
164
|
personId: string | null;
|
|
@@ -169,6 +197,13 @@ export declare function getLegalContractQueryOptions(client: FetchWithValidation
|
|
|
169
197
|
language: string;
|
|
170
198
|
id: string;
|
|
171
199
|
contractNumber: string | null;
|
|
200
|
+
stageHistory: {
|
|
201
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
202
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
203
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
204
|
+
enteredAt: string;
|
|
205
|
+
actorId?: string | null | undefined;
|
|
206
|
+
}[];
|
|
172
207
|
templateVersionId: string | null;
|
|
173
208
|
seriesId: string | null;
|
|
174
209
|
personId: string | null;
|
|
@@ -199,6 +234,13 @@ export declare function getLegalContractQueryOptions(client: FetchWithValidation
|
|
|
199
234
|
language: string;
|
|
200
235
|
id: string;
|
|
201
236
|
contractNumber: string | null;
|
|
237
|
+
stageHistory: {
|
|
238
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
239
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
240
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
241
|
+
enteredAt: string;
|
|
242
|
+
actorId?: string | null | undefined;
|
|
243
|
+
}[];
|
|
202
244
|
templateVersionId: string | null;
|
|
203
245
|
seriesId: string | null;
|
|
204
246
|
personId: string | null;
|
|
@@ -230,6 +272,13 @@ export declare function getLegalContractQueryOptions(client: FetchWithValidation
|
|
|
230
272
|
language: string;
|
|
231
273
|
id: string;
|
|
232
274
|
contractNumber: string | null;
|
|
275
|
+
stageHistory: {
|
|
276
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
277
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
278
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
279
|
+
enteredAt: string;
|
|
280
|
+
actorId?: string | null | undefined;
|
|
281
|
+
}[];
|
|
233
282
|
templateVersionId: string | null;
|
|
234
283
|
seriesId: string | null;
|
|
235
284
|
personId: string | null;
|
|
@@ -263,6 +312,13 @@ export declare function getLegalContractQueryOptions(client: FetchWithValidation
|
|
|
263
312
|
language: string;
|
|
264
313
|
id: string;
|
|
265
314
|
contractNumber: string | null;
|
|
315
|
+
stageHistory: {
|
|
316
|
+
stage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired";
|
|
317
|
+
previousStage: "void" | "draft" | "issued" | "sent" | "signed" | "executed" | "expired" | null;
|
|
318
|
+
transition: "issued" | "sent" | "signed" | "executed" | "created" | "voided";
|
|
319
|
+
enteredAt: string;
|
|
320
|
+
actorId?: string | null | undefined;
|
|
321
|
+
}[];
|
|
266
322
|
templateVersionId: string | null;
|
|
267
323
|
seriesId: string | null;
|
|
268
324
|
personId: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,0BAA0B,EAAuB,MAAM,aAAa,CAAA;AAClF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAA;AACtE,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,qCAAqC,CAAA;AAC7F,OAAO,KAAK,EAAE,iCAAiC,EAAE,MAAM,oCAAoC,CAAA;AAC3F,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,kCAAkC,CAAA;AACvF,OAAO,KAAK,EAAE,uCAAuC,EAAE,MAAM,2CAA2C,CAAA;AACxG,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,mCAAmC,CAAA;AACzF,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAA;AACxE,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,8BAA8B,CAAA;AACvF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAA;AACtE,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAA;AAClE,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,mCAAmC,CAAA;AACzF,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,mCAAmC,CAAA;AACzF,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,6BAA6B,CAAA;AAC7E,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAA;AACnF,OAAO,EAAkB,KAAK,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AA+B3E,wBAAgB,6BAA6B,CAC3C,MAAM,EAAE,0BAA0B,EAClC,OAAO,GAAE,wBAA6B
|
|
1
|
+
{"version":3,"file":"query-options.d.ts","sourceRoot":"","sources":["../src/query-options.ts"],"names":[],"mappings":"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"}
|
package/dist/schemas.d.ts
CHANGED
|
@@ -34,6 +34,36 @@ export declare const legalContractRecordSchema: z.ZodObject<{
|
|
|
34
34
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
35
35
|
id: z.ZodString;
|
|
36
36
|
contractNumber: z.ZodNullable<z.ZodString>;
|
|
37
|
+
stageHistory: z.ZodArray<z.ZodObject<{
|
|
38
|
+
stage: z.ZodEnum<{
|
|
39
|
+
void: "void";
|
|
40
|
+
draft: "draft";
|
|
41
|
+
issued: "issued";
|
|
42
|
+
sent: "sent";
|
|
43
|
+
signed: "signed";
|
|
44
|
+
executed: "executed";
|
|
45
|
+
expired: "expired";
|
|
46
|
+
}>;
|
|
47
|
+
previousStage: z.ZodNullable<z.ZodEnum<{
|
|
48
|
+
void: "void";
|
|
49
|
+
draft: "draft";
|
|
50
|
+
issued: "issued";
|
|
51
|
+
sent: "sent";
|
|
52
|
+
signed: "signed";
|
|
53
|
+
executed: "executed";
|
|
54
|
+
expired: "expired";
|
|
55
|
+
}>>;
|
|
56
|
+
transition: z.ZodEnum<{
|
|
57
|
+
issued: "issued";
|
|
58
|
+
sent: "sent";
|
|
59
|
+
signed: "signed";
|
|
60
|
+
executed: "executed";
|
|
61
|
+
created: "created";
|
|
62
|
+
voided: "voided";
|
|
63
|
+
}>;
|
|
64
|
+
enteredAt: z.ZodString;
|
|
65
|
+
actorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
66
|
+
}, z.core.$strip>>;
|
|
37
67
|
templateVersionId: z.ZodNullable<z.ZodString>;
|
|
38
68
|
seriesId: z.ZodNullable<z.ZodString>;
|
|
39
69
|
personId: z.ZodNullable<z.ZodString>;
|
|
@@ -308,6 +338,36 @@ export declare const legalContractListResponse: z.ZodObject<{
|
|
|
308
338
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
309
339
|
id: z.ZodString;
|
|
310
340
|
contractNumber: z.ZodNullable<z.ZodString>;
|
|
341
|
+
stageHistory: z.ZodArray<z.ZodObject<{
|
|
342
|
+
stage: z.ZodEnum<{
|
|
343
|
+
void: "void";
|
|
344
|
+
draft: "draft";
|
|
345
|
+
issued: "issued";
|
|
346
|
+
sent: "sent";
|
|
347
|
+
signed: "signed";
|
|
348
|
+
executed: "executed";
|
|
349
|
+
expired: "expired";
|
|
350
|
+
}>;
|
|
351
|
+
previousStage: z.ZodNullable<z.ZodEnum<{
|
|
352
|
+
void: "void";
|
|
353
|
+
draft: "draft";
|
|
354
|
+
issued: "issued";
|
|
355
|
+
sent: "sent";
|
|
356
|
+
signed: "signed";
|
|
357
|
+
executed: "executed";
|
|
358
|
+
expired: "expired";
|
|
359
|
+
}>>;
|
|
360
|
+
transition: z.ZodEnum<{
|
|
361
|
+
issued: "issued";
|
|
362
|
+
sent: "sent";
|
|
363
|
+
signed: "signed";
|
|
364
|
+
executed: "executed";
|
|
365
|
+
created: "created";
|
|
366
|
+
voided: "voided";
|
|
367
|
+
}>;
|
|
368
|
+
enteredAt: z.ZodString;
|
|
369
|
+
actorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
370
|
+
}, z.core.$strip>>;
|
|
311
371
|
templateVersionId: z.ZodNullable<z.ZodString>;
|
|
312
372
|
seriesId: z.ZodNullable<z.ZodString>;
|
|
313
373
|
personId: z.ZodNullable<z.ZodString>;
|
|
@@ -362,6 +422,36 @@ export declare const legalContractSingleResponse: z.ZodObject<{
|
|
|
362
422
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
363
423
|
id: z.ZodString;
|
|
364
424
|
contractNumber: z.ZodNullable<z.ZodString>;
|
|
425
|
+
stageHistory: z.ZodArray<z.ZodObject<{
|
|
426
|
+
stage: z.ZodEnum<{
|
|
427
|
+
void: "void";
|
|
428
|
+
draft: "draft";
|
|
429
|
+
issued: "issued";
|
|
430
|
+
sent: "sent";
|
|
431
|
+
signed: "signed";
|
|
432
|
+
executed: "executed";
|
|
433
|
+
expired: "expired";
|
|
434
|
+
}>;
|
|
435
|
+
previousStage: z.ZodNullable<z.ZodEnum<{
|
|
436
|
+
void: "void";
|
|
437
|
+
draft: "draft";
|
|
438
|
+
issued: "issued";
|
|
439
|
+
sent: "sent";
|
|
440
|
+
signed: "signed";
|
|
441
|
+
executed: "executed";
|
|
442
|
+
expired: "expired";
|
|
443
|
+
}>>;
|
|
444
|
+
transition: z.ZodEnum<{
|
|
445
|
+
issued: "issued";
|
|
446
|
+
sent: "sent";
|
|
447
|
+
signed: "signed";
|
|
448
|
+
executed: "executed";
|
|
449
|
+
created: "created";
|
|
450
|
+
voided: "voided";
|
|
451
|
+
}>;
|
|
452
|
+
enteredAt: z.ZodString;
|
|
453
|
+
actorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
454
|
+
}, z.core.$strip>>;
|
|
365
455
|
templateVersionId: z.ZodNullable<z.ZodString>;
|
|
366
456
|
seriesId: z.ZodNullable<z.ZodString>;
|
|
367
457
|
personId: z.ZodNullable<z.ZodString>;
|
package/dist/schemas.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"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"}
|
package/dist/schemas.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { insertContractAttachmentSchema, insertContractNumberSeriesSchema, insertContractSchema, insertContractSignatureSchema, insertContractTemplateSchema, insertContractTemplateVersionSchema, } from "@voyantjs/legal/contracts/validation";
|
|
1
|
+
import { contractStageHistoryEntrySchema, insertContractAttachmentSchema, insertContractNumberSeriesSchema, insertContractSchema, insertContractSignatureSchema, insertContractTemplateSchema, insertContractTemplateVersionSchema, } from "@voyantjs/legal/contracts/validation";
|
|
2
2
|
import { insertPolicyAssignmentSchema, insertPolicyRuleSchema, insertPolicySchema, insertPolicyVersionSchema, policyAcceptanceMethodSchema, policyRefundTypeSchema, policyVersionStatusSchema, } from "@voyantjs/legal/policies/validation";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
export const paginatedEnvelope = (item) => z.object({
|
|
@@ -12,6 +12,7 @@ export const successEnvelope = z.object({ success: z.boolean() });
|
|
|
12
12
|
export const legalContractRecordSchema = insertContractSchema.extend({
|
|
13
13
|
id: z.string(),
|
|
14
14
|
contractNumber: z.string().nullable(),
|
|
15
|
+
stageHistory: z.array(contractStageHistoryEntrySchema),
|
|
15
16
|
templateVersionId: z.string().nullable(),
|
|
16
17
|
seriesId: z.string().nullable(),
|
|
17
18
|
personId: z.string().nullable(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/legal-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"react": "^19.0.0",
|
|
42
42
|
"react-dom": "^19.0.0",
|
|
43
43
|
"zod": "^4.0.0",
|
|
44
|
-
"@voyantjs/legal": "0.
|
|
44
|
+
"@voyantjs/legal": "0.50.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"typescript": "^6.0.2",
|
|
53
53
|
"vitest": "^4.1.2",
|
|
54
54
|
"zod": "^4.3.6",
|
|
55
|
-
"@voyantjs/legal": "0.
|
|
56
|
-
"@voyantjs/react": "0.
|
|
55
|
+
"@voyantjs/legal": "0.50.1",
|
|
56
|
+
"@voyantjs/react": "0.50.1",
|
|
57
57
|
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@voyantjs/react": "0.
|
|
60
|
+
"@voyantjs/react": "0.50.1"
|
|
61
61
|
},
|
|
62
62
|
"files": [
|
|
63
63
|
"dist"
|