@socotra/ec-react-schemas 2.15.0-next.6 → 2.15.0-next.7
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/index.d.ts +2 -0
- package/dist/index.es.js +6 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1011,6 +1011,8 @@ export declare const ActivityHistoryInitialResponseSchema: z.ZodObject<{
|
|
|
1011
1011
|
|
|
1012
1012
|
export declare type ActivityHistoryListResponse = z.infer<typeof ActivityHistoryListResponseSchema>;
|
|
1013
1013
|
|
|
1014
|
+
export declare type ActivityHistoryListResponseBff = z.infer<typeof ActivityHistoryListResponseBffSchema>;
|
|
1015
|
+
|
|
1014
1016
|
export declare const ActivityHistoryListResponseBffSchema: z.ZodObject<{
|
|
1015
1017
|
listCompleted: z.ZodBoolean;
|
|
1016
1018
|
items: z.ZodArray<z.ZodObject<{
|
package/dist/index.es.js
CHANGED
|
@@ -7173,10 +7173,12 @@ const sl = fn.merge(
|
|
|
7173
7173
|
installmentWeights: e.array(e.number()).optional(),
|
|
7174
7174
|
maxInstallmentsPerTerm: e.number().optional()
|
|
7175
7175
|
})
|
|
7176
|
-
), Sl = e.record(vl), jl = $a.merge(
|
|
7177
|
-
|
|
7178
|
-
|
|
7179
|
-
|
|
7176
|
+
), Sl = e.record(vl), jl = $a.merge(
|
|
7177
|
+
e.object({
|
|
7178
|
+
activities: e.record(e.record(dl)),
|
|
7179
|
+
assignmentRoles: e.record(gl)
|
|
7180
|
+
})
|
|
7181
|
+
), Tl = e.object({
|
|
7180
7182
|
generateAutoRenewals: e.boolean(),
|
|
7181
7183
|
newTermDuration: e.number().optional(),
|
|
7182
7184
|
renewalAcceptLeadDays: e.number().optional(),
|