You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The id of the column. */columnId: string;/** A map of row keys. */
12
10
rowKey: RowKey;
13
11
};
14
12
/**
@@ -18,15 +16,10 @@ type CellKey = {
18
16
* }
19
17
*/
20
18
typeChange={
21
-
/** The value of the cell. */
22
-
cellValue?: string;
23
-
/** Whether the change has been committed. */
24
-
committed?: boolean;
25
-
/** The time when a user starts typing in a cell and the row becomes locked. */
26
-
createdAt?: string;
27
-
/** The id of the user who created the change. */
28
-
createdBy?: string;
29
-
/** The tenant id. */
19
+
/** The value of the cell. */cellValue?: string;/** Whether the change has been committed. */
20
+
committed?: boolean;/** The time when a user starts typing in a cell and the row becomes locked. */
21
+
createdAt?: string;/** The id of the user who created the change. */
22
+
createdBy?: string;/** The tenant id. */
30
23
tenantId?: string;
31
24
/** The time when an update to the change has been done.
32
25
* Examples of when this value is updated:
@@ -36,49 +29,33 @@ type Change = {
36
29
updatedAt?: string;
37
30
};
38
31
typeChangeStore={
39
-
/** The time when the change store was created. */
40
-
createdAt?: string;
41
-
/** The id of the user who created the change store. */
42
-
createdBy?: string;
43
-
/** The list of primary key columns for the change store. */
44
-
primaryKey?: PrimaryKey;
45
-
/** The publish reference id used to map stores across published apps/spaces. */
46
-
publishRefId?: string;
47
-
/** The reference id used to identify related editable-columns or change stores. */
48
-
referenceId?: ReferenceId;
49
-
/** The space id where the change store is located. */
50
-
spaceId?: string;
51
-
/** The id of the change store. */
52
-
storeId?: string;
53
-
/** The name of the change store. */
54
-
storeName?: string;
55
-
/** The tenant id the change store belongs to. */
56
-
tenantId?: string;
57
-
/** The time when the change store was last updated. */
58
-
updatedAt?: string;
59
-
/** List of chart/app references. */
32
+
/** The time when the change store was created. */createdAt?: string;/** The id of the user who created the change store. */
33
+
createdBy?: string;/** The list of primary key columns for the change store. */
34
+
primaryKey?: PrimaryKey;/** The publish reference id used to map stores across published apps/spaces. */
35
+
publishRefId?: string;/** The reference id used to identify related editable-columns or change stores. */
36
+
referenceId?: ReferenceId;/** The space id where the change store is located. */
37
+
spaceId?: string;/** The id of the change store. */
38
+
storeId?: string;/** The name of the change store. */
39
+
storeName?: string;/** The tenant id the change store belongs to. */
40
+
tenantId?: string;/** The time when the change store was last updated. */
41
+
updatedAt?: string;/** List of chart/app references. */
60
42
usedBy?: UsedByArray;
61
43
};
62
44
/**
63
45
* An error object.
64
46
*/
65
47
typeError={
66
-
/** The error code. */
67
-
code: string;
68
-
/** Extra information about the error. */
69
-
detail?: string;
70
-
/** Description of the error. */
48
+
/** The error code. */code: string;/** Extra information about the error. */
49
+
detail?: string;/** Description of the error. */
71
50
title: string;
72
51
};
73
52
typeErrorResponse={
74
-
/** list of errors */
75
-
errors?: Error[];
53
+
/** list of errors */errors?: Error[];
76
54
traceId?: string;
77
55
};
78
56
typeGetChangesData={
79
57
cellKey?: CellKey;
80
-
changes?: Change[];
81
-
/** The name of the column. */
58
+
changes?: Change[];/** The name of the column. */
82
59
columnName?: string;
83
60
};
84
61
typeListDefaultData={
@@ -137,24 +114,20 @@ type RowKey = Record<string, string>;
137
114
*/
138
115
typeTabularView={
139
116
data?: {
140
-
/** The timestamp when the row was last updated. */
141
-
updatedAt?: string;
142
-
/** The user id that performed the latest update in the row (corresponds to updatedAt). */
117
+
/** The timestamp when the row was last updated. */updatedAt?: string;/** The user id that performed the latest update in the row (corresponds to updatedAt). */
143
118
updatedBy?: string;
144
119
}[];
145
120
};
146
121
typeUsedBy={
147
-
/** The id of the app. */
148
-
appId: string;
149
-
/** The id of the chart. */
122
+
/** The id of the app. */appId: string;/** The id of the chart. */
150
123
chartId: string;
151
124
};
152
125
/**
153
126
* List of chart/app references.
154
127
*/
155
128
typeUsedByArray=UsedBy[];
156
129
/**
157
-
* Get a list of change-stores.
130
+
* Returns a list of change-stores, accessible to the user.
158
131
* @example
159
132
* getChangeStores(
160
133
* {
@@ -174,12 +147,9 @@ declare function getChangeStores(query: {
/** When set to true, the records returned by this endpoint will include the latest change (if available) for each editable column in the record. This parameter should be used in combination with a filter on updatedAt for use cases that require all editable columns to be included in each response. */
287
-
expandRow?: boolean;
253
+
/** When set to true, the records returned by this endpoint will include the latest change (if available) for each editable column in the record. This parameter should be used in combination with a filter on updatedAt for use cases that require all editable columns to be included in each response. */expandRow?: boolean;
288
254
/** A SCIM filter expression used to filter the result.
289
255
* The filter parameter allows complex logical expressions using comparison operators and grouping.
0 commit comments