@algolia/ingestion 1.0.0-beta.3 → 1.0.0-beta.5

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.
Files changed (98) hide show
  1. package/dist/builds/browser.d.ts +41 -33
  2. package/dist/builds/browser.d.ts.map +1 -1
  3. package/dist/builds/node.d.ts +41 -33
  4. package/dist/builds/node.d.ts.map +1 -1
  5. package/dist/ingestion.cjs +271 -32
  6. package/dist/ingestion.esm.browser.js +272 -34
  7. package/dist/ingestion.esm.node.js +271 -32
  8. package/dist/ingestion.umd.js +2 -2
  9. package/dist/model/authentication.d.ts +2 -2
  10. package/dist/model/authenticationCreateResponse.d.ts +1 -1
  11. package/dist/model/authenticationUpdateResponse.d.ts +1 -1
  12. package/dist/model/clientMethodProps.d.ts +57 -13
  13. package/dist/model/clientMethodProps.d.ts.map +1 -1
  14. package/dist/model/deleteResponse.d.ts +1 -1
  15. package/dist/model/destination.d.ts +2 -2
  16. package/dist/model/destinationCreateResponse.d.ts +1 -1
  17. package/dist/model/destinationUpdateResponse.d.ts +1 -1
  18. package/dist/model/event.d.ts +1 -1
  19. package/dist/model/index.d.ts +11 -2
  20. package/dist/model/index.d.ts.map +1 -1
  21. package/dist/model/listTransformationsResponse.d.ts +10 -0
  22. package/dist/model/listTransformationsResponse.d.ts.map +1 -0
  23. package/dist/model/onDemandDateUtilsInput.d.ts +2 -2
  24. package/dist/model/onDemandTrigger.d.ts +1 -1
  25. package/dist/model/run.d.ts +3 -3
  26. package/dist/model/runResponse.d.ts +1 -1
  27. package/dist/model/scheduleTrigger.d.ts +2 -2
  28. package/dist/model/sortKeys.d.ts +5 -0
  29. package/dist/model/sortKeys.d.ts.map +1 -0
  30. package/dist/model/source.d.ts +2 -2
  31. package/dist/model/sourceCreateResponse.d.ts +1 -1
  32. package/dist/model/sourceUpdateResponse.d.ts +1 -1
  33. package/dist/model/sourceWatchResponse.d.ts +20 -0
  34. package/dist/model/sourceWatchResponse.d.ts.map +1 -0
  35. package/dist/model/task.d.ts +6 -2
  36. package/dist/model/task.d.ts.map +1 -1
  37. package/dist/model/taskCreate.d.ts +4 -0
  38. package/dist/model/taskCreate.d.ts.map +1 -1
  39. package/dist/model/taskCreateResponse.d.ts +1 -1
  40. package/dist/model/taskUpdateResponse.d.ts +1 -1
  41. package/dist/model/transformation.d.ts +27 -0
  42. package/dist/model/transformation.d.ts.map +1 -0
  43. package/dist/model/transformationCreate.d.ts +18 -0
  44. package/dist/model/transformationCreate.d.ts.map +1 -0
  45. package/dist/model/transformationCreateResponse.d.ts +14 -0
  46. package/dist/model/transformationCreateResponse.d.ts.map +1 -0
  47. package/dist/model/transformationSearch.d.ts +4 -0
  48. package/dist/model/transformationSearch.d.ts.map +1 -0
  49. package/dist/model/transformationTry.d.ts +11 -0
  50. package/dist/model/transformationTry.d.ts.map +1 -0
  51. package/dist/model/transformationTryResponse.d.ts +9 -0
  52. package/dist/model/transformationTryResponse.d.ts.map +1 -0
  53. package/dist/model/transformationTryResponseError.d.ts +14 -0
  54. package/dist/model/transformationTryResponseError.d.ts.map +1 -0
  55. package/dist/model/transformationUpdateResponse.d.ts +14 -0
  56. package/dist/model/transformationUpdateResponse.d.ts.map +1 -0
  57. package/dist/model/window.d.ts +2 -2
  58. package/dist/src/ingestionClient.d.ts +117 -22
  59. package/dist/src/ingestionClient.d.ts.map +1 -1
  60. package/model/authentication.ts +2 -2
  61. package/model/authenticationCreateResponse.ts +1 -1
  62. package/model/authenticationUpdateResponse.ts +1 -1
  63. package/model/clientMethodProps.ts +62 -14
  64. package/model/deleteResponse.ts +1 -1
  65. package/model/destination.ts +2 -2
  66. package/model/destinationCreateResponse.ts +1 -1
  67. package/model/destinationUpdateResponse.ts +1 -1
  68. package/model/event.ts +1 -1
  69. package/model/index.ts +11 -2
  70. package/model/listTransformationsResponse.ts +13 -0
  71. package/model/onDemandDateUtilsInput.ts +2 -2
  72. package/model/onDemandTrigger.ts +1 -1
  73. package/model/run.ts +3 -3
  74. package/model/runResponse.ts +1 -1
  75. package/model/scheduleTrigger.ts +2 -2
  76. package/model/sortKeys.ts +6 -0
  77. package/model/source.ts +2 -2
  78. package/model/sourceCreateResponse.ts +1 -1
  79. package/model/sourceUpdateResponse.ts +1 -1
  80. package/model/sourceWatchResponse.ts +25 -0
  81. package/model/task.ts +7 -2
  82. package/model/taskCreate.ts +5 -0
  83. package/model/taskCreateResponse.ts +1 -1
  84. package/model/taskUpdateResponse.ts +1 -1
  85. package/model/transformation.ts +33 -0
  86. package/model/transformationCreate.ts +21 -0
  87. package/model/transformationCreateResponse.ts +16 -0
  88. package/model/{dockerSourceStreams.ts → transformationSearch.ts} +2 -2
  89. package/model/{dockerSourceDiscover.ts → transformationTry.ts} +5 -5
  90. package/model/transformationTryResponse.ts +12 -0
  91. package/model/transformationTryResponseError.ts +16 -0
  92. package/model/transformationUpdateResponse.ts +16 -0
  93. package/model/window.ts +2 -2
  94. package/package.json +10 -7
  95. package/dist/model/dockerSourceDiscover.d.ts +0 -11
  96. package/dist/model/dockerSourceDiscover.d.ts.map +0 -1
  97. package/dist/model/dockerSourceStreams.d.ts +0 -4
  98. package/dist/model/dockerSourceStreams.d.ts.map +0 -1
@@ -12,11 +12,13 @@ import type { OrderKeys } from './orderKeys';
12
12
  import type { PlatformWithNone } from './platformWithNone';
13
13
  import type { RunSortKeys } from './runSortKeys';
14
14
  import type { RunStatus } from './runStatus';
15
+ import type { SortKeys } from './sortKeys';
15
16
  import type { SourceSortKeys } from './sourceSortKeys';
16
17
  import type { SourceType } from './sourceType';
17
18
  import type { SourceUpdate } from './sourceUpdate';
18
19
  import type { TaskSortKeys } from './taskSortKeys';
19
20
  import type { TaskUpdate } from './taskUpdate';
21
+ import type { TransformationCreate } from './transformationCreate';
20
22
  import type { TriggerType } from './triggerType';
21
23
  /**
22
24
  * Properties for the `customDelete` method.
@@ -114,6 +116,15 @@ export type DeleteTaskProps = {
114
116
  */
115
117
  taskID: string;
116
118
  };
119
+ /**
120
+ * Properties for the `deleteTransformation` method.
121
+ */
122
+ export type DeleteTransformationProps = {
123
+ /**
124
+ * Unique identifier of a transformation.
125
+ */
126
+ transformationID: string;
127
+ };
117
128
  /**
118
129
  * Properties for the `disableTask` method.
119
130
  */
@@ -208,15 +219,6 @@ export type GetDestinationsProps = {
208
219
  */
209
220
  order?: OrderKeys;
210
221
  };
211
- /**
212
- * Properties for the `getDockerSourceStreams` method.
213
- */
214
- export type GetDockerSourceStreamsProps = {
215
- /**
216
- * Unique identifier of a source.
217
- */
218
- sourceID: string;
219
- };
220
222
  /**
221
223
  * Properties for the `getEvent` method.
222
224
  */
@@ -263,11 +265,11 @@ export type GetEventsProps = {
263
265
  */
264
266
  order?: OrderKeys;
265
267
  /**
266
- * Date and time in RFC3339 format for the earliest events to retrieve. By default, the current time minus three hours is used.
268
+ * Date and time in RFC 3339 format for the earliest events to retrieve. By default, the current time minus three hours is used.
267
269
  */
268
270
  startDate?: string;
269
271
  /**
270
- * Date and time in RFC3339 format for the latest events to retrieve. By default, the current time is used.
272
+ * Date and time in RFC 3339 format for the latest events to retrieve. By default, the current time is used.
271
273
  */
272
274
  endDate?: string;
273
275
  };
@@ -309,11 +311,11 @@ export type GetRunsProps = {
309
311
  */
310
312
  order?: OrderKeys;
311
313
  /**
312
- * Date in RFC3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
314
+ * Date in RFC 3339 format for the earliest run to retrieve. By default, the current day minus seven days is used.
313
315
  */
314
316
  startDate?: string;
315
317
  /**
316
- * Date in RFC3339 format for the latest run to retrieve. By default, the current day is used.
318
+ * Date in RFC 3339 format for the latest run to retrieve. By default, the current day is used.
317
319
  */
318
320
  endDate?: string;
319
321
  };
@@ -405,6 +407,28 @@ export type GetTasksProps = {
405
407
  */
406
408
  order?: OrderKeys;
407
409
  };
410
+ /**
411
+ * Properties for the `getTransformation` method.
412
+ */
413
+ export type GetTransformationProps = {
414
+ /**
415
+ * Unique identifier of a transformation.
416
+ */
417
+ transformationID: string;
418
+ };
419
+ /**
420
+ * Properties for the `getTransformations` method.
421
+ */
422
+ export type GetTransformationsProps = {
423
+ /**
424
+ * Property by which to sort the list.
425
+ */
426
+ sort?: SortKeys;
427
+ /**
428
+ * Sort order of the response, ascending or descending.
429
+ */
430
+ order?: OrderKeys;
431
+ };
408
432
  /**
409
433
  * Properties for the `runTask` method.
410
434
  */
@@ -463,4 +487,24 @@ export type UpdateTaskProps = {
463
487
  taskID: string;
464
488
  taskUpdate: TaskUpdate;
465
489
  };
490
+ /**
491
+ * Properties for the `updateTransformation` method.
492
+ */
493
+ export type UpdateTransformationProps = {
494
+ /**
495
+ * Unique identifier of a transformation.
496
+ */
497
+ transformationID: string;
498
+ transformationCreate: TransformationCreate;
499
+ };
500
+ /**
501
+ * Properties for the `validateSourceBeforeUpdate` method.
502
+ */
503
+ export type ValidateSourceBeforeUpdateProps = {
504
+ /**
505
+ * Unique identifier of a source.
506
+ */
507
+ sourceID: string;
508
+ sourceUpdate: SourceUpdate;
509
+ };
466
510
  //# sourceMappingURL=clientMethodProps.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"clientMethodProps.d.ts","sourceRoot":"","sources":["../../model/clientMethodProps.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,kBAAkB,EAAE,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC9B;;OAEG;IACH,IAAI,CAAC,EAAE,sBAAsB,CAAC;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,eAAe,EAAE,CAAC;IACzB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B;;OAEG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAC;IAC3B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;IACvB;;OAEG;IACH,IAAI,CAAC,EAAE,SAAS,EAAE,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,UAAU,EAAE,CAAC;IACpB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B;;OAEG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,EAAE,CAAC;IAC5B;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gCAAgC,GAAG;IAC7C;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,EAAE,iBAAiB,CAAC;CACtC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,YAAY,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,UAAU,CAAC;CACxB,CAAC"}
1
+ {"version":3,"file":"clientMethodProps.d.ts","sourceRoot":"","sources":["../../model/clientMethodProps.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEjD;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,kBAAkB,EAAE,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC9B;;OAEG;IACH,IAAI,CAAC,EAAE,sBAAsB,CAAC;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAChC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,eAAe,EAAE,CAAC;IACzB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B;;OAEG;IACH,IAAI,CAAC,EAAE,mBAAmB,CAAC;IAC3B;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;IACvB;;OAEG;IACH,IAAI,CAAC,EAAE,SAAS,EAAE,CAAC;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,CAAC,EAAE,UAAU,EAAE,CAAC;IACpB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B;;OAEG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,EAAE,CAAC;IAC5B;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gCAAgC,GAAG;IAC7C;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,EAAE,iBAAiB,CAAC;CACtC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,YAAY,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,UAAU,CAAC;CACxB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,+BAA+B,GAAG;IAC5C;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,YAAY,CAAC;CAC5B,CAAC"}
@@ -1,6 +1,6 @@
1
1
  export type DeleteResponse = {
2
2
  /**
3
- * Date of deletion in RFC3339 format.
3
+ * Date of deletion in RFC 3339 format.
4
4
  */
5
5
  deletedAt: string;
6
6
  };
@@ -15,11 +15,11 @@ export type Destination = {
15
15
  name: string;
16
16
  input: DestinationInput;
17
17
  /**
18
- * Date of creation in RFC3339 format.
18
+ * Date of creation in RFC 3339 format.
19
19
  */
20
20
  createdAt: string;
21
21
  /**
22
- * Date of last update in RFC3339 format.
22
+ * Date of last update in RFC 3339 format.
23
23
  */
24
24
  updatedAt?: string;
25
25
  /**
@@ -11,7 +11,7 @@ export type DestinationCreateResponse = {
11
11
  */
12
12
  name: string;
13
13
  /**
14
- * Date of creation in RFC3339 format.
14
+ * Date of creation in RFC 3339 format.
15
15
  */
16
16
  createdAt: string;
17
17
  };
@@ -11,7 +11,7 @@ export type DestinationUpdateResponse = {
11
11
  */
12
12
  name: string;
13
13
  /**
14
- * Date of last update in RFC3339 format.
14
+ * Date of last update in RFC 3339 format.
15
15
  */
16
16
  updatedAt: string;
17
17
  };
@@ -24,7 +24,7 @@ export type Event = {
24
24
  batchSize: number;
25
25
  data?: Record<string, any>;
26
26
  /**
27
- * Date of publish RFC3339 format.
27
+ * Date of publish RFC 3339 format.
28
28
  */
29
29
  publishedAt: string;
30
30
  };
@@ -39,8 +39,6 @@ export * from './destinationUpdate';
39
39
  export * from './destinationUpdateResponse';
40
40
  export * from './dockerImageType';
41
41
  export * from './dockerRegistry';
42
- export * from './dockerSourceDiscover';
43
- export * from './dockerSourceStreams';
44
42
  export * from './errorBase';
45
43
  export * from './event';
46
44
  export * from './eventSortKeys';
@@ -51,6 +49,7 @@ export * from './listDestinationsResponse';
51
49
  export * from './listEventsResponse';
52
50
  export * from './listSourcesResponse';
53
51
  export * from './listTasksResponse';
52
+ export * from './listTransformationsResponse';
54
53
  export * from './mappingFieldDirective';
55
54
  export * from './mappingFormatSchema';
56
55
  export * from './mappingInput';
@@ -83,6 +82,7 @@ export * from './scheduleTriggerType';
83
82
  export * from './shopifyInput';
84
83
  export * from './shopifyMarket';
85
84
  export * from './shopifyMetafield';
85
+ export * from './sortKeys';
86
86
  export * from './source';
87
87
  export * from './sourceBigCommerce';
88
88
  export * from './sourceBigQuery';
@@ -105,6 +105,7 @@ export * from './sourceUpdateDocker';
105
105
  export * from './sourceUpdateInput';
106
106
  export * from './sourceUpdateResponse';
107
107
  export * from './sourceUpdateShopify';
108
+ export * from './sourceWatchResponse';
108
109
  export * from './streamingTrigger';
109
110
  export * from './streamingTriggerType';
110
111
  export * from './streamingUtilsInput';
@@ -119,6 +120,14 @@ export * from './taskSearch';
119
120
  export * from './taskSortKeys';
120
121
  export * from './taskUpdate';
121
122
  export * from './taskUpdateResponse';
123
+ export * from './transformation';
124
+ export * from './transformationCreate';
125
+ export * from './transformationCreateResponse';
126
+ export * from './transformationSearch';
127
+ export * from './transformationTry';
128
+ export * from './transformationTryResponse';
129
+ export * from './transformationTryResponseError';
130
+ export * from './transformationUpdateResponse';
122
131
  export * from './trigger';
123
132
  export * from './triggerType';
124
133
  export * from './triggerUpdateInput';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../model/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../model/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ import type { Pagination } from './pagination';
2
+ import type { Transformation } from './transformation';
3
+ /**
4
+ * Configured transformations and pagination information.
5
+ */
6
+ export type ListTransformationsResponse = {
7
+ transformations: Transformation[];
8
+ pagination: Pagination;
9
+ };
10
+ //# sourceMappingURL=listTransformationsResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listTransformationsResponse.d.ts","sourceRoot":"","sources":["../../model/listTransformationsResponse.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEvD;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACxC,eAAe,EAAE,cAAc,EAAE,CAAC;IAElC,UAAU,EAAE,UAAU,CAAC;CACxB,CAAC"}
@@ -4,11 +4,11 @@ import type { MappingInput } from './mappingInput';
4
4
  */
5
5
  export type OnDemandDateUtilsInput = {
6
6
  /**
7
- * Earliest date in RFC3339 format of the extracted data from Big Query.
7
+ * Earliest date in RFC 3339 format of the extracted data from Big Query.
8
8
  */
9
9
  startDate: string;
10
10
  /**
11
- * Latest date in RFC3339 format of the extracted data from Big Query.
11
+ * Latest date in RFC 3339 format of the extracted data from Big Query.
12
12
  */
13
13
  endDate: string;
14
14
  mapping?: MappingInput;
@@ -5,7 +5,7 @@ import type { OnDemandTriggerType } from './onDemandTriggerType';
5
5
  export type OnDemandTrigger = {
6
6
  type: OnDemandTriggerType;
7
7
  /**
8
- * The last time the scheduled task ran in RFC3339 format.
8
+ * The last time the scheduled task ran in RFC 3339 format.
9
9
  */
10
10
  lastRun?: string;
11
11
  };
@@ -27,15 +27,15 @@ export type Run = {
27
27
  reasonCode?: RunReasonCode;
28
28
  type: RunType;
29
29
  /**
30
- * Date of creation in RFC3339 format.
30
+ * Date of creation in RFC 3339 format.
31
31
  */
32
32
  createdAt: string;
33
33
  /**
34
- * Date of start in RFC3339 format.
34
+ * Date of start in RFC 3339 format.
35
35
  */
36
36
  startedAt?: string;
37
37
  /**
38
- * Date of finish in RFC3339 format.
38
+ * Date of finish in RFC 3339 format.
39
39
  */
40
40
  finishedAt?: string;
41
41
  };
@@ -7,7 +7,7 @@ export type RunResponse = {
7
7
  */
8
8
  runID: string;
9
9
  /**
10
- * Date of creation in RFC3339 format.
10
+ * Date of creation in RFC 3339 format.
11
11
  */
12
12
  createdAt: string;
13
13
  };
@@ -9,11 +9,11 @@ export type ScheduleTrigger = {
9
9
  */
10
10
  cron: string;
11
11
  /**
12
- * The last time the scheduled task ran in RFC3339 format.
12
+ * The last time the scheduled task ran in RFC 3339 format.
13
13
  */
14
14
  lastRun?: string;
15
15
  /**
16
- * The next scheduled run of the task in RFC3339 format.
16
+ * The next scheduled run of the task in RFC 3339 format.
17
17
  */
18
18
  nextRun: string;
19
19
  };
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Property by which to sort the list.
3
+ */
4
+ export type SortKeys = 'createdAt' | 'name' | 'type' | 'updatedAt';
5
+ //# sourceMappingURL=sortKeys.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sortKeys.d.ts","sourceRoot":"","sources":["../../model/sortKeys.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,WAAW,CAAC"}
@@ -13,11 +13,11 @@ export type Source = {
13
13
  */
14
14
  authenticationID?: string;
15
15
  /**
16
- * Date of creation in RFC3339 format.
16
+ * Date of creation in RFC 3339 format.
17
17
  */
18
18
  createdAt: string;
19
19
  /**
20
- * Date of last update in RFC3339 format.
20
+ * Date of last update in RFC 3339 format.
21
21
  */
22
22
  updatedAt?: string;
23
23
  };
@@ -8,7 +8,7 @@ export type SourceCreateResponse = {
8
8
  */
9
9
  name: string;
10
10
  /**
11
- * Date of creation in RFC3339 format.
11
+ * Date of creation in RFC 3339 format.
12
12
  */
13
13
  createdAt: string;
14
14
  };
@@ -8,7 +8,7 @@ export type SourceUpdateResponse = {
8
8
  */
9
9
  name: string;
10
10
  /**
11
- * Date of last update in RFC3339 format.
11
+ * Date of last update in RFC 3339 format.
12
12
  */
13
13
  updatedAt: string;
14
14
  };
@@ -0,0 +1,20 @@
1
+ import type { Event } from './event';
2
+ export type SourceWatchResponse = {
3
+ /**
4
+ * Universally unique identifier (UUID) of a task run.
5
+ */
6
+ runID?: string;
7
+ /**
8
+ * Depending on the source type, the validation returns sampling data of your source (JSON, CSV, BigQuery).
9
+ */
10
+ data?: Array<Record<string, any>>;
11
+ /**
12
+ * In case of error, observability events will be added to the response, if any.
13
+ */
14
+ events?: Event[];
15
+ /**
16
+ * A message describing the outcome of a validate run.
17
+ */
18
+ message: string;
19
+ };
20
+ //# sourceMappingURL=sourceWatchResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sourceWatchResponse.d.ts","sourceRoot":"","sources":["../../model/sourceWatchResponse.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAErC,MAAM,MAAM,mBAAmB,GAAG;IAChC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;IAElC;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC;IAEjB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC"}
@@ -26,11 +26,15 @@ export type Task = {
26
26
  failureThreshold?: number;
27
27
  action: ActionType;
28
28
  /**
29
- * Date of creation in RFC3339 format.
29
+ * Date of the last cursor in RFC 3339 format.
30
+ */
31
+ cursor?: string;
32
+ /**
33
+ * Date of creation in RFC 3339 format.
30
34
  */
31
35
  createdAt: string;
32
36
  /**
33
- * Date of last update in RFC3339 format.
37
+ * Date of last update in RFC 3339 format.
34
38
  */
35
39
  updatedAt?: string;
36
40
  };
@@ -1 +1 @@
1
- {"version":3,"file":"task.d.ts","sourceRoot":"","sources":["../../model/task.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,MAAM,IAAI,GAAG;IACjB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB,OAAO,EAAE,OAAO,CAAC;IAEjB,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B,MAAM,EAAE,UAAU,CAAC;IAEnB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC"}
1
+ {"version":3,"file":"task.d.ts","sourceRoot":"","sources":["../../model/task.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEzC,MAAM,MAAM,IAAI,GAAG;IACjB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB,OAAO,EAAE,OAAO,CAAC;IAEjB,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B,MAAM,EAAE,UAAU,CAAC;IAEnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC"}
@@ -24,5 +24,9 @@ export type TaskCreate = {
24
24
  */
25
25
  failureThreshold?: number;
26
26
  input?: TaskInput;
27
+ /**
28
+ * Date of the last cursor in RFC 3339 format.
29
+ */
30
+ cursor?: string;
27
31
  };
28
32
  //# sourceMappingURL=taskCreate.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"taskCreate.d.ts","sourceRoot":"","sources":["../../model/taskCreate.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE7C;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG;IACvB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB,OAAO,EAAE,iBAAiB,CAAC;IAE3B,MAAM,EAAE,UAAU,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC"}
1
+ {"version":3,"file":"taskCreate.d.ts","sourceRoot":"","sources":["../../model/taskCreate.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE7C;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG;IACvB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB,OAAO,EAAE,iBAAiB,CAAC;IAE3B,MAAM,EAAE,UAAU,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC"}
@@ -7,7 +7,7 @@ export type TaskCreateResponse = {
7
7
  */
8
8
  taskID: string;
9
9
  /**
10
- * Date of creation in RFC3339 format.
10
+ * Date of creation in RFC 3339 format.
11
11
  */
12
12
  createdAt: string;
13
13
  };
@@ -7,7 +7,7 @@ export type TaskUpdateResponse = {
7
7
  */
8
8
  taskID: string;
9
9
  /**
10
- * Date of last update in RFC3339 format.
10
+ * Date of last update in RFC 3339 format.
11
11
  */
12
12
  updatedAt: string;
13
13
  };
@@ -0,0 +1,27 @@
1
+ export type Transformation = {
2
+ /**
3
+ * Universally unique identifier (UUID) of a transformation.
4
+ */
5
+ transformationID: string;
6
+ /**
7
+ * The source code of the transformation.
8
+ */
9
+ code: string;
10
+ /**
11
+ * The uniquely identified name of your transformation.
12
+ */
13
+ name: string;
14
+ /**
15
+ * A descriptive name for your transformation of what it does.
16
+ */
17
+ description: string;
18
+ /**
19
+ * Date of creation in RFC 3339 format.
20
+ */
21
+ createdAt: string;
22
+ /**
23
+ * Date of last update in RFC 3339 format.
24
+ */
25
+ updatedAt?: string;
26
+ };
27
+ //# sourceMappingURL=transformation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformation.d.ts","sourceRoot":"","sources":["../../model/transformation.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * API request body for creating a transformation.
3
+ */
4
+ export type TransformationCreate = {
5
+ /**
6
+ * The source code of the transformation.
7
+ */
8
+ code: string;
9
+ /**
10
+ * The uniquely identified name of your transformation.
11
+ */
12
+ name: string;
13
+ /**
14
+ * A descriptive name for your transformation of what it does.
15
+ */
16
+ description: string;
17
+ };
18
+ //# sourceMappingURL=transformationCreate.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformationCreate.d.ts","sourceRoot":"","sources":["../../model/transformationCreate.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * API response for creating a transformation.
3
+ */
4
+ export type TransformationCreateResponse = {
5
+ /**
6
+ * Universally unique identifier (UUID) of a transformation.
7
+ */
8
+ transformationID: string;
9
+ /**
10
+ * Date of creation in RFC 3339 format.
11
+ */
12
+ createdAt: string;
13
+ };
14
+ //# sourceMappingURL=transformationCreateResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformationCreateResponse.d.ts","sourceRoot":"","sources":["../../model/transformationCreateResponse.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG;IACzC;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC"}
@@ -0,0 +1,4 @@
1
+ export type TransformationSearch = {
2
+ transformationsIDs: string[];
3
+ };
4
+ //# sourceMappingURL=transformationSearch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformationSearch.d.ts","sourceRoot":"","sources":["../../model/transformationSearch.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,oBAAoB,GAAG;IACjC,kBAAkB,EAAE,MAAM,EAAE,CAAC;CAC9B,CAAC"}
@@ -0,0 +1,11 @@
1
+ export type TransformationTry = {
2
+ /**
3
+ * The source code of the transformation.
4
+ */
5
+ code: string;
6
+ /**
7
+ * The record to apply the given code to.
8
+ */
9
+ sampleRecord: Record<string, any>;
10
+ };
11
+ //# sourceMappingURL=transformationTry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformationTry.d.ts","sourceRoot":"","sources":["../../model/transformationTry.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CACnC,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { TransformationTryResponseError } from './transformationTryResponseError';
2
+ export type TransformationTryResponse = {
3
+ /**
4
+ * The array of records returned by the transformation service.
5
+ */
6
+ payloads: Array<Record<string, any>>;
7
+ error?: TransformationTryResponseError;
8
+ };
9
+ //# sourceMappingURL=transformationTryResponse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformationTryResponse.d.ts","sourceRoot":"","sources":["../../model/transformationTryResponse.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAC;AAEvF,MAAM,MAAM,yBAAyB,GAAG;IACtC;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;IAErC,KAAK,CAAC,EAAE,8BAA8B,CAAC;CACxC,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * The error if the transformation failed.
3
+ */
4
+ export type TransformationTryResponseError = {
5
+ /**
6
+ * The error status code.
7
+ */
8
+ code?: number;
9
+ /**
10
+ * A descriptive message explaining the failure.
11
+ */
12
+ message?: string;
13
+ };
14
+ //# sourceMappingURL=transformationTryResponseError.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transformationTryResponseError.d.ts","sourceRoot":"","sources":["../../model/transformationTryResponseError.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,MAAM,8BAA8B,GAAG;IAC3C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC"}