@camox/api-contract 0.17.6 → 0.18.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/index.d.ts +24 -20
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3758,32 +3758,34 @@ declare const router: {
|
|
|
3758
3758
|
beforeBlockIds: number[];
|
|
3759
3759
|
afterBlockIds: number[];
|
|
3760
3760
|
} | null;
|
|
3761
|
-
blocks: {
|
|
3762
|
-
content: {
|
|
3763
|
-
[x: string]: unknown;
|
|
3764
|
-
};
|
|
3761
|
+
blocks: ({
|
|
3765
3762
|
id: number;
|
|
3766
3763
|
pageId: number | null;
|
|
3767
3764
|
layoutId: number | null;
|
|
3768
3765
|
type: string;
|
|
3766
|
+
content: unknown;
|
|
3769
3767
|
settings: unknown;
|
|
3770
3768
|
placement: "before" | "after" | null;
|
|
3771
3769
|
summary: string;
|
|
3772
3770
|
position: string;
|
|
3773
3771
|
createdAt: number;
|
|
3774
3772
|
updatedAt: number;
|
|
3775
|
-
}
|
|
3773
|
+
} & {
|
|
3774
|
+
content: {
|
|
3775
|
+
[x: string]: unknown;
|
|
3776
|
+
};
|
|
3777
|
+
})[];
|
|
3776
3778
|
repeatableItems: {
|
|
3777
3779
|
id: number;
|
|
3780
|
+
createdAt: number;
|
|
3781
|
+
updatedAt: number;
|
|
3782
|
+
summary: string;
|
|
3778
3783
|
blockId: number;
|
|
3779
|
-
parentItemId: number | null;
|
|
3780
|
-
fieldName: string;
|
|
3781
3784
|
content: unknown;
|
|
3782
3785
|
settings: unknown;
|
|
3783
|
-
summary: string;
|
|
3784
3786
|
position: string;
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
+
parentItemId: number | null;
|
|
3788
|
+
fieldName: string;
|
|
3787
3789
|
}[];
|
|
3788
3790
|
files: any[];
|
|
3789
3791
|
}, {
|
|
@@ -3809,32 +3811,34 @@ declare const router: {
|
|
|
3809
3811
|
beforeBlockIds: number[];
|
|
3810
3812
|
afterBlockIds: number[];
|
|
3811
3813
|
} | null;
|
|
3812
|
-
blocks: {
|
|
3813
|
-
content: {
|
|
3814
|
-
[x: string]: unknown;
|
|
3815
|
-
};
|
|
3814
|
+
blocks: ({
|
|
3816
3815
|
id: number;
|
|
3817
3816
|
pageId: number | null;
|
|
3818
3817
|
layoutId: number | null;
|
|
3819
3818
|
type: string;
|
|
3819
|
+
content: unknown;
|
|
3820
3820
|
settings: unknown;
|
|
3821
3821
|
placement: "before" | "after" | null;
|
|
3822
3822
|
summary: string;
|
|
3823
3823
|
position: string;
|
|
3824
3824
|
createdAt: number;
|
|
3825
3825
|
updatedAt: number;
|
|
3826
|
-
}
|
|
3826
|
+
} & {
|
|
3827
|
+
content: {
|
|
3828
|
+
[x: string]: unknown;
|
|
3829
|
+
};
|
|
3830
|
+
})[];
|
|
3827
3831
|
repeatableItems: {
|
|
3828
3832
|
id: number;
|
|
3833
|
+
createdAt: number;
|
|
3834
|
+
updatedAt: number;
|
|
3835
|
+
summary: string;
|
|
3829
3836
|
blockId: number;
|
|
3830
|
-
parentItemId: number | null;
|
|
3831
|
-
fieldName: string;
|
|
3832
3837
|
content: unknown;
|
|
3833
3838
|
settings: unknown;
|
|
3834
|
-
summary: string;
|
|
3835
3839
|
position: string;
|
|
3836
|
-
|
|
3837
|
-
|
|
3840
|
+
parentItemId: number | null;
|
|
3841
|
+
fieldName: string;
|
|
3838
3842
|
}[];
|
|
3839
3843
|
files: any[];
|
|
3840
3844
|
}>, Record<never, never>, Record<never, never>>;
|