@membranehq/sdk 0.3.0 → 0.4.0

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 (348) hide show
  1. package/README.md +2 -0
  2. package/dist/bundle.d.ts +2067 -1512
  3. package/dist/bundle.js +9400 -19225
  4. package/dist/bundle.js.map +1 -1
  5. package/dist/dts/accessors/action-instances-accessors.d.ts +30 -0
  6. package/dist/dts/accessors/actions-accessors.d.ts +23 -0
  7. package/dist/dts/accessors/app-data-schema-instances-accessors.d.ts +12 -0
  8. package/dist/dts/accessors/app-data-schemas-accessors.d.ts +10 -0
  9. package/dist/dts/accessors/app-event-subscriptions-accessors.d.ts +11 -0
  10. package/dist/dts/accessors/app-event-types-accessors.d.ts +10 -0
  11. package/dist/dts/{accessors.d.ts → accessors/base-accessors.d.ts} +3 -3
  12. package/dist/dts/{connections/accessors.d.ts → accessors/connections-accessors.d.ts} +22 -9
  13. package/dist/dts/accessors/customers-accessors.d.ts +15 -0
  14. package/dist/dts/accessors/data-link-table-instances-accessors.d.ts +14 -0
  15. package/dist/dts/accessors/data-link-tables-accessors.d.ts +10 -0
  16. package/dist/dts/{data-sources/accessors.d.ts → accessors/data-sources-accessors.d.ts} +4 -4
  17. package/dist/dts/{external-events/accessors.d.ts → accessors/external-event-subscriptions-accessors.d.ts} +3 -3
  18. package/dist/dts/accessors/field-mapping-instances-accessors.d.ts +31 -0
  19. package/dist/dts/accessors/field-mappings-accessors.d.ts +25 -0
  20. package/dist/dts/{flows/accessors.d.ts → accessors/flow-instances-accessors.d.ts} +5 -26
  21. package/dist/dts/{flow-runs/accessors.d.ts → accessors/flow-runs-accessors.d.ts} +1 -1
  22. package/dist/dts/accessors/flows-accessors.d.ts +23 -0
  23. package/dist/dts/accessors/index.d.ts +21 -0
  24. package/dist/dts/{integrations/accessors.d.ts → accessors/integrations-accessors.d.ts} +10 -10
  25. package/dist/dts/{scenarios/accessors.d.ts → accessors/scenarios-accessors.d.ts} +2 -2
  26. package/dist/dts/{screens/accessors.d.ts → accessors/screens-accessors.d.ts} +2 -2
  27. package/dist/dts/apps/types.d.ts +2 -0
  28. package/dist/dts/auth/accessors.d.ts +1 -1
  29. package/dist/dts/auth/index.d.ts +1 -1
  30. package/dist/dts/client.d.ts +2 -16
  31. package/dist/dts/data-builder/index.d.ts +19 -9
  32. package/dist/dts/data-filter/index.d.ts +1 -1
  33. package/dist/dts/data-schema/index.d.ts +0 -2
  34. package/dist/dts/data-schema/types.d.ts +1 -1
  35. package/dist/dts/{data-schema/utils.d.ts → data-schema-utils/index.d.ts} +3 -6
  36. package/dist/dts/error-tools/index.d.ts +3 -0
  37. package/dist/dts/errors/index.d.ts +2 -9
  38. package/dist/dts/{data-builder/formulas → formulas}/base.d.ts +2 -2
  39. package/dist/dts/{data-builder/formulas → formulas}/dataSchemaRef.d.ts +1 -1
  40. package/dist/dts/{data-builder/formulas → formulas}/eval.d.ts +1 -1
  41. package/dist/dts/{data-builder/formulas → formulas}/findAppRecordId.d.ts +1 -1
  42. package/dist/dts/{data-builder/formulas → formulas}/findExternalRecordId.d.ts +1 -1
  43. package/dist/dts/formulas/index.d.ts +91 -0
  44. package/dist/dts/{data-builder/formulas → formulas}/record.d.ts +1 -1
  45. package/dist/dts/{data-builder/formulas → formulas}/types.d.ts +1 -0
  46. package/dist/dts/index.d.ts +5 -18
  47. package/dist/dts/integration-elements/index.d.ts +3 -3
  48. package/dist/dts/{data-builder/locators.d.ts → locators/index.d.ts} +3 -3
  49. package/dist/dts/variables.d.ts +1 -1
  50. package/dist/dts/workspace-elements/api/action-instances-api.d.ts +8 -0
  51. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +10 -0
  52. package/dist/dts/{actions/types.d.ts → workspace-elements/api/actions-api.d.ts} +12 -40
  53. package/dist/dts/{app-data-schemas/api.d.ts → workspace-elements/api/app-data-schema-instances-api.d.ts} +13 -20
  54. package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +19 -0
  55. package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +30 -0
  56. package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +30 -0
  57. package/dist/dts/workspace-elements/api/app-events-api.d.ts +17 -0
  58. package/dist/dts/workspace-elements/api/connections-api.d.ts +49 -0
  59. package/dist/dts/{users/api.d.ts → workspace-elements/api/customers-api.d.ts} +5 -1
  60. package/dist/dts/{data-links/api.d.ts → workspace-elements/api/data-link-table-instances-api.d.ts} +15 -8
  61. package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +8 -0
  62. package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +12 -0
  63. package/dist/dts/{data-sources/api.d.ts → workspace-elements/api/data-sources-api.d.ts} +14 -5
  64. package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +19 -0
  65. package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +19 -0
  66. package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +10 -0
  67. package/dist/dts/workspace-elements/api/external-events-api.d.ts +73 -0
  68. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +41 -0
  69. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +39 -0
  70. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +50 -0
  71. package/dist/dts/{flows/api.d.ts → workspace-elements/api/flows-api.d.ts} +21 -5
  72. package/dist/dts/workspace-elements/api/index.d.ts +25 -0
  73. package/dist/dts/{integrations/api.d.ts → workspace-elements/api/integrations-api.d.ts} +10 -3
  74. package/dist/dts/{scenarios/types.d.ts → workspace-elements/api/scenarios-api.d.ts} +24 -46
  75. package/dist/dts/{screens/types.d.ts → workspace-elements/api/screens-api.d.ts} +4 -6
  76. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +30 -0
  77. package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +19 -0
  78. package/dist/dts/{actions → workspace-elements/base/actions}/index.d.ts +0 -1
  79. package/dist/dts/workspace-elements/base/actions/types.d.ts +25 -0
  80. package/dist/dts/workspace-elements/base/app-data-schema-instances/types.d.ts +12 -0
  81. package/dist/dts/workspace-elements/base/app-data-schemas/index.d.ts +1 -0
  82. package/dist/dts/workspace-elements/base/app-data-schemas/types.d.ts +7 -0
  83. package/dist/dts/workspace-elements/base/app-event-subscriptions/index.d.ts +1 -0
  84. package/dist/dts/workspace-elements/base/app-event-subscriptions/types.d.ts +15 -0
  85. package/dist/dts/workspace-elements/base/app-event-types/index.d.ts +1 -0
  86. package/dist/dts/workspace-elements/base/app-event-types/types.d.ts +12 -0
  87. package/dist/dts/workspace-elements/base/connections/index.d.ts +1 -0
  88. package/dist/dts/{connections → workspace-elements/base/connections}/types.d.ts +7 -21
  89. package/dist/dts/{connectors → workspace-elements/base/connectors}/auth.d.ts +2 -2
  90. package/dist/dts/workspace-elements/base/connectors/events/index.d.ts +1 -0
  91. package/dist/dts/{connectors → workspace-elements/base/connectors}/events/types.d.ts +1 -1
  92. package/dist/dts/workspace-elements/base/connectors/global-webhooks/index.d.ts +1 -0
  93. package/dist/dts/{connectors → workspace-elements/base/connectors}/graphql-api.d.ts +1 -1
  94. package/dist/dts/{connectors → workspace-elements/base/connectors}/index.d.ts +0 -2
  95. package/dist/dts/{connectors → workspace-elements/base/connectors}/methods.d.ts +1 -1
  96. package/dist/dts/{connectors → workspace-elements/base/connectors}/rest-api.d.ts +1 -1
  97. package/dist/dts/{connectors → workspace-elements/base/connectors}/types.d.ts +2 -2
  98. package/dist/dts/{connectors → workspace-elements/base/connectors}/udm.d.ts +1 -1
  99. package/dist/dts/{users → workspace-elements/base/customers}/index.d.ts +1 -4
  100. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/base.d.ts +2 -2
  101. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/implementation-types/connector-event.d.ts +1 -1
  102. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/implementation-types/custom-pull.d.ts +1 -1
  103. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/implementation-types/pull-latest-records.d.ts +1 -1
  104. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/implementation-types/webhook.d.ts +1 -1
  105. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/methods.d.ts +2 -2
  106. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/index.d.ts +1 -1
  107. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/base.d.ts +4 -4
  108. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/index.d.ts +0 -2
  109. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/methods.d.ts +2 -2
  110. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-records.d.ts +1 -1
  111. package/dist/dts/workspace-elements/base/data-collections/index.d.ts +6 -0
  112. package/dist/dts/{connectors/data-locations → workspace-elements/base/data-collections}/schemas.d.ts +729 -229
  113. package/dist/dts/workspace-elements/base/data-collections/types.d.ts +54 -0
  114. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/base.d.ts +2 -2
  115. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/index.d.ts +2 -2
  116. package/dist/dts/{connectors/data-locations → workspace-elements/base/data-collections}/utils.d.ts +5 -2
  117. package/dist/dts/workspace-elements/base/data-link-table-instances/index.d.ts +1 -0
  118. package/dist/dts/workspace-elements/base/data-link-table-instances/types.d.ts +20 -0
  119. package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +1 -0
  120. package/dist/dts/workspace-elements/base/data-link-tables/types.d.ts +9 -0
  121. package/dist/dts/workspace-elements/base/data-source-instances/index.d.ts +1 -0
  122. package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +25 -0
  123. package/dist/dts/{data-sources → workspace-elements/base/data-sources}/index.d.ts +0 -2
  124. package/dist/dts/workspace-elements/base/data-sources/types.d.ts +27 -0
  125. package/dist/dts/workspace-elements/base/external-event-log-records/index.d.ts +1 -0
  126. package/dist/dts/workspace-elements/base/external-event-log-records/types.d.ts +18 -0
  127. package/dist/dts/workspace-elements/base/external-event-pulls/index.d.ts +1 -0
  128. package/dist/dts/workspace-elements/base/external-event-pulls/types.d.ts +21 -0
  129. package/dist/dts/workspace-elements/base/external-event-subscriptions/index.d.ts +1 -0
  130. package/dist/dts/workspace-elements/base/external-event-subscriptions/types.d.ts +42 -0
  131. package/dist/dts/{external-events → workspace-elements/base/external-events}/api.d.ts +2 -2
  132. package/dist/dts/{external-events → workspace-elements/base/external-events}/index.d.ts +1 -4
  133. package/dist/dts/workspace-elements/base/external-events/types.d.ts +17 -0
  134. package/dist/dts/workspace-elements/base/field-mapping-instances/index.d.ts +1 -0
  135. package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +27 -0
  136. package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
  137. package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +38 -0
  138. package/dist/dts/workspace-elements/base/flow-instances/index.d.ts +2 -0
  139. package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +37 -0
  140. package/dist/dts/{flow-runs → workspace-elements/base/flow-runs}/flow-node-runs.d.ts +7 -7
  141. package/dist/dts/workspace-elements/base/flow-runs/index.d.ts +2 -0
  142. package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +31 -0
  143. package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
  144. package/dist/dts/workspace-elements/base/flows/types.d.ts +33 -0
  145. package/dist/dts/workspace-elements/base/index.d.ts +27 -0
  146. package/dist/dts/workspace-elements/base/integrations/index.d.ts +1 -0
  147. package/dist/dts/{integrations → workspace-elements/base/integrations}/types.d.ts +5 -11
  148. package/dist/dts/workspace-elements/base/scenarios/index.d.ts +1 -0
  149. package/dist/dts/workspace-elements/base/scenarios/types.d.ts +27 -0
  150. package/dist/dts/workspace-elements/base/screens/index.d.ts +1 -0
  151. package/dist/dts/workspace-elements/base/screens/types.d.ts +7 -0
  152. package/dist/dts/workspace-elements/errors.d.ts +5 -0
  153. package/dist/dts/workspace-elements/index.d.ts +4 -0
  154. package/dist/dts/workspace-elements/types.d.ts +30 -4
  155. package/dist/dts/{flows/utils.d.ts → workspace-elements/utils/flow-utils.d.ts} +3 -3
  156. package/dist/dts/workspace-elements/utils/index.d.ts +1 -0
  157. package/dist/dts/workspace-elements-catalog/index.d.ts +3 -8
  158. package/dist/dts/workspaces/types.d.ts +6 -42
  159. package/dist/index.d.ts +4020 -3330
  160. package/dist/index.js +9318 -9278
  161. package/dist/index.js.map +1 -1
  162. package/dist/index.module.d.mts +4020 -3330
  163. package/dist/index.module.mjs +9291 -9270
  164. package/dist/index.module.mjs.map +1 -1
  165. package/package.json +7 -2
  166. package/dist/dts/actions/accessors.d.ts +0 -49
  167. package/dist/dts/app-data-schemas/accessors.d.ts +0 -18
  168. package/dist/dts/app-data-schemas/index.d.ts +0 -23
  169. package/dist/dts/app-events/accessors.d.ts +0 -20
  170. package/dist/dts/app-events/api.d.ts +0 -44
  171. package/dist/dts/app-events/index.d.ts +0 -42
  172. package/dist/dts/connections/api.d.ts +0 -27
  173. package/dist/dts/connections/create-or-update-connection.d.ts +0 -15
  174. package/dist/dts/connections/index.d.ts +0 -3
  175. package/dist/dts/data-builder/formula-processors.d.ts +0 -13
  176. package/dist/dts/data-builder/formula-types.d.ts +0 -4
  177. package/dist/dts/data-builder/formulas/index.d.ts +0 -26
  178. package/dist/dts/data-collections/types.d.ts +0 -24
  179. package/dist/dts/data-links/accessors.d.ts +0 -20
  180. package/dist/dts/data-links/index.d.ts +0 -36
  181. package/dist/dts/data-schema/data-field.d.ts +0 -14
  182. package/dist/dts/data-sources/types.d.ts +0 -63
  183. package/dist/dts/errors/error-doc-enum.d.ts +0 -7
  184. package/dist/dts/external-events/types.d.ts +0 -157
  185. package/dist/dts/field-mappings/accessors.d.ts +0 -54
  186. package/dist/dts/field-mappings/api.d.ts +0 -58
  187. package/dist/dts/field-mappings/index.d.ts +0 -66
  188. package/dist/dts/field-mappings/types.d.ts +0 -12
  189. package/dist/dts/flow-runs/index.d.ts +0 -78
  190. package/dist/dts/flows/index.d.ts +0 -6
  191. package/dist/dts/flows/types.d.ts +0 -76
  192. package/dist/dts/integrations/index.d.ts +0 -3
  193. package/dist/dts/scenarios/index.d.ts +0 -2
  194. package/dist/dts/screens/index.d.ts +0 -2
  195. package/dist/dts/users/accessors.d.ts +0 -10
  196. package/dist/dts/{accessors.test.d.ts → accessors/base-accessors.test.d.ts} +0 -0
  197. package/dist/dts/{connectors/data-locations/utils.test.d.ts → data-builder/data-builder.test.d.ts} +0 -0
  198. package/dist/dts/{data-builder/formulas → data-schema-utils}/index.test.d.ts +0 -0
  199. package/dist/dts/{data-builder/formulas → formulas}/and.d.ts +0 -0
  200. package/dist/dts/{data-builder/formulas → formulas}/and.test.d.ts +0 -0
  201. package/dist/dts/{data-builder/formulas → formulas}/case.d.ts +0 -0
  202. package/dist/dts/{data-builder/formulas → formulas}/case.test.d.ts +0 -0
  203. package/dist/dts/{data-builder/formulas → formulas}/concat.d.ts +0 -0
  204. package/dist/dts/{data-builder/formulas → formulas}/concat.test.d.ts +0 -0
  205. package/dist/dts/{data-builder/formulas → formulas}/copy.d.ts +0 -0
  206. package/dist/dts/{data-builder/formulas → formulas}/copy.test.d.ts +0 -0
  207. package/dist/dts/{data-builder/formulas → formulas}/dataSchemaRef.test.d.ts +0 -0
  208. package/dist/dts/{data-builder/formulas → formulas}/domainFromEmail.d.ts +0 -0
  209. package/dist/dts/{data-builder/formulas → formulas}/domainFromEmail.test.d.ts +0 -0
  210. package/dist/dts/{data-builder/formulas → formulas}/eval.test.d.ts +0 -0
  211. package/dist/dts/{data-builder/formulas → formulas}/extractDate.d.ts +0 -0
  212. package/dist/dts/{data-builder/formulas → formulas}/extractDate.test.d.ts +0 -0
  213. package/dist/dts/{data-builder/formulas → formulas}/extractTime.d.ts +0 -0
  214. package/dist/dts/{data-builder/formulas → formulas}/extractTime.test.d.ts +0 -0
  215. package/dist/dts/{data-builder/formulas → formulas}/findAppRecordId.test.d.ts +0 -0
  216. package/dist/dts/{data-builder/formulas → formulas}/findExternalRecordId.test.d.ts +0 -0
  217. package/dist/dts/{data-builder/formulas → formulas}/first-name.d.ts +0 -0
  218. package/dist/dts/{data-builder/formulas → formulas}/first-name.test.d.ts +0 -0
  219. package/dist/dts/{data-builder/formulas → formulas}/firstNotEmpty.d.ts +0 -0
  220. package/dist/dts/{data-builder/formulas → formulas}/firstNotEmpty.test.d.ts +0 -0
  221. package/dist/dts/{data-builder/formulas → formulas}/formula.d.ts +0 -0
  222. package/dist/dts/{data-builder/formulas → formulas}/formula.test.d.ts +0 -0
  223. package/dist/dts/{data-builder → formulas}/index.test.d.ts +0 -0
  224. package/dist/dts/{data-builder/formulas → formulas}/iterate.d.ts +0 -0
  225. package/dist/dts/{data-builder/formulas → formulas}/iterate.test.d.ts +0 -0
  226. package/dist/dts/{data-builder/formulas → formulas}/jsonata.d.ts +0 -0
  227. package/dist/dts/{data-builder/formulas → formulas}/jsonata.test.d.ts +0 -0
  228. package/dist/dts/{data-builder/formulas → formulas}/last-name.d.ts +0 -0
  229. package/dist/dts/{data-builder/formulas → formulas}/last-name.test.d.ts +0 -0
  230. package/dist/dts/{data-builder/formulas → formulas}/lookup.d.ts +0 -0
  231. package/dist/dts/{data-builder/formulas → formulas}/lookup.test.d.ts +0 -0
  232. package/dist/dts/{data-builder/formulas → formulas}/map.d.ts +0 -0
  233. package/dist/dts/{data-builder/formulas → formulas}/map.test.d.ts +0 -0
  234. package/dist/dts/{data-builder/formulas → formulas}/mergeObjects.d.ts +0 -0
  235. package/dist/dts/{data-builder/formulas → formulas}/mergeObjects.test.d.ts +0 -0
  236. package/dist/dts/{data-builder/formulas → formulas}/or.d.ts +0 -0
  237. package/dist/dts/{data-builder/formulas → formulas}/or.test.d.ts +0 -0
  238. package/dist/dts/{data-builder/formulas → formulas}/plain.d.ts +0 -0
  239. package/dist/dts/{data-builder/formulas → formulas}/plain.test.d.ts +0 -0
  240. package/dist/dts/{data-builder/formulas → formulas}/record.test.d.ts +0 -0
  241. package/dist/dts/{data-builder/formulas → formulas}/tpl.d.ts +0 -0
  242. package/dist/dts/{data-builder/formulas → formulas}/tpl.test.d.ts +0 -0
  243. package/dist/dts/{data-builder/formulas → formulas}/var.d.ts +0 -0
  244. package/dist/dts/{data-builder/formulas → formulas}/var.test.d.ts +0 -0
  245. package/dist/dts/{data-builder → locators}/locators.test.d.ts +0 -0
  246. package/dist/dts/{data-builder/formula-processors.test.d.ts → setupTests.d.ts} +0 -0
  247. package/dist/dts/{connectors/events → workspace-elements/base/action-instances}/index.d.ts +0 -0
  248. package/dist/dts/{connectors/global-webhooks → workspace-elements/base/action-run-log-records}/index.d.ts +0 -0
  249. package/dist/dts/{actions → workspace-elements/base/actions}/action-types.d.ts +0 -0
  250. package/dist/dts/{data-collections → workspace-elements/base/app-data-schema-instances}/index.d.ts +0 -0
  251. package/dist/dts/{connectors → workspace-elements/base/connectors}/constants.d.ts +0 -0
  252. package/dist/dts/{connectors → workspace-elements/base/connectors}/global-webhooks/types.d.ts +0 -0
  253. package/dist/dts/{connectors → workspace-elements/base/connectors}/openapi.d.ts +0 -0
  254. package/dist/dts/{connectors → workspace-elements/base/connectors}/operations/handlers.d.ts +0 -0
  255. package/dist/dts/{connectors → workspace-elements/base/connectors}/operations/index.d.ts +0 -0
  256. package/dist/dts/{connectors → workspace-elements/base/connectors}/operations/types.d.ts +0 -0
  257. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/implementation-types/full-scan.d.ts +0 -0
  258. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/events/index.d.ts +0 -0
  259. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/create.d.ts +0 -0
  260. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/delete.d.ts +0 -0
  261. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/find-by-id.d.ts +0 -0
  262. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/find.d.ts +0 -0
  263. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/list.d.ts +0 -0
  264. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/match.d.ts +0 -0
  265. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/search.d.ts +0 -0
  266. package/dist/dts/{connectors → workspace-elements/base/data-collections}/data-locations/collections/methods/update.d.ts +0 -0
  267. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/activities.d.ts +0 -0
  268. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/activities.test.d.ts +0 -0
  269. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/bills.d.ts +0 -0
  270. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/campaign-members.d.ts +0 -0
  271. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/campaigns.d.ts +0 -0
  272. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/companies.d.ts +0 -0
  273. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/contact-lists.d.ts +0 -0
  274. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/contacts.d.ts +0 -0
  275. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/credit-notes.d.ts +0 -0
  276. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/customers.d.ts +0 -0
  277. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/deal-products.d.ts +0 -0
  278. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/deal-stages.d.ts +0 -0
  279. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/deals.d.ts +0 -0
  280. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/documents.d.ts +0 -0
  281. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/drive-items.d.ts +0 -0
  282. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/drives.d.ts +0 -0
  283. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/eeocs.d.ts +0 -0
  284. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/emails.d.ts +0 -0
  285. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/employees.d.ts +0 -0
  286. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/files.d.ts +0 -0
  287. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/folders.d.ts +0 -0
  288. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/invoices.d.ts +0 -0
  289. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/job-applications.d.ts +0 -0
  290. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/job-candidates.d.ts +0 -0
  291. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/job-interviews.d.ts +0 -0
  292. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/job-offers.d.ts +0 -0
  293. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/jobs.d.ts +0 -0
  294. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/journal-entries.d.ts +0 -0
  295. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/leads.d.ts +0 -0
  296. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/ledger-accounts.d.ts +0 -0
  297. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/meetings.d.ts +0 -0
  298. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/messages.d.ts +0 -0
  299. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/notes.d.ts +0 -0
  300. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/orders.d.ts +0 -0
  301. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/payments.d.ts +0 -0
  302. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/payrolls.d.ts +0 -0
  303. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/products.d.ts +0 -0
  304. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/projects.d.ts +0 -0
  305. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/suppliers.d.ts +0 -0
  306. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/tasks.d.ts +0 -0
  307. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/tax-rates.d.ts +0 -0
  308. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/timeoff-balances.d.ts +0 -0
  309. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/timeoff-requests.d.ts +0 -0
  310. package/dist/dts/{udm → workspace-elements/base/data-collections/udm}/users.d.ts +0 -0
  311. package/dist/dts/{data-schema → workspace-elements/base/data-collections}/utils.test.d.ts +0 -0
  312. package/dist/dts/{data-sources → workspace-elements/base/data-sources}/constants.d.ts +0 -0
  313. package/dist/dts/{field-mappings → workspace-elements/base/field-mappings}/merge/is-object.test.d.ts +0 -0
  314. package/dist/dts/{field-mappings → workspace-elements/base/field-mappings}/merge/merge-with-formulas.d.ts +0 -0
  315. package/dist/dts/{field-mappings → workspace-elements/base/field-mappings}/merge/merge-with-formulas.test.d.ts +0 -0
  316. package/dist/dts/{flows → workspace-elements/base/flow-instances}/schemas.d.ts +6 -6
  317. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/api-request-to-external-app.d.ts +0 -0
  318. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/api-request-to-your-app.d.ts +0 -0
  319. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/api-trigger.d.ts +0 -0
  320. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/app-event-trigger.d.ts +0 -0
  321. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/base.d.ts +0 -0
  322. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/connector-event-trigger.d.ts +0 -0
  323. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/create-data-link.d.ts +0 -0
  324. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/create-data-record.d.ts +0 -0
  325. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/custom-http-request.d.ts +0 -0
  326. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/data-record-created-trigger.d.ts +0 -0
  327. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/data-record-deleted-trigger.d.ts +0 -0
  328. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/data-record-updated-trigger.d.ts +0 -0
  329. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/delete-data-link.d.ts +0 -0
  330. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/delete-data-record.d.ts +0 -0
  331. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/filter.d.ts +0 -0
  332. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/find-data-link.d.ts +0 -0
  333. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/find-data-record-by-id.d.ts +0 -0
  334. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/find-data-records.d.ts +0 -0
  335. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/find-or-create-data-record.d.ts +0 -0
  336. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/for-each-v2.d.ts +0 -0
  337. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/for-each.d.ts +0 -0
  338. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/index.d.ts +0 -0
  339. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/integration-specific-operation.d.ts +0 -0
  340. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/list-data-records.d.ts +0 -0
  341. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/lookup-data-record.d.ts +0 -0
  342. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/run-action.d.ts +0 -0
  343. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/run-javascript.d.ts +0 -0
  344. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/schedule-trigger.d.ts +0 -0
  345. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/search-data-records.d.ts +0 -0
  346. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/transform-data.d.ts +0 -0
  347. /package/dist/dts/{flows → workspace-elements/base/flows}/nodes/update-data-record.d.ts +0 -0
  348. /package/dist/dts/{flows/utils.test.d.ts → workspace-elements/utils/flow-utils.test.d.ts} +0 -0
