@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.
@@ -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: string;
2165
+ type: SettingsItemType;
2166
2166
  required: boolean;
2167
2167
  nullable: boolean;
2168
2168
  data: SettingsItemData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.273",
3
+ "version": "0.3.274",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",