@epilot/sdk 2.0.0-beta.2 → 2.0.0-beta.3
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/README.md +1 -0
- package/dist/apis/dashboard.cjs +107 -0
- package/dist/apis/dashboard.d.cts +18 -0
- package/dist/apis/dashboard.d.ts +18 -0
- package/dist/apis/dashboard.js +107 -0
- package/dist/dashboard.d-AE3RQ6zo.d.cts +440 -0
- package/dist/dashboard.d-AE3RQ6zo.d.ts +440 -0
- package/dist/index.cjs +5 -0
- package/dist/index.d.cts +70 -68
- package/dist/index.d.ts +70 -68
- package/dist/index.js +5 -0
- package/package.json +6 -1
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
import { OpenAPIClient, Parameters, UnknownParamsObject, AxiosRequestConfig, OperationResponse } from 'openapi-client-axios';
|
|
2
|
+
|
|
3
|
+
/* Auto-copied from dashboard-client */
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
declare namespace Components {
|
|
7
|
+
namespace Schemas {
|
|
8
|
+
/**
|
|
9
|
+
* Adashboard configuration with tiles
|
|
10
|
+
*/
|
|
11
|
+
export interface Dashboard {
|
|
12
|
+
id?: /**
|
|
13
|
+
* Unique identifier for dashboard
|
|
14
|
+
* example:
|
|
15
|
+
* 3fa85f64-5717-4562-b3fc-2c963f66afa6
|
|
16
|
+
*/
|
|
17
|
+
DashboardID /* uuid */;
|
|
18
|
+
/**
|
|
19
|
+
* example:
|
|
20
|
+
* Employee Dashboard
|
|
21
|
+
*/
|
|
22
|
+
title: string;
|
|
23
|
+
/**
|
|
24
|
+
* example:
|
|
25
|
+
* [
|
|
26
|
+
* {
|
|
27
|
+
* "id": "e4af1297-1fd6-440f-9846-f475f580d40f",
|
|
28
|
+
* "coordinates": {},
|
|
29
|
+
* "visualisation": "timechart",
|
|
30
|
+
* "visualisation_config": {
|
|
31
|
+
* "query": {
|
|
32
|
+
* "dataset": "entity_operations",
|
|
33
|
+
* "measure": "count_operations",
|
|
34
|
+
* "filters": [
|
|
35
|
+
* {
|
|
36
|
+
* "operation": [
|
|
37
|
+
* "createEntity"
|
|
38
|
+
* ]
|
|
39
|
+
* },
|
|
40
|
+
* {
|
|
41
|
+
* "entity_schema": [
|
|
42
|
+
* "opportunity"
|
|
43
|
+
* ]
|
|
44
|
+
* }
|
|
45
|
+
* ],
|
|
46
|
+
* "dimensions": [
|
|
47
|
+
* {
|
|
48
|
+
* "time_with_granularity": "month"
|
|
49
|
+
* },
|
|
50
|
+
* {
|
|
51
|
+
* "entity_attribute": "source.title"
|
|
52
|
+
* }
|
|
53
|
+
* ]
|
|
54
|
+
* },
|
|
55
|
+
* "options": {
|
|
56
|
+
* "type": "line"
|
|
57
|
+
* }
|
|
58
|
+
* }
|
|
59
|
+
* }
|
|
60
|
+
* ]
|
|
61
|
+
*/
|
|
62
|
+
tiles: DashboardTile[];
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Unique identifier for dashboard
|
|
66
|
+
* example:
|
|
67
|
+
* 3fa85f64-5717-4562-b3fc-2c963f66afa6
|
|
68
|
+
*/
|
|
69
|
+
export type DashboardID = string; // uuid
|
|
70
|
+
export interface DashboardTile {
|
|
71
|
+
id?: /**
|
|
72
|
+
* Unique identifier for a tile in a dashboard
|
|
73
|
+
* example:
|
|
74
|
+
* e4af1297-1fd6-440f-9846-f475f580d40f
|
|
75
|
+
*/
|
|
76
|
+
DashboardTileID /* uuid */;
|
|
77
|
+
coordinates?: {
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* example:
|
|
82
|
+
* Number of opportunities created by journeys every month
|
|
83
|
+
*/
|
|
84
|
+
title?: string;
|
|
85
|
+
visualisation_id?: /**
|
|
86
|
+
* Unique identifier for a Visualisation
|
|
87
|
+
* example:
|
|
88
|
+
* timechart
|
|
89
|
+
*/
|
|
90
|
+
VisualisationId;
|
|
91
|
+
visualisation_config?: VisualisationConfig;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* Unique identifier for a tile in a dashboard
|
|
95
|
+
* example:
|
|
96
|
+
* e4af1297-1fd6-440f-9846-f475f580d40f
|
|
97
|
+
*/
|
|
98
|
+
export type DashboardTileID = string; // uuid
|
|
99
|
+
export interface DatalakeQuery {
|
|
100
|
+
[name: string]: any;
|
|
101
|
+
/**
|
|
102
|
+
* example:
|
|
103
|
+
* entity_operations
|
|
104
|
+
*/
|
|
105
|
+
dataset?: string;
|
|
106
|
+
/**
|
|
107
|
+
* example:
|
|
108
|
+
* count_operations
|
|
109
|
+
*/
|
|
110
|
+
measure?: string;
|
|
111
|
+
dimensions?: {
|
|
112
|
+
[name: string]: any;
|
|
113
|
+
}[];
|
|
114
|
+
filters?: {
|
|
115
|
+
[name: string]: any;
|
|
116
|
+
}[];
|
|
117
|
+
}
|
|
118
|
+
export interface Example {
|
|
119
|
+
id?: /**
|
|
120
|
+
* Unique identifier for a visualisation examples for tiles in a dashboard
|
|
121
|
+
* example:
|
|
122
|
+
* e4af1297-1fd6-440f-9846-f475f580d40f
|
|
123
|
+
*/
|
|
124
|
+
ExampleID /* uuid */;
|
|
125
|
+
/**
|
|
126
|
+
* example:
|
|
127
|
+
* Number of opportunities created by journeys every month
|
|
128
|
+
*/
|
|
129
|
+
title?: string;
|
|
130
|
+
visualisation?: /**
|
|
131
|
+
* Unique identifier for a Visualisation
|
|
132
|
+
* example:
|
|
133
|
+
* timechart
|
|
134
|
+
*/
|
|
135
|
+
VisualisationId;
|
|
136
|
+
query?: DatalakeQuery;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Unique identifier for a visualisation examples for tiles in a dashboard
|
|
140
|
+
* example:
|
|
141
|
+
* e4af1297-1fd6-440f-9846-f475f580d40f
|
|
142
|
+
*/
|
|
143
|
+
export type ExampleID = string; // uuid
|
|
144
|
+
export interface TimechartVisualisationConfig {
|
|
145
|
+
query?: DatalakeQuery;
|
|
146
|
+
/**
|
|
147
|
+
* example:
|
|
148
|
+
* {
|
|
149
|
+
* "type": "bar"
|
|
150
|
+
* }
|
|
151
|
+
*/
|
|
152
|
+
options?: {
|
|
153
|
+
[name: string]: any;
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* A Visualisation that can be used to configure tiles in dashboards
|
|
158
|
+
*/
|
|
159
|
+
export interface Visualisation {
|
|
160
|
+
visualisation?: /**
|
|
161
|
+
* Unique identifier for a Visualisation
|
|
162
|
+
* example:
|
|
163
|
+
* timechart
|
|
164
|
+
*/
|
|
165
|
+
VisualisationId;
|
|
166
|
+
/**
|
|
167
|
+
* example:
|
|
168
|
+
* Time Series Visualisation
|
|
169
|
+
*/
|
|
170
|
+
title?: string;
|
|
171
|
+
description?: string;
|
|
172
|
+
/**
|
|
173
|
+
* Package name of the Visualisation MFE bundle to import
|
|
174
|
+
* example:
|
|
175
|
+
* @epilot360/highcharts
|
|
176
|
+
*/
|
|
177
|
+
package_name?: string;
|
|
178
|
+
/**
|
|
179
|
+
* URL to Visualisation MFE bundle to import
|
|
180
|
+
* example:
|
|
181
|
+
* https://epilot-dashboard-visualisations.epilot.io/epilot360-datalake-visualisation/bundle.js?version=1650592827
|
|
182
|
+
*/
|
|
183
|
+
import_url?: string; // uri
|
|
184
|
+
}
|
|
185
|
+
export type VisualisationConfig = TimechartVisualisationConfig;
|
|
186
|
+
/**
|
|
187
|
+
* Unique identifier for a Visualisation
|
|
188
|
+
* example:
|
|
189
|
+
* timechart
|
|
190
|
+
*/
|
|
191
|
+
export type VisualisationId = "kpi" | "funnel" | "toplist" | "timechart" | "pie" | "bar" | "entity_list" | "markdown" | "news_feed" | "workflow";
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
declare namespace Paths {
|
|
195
|
+
namespace CreateDashboard {
|
|
196
|
+
export type RequestBody = /* Adashboard configuration with tiles */ Components.Schemas.Dashboard;
|
|
197
|
+
namespace Responses {
|
|
198
|
+
export type $201 = /* Adashboard configuration with tiles */ Components.Schemas.Dashboard;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
namespace DeleteDashboard {
|
|
202
|
+
namespace Responses {
|
|
203
|
+
export type $200 = /* Adashboard configuration with tiles */ Components.Schemas.Dashboard;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
namespace GetDashboard {
|
|
207
|
+
namespace Responses {
|
|
208
|
+
export type $200 = /* Adashboard configuration with tiles */ Components.Schemas.Dashboard;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
namespace ListAvailableExamples {
|
|
212
|
+
namespace Responses {
|
|
213
|
+
export interface $200 {
|
|
214
|
+
results?: Components.Schemas.Example[];
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
namespace ListAvailableVisualisations {
|
|
219
|
+
namespace Responses {
|
|
220
|
+
export interface $200 {
|
|
221
|
+
/**
|
|
222
|
+
* example:
|
|
223
|
+
* [
|
|
224
|
+
* {
|
|
225
|
+
* "visualisation": "timechart",
|
|
226
|
+
* "title": "Time Series Visualisation",
|
|
227
|
+
* "description": "Visualise your metrics with respect to time series",
|
|
228
|
+
* "package_name": "@epilot360/highcharts"
|
|
229
|
+
* },
|
|
230
|
+
* {
|
|
231
|
+
* "visualisation": "kpi",
|
|
232
|
+
* "title": "KPI Visualisation",
|
|
233
|
+
* "description": "Visualise your key performance indicators",
|
|
234
|
+
* "package_name": "@epilot360/kpi"
|
|
235
|
+
* }
|
|
236
|
+
* ]
|
|
237
|
+
*/
|
|
238
|
+
results?: /* A Visualisation that can be used to configure tiles in dashboards */ Components.Schemas.Visualisation[];
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
namespace ListDashboards {
|
|
243
|
+
namespace Responses {
|
|
244
|
+
export interface $200 {
|
|
245
|
+
results?: /* Adashboard configuration with tiles */ Components.Schemas.Dashboard[];
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
namespace PutDashboard {
|
|
250
|
+
export type RequestBody = /* Adashboard configuration with tiles */ Components.Schemas.Dashboard;
|
|
251
|
+
namespace Responses {
|
|
252
|
+
export type $200 = /* Adashboard configuration with tiles */ Components.Schemas.Dashboard;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
namespace V1DashboardDashboards$Id {
|
|
256
|
+
namespace Parameters {
|
|
257
|
+
export type Id = /**
|
|
258
|
+
* Unique identifier for dashboard
|
|
259
|
+
* example:
|
|
260
|
+
* 3fa85f64-5717-4562-b3fc-2c963f66afa6
|
|
261
|
+
*/
|
|
262
|
+
Components.Schemas.DashboardID /* uuid */;
|
|
263
|
+
}
|
|
264
|
+
export interface PathParameters {
|
|
265
|
+
id: Parameters.Id;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
interface OperationMethods {
|
|
272
|
+
/**
|
|
273
|
+
* listDashboards - listDashboards
|
|
274
|
+
*
|
|
275
|
+
* List dashboards available to the user
|
|
276
|
+
*/
|
|
277
|
+
'listDashboards'(
|
|
278
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
279
|
+
data?: any,
|
|
280
|
+
config?: AxiosRequestConfig
|
|
281
|
+
): OperationResponse<Paths.ListDashboards.Responses.$200>
|
|
282
|
+
/**
|
|
283
|
+
* createDashboard - createDashboard
|
|
284
|
+
*
|
|
285
|
+
* Create new dashboard
|
|
286
|
+
*/
|
|
287
|
+
'createDashboard'(
|
|
288
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
289
|
+
data?: Paths.CreateDashboard.RequestBody,
|
|
290
|
+
config?: AxiosRequestConfig
|
|
291
|
+
): OperationResponse<Paths.CreateDashboard.Responses.$201>
|
|
292
|
+
/**
|
|
293
|
+
* getDashboard - getDashboard
|
|
294
|
+
*
|
|
295
|
+
* Get dashboard by ID
|
|
296
|
+
*/
|
|
297
|
+
'getDashboard'(
|
|
298
|
+
parameters?: Parameters<Paths.V1DashboardDashboards$Id.PathParameters> | null,
|
|
299
|
+
data?: any,
|
|
300
|
+
config?: AxiosRequestConfig
|
|
301
|
+
): OperationResponse<Paths.GetDashboard.Responses.$200>
|
|
302
|
+
/**
|
|
303
|
+
* putDashboard - putDashboard
|
|
304
|
+
*
|
|
305
|
+
* Update a dashboard by ID
|
|
306
|
+
*/
|
|
307
|
+
'putDashboard'(
|
|
308
|
+
parameters?: Parameters<Paths.V1DashboardDashboards$Id.PathParameters> | null,
|
|
309
|
+
data?: Paths.PutDashboard.RequestBody,
|
|
310
|
+
config?: AxiosRequestConfig
|
|
311
|
+
): OperationResponse<Paths.PutDashboard.Responses.$200>
|
|
312
|
+
/**
|
|
313
|
+
* deleteDashboard - deleteDashboard
|
|
314
|
+
*
|
|
315
|
+
* Delete a dashboard by ID
|
|
316
|
+
*/
|
|
317
|
+
'deleteDashboard'(
|
|
318
|
+
parameters?: Parameters<Paths.V1DashboardDashboards$Id.PathParameters> | null,
|
|
319
|
+
data?: any,
|
|
320
|
+
config?: AxiosRequestConfig
|
|
321
|
+
): OperationResponse<Paths.DeleteDashboard.Responses.$200>
|
|
322
|
+
/**
|
|
323
|
+
* listAvailableVisualisations - listAvailableVisualisations
|
|
324
|
+
*
|
|
325
|
+
* Returns list of available Visualisations to configure new dashboard tiles
|
|
326
|
+
*/
|
|
327
|
+
'listAvailableVisualisations'(
|
|
328
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
329
|
+
data?: any,
|
|
330
|
+
config?: AxiosRequestConfig
|
|
331
|
+
): OperationResponse<Paths.ListAvailableVisualisations.Responses.$200>
|
|
332
|
+
/**
|
|
333
|
+
* listAvailableExamples - listAvailableExamples
|
|
334
|
+
*
|
|
335
|
+
* Returns list of available exampless for visualisations to configure new dashboard tiles
|
|
336
|
+
*/
|
|
337
|
+
'listAvailableExamples'(
|
|
338
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
339
|
+
data?: any,
|
|
340
|
+
config?: AxiosRequestConfig
|
|
341
|
+
): OperationResponse<Paths.ListAvailableExamples.Responses.$200>
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
interface PathsDictionary {
|
|
345
|
+
['/v1/dashboard/dashboards']: {
|
|
346
|
+
/**
|
|
347
|
+
* listDashboards - listDashboards
|
|
348
|
+
*
|
|
349
|
+
* List dashboards available to the user
|
|
350
|
+
*/
|
|
351
|
+
'get'(
|
|
352
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
353
|
+
data?: any,
|
|
354
|
+
config?: AxiosRequestConfig
|
|
355
|
+
): OperationResponse<Paths.ListDashboards.Responses.$200>
|
|
356
|
+
/**
|
|
357
|
+
* createDashboard - createDashboard
|
|
358
|
+
*
|
|
359
|
+
* Create new dashboard
|
|
360
|
+
*/
|
|
361
|
+
'post'(
|
|
362
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
363
|
+
data?: Paths.CreateDashboard.RequestBody,
|
|
364
|
+
config?: AxiosRequestConfig
|
|
365
|
+
): OperationResponse<Paths.CreateDashboard.Responses.$201>
|
|
366
|
+
}
|
|
367
|
+
['/v1/dashboard/dashboards/{id}']: {
|
|
368
|
+
/**
|
|
369
|
+
* getDashboard - getDashboard
|
|
370
|
+
*
|
|
371
|
+
* Get dashboard by ID
|
|
372
|
+
*/
|
|
373
|
+
'get'(
|
|
374
|
+
parameters?: Parameters<Paths.V1DashboardDashboards$Id.PathParameters> | null,
|
|
375
|
+
data?: any,
|
|
376
|
+
config?: AxiosRequestConfig
|
|
377
|
+
): OperationResponse<Paths.GetDashboard.Responses.$200>
|
|
378
|
+
/**
|
|
379
|
+
* putDashboard - putDashboard
|
|
380
|
+
*
|
|
381
|
+
* Update a dashboard by ID
|
|
382
|
+
*/
|
|
383
|
+
'put'(
|
|
384
|
+
parameters?: Parameters<Paths.V1DashboardDashboards$Id.PathParameters> | null,
|
|
385
|
+
data?: Paths.PutDashboard.RequestBody,
|
|
386
|
+
config?: AxiosRequestConfig
|
|
387
|
+
): OperationResponse<Paths.PutDashboard.Responses.$200>
|
|
388
|
+
/**
|
|
389
|
+
* deleteDashboard - deleteDashboard
|
|
390
|
+
*
|
|
391
|
+
* Delete a dashboard by ID
|
|
392
|
+
*/
|
|
393
|
+
'delete'(
|
|
394
|
+
parameters?: Parameters<Paths.V1DashboardDashboards$Id.PathParameters> | null,
|
|
395
|
+
data?: any,
|
|
396
|
+
config?: AxiosRequestConfig
|
|
397
|
+
): OperationResponse<Paths.DeleteDashboard.Responses.$200>
|
|
398
|
+
}
|
|
399
|
+
['/v1/dashboard/visualisations']: {
|
|
400
|
+
/**
|
|
401
|
+
* listAvailableVisualisations - listAvailableVisualisations
|
|
402
|
+
*
|
|
403
|
+
* Returns list of available Visualisations to configure new dashboard tiles
|
|
404
|
+
*/
|
|
405
|
+
'get'(
|
|
406
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
407
|
+
data?: any,
|
|
408
|
+
config?: AxiosRequestConfig
|
|
409
|
+
): OperationResponse<Paths.ListAvailableVisualisations.Responses.$200>
|
|
410
|
+
}
|
|
411
|
+
['/v1/dashboard/examples']: {
|
|
412
|
+
/**
|
|
413
|
+
* listAvailableExamples - listAvailableExamples
|
|
414
|
+
*
|
|
415
|
+
* Returns list of available exampless for visualisations to configure new dashboard tiles
|
|
416
|
+
*/
|
|
417
|
+
'get'(
|
|
418
|
+
parameters?: Parameters<UnknownParamsObject> | null,
|
|
419
|
+
data?: any,
|
|
420
|
+
config?: AxiosRequestConfig
|
|
421
|
+
): OperationResponse<Paths.ListAvailableExamples.Responses.$200>
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
type Dashboard = Components.Schemas.Dashboard;
|
|
429
|
+
type DashboardID = Components.Schemas.DashboardID;
|
|
430
|
+
type DashboardTile = Components.Schemas.DashboardTile;
|
|
431
|
+
type DashboardTileID = Components.Schemas.DashboardTileID;
|
|
432
|
+
type DatalakeQuery = Components.Schemas.DatalakeQuery;
|
|
433
|
+
type Example = Components.Schemas.Example;
|
|
434
|
+
type ExampleID = Components.Schemas.ExampleID;
|
|
435
|
+
type timechartVisualisationConfig = Components.Schemas.TimechartVisualisationConfig;
|
|
436
|
+
type Visualisation = Components.Schemas.Visualisation;
|
|
437
|
+
type VisualisationConfig = Components.Schemas.VisualisationConfig;
|
|
438
|
+
type VisualisationId = Components.Schemas.VisualisationId;
|
|
439
|
+
|
|
440
|
+
export type { Client as C, Dashboard as D, Example as E, OperationMethods as O, PathsDictionary as P, Visualisation as V, DashboardID as a, DashboardTile as b, DashboardTileID as c, DatalakeQuery as d, ExampleID as e, VisualisationConfig as f, VisualisationId as g, timechartVisualisationConfig as t };
|
package/dist/index.cjs
CHANGED
|
@@ -159,6 +159,11 @@ var registerBuiltinApis = (registry) => {
|
|
|
159
159
|
name: "customerPortal",
|
|
160
160
|
loader: () => loadDef("../definitions/customer-portal.json")
|
|
161
161
|
});
|
|
162
|
+
registerApi({
|
|
163
|
+
registry,
|
|
164
|
+
name: "dashboard",
|
|
165
|
+
loader: () => loadDef("../definitions/dashboard.json")
|
|
166
|
+
});
|
|
162
167
|
registerApi({
|
|
163
168
|
registry,
|
|
164
169
|
name: "dataManagement",
|
package/dist/index.d.cts
CHANGED
|
@@ -12,40 +12,41 @@ import { C as Client$7 } from './billing.d-58fUMBqj.cjs';
|
|
|
12
12
|
import { C as Client$8 } from './blueprint-manifest.d-Bu1GyXFW.cjs';
|
|
13
13
|
import { C as Client$9 } from './consent.d-CQ88IEj0.cjs';
|
|
14
14
|
import { C as Client$a } from './customer-portal.d-EyndRWh6.cjs';
|
|
15
|
-
import { C as Client$b } from './
|
|
16
|
-
import { C as Client$c } from './
|
|
17
|
-
import { C as Client$d } from './
|
|
18
|
-
import { C as Client$e } from './
|
|
19
|
-
import { C as Client$f } from './
|
|
20
|
-
import { C as Client$g } from './email-
|
|
21
|
-
import { C as Client$h } from './
|
|
22
|
-
import { C as Client$i } from './entity
|
|
23
|
-
import { C as Client$j } from './
|
|
24
|
-
import { C as Client$k } from './
|
|
25
|
-
import { C as Client$l } from './
|
|
26
|
-
import { C as Client$m } from './
|
|
27
|
-
import { C as Client$n } from './
|
|
28
|
-
import { C as Client$o } from './
|
|
29
|
-
import { C as Client$p } from './
|
|
30
|
-
import { C as Client$q } from './
|
|
31
|
-
import { C as Client$r } from './
|
|
32
|
-
import { C as Client$s } from './
|
|
33
|
-
import { C as Client$t } from './
|
|
34
|
-
import { C as Client$u } from './
|
|
35
|
-
import { C as Client$v } from './
|
|
36
|
-
import { C as Client$w } from './
|
|
37
|
-
import { C as Client$x } from './
|
|
38
|
-
import { C as Client$y } from './pricing
|
|
39
|
-
import { C as Client$z } from './
|
|
40
|
-
import { C as Client$A } from './
|
|
41
|
-
import { C as Client$B } from './
|
|
42
|
-
import { C as Client$C } from './
|
|
43
|
-
import { C as Client$D } from './
|
|
44
|
-
import { C as Client$E } from './
|
|
45
|
-
import { C as Client$F } from './
|
|
46
|
-
import { C as Client$G } from './
|
|
47
|
-
import { C as Client$H } from './
|
|
48
|
-
import { C as Client$I } from './workflow
|
|
15
|
+
import { C as Client$b } from './dashboard.d-AE3RQ6zo.cjs';
|
|
16
|
+
import { C as Client$c } from './data-management.d-CNExsqJQ.cjs';
|
|
17
|
+
import { C as Client$d } from './deduplication.d-DCeJzdbM.cjs';
|
|
18
|
+
import { C as Client$e } from './design.d-CkwgJ78Z.cjs';
|
|
19
|
+
import { C as Client$f } from './document.d-Y8i32qNV.cjs';
|
|
20
|
+
import { C as Client$g } from './email-settings.d-CPAsRFWN.cjs';
|
|
21
|
+
import { C as Client$h } from './email-template.d-CQqiCN0N.cjs';
|
|
22
|
+
import { C as Client$i } from './entity.d-BtT4mdq4.cjs';
|
|
23
|
+
import { C as Client$j } from './entity-mapping.d-DiqXqJWb.cjs';
|
|
24
|
+
import { C as Client$k } from './environments.d-C1xIs8N2.cjs';
|
|
25
|
+
import { C as Client$l } from './erp-integration.d-CNLzgl4L.cjs';
|
|
26
|
+
import { C as Client$m } from './event-catalog.d-DW1dOyVh.cjs';
|
|
27
|
+
import { C as Client$n } from './file.d-Bpdt2ORN.cjs';
|
|
28
|
+
import { C as Client$o } from './iban.d-3_7FEsbx.cjs';
|
|
29
|
+
import { C as Client$p } from './journey.d-C2lgynUF.cjs';
|
|
30
|
+
import { C as Client$q } from './kanban.d-DYVjUQ_S.cjs';
|
|
31
|
+
import { C as Client$r } from './message.d-TAVDRlDJ.cjs';
|
|
32
|
+
import { C as Client$s } from './metering.d-qyYaAU-O.cjs';
|
|
33
|
+
import { C as Client$t } from './notes.d-CDyIbegf.cjs';
|
|
34
|
+
import { C as Client$u } from './notification.d-B7ccbaPr.cjs';
|
|
35
|
+
import { C as Client$v } from './organization.d-BxZWnh8L.cjs';
|
|
36
|
+
import { C as Client$w } from './partner-directory.d-CzKV3WfP.cjs';
|
|
37
|
+
import { C as Client$x } from './permissions.d-lVoPAfl3.cjs';
|
|
38
|
+
import { C as Client$y } from './pricing.d-Ehb2JuKY.cjs';
|
|
39
|
+
import { C as Client$z } from './pricing-tier.d-BW2cZt1w.cjs';
|
|
40
|
+
import { C as Client$A } from './purpose.d-BVxst611.cjs';
|
|
41
|
+
import { C as Client$B } from './sandbox.d-tRO2movo.cjs';
|
|
42
|
+
import { C as Client$C } from './submission.d-CSll5Km9.cjs';
|
|
43
|
+
import { C as Client$D } from './targeting.d-CDxIsOWy.cjs';
|
|
44
|
+
import { C as Client$E } from './template-variables.d-PwA27Ocv.cjs';
|
|
45
|
+
import { C as Client$F } from './user.d-DJBp6aX5.cjs';
|
|
46
|
+
import { C as Client$G } from './validation-rules.d-CScjNdxD.cjs';
|
|
47
|
+
import { C as Client$H } from './webhooks.d-C_MQSJEB.cjs';
|
|
48
|
+
import { C as Client$I } from './workflow.d-BIWtgMyP.cjs';
|
|
49
|
+
import { C as Client$J } from './workflow-definition.d-CFXrp2Hg.cjs';
|
|
49
50
|
import 'openapi-client-axios';
|
|
50
51
|
|
|
51
52
|
type SDKClientMap = {
|
|
@@ -60,40 +61,41 @@ type SDKClientMap = {
|
|
|
60
61
|
blueprintManifest: Client$8;
|
|
61
62
|
consent: Client$9;
|
|
62
63
|
customerPortal: Client$a;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
64
|
+
dashboard: Client$b;
|
|
65
|
+
dataManagement: Client$c;
|
|
66
|
+
deduplication: Client$d;
|
|
67
|
+
design: Client$e;
|
|
68
|
+
document: Client$f;
|
|
69
|
+
emailSettings: Client$g;
|
|
70
|
+
emailTemplate: Client$h;
|
|
71
|
+
entity: Client$i;
|
|
72
|
+
entityMapping: Client$j;
|
|
73
|
+
environments: Client$k;
|
|
74
|
+
erpIntegration: Client$l;
|
|
75
|
+
eventCatalog: Client$m;
|
|
76
|
+
file: Client$n;
|
|
77
|
+
iban: Client$o;
|
|
78
|
+
journey: Client$p;
|
|
79
|
+
kanban: Client$q;
|
|
80
|
+
message: Client$r;
|
|
81
|
+
metering: Client$s;
|
|
82
|
+
notes: Client$t;
|
|
83
|
+
notification: Client$u;
|
|
84
|
+
organization: Client$v;
|
|
85
|
+
partnerDirectory: Client$w;
|
|
86
|
+
permissions: Client$x;
|
|
87
|
+
pricing: Client$y;
|
|
88
|
+
pricingTier: Client$z;
|
|
89
|
+
purpose: Client$A;
|
|
90
|
+
sandbox: Client$B;
|
|
91
|
+
submission: Client$C;
|
|
92
|
+
targeting: Client$D;
|
|
93
|
+
templateVariables: Client$E;
|
|
94
|
+
user: Client$F;
|
|
95
|
+
validationRules: Client$G;
|
|
96
|
+
webhooks: Client$H;
|
|
97
|
+
workflow: Client$I;
|
|
98
|
+
workflowDefinition: Client$J;
|
|
97
99
|
};
|
|
98
100
|
|
|
99
101
|
type LargeResponseConfig = {
|