@skedulo/mex-types 1.23.0 → 1.23.2
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.
|
@@ -170,26 +170,32 @@ export type OnlineModeFilter = DollarExpressionType;
|
|
|
170
170
|
* @version 1.10.0
|
|
171
171
|
*/
|
|
172
172
|
export type OnlineModeFields = string[];
|
|
173
|
+
/**
|
|
174
|
+
* @version 1.23.1
|
|
175
|
+
*/
|
|
173
176
|
export interface BaseOnlineDataQuery {
|
|
174
|
-
type: '
|
|
177
|
+
type: 'standard' | 'custom';
|
|
175
178
|
requestKey: string;
|
|
176
179
|
}
|
|
177
|
-
|
|
178
|
-
|
|
180
|
+
/**
|
|
181
|
+
* @version 1.23.1
|
|
182
|
+
*/
|
|
183
|
+
export interface BaseStandardOnlineDataQuery extends BaseOnlineDataQuery {
|
|
184
|
+
type: 'standard';
|
|
179
185
|
}
|
|
180
186
|
/**
|
|
181
|
-
* @version 1.23.
|
|
187
|
+
* @version 1.23.1
|
|
182
188
|
*/
|
|
183
|
-
export interface
|
|
189
|
+
export interface StandardFetchListOnlineDataQuery extends BaseStandardOnlineDataQuery {
|
|
184
190
|
fields: OnlineModeFields;
|
|
185
191
|
objectName: string;
|
|
186
192
|
filter?: OnlineModeFilter;
|
|
187
193
|
orderBy?: string;
|
|
188
194
|
}
|
|
189
195
|
/**
|
|
190
|
-
* @version 1.23.
|
|
196
|
+
* @version 1.23.1
|
|
191
197
|
*/
|
|
192
|
-
export interface
|
|
198
|
+
export interface StandardFetchOnlineDataQuery extends BaseStandardOnlineDataQuery {
|
|
193
199
|
fields: OnlineModeFields;
|
|
194
200
|
objectName: string;
|
|
195
201
|
filter?: OnlineModeFilter;
|
|
@@ -197,16 +203,16 @@ export interface DefaultFetchOnlineDataQuery extends BaseDefaultOnlineDataQuery
|
|
|
197
203
|
isSingle: boolean;
|
|
198
204
|
}
|
|
199
205
|
/**
|
|
200
|
-
* @version 1.23.
|
|
206
|
+
* @version 1.23.1
|
|
201
207
|
*/
|
|
202
|
-
export interface
|
|
208
|
+
export interface StandardUpsertOnlineDataQuery extends BaseStandardOnlineDataQuery {
|
|
203
209
|
fields: OnlineModeFields;
|
|
204
210
|
objectExpression: string;
|
|
205
211
|
}
|
|
206
212
|
/**
|
|
207
|
-
* @version 1.23.
|
|
213
|
+
* @version 1.23.1
|
|
208
214
|
*/
|
|
209
|
-
export interface
|
|
215
|
+
export interface StandardDeleteOnlineDataQuery extends BaseStandardOnlineDataQuery {
|
|
210
216
|
objectExpression: string;
|
|
211
217
|
relatedObjects: string[];
|
|
212
218
|
}
|
|
@@ -218,22 +224,22 @@ export interface CustomOnlineDataQuery extends BaseOnlineDataQuery {
|
|
|
218
224
|
function: DataExpressionType;
|
|
219
225
|
}
|
|
220
226
|
/**
|
|
221
|
-
* @version 1.23.
|
|
227
|
+
* @version 1.23.1
|
|
222
228
|
*/
|
|
223
|
-
export type
|
|
229
|
+
export type OnlineFetchListDataQuery = StandardFetchListOnlineDataQuery | CustomOnlineDataQuery;
|
|
224
230
|
/**
|
|
225
|
-
* @version 1.23.
|
|
231
|
+
* @version 1.23.1
|
|
226
232
|
*/
|
|
227
|
-
export type
|
|
233
|
+
export type OnlineFetchDataQuery = StandardFetchOnlineDataQuery | CustomOnlineDataQuery;
|
|
228
234
|
/**
|
|
229
|
-
* @version 1.23.
|
|
235
|
+
* @version 1.23.1
|
|
230
236
|
*/
|
|
231
|
-
export type
|
|
237
|
+
export type OnlineUpsertDataQuery = StandardUpsertOnlineDataQuery | CustomOnlineDataQuery;
|
|
232
238
|
/**
|
|
233
|
-
* @version 1.23.
|
|
239
|
+
* @version 1.23.1
|
|
234
240
|
*/
|
|
235
|
-
export type
|
|
241
|
+
export type OnlineDeleteDataQuery = StandardDeleteOnlineDataQuery | CustomOnlineDataQuery;
|
|
236
242
|
/**
|
|
237
|
-
* @version 1.23.
|
|
243
|
+
* @version 1.23.1
|
|
238
244
|
*/
|
|
239
|
-
export type
|
|
245
|
+
export type OnlineDataQuery = BaseStandardOnlineDataQuery | CustomOnlineDataQuery;
|
|
@@ -474,7 +474,7 @@ export interface BaseSelectEditor {
|
|
|
474
474
|
* This property is used to allow users add choices to the picklist, multi picklist
|
|
475
475
|
* @typeAdhoc textarea
|
|
476
476
|
* @label Add drop-down choices
|
|
477
|
-
* @placeholder
|
|
477
|
+
* @placeholder Enter each choice on a new line, no duplicates allowed
|
|
478
478
|
* @required true
|
|
479
479
|
*/
|
|
480
480
|
options?: string;
|