webflow-api 3.1.1 → 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (892) hide show
  1. package/.mock/definition/__package__.yml +657 -20
  2. package/.mock/definition/api.yml +9 -2
  3. package/.mock/definition/collections/items.yml +21 -4
  4. package/.mock/definition/components.yml +31 -27
  5. package/.mock/definition/pages.yml +35 -3
  6. package/.mock/definition/products.yml +156 -42
  7. package/.mock/definition/sites/comments.yml +325 -0
  8. package/.mock/definition/sites/robotsTxt.yml +22 -3
  9. package/.mock/definition/sites/wellKnown.yml +114 -0
  10. package/.mock/definition/sites.yml +1 -1
  11. package/.mock/definition/workspaces/auditLogs.yml +119 -0
  12. package/.mock/fern.config.json +1 -1
  13. package/Client.d.ts +4 -1
  14. package/Client.js +5 -0
  15. package/api/resources/accessGroups/client/Client.d.ts +1 -1
  16. package/api/resources/accessGroups/client/Client.js +2 -2
  17. package/api/resources/assets/client/Client.d.ts +1 -1
  18. package/api/resources/assets/client/Client.js +16 -16
  19. package/api/resources/collections/client/Client.d.ts +1 -1
  20. package/api/resources/collections/client/Client.js +8 -8
  21. package/api/resources/collections/resources/fields/client/Client.d.ts +1 -1
  22. package/api/resources/collections/resources/fields/client/Client.js +6 -6
  23. package/api/resources/collections/resources/items/client/Client.d.ts +23 -5
  24. package/api/resources/collections/resources/items/client/Client.js +57 -36
  25. package/api/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.d.ts +6 -2
  26. package/api/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.d.ts +6 -2
  27. package/api/resources/components/client/Client.d.ts +18 -2
  28. package/api/resources/components/client/Client.js +27 -11
  29. package/api/resources/components/client/requests/ComponentDomWrite.d.ts +16 -0
  30. package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +0 -5
  31. package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
  32. package/api/resources/ecommerce/client/Client.d.ts +1 -1
  33. package/api/resources/ecommerce/client/Client.js +2 -2
  34. package/api/resources/forms/client/Client.d.ts +1 -1
  35. package/api/resources/forms/client/Client.js +14 -14
  36. package/api/resources/index.d.ts +1 -0
  37. package/api/resources/index.js +2 -1
  38. package/api/resources/inventory/client/Client.d.ts +1 -1
  39. package/api/resources/inventory/client/Client.js +4 -4
  40. package/api/resources/orders/client/Client.d.ts +1 -1
  41. package/api/resources/orders/client/Client.js +12 -12
  42. package/api/resources/pages/client/Client.d.ts +18 -2
  43. package/api/resources/pages/client/Client.js +27 -11
  44. package/api/resources/pages/client/requests/PageDomWrite.d.ts +16 -0
  45. package/api/resources/pages/resources/scripts/client/Client.d.ts +1 -1
  46. package/api/resources/pages/resources/scripts/client/Client.js +6 -6
  47. package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
  48. package/api/resources/products/client/Client.d.ts +84 -14
  49. package/api/resources/products/client/Client.js +95 -25
  50. package/api/resources/products/client/requests/ProductSkuCreate.d.ts +57 -3
  51. package/api/resources/products/client/requests/ProductsCreateSkuRequest.d.ts +11 -1
  52. package/api/resources/products/client/requests/ProductsUpdateSkuRequest.d.ts +11 -1
  53. package/api/resources/products/types/ProductSkuCreateProduct.d.ts +7 -0
  54. package/api/resources/products/types/ProductSkuCreateProduct.js +5 -0
  55. package/api/resources/products/types/ProductSkuCreateSku.d.ts +7 -0
  56. package/api/resources/products/types/ProductSkuCreateSku.js +5 -0
  57. package/api/resources/products/types/index.d.ts +2 -0
  58. package/api/resources/products/types/index.js +2 -0
  59. package/api/resources/scripts/client/Client.d.ts +1 -1
  60. package/api/resources/scripts/client/Client.js +6 -6
  61. package/api/resources/sites/client/Client.d.ts +7 -1
  62. package/api/resources/sites/client/Client.js +28 -18
  63. package/api/resources/sites/index.d.ts +1 -1
  64. package/api/resources/sites/index.js +1 -1
  65. package/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
  66. package/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
  67. package/api/resources/sites/resources/comments/client/Client.d.ts +104 -0
  68. package/api/resources/sites/resources/comments/client/Client.js +426 -0
  69. package/api/resources/sites/resources/comments/client/index.d.ts +1 -0
  70. package/api/resources/sites/resources/comments/client/index.js +17 -0
  71. package/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +32 -0
  72. package/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.js +5 -0
  73. package/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +32 -0
  74. package/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.js +5 -0
  75. package/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +32 -0
  76. package/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.js +5 -0
  77. package/api/resources/sites/resources/comments/client/requests/index.d.ts +3 -0
  78. package/api/resources/sites/resources/comments/client/requests/index.js +2 -0
  79. package/api/resources/sites/resources/comments/index.d.ts +2 -0
  80. package/api/resources/sites/resources/comments/index.js +18 -0
  81. package/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +8 -0
  82. package/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +10 -0
  83. package/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +8 -0
  84. package/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +10 -0
  85. package/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +8 -0
  86. package/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +10 -0
  87. package/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +8 -0
  88. package/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +10 -0
  89. package/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +8 -0
  90. package/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +10 -0
  91. package/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +8 -0
  92. package/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +10 -0
  93. package/api/resources/sites/resources/comments/types/index.d.ts +6 -0
  94. package/api/resources/sites/resources/comments/types/index.js +22 -0
  95. package/api/resources/sites/resources/index.d.ts +6 -0
  96. package/api/resources/sites/resources/index.js +7 -1
  97. package/api/resources/sites/resources/plans/client/Client.d.ts +1 -1
  98. package/api/resources/sites/resources/plans/client/Client.js +2 -2
  99. package/api/resources/sites/resources/redirects/client/Client.d.ts +1 -1
  100. package/api/resources/sites/resources/redirects/client/Client.js +8 -8
  101. package/api/resources/sites/resources/robotsTxt/client/Client.d.ts +9 -1
  102. package/api/resources/sites/resources/robotsTxt/client/Client.js +16 -8
  103. package/api/resources/sites/resources/scripts/client/Client.d.ts +1 -1
  104. package/api/resources/sites/resources/scripts/client/Client.js +8 -8
  105. package/api/resources/sites/resources/wellKnown/client/Client.d.ts +81 -0
  106. package/api/resources/sites/resources/wellKnown/client/Client.js +268 -0
  107. package/api/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
  108. package/api/resources/sites/resources/wellKnown/client/index.js +17 -0
  109. package/api/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.d.ts +11 -0
  110. package/api/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +5 -0
  111. package/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +19 -0
  112. package/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +5 -0
  113. package/api/resources/sites/resources/wellKnown/client/requests/index.d.ts +2 -0
  114. package/api/resources/sites/resources/wellKnown/client/requests/index.js +2 -0
  115. package/api/resources/sites/resources/wellKnown/index.d.ts +2 -0
  116. package/api/resources/sites/resources/wellKnown/index.js +18 -0
  117. package/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +11 -0
  118. package/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +10 -0
  119. package/api/resources/sites/resources/wellKnown/types/index.d.ts +1 -0
  120. package/api/resources/sites/resources/wellKnown/types/index.js +17 -0
  121. package/api/resources/token/client/Client.d.ts +1 -1
  122. package/api/resources/token/client/Client.js +4 -4
  123. package/api/resources/users/client/Client.d.ts +1 -1
  124. package/api/resources/users/client/Client.js +10 -10
  125. package/api/resources/webhooks/client/Client.d.ts +1 -1
  126. package/api/resources/webhooks/client/Client.js +8 -8
  127. package/api/resources/workspaces/client/Client.d.ts +28 -0
  128. package/api/resources/workspaces/client/Client.js +17 -0
  129. package/api/resources/workspaces/client/index.d.ts +1 -0
  130. package/api/resources/workspaces/client/index.js +2 -0
  131. package/api/resources/workspaces/index.d.ts +2 -0
  132. package/api/resources/workspaces/index.js +18 -0
  133. package/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +51 -0
  134. package/api/resources/workspaces/resources/auditLogs/client/Client.js +182 -0
  135. package/api/resources/workspaces/resources/auditLogs/client/index.d.ts +1 -0
  136. package/api/resources/workspaces/resources/auditLogs/client/index.js +17 -0
  137. package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +37 -0
  138. package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.js +5 -0
  139. package/api/resources/workspaces/resources/auditLogs/client/requests/index.d.ts +1 -0
  140. package/api/resources/workspaces/resources/auditLogs/client/requests/index.js +2 -0
  141. package/api/resources/workspaces/resources/auditLogs/index.d.ts +2 -0
  142. package/api/resources/workspaces/resources/auditLogs/index.js +18 -0
  143. package/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +11 -0
  144. package/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +13 -0
  145. package/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +8 -0
  146. package/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +10 -0
  147. package/api/resources/workspaces/resources/auditLogs/types/index.d.ts +2 -0
  148. package/api/resources/workspaces/resources/auditLogs/types/index.js +18 -0
  149. package/api/resources/workspaces/resources/index.d.ts +3 -0
  150. package/api/resources/workspaces/resources/index.js +32 -0
  151. package/api/types/CommentReply.d.ts +32 -0
  152. package/api/types/CommentReply.js +5 -0
  153. package/api/types/CommentReplyAuthor.d.ts +11 -0
  154. package/api/types/CommentReplyAuthor.js +5 -0
  155. package/api/types/CommentReplyList.d.ts +11 -0
  156. package/api/types/CommentReplyList.js +5 -0
  157. package/api/types/CommentReplyListPagination.d.ts +11 -0
  158. package/api/types/CommentReplyListPagination.js +5 -0
  159. package/api/types/CommentReplyMentionedUsersItem.d.ts +11 -0
  160. package/api/types/CommentReplyMentionedUsersItem.js +5 -0
  161. package/api/types/CommentThread.d.ts +34 -0
  162. package/api/types/CommentThread.js +5 -0
  163. package/api/types/CommentThreadAuthor.d.ts +11 -0
  164. package/api/types/CommentThreadAuthor.js +5 -0
  165. package/api/types/CommentThreadList.d.ts +11 -0
  166. package/api/types/CommentThreadList.js +5 -0
  167. package/api/types/CommentThreadListPagination.d.ts +11 -0
  168. package/api/types/CommentThreadListPagination.js +5 -0
  169. package/api/types/CommentThreadMentionedUsersItem.d.ts +11 -0
  170. package/api/types/CommentThreadMentionedUsersItem.js +5 -0
  171. package/api/types/ComponentDom.d.ts +1 -1
  172. package/api/types/CustomRole.d.ts +9 -0
  173. package/api/types/CustomRole.js +5 -0
  174. package/api/types/CustomRoleAuditLogItem.d.ts +8 -0
  175. package/api/types/CustomRoleAuditLogItem.js +5 -0
  176. package/api/types/CustomRoleAuditLogItemEventSubType.d.ts +9 -0
  177. package/api/types/CustomRoleAuditLogItemEventSubType.js +11 -0
  178. package/api/types/FieldType.d.ts +4 -2
  179. package/api/types/FieldType.js +3 -1
  180. package/api/types/Node.d.ts +13 -1
  181. package/api/types/SearchButtonNode.d.ts +14 -0
  182. package/api/types/SearchButtonNode.js +5 -0
  183. package/api/types/SearchButtonNodeWrite.d.ts +12 -0
  184. package/api/types/SearchButtonNodeWrite.js +5 -0
  185. package/api/types/SelectNode.d.ts +15 -0
  186. package/api/types/SelectNode.js +5 -0
  187. package/api/types/SelectNodeChoicesItem.d.ts +9 -0
  188. package/api/types/SelectNodeChoicesItem.js +5 -0
  189. package/api/types/SelectNodeWrite.d.ts +13 -0
  190. package/api/types/SelectNodeWrite.js +5 -0
  191. package/api/types/SelectNodeWriteChoicesItem.d.ts +9 -0
  192. package/api/types/SelectNodeWriteChoicesItem.js +5 -0
  193. package/api/types/SiteMembership.d.ts +14 -0
  194. package/api/types/SiteMembership.js +5 -0
  195. package/api/types/SiteMembershipAuditLogItem.d.ts +8 -0
  196. package/api/types/SiteMembershipAuditLogItem.js +5 -0
  197. package/api/types/SiteMembershipAuditLogItemEventSubType.d.ts +9 -0
  198. package/api/types/SiteMembershipAuditLogItemEventSubType.js +11 -0
  199. package/api/types/SkuFieldData.d.ts +6 -0
  200. package/api/types/SkuFieldDataPrice.d.ts +2 -0
  201. package/api/types/SkuValueList.d.ts +1 -1
  202. package/api/types/StaticFieldType.d.ts +2 -2
  203. package/api/types/StaticFieldType.js +1 -1
  204. package/api/types/SubmitButtonNode.d.ts +16 -0
  205. package/api/types/SubmitButtonNode.js +5 -0
  206. package/api/types/SubmitButtonNodeWrite.d.ts +14 -0
  207. package/api/types/SubmitButtonNodeWrite.js +5 -0
  208. package/api/types/TextInputNode.d.ts +14 -0
  209. package/api/types/TextInputNode.js +5 -0
  210. package/api/types/TextInputNodeWrite.d.ts +12 -0
  211. package/api/types/TextInputNodeWrite.js +5 -0
  212. package/api/types/TriggerType.d.ts +2 -1
  213. package/api/types/TriggerType.js +1 -0
  214. package/api/types/UserAccess.d.ts +11 -0
  215. package/api/types/UserAccess.js +5 -0
  216. package/api/types/UserAccessAuditLogItem.d.ts +8 -0
  217. package/api/types/UserAccessAuditLogItem.js +5 -0
  218. package/api/types/UserAccessAuditLogItemEventSubType.d.ts +8 -0
  219. package/api/types/UserAccessAuditLogItemEventSubType.js +10 -0
  220. package/api/types/WorkspaceAuditLogItem.d.ts +27 -0
  221. package/api/types/WorkspaceAuditLogItem.js +5 -0
  222. package/api/types/WorkspaceAuditLogItemActor.d.ts +7 -0
  223. package/api/types/WorkspaceAuditLogItemActor.js +5 -0
  224. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +11 -0
  225. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +13 -0
  226. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.d.ts +7 -0
  227. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +5 -0
  228. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.d.ts +7 -0
  229. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +5 -0
  230. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +10 -0
  231. package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +12 -0
  232. package/api/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +10 -0
  233. package/api/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +12 -0
  234. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +9 -0
  235. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +11 -0
  236. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.d.ts +7 -0
  237. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +5 -0
  238. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +10 -0
  239. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +12 -0
  240. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +9 -0
  241. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +11 -0
  242. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.d.ts +7 -0
  243. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +5 -0
  244. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +10 -0
  245. package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +12 -0
  246. package/api/types/WorkspaceAuditLogItemWorkspace.d.ts +7 -0
  247. package/api/types/WorkspaceAuditLogItemWorkspace.js +5 -0
  248. package/api/types/WorkspaceAuditLogResponse.d.ts +8 -0
  249. package/api/types/WorkspaceAuditLogResponse.js +5 -0
  250. package/api/types/WorkspaceInvitation.d.ts +13 -0
  251. package/api/types/WorkspaceInvitation.js +5 -0
  252. package/api/types/WorkspaceInvitationAuditLogItem.d.ts +8 -0
  253. package/api/types/WorkspaceInvitationAuditLogItem.js +5 -0
  254. package/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +11 -0
  255. package/api/types/WorkspaceInvitationAuditLogItemEventSubType.js +13 -0
  256. package/api/types/WorkspaceMembership.d.ts +13 -0
  257. package/api/types/WorkspaceMembership.js +5 -0
  258. package/api/types/WorkspaceMembershipAuditLogItem.d.ts +8 -0
  259. package/api/types/WorkspaceMembershipAuditLogItem.js +5 -0
  260. package/api/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +9 -0
  261. package/api/types/WorkspaceMembershipAuditLogItemEventSubType.js +11 -0
  262. package/api/types/index.d.ts +51 -1
  263. package/api/types/index.js +51 -1
  264. package/dist/Client.d.ts +4 -1
  265. package/dist/Client.js +5 -0
  266. package/dist/api/resources/accessGroups/client/Client.d.ts +1 -1
  267. package/dist/api/resources/accessGroups/client/Client.js +2 -2
  268. package/dist/api/resources/assets/client/Client.d.ts +1 -1
  269. package/dist/api/resources/assets/client/Client.js +16 -16
  270. package/dist/api/resources/collections/client/Client.d.ts +1 -1
  271. package/dist/api/resources/collections/client/Client.js +8 -8
  272. package/dist/api/resources/collections/resources/fields/client/Client.d.ts +1 -1
  273. package/dist/api/resources/collections/resources/fields/client/Client.js +6 -6
  274. package/dist/api/resources/collections/resources/items/client/Client.d.ts +23 -5
  275. package/dist/api/resources/collections/resources/items/client/Client.js +57 -36
  276. package/dist/api/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.d.ts +6 -2
  277. package/dist/api/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.d.ts +6 -2
  278. package/dist/api/resources/components/client/Client.d.ts +18 -2
  279. package/dist/api/resources/components/client/Client.js +27 -11
  280. package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +16 -0
  281. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +0 -5
  282. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
  283. package/dist/api/resources/ecommerce/client/Client.d.ts +1 -1
  284. package/dist/api/resources/ecommerce/client/Client.js +2 -2
  285. package/dist/api/resources/forms/client/Client.d.ts +1 -1
  286. package/dist/api/resources/forms/client/Client.js +14 -14
  287. package/dist/api/resources/index.d.ts +1 -0
  288. package/dist/api/resources/index.js +2 -1
  289. package/dist/api/resources/inventory/client/Client.d.ts +1 -1
  290. package/dist/api/resources/inventory/client/Client.js +4 -4
  291. package/dist/api/resources/orders/client/Client.d.ts +1 -1
  292. package/dist/api/resources/orders/client/Client.js +12 -12
  293. package/dist/api/resources/pages/client/Client.d.ts +18 -2
  294. package/dist/api/resources/pages/client/Client.js +27 -11
  295. package/dist/api/resources/pages/client/requests/PageDomWrite.d.ts +16 -0
  296. package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +1 -1
  297. package/dist/api/resources/pages/resources/scripts/client/Client.js +6 -6
  298. package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
  299. package/dist/api/resources/products/client/Client.d.ts +84 -14
  300. package/dist/api/resources/products/client/Client.js +95 -25
  301. package/dist/api/resources/products/client/requests/ProductSkuCreate.d.ts +57 -3
  302. package/dist/api/resources/products/client/requests/ProductsCreateSkuRequest.d.ts +11 -1
  303. package/dist/api/resources/products/client/requests/ProductsUpdateSkuRequest.d.ts +11 -1
  304. package/dist/api/resources/products/types/ProductSkuCreateProduct.d.ts +7 -0
  305. package/dist/api/resources/products/types/ProductSkuCreateProduct.js +5 -0
  306. package/dist/api/resources/products/types/ProductSkuCreateSku.d.ts +7 -0
  307. package/dist/api/resources/products/types/ProductSkuCreateSku.js +5 -0
  308. package/dist/api/resources/products/types/index.d.ts +2 -0
  309. package/dist/api/resources/products/types/index.js +2 -0
  310. package/dist/api/resources/scripts/client/Client.d.ts +1 -1
  311. package/dist/api/resources/scripts/client/Client.js +6 -6
  312. package/dist/api/resources/sites/client/Client.d.ts +7 -1
  313. package/dist/api/resources/sites/client/Client.js +28 -18
  314. package/dist/api/resources/sites/index.d.ts +1 -1
  315. package/dist/api/resources/sites/index.js +1 -1
  316. package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
  317. package/dist/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
  318. package/dist/api/resources/sites/resources/comments/client/Client.d.ts +104 -0
  319. package/dist/api/resources/sites/resources/comments/client/Client.js +426 -0
  320. package/dist/api/resources/sites/resources/comments/client/index.d.ts +1 -0
  321. package/dist/api/resources/sites/resources/comments/client/index.js +17 -0
  322. package/dist/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +32 -0
  323. package/dist/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.js +5 -0
  324. package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +32 -0
  325. package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.js +5 -0
  326. package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +32 -0
  327. package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.js +5 -0
  328. package/dist/api/resources/sites/resources/comments/client/requests/index.d.ts +3 -0
  329. package/dist/api/resources/sites/resources/comments/client/requests/index.js +2 -0
  330. package/dist/api/resources/sites/resources/comments/index.d.ts +2 -0
  331. package/dist/api/resources/sites/resources/comments/index.js +18 -0
  332. package/dist/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +8 -0
  333. package/dist/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +10 -0
  334. package/dist/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +8 -0
  335. package/dist/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +10 -0
  336. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +8 -0
  337. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +10 -0
  338. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +8 -0
  339. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +10 -0
  340. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +8 -0
  341. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +10 -0
  342. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +8 -0
  343. package/dist/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +10 -0
  344. package/dist/api/resources/sites/resources/comments/types/index.d.ts +6 -0
  345. package/dist/api/resources/sites/resources/comments/types/index.js +22 -0
  346. package/dist/api/resources/sites/resources/index.d.ts +6 -0
  347. package/dist/api/resources/sites/resources/index.js +7 -1
  348. package/dist/api/resources/sites/resources/plans/client/Client.d.ts +1 -1
  349. package/dist/api/resources/sites/resources/plans/client/Client.js +2 -2
  350. package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +1 -1
  351. package/dist/api/resources/sites/resources/redirects/client/Client.js +8 -8
  352. package/dist/api/resources/sites/resources/robotsTxt/client/Client.d.ts +9 -1
  353. package/dist/api/resources/sites/resources/robotsTxt/client/Client.js +16 -8
  354. package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +1 -1
  355. package/dist/api/resources/sites/resources/scripts/client/Client.js +8 -8
  356. package/dist/api/resources/sites/resources/wellKnown/client/Client.d.ts +81 -0
  357. package/dist/api/resources/sites/resources/wellKnown/client/Client.js +268 -0
  358. package/dist/api/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
  359. package/dist/api/resources/sites/resources/wellKnown/client/index.js +17 -0
  360. package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.d.ts +11 -0
  361. package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +5 -0
  362. package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +19 -0
  363. package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +5 -0
  364. package/dist/api/resources/sites/resources/wellKnown/client/requests/index.d.ts +2 -0
  365. package/dist/api/resources/sites/resources/wellKnown/client/requests/index.js +2 -0
  366. package/dist/api/resources/sites/resources/wellKnown/index.d.ts +2 -0
  367. package/dist/api/resources/sites/resources/wellKnown/index.js +18 -0
  368. package/dist/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +11 -0
  369. package/dist/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +10 -0
  370. package/dist/api/resources/sites/resources/wellKnown/types/index.d.ts +1 -0
  371. package/dist/api/resources/sites/resources/wellKnown/types/index.js +17 -0
  372. package/dist/api/resources/token/client/Client.d.ts +1 -1
  373. package/dist/api/resources/token/client/Client.js +4 -4
  374. package/dist/api/resources/users/client/Client.d.ts +1 -1
  375. package/dist/api/resources/users/client/Client.js +10 -10
  376. package/dist/api/resources/webhooks/client/Client.d.ts +1 -1
  377. package/dist/api/resources/webhooks/client/Client.js +8 -8
  378. package/dist/api/resources/workspaces/client/Client.d.ts +28 -0
  379. package/dist/api/resources/workspaces/client/Client.js +17 -0
  380. package/dist/api/resources/workspaces/client/index.d.ts +1 -0
  381. package/dist/api/resources/workspaces/client/index.js +2 -0
  382. package/dist/api/resources/workspaces/index.d.ts +2 -0
  383. package/dist/api/resources/workspaces/index.js +18 -0
  384. package/dist/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +51 -0
  385. package/dist/api/resources/workspaces/resources/auditLogs/client/Client.js +182 -0
  386. package/dist/api/resources/workspaces/resources/auditLogs/client/index.d.ts +1 -0
  387. package/dist/api/resources/workspaces/resources/auditLogs/client/index.js +17 -0
  388. package/dist/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +37 -0
  389. package/dist/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.js +5 -0
  390. package/dist/api/resources/workspaces/resources/auditLogs/client/requests/index.d.ts +1 -0
  391. package/dist/api/resources/workspaces/resources/auditLogs/client/requests/index.js +2 -0
  392. package/dist/api/resources/workspaces/resources/auditLogs/index.d.ts +2 -0
  393. package/dist/api/resources/workspaces/resources/auditLogs/index.js +18 -0
  394. package/dist/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +11 -0
  395. package/dist/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +13 -0
  396. package/dist/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +8 -0
  397. package/dist/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +10 -0
  398. package/dist/api/resources/workspaces/resources/auditLogs/types/index.d.ts +2 -0
  399. package/dist/api/resources/workspaces/resources/auditLogs/types/index.js +18 -0
  400. package/dist/api/resources/workspaces/resources/index.d.ts +3 -0
  401. package/dist/api/resources/workspaces/resources/index.js +32 -0
  402. package/dist/api/types/CommentReply.d.ts +32 -0
  403. package/dist/api/types/CommentReply.js +5 -0
  404. package/dist/api/types/CommentReplyAuthor.d.ts +11 -0
  405. package/dist/api/types/CommentReplyAuthor.js +5 -0
  406. package/dist/api/types/CommentReplyList.d.ts +11 -0
  407. package/dist/api/types/CommentReplyList.js +5 -0
  408. package/dist/api/types/CommentReplyListPagination.d.ts +11 -0
  409. package/dist/api/types/CommentReplyListPagination.js +5 -0
  410. package/dist/api/types/CommentReplyMentionedUsersItem.d.ts +11 -0
  411. package/dist/api/types/CommentReplyMentionedUsersItem.js +5 -0
  412. package/dist/api/types/CommentThread.d.ts +34 -0
  413. package/dist/api/types/CommentThread.js +5 -0
  414. package/dist/api/types/CommentThreadAuthor.d.ts +11 -0
  415. package/dist/api/types/CommentThreadAuthor.js +5 -0
  416. package/dist/api/types/CommentThreadList.d.ts +11 -0
  417. package/dist/api/types/CommentThreadList.js +5 -0
  418. package/dist/api/types/CommentThreadListPagination.d.ts +11 -0
  419. package/dist/api/types/CommentThreadListPagination.js +5 -0
  420. package/dist/api/types/CommentThreadMentionedUsersItem.d.ts +11 -0
  421. package/dist/api/types/CommentThreadMentionedUsersItem.js +5 -0
  422. package/dist/api/types/ComponentDom.d.ts +1 -1
  423. package/dist/api/types/CustomRole.d.ts +9 -0
  424. package/dist/api/types/CustomRole.js +5 -0
  425. package/dist/api/types/CustomRoleAuditLogItem.d.ts +8 -0
  426. package/dist/api/types/CustomRoleAuditLogItem.js +5 -0
  427. package/dist/api/types/CustomRoleAuditLogItemEventSubType.d.ts +9 -0
  428. package/dist/api/types/CustomRoleAuditLogItemEventSubType.js +11 -0
  429. package/dist/api/types/FieldType.d.ts +4 -2
  430. package/dist/api/types/FieldType.js +3 -1
  431. package/dist/api/types/Node.d.ts +13 -1
  432. package/dist/api/types/SearchButtonNode.d.ts +14 -0
  433. package/dist/api/types/SearchButtonNode.js +5 -0
  434. package/dist/api/types/SearchButtonNodeWrite.d.ts +12 -0
  435. package/dist/api/types/SearchButtonNodeWrite.js +5 -0
  436. package/dist/api/types/SelectNode.d.ts +15 -0
  437. package/dist/api/types/SelectNode.js +5 -0
  438. package/dist/api/types/SelectNodeChoicesItem.d.ts +9 -0
  439. package/dist/api/types/SelectNodeChoicesItem.js +5 -0
  440. package/dist/api/types/SelectNodeWrite.d.ts +13 -0
  441. package/dist/api/types/SelectNodeWrite.js +5 -0
  442. package/dist/api/types/SelectNodeWriteChoicesItem.d.ts +9 -0
  443. package/dist/api/types/SelectNodeWriteChoicesItem.js +5 -0
  444. package/dist/api/types/SiteMembership.d.ts +14 -0
  445. package/dist/api/types/SiteMembership.js +5 -0
  446. package/dist/api/types/SiteMembershipAuditLogItem.d.ts +8 -0
  447. package/dist/api/types/SiteMembershipAuditLogItem.js +5 -0
  448. package/dist/api/types/SiteMembershipAuditLogItemEventSubType.d.ts +9 -0
  449. package/dist/api/types/SiteMembershipAuditLogItemEventSubType.js +11 -0
  450. package/dist/api/types/SkuFieldData.d.ts +6 -0
  451. package/dist/api/types/SkuFieldDataPrice.d.ts +2 -0
  452. package/dist/api/types/SkuValueList.d.ts +1 -1
  453. package/dist/api/types/StaticFieldType.d.ts +2 -2
  454. package/dist/api/types/StaticFieldType.js +1 -1
  455. package/dist/api/types/SubmitButtonNode.d.ts +16 -0
  456. package/dist/api/types/SubmitButtonNode.js +5 -0
  457. package/dist/api/types/SubmitButtonNodeWrite.d.ts +14 -0
  458. package/dist/api/types/SubmitButtonNodeWrite.js +5 -0
  459. package/dist/api/types/TextInputNode.d.ts +14 -0
  460. package/dist/api/types/TextInputNode.js +5 -0
  461. package/dist/api/types/TextInputNodeWrite.d.ts +12 -0
  462. package/dist/api/types/TextInputNodeWrite.js +5 -0
  463. package/dist/api/types/TriggerType.d.ts +2 -1
  464. package/dist/api/types/TriggerType.js +1 -0
  465. package/dist/api/types/UserAccess.d.ts +11 -0
  466. package/dist/api/types/UserAccess.js +5 -0
  467. package/dist/api/types/UserAccessAuditLogItem.d.ts +8 -0
  468. package/dist/api/types/UserAccessAuditLogItem.js +5 -0
  469. package/dist/api/types/UserAccessAuditLogItemEventSubType.d.ts +8 -0
  470. package/dist/api/types/UserAccessAuditLogItemEventSubType.js +10 -0
  471. package/dist/api/types/WorkspaceAuditLogItem.d.ts +27 -0
  472. package/dist/api/types/WorkspaceAuditLogItem.js +5 -0
  473. package/dist/api/types/WorkspaceAuditLogItemActor.d.ts +7 -0
  474. package/dist/api/types/WorkspaceAuditLogItemActor.js +5 -0
  475. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +11 -0
  476. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +13 -0
  477. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.d.ts +7 -0
  478. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +5 -0
  479. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.d.ts +7 -0
  480. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +5 -0
  481. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +10 -0
  482. package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +12 -0
  483. package/dist/api/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +10 -0
  484. package/dist/api/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +12 -0
  485. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +9 -0
  486. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +11 -0
  487. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.d.ts +7 -0
  488. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +5 -0
  489. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +10 -0
  490. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +12 -0
  491. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +9 -0
  492. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +11 -0
  493. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.d.ts +7 -0
  494. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +5 -0
  495. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +10 -0
  496. package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +12 -0
  497. package/dist/api/types/WorkspaceAuditLogItemWorkspace.d.ts +7 -0
  498. package/dist/api/types/WorkspaceAuditLogItemWorkspace.js +5 -0
  499. package/dist/api/types/WorkspaceAuditLogResponse.d.ts +8 -0
  500. package/dist/api/types/WorkspaceAuditLogResponse.js +5 -0
  501. package/dist/api/types/WorkspaceInvitation.d.ts +13 -0
  502. package/dist/api/types/WorkspaceInvitation.js +5 -0
  503. package/dist/api/types/WorkspaceInvitationAuditLogItem.d.ts +8 -0
  504. package/dist/api/types/WorkspaceInvitationAuditLogItem.js +5 -0
  505. package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +11 -0
  506. package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.js +13 -0
  507. package/dist/api/types/WorkspaceMembership.d.ts +13 -0
  508. package/dist/api/types/WorkspaceMembership.js +5 -0
  509. package/dist/api/types/WorkspaceMembershipAuditLogItem.d.ts +8 -0
  510. package/dist/api/types/WorkspaceMembershipAuditLogItem.js +5 -0
  511. package/dist/api/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +9 -0
  512. package/dist/api/types/WorkspaceMembershipAuditLogItemEventSubType.js +11 -0
  513. package/dist/api/types/index.d.ts +51 -1
  514. package/dist/api/types/index.js +51 -1
  515. package/dist/environments.d.ts +15 -2
  516. package/dist/environments.js +7 -1
  517. package/dist/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.d.ts +1 -1
  518. package/dist/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.js +1 -1
  519. package/dist/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.d.ts +1 -1
  520. package/dist/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.js +1 -1
  521. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -1
  522. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +12 -1
  523. package/dist/serialization/resources/index.d.ts +1 -0
  524. package/dist/serialization/resources/index.js +2 -1
  525. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -1
  526. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +12 -1
  527. package/dist/serialization/resources/products/client/requests/ProductSkuCreate.d.ts +4 -4
  528. package/dist/serialization/resources/products/client/requests/ProductSkuCreate.js +4 -4
  529. package/dist/serialization/resources/products/types/ProductSkuCreateProduct.d.ts +13 -0
  530. package/dist/serialization/resources/products/types/ProductSkuCreateProduct.js +34 -0
  531. package/dist/serialization/resources/products/types/ProductSkuCreateSku.d.ts +13 -0
  532. package/dist/serialization/resources/products/types/ProductSkuCreateSku.js +34 -0
  533. package/dist/serialization/resources/products/types/index.d.ts +2 -0
  534. package/dist/serialization/resources/products/types/index.js +2 -0
  535. package/dist/serialization/resources/sites/index.d.ts +1 -0
  536. package/dist/serialization/resources/sites/index.js +1 -0
  537. package/dist/serialization/resources/sites/resources/comments/index.d.ts +1 -0
  538. package/dist/serialization/resources/sites/resources/comments/index.js +17 -0
  539. package/dist/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +10 -0
  540. package/dist/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +31 -0
  541. package/dist/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +10 -0
  542. package/dist/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +31 -0
  543. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +10 -0
  544. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +31 -0
  545. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +10 -0
  546. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +31 -0
  547. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +10 -0
  548. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +31 -0
  549. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +10 -0
  550. package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +31 -0
  551. package/dist/serialization/resources/sites/resources/comments/types/index.d.ts +6 -0
  552. package/dist/serialization/resources/sites/resources/comments/types/index.js +22 -0
  553. package/dist/serialization/resources/sites/resources/index.d.ts +5 -0
  554. package/dist/serialization/resources/sites/resources/index.js +34 -0
  555. package/dist/serialization/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
  556. package/dist/serialization/resources/sites/resources/wellKnown/client/index.js +17 -0
  557. package/dist/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.d.ts +12 -0
  558. package/dist/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +33 -0
  559. package/dist/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +15 -0
  560. package/dist/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +36 -0
  561. package/dist/serialization/resources/sites/resources/wellKnown/client/requests/index.d.ts +2 -0
  562. package/dist/serialization/resources/sites/resources/wellKnown/client/requests/index.js +7 -0
  563. package/dist/serialization/resources/sites/resources/wellKnown/index.d.ts +2 -0
  564. package/dist/serialization/resources/sites/resources/wellKnown/index.js +18 -0
  565. package/dist/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +10 -0
  566. package/dist/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +31 -0
  567. package/dist/serialization/resources/sites/resources/wellKnown/types/index.d.ts +1 -0
  568. package/dist/serialization/resources/sites/resources/wellKnown/types/index.js +17 -0
  569. package/dist/serialization/resources/workspaces/index.d.ts +1 -0
  570. package/dist/serialization/resources/workspaces/index.js +17 -0
  571. package/dist/serialization/resources/workspaces/resources/auditLogs/index.d.ts +1 -0
  572. package/dist/serialization/resources/workspaces/resources/auditLogs/index.js +17 -0
  573. package/dist/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +10 -0
  574. package/dist/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +37 -0
  575. package/dist/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +10 -0
  576. package/dist/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +31 -0
  577. package/dist/serialization/resources/workspaces/resources/auditLogs/types/index.d.ts +2 -0
  578. package/dist/serialization/resources/workspaces/resources/auditLogs/types/index.js +18 -0
  579. package/dist/serialization/resources/workspaces/resources/index.d.ts +2 -0
  580. package/dist/serialization/resources/workspaces/resources/index.js +31 -0
  581. package/dist/serialization/types/CommentReply.d.ts +25 -0
  582. package/dist/serialization/types/CommentReply.js +46 -0
  583. package/dist/serialization/types/CommentReplyAuthor.d.ts +14 -0
  584. package/dist/serialization/types/CommentReplyAuthor.js +35 -0
  585. package/dist/serialization/types/CommentReplyList.d.ts +15 -0
  586. package/dist/serialization/types/CommentReplyList.js +36 -0
  587. package/dist/serialization/types/CommentReplyListPagination.d.ts +14 -0
  588. package/dist/serialization/types/CommentReplyListPagination.js +35 -0
  589. package/dist/serialization/types/CommentReplyMentionedUsersItem.d.ts +14 -0
  590. package/dist/serialization/types/CommentReplyMentionedUsersItem.js +35 -0
  591. package/dist/serialization/types/CommentThread.d.ts +26 -0
  592. package/dist/serialization/types/CommentThread.js +47 -0
  593. package/dist/serialization/types/CommentThreadAuthor.d.ts +14 -0
  594. package/dist/serialization/types/CommentThreadAuthor.js +35 -0
  595. package/dist/serialization/types/CommentThreadList.d.ts +15 -0
  596. package/dist/serialization/types/CommentThreadList.js +36 -0
  597. package/dist/serialization/types/CommentThreadListPagination.d.ts +14 -0
  598. package/dist/serialization/types/CommentThreadListPagination.js +35 -0
  599. package/dist/serialization/types/CommentThreadMentionedUsersItem.d.ts +14 -0
  600. package/dist/serialization/types/CommentThreadMentionedUsersItem.js +35 -0
  601. package/dist/serialization/types/CustomRole.d.ts +13 -0
  602. package/dist/serialization/types/CustomRole.js +34 -0
  603. package/dist/serialization/types/CustomRoleAuditLogItem.d.ts +15 -0
  604. package/dist/serialization/types/CustomRoleAuditLogItem.js +36 -0
  605. package/dist/serialization/types/CustomRoleAuditLogItemEventSubType.d.ts +10 -0
  606. package/dist/serialization/types/CustomRoleAuditLogItemEventSubType.js +31 -0
  607. package/dist/serialization/types/FieldType.d.ts +1 -1
  608. package/dist/serialization/types/FieldType.js +3 -1
  609. package/dist/serialization/types/Node.d.ts +17 -1
  610. package/dist/serialization/types/Node.js +8 -0
  611. package/dist/serialization/types/SearchButtonNode.d.ts +14 -0
  612. package/dist/serialization/types/SearchButtonNode.js +35 -0
  613. package/dist/serialization/types/SearchButtonNodeWrite.d.ts +13 -0
  614. package/dist/serialization/types/SearchButtonNodeWrite.js +34 -0
  615. package/dist/serialization/types/SelectNode.d.ts +15 -0
  616. package/dist/serialization/types/SelectNode.js +36 -0
  617. package/dist/serialization/types/SelectNodeChoicesItem.d.ts +13 -0
  618. package/dist/serialization/types/SelectNodeChoicesItem.js +34 -0
  619. package/dist/serialization/types/SelectNodeWrite.d.ts +14 -0
  620. package/dist/serialization/types/SelectNodeWrite.js +35 -0
  621. package/dist/serialization/types/SelectNodeWriteChoicesItem.d.ts +13 -0
  622. package/dist/serialization/types/SelectNodeWriteChoicesItem.js +34 -0
  623. package/dist/serialization/types/SiteMembership.d.ts +21 -0
  624. package/dist/serialization/types/SiteMembership.js +42 -0
  625. package/dist/serialization/types/SiteMembershipAuditLogItem.d.ts +15 -0
  626. package/dist/serialization/types/SiteMembershipAuditLogItem.js +36 -0
  627. package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +10 -0
  628. package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.js +31 -0
  629. package/dist/serialization/types/SkuFieldData.d.ts +4 -0
  630. package/dist/serialization/types/SkuFieldData.js +4 -0
  631. package/dist/serialization/types/SkuFieldDataPrice.d.ts +1 -0
  632. package/dist/serialization/types/SkuFieldDataPrice.js +1 -0
  633. package/dist/serialization/types/StaticFieldType.d.ts +1 -1
  634. package/dist/serialization/types/StaticFieldType.js +1 -1
  635. package/dist/serialization/types/SubmitButtonNode.d.ts +15 -0
  636. package/dist/serialization/types/SubmitButtonNode.js +36 -0
  637. package/dist/serialization/types/SubmitButtonNodeWrite.d.ts +14 -0
  638. package/dist/serialization/types/SubmitButtonNodeWrite.js +35 -0
  639. package/dist/serialization/types/TextInputNode.d.ts +14 -0
  640. package/dist/serialization/types/TextInputNode.js +35 -0
  641. package/dist/serialization/types/TextInputNodeWrite.d.ts +13 -0
  642. package/dist/serialization/types/TextInputNodeWrite.js +34 -0
  643. package/dist/serialization/types/TriggerType.d.ts +1 -1
  644. package/dist/serialization/types/TriggerType.js +1 -0
  645. package/dist/serialization/types/UserAccess.d.ts +15 -0
  646. package/dist/serialization/types/UserAccess.js +36 -0
  647. package/dist/serialization/types/UserAccessAuditLogItem.d.ts +15 -0
  648. package/dist/serialization/types/UserAccessAuditLogItem.js +36 -0
  649. package/dist/serialization/types/UserAccessAuditLogItemEventSubType.d.ts +10 -0
  650. package/dist/serialization/types/UserAccessAuditLogItemEventSubType.js +31 -0
  651. package/dist/serialization/types/WorkspaceAuditLogItem.d.ts +37 -0
  652. package/dist/serialization/types/WorkspaceAuditLogItem.js +54 -0
  653. package/dist/serialization/types/WorkspaceAuditLogItemActor.d.ts +13 -0
  654. package/dist/serialization/types/WorkspaceAuditLogItemActor.js +34 -0
  655. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +10 -0
  656. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +31 -0
  657. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.d.ts +13 -0
  658. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +34 -0
  659. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.d.ts +13 -0
  660. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +34 -0
  661. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +10 -0
  662. package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +31 -0
  663. package/dist/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +10 -0
  664. package/dist/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +31 -0
  665. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +10 -0
  666. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +31 -0
  667. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.d.ts +13 -0
  668. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +34 -0
  669. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +10 -0
  670. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +31 -0
  671. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +10 -0
  672. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +31 -0
  673. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.d.ts +13 -0
  674. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +34 -0
  675. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +10 -0
  676. package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +31 -0
  677. package/dist/serialization/types/WorkspaceAuditLogItemWorkspace.d.ts +13 -0
  678. package/dist/serialization/types/WorkspaceAuditLogItemWorkspace.js +34 -0
  679. package/dist/serialization/types/WorkspaceAuditLogResponse.d.ts +15 -0
  680. package/dist/serialization/types/WorkspaceAuditLogResponse.js +36 -0
  681. package/dist/serialization/types/WorkspaceInvitation.d.ts +19 -0
  682. package/dist/serialization/types/WorkspaceInvitation.js +40 -0
  683. package/dist/serialization/types/WorkspaceInvitationAuditLogItem.d.ts +15 -0
  684. package/dist/serialization/types/WorkspaceInvitationAuditLogItem.js +36 -0
  685. package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +10 -0
  686. package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +37 -0
  687. package/dist/serialization/types/WorkspaceMembership.d.ts +19 -0
  688. package/dist/serialization/types/WorkspaceMembership.js +40 -0
  689. package/dist/serialization/types/WorkspaceMembershipAuditLogItem.d.ts +15 -0
  690. package/dist/serialization/types/WorkspaceMembershipAuditLogItem.js +36 -0
  691. package/dist/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +10 -0
  692. package/dist/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.js +31 -0
  693. package/dist/serialization/types/index.d.ts +51 -1
  694. package/dist/serialization/types/index.js +51 -1
  695. package/dist/version.d.ts +1 -1
  696. package/dist/version.js +1 -1
  697. package/dist/wrapper/AssetsClient.d.ts +12 -0
  698. package/dist/wrapper/AssetsClient.js +16 -0
  699. package/dist/wrapper/AssetsUtilitiesClient.d.ts +49 -0
  700. package/dist/wrapper/AssetsUtilitiesClient.js +121 -0
  701. package/dist/wrapper/WebflowClient.d.ts +3 -0
  702. package/dist/wrapper/WebflowClient.js +5 -0
  703. package/environments.d.ts +15 -2
  704. package/environments.js +7 -1
  705. package/package.json +7 -3
  706. package/reference.md +674 -16
  707. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.d.ts +1 -1
  708. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.js +1 -1
  709. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.d.ts +1 -1
  710. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.js +1 -1
  711. package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -1
  712. package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +12 -1
  713. package/serialization/resources/index.d.ts +1 -0
  714. package/serialization/resources/index.js +2 -1
  715. package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -1
  716. package/serialization/resources/pages/types/PageDomWriteNodesItem.js +12 -1
  717. package/serialization/resources/products/client/requests/ProductSkuCreate.d.ts +4 -4
  718. package/serialization/resources/products/client/requests/ProductSkuCreate.js +4 -4
  719. package/serialization/resources/products/types/ProductSkuCreateProduct.d.ts +13 -0
  720. package/serialization/resources/products/types/ProductSkuCreateProduct.js +34 -0
  721. package/serialization/resources/products/types/ProductSkuCreateSku.d.ts +13 -0
  722. package/serialization/resources/products/types/ProductSkuCreateSku.js +34 -0
  723. package/serialization/resources/products/types/index.d.ts +2 -0
  724. package/serialization/resources/products/types/index.js +2 -0
  725. package/serialization/resources/sites/index.d.ts +1 -0
  726. package/serialization/resources/sites/index.js +1 -0
  727. package/serialization/resources/sites/resources/comments/index.d.ts +1 -0
  728. package/serialization/resources/sites/resources/comments/index.js +17 -0
  729. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +10 -0
  730. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +31 -0
  731. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +10 -0
  732. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +31 -0
  733. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +10 -0
  734. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +31 -0
  735. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +10 -0
  736. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +31 -0
  737. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +10 -0
  738. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +31 -0
  739. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +10 -0
  740. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +31 -0
  741. package/serialization/resources/sites/resources/comments/types/index.d.ts +6 -0
  742. package/serialization/resources/sites/resources/comments/types/index.js +22 -0
  743. package/serialization/resources/sites/resources/index.d.ts +5 -0
  744. package/serialization/resources/sites/resources/index.js +34 -0
  745. package/serialization/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
  746. package/serialization/resources/sites/resources/wellKnown/client/index.js +17 -0
  747. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.d.ts +12 -0
  748. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +33 -0
  749. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +15 -0
  750. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +36 -0
  751. package/serialization/resources/sites/resources/wellKnown/client/requests/index.d.ts +2 -0
  752. package/serialization/resources/sites/resources/wellKnown/client/requests/index.js +7 -0
  753. package/serialization/resources/sites/resources/wellKnown/index.d.ts +2 -0
  754. package/serialization/resources/sites/resources/wellKnown/index.js +18 -0
  755. package/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +10 -0
  756. package/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +31 -0
  757. package/serialization/resources/sites/resources/wellKnown/types/index.d.ts +1 -0
  758. package/serialization/resources/sites/resources/wellKnown/types/index.js +17 -0
  759. package/serialization/resources/workspaces/index.d.ts +1 -0
  760. package/serialization/resources/workspaces/index.js +17 -0
  761. package/serialization/resources/workspaces/resources/auditLogs/index.d.ts +1 -0
  762. package/serialization/resources/workspaces/resources/auditLogs/index.js +17 -0
  763. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +10 -0
  764. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +37 -0
  765. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +10 -0
  766. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +31 -0
  767. package/serialization/resources/workspaces/resources/auditLogs/types/index.d.ts +2 -0
  768. package/serialization/resources/workspaces/resources/auditLogs/types/index.js +18 -0
  769. package/serialization/resources/workspaces/resources/index.d.ts +2 -0
  770. package/serialization/resources/workspaces/resources/index.js +31 -0
  771. package/serialization/types/CommentReply.d.ts +25 -0
  772. package/serialization/types/CommentReply.js +46 -0
  773. package/serialization/types/CommentReplyAuthor.d.ts +14 -0
  774. package/serialization/types/CommentReplyAuthor.js +35 -0
  775. package/serialization/types/CommentReplyList.d.ts +15 -0
  776. package/serialization/types/CommentReplyList.js +36 -0
  777. package/serialization/types/CommentReplyListPagination.d.ts +14 -0
  778. package/serialization/types/CommentReplyListPagination.js +35 -0
  779. package/serialization/types/CommentReplyMentionedUsersItem.d.ts +14 -0
  780. package/serialization/types/CommentReplyMentionedUsersItem.js +35 -0
  781. package/serialization/types/CommentThread.d.ts +26 -0
  782. package/serialization/types/CommentThread.js +47 -0
  783. package/serialization/types/CommentThreadAuthor.d.ts +14 -0
  784. package/serialization/types/CommentThreadAuthor.js +35 -0
  785. package/serialization/types/CommentThreadList.d.ts +15 -0
  786. package/serialization/types/CommentThreadList.js +36 -0
  787. package/serialization/types/CommentThreadListPagination.d.ts +14 -0
  788. package/serialization/types/CommentThreadListPagination.js +35 -0
  789. package/serialization/types/CommentThreadMentionedUsersItem.d.ts +14 -0
  790. package/serialization/types/CommentThreadMentionedUsersItem.js +35 -0
  791. package/serialization/types/CustomRole.d.ts +13 -0
  792. package/serialization/types/CustomRole.js +34 -0
  793. package/serialization/types/CustomRoleAuditLogItem.d.ts +15 -0
  794. package/serialization/types/CustomRoleAuditLogItem.js +36 -0
  795. package/serialization/types/CustomRoleAuditLogItemEventSubType.d.ts +10 -0
  796. package/serialization/types/CustomRoleAuditLogItemEventSubType.js +31 -0
  797. package/serialization/types/FieldType.d.ts +1 -1
  798. package/serialization/types/FieldType.js +3 -1
  799. package/serialization/types/Node.d.ts +17 -1
  800. package/serialization/types/Node.js +8 -0
  801. package/serialization/types/SearchButtonNode.d.ts +14 -0
  802. package/serialization/types/SearchButtonNode.js +35 -0
  803. package/serialization/types/SearchButtonNodeWrite.d.ts +13 -0
  804. package/serialization/types/SearchButtonNodeWrite.js +34 -0
  805. package/serialization/types/SelectNode.d.ts +15 -0
  806. package/serialization/types/SelectNode.js +36 -0
  807. package/serialization/types/SelectNodeChoicesItem.d.ts +13 -0
  808. package/serialization/types/SelectNodeChoicesItem.js +34 -0
  809. package/serialization/types/SelectNodeWrite.d.ts +14 -0
  810. package/serialization/types/SelectNodeWrite.js +35 -0
  811. package/serialization/types/SelectNodeWriteChoicesItem.d.ts +13 -0
  812. package/serialization/types/SelectNodeWriteChoicesItem.js +34 -0
  813. package/serialization/types/SiteMembership.d.ts +21 -0
  814. package/serialization/types/SiteMembership.js +42 -0
  815. package/serialization/types/SiteMembershipAuditLogItem.d.ts +15 -0
  816. package/serialization/types/SiteMembershipAuditLogItem.js +36 -0
  817. package/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +10 -0
  818. package/serialization/types/SiteMembershipAuditLogItemEventSubType.js +31 -0
  819. package/serialization/types/SkuFieldData.d.ts +4 -0
  820. package/serialization/types/SkuFieldData.js +4 -0
  821. package/serialization/types/SkuFieldDataPrice.d.ts +1 -0
  822. package/serialization/types/SkuFieldDataPrice.js +1 -0
  823. package/serialization/types/StaticFieldType.d.ts +1 -1
  824. package/serialization/types/StaticFieldType.js +1 -1
  825. package/serialization/types/SubmitButtonNode.d.ts +15 -0
  826. package/serialization/types/SubmitButtonNode.js +36 -0
  827. package/serialization/types/SubmitButtonNodeWrite.d.ts +14 -0
  828. package/serialization/types/SubmitButtonNodeWrite.js +35 -0
  829. package/serialization/types/TextInputNode.d.ts +14 -0
  830. package/serialization/types/TextInputNode.js +35 -0
  831. package/serialization/types/TextInputNodeWrite.d.ts +13 -0
  832. package/serialization/types/TextInputNodeWrite.js +34 -0
  833. package/serialization/types/TriggerType.d.ts +1 -1
  834. package/serialization/types/TriggerType.js +1 -0
  835. package/serialization/types/UserAccess.d.ts +15 -0
  836. package/serialization/types/UserAccess.js +36 -0
  837. package/serialization/types/UserAccessAuditLogItem.d.ts +15 -0
  838. package/serialization/types/UserAccessAuditLogItem.js +36 -0
  839. package/serialization/types/UserAccessAuditLogItemEventSubType.d.ts +10 -0
  840. package/serialization/types/UserAccessAuditLogItemEventSubType.js +31 -0
  841. package/serialization/types/WorkspaceAuditLogItem.d.ts +37 -0
  842. package/serialization/types/WorkspaceAuditLogItem.js +54 -0
  843. package/serialization/types/WorkspaceAuditLogItemActor.d.ts +13 -0
  844. package/serialization/types/WorkspaceAuditLogItemActor.js +34 -0
  845. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +10 -0
  846. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +31 -0
  847. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.d.ts +13 -0
  848. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +34 -0
  849. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.d.ts +13 -0
  850. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +34 -0
  851. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +10 -0
  852. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +31 -0
  853. package/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +10 -0
  854. package/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +31 -0
  855. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +10 -0
  856. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +31 -0
  857. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.d.ts +13 -0
  858. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +34 -0
  859. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +10 -0
  860. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +31 -0
  861. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +10 -0
  862. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +31 -0
  863. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.d.ts +13 -0
  864. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +34 -0
  865. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +10 -0
  866. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +31 -0
  867. package/serialization/types/WorkspaceAuditLogItemWorkspace.d.ts +13 -0
  868. package/serialization/types/WorkspaceAuditLogItemWorkspace.js +34 -0
  869. package/serialization/types/WorkspaceAuditLogResponse.d.ts +15 -0
  870. package/serialization/types/WorkspaceAuditLogResponse.js +36 -0
  871. package/serialization/types/WorkspaceInvitation.d.ts +19 -0
  872. package/serialization/types/WorkspaceInvitation.js +40 -0
  873. package/serialization/types/WorkspaceInvitationAuditLogItem.d.ts +15 -0
  874. package/serialization/types/WorkspaceInvitationAuditLogItem.js +36 -0
  875. package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +10 -0
  876. package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +37 -0
  877. package/serialization/types/WorkspaceMembership.d.ts +19 -0
  878. package/serialization/types/WorkspaceMembership.js +40 -0
  879. package/serialization/types/WorkspaceMembershipAuditLogItem.d.ts +15 -0
  880. package/serialization/types/WorkspaceMembershipAuditLogItem.js +36 -0
  881. package/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +10 -0
  882. package/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.js +31 -0
  883. package/serialization/types/index.d.ts +51 -1
  884. package/serialization/types/index.js +51 -1
  885. package/version.d.ts +1 -1
  886. package/version.js +1 -1
  887. package/wrapper/AssetsClient.d.ts +12 -0
  888. package/wrapper/AssetsClient.js +16 -0
  889. package/wrapper/AssetsUtilitiesClient.d.ts +49 -0
  890. package/wrapper/AssetsUtilitiesClient.js +121 -0
  891. package/wrapper/WebflowClient.d.ts +3 -0
  892. package/wrapper/WebflowClient.js +5 -0