@@ -1,14 +1,14 @@
1
1
  import { z } from 'zod';
2
- import { DataCollectionEvent, DataRecord } from '../../data-collections';
2
+ import { DataCollectionEvent } from './types';
3
3
  export declare const ApiRequestSpecSchema: z.ZodObject<{
4
4
  path: z.ZodUnknown;
5
5
  method: z.ZodUnknown;
6
6
  }, "strip", z.ZodTypeAny, {
7
- path?: unknown;
8
7
  method?: unknown;
9
- }, {
10
8
  path?: unknown;
9
+ }, {
11
10
  method?: unknown;
11
+ path?: unknown;
12
12
  }>;
13
13
  export type ApiRequestSpec = z.infer<typeof ApiRequestSpecSchema>;
14
14
  export declare const DataCollectionMethodSpecSchema: z.ZodObject<{
@@ -16,21 +16,21 @@ export declare const DataCollectionMethodSpecSchema: z.ZodObject<{
16
16
  path: z.ZodUnknown;
17
17
  method: z.ZodUnknown;
18
18
  }, "strip", z.ZodTypeAny, {
19
- path?: unknown;
20
19
  method?: unknown;
21
- }, {
22
20
  path?: unknown;
21
+ }, {
23
22
  method?: unknown;
23
+ path?: unknown;
24
24
  }>, "many">>;
25
25
  }, "strip", z.ZodTypeAny, {
26
26
  apiRequests?: {
27
- path?: unknown;
28
27
  method?: unknown;
28
+ path?: unknown;
29
29
  }[] | undefined;
30
30
  }, {
31
31
  apiRequests?: {
32
- path?: unknown;
33
32
  method?: unknown;
33
+ path?: unknown;
34
34
  }[] | undefined;
35
35
  }>;
