webflow-api 3.1.2 → 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 (882) 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/AssetsUtilitiesClient.d.ts +1 -1
  698. package/environments.d.ts +15 -2
  699. package/environments.js +7 -1
  700. package/package.json +15 -12
  701. package/reference.md +674 -16
  702. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.d.ts +1 -1
  703. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.js +1 -1
  704. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.d.ts +1 -1
  705. package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.js +1 -1
  706. package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -1
  707. package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +12 -1
  708. package/serialization/resources/index.d.ts +1 -0
  709. package/serialization/resources/index.js +2 -1
  710. package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -1
  711. package/serialization/resources/pages/types/PageDomWriteNodesItem.js +12 -1
  712. package/serialization/resources/products/client/requests/ProductSkuCreate.d.ts +4 -4
  713. package/serialization/resources/products/client/requests/ProductSkuCreate.js +4 -4
  714. package/serialization/resources/products/types/ProductSkuCreateProduct.d.ts +13 -0
  715. package/serialization/resources/products/types/ProductSkuCreateProduct.js +34 -0
  716. package/serialization/resources/products/types/ProductSkuCreateSku.d.ts +13 -0
  717. package/serialization/resources/products/types/ProductSkuCreateSku.js +34 -0
  718. package/serialization/resources/products/types/index.d.ts +2 -0
  719. package/serialization/resources/products/types/index.js +2 -0
  720. package/serialization/resources/sites/index.d.ts +1 -0
  721. package/serialization/resources/sites/index.js +1 -0
  722. package/serialization/resources/sites/resources/comments/index.d.ts +1 -0
  723. package/serialization/resources/sites/resources/comments/index.js +17 -0
  724. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +10 -0
  725. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +31 -0
  726. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +10 -0
  727. package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +31 -0
  728. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +10 -0
  729. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +31 -0
  730. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +10 -0
  731. package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +31 -0
  732. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +10 -0
  733. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +31 -0
  734. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +10 -0
  735. package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +31 -0
  736. package/serialization/resources/sites/resources/comments/types/index.d.ts +6 -0
  737. package/serialization/resources/sites/resources/comments/types/index.js +22 -0
  738. package/serialization/resources/sites/resources/index.d.ts +5 -0
  739. package/serialization/resources/sites/resources/index.js +34 -0
  740. package/serialization/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
  741. package/serialization/resources/sites/resources/wellKnown/client/index.js +17 -0
  742. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.d.ts +12 -0
  743. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +33 -0
  744. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +15 -0
  745. package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +36 -0
  746. package/serialization/resources/sites/resources/wellKnown/client/requests/index.d.ts +2 -0
  747. package/serialization/resources/sites/resources/wellKnown/client/requests/index.js +7 -0
  748. package/serialization/resources/sites/resources/wellKnown/index.d.ts +2 -0
  749. package/serialization/resources/sites/resources/wellKnown/index.js +18 -0
  750. package/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +10 -0
  751. package/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +31 -0
  752. package/serialization/resources/sites/resources/wellKnown/types/index.d.ts +1 -0
  753. package/serialization/resources/sites/resources/wellKnown/types/index.js +17 -0
  754. package/serialization/resources/workspaces/index.d.ts +1 -0
  755. package/serialization/resources/workspaces/index.js +17 -0
  756. package/serialization/resources/workspaces/resources/auditLogs/index.d.ts +1 -0
  757. package/serialization/resources/workspaces/resources/auditLogs/index.js +17 -0
  758. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +10 -0
  759. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +37 -0
  760. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +10 -0
  761. package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +31 -0
  762. package/serialization/resources/workspaces/resources/auditLogs/types/index.d.ts +2 -0
  763. package/serialization/resources/workspaces/resources/auditLogs/types/index.js +18 -0
  764. package/serialization/resources/workspaces/resources/index.d.ts +2 -0
  765. package/serialization/resources/workspaces/resources/index.js +31 -0
  766. package/serialization/types/CommentReply.d.ts +25 -0
  767. package/serialization/types/CommentReply.js +46 -0
  768. package/serialization/types/CommentReplyAuthor.d.ts +14 -0
  769. package/serialization/types/CommentReplyAuthor.js +35 -0
  770. package/serialization/types/CommentReplyList.d.ts +15 -0
  771. package/serialization/types/CommentReplyList.js +36 -0
  772. package/serialization/types/CommentReplyListPagination.d.ts +14 -0
  773. package/serialization/types/CommentReplyListPagination.js +35 -0
  774. package/serialization/types/CommentReplyMentionedUsersItem.d.ts +14 -0
  775. package/serialization/types/CommentReplyMentionedUsersItem.js +35 -0
  776. package/serialization/types/CommentThread.d.ts +26 -0
  777. package/serialization/types/CommentThread.js +47 -0
  778. package/serialization/types/CommentThreadAuthor.d.ts +14 -0
  779. package/serialization/types/CommentThreadAuthor.js +35 -0
  780. package/serialization/types/CommentThreadList.d.ts +15 -0
  781. package/serialization/types/CommentThreadList.js +36 -0
  782. package/serialization/types/CommentThreadListPagination.d.ts +14 -0
  783. package/serialization/types/CommentThreadListPagination.js +35 -0
  784. package/serialization/types/CommentThreadMentionedUsersItem.d.ts +14 -0
  785. package/serialization/types/CommentThreadMentionedUsersItem.js +35 -0
  786. package/serialization/types/CustomRole.d.ts +13 -0
  787. package/serialization/types/CustomRole.js +34 -0
  788. package/serialization/types/CustomRoleAuditLogItem.d.ts +15 -0
  789. package/serialization/types/CustomRoleAuditLogItem.js +36 -0
  790. package/serialization/types/CustomRoleAuditLogItemEventSubType.d.ts +10 -0
  791. package/serialization/types/CustomRoleAuditLogItemEventSubType.js +31 -0
  792. package/serialization/types/FieldType.d.ts +1 -1
  793. package/serialization/types/FieldType.js +3 -1
  794. package/serialization/types/Node.d.ts +17 -1
  795. package/serialization/types/Node.js +8 -0
  796. package/serialization/types/SearchButtonNode.d.ts +14 -0
  797. package/serialization/types/SearchButtonNode.js +35 -0
  798. package/serialization/types/SearchButtonNodeWrite.d.ts +13 -0
  799. package/serialization/types/SearchButtonNodeWrite.js +34 -0
  800. package/serialization/types/SelectNode.d.ts +15 -0
  801. package/serialization/types/SelectNode.js +36 -0
  802. package/serialization/types/SelectNodeChoicesItem.d.ts +13 -0
  803. package/serialization/types/SelectNodeChoicesItem.js +34 -0
  804. package/serialization/types/SelectNodeWrite.d.ts +14 -0
  805. package/serialization/types/SelectNodeWrite.js +35 -0
  806. package/serialization/types/SelectNodeWriteChoicesItem.d.ts +13 -0
  807. package/serialization/types/SelectNodeWriteChoicesItem.js +34 -0
  808. package/serialization/types/SiteMembership.d.ts +21 -0
  809. package/serialization/types/SiteMembership.js +42 -0
  810. package/serialization/types/SiteMembershipAuditLogItem.d.ts +15 -0
  811. package/serialization/types/SiteMembershipAuditLogItem.js +36 -0
  812. package/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +10 -0
  813. package/serialization/types/SiteMembershipAuditLogItemEventSubType.js +31 -0
  814. package/serialization/types/SkuFieldData.d.ts +4 -0
  815. package/serialization/types/SkuFieldData.js +4 -0
  816. package/serialization/types/SkuFieldDataPrice.d.ts +1 -0
  817. package/serialization/types/SkuFieldDataPrice.js +1 -0
  818. package/serialization/types/StaticFieldType.d.ts +1 -1
  819. package/serialization/types/StaticFieldType.js +1 -1
  820. package/serialization/types/SubmitButtonNode.d.ts +15 -0
  821. package/serialization/types/SubmitButtonNode.js +36 -0
  822. package/serialization/types/SubmitButtonNodeWrite.d.ts +14 -0
  823. package/serialization/types/SubmitButtonNodeWrite.js +35 -0
  824. package/serialization/types/TextInputNode.d.ts +14 -0
  825. package/serialization/types/TextInputNode.js +35 -0
  826. package/serialization/types/TextInputNodeWrite.d.ts +13 -0
  827. package/serialization/types/TextInputNodeWrite.js +34 -0
  828. package/serialization/types/TriggerType.d.ts +1 -1
  829. package/serialization/types/TriggerType.js +1 -0
  830. package/serialization/types/UserAccess.d.ts +15 -0
  831. package/serialization/types/UserAccess.js +36 -0
  832. package/serialization/types/UserAccessAuditLogItem.d.ts +15 -0
  833. package/serialization/types/UserAccessAuditLogItem.js +36 -0
  834. package/serialization/types/UserAccessAuditLogItemEventSubType.d.ts +10 -0
  835. package/serialization/types/UserAccessAuditLogItemEventSubType.js +31 -0
  836. package/serialization/types/WorkspaceAuditLogItem.d.ts +37 -0
  837. package/serialization/types/WorkspaceAuditLogItem.js +54 -0
  838. package/serialization/types/WorkspaceAuditLogItemActor.d.ts +13 -0
  839. package/serialization/types/WorkspaceAuditLogItemActor.js +34 -0
  840. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +10 -0
  841. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +31 -0
  842. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.d.ts +13 -0
  843. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +34 -0
  844. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.d.ts +13 -0
  845. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +34 -0
  846. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +10 -0
  847. package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +31 -0
  848. package/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +10 -0
  849. package/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +31 -0
  850. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +10 -0
  851. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +31 -0
  852. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.d.ts +13 -0
  853. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +34 -0
  854. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +10 -0
  855. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +31 -0
  856. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +10 -0
  857. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +31 -0
  858. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.d.ts +13 -0
  859. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +34 -0
  860. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +10 -0
  861. package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +31 -0
  862. package/serialization/types/WorkspaceAuditLogItemWorkspace.d.ts +13 -0
  863. package/serialization/types/WorkspaceAuditLogItemWorkspace.js +34 -0
  864. package/serialization/types/WorkspaceAuditLogResponse.d.ts +15 -0
  865. package/serialization/types/WorkspaceAuditLogResponse.js +36 -0
  866. package/serialization/types/WorkspaceInvitation.d.ts +19 -0
  867. package/serialization/types/WorkspaceInvitation.js +40 -0
  868. package/serialization/types/WorkspaceInvitationAuditLogItem.d.ts +15 -0
  869. package/serialization/types/WorkspaceInvitationAuditLogItem.js +36 -0
  870. package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +10 -0
  871. package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +37 -0
  872. package/serialization/types/WorkspaceMembership.d.ts +19 -0
  873. package/serialization/types/WorkspaceMembership.js +40 -0
  874. package/serialization/types/WorkspaceMembershipAuditLogItem.d.ts +15 -0
  875. package/serialization/types/WorkspaceMembershipAuditLogItem.js +36 -0
  876. package/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +10 -0
  877. package/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.js +31 -0
  878. package/serialization/types/index.d.ts +51 -1
  879. package/serialization/types/index.js +51 -1
  880. package/version.d.ts +1 -1
  881. package/version.js +1 -1
  882. package/wrapper/AssetsUtilitiesClient.d.ts +1 -1