@@ -0,0 +1,325 @@
1
+ types:
2
+ CommentsListCommentThreadsRequestSortBy:
3
+ enum:
4
+ - createdOn
5
+ - lastUpdated
6
+ source:
7
+ openapi: ../../../openapi/referenced-specs/v2.yml
8
+ CommentsListCommentThreadsRequestSortOrder:
9
+ enum:
10
+ - asc
11
+ - desc
12
+ source:
13
+ openapi: ../../../openapi/referenced-specs/v2.yml
14
+ CommentsGetCommentThreadRequestSortBy:
15
+ enum:
16
+ - createdOn
17
+ - lastUpdated
18
+ source:
19
+ openapi: ../../../openapi/referenced-specs/v2.yml
20
+ CommentsGetCommentThreadRequestSortOrder:
21
+ enum:
22
+ - asc
23
+ - desc
24
+ source:
25
+ openapi: ../../../openapi/referenced-specs/v2.yml
26
+ CommentsListCommentRepliesRequestSortBy:
27
+ enum:
28
+ - createdOn
29
+ - lastUpdated
30
+ source:
31
+ openapi: ../../../openapi/referenced-specs/v2.yml
32
+ CommentsListCommentRepliesRequestSortOrder:
33
+ enum:
34
+ - asc
35
+ - desc
36
+ source:
37
+ openapi: ../../../openapi/referenced-specs/v2.yml
38
+ imports:
39
+ root: ../__package__.yml
40
+ service:
41
+ auth: false
42
+ base-path: ''
43
+ endpoints:
44
+ list-comment-threads:
45
+ path: /sites/{site_id}/comments
46
+ method: GET
47
+ auth: true
48
+ docs: |
49
+ List all comment threads for a site.
50
+
51
+ <Note title="Timing of comment threads">
52
+ There may be a delay of up to 5 minutes before new comments appear in the system.
53
+ </Note>
54
+
55
+ Required scope | `comments:read`
56
+ source:
57
+ openapi: ../../../openapi/referenced-specs/v2.yml
58
+ path-parameters:
59
+ site_id:
60
+ type: string
61
+ docs: Unique identifier for a Site
62
+ display-name: List Comment Threads
63
+ request:
64
+ name: CommentsListCommentThreadsRequest
65
+ query-parameters:
66
+ localeId:
67
+ type: optional<string>
68
+ docs: >-
69
+ Unique identifier for a specific locale. Applicable, when using
70
+ localization.
71
+ offset:
72
+ type: optional<double>
73
+ docs: >-
74
+ Offset used for pagination if the results have more than limit
75
+ records
76
+ limit:
77
+ type: optional<double>
78
+ docs: 'Maximum number of records to be returned (max limit: 100)'
79
+ sortBy:
80
+ type: optional<CommentsListCommentThreadsRequestSortBy>
81
+ docs: >-
82
+ Sort results by the provided value. Only allowed when sortOrder is
83
+ provided.
84
+ sortOrder:
85
+ type: optional<CommentsListCommentThreadsRequestSortOrder>
86
+ docs: Sorts the results by asc or desc
87
+ response:
88
+ docs: Request was successful
89
+ type: root.CommentThreadList
90
+ status-code: 200
91
+ errors:
92
+ - root.BadRequestError
93
+ - root.UnauthorizedError
94
+ - root.NotFoundError
95
+ - root.TooManyRequestsError
96
+ - root.InternalServerError
97
+ examples:
98
+ - path-parameters:
99
+ site_id: 580e63e98c9a982ac9b8b741
100
+ query-parameters:
101
+ localeId: 65427cf400e02b306eaa04a0
102
+ response:
103
+ body:
104
+ comments:
105
+ - id: 679d2ddb5196117ad04d1ffa
106
+ siteId: 679826b3b20b045e176bc4b5
107
+ pageId: 679826b3b20b045e176bc4bc
108
+ localeId: 67993753d910db250db64b3e
109
+ itemId: 580e64008c9a982ac9b8b754
110
+ breakpoint: main
111
+ url: >-
112
+ https://webflow.com/design/site-slug-4ec832?workflow=comment&commentId=679d2ddb5196117ad04d1ff8&pageId=679826b3b20b045e176bc4bc
113
+ content: 'Let''s go to the pub! [[6287ec36a841b25637c663df]] '
114
+ isResolved: false
115
+ author:
116
+ userId: 6287ec36a841b25637c663df
117
+ email: ford.prefect@heartofgold.spaceship
118
+ name: Ford Prefect
119
+ mentionedUsers:
120
+ - userId: 6287ec36a841b25637c663df
121
+ email: arthur.dent@heartofgold.spaceship
122
+ name: Arthur Dent
123
+ createdOn: '2025-01-31T20:08:59.759Z'
124
+ lastUpdated: '2025-01-31T20:08:59.759Z'
125
+ - id: 679d2ddb5196117ad04d1ffc
126
+ siteId: 679826b3b20b045e176bc4b5
127
+ pageId: 679826b3b20b045e176bc4bc
128
+ localeId: 67993753d910db250db64b3e
129
+ itemId: 580e64008c9a982ac9b8b754
130
+ breakpoint: main
131
+ url: >-
132
+ https://webflow.com/design/site-slug-4ec832?workflow=comment&commentId=679d2ddb5196117ad04d1ff8&pageId=679826b3b20b045e176bc4bc
133
+ content: >-
134
+ You have five minutes left to drink it
135
+ [[6287ec36a841b25637c663df]]
136
+ isResolved: false
137
+ author:
138
+ userId: 6287ec36a841b25637c663df
139
+ email: ford.prefect@heartofgold.spaceship
140
+ name: Ford Prefect
141
+ mentionedUsers:
142
+ - userId: 6287ec36a841b25637c663df
143
+ email: arthur.dent@heartofgold.spaceship
144
+ name: Arthur Dent
145
+ createdOn: '2025-01-31T20:08:59.759Z'
146
+ lastUpdated: '2025-01-31T20:08:59.759Z'
147
+ pagination:
148
+ limit: 2
149
+ offset: 0
150
+ total: 2
151
+ get-comment-thread:
152
+ path: /sites/{site_id}/comments/{comment_thread_id}
153
+ method: GET
154
+ auth: true
155
+ docs: |
156
+ Get details of a specific comment thread.
157
+
158
+ <Note title="Timing of comment threads">
159
+ There may be a delay of up to 5 minutes before new comments appear in the system.
160
+ </Note>
161
+
162
+ Required scope | `comments:read`
163
+ source:
164
+ openapi: ../../../openapi/referenced-specs/v2.yml
165
+ path-parameters:
166
+ site_id:
167
+ type: string
168
+ docs: Unique identifier for a Site
169
+ comment_thread_id:
170
+ type: string
171
+ docs: Unique identifier for a Comment Thread
172
+ display-name: Get Comment Thread
173
+ request:
174
+ name: CommentsGetCommentThreadRequest
175
+ query-parameters:
176
+ localeId:
177
+ type: optional<string>
178
+ docs: >-
179
+ Unique identifier for a specific locale. Applicable, when using
180
+ localization.
181
+ offset:
182
+ type: optional<double>
183
+ docs: >-
184
+ Offset used for pagination if the results have more than limit
185
+ records
186
+ limit:
187
+ type: optional<double>
188
+ docs: 'Maximum number of records to be returned (max limit: 100)'
189
+ sortBy:
190
+ type: optional<CommentsGetCommentThreadRequestSortBy>
191
+ docs: >-
192
+ Sort results by the provided value. Only allowed when sortOrder is
193
+ provided.
194
+ sortOrder:
195
+ type: optional<CommentsGetCommentThreadRequestSortOrder>
196
+ docs: Sorts the results by asc or desc
197
+ response:
198
+ docs: Request was successful
199
+ type: root.CommentThread
200
+ status-code: 200
201
+ errors:
202
+ - root.BadRequestError
203
+ - root.UnauthorizedError
204
+ - root.NotFoundError
205
+ - root.TooManyRequestsError
206
+ - root.InternalServerError
207
+ examples:
208
+ - path-parameters:
209
+ site_id: 580e63e98c9a982ac9b8b741
210
+ comment_thread_id: 580e63e98c9a982ac9b8b741
211
+ query-parameters:
212
+ localeId: 65427cf400e02b306eaa04a0
213
+ response:
214
+ body:
215
+ id: 580e64008c9a982ac9b8b754
216
+ siteId: 580e64008c9a982ac9b8b754
217
+ pageId: 580e64008c9a982ac9b8b754
218
+ localeId: 580e64008c9a982ac9b8b754
219
+ itemId: 580e64008c9a982ac9b8b754
220
+ breakpoint: main
221
+ url: >-
222
+ https://webflow.com/design/site-slug-4ec832?workflow=comment&commentId=679d2ddb5196117ad04d1ff8&pageId=679826b3b20b045e176bc4bc
223
+ content: This is a comment reply
224
+ isResolved: true
225
+ author:
226
+ userId: userId
227
+ email: email
228
+ name: name
229
+ mentionedUsers:
230
+ - userId: 6287ec36a841b25637c663df
231
+ email: arthur.dent@heartofgold.spaceship
232
+ name: Arthur Dent
233
+ createdOn: '2023-03-17T18:47:35.560Z'
234
+ lastUpdated: '2023-03-17T18:47:35.560Z'
235
+ list-comment-replies:
236
+ path: /sites/{site_id}/comments/{comment_thread_id}/replies
237
+ method: GET
238
+ auth: true
239
+ docs: |
240
+ List all replies to a specific comment thread.
241
+
242
+ <Note title="Timing of comment threads">
243
+ There may be a delay of up to 5 minutes before new comments appear in the system.
244
+ </Note>
245
+
246
+ Required scope | `comments:read`
247
+ source:
248
+ openapi: ../../../openapi/referenced-specs/v2.yml
249
+ path-parameters:
250
+ site_id:
251
+ type: string
252
+ docs: Unique identifier for a Site
253
+ comment_thread_id:
254
+ type: string
255
+ docs: Unique identifier for a Comment Thread
256
+ display-name: List Comment Replies
257
+ request:
258
+ name: CommentsListCommentRepliesRequest
259
+ query-parameters:
260
+ localeId:
261
+ type: optional<string>
262
+ docs: >-
263
+ Unique identifier for a specific locale. Applicable, when using
264
+ localization.
265
+ offset:
266
+ type: optional<double>
267
+ docs: >-
268
+ Offset used for pagination if the results have more than limit
269
+ records
270
+ limit:
271
+ type: optional<double>
272
+ docs: 'Maximum number of records to be returned (max limit: 100)'
273
+ sortBy:
274
+ type: optional<CommentsListCommentRepliesRequestSortBy>
275
+ docs: >-
276
+ Sort results by the provided value. Only allowed when sortOrder is
277
+ provided.
278
+ sortOrder:
279
+ type: optional<CommentsListCommentRepliesRequestSortOrder>
280
+ docs: Sorts the results by asc or desc
281
+ response:
282
+ docs: Request was successful
283
+ type: root.CommentReplyList
284
+ status-code: 200
285
+ errors:
286
+ - root.BadRequestError
287
+ - root.UnauthorizedError
288
+ - root.NotFoundError
289
+ - root.TooManyRequestsError
290
+ - root.InternalServerError
291
+ examples:
292
+ - path-parameters:
293
+ site_id: 580e63e98c9a982ac9b8b741
294
+ comment_thread_id: 580e63e98c9a982ac9b8b741
295
+ query-parameters:
296
+ localeId: 65427cf400e02b306eaa04a0
297
+ response:
298
+ body:
299
+ comments:
300
+ - id: 679d2ddb5196117ad04d1ffa
301
+ commentId: 679d2ddb5196117ad04d1ff8
302
+ siteId: 679826b3b20b045e176bc4b5
303
+ pageId: 679826b3b20b045e176bc4bc
304
+ localeId: 67993753d910db250db64b3e
305
+ breakpoint: main
306
+ content: >-
307
+ This comment mentions another user
308
+ [[6287ec36a841b25637c663df]]
309
+ isResolved: false
310
+ author:
311
+ id: id
312
+ email: email
313
+ name: name
314
+ mentionedUsers:
315
+ - id: id
316
+ email: arthur.dent@example.com
317
+ name: Arthur Dent
318
+ lastUpdated: '2025-01-31T20:08:59.759Z'
319
+ createdOn: '2025-01-31T20:08:59.759Z'
320
+ pagination:
321
+ limit: 2
322
+ offset: 0
323
+ total: 1
324
+ source:
325
+ openapi: ../../../openapi/referenced-specs/v2.yml
@@ -8,9 +8,14 @@ service:
8
8
  path: /sites/{site_id}/robots_txt
