@parra/parra-js-sdk 0.3.256 → 0.3.257
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 +2 -8
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -2059,9 +2059,6 @@ export interface SettingsView {
|
|
|
2059
2059
|
active: boolean;
|
|
2060
2060
|
groups: Array<SettingsGroup>;
|
|
2061
2061
|
}
|
|
2062
|
-
export interface SettingsViewListResponse {
|
|
2063
|
-
data?: Array<SettingsView>;
|
|
2064
|
-
}
|
|
2065
2062
|
export interface SettingsItemIntegerDataWithValue {
|
|
2066
2063
|
default_value?: number | null;
|
|
2067
2064
|
min_value?: number | null;
|
|
@@ -2131,9 +2128,6 @@ export interface UserSettingsView {
|
|
|
2131
2128
|
active: boolean;
|
|
2132
2129
|
groups?: Array<UserSettingsGroup>;
|
|
2133
2130
|
}
|
|
2134
|
-
export interface UserSettingsViewListResponse {
|
|
2135
|
-
data?: Array<UserSettingsView>;
|
|
2136
|
-
}
|
|
2137
2131
|
export interface CreateSettingsGroupRequestBody {
|
|
2138
2132
|
title: string;
|
|
2139
2133
|
description?: string;
|
|
@@ -3640,8 +3634,8 @@ declare class ParraAPI {
|
|
|
3640
3634
|
$filter?: string;
|
|
3641
3635
|
$expand?: string;
|
|
3642
3636
|
$search?: string;
|
|
3643
|
-
}, options?: Options) => Promise<
|
|
3644
|
-
listSettingsViewsForTenantUser: (tenant_id: string, user_id: string, options?: Options) => Promise<
|
|
3637
|
+
}, options?: Options) => Promise<Array<SettingsView>>;
|
|
3638
|
+
listSettingsViewsForTenantUser: (tenant_id: string, user_id: string, options?: Options) => Promise<Array<UserSettingsView>>;
|
|
3645
3639
|
getSettingsViewForTenantUser: (tenant_id: string, user_id: string, settings_view_id: string, options?: Options) => Promise<UserSettingsView>;
|
|
3646
3640
|
createSettingsGroupForSettingsView: (tenant_id: string, settings_view_id: string, body: CreateSettingsGroupRequestBody, options?: Options) => Promise<SettingsGroup>;
|
|
3647
3641
|
updateSettingsGroupForSettingsView: (tenant_id: string, settings_view_id: string, settings_group_id: string, body?: UpdateSettingsGroupRequestBody, options?: Options) => Promise<SettingsGroup>;
|