datocms-plugin-sdk 0.5.0-alpha.0 → 0.5.0-alpha.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/esm/types.d.ts +1 -3
- package/dist/types/types.d.ts +1 -3
- package/package.json +2 -2
- package/src/types.ts +1 -3
- package/types.json +413 -445
package/dist/esm/types.d.ts
CHANGED
|
@@ -1119,11 +1119,9 @@ export declare type RenderSidebarPanelMethods = ItemFormMethods & RenderSidebarP
|
|
|
1119
1119
|
export declare type RenderSidebarPanelPropertiesAndMethods = RenderSidebarPanelMethods & RenderSidebarPanelProperties;
|
|
1120
1120
|
/** Information regarding the specific outlet that you need to render */
|
|
1121
1121
|
export declare type RenderItemFormOutletAdditionalProperties = {
|
|
1122
|
-
mode: '
|
|
1122
|
+
mode: 'renderItemFormOutlet';
|
|
1123
1123
|
/** The ID of the outlet that needs to be rendered */
|
|
1124
1124
|
itemFormOutletId: string;
|
|
1125
|
-
/** The arbitrary `parameters` of the panel declared in the `itemFormOutlets` function */
|
|
1126
|
-
parameters: Record<string, unknown>;
|
|
1127
1125
|
};
|
|
1128
1126
|
export declare type RenderItemFormOutletProperties = ItemFormProperties & RenderItemFormOutletAdditionalProperties;
|
|
1129
1127
|
export declare type RenderItemFormOutletAdditionalMethods = {
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1119,11 +1119,9 @@ export declare type RenderSidebarPanelMethods = ItemFormMethods & RenderSidebarP
|
|
|
1119
1119
|
export declare type RenderSidebarPanelPropertiesAndMethods = RenderSidebarPanelMethods & RenderSidebarPanelProperties;
|
|
1120
1120
|
/** Information regarding the specific outlet that you need to render */
|
|
1121
1121
|
export declare type RenderItemFormOutletAdditionalProperties = {
|
|
1122
|
-
mode: '
|
|
1122
|
+
mode: 'renderItemFormOutlet';
|
|
1123
1123
|
/** The ID of the outlet that needs to be rendered */
|
|
1124
1124
|
itemFormOutletId: string;
|
|
1125
|
-
/** The arbitrary `parameters` of the panel declared in the `itemFormOutlets` function */
|
|
1126
|
-
parameters: Record<string, unknown>;
|
|
1127
1125
|
};
|
|
1128
1126
|
export declare type RenderItemFormOutletProperties = ItemFormProperties & RenderItemFormOutletAdditionalProperties;
|
|
1129
1127
|
export declare type RenderItemFormOutletAdditionalMethods = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "datocms-plugin-sdk",
|
|
3
|
-
"version": "0.5.0-alpha.
|
|
3
|
+
"version": "0.5.0-alpha.1",
|
|
4
4
|
"description": "DatoCMS Plugin SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"datocms",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typedoc": "^0.22.8"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "9bd9b0b3d4aff9d05c155325cd15f5885cd41427"
|
|
47
47
|
}
|
package/src/types.ts
CHANGED
|
@@ -1222,11 +1222,9 @@ export type RenderSidebarPanelPropertiesAndMethods = RenderSidebarPanelMethods &
|
|
|
1222
1222
|
|
|
1223
1223
|
/** Information regarding the specific outlet that you need to render */
|
|
1224
1224
|
export type RenderItemFormOutletAdditionalProperties = {
|
|
1225
|
-
mode: '
|
|
1225
|
+
mode: 'renderItemFormOutlet';
|
|
1226
1226
|
/** The ID of the outlet that needs to be rendered */
|
|
1227
1227
|
itemFormOutletId: string;
|
|
1228
|
-
/** The arbitrary `parameters` of the panel declared in the `itemFormOutlets` function */
|
|
1229
|
-
parameters: Record<string, unknown>;
|
|
1230
1228
|
};
|
|
1231
1229
|
|
|
1232
1230
|
export type RenderItemFormOutletProperties = ItemFormProperties &
|