9
9
  method: GET
10
10
  auth: true
11
- docs: |
11
+ docs: >
12
12
  Retrieve the robots.txt configuration for various user agents.
13
13
 
14
+
15
+ <Warning title="Enterprise Only">This endpoint requires an Enterprise
16
+ workspace.</Warning>
17
+
18
+
14
19
  Required scope: `site_config:read`
15
20
  source:
16
21
  openapi: ../../../openapi/referenced-specs/v2.yml
@@ -46,9 +51,14 @@ service:
46
51
  path: /sites/{site_id}/robots_txt
47
52
  method: PUT
48
53
  auth: true
49
- docs: |
54
+ docs: >
50
55
  Replace the `robots.txt` configuration for various user agents.
51
56
 
57
+
58
+ <Warning title="Enterprise Only">This endpoint requires an Enterprise
59
+ workspace.</Warning>
60
+
61
+
52
62
  Required scope | `site_config:write`
53
63
  source:
54
64
  openapi: ../../../openapi/referenced-specs/v2.yml
@@ -107,6 +117,10 @@ service:
107
117
  access unrestricted unless other directives apply.
108
118
 
109
119
 
120
+ <Warning title="Enterprise Only">This endpoint requires an Enterprise
121
+ workspace.</Warning>
122
+
123
+
110
124
  Required scope: `site_config:write`
111
125
  source:
112
126
  openapi: ../../../openapi/referenced-specs/v2.yml
@@ -152,9 +166,14 @@ service:
152
166
  path: /sites/{site_id}/robots_txt
153
167
  method: PATCH
154
168
  auth: true
155
- docs: |
169
+ docs: >
156
170
  Update the `robots.txt` configuration for various user agents.
157
171
 
172
+
173
+ <Warning title="Enterprise Only">This endpoint requires an Enterprise
174
+ workspace.</Warning>
175
+
176
+
158
177
  Required scope | `site_config:write`
159
178
  source:
160
179
  openapi: ../../../openapi/referenced-specs/v2.yml
@@ -0,0 +1,114 @@
1
+ types:
2
+ WellKnownFileContentType:
3
+ enum:
4
+ - value: application/json
5
+ name: ApplicationJson
6
+ - value: text/plain
7
+ name: TextPlain
8
+ docs: The content type of the file. Defaults to application/json
9
+ default: application/json
10
+ inline: true
11
+ source:
12
+ openapi: ../../../openapi/referenced-specs/v2.yml
13
+ imports:
14
+ root: ../__package__.yml
15
+ service:
16
+ auth: false
17
+ base-path: ''
18
+ endpoints:
19
+ put:
20
+ path: /sites/{site_id}/well_known
21
+ method: PUT
22
+ auth: true
23
+ docs: >
24
+ Upload a supported well-known file to a site.
25
+
26
+
27
+ The current restrictions on well-known files are as follows:
28
+ - Each file must be smaller than 100kb
29
+ - Less than 30 total files
30
+ - Have one of the following file extensions (or no extension): `.txt`, `.json`, `.noext`
31
+
32
+ <Note title=".noext">
33
+ `.noext` is a special file extension that removes other extensions. For example, `apple-app-site-association.noext.txt` will be uploaded as `apple-app-site-association`. Use this extension for tools that have trouble uploading extensionless files.
34
+ </Note>
35
+
36
+ <Warning title="Enterprise Only">This endpoint requires an Enterprise
37
+ workspace.</Warning>
38
+
39
+
40
+ Required scope: `site_config:write`
41
+ source:
42
+ openapi: ../../../openapi/referenced-specs/v2.yml
43
+ path-parameters:
44
+ site_id:
45
+ type: string
46
+ docs: Unique identifier for a Site
47
+ display-name: Set a well-known file
48
+ request:
49
+ name: WellKnownFile
50
+ body:
51
+ properties:
52
+ fileName:
53
+ type: string
54
+ docs: The name of the file
55
+ fileData:
56
+ type: string
57
+ docs: The contents of the file
58
+ contentType:
59
+ type: optional<WellKnownFileContentType>
60
+ docs: The content type of the file. Defaults to application/json
61
+ default: application/json
62
+ content-type: application/json
63
+ errors:
64
+ - root.BadRequestError
65
+ - root.UnauthorizedError
66
+ - root.NotFoundError
67
+ - root.TooManyRequestsError
68
+ - root.InternalServerError
69
+ examples:
70
+ - path-parameters:
71
+ site_id: 580e63e98c9a982ac9b8b741
72
+ request:
73
+ fileName: fileName
74
+ fileData: fileData
75
+ delete:
76
+ path: /sites/{site_id}/well_known
77
+ method: DELETE
78
+ auth: true
79
+ docs: >
80
+ Delete existing well-known files from a site.
81
+
82
+
83
+ <Warning title="Enterprise Only">This endpoint requires an Enterprise
84
+ workspace.</Warning>
85
+
86
+
87
+ Required scope: `site_config:write`
88
+ source:
89
+ openapi: ../../../openapi/referenced-specs/v2.yml
90
+ path-parameters:
91
+ site_id:
92
+ type: string
93
+ docs: Unique identifier for a Site
94
+ display-name: Delete a well-known file
95
+ request:
96
+ name: WellKnownDeleteRequest
97
+ body:
98
+ properties:
99
+ fileNames:
100
+ type: optional<list<string>>
101
+ docs: A list of file names to delete
102
+ content-type: application/json
103
+ errors:
104
+ - root.BadRequestError
105
+ - root.UnauthorizedError
106
+ - root.NotFoundError
107
+ - root.TooManyRequestsError
108
+ - root.InternalServerError
109
+ examples:
110
+ - path-parameters:
111
+ site_id: 580e63e98c9a982ac9b8b741
112
+ request: {}
113
+ source:
114
+ openapi: ../../../openapi/referenced-specs/v2.yml
@@ -60,7 +60,7 @@ service:
60
60
  id: 670ecf86817e3cc7a510eb6a
61
61
  workspaceId: 625860a7a6c16d624927122f
62
62
  createdOn: '2024-10-15T20:24:38Z'
63
- displayName: The Hitchikers Guide
63
+ displayName: The Hitchiker's Guide
64
64
  shortName: hitchikers-guide
65
65
  lastUpdated: '2024-10-15T20:24:38Z'
66
66
  parentFolderId: 670ece123598db72d9648be1
@@ -0,0 +1,119 @@
1
+ types:
2
+ AuditLogsGetWorkspaceAuditLogsRequestSortOrder:
3
+ enum:
4
+ - asc
5
+ - desc
6
+ source:
7
+ openapi: ../../../openapi/referenced-specs/v2.yml
8
+ AuditLogsGetWorkspaceAuditLogsRequestEventType:
9
+ enum:
10
+ - user_access
11
+ - custom_role
12
+ - workspace_membership
13
+ - site_membership
14
+ - workspace_invitation
15
+ source:
16
+ openapi: ../../../openapi/referenced-specs/v2.yml
17
+ imports:
18
+ root: ../__package__.yml
19
+ service:
20
+ auth: false
21
+ base-path: ''
22
+ endpoints:
23
+ get-workspace-audit_logs:
24
+ path: /workspaces/{workspace_id_or_slug}/audit_logs
25
+ method: GET
26
+ auth: true
27
+ docs: >
28
+ Get audit logs for a workspace.
29
+
30
+
31
+ <Warning title="Enterprise & workspace API token only">This endpoint
32
+ requires an Enterprise workspace and a workspace token with the
33
+ `workspace_activity:read` scope. Create a workspace token from your
34
+ workspace dashboard integrations page to use this endpoint.</Warning>
35
+
36
+
37
+ Required scope | `workspace_activity:read`
38
+ source:
39
+ openapi: ../../../openapi/referenced-specs/v2.yml
40
+ path-parameters:
41
+ workspace_id_or_slug:
42
+ type: string
43
+ docs: Unique identifier or slug for a Workspace
44
+ display-name: Get Workspace Audit Logs
45
+ request:
46
+ name: AuditLogsGetWorkspaceAuditLogsRequest
47
+ query-parameters:
48
+ limit:
49
+ type: optional<double>
50
+ docs: 'Maximum number of records to be returned (max limit: 100)'
51
+ offset:
52
+ type: optional<double>
53
+ docs: >-
54
+ Offset used for pagination if the results have more than limit
55
+ records
56
+ sortOrder:
57
+ type: optional<AuditLogsGetWorkspaceAuditLogsRequestSortOrder>
58
+ docs: Sorts the results by asc or desc
59
+ eventType:
60
+ type: optional<AuditLogsGetWorkspaceAuditLogsRequestEventType>
61
+ docs: The event type to filter by
62
+ from:
63
+ type: optional<datetime>
64
+ docs: The start date to filter by
65
+ to:
66
+ type: optional<datetime>
67
+ docs: The end date to filter by
68
+ response:
69
+ docs: A list of workspace audit logs
70
+ type: root.WorkspaceAuditLogResponse
71
+ status-code: 200
72
+ errors:
73
+ - root.UnauthorizedError
74
+ - root.ForbiddenError
75
+ - root.NotFoundError
76
+ - root.TooManyRequestsError
77
+ - root.InternalServerError
78
+ examples:
79
+ - path-parameters:
80
+ workspace_id_or_slug: hitchhikers-workspace
81
+ query-parameters:
82
+ from: '2024-04-22T16:00:31Z'
83
+ to: '2024-04-22T16:00:31Z'
84
+ response:
85
+ body:
86
+ items:
87
+ - eventSubType: login
88
+ eventType: user_access
89
+ timestamp: '2025-04-29T20:30:06Z'
90
+ actor:
91
+ id: 6661ccb359b561c69f29d554
92
+ email: someone@email.com
93
+ workspace:
94
+ id: 6621ccb459b561c69f29d57c
95
+ slug: hitchhikers-workspace
96
+ - eventSubType: user_added
97
+ eventType: workspace_membership
98
+ timestamp: '2025-04-30T20:30:06Z'
99
+ actor:
100
+ id: 60492e55bbddce079561cd7a
101
+ email: someone@webflow.com
102
+ workspace:
103
+ id: 6621ccb459b561c69f29d57c
104
+ slug: hitchhikers-workspace
105
+ - eventSubType: user_added
106
+ eventType: site_membership
107
+ timestamp: '2025-04-30T00:33:31Z'
108
+ actor:
109
+ id: 671fe00d185fc8c1ad409d37
110
+ email: someone@webflow.com
111
+ workspace:
112
+ id: 6621ccb459b561c69f29d57c
113
+ slug: hitchhikers-workspace
114
+ pagination:
115
+ limit: 10
116
+ offset: 0
117
+ total: 3
118
+ source:
119
+ openapi: ../../../openapi/referenced-specs/v2.yml
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "organization" : "webflow",
3
- "version" : "0.56.16"
3
+ "version" : "0.56.34"
4
4
  }
package/Client.d.ts CHANGED
@@ -18,9 +18,10 @@ import { Products } from "./api/resources/products/client/Client";
18
18
  import { Orders } from "./api/resources/orders/client/Client";
19
19
  import { Inventory } from "./api/resources/inventory/client/Client";
20
20
  import { Ecommerce } from "./api/resources/ecommerce/client/Client";
21
+ import { Workspaces } from "./api/resources/workspaces/client/Client";
21
22
  export declare namespace WebflowClient {
22
23
  interface Options {
23
- environment?: core.Supplier<environments.WebflowEnvironment | string>;
24
+ environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
24
25
  accessToken: core.Supplier<core.BearerToken>;
25
26
  }
26
27
  interface RequestOptions {
@@ -67,4 +68,6 @@ export declare class WebflowClient {
67
68
  get inventory(): Inventory;
68
69
  protected _ecommerce: Ecommerce | undefined;
69
70
  get ecommerce(): Ecommerce;
71
+ protected _workspaces: Workspaces | undefined;
72
+ get workspaces(): Workspaces;
70
73
  }
package/Client.js CHANGED
@@ -19,6 +19,7 @@ const Client_12 = require("./api/resources/products/client/Client");
19
19
  const Client_13 = require("./api/resources/orders/client/Client");
20
20
  const Client_14 = require("./api/resources/inventory/client/Client");
21
21
  const Client_15 = require("./api/resources/ecommerce/client/Client");
22
+ const Client_16 = require("./api/resources/workspaces/client/Client");
22
23
  class WebflowClient {
23
24
  constructor(_options) {
24
25
  this._options = _options;
@@ -83,5 +84,9 @@ class WebflowClient {
83
84
  var _a;
84
85
  return ((_a = this._ecommerce) !== null && _a !== void 0 ? _a : (this._ecommerce = new Client_15.Ecommerce(this._options)));
85
86
  }
87
+ get workspaces() {
88
+ var _a;
89
+ return ((_a = this._workspaces) !== null && _a !== void 0 ? _a : (this._workspaces = new Client_16.Workspaces(this._options)));
90
+ }
86
91
  }
87
92
  exports.WebflowClient = WebflowClient;
@@ -6,7 +6,7 @@ import * as core from "../../../../core";
6
6
  import * as Webflow from "../../../index";
7
7
  export declare namespace AccessGroups {
8
8
  interface Options {
9
- environment?: core.Supplier<environments.WebflowEnvironment | string>;
9
+ environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
10
10
  accessToken: core.Supplier<core.BearerToken>;
11
11
  }
12
12
  interface RequestOptions {