@@ -3,8 +3,15 @@ error-discrimination:
3
3
  strategy: status-code
4
4
  display-name: Data API
5
5
  environments:
6
- Default: https://api.webflow.com/v2
7
- default-environment: Default
6
+ Data API:
7
+ urls:
8
+ Base: https://api.webflow.com/v2
9
+ Data API: https://api.webflow.com/v2
10
+ Content Delivery API: https://api-cdn.webflow.com/v2
11
+ Production: https://api.webflow.com/v2
12
+ CDN: https://api-cdn.webflow.com/v2
13
+ default-environment: Data API
14
+ default-url: Base
8
15
  auth-schemes:
9
16
  BearerToken:
10
17
  scheme: bearer
@@ -340,7 +340,7 @@ service:
340
340
  name: ItemsDeleteItemsRequest
341
341
  body:
342
342
  properties:
343
- items: optional<list<ItemsDeleteItemsRequestItemsItem>>
343
+ items: list<ItemsDeleteItemsRequestItemsItem>
344
344
  content-type: application/json
345
345
  errors:
346
346
  - root.BadRequestError
@@ -352,7 +352,9 @@ service:
352
352
  examples:
353
353
  - path-parameters:
354
354
  collection_id: 580e63fc8c9a982ac9b8b745
355
- request: {}
355
+ request:
356
+ items:
357
+ - id: 580e64008c9a982ac9b8b754
356
358
  update-items:
357
359
  path: /collections/{collection_id}/items
358
360
  method: PATCH
@@ -568,6 +570,11 @@ service:
568
570
  docs: |
569
571
  List all published items in a collection.
570
572
 
573
+ <Note title="Serve data with the Content Delivery API">
574
+ To serve content to your other frontends applications, enterprise sites have access to a dedicated [content delivery API](/data/docs/cms-content-delivery), available at api-cdn.webflow.com.
575
+
576
+ </Note>
577
+
571
578
  Required scope | `CMS:read`
572
579
  source:
573
580
  openapi: ../../../openapi/referenced-specs/v2.yml
@@ -610,6 +617,7 @@ service:
610
617
  docs: Request was successful
611
618
  type: root.CollectionItemList
612
619
  status-code: 200
620
+ url: Data API
613
621
  errors:
614
622
  - root.BadRequestError
615
623
  - root.UnauthorizedError
@@ -786,7 +794,7 @@ service:
786
794
  name: ItemsDeleteItemsLiveRequest
787
795
  body:
788
796
  properties:
789
- items: optional<list<ItemsDeleteItemsLiveRequestItemsItem>>
797
+ items: list<ItemsDeleteItemsLiveRequestItemsItem>
790
798
  content-type: application/json
791
799
  errors:
792
800
  - root.BadRequestError
@@ -797,7 +805,9 @@ service:
797
805
  examples:
798
806
  - path-parameters:
799
807
  collection_id: 580e63fc8c9a982ac9b8b745
800
- request: {}
808
+ request:
809
+ items:
810
+ - id: 580e64008c9a982ac9b8b754
801
811
  update-items-live:
802
812
  path: /collections/{collection_id}/items/live
803
813
  method: PATCH
@@ -1323,6 +1333,7 @@ service:
1323
1333
  docs: Request was successful
1324
1334
  type: root.CollectionItem
1325
1335
  status-code: 200
1336
+ url: Production
1326
1337
  errors:
1327
1338
  - root.BadRequestError
1328
1339
  - root.UnauthorizedError
@@ -1452,6 +1463,11 @@ service:
1452
1463
  docs: |
1453
1464
  Get details of a selected Collection live Item.
1454
1465
 
1466
+ <Note title="Serve data with the Content Delivery API">
1467
+ To serve content to your other frontends applications, enterprise sites have access to a dedicated [content delivery API](/data/docs/cms-content-delivery), available at api-cdn.webflow.com.
1468
+
1469
+ </Note>
1470
+
1455
1471
  Required scope | `CMS:read`
1456
1472
  source:
1457
1473
  openapi: ../../../openapi/referenced-specs/v2.yml
@@ -1477,6 +1493,7 @@ service:
1477
1493
  docs: Request was successful
1478
1494
  type: root.CollectionItem
1479
1495
  status-code: 200
1496
+ url: Data API
1480
1497
  errors:
1481
1498
  - root.BadRequestError
1482
1499
  - root.UnauthorizedError
@@ -74,7 +74,8 @@ service:
74
74
  auth: true
75
75
  docs: >
76
76
  Get static content from a component definition. This includes text
77
- nodes, image nodes and nested component instances.
77
+ nodes, image nodes, select nodes, text input nodes, submit button nodes,
78
+ and nested component instances.
78
79
 
79
80
  To retrieve dynamic content set by component properties, use the [get
80
81
  component
@@ -125,8 +126,7 @@ service:
125
126
  - root.TooManyRequestsError
126
127
  - root.InternalServerError
127
128
  examples:
128
- - name: ComponentDOM
129
- path-parameters:
129
+ - path-parameters:
130
130
  site_id: 580e63e98c9a982ac9b8b741
131
131
  component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
132
132
  query-parameters:
@@ -151,43 +151,32 @@ service:
151
151
  key: value
152
152
  type: image
153
153
  - id: id
154
- componentId: componentId
155
- propertyOverrides:
156
- - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
157
- type: component-instance
158
- pagination:
159
- limit: 4
160
- offset: 0
161
- total: 4
162
- - name: LocalizedComponentDOM
163
- path-parameters:
164
- site_id: 580e63e98c9a982ac9b8b741
165
- component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
166
- query-parameters:
167
- localeId: 65427cf400e02b306eaa04a0
168
- response:
169
- body:
170
- componentId: 69118560-d0bc-15fc-bbf8-b8fe5f6535b5
171
- nodes:
154
+ placeholder: placeholder
155
+ attributes:
156
+ key: value
157
+ type: text-input
172
158
  - id: id
173
- image: {}
159
+ choices:
160
+ - value: value
161
+ text: text
174
162
  attributes:
175
163
  key: value
176
- type: image
164
+ type: select
177
165
  - id: id
178
- text: {}
166
+ value: value
167
+ waitingText: waitingText
179
168
  attributes:
180
169
  key: value
181
- type: text
170
+ type: submit-button
182
171
  - id: id
183
172
  componentId: componentId
184
173
  propertyOverrides:
185
174
  - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
186
175
  type: component-instance
187
176
  pagination:
188
- limit: 100
177
+ limit: 7
189
178
  offset: 0
190
- total: 3
179
+ total: 7
191
180
  update-content:
192
181
  path: /sites/{site_id}/components/{component_id}/dom
193
182
  method: POST
@@ -268,6 +257,17 @@ service:
268
257
  text: >-
269
258
  <div><h3>Don't Panic!</h3><p>Always know where your towel
270
259
  is.</p></div>
260
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad635
261
+ choices:
262
+ - value: choice-1
263
+ text: First choice
264
+ - value: choice-2
265
+ text: Second choice
266
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad642
267
+ placeholder: Enter something here...
268
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad671
269
+ value: Submit
270
+ waitingText: Submitting...
271
271
  - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad629
272
272
  propertyOverrides:
273
273
  - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
@@ -437,6 +437,10 @@ types:
437
437
  union:
438
438
  - root.TextNodeWrite
439
439
  - root.ComponentInstanceNodePropertyOverridesWrite
440
+ - root.SelectNodeWrite
441
+ - root.TextInputNodeWrite
442
+ - root.SubmitButtonNodeWrite
443
+ - root.SearchButtonNodeWrite
440
444
  source:
441
445
  openapi: ../../../openapi/referenced-specs/v2.yml
442
446
  inline: true
@@ -276,7 +276,8 @@ service:
276
276
  auth: true
277
277
  docs: >
278
278
  Get content from a static page. This includes text nodes, image nodes,
279
- and component instances with [property
279
+ select nodes, text input nodes, submit button nodes, and component
280
+ instances with [property
280
281
  overrides](https://help.webflow.com/hc/en-us/articles/33961219350547-Component-properties#how-to-modify-property-values-on-component-instances).
281
282
 
282
283
 
@@ -327,8 +328,7 @@ service:
327
328
  - root.TooManyRequestsError
328
329
  - root.InternalServerError
329
330
  examples:
330
- - name: PageDOM
331
- path-parameters:
331
+ - path-parameters:
332
332
  page_id: 63c720f9347c2139b248e552
333
333
  query-parameters:
334
334
  localeId: 65427cf400e02b306eaa04a0
@@ -351,6 +351,23 @@ service:
351
351
  attributes:
352
352
  key: value
353
353
  type: image
354
+ - id: id
355
+ choices:
356
+ - value: value
357
+ text: text
358
+ attributes:
359
+ key: value
360
+ type: select
361
+ - id: id
362
+ placeholder: placeholder
363
+ attributes:
364
+ key: value
365
+ type: text-input
366
+ - id: id
367
+ text: {}
368
+ attributes:
369
+ key: value
370
+ type: text
354
371
  - id: id
355
372
  componentId: componentId
356
373
  propertyOverrides:
@@ -433,6 +450,17 @@ service:
433
450
  text: >-
434
451
  <div><h3>Don't Panic!</h3><p>Always know where your towel
435
452
  is.</p></div>
453
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad635
454
+ choices:
455
+ - value: choice-1
456
+ text: First choice
457
+ - value: choice-2
458
+ text: Second choice
459
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad642
460
+ placeholder: Enter something here...
461
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad671
462
+ value: Submit
463
+ waitingText: Submitting...
436
464
  - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad629
437
465
  propertyOverrides:
438
466
  - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
@@ -453,6 +481,10 @@ types:
453
481
  union:
454
482
  - root.TextNodeWrite
455
483
  - root.ComponentInstanceNodePropertyOverridesWrite
484
+ - root.SelectNodeWrite
485
+ - root.TextInputNodeWrite
486
+ - root.SubmitButtonNodeWrite
487
+ - root.SearchButtonNodeWrite
456
488
  source:
457
489
  openapi: ../../../openapi/referenced-specs/v2.yml
458
490
  inline: true
@@ -84,13 +84,24 @@ service:
84
84
  createdOn: '2023-03-17T18:47:35Z'
85
85
  fieldData:
86
86
  sku-values:
87
- ff42fee0113744f693a764e3431a9cc2: 64a74715c456e36762fc39a1
88
- name: Blue T-shirt
89
- slug: t-shirt-blue
87
+ color: blue
88
+ size: small
89
+ name: Colorful T-shirt - Default
90
+ slug: colorful-t-shirt-default
90
91
  price:
91
- value: 100
92
+ value: 2499
92
93
  unit: USD
94
+ currency: USD
93
95
  quantity: 10
96
+ main-image: https://www.example.com/image.jpg
97
+ sku: '1234567890'
98
+ sku-properties:
99
+ - id: Color
100
+ name: Color
101
+ enum:
102
+ - id: id
103
+ name: Royal Blue
104
+ slug: royal-blue
94
105
  pagination:
95
106
  limit: 100
96
107
  offset: 0
@@ -100,20 +111,14 @@ service:
100
111
  method: POST
101
112
  auth: true
102
113
  docs: >
103
- Create a new product and SKU.
114
+ Create a new ecommerce product and defaultSKU. A product, at minimum,
115
+ must have a single SKU.
104
116
 
105
117
 
106
- When you create a product, you will always create a SKU, since a Product
107
- Item must have, at minimum, a single SKU.
108
-
109
-
110
- To create a Product with multiple SKUs - for example a T-shirt in sizes
111
- small, medium and large:
112
- - Create parameters in `sku-properties`, also known as [product options and variants.](https://help.webflow.com/hc/en-us/articles/33961334531347-Create-product-options-and-variants).
113
- - A single `sku-property` would be `color`. Within the `color` property, list the various colors of T-shirts as an array of `enum` values: `royal-blue`, `crimson-red`, and `forrest-green`.
114
- - Once, you've created a Product and its `sku-properties` with `enum` values, Webflow will create a **default SKU**, which will automatically be a combination of the first `sku-properties` you've created.
115
- - In our example, the default SKU will be a Royal Blue T-Shirt, because our first `enum` of our Color `sku-property` is Royal Blue.
116
- - After you've created your product, you can create additional SKUs using the [Create SKU endpoint.](/data/reference/ecommerce/products/create-sku)
118
+ To create a product with multiple SKUs:
119
+ - First, create a list of `sku-properties`, also known as [product options](https://help.webflow.com/hc/en-us/articles/33961334531347-Create-product-options-and-variants). For example, a T-shirt product may have a "color" `sku-property`, with a list of enum values: red, yellow, and blue, another `sku-property` may be "size", with a list of enum values: small, medium, and large.
120
+ - Once, a product is created with a list of `sku-properties`, Webflow will create a **default SKU**, which is always a combination of the first `enum` values of each `sku-property`. (e.g. Small - Red - T-Shirt)
121
+ - After creation, you can create additional SKUs for the product, using the [Create SKUs endpoint.](/data/reference/ecommerce/products/create-sku)
117
122
 
118
123
  Upon creation, the default product type will be `Advanced`, which
119
124
  ensures all Product and SKU fields will be shown to users in the
@@ -133,8 +138,8 @@ service:
133
138
  body:
134
139
  properties:
135
140
  publishStatus: optional<root.PublishStatus>
136
- product: optional<root.Product>
137
- sku: optional<root.Sku>
141
+ product: ProductSkuCreateProduct
142
+ sku: ProductSkuCreateSku
138
143
  content-type: application/json
139
144
  response:
140
145
  docs: Request was successful
@@ -151,7 +156,50 @@ service:
151
156
  examples:
152
157
  - path-parameters:
153
158
  site_id: 580e63e98c9a982ac9b8b741
154
- request: {}
159
+ request:
160
+ publishStatus: staging
161
+ product:
162
+ fieldData:
163
+ name: Colorful T-shirt
164
+ slug: colorful-t-shirt
165
+ description: >-
166
+ Our best-selling t-shirt available in multiple colors and
167
+ sizes
168
+ sku-properties:
169
+ - id: color
170
+ name: Color
171
+ enum:
172
+ - id: red
173
+ name: Red
174
+ slug: red
175
+ - id: yellow
176
+ name: Yellow
177
+ slug: yellow
178
+ - id: blue
179
+ name: Blue
180
+ slug: blue
181
+ - id: size
182
+ name: Size
183
+ enum:
184
+ - id: small
185
+ name: Small
186
+ slug: small
187
+ - id: medium
188
+ name: Medium
189
+ slug: medium
190
+ - id: large
191
+ name: Large
192
+ slug: large
193
+ sku:
194
+ fieldData:
195
+ name: Colorful T-shirt - Red Small
196
+ slug: colorful-t-shirt-red-small
197
+ price:
198
+ value: 2499
199
+ unit: USD
200
+ currency: USD
201
+ main-image: >-
202
+ https://rocketamp-sample-store.myshopify.com/cdn/shop/products/Gildan_2000_Antique_Cherry_Red_Front_1024x1024.jpg?v=1527232987
155
203
  response:
156
204
  body:
157
205
  product:
@@ -187,13 +235,24 @@ service:
187
235
  createdOn: '2023-03-17T18:47:35Z'
188
236
  fieldData:
189
237
  sku-values:
190
- ff42fee0113744f693a764e3431a9cc2: 64a74715c456e36762fc39a1
191
- name: Blue T-shirt
192
- slug: t-shirt-blue
238
+ color: blue
239
+ size: small
240
+ name: Colorful T-shirt - Default
241
+ slug: colorful-t-shirt-default
193
242
  price:
194
- value: 100
243
+ value: 2499
195
244
  unit: USD
245
+ currency: USD
196
246
  quantity: 10
247
+ main-image: https://www.example.com/image.jpg
248
+ sku: '1234567890'
249
+ sku-properties:
250
+ - id: Color
251
+ name: Color
252
+ enum:
253
+ - id: id
254
+ name: Royal Blue
255
+ slug: royal-blue
197
256
  get:
198
257
  path: /sites/{site_id}/products/{product_id}
199
258
  method: GET
@@ -264,13 +323,24 @@ service:
264
323
  createdOn: '2023-03-17T18:47:35Z'
265
324
  fieldData:
266
325
  sku-values:
267
- ff42fee0113744f693a764e3431a9cc2: 64a74715c456e36762fc39a1
268
- name: Blue T-shirt
269
- slug: t-shirt-blue
326
+ color: blue
327
+ size: small
328
+ name: Colorful T-shirt - Default
329
+ slug: colorful-t-shirt-default
270
330
  price:
271
- value: 100
331
+ value: 2499
272
332
  unit: USD
333
+ currency: USD
273
334
  quantity: 10
335
+ main-image: https://www.example.com/image.jpg
336
+ sku: '1234567890'
337
+ sku-properties:
338
+ - id: Color
339
+ name: Color
340
+ enum:
341
+ - id: id
342
+ name: Royal Blue
343
+ slug: royal-blue
274
344
  update:
275
345
  path: /sites/{site_id}/products/{product_id}
276
346
  method: PATCH
@@ -370,7 +440,7 @@ service:
370
440
  product_id:
371
441
  type: string
372
442
  docs: Unique identifier for a Product
373
- display-name: Create SKU
443
+ display-name: Create SKUs
374
444
  request:
375
445
  name: ProductsCreateSkuRequest
376
446
  body:
@@ -398,11 +468,15 @@ service:
398
468
  product_id: 580e63fc8c9a982ac9b8b745
399
469
  request:
400
470
  skus:
401
- - {}
471
+ - fieldData:
472
+ name: Colorful T-shirt - Default
473
+ slug: colorful-t-shirt-default
474
+ price:
475
+ value: 2499
476
+ unit: USD
477
+ currency: USD
402
478
  response:
403
479
  body:
404
- required:
405
- key: value
406
480
  skus:
407
481
  - id: 580e63fc8c9a982ac9b8b745
408
482
  cmsLocaleId: 653ad57de882f528b32e810e
@@ -411,13 +485,24 @@ service:
411
485
  createdOn: '2023-03-17T18:47:35Z'
412
486
  fieldData:
413
487
  sku-values:
414
- ff42fee0113744f693a764e3431a9cc2: 64a74715c456e36762fc39a1
415
- name: Blue T-shirt
416
- slug: t-shirt-blue
488
+ color: blue
489
+ size: small
490
+ name: Colorful T-shirt - Default
491
+ slug: colorful-t-shirt-default
417
492
  price:
418
- value: 100
493
+ value: 2499
419
494
  unit: USD
495
+ currency: USD
420
496
  quantity: 10
497
+ main-image: https://www.example.com/image.jpg
498
+ sku: '1234567890'
499
+ sku-properties:
500
+ - id: Color
501
+ name: Color
502
+ enum:
503
+ - id: id
504
+ name: Royal Blue
505
+ slug: royal-blue
421
506
  update-sku:
422
507
  path: /sites/{site_id}/products/{product_id}/skus/{sku_id}
423
508
  method: PATCH
@@ -470,7 +555,14 @@ service:
470
555
  product_id: 580e63fc8c9a982ac9b8b745
471
556
  sku_id: 5e8518516e147040726cc415
472
557
  request:
473
- sku: {}
558
+ sku:
559
+ fieldData:
560
+ name: Colorful T-shirt - Default
561
+ slug: colorful-t-shirt-default
562
+ price:
563
+ value: 2499
564
+ unit: USD
565
+ currency: USD
474
566
  response:
475
567
  body:
476
568
  id: 580e63fc8c9a982ac9b8b745
@@ -480,12 +572,14 @@ service:
480
572
  createdOn: '2023-03-17T18:47:35Z'
481
573
  fieldData:
482
574
  sku-values:
483
- ff42fee0113744f693a764e3431a9cc2: 64a74715c456e36762fc39a1
484
- name: Blue T-shirt
485
- slug: t-shirt-blue
575
+ color: blue
576
+ size: small
577
+ name: Colorful T-shirt - Default
578
+ slug: colorful-t-shirt-default
486
579
  price:
487
- value: 100
580
+ value: 2499
488
581
  unit: USD
582
+ currency: USD
489
583
  compare-at-price:
490
584
  value: 100
491
585
  unit: USD
@@ -498,12 +592,32 @@ service:
498
592
  - {}
499
593
  track-inventory: true
500
594
  quantity: 10
595
+ main-image: https://www.example.com/image.jpg
596
+ sku: '1234567890'
597
+ sku-properties:
598
+ - id: Color
599
+ name: Color
600
+ enum:
601
+ - id: id
602
+ name: Royal Blue
603
+ slug: royal-blue
501
604
  source:
502
605
  openapi: ../../../openapi/referenced-specs/v2.yml
503
606
  types:
607
+ ProductSkuCreateProduct:
608
+ properties:
609
+ fieldData: optional<root.ProductFieldData>
610
+ source:
611
+ openapi: ../../../openapi/referenced-specs/v2.yml
612
+ inline: true
613
+ ProductSkuCreateSku:
614
+ properties:
615
+ fieldData: optional<root.SkuFieldData>
616
+ source:
617
+ openapi: ../../../openapi/referenced-specs/v2.yml
618
+ inline: true
504
619
  ProductsCreateSkuResponse:
505
620
  properties:
506
- required: optional<unknown>
507
- skus: optional<list<root.Sku>>
621
+ skus: list<root.Sku>
508
622
  source:
509
623
  openapi: ../../../openapi/referenced-specs/v2.yml