@parra/parra-js-sdk 0.3.273 → 0.3.274
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/ParraAPI.d.ts +3 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2143,9 +2143,9 @@ export interface UserSettingsView {
|
|
|
2143
2143
|
}
|
|
2144
2144
|
export interface CreateSettingsGroupRequestBody {
|
|
2145
2145
|
title: string;
|
|
2146
|
-
description?: string;
|
|
2146
|
+
description?: string | null;
|
|
2147
2147
|
display_title: string;
|
|
2148
|
-
display_description?: string;
|
|
2148
|
+
display_description?: string | null;
|
|
2149
2149
|
slug: string;
|
|
2150
2150
|
}
|
|
2151
2151
|
export interface UpdateSettingsGroupRequestBody {
|
|
@@ -2162,7 +2162,7 @@ export interface CreateSettingsItemRequestBody {
|
|
|
2162
2162
|
display_description?: string | null;
|
|
2163
2163
|
slug: string;
|
|
2164
2164
|
active?: boolean;
|
|
2165
|
-
type:
|
|
2165
|
+
type: SettingsItemType;
|
|
2166
2166
|
required: boolean;
|
|
2167
2167
|
nullable: boolean;
|
|
2168
2168
|
data: SettingsItemData;
|