36
36
  export type DataCollectionMethodSpec = z.infer<typeof DataCollectionMethodSpecSchema>;
@@ -39,24 +39,24 @@ export declare const DataCollectionListSpecSchema: z.ZodObject<{
39
39
  path: z.ZodUnknown;
40
40
  method: z.ZodUnknown;
41
41
  }, "strip", z.ZodTypeAny, {
42
- path?: unknown;
43
42
  method?: unknown;
44
- }, {
45
43
  path?: unknown;
44
+ }, {
46
45
  method?: unknown;
46
+ path?: unknown;
47
47
  }>, "many">>;
48
48
  } & {
49
49
  filterFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
50
50
  }, "strip", z.ZodTypeAny, {
51
51
  apiRequests?: {
52
- path?: unknown;
53
52
  method?: unknown;
53
+ path?: unknown;
54
54
  }[] | undefined;
55
55
  filterFields?: string[] | undefined;
56
56
  }, {
57
57
  apiRequests?: {
58
- path?: unknown;
59
58
  method?: unknown;
59
+ path?: unknown;
60
60
  }[] | undefined;
61
61
  filterFields?: string[] | undefined;
62
62
  }>;
@@ -66,21 +66,21 @@ export declare const DataCollectionSearchSpecSchema: z.ZodObject<{
66
66
  path: z.ZodUnknown;
67
67
  method: z.ZodUnknown;
68
68
  }, "strip", z.ZodTypeAny, {
69
- path?: unknown;
70
69
  method?: unknown;
71
- }, {
72
70
  path?: unknown;
71
+ }, {
73
72
  method?: unknown;
73
+ path?: unknown;
74
74
  }>, "many">>;
75
75
  }, "strip", z.ZodTypeAny, {
76
76
  apiRequests?: {
77
- path?: unknown;
78
77
  method?: unknown;
78
+ path?: unknown;
79
79
  }[] | undefined;
80
80
  }, {
81
81
  apiRequests?: {
82
- path?: unknown;
83
82
  method?: unknown;
83
+ path?: unknown;
84
84
  }[] | undefined;
85
85
  }>;
86
86
  export type DataCollectionSearchSpec = z.infer<typeof DataCollectionSearchSpecSchema>;
@@ -89,26 +89,26 @@ export declare const DataCollectionMatchSpecSchema: z.ZodObject<{
89
89
  path: z.ZodUnknown;
90
90
  method: z.ZodUnknown;
91
91
  }, "strip", z.ZodTypeAny, {
92
- path?: unknown;
93
92
  method?: unknown;
94
- }, {
95
93
  path?: unknown;
94
+ }, {
96
95
  method?: unknown;
96
+ path?: unknown;
97
97
  }>, "many">>;
98
98
  } & {
99
99
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
100
100
  }, "strip", z.ZodTypeAny, {
101
+ fields?: string[] | undefined;
101
102
  apiRequests?: {
102
- path?: unknown;
103
103
  method?: unknown;
104
+ path?: unknown;
104
105
  }[] | undefined;
105
- fields?: string[] | undefined;
106
106
  }, {
107
+ fields?: string[] | undefined;
107
108
  apiRequests?: {
108
- path?: unknown;
109
109
  method?: unknown;
110
+ path?: unknown;
110
111
  }[] | undefined;
111
- fields?: string[] | undefined;
112
112
  }>;
113
113
  export type DataCollectionMatchSpec = z.infer<typeof DataCollectionMatchSpecSchema>;
114
114
  export declare const DataCollectionFindByIdSpecSchema: z.ZodObject<{
@@ -116,21 +116,21 @@ export declare const DataCollectionFindByIdSpecSchema: z.ZodObject<{
116
116
  path: z.ZodUnknown;
117
117
  method: z.ZodUnknown;
118
118
  }, "strip", z.ZodTypeAny, {
119
- path?: unknown;
120
119
  method?: unknown;
121
- }, {
122
120
  path?: unknown;
121
+ }, {
123
122
  method?: unknown;
123
+ path?: unknown;
124
124
  }>, "many">>;
125
125
  }, "strip", z.ZodTypeAny, {
126
126
  apiRequests?: {
127
- path?: unknown;
128
127
  method?: unknown;
128
+ path?: unknown;
129
129
  }[] | undefined;
130
130
  }, {
131
131
  apiRequests?: {
132
- path?: unknown;
133
132
  method?: unknown;
133
+ path?: unknown;
134
134
  }[] | undefined;
135
135
  }>;
136
136
  export type DataCollectionFindByIdSpec = z.infer<typeof DataCollectionFindByIdSpecSchema>;
@@ -139,30 +139,30 @@ export declare const DataCollectionCreateSpecSchema: z.ZodObject<{
139
139
  path: z.ZodUnknown;
140
140
  method: z.ZodUnknown;
141
141
  }, "strip", z.ZodTypeAny, {
142
- path?: unknown;
143
142
  method?: unknown;
144
- }, {
145
143
  path?: unknown;
144
+ }, {
146
145
  method?: unknown;
146
+ path?: unknown;
147
147
  }>, "many">>;
148
148
  } & {
149
149
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
150
150
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
151
151
  excludedFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
152
152
  }, "strip", z.ZodTypeAny, {
153
+ fields?: string[] | undefined;
153
154
  apiRequests?: {
154
- path?: unknown;
155
155
  method?: unknown;
156
+ path?: unknown;
156
157
  }[] | undefined;
157
- fields?: string[] | undefined;
158
158
  requiredFields?: string[] | undefined;
159
159
  excludedFields?: string[] | undefined;
160
160
  }, {
161
+ fields?: string[] | undefined;
161
162
  apiRequests?: {
162
- path?: unknown;
163
163
  method?: unknown;
164
+ path?: unknown;
164
165
  }[] | undefined;
165
- fields?: string[] | undefined;
166
166
  requiredFields?: string[] | undefined;
167
167
  excludedFields?: string[] | undefined;
168
168
  }>;
@@ -172,28 +172,28 @@ export declare const DataCollectionUpdateSpecSchema: z.ZodObject<{
172
172
  path: z.ZodUnknown;
173
173
  method: z.ZodUnknown;
174
174
  }, "strip", z.ZodTypeAny, {
175
- path?: unknown;
176
175
  method?: unknown;
177
- }, {
178
176
  path?: unknown;
177
+ }, {
179
178
  method?: unknown;
179
+ path?: unknown;
180
180
  }>, "many">>;
181
181
  } & {
182
182
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
183
183
  excludedFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
184
184
  }, "strip", z.ZodTypeAny, {
185
+ fields?: string[] | undefined;
185
186
  apiRequests?: {
186
- path?: unknown;
187
187
  method?: unknown;
188
+ path?: unknown;
188
189
  }[] | undefined;
189
- fields?: string[] | undefined;
190
190
  excludedFields?: string[] | undefined;
191
191
  }, {
192
+ fields?: string[] | undefined;
192
193
  apiRequests?: {
193
- path?: unknown;
194
194
  method?: unknown;
195
+ path?: unknown;
195
196
  }[] | undefined;
196
- fields?: string[] | undefined;
197
197
  excludedFields?: string[] | undefined;
198
198
  }>;
199
199
  export type DataCollectionUpdateSpec = z.infer<typeof DataCollectionUpdateSpecSchema>;
@@ -202,21 +202,21 @@ export declare const DataCollectionDeleteSpecSchema: z.ZodObject<{
202
202
  path: z.ZodUnknown;
203
203
  method: z.ZodUnknown;
204
204
  }, "strip", z.ZodTypeAny, {
205
- path?: unknown;
206
205
  method?: unknown;
207
- }, {
208
206
  path?: unknown;
207
+ }, {
209
208
  method?: unknown;
209
+ path?: unknown;
210
210
  }>, "many">>;
211
211
  }, "strip", z.ZodTypeAny, {
212
212
  apiRequests?: {
213
- path?: unknown;
214
213
  method?: unknown;
214
+ path?: unknown;
215
215
  }[] | undefined;
216
216
  }, {
217
217
  apiRequests?: {
218
- path?: unknown;
219
218
  method?: unknown;
219
+ path?: unknown;
220
220
  }[] | undefined;
221
221
  }>;
222
222
  export type DataCollectionDeleteSpec = z.infer<typeof DataCollectionDeleteSpecSchema>;
@@ -225,24 +225,24 @@ export declare const DataCollectionFindSpecSchema: z.ZodObject<{
225
225
  path: z.ZodUnknown;
226
226
  method: z.ZodUnknown;
227
227
  }, "strip", z.ZodTypeAny, {
228
- path?: unknown;
229
228
  method?: unknown;
230
- }, {
231
229
  path?: unknown;
230
+ }, {
232
231
  method?: unknown;
232
+ path?: unknown;
233
233
  }>, "many">>;
234
234
  } & {
235
235
  queryFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
236
236
  }, "strip", z.ZodTypeAny, {
237
237
  apiRequests?: {
238
- path?: unknown;
239
238
  method?: unknown;
239
+ path?: unknown;
240
240
  }[] | undefined;
241
241
  queryFields?: string[] | undefined;
242
242
  }, {
243
243
  apiRequests?: {
244
- path?: unknown;
245
244
  method?: unknown;
245
+ path?: unknown;
246
246
  }[] | undefined;
247
247
  queryFields?: string[] | undefined;
248
248
  }>;
@@ -497,24 +497,24 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
497
497
  path: z.ZodUnknown;
498
498
  method: z.ZodUnknown;
499
499
  }, "strip", z.ZodTypeAny, {
500
- path?: unknown;
501
500
  method?: unknown;
502
- }, {
503
501
  path?: unknown;
502
+ }, {
504
503
  method?: unknown;
504
+ path?: unknown;
505
505
  }>, "many">>;
506
506
  } & {
507
507
  filterFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
508
508
  }, "strip", z.ZodTypeAny, {
509
509
  apiRequests?: {
510
- path?: unknown;
511
510
  method?: unknown;
511
+ path?: unknown;
512
512
  }[] | undefined;
513
513
  filterFields?: string[] | undefined;
514
514
  }, {
515
515
  apiRequests?: {
516
- path?: unknown;
517
516
  method?: unknown;
517
+ path?: unknown;
518
518
  }[] | undefined;
519
519
  filterFields?: string[] | undefined;
520
520
  }>>;
@@ -523,21 +523,21 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
523
523
  path: z.ZodUnknown;
524
524
  method: z.ZodUnknown;
525
525
  }, "strip", z.ZodTypeAny, {
526
- path?: unknown;
527
526
  method?: unknown;
528
- }, {
529
527
  path?: unknown;
528
+ }, {
530
529
  method?: unknown;
530
+ path?: unknown;
531
531
  }>, "many">>;
532
532
  }, "strip", z.ZodTypeAny, {
533
533
  apiRequests?: {
534
- path?: unknown;
535
534
  method?: unknown;
535
+ path?: unknown;
536
536
  }[] | undefined;
537
537
  }, {
538
538
  apiRequests?: {
539
- path?: unknown;
540
539
  method?: unknown;
540
+ path?: unknown;
541
541
  }[] | undefined;
542
542
  }>>;
543
543
  match: z.ZodOptional<z.ZodObject<{
@@ -545,47 +545,47 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
545
545
  path: z.ZodUnknown;
546
546
  method: z.ZodUnknown;
547
547
  }, "strip", z.ZodTypeAny, {
548
- path?: unknown;
549
548
  method?: unknown;
550
- }, {
551
549
  path?: unknown;
550
+ }, {
552
551
  method?: unknown;
552
+ path?: unknown;
553
553
  }>, "many">>;
554
554
  } & {
555
555
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
556
556
  }, "strip", z.ZodTypeAny, {
557
+ fields?: string[] | undefined;
557
558
  apiRequests?: {
558
- path?: unknown;
559
559
  method?: unknown;
560
+ path?: unknown;
560
561
  }[] | undefined;
561
- fields?: string[] | undefined;
562
562
  }, {
563
+ fields?: string[] | undefined;
563
564
  apiRequests?: {
564
- path?: unknown;
565
565
  method?: unknown;
566
+ path?: unknown;
566
567
  }[] | undefined;
567
- fields?: string[] | undefined;
568
568
  }>>;
569
569
  findById: z.ZodOptional<z.ZodObject<{
570
570
  apiRequests: z.ZodOptional<z.ZodArray<z.ZodObject<{
571
571
  path: z.ZodUnknown;
572
572
  method: z.ZodUnknown;
573
573
  }, "strip", z.ZodTypeAny, {
574
- path?: unknown;
575
574
  method?: unknown;
576
- }, {
577
575
  path?: unknown;
576
+ }, {
578
577
  method?: unknown;
578
+ path?: unknown;
579
579
  }>, "many">>;
580
580
  }, "strip", z.ZodTypeAny, {
581
581
  apiRequests?: {
582
- path?: unknown;
583
582
  method?: unknown;
583
+ path?: unknown;
584
584
  }[] | undefined;
585
585
  }, {
586
586
  apiRequests?: {
587
- path?: unknown;
588
587
  method?: unknown;
588
+ path?: unknown;
589
589
  }[] | undefined;
590
590
  }>>;
591
591
  create: z.ZodOptional<z.ZodObject<{
@@ -593,30 +593,30 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
593
593
  path: z.ZodUnknown;
594
594
  method: z.ZodUnknown;
595
595
  }, "strip", z.ZodTypeAny, {
596
- path?: unknown;
597
596
  method?: unknown;
598
- }, {
599
597
  path?: unknown;
598
+ }, {
600
599
  method?: unknown;
600
+ path?: unknown;
601
601
  }>, "many">>;
602
602
  } & {
603
603
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
604
604
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
605
605
  excludedFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
606
606
  }, "strip", z.ZodTypeAny, {
607
+ fields?: string[] | undefined;
607
608
  apiRequests?: {
608
- path?: unknown;
609
609
  method?: unknown;
610
+ path?: unknown;
610
611
  }[] | undefined;
611
- fields?: string[] | undefined;
612
612
  requiredFields?: string[] | undefined;
613
613
  excludedFields?: string[] | undefined;
614
614
  }, {
615
+ fields?: string[] | undefined;
615
616
  apiRequests?: {
616
- path?: unknown;
617
617
  method?: unknown;
618
+ path?: unknown;
618
619
  }[] | undefined;
619
- fields?: string[] | undefined;
620
620
  requiredFields?: string[] | undefined;
621
621
  excludedFields?: string[] | undefined;
622
622
  }>>;
@@ -625,28 +625,28 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
625
625
  path: z.ZodUnknown;
626
626
  method: z.ZodUnknown;
627
627
  }, "strip", z.ZodTypeAny, {
628
- path?: unknown;
629
628
  method?: unknown;
630
- }, {
631
629
  path?: unknown;
630
+ }, {
632
631
  method?: unknown;
632
+ path?: unknown;
633
633
  }>, "many">>;
634
634
  } & {
635
635
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
636
636
  excludedFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
637
637
  }, "strip", z.ZodTypeAny, {
638
+ fields?: string[] | undefined;
638
639
  apiRequests?: {
639
- path?: unknown;
640
640
  method?: unknown;
641
+ path?: unknown;
641
642
  }[] | undefined;
642
- fields?: string[] | undefined;
643
643
  excludedFields?: string[] | undefined;
644
644
  }, {
645
+ fields?: string[] | undefined;
645
646
  apiRequests?: {
646
- path?: unknown;
647
647
  method?: unknown;
648
+ path?: unknown;
648
649
  }[] | undefined;
649
- fields?: string[] | undefined;
650
650
  excludedFields?: string[] | undefined;
651
651
  }>>;
652
652
  delete: z.ZodOptional<z.ZodObject<{
@@ -654,21 +654,21 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
654
654
  path: z.ZodUnknown;
655
655
  method: z.ZodUnknown;
656
656
  }, "strip", z.ZodTypeAny, {
657
- path?: unknown;
658
657
  method?: unknown;
659
- }, {
660
658
  path?: unknown;
659
+ }, {
661
660
  method?: unknown;
661
+ path?: unknown;
662
662
  }>, "many">>;
663
663
  }, "strip", z.ZodTypeAny, {
664
664
  apiRequests?: {
665
- path?: unknown;
666
665
  method?: unknown;
666
+ path?: unknown;
667
667
  }[] | undefined;
668
668
  }, {
669
669
  apiRequests?: {
670
- path?: unknown;
671
670
  method?: unknown;
671
+ path?: unknown;
672
672
  }[] | undefined;
673
673
  }>>;
674
674
  events: z.ZodOptional<z.ZodObject<{
@@ -886,24 +886,24 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
886
886
  path: z.ZodUnknown;
887
887
  method: z.ZodUnknown;
888
888
  }, "strip", z.ZodTypeAny, {
889
- path?: unknown;
890
889
  method?: unknown;
891
- }, {
892
890
  path?: unknown;
891
+ }, {
893
892
  method?: unknown;
893
+ path?: unknown;
894
894
  }>, "many">>;
895
895
  } & {
896
896
  queryFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
897
897
  }, "strip", z.ZodTypeAny, {
898
898
  apiRequests?: {
899
- path?: unknown;
900
899
  method?: unknown;
900
+ path?: unknown;
901
901
  }[] | undefined;
902
902
  queryFields?: string[] | undefined;
903
903
  }, {
904
904
  apiRequests?: {
905
- path?: unknown;
906
905
  method?: unknown;
906
+ path?: unknown;
907
907
  }[] | undefined;
908
908
  queryFields?: string[] | undefined;
909
909
  }>>;
@@ -911,64 +911,44 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
911
911
  type: "collection";
912
912
  name: string;
913
913
  key?: string | undefined;
914
- find?: {
915
- apiRequests?: {
916
- path?: unknown;
917
- method?: unknown;
918
- }[] | undefined;
919
- queryFields?: string[] | undefined;
920
- } | undefined;
921
914
  match?: {
915
+ fields?: string[] | undefined;
922
916
  apiRequests?: {
923
- path?: unknown;
924
917
  method?: unknown;
918
+ path?: unknown;
925
919
  }[] | undefined;
926
- fields?: string[] | undefined;
927
920
  } | undefined;
928
921
  search?: {
929
922
  apiRequests?: {
930
- path?: unknown;
931
923
  method?: unknown;
932
- }[] | undefined;
933
- } | undefined;
934
- delete?: {
935
- apiRequests?: {
936
924
  path?: unknown;
937
- method?: unknown;
938
925
  }[] | undefined;
939
926
  } | undefined;
940
- parametersSchema?: any;
941
- fieldsSchema?: any;
942
- list?: {
927
+ find?: {
943
928
  apiRequests?: {
944
- path?: unknown;
945
929
  method?: unknown;
946
- }[] | undefined;
947
- filterFields?: string[] | undefined;
948
- } | undefined;
949
- findById?: {
950
- apiRequests?: {
951
930
  path?: unknown;
952
- method?: unknown;
953
931
  }[] | undefined;
932
+ queryFields?: string[] | undefined;
954
933
  } | undefined;
955
- create?: {
934
+ delete?: {
956
935
  apiRequests?: {
957
- path?: unknown;
958
936
  method?: unknown;
937
+ path?: unknown;
959
938
  }[] | undefined;
960
- fields?: string[] | undefined;
961
- requiredFields?: string[] | undefined;
962
- excludedFields?: string[] | undefined;
963
939
  } | undefined;
964
- update?: {
940
+ list?: {
965
941
  apiRequests?: {
966
- path?: unknown;
967
942
  method?: unknown;
943
+ path?: unknown;
968
944
  }[] | undefined;
969
- fields?: string[] | undefined;
970
- excludedFields?: string[] | undefined;
945
+ filterFields?: string[] | undefined;
971
946
  } | undefined;
947
+ udm?: Record<string, {
948
+ fields?: string[] | undefined;
949
+ extract?: Record<string, any> | undefined;
950
+ parse?: Record<string, any> | undefined;
951
+ }> | undefined;
972
952
  events?: z.objectOutputType<{
973
953
  created: z.ZodOptional<z.ZodObject<{
974
954
  type: z.ZodEnum<["push", "pull"]>;
@@ -1035,74 +1015,74 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
1035
1015
  isFullScan?: boolean | undefined;
1036
1016
  isIdOnly?: boolean | undefined;
1037
1017
  }>, "strip"> | undefined;
1038
- customFields?: boolean | undefined;
1039
- udm?: Record<string, {
1040
- fields?: string[] | undefined;
1041
- extract?: Record<string, any> | undefined;
1042
- parse?: Record<string, any> | undefined;
1043
- }> | undefined;
1044
- }, {
1045
- type: "collection";
1046
- name: string;
1047
- key?: string | undefined;
1048
- find?: {
1018
+ parametersSchema?: any;
1019
+ fieldsSchema?: any;
1020
+ findById?: {
1049
1021
  apiRequests?: {
1050
- path?: unknown;
1051
1022
  method?: unknown;
1023
+ path?: unknown;
1052
1024
  }[] | undefined;
1053
- queryFields?: string[] | undefined;
1054
1025
  } | undefined;
1055
- match?: {
1026
+ create?: {
1027
+ fields?: string[] | undefined;
1056
1028
  apiRequests?: {
1057
- path?: unknown;
1058
1029
  method?: unknown;
1030
+ path?: unknown;
1059
1031
  }[] | undefined;
1060
- fields?: string[] | undefined;
1032
+ requiredFields?: string[] | undefined;
1033
+ excludedFields?: string[] | undefined;
1061
1034
  } | undefined;
1062
- search?: {
1035
+ update?: {
1036
+ fields?: string[] | undefined;
1063
1037
  apiRequests?: {
1064
- path?: unknown;
1065
1038
  method?: unknown;
1039
+ path?: unknown;
1066
1040
  }[] | undefined;
1041
+ excludedFields?: string[] | undefined;
1067
1042
  } | undefined;
1068
- delete?: {
1043
+ customFields?: boolean | undefined;
1044
+ }, {
1045
+ type: "collection";
1046
+ name: string;
1047
+ key?: string | undefined;
1048
+ match?: {
1049
+ fields?: string[] | undefined;
1069
1050
  apiRequests?: {
1070
- path?: unknown;
1071
1051
  method?: unknown;
1052
+ path?: unknown;
1072
1053
  }[] | undefined;
1073
1054
  } | undefined;
1074
- parametersSchema?: any;
1075
- fieldsSchema?: any;
1076
- list?: {
1055
+ search?: {
1077
1056
  apiRequests?: {
1078
- path?: unknown;
1079
1057
  method?: unknown;
1058
+ path?: unknown;
1080
1059
  }[] | undefined;
1081
- filterFields?: string[] | undefined;
1082
1060
  } | undefined;
1083
- findById?: {
1061
+ find?: {
1084
1062
  apiRequests?: {
1085
- path?: unknown;
1086
1063
  method?: unknown;
1064
+ path?: unknown;
1087
1065
  }[] | undefined;
1066
+ queryFields?: string[] | undefined;
1088
1067
  } | undefined;
1089
- create?: {
1068
+ delete?: {
1090
1069
  apiRequests?: {
1091
- path?: unknown;
1092
1070
  method?: unknown;
1071
+ path?: unknown;
1093
1072
  }[] | undefined;
1094
- fields?: string[] | undefined;
1095
- requiredFields?: string[] | undefined;
1096
- excludedFields?: string[] | undefined;
1097
1073
  } | undefined;
1098
- update?: {
1074
+ list?: {
1099
1075
  apiRequests?: {
1100
- path?: unknown;
1101
1076
  method?: unknown;
1077
+ path?: unknown;
1102
1078
  }[] | undefined;
1103
- fields?: string[] | undefined;
1104
- excludedFields?: string[] | undefined;
1079
+ filterFields?: string[] | undefined;
1105
1080
  } | undefined;
1081
+ udm?: Record<string, {
1082
+ fields?: string[] | undefined;
1083
+ extract?: Record<string, any> | undefined;
1084
+ parse?: Record<string, any> | undefined;
1085
+ }> | undefined;
1106
1086
  events?: z.objectInputType<{
1107
1087
  created: z.ZodOptional<z.ZodObject<{
1108
1088
  type: z.ZodEnum<["push", "pull"]>;
@@ -1169,12 +1149,32 @@ export declare const DataCollectionSpecSchema: z.ZodObject<{
1169
1149
  isFullScan?: boolean | undefined;
1170
1150
  isIdOnly?: boolean | undefined;
1171
1151
  }>, "strip"> | undefined;
1172
- customFields?: boolean | undefined;
1173
- udm?: Record<string, {
1152
+ parametersSchema?: any;
1153
+ fieldsSchema?: any;
1154
+ findById?: {
1155
+ apiRequests?: {
1156
+ method?: unknown;
1157
+ path?: unknown;
1158
+ }[] | undefined;
1159
+ } | undefined;
1160
+ create?: {
1174
1161
  fields?: string[] | undefined;
1175
- extract?: Record<string, any> | undefined;
1176
- parse?: Record<string, any> | undefined;
1177
- }> | undefined;
1162
+ apiRequests?: {
1163
+ method?: unknown;
1164
+ path?: unknown;
1165
+ }[] | undefined;
1166
+ requiredFields?: string[] | undefined;
1167
+ excludedFields?: string[] | undefined;
1168
+ } | undefined;
1169
+ update?: {
1170
+ fields?: string[] | undefined;
1171
+ apiRequests?: {
1172
+ method?: unknown;
1173
+ path?: unknown;
1174
+ }[] | undefined;
1175
+ excludedFields?: string[] | undefined;
1176
+ } | undefined;
1177
+ customFields?: boolean | undefined;
1178
1178
  }>;
1179
1179
  export type DataCollectionSpec = z.infer<typeof DataCollectionSpecSchema>;
1180
1180
  export interface DataLocationPointer {
@@ -1191,70 +1191,570 @@ export interface DataCollectionListItem {
1191
1191
  type: 'collection';
1192
1192
  isHidden?: boolean;
1193
1193
  }
1194
- export interface DataCollectionMethodRequest {
1195
- parameters?: Record<string, any>;
1196
- }
1197
- export interface DataCollectionFindRequest {
1194
+ export declare const DataCollectionMethodRequestSchema: z.ZodObject<{
1195
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1196
+ }, "strip", z.ZodTypeAny, {
1197
+ parameters?: Record<string, any> | undefined;
1198
+ }, {
1199
+ parameters?: Record<string, any> | undefined;
1200
+ }>;
1201
+ export declare const DataCollectionFindRequestSchema: z.ZodObject<{
1202
+ query: z.ZodOptional<z.ZodAny>;
1203
+ cursor: z.ZodOptional<z.ZodString>;
1204
+ }, "strip", z.ZodTypeAny, {
1205
+ cursor?: string | undefined;
1198
1206
  query?: any;
1199
- cursor?: string;
1200
- }
1201
- export interface DataCollectionFindResponse {
1202
- records: DataRecord[];
1203
- cursor?: string;
1204
- }
1205
- export interface DataCollectionListRequest extends DataCollectionMethodRequest {
1207
+ }, {
1208
+ cursor?: string | undefined;
1209
+ query?: any;
1210
+ }>;
1211
+ export declare const DataCollectionFindResponseSchema: z.ZodObject<{
1212
+ records: z.ZodArray<z.ZodObject<{
1213
+ id: z.ZodString;
1214
+ name: z.ZodOptional<z.ZodString>;
1215
+ uri: z.ZodOptional<z.ZodString>;
1216
+ iconUri: z.ZodOptional<z.ZodString>;
1217
+ fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1218
+ udm: z.ZodOptional<z.ZodString>;
1219
+ unifiedFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1220
+ rawFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1221
+ createdTime: z.ZodOptional<z.ZodString>;
1222
+ updatedTime: z.ZodOptional<z.ZodString>;
1223
+ deletedTime: z.ZodOptional<z.ZodString>;
1224
+ createdById: z.ZodOptional<z.ZodString>;
1225
+ updatedById: z.ZodOptional<z.ZodString>;
1226
+ }, "strip", z.ZodTypeAny, {
1227
+ id: string;
1228
+ name?: string | undefined;
1229
+ uri?: string | undefined;
1230
+ iconUri?: string | undefined;
1231
+ fields?: Record<string, any> | undefined;
1232
+ udm?: string | undefined;
1233
+ unifiedFields?: Record<string, any> | undefined;
1234
+ rawFields?: Record<string, any> | undefined;
1235
+ createdTime?: string | undefined;
1236
+ updatedTime?: string | undefined;
1237
+ deletedTime?: string | undefined;
1238
+ createdById?: string | undefined;
1239
+ updatedById?: string | undefined;
1240
+ }, {
1241
+ id: string;
1242
+ name?: string | undefined;
1243
+ uri?: string | undefined;
1244
+ iconUri?: string | undefined;
1245
+ fields?: Record<string, any> | undefined;
1246
+ udm?: string | undefined;
1247
+ unifiedFields?: Record<string, any> | undefined;
1248
+ rawFields?: Record<string, any> | undefined;
1249
+ createdTime?: string | undefined;
1250
+ updatedTime?: string | undefined;
1251
+ deletedTime?: string | undefined;
1252
+ createdById?: string | undefined;
1253
+ updatedById?: string | undefined;
1254
+ }>, "many">;
1255
+ cursor: z.ZodOptional<z.ZodString>;
1256
+ }, "strip", z.ZodTypeAny, {
1257
+ records: {
1258
+ id: string;
1259
+ name?: string | undefined;
1260
+ uri?: string | undefined;
1261
+ iconUri?: string | undefined;
1262
+ fields?: Record<string, any> | undefined;
1263
+ udm?: string | undefined;
1264
+ unifiedFields?: Record<string, any> | undefined;
1265
+ rawFields?: Record<string, any> | undefined;
1266
+ createdTime?: string | undefined;
1267
+ updatedTime?: string | undefined;
1268
+ deletedTime?: string | undefined;
1269
+ createdById?: string | undefined;
1270
+ updatedById?: string | undefined;
1271
+ }[];
1272
+ cursor?: string | undefined;
1273
+ }, {
1274
+ records: {
1275
+ id: string;
1276
+ name?: string | undefined;
1277
+ uri?: string | undefined;
1278
+ iconUri?: string | undefined;
1279
+ fields?: Record<string, any> | undefined;
1280
+ udm?: string | undefined;
1281
+ unifiedFields?: Record<string, any> | undefined;
1282
+ rawFields?: Record<string, any> | undefined;
1283
+ createdTime?: string | undefined;
1284
+ updatedTime?: string | undefined;
1285
+ deletedTime?: string | undefined;
1286
+ createdById?: string | undefined;
1287
+ updatedById?: string | undefined;
1288
+ }[];
1289
+ cursor?: string | undefined;
1290
+ }>;
1291
+ export declare const DataCollectionListRequestSchema: z.ZodObject<{
1292
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1293
+ } & {
1294
+ filter: z.ZodOptional<z.ZodAny>;
1295
+ unifiedFilter: z.ZodOptional<z.ZodAny>;
1296
+ cursor: z.ZodOptional<z.ZodString>;
1297
+ }, "strip", z.ZodTypeAny, {
1206
1298
  filter?: any;
1299
+ cursor?: string | undefined;
1300
+ parameters?: Record<string, any> | undefined;
1207
1301
  unifiedFilter?: any;
1208
- cursor?: string;
1209
- }
1210
- export interface DataCollectionListResponseDrilldown {
1211
- parameters?: Record<string, any>;
1212
- filter?: Record<string, any>;
1213
- }
1214
- export interface DataCollectionListResponse {
1215
- records: DataRecord[];
1216
- drilldowns?: Array<DataCollectionListResponseDrilldown>;
1217
- cursor?: string;
1218
- }
1219
- export interface DataCollectionSearchRequest extends DataCollectionMethodRequest {
1302
+ }, {
1303
+ filter?: any;
1304
+ cursor?: string | undefined;
1305
+ parameters?: Record<string, any> | undefined;
1306
+ unifiedFilter?: any;
1307
+ }>;
1308
+ export declare const DataCollectionListResponseDrilldownSchema: z.ZodObject<{
1309
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1310
+ filter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1311
+ }, "strip", z.ZodTypeAny, {
1312
+ filter?: Record<string, any> | undefined;
1313
+ parameters?: Record<string, any> | undefined;
1314
+ }, {
1315
+ filter?: Record<string, any> | undefined;
1316
+ parameters?: Record<string, any> | undefined;
1317
+ }>;
1318
+ export declare const DataCollectionListResponseSchema: z.ZodObject<{
1319
+ records: z.ZodArray<z.ZodObject<{
1320
+ id: z.ZodString;
1321
+ name: z.ZodOptional<z.ZodString>;
1322
+ uri: z.ZodOptional<z.ZodString>;
1323
+ iconUri: z.ZodOptional<z.ZodString>;
1324
+ fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1325
+ udm: z.ZodOptional<z.ZodString>;
1326
+ unifiedFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1327
+ rawFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1328
+ createdTime: z.ZodOptional<z.ZodString>;
1329
+ updatedTime: z.ZodOptional<z.ZodString>;
1330
+ deletedTime: z.ZodOptional<z.ZodString>;
1331
+ createdById: z.ZodOptional<z.ZodString>;
1332
+ updatedById: z.ZodOptional<z.ZodString>;
1333
+ }, "strip", z.ZodTypeAny, {
1334
+ id: string;
1335
+ name?: string | undefined;
1336
+ uri?: string | undefined;
1337
+ iconUri?: string | undefined;
1338
+ fields?: Record<string, any> | undefined;
1339
+ udm?: string | undefined;
1340
+ unifiedFields?: Record<string, any> | undefined;
1341
+ rawFields?: Record<string, any> | undefined;
1342
+ createdTime?: string | undefined;
1343
+ updatedTime?: string | undefined;
1344
+ deletedTime?: string | undefined;
1345
+ createdById?: string | undefined;
1346
+ updatedById?: string | undefined;
1347
+ }, {
1348
+ id: string;
1349
+ name?: string | undefined;
1350
+ uri?: string | undefined;
1351
+ iconUri?: string | undefined;
1352
+ fields?: Record<string, any> | undefined;
1353
+ udm?: string | undefined;
1354
+ unifiedFields?: Record<string, any> | undefined;
1355
+ rawFields?: Record<string, any> | undefined;
1356
+ createdTime?: string | undefined;
1357
+ updatedTime?: string | undefined;
1358
+ deletedTime?: string | undefined;
1359
+ createdById?: string | undefined;
1360
+ updatedById?: string | undefined;
1361
+ }>, "many">;
1362
+ drilldowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
1363
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1364
+ filter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1365
+ }, "strip", z.ZodTypeAny, {
1366
+ filter?: Record<string, any> | undefined;
1367
+ parameters?: Record<string, any> | undefined;
1368
+ }, {
1369
+ filter?: Record<string, any> | undefined;
1370
+ parameters?: Record<string, any> | undefined;
1371
+ }>, "many">>;
1372
+ cursor: z.ZodOptional<z.ZodString>;
1373
+ }, "strip", z.ZodTypeAny, {
1374
+ records: {
1375
+ id: string;
1376
+ name?: string | undefined;
1377
+ uri?: string | undefined;
1378
+ iconUri?: string | undefined;
1379
+ fields?: Record<string, any> | undefined;
1380
+ udm?: string | undefined;
1381
+ unifiedFields?: Record<string, any> | undefined;
1382
+ rawFields?: Record<string, any> | undefined;
1383
+ createdTime?: string | undefined;
1384
+ updatedTime?: string | undefined;
1385
+ deletedTime?: string | undefined;
1386
+ createdById?: string | undefined;
1387
+ updatedById?: string | undefined;
1388
+ }[];
1389
+ cursor?: string | undefined;
1390
+ drilldowns?: {
1391
+ filter?: Record<string, any> | undefined;
1392
+ parameters?: Record<string, any> | undefined;
1393
+ }[] | undefined;
1394
+ }, {
1395
+ records: {
1396
+ id: string;
1397
+ name?: string | undefined;
1398
+ uri?: string | undefined;
1399
+ iconUri?: string | undefined;
1400
+ fields?: Record<string, any> | undefined;
1401
+ udm?: string | undefined;
1402
+ unifiedFields?: Record<string, any> | undefined;
1403
+ rawFields?: Record<string, any> | undefined;
1404
+ createdTime?: string | undefined;
1405
+ updatedTime?: string | undefined;
1406
+ deletedTime?: string | undefined;
1407
+ createdById?: string | undefined;
1408
+ updatedById?: string | undefined;
1409
+ }[];
1410
+ cursor?: string | undefined;
1411
+ drilldowns?: {
1412
+ filter?: Record<string, any> | undefined;
1413
+ parameters?: Record<string, any> | undefined;
1414
+ }[] | undefined;
1415
+ }>;
1416
+ export declare const DataCollectionSearchRequestSchema: z.ZodObject<{
1417
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1418
+ } & {
1419
+ query: z.ZodString;
1420
+ cursor: z.ZodOptional<z.ZodString>;
1421
+ }, "strip", z.ZodTypeAny, {
1220
1422
  query: string;
1221
- cursor?: string;
1222
- }
1223
- export interface DataCollectionSearchResponse {
1224
- records: DataRecord[];
1225
- cursor?: string;
1226
- }
1227
- export interface DataCollectionFindByIdRequest extends DataCollectionMethodRequest {
1423
+ cursor?: string | undefined;
1424
+ parameters?: Record<string, any> | undefined;
1425
+ }, {
1426
+ query: string;
1427
+ cursor?: string | undefined;
1428
+ parameters?: Record<string, any> | undefined;
1429
+ }>;
1430
+ export declare const DataCollectionSearchResponseSchema: z.ZodObject<{
1431
+ records: z.ZodArray<z.ZodObject<{
1432
+ id: z.ZodString;
1433
+ name: z.ZodOptional<z.ZodString>;
1434
+ uri: z.ZodOptional<z.ZodString>;
1435
+ iconUri: z.ZodOptional<z.ZodString>;
1436
+ fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1437
+ udm: z.ZodOptional<z.ZodString>;
1438
+ unifiedFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1439
+ rawFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1440
+ createdTime: z.ZodOptional<z.ZodString>;
1441
+ updatedTime: z.ZodOptional<z.ZodString>;
1442
+ deletedTime: z.ZodOptional<z.ZodString>;
1443
+ createdById: z.ZodOptional<z.ZodString>;
1444
+ updatedById: z.ZodOptional<z.ZodString>;
1445
+ }, "strip", z.ZodTypeAny, {
1446
+ id: string;
1447
+ name?: string | undefined;
1448
+ uri?: string | undefined;
1449
+ iconUri?: string | undefined;
1450
+ fields?: Record<string, any> | undefined;
1451
+ udm?: string | undefined;
1452
+ unifiedFields?: Record<string, any> | undefined;
1453
+ rawFields?: Record<string, any> | undefined;
1454
+ createdTime?: string | undefined;
1455
+ updatedTime?: string | undefined;
1456
+ deletedTime?: string | undefined;
1457
+ createdById?: string | undefined;
1458
+ updatedById?: string | undefined;
1459
+ }, {
1460
+ id: string;
1461
+ name?: string | undefined;
1462
+ uri?: string | undefined;
1463
+ iconUri?: string | undefined;
1464
+ fields?: Record<string, any> | undefined;
1465
+ udm?: string | undefined;
1466
+ unifiedFields?: Record<string, any> | undefined;
1467
+ rawFields?: Record<string, any> | undefined;
1468
+ createdTime?: string | undefined;
1469
+ updatedTime?: string | undefined;
1470
+ deletedTime?: string | undefined;
1471
+ createdById?: string | undefined;
1472
+ updatedById?: string | undefined;
1473
+ }>, "many">;
1474
+ cursor: z.ZodOptional<z.ZodString>;
1475
+ }, "strip", z.ZodTypeAny, {
1476
+ records: {
1477
+ id: string;
1478
+ name?: string | undefined;
1479
+ uri?: string | undefined;
1480
+ iconUri?: string | undefined;
1481
+ fields?: Record<string, any> | undefined;
1482
+ udm?: string | undefined;
1483
+ unifiedFields?: Record<string, any> | undefined;
1484
+ rawFields?: Record<string, any> | undefined;
1485
+ createdTime?: string | undefined;
1486
+ updatedTime?: string | undefined;
1487
+ deletedTime?: string | undefined;
1488
+ createdById?: string | undefined;
1489
+ updatedById?: string | undefined;
1490
+ }[];
1491
+ cursor?: string | undefined;
1492
+ }, {
1493
+ records: {
1494
+ id: string;
1495
+ name?: string | undefined;
1496
+ uri?: string | undefined;
1497
+ iconUri?: string | undefined;
1498
+ fields?: Record<string, any> | undefined;
1499
+ udm?: string | undefined;
1500
+ unifiedFields?: Record<string, any> | undefined;
1501
+ rawFields?: Record<string, any> | undefined;
1502
+ createdTime?: string | undefined;
1503
+ updatedTime?: string | undefined;
1504
+ deletedTime?: string | undefined;
1505
+ createdById?: string | undefined;
1506
+ updatedById?: string | undefined;
1507
+ }[];
1508
+ cursor?: string | undefined;
1509
+ }>;
1510
+ export declare const DataCollectionFindByIdRequestSchema: z.ZodObject<{
1511
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1512
+ } & {
1513
+ id: z.ZodString;
1514
+ udm: z.ZodOptional<z.ZodString>;
1515
+ }, "strip", z.ZodTypeAny, {
1228
1516
  id: string;
1229
- udm?: string;
1230
- }
1231
- export interface DataCollectionFindByIdResponse {
1232
- record: DataRecord;
1233
- }
1234
- export interface DataCollectionMatchRequest extends DataCollectionMethodRequest {
1517
+ udm?: string | undefined;
1518
+ parameters?: Record<string, any> | undefined;
1519
+ }, {
1520
+ id: string;
1521
+ udm?: string | undefined;
1522
+ parameters?: Record<string, any> | undefined;
1523
+ }>;
1524
+ export declare const DataCollectionFindByIdResponseSchema: z.ZodObject<{
1525
+ record: z.ZodObject<{
1526
+ id: z.ZodString;
1527
+ name: z.ZodOptional<z.ZodString>;
1528
+ uri: z.ZodOptional<z.ZodString>;
1529
+ iconUri: z.ZodOptional<z.ZodString>;
1530
+ fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1531
+ udm: z.ZodOptional<z.ZodString>;
1532
+ unifiedFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1533
+ rawFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1534
+ createdTime: z.ZodOptional<z.ZodString>;
1535
+ updatedTime: z.ZodOptional<z.ZodString>;
1536
+ deletedTime: z.ZodOptional<z.ZodString>;
1537
+ createdById: z.ZodOptional<z.ZodString>;
1538
+ updatedById: z.ZodOptional<z.ZodString>;
1539
+ }, "strip", z.ZodTypeAny, {
1540
+ id: string;
1541
+ name?: string | undefined;
1542
+ uri?: string | undefined;
1543
+ iconUri?: string | undefined;
1544
+ fields?: Record<string, any> | undefined;
1545
+ udm?: string | undefined;
1546
+ unifiedFields?: Record<string, any> | undefined;
1547
+ rawFields?: Record<string, any> | undefined;
1548
+ createdTime?: string | undefined;
1549
+ updatedTime?: string | undefined;
1550
+ deletedTime?: string | undefined;
1551
+ createdById?: string | undefined;
1552
+ updatedById?: string | undefined;
1553
+ }, {
1554
+ id: string;
1555
+ name?: string | undefined;
1556
+ uri?: string | undefined;
1557
+ iconUri?: string | undefined;
1558
+ fields?: Record<string, any> | undefined;
1559
+ udm?: string | undefined;
1560
+ unifiedFields?: Record<string, any> | undefined;
1561
+ rawFields?: Record<string, any> | undefined;
1562
+ createdTime?: string | undefined;
1563
+ updatedTime?: string | undefined;
1564
+ deletedTime?: string | undefined;
1565
+ createdById?: string | undefined;
1566
+ updatedById?: string | undefined;
1567
+ }>;
1568
+ }, "strip", z.ZodTypeAny, {
1569
+ record: {
1570
+ id: string;
1571
+ name?: string | undefined;
1572
+ uri?: string | undefined;
1573
+ iconUri?: string | undefined;
1574
+ fields?: Record<string, any> | undefined;
1575
+ udm?: string | undefined;
1576
+ unifiedFields?: Record<string, any> | undefined;
1577
+ rawFields?: Record<string, any> | undefined;
1578
+ createdTime?: string | undefined;
1579
+ updatedTime?: string | undefined;
1580
+ deletedTime?: string | undefined;
1581
+ createdById?: string | undefined;
1582
+ updatedById?: string | undefined;
1583
+ };
1584
+ }, {
1585
+ record: {
1586
+ id: string;
1587
+ name?: string | undefined;
1588
+ uri?: string | undefined;
1589
+ iconUri?: string | undefined;
1590
+ fields?: Record<string, any> | undefined;
1591
+ udm?: string | undefined;
1592
+ unifiedFields?: Record<string, any> | undefined;
1593
+ rawFields?: Record<string, any> | undefined;
1594
+ createdTime?: string | undefined;
1595
+ updatedTime?: string | undefined;
1596
+ deletedTime?: string | undefined;
1597
+ createdById?: string | undefined;
1598
+ updatedById?: string | undefined;
1599
+ };
1600
+ }>;
1601
+ export declare const DataCollectionMatchRequestSchema: z.ZodObject<{
1602
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1603
+ } & {
1604
+ query: z.ZodRecord<z.ZodString, z.ZodAny>;
1605
+ }, "strip", z.ZodTypeAny, {
1235
1606
  query: Record<string, any>;
1236
- }
1237
- export interface DataCollectionMatchResponse {
1238
- record?: DataRecord;
1239
- }
1240
- export interface DataCollectionCreateRequest extends DataCollectionMethodRequest {
1607
+ parameters?: Record<string, any> | undefined;
1608
+ }, {
1609
+ query: Record<string, any>;
1610
+ parameters?: Record<string, any> | undefined;
1611
+ }>;
1612
+ export declare const DataCollectionMatchResponseSchema: z.ZodObject<{
1613
+ record: z.ZodOptional<z.ZodObject<{
1614
+ id: z.ZodString;
1615
+ name: z.ZodOptional<z.ZodString>;
1616
+ uri: z.ZodOptional<z.ZodString>;
1617
+ iconUri: z.ZodOptional<z.ZodString>;
1618
+ fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1619
+ udm: z.ZodOptional<z.ZodString>;
1620
+ unifiedFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1621
+ rawFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1622
+ createdTime: z.ZodOptional<z.ZodString>;
1623
+ updatedTime: z.ZodOptional<z.ZodString>;
1624
+ deletedTime: z.ZodOptional<z.ZodString>;
1625
+ createdById: z.ZodOptional<z.ZodString>;
1626
+ updatedById: z.ZodOptional<z.ZodString>;
1627
+ }, "strip", z.ZodTypeAny, {
1628
+ id: string;
1629
+ name?: string | undefined;
1630
+ uri?: string | undefined;
1631
+ iconUri?: string | undefined;
1632
+ fields?: Record<string, any> | undefined;
1633
+ udm?: string | undefined;
1634
+ unifiedFields?: Record<string, any> | undefined;
1635
+ rawFields?: Record<string, any> | undefined;
1636
+ createdTime?: string | undefined;
1637
+ updatedTime?: string | undefined;
1638
+ deletedTime?: string | undefined;
1639
+ createdById?: string | undefined;
1640
+ updatedById?: string | undefined;
1641
+ }, {
1642
+ id: string;
1643
+ name?: string | undefined;
1644
+ uri?: string | undefined;
1645
+ iconUri?: string | undefined;
1646
+ fields?: Record<string, any> | undefined;
1647
+ udm?: string | undefined;
1648
+ unifiedFields?: Record<string, any> | undefined;
1649
+ rawFields?: Record<string, any> | undefined;
1650
+ createdTime?: string | undefined;
1651
+ updatedTime?: string | undefined;
1652
+ deletedTime?: string | undefined;
1653
+ createdById?: string | undefined;
1654
+ updatedById?: string | undefined;
1655
+ }>>;
1656
+ }, "strip", z.ZodTypeAny, {
1657
+ record?: {
1658
+ id: string;
1659
+ name?: string | undefined;
1660
+ uri?: string | undefined;
1661
+ iconUri?: string | undefined;
1662
+ fields?: Record<string, any> | undefined;
1663
+ udm?: string | undefined;
1664
+ unifiedFields?: Record<string, any> | undefined;
1665
+ rawFields?: Record<string, any> | undefined;
1666
+ createdTime?: string | undefined;
1667
+ updatedTime?: string | undefined;
1668
+ deletedTime?: string | undefined;
1669
+ createdById?: string | undefined;
1670
+ updatedById?: string | undefined;
1671
+ } | undefined;
1672
+ }, {
1673
+ record?: {
1674
+ id: string;
1675
+ name?: string | undefined;
1676
+ uri?: string | undefined;
1677
+ iconUri?: string | undefined;
1678
+ fields?: Record<string, any> | undefined;
1679
+ udm?: string | undefined;
1680
+ unifiedFields?: Record<string, any> | undefined;
1681
+ rawFields?: Record<string, any> | undefined;
1682
+ createdTime?: string | undefined;
1683
+ updatedTime?: string | undefined;
1684
+ deletedTime?: string | undefined;
1685
+ createdById?: string | undefined;
1686
+ updatedById?: string | undefined;
1687
+ } | undefined;
1688
+ }>;
1689
+ export declare const DataCollectionCreateRequestSchema: z.ZodObject<{
1690
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1691
+ } & {
1692
+ fields: z.ZodRecord<z.ZodString, z.ZodAny>;
1693
+ }, "strip", z.ZodTypeAny, {
1241
1694
  fields: Record<string, any>;
1242
- }
1243
- export interface DataCollectionCreateResponse {
1695
+ parameters?: Record<string, any> | undefined;
1696
+ }, {
1697
+ fields: Record<string, any>;
1698
+ parameters?: Record<string, any> | undefined;
1699
+ }>;
1700
+ export declare const DataCollectionCreateResponseSchema: z.ZodObject<{
1701
+ id: z.ZodString;
1702
+ }, "strip", z.ZodTypeAny, {
1244
1703
  id: string;
1245
- }
1246
- export interface DataCollectionUpdateRequest extends DataCollectionMethodRequest {
1704
+ }, {
1705
+ id: string;
1706
+ }>;
1707
+ export declare const DataCollectionUpdateRequestSchema: z.ZodObject<{
1708
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1709
+ } & {
1710
+ id: z.ZodString;
1711
+ fields: z.ZodRecord<z.ZodString, z.ZodAny>;
1712
+ }, "strip", z.ZodTypeAny, {
1247
1713
  id: string;
1248
1714
  fields: Record<string, any>;
1249
- }
1250
- export interface DataCollectionUpdateResponse {
1715
+ parameters?: Record<string, any> | undefined;
1716
+ }, {
1251
1717
  id: string;
1252
- }
1253
- export interface DataCollectionDeleteRequest extends DataCollectionMethodRequest {
1718
+ fields: Record<string, any>;
1719
+ parameters?: Record<string, any> | undefined;
1720
+ }>;
1721
+ export declare const DataCollectionUpdateResponseSchema: z.ZodObject<{
1722
+ id: z.ZodString;
1723
+ }, "strip", z.ZodTypeAny, {
1254
1724
  id: string;
1255
- }
1256
- export interface DataCollectionDeleteResponse {
1257
- }
1725
+ }, {
1726
+ id: string;
1727
+ }>;
1728
+ export declare const DataCollectionDeleteRequestSchema: z.ZodObject<{
1729
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1730
+ } & {
1731
+ id: z.ZodString;
1732
+ }, "strip", z.ZodTypeAny, {
1733
+ id: string;
1734
+ parameters?: Record<string, any> | undefined;
1735
+ }, {
1736
+ id: string;
1737
+ parameters?: Record<string, any> | undefined;
1738
+ }>;
1739
+ export declare const DataCollectionDeleteResponseSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1740
+ export type DataCollectionMethodRequest = z.infer<typeof DataCollectionMethodRequestSchema>;
1741
+ export type DataCollectionFindRequest = z.infer<typeof DataCollectionFindRequestSchema>;
1742
+ export type DataCollectionFindResponse = z.infer<typeof DataCollectionFindResponseSchema>;
1743
+ export type DataCollectionListRequest = z.infer<typeof DataCollectionListRequestSchema>;
1744
+ export type DataCollectionListResponseDrilldown = z.infer<typeof DataCollectionListResponseDrilldownSchema>;
1745
+ export type DataCollectionListResponse = z.infer<typeof DataCollectionListResponseSchema>;
1746
+ export type DataCollectionSearchRequest = z.infer<typeof DataCollectionSearchRequestSchema>;
1747
+ export type DataCollectionSearchResponse = z.infer<typeof DataCollectionSearchResponseSchema>;
1748
+ export type DataCollectionFindByIdRequest = z.infer<typeof DataCollectionFindByIdRequestSchema>;
1749
+ export type DataCollectionFindByIdResponse = z.infer<typeof DataCollectionFindByIdResponseSchema>;
1750
+ export type DataCollectionMatchRequest = z.infer<typeof DataCollectionMatchRequestSchema>;
1751
+ export type DataCollectionMatchResponse = z.infer<typeof DataCollectionMatchResponseSchema>;
1752
+ export type DataCollectionCreateRequest = z.infer<typeof DataCollectionCreateRequestSchema>;
1753
+ export type DataCollectionCreateResponse = z.infer<typeof DataCollectionCreateResponseSchema>;
1754
+ export type DataCollectionUpdateRequest = z.infer<typeof DataCollectionUpdateRequestSchema>;
1755
+ export type DataCollectionUpdateResponse = z.infer<typeof DataCollectionUpdateResponseSchema>;
1756
+ export type DataCollectionDeleteRequest = z.infer<typeof DataCollectionDeleteRequestSchema>;
1757
+ export type DataCollectionDeleteResponse = z.infer<typeof DataCollectionDeleteResponseSchema>;
1258
1758
  export interface DataCollectionSubscribeRequest extends DataCollectionMethodRequest {
1259
1759
  events?: {
1260
1760
  created?: boolean;
@@ -1302,28 +1802,28 @@ export interface DataCollectionParseUnifiedFieldsResponse {
1302
1802
  }
1303
1803
  export declare const ConnectorDataLocationTypes: {
1304
1804
  collection: {
1305
- spec: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1306
- recordFromFields: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1307
- customFieldsSchema: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1308
- fieldsFromApi: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1309
- fieldsToApi: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1805
+ spec: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1806
+ recordFromFields: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1807
+ customFieldsSchema: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1808
+ fieldsFromApi: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1809
+ fieldsToApi: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1310
1810
  methods: {
1311
- list: import("./collections/methods/base").ConnectorDataCollectionMethodType<import("./collections/methods/list").DataCollectionListConfigType>;
1312
- findById: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1313
- match: import("./collections/methods/base").ConnectorDataCollectionMethodType<import("./collections/methods/match").DataCollectionMatchConfigType>;
1314
- search: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1315
- create: import("./collections/methods/base").ConnectorDataCollectionMethodType<import("./collections/methods/create").DataCollectionCreateConfigType>;
1316
- update: import("./collections/methods/base").ConnectorDataCollectionMethodType<import("./collections/methods/update").DataCollectionUpdateConfigType>;
1317
- delete: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1318
- find: import("./collections/methods/base").ConnectorDataCollectionMethodType<{
1811
+ list: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<import("./data-locations/collections/methods/list").DataCollectionListConfigType>;
1812
+ findById: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1813
+ match: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<import("./data-locations/collections/methods/match").DataCollectionMatchConfigType>;
1814
+ search: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1815
+ create: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<import("./data-locations/collections/methods/create").DataCollectionCreateConfigType>;
1816
+ update: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<import("./data-locations/collections/methods/update").DataCollectionUpdateConfigType>;
1817
+ delete: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1818
+ find: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<{
1319
1819
  queryFields: string[];
1320
1820
  }>;
1321
1821
  };
1322
- recordToApi: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1323
- recordFromApi: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1324
- recordFromApiMapping: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1325
- recordFromApiCode: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1326
- fieldsToApiMapping: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1327
- fieldsToApiCode: import("./collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1822
+ recordToApi: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1823
+ recordFromApi: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1824
+ recordFromApiMapping: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1825
+ recordFromApiCode: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1826
+ fieldsToApiMapping: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1827
+ fieldsToApiCode: import("./data-locations/collections/methods/base").ConnectorDataCollectionMethodType<unknown>;
1328
1828
  };
1329
1829
  };