@parra/parra-js-sdk 0.3.273 → 0.3.275
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 +9 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1969,6 +1969,8 @@ export interface SettingsItemStub {
|
|
|
1969
1969
|
created_at: string;
|
|
1970
1970
|
updated_at: string;
|
|
1971
1971
|
deleted_at?: string | null;
|
|
1972
|
+
group_id: string;
|
|
1973
|
+
view_id: string;
|
|
1972
1974
|
title: string;
|
|
1973
1975
|
description?: string | null;
|
|
1974
1976
|
display_title: string;
|
|
@@ -1985,6 +1987,8 @@ export interface SettingsItem {
|
|
|
1985
1987
|
created_at: string;
|
|
1986
1988
|
updated_at: string;
|
|
1987
1989
|
deleted_at?: string | null;
|
|
1990
|
+
group_id: string;
|
|
1991
|
+
view_id: string;
|
|
1988
1992
|
title: string;
|
|
1989
1993
|
description?: string | null;
|
|
1990
1994
|
display_title: string;
|
|
@@ -2095,6 +2099,8 @@ export interface UserSettingsItem {
|
|
|
2095
2099
|
created_at: string;
|
|
2096
2100
|
updated_at: string;
|
|
2097
2101
|
deleted_at?: string | null;
|
|
2102
|
+
group_id: string;
|
|
2103
|
+
view_id: string;
|
|
2098
2104
|
title: string;
|
|
2099
2105
|
description?: string | null;
|
|
2100
2106
|
display_title: string;
|
|
@@ -2143,9 +2149,9 @@ export interface UserSettingsView {
|
|
|
2143
2149
|
}
|
|
2144
2150
|
export interface CreateSettingsGroupRequestBody {
|
|
2145
2151
|
title: string;
|
|
2146
|
-
description?: string;
|
|
2152
|
+
description?: string | null;
|
|
2147
2153
|
display_title: string;
|
|
2148
|
-
display_description?: string;
|
|
2154
|
+
display_description?: string | null;
|
|
2149
2155
|
slug: string;
|
|
2150
2156
|
}
|
|
2151
2157
|
export interface UpdateSettingsGroupRequestBody {
|
|
@@ -2162,7 +2168,7 @@ export interface CreateSettingsItemRequestBody {
|
|
|
2162
2168
|
display_description?: string | null;
|
|
2163
2169
|
slug: string;
|
|
2164
2170
|
active?: boolean;
|
|
2165
|
-
type:
|
|
2171
|
+
type: SettingsItemType;
|
|
2166
2172
|
required: boolean;
|
|
2167
2173
|
nullable: boolean;
|
|
2168
2174
|
data: SettingsItemData;
|