webflow-api 2.2.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/resources/accessGroups/client/Client.js +1 -1
- package/api/resources/assets/client/Client.js +8 -8
- package/api/resources/collections/client/Client.js +5 -5
- package/api/resources/collections/resources/fields/client/Client.js +2 -2
- package/api/resources/collections/resources/items/client/Client.d.ts +13 -2
- package/api/resources/collections/resources/items/client/Client.js +100 -18
- package/api/resources/collections/resources/items/client/requests/BulkCollectionItem.d.ts +0 -1
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +21 -0
- package/api/resources/collections/resources/items/client/requests/index.d.ts +1 -0
- package/api/resources/collections/resources/items/types/index.d.ts +0 -1
- package/api/resources/collections/resources/items/types/index.js +0 -1
- package/api/resources/ecommerce/client/Client.js +1 -1
- package/api/resources/forms/client/Client.js +5 -5
- package/api/resources/inventory/client/Client.js +2 -2
- package/api/resources/orders/client/Client.js +6 -6
- package/api/resources/pages/client/Client.d.ts +23 -14
- package/api/resources/pages/client/Client.js +28 -19
- package/api/resources/pages/client/requests/DomWrite.d.ts +10 -1
- package/api/resources/pages/client/requests/UpdatePageSettingsRequest.d.ts +12 -12
- package/api/resources/pages/resources/scripts/client/Client.js +3 -3
- package/api/resources/pages/types/DomWriteNodesItem.d.ts +1 -1
- package/api/resources/pages/types/UpdateStaticContentResponse.d.ts +7 -0
- package/api/resources/pages/types/index.d.ts +1 -0
- package/api/resources/pages/types/index.js +1 -0
- package/api/resources/products/client/Client.d.ts +34 -26
- package/api/resources/products/client/Client.js +41 -33
- package/api/resources/products/client/requests/ProductSkuCreate.d.ts +28 -5
- package/api/resources/products/client/requests/ProductSkuUpdate.d.ts +38 -0
- package/api/resources/products/client/requests/ProductsCreateSkuRequest.d.ts +1 -0
- package/api/resources/products/client/requests/ProductsUpdateSkuRequest.d.ts +1 -0
- package/api/resources/products/client/requests/index.d.ts +1 -1
- package/api/resources/products/types/index.d.ts +0 -11
- package/api/resources/products/types/index.js +0 -11
- package/api/resources/scripts/client/Client.d.ts +2 -2
- package/api/resources/scripts/client/Client.js +5 -5
- package/api/resources/sites/client/Client.d.ts +2 -1
- package/api/resources/sites/client/Client.js +6 -5
- package/api/resources/sites/client/requests/SitesPublishRequest.d.ts +1 -0
- package/api/resources/sites/resources/activityLogs/client/Client.js +1 -1
- package/api/resources/sites/resources/scripts/client/Client.js +4 -4
- package/api/resources/token/client/Client.js +2 -2
- package/api/resources/users/client/Client.js +5 -5
- package/api/resources/webhooks/client/Client.js +4 -4
- package/api/types/Asset.d.ts +8 -8
- package/api/types/AssetFolder.d.ts +2 -2
- package/api/types/AssetUpload.d.ts +5 -5
- package/api/types/AssetUploadUploadDetails.d.ts +2 -4
- package/api/types/AssetVariant.d.ts +4 -0
- package/{dist/api/types/CustomCodeResponse.d.ts → api/types/CustomCodeHostedResponse.d.ts} +9 -9
- package/api/types/{CustomCodeResponse.d.ts → CustomCodeInlineResponse.d.ts} +9 -9
- package/api/types/Form.d.ts +13 -8
- package/api/types/FormField.d.ts +3 -0
- package/api/types/FormFieldValue.d.ts +3 -0
- package/api/types/FormResponseSettings.d.ts +5 -2
- package/api/types/Locale.d.ts +21 -0
- package/api/types/Locales.d.ts +10 -0
- package/api/types/Node.d.ts +1 -0
- package/api/types/OauthScope.d.ts +9 -1
- package/api/types/OauthScope.js +2 -0
- package/api/types/Order.d.ts +5 -5
- package/api/types/OrderAddress.d.ts +1 -1
- package/api/types/OrderAddressJapanType.d.ts +1 -1
- package/api/types/OrderList.d.ts +1 -1
- package/api/types/OrderPurchasedItem.d.ts +2 -0
- package/api/types/Product.d.ts +2 -0
- package/api/types/ProductFieldData.d.ts +5 -4
- package/api/types/RegisteredScriptList.d.ts +4 -1
- package/api/types/ScriptApply.d.ts +1 -1
- package/api/types/ScriptApplyList.d.ts +1 -0
- package/api/types/Scripts.d.ts +3 -0
- package/api/types/Site.d.ts +3 -0
- package/api/types/Sites.d.ts +7 -0
- package/api/types/Sku.d.ts +2 -1
- package/api/types/SkuFieldDataEcSkuSubscriptionPlan.d.ts +1 -0
- package/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.d.ts +11 -0
- package/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.d.ts +12 -0
- package/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.js +11 -0
- package/api/types/index.d.ts +7 -1
- package/api/types/index.js +7 -1
- package/dist/api/resources/accessGroups/client/Client.js +1 -1
- package/dist/api/resources/assets/client/Client.js +8 -8
- package/dist/api/resources/collections/client/Client.js +5 -5
- package/dist/api/resources/collections/resources/fields/client/Client.js +2 -2
- package/dist/api/resources/collections/resources/items/client/Client.d.ts +13 -2
- package/dist/api/resources/collections/resources/items/client/Client.js +100 -18
- package/dist/api/resources/collections/resources/items/client/requests/BulkCollectionItem.d.ts +0 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +21 -0
- package/dist/api/resources/collections/resources/items/client/requests/index.d.ts +1 -0
- package/dist/api/resources/collections/resources/items/types/index.d.ts +0 -1
- package/dist/api/resources/collections/resources/items/types/index.js +0 -1
- package/dist/api/resources/ecommerce/client/Client.js +1 -1
- package/dist/api/resources/forms/client/Client.js +5 -5
- package/dist/api/resources/inventory/client/Client.js +2 -2
- package/dist/api/resources/orders/client/Client.js +6 -6
- package/dist/api/resources/pages/client/Client.d.ts +23 -14
- package/dist/api/resources/pages/client/Client.js +28 -19
- package/dist/api/resources/pages/client/requests/DomWrite.d.ts +10 -1
- package/dist/api/resources/pages/client/requests/UpdatePageSettingsRequest.d.ts +12 -12
- package/dist/api/resources/pages/resources/scripts/client/Client.js +3 -3
- package/dist/api/resources/pages/types/DomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/pages/types/UpdateStaticContentResponse.d.ts +7 -0
- package/dist/api/resources/pages/types/index.d.ts +1 -0
- package/dist/api/resources/pages/types/index.js +1 -0
- package/dist/api/resources/products/client/Client.d.ts +34 -26
- package/dist/api/resources/products/client/Client.js +41 -33
- package/dist/api/resources/products/client/requests/ProductSkuCreate.d.ts +28 -5
- package/dist/api/resources/products/client/requests/ProductSkuUpdate.d.ts +38 -0
- package/dist/api/resources/products/client/requests/ProductsCreateSkuRequest.d.ts +1 -0
- package/dist/api/resources/products/client/requests/ProductsUpdateSkuRequest.d.ts +1 -0
- package/dist/api/resources/products/client/requests/index.d.ts +1 -1
- package/dist/api/resources/products/types/index.d.ts +0 -11
- package/dist/api/resources/products/types/index.js +0 -11
- package/dist/api/resources/scripts/client/Client.d.ts +2 -2
- package/dist/api/resources/scripts/client/Client.js +5 -5
- package/dist/api/resources/sites/client/Client.d.ts +2 -1
- package/dist/api/resources/sites/client/Client.js +6 -5
- package/dist/api/resources/sites/client/requests/SitesPublishRequest.d.ts +1 -0
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +1 -1
- package/dist/api/resources/sites/resources/scripts/client/Client.js +4 -4
- package/dist/api/resources/token/client/Client.js +2 -2
- package/dist/api/resources/users/client/Client.js +5 -5
- package/dist/api/resources/webhooks/client/Client.js +4 -4
- package/dist/api/types/Asset.d.ts +8 -8
- package/dist/api/types/AssetFolder.d.ts +2 -2
- package/dist/api/types/AssetUpload.d.ts +5 -5
- package/dist/api/types/AssetUploadUploadDetails.d.ts +2 -4
- package/dist/api/types/AssetVariant.d.ts +4 -0
- package/dist/api/types/CustomCodeHostedResponse.d.ts +24 -0
- package/dist/api/types/CustomCodeInlineResponse.d.ts +24 -0
- package/dist/api/types/Form.d.ts +13 -8
- package/dist/api/types/FormField.d.ts +3 -0
- package/dist/api/types/FormFieldValue.d.ts +3 -0
- package/dist/api/types/FormResponseSettings.d.ts +5 -2
- package/dist/api/types/Locale.d.ts +21 -0
- package/dist/api/types/Locales.d.ts +10 -0
- package/dist/api/types/Node.d.ts +1 -0
- package/dist/api/types/OauthScope.d.ts +9 -1
- package/dist/api/types/OauthScope.js +2 -0
- package/dist/api/types/Order.d.ts +5 -5
- package/dist/api/types/OrderAddress.d.ts +1 -1
- package/dist/api/types/OrderAddressJapanType.d.ts +1 -1
- package/dist/api/types/OrderList.d.ts +1 -1
- package/dist/api/types/OrderPurchasedItem.d.ts +2 -0
- package/dist/api/types/Product.d.ts +2 -0
- package/dist/api/types/ProductFieldData.d.ts +5 -4
- package/dist/api/types/RegisteredScriptList.d.ts +4 -1
- package/dist/api/types/ScriptApply.d.ts +1 -1
- package/dist/api/types/ScriptApplyList.d.ts +1 -0
- package/dist/api/types/Scripts.d.ts +3 -0
- package/dist/api/types/Site.d.ts +3 -0
- package/dist/api/types/Sites.d.ts +7 -0
- package/dist/api/types/Sku.d.ts +2 -1
- package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlan.d.ts +1 -0
- package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.d.ts +11 -0
- package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.d.ts +12 -0
- package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.js +11 -0
- package/dist/api/types/index.d.ts +7 -1
- package/dist/api/types/index.js +7 -1
- package/dist/serialization/resources/collections/resources/items/types/index.d.ts +0 -1
- package/dist/serialization/resources/collections/resources/items/types/index.js +0 -1
- package/dist/serialization/resources/pages/types/UpdateStaticContentResponse.d.ts +12 -0
- package/{serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.js → dist/serialization/resources/pages/types/UpdateStaticContentResponse.js} +4 -2
- package/dist/serialization/resources/pages/types/index.d.ts +1 -0
- package/dist/serialization/resources/pages/types/index.js +1 -0
- package/dist/serialization/resources/products/client/requests/ProductSkuCreate.d.ts +2 -2
- package/dist/serialization/resources/products/client/requests/ProductSkuCreate.js +2 -4
- package/dist/serialization/resources/products/client/requests/{ProductsUpdateRequest.d.ts → ProductSkuUpdate.d.ts} +4 -3
- package/{serialization/resources/products/client/requests/ProductsUpdateRequest.js → dist/serialization/resources/products/client/requests/ProductSkuUpdate.js} +4 -3
- package/dist/serialization/resources/products/client/requests/index.d.ts +1 -1
- package/dist/serialization/resources/products/client/requests/index.js +3 -3
- package/dist/serialization/resources/products/types/index.d.ts +0 -11
- package/dist/serialization/resources/products/types/index.js +0 -11
- package/dist/serialization/types/Asset.d.ts +4 -4
- package/dist/serialization/types/Asset.js +4 -4
- package/dist/serialization/types/AssetFolder.d.ts +1 -1
- package/dist/serialization/types/AssetFolder.js +1 -1
- package/dist/serialization/types/AssetUpload.d.ts +3 -3
- package/dist/serialization/types/AssetUpload.js +3 -3
- package/dist/serialization/types/AssetUploadUploadDetails.d.ts +2 -3
- package/dist/serialization/types/AssetUploadUploadDetails.js +2 -3
- package/dist/serialization/types/{CustomCodeResponse.d.ts → CustomCodeHostedResponse.d.ts} +6 -6
- package/{serialization/types/CustomCodeResponse.js → dist/serialization/types/CustomCodeHostedResponse.js} +6 -6
- package/{serialization/types/CustomCodeResponse.d.ts → dist/serialization/types/CustomCodeInlineResponse.d.ts} +6 -6
- package/dist/serialization/types/{CustomCodeResponse.js → CustomCodeInlineResponse.js} +6 -6
- package/dist/serialization/types/Form.d.ts +5 -5
- package/dist/serialization/types/Form.js +5 -5
- package/dist/serialization/types/FormResponseSettings.d.ts +1 -1
- package/dist/serialization/types/FormResponseSettings.js +1 -1
- package/dist/serialization/types/Locale.d.ts +19 -0
- package/dist/serialization/{resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.js → types/Locale.js} +11 -5
- package/dist/serialization/types/Locales.d.ts +13 -0
- package/dist/serialization/types/Locales.js +45 -0
- package/dist/serialization/types/OauthScope.d.ts +1 -1
- package/dist/serialization/types/OauthScope.js +2 -0
- package/dist/serialization/types/OrderList.d.ts +1 -1
- package/dist/serialization/types/OrderList.js +1 -1
- package/dist/serialization/types/OrderPurchasedItem.d.ts +1 -0
- package/dist/serialization/types/OrderPurchasedItem.js +1 -0
- package/dist/serialization/types/Product.d.ts +1 -0
- package/dist/serialization/types/Product.js +1 -0
- package/dist/serialization/types/ProductFieldData.d.ts +2 -3
- package/dist/serialization/types/ProductFieldData.js +2 -3
- package/dist/serialization/types/RegisteredScriptList.d.ts +1 -1
- package/dist/serialization/types/RegisteredScriptList.js +1 -1
- package/dist/serialization/types/Site.d.ts +2 -0
- package/dist/serialization/types/Site.js +2 -0
- package/dist/serialization/types/Sites.d.ts +12 -0
- package/dist/serialization/types/Sites.js +42 -0
- package/dist/serialization/types/Sku.d.ts +1 -0
- package/dist/serialization/types/Sku.js +1 -0
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlan.d.ts +1 -0
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlan.js +3 -0
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.d.ts +14 -0
- package/{serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.js → dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.js} +7 -7
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.d.ts +10 -0
- package/{serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.js → dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.js} +3 -3
- package/dist/serialization/types/index.d.ts +7 -1
- package/dist/serialization/types/index.js +7 -1
- package/dist/wrapper/CollectionsClient.d.ts +8 -0
- package/dist/wrapper/CollectionsClient.js +18 -0
- package/dist/wrapper/ItemsClient.d.ts +30 -0
- package/dist/wrapper/ItemsClient.js +138 -0
- package/dist/wrapper/WebflowClient.d.ts +5 -0
- package/dist/wrapper/WebflowClient.js +11 -2
- package/package.json +1 -1
- package/serialization/resources/collections/resources/items/types/index.d.ts +0 -1
- package/serialization/resources/collections/resources/items/types/index.js +0 -1
- package/serialization/resources/pages/types/UpdateStaticContentResponse.d.ts +12 -0
- package/{dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.js → serialization/resources/pages/types/UpdateStaticContentResponse.js} +4 -2
- package/serialization/resources/pages/types/index.d.ts +1 -0
- package/serialization/resources/pages/types/index.js +1 -0
- package/serialization/resources/products/client/requests/ProductSkuCreate.d.ts +2 -2
- package/serialization/resources/products/client/requests/ProductSkuCreate.js +2 -4
- package/serialization/resources/products/client/requests/{ProductsUpdateRequest.d.ts → ProductSkuUpdate.d.ts} +4 -3
- package/{dist/serialization/resources/products/client/requests/ProductsUpdateRequest.js → serialization/resources/products/client/requests/ProductSkuUpdate.js} +4 -3
- package/serialization/resources/products/client/requests/index.d.ts +1 -1
- package/serialization/resources/products/client/requests/index.js +3 -3
- package/serialization/resources/products/types/index.d.ts +0 -11
- package/serialization/resources/products/types/index.js +0 -11
- package/serialization/types/Asset.d.ts +4 -4
- package/serialization/types/Asset.js +4 -4
- package/serialization/types/AssetFolder.d.ts +1 -1
- package/serialization/types/AssetFolder.js +1 -1
- package/serialization/types/AssetUpload.d.ts +3 -3
- package/serialization/types/AssetUpload.js +3 -3
- package/serialization/types/AssetUploadUploadDetails.d.ts +2 -3
- package/serialization/types/AssetUploadUploadDetails.js +2 -3
- package/serialization/types/CustomCodeHostedResponse.d.ts +19 -0
- package/serialization/types/CustomCodeHostedResponse.js +40 -0
- package/serialization/types/CustomCodeInlineResponse.d.ts +19 -0
- package/serialization/types/CustomCodeInlineResponse.js +40 -0
- package/serialization/types/Form.d.ts +5 -5
- package/serialization/types/Form.js +5 -5
- package/serialization/types/FormResponseSettings.d.ts +1 -1
- package/serialization/types/FormResponseSettings.js +1 -1
- package/serialization/types/Locale.d.ts +19 -0
- package/{dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataPrice.js → serialization/types/Locale.js} +11 -6
- package/serialization/types/Locales.d.ts +13 -0
- package/serialization/types/Locales.js +45 -0
- package/serialization/types/OauthScope.d.ts +1 -1
- package/serialization/types/OauthScope.js +2 -0
- package/serialization/types/OrderList.d.ts +1 -1
- package/serialization/types/OrderList.js +1 -1
- package/serialization/types/OrderPurchasedItem.d.ts +1 -0
- package/serialization/types/OrderPurchasedItem.js +1 -0
- package/serialization/types/Product.d.ts +1 -0
- package/serialization/types/Product.js +1 -0
- package/serialization/types/ProductFieldData.d.ts +2 -3
- package/serialization/types/ProductFieldData.js +2 -3
- package/serialization/types/RegisteredScriptList.d.ts +1 -1
- package/serialization/types/RegisteredScriptList.js +1 -1
- package/serialization/types/Site.d.ts +2 -0
- package/serialization/types/Site.js +2 -0
- package/serialization/types/Sites.d.ts +12 -0
- package/serialization/types/Sites.js +42 -0
- package/serialization/types/Sku.d.ts +1 -0
- package/serialization/types/Sku.js +1 -0
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlan.d.ts +1 -0
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlan.js +3 -0
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.d.ts +14 -0
- package/{dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.js → serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.js} +7 -7
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.d.ts +10 -0
- package/{dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.js → serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.js} +3 -3
- package/serialization/types/index.d.ts +7 -1
- package/serialization/types/index.js +7 -1
- package/wrapper/CollectionsClient.d.ts +8 -0
- package/wrapper/CollectionsClient.js +18 -0
- package/wrapper/ItemsClient.d.ts +30 -0
- package/wrapper/ItemsClient.js +138 -0
- package/wrapper/WebflowClient.d.ts +5 -0
- package/wrapper/WebflowClient.js +11 -2
- package/api/resources/collections/resources/items/types/ItemsPublishItemResponse.d.ts +0 -7
- package/api/resources/products/client/requests/ProductsUpdateRequest.d.ts +0 -56
- package/api/resources/products/types/ProductSkuCreateProduct.d.ts +0 -22
- package/api/resources/products/types/ProductSkuCreateProductFieldData.d.ts +0 -23
- package/api/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.d.ts +0 -13
- package/api/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.js +0 -12
- package/api/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.d.ts +0 -38
- package/api/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.js +0 -37
- package/api/resources/products/types/ProductSkuCreateSku.d.ts +0 -19
- package/api/resources/products/types/ProductSkuCreateSkuFieldData.d.ts +0 -26
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.d.ts +0 -12
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.d.ts +0 -11
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.js +0 -10
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.d.ts +0 -15
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.d.ts +0 -13
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.js +0 -12
- package/api/resources/products/types/ProductSkuCreateSkuFieldDataPrice.d.ts +0 -13
- package/dist/api/resources/collections/resources/items/types/ItemsPublishItemResponse.d.ts +0 -7
- package/dist/api/resources/products/client/requests/ProductsUpdateRequest.d.ts +0 -56
- package/dist/api/resources/products/types/ProductSkuCreateProduct.d.ts +0 -22
- package/dist/api/resources/products/types/ProductSkuCreateProductFieldData.d.ts +0 -23
- package/dist/api/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.d.ts +0 -13
- package/dist/api/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.js +0 -12
- package/dist/api/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.d.ts +0 -38
- package/dist/api/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.js +0 -37
- package/dist/api/resources/products/types/ProductSkuCreateSku.d.ts +0 -19
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldData.d.ts +0 -26
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.d.ts +0 -12
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.d.ts +0 -11
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.js +0 -10
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.d.ts +0 -15
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.d.ts +0 -13
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.js +0 -12
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataPrice.d.ts +0 -13
- package/dist/api/resources/products/types/ProductSkuCreateSkuFieldDataPrice.js +0 -5
- package/dist/api/types/CustomCodeResponse.js +0 -5
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemResponse.d.ts +0 -13
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemResponse.js +0 -34
- package/dist/serialization/resources/products/types/ProductSkuCreateProduct.d.ts +0 -18
- package/dist/serialization/resources/products/types/ProductSkuCreateProduct.js +0 -50
- package/dist/serialization/resources/products/types/ProductSkuCreateProductFieldData.d.ts +0 -20
- package/dist/serialization/resources/products/types/ProductSkuCreateProductFieldData.js +0 -56
- package/dist/serialization/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.d.ts +0 -10
- package/dist/serialization/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.js +0 -36
- package/dist/serialization/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.d.ts +0 -10
- package/dist/serialization/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.js +0 -61
- package/dist/serialization/resources/products/types/ProductSkuCreateSku.d.ts +0 -16
- package/dist/serialization/resources/products/types/ProductSkuCreateSku.js +0 -48
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldData.d.ts +0 -20
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldData.js +0 -56
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.d.ts +0 -13
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.d.ts +0 -10
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.d.ts +0 -14
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.d.ts +0 -10
- package/dist/serialization/resources/products/types/ProductSkuCreateSkuFieldDataPrice.d.ts +0 -14
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemResponse.d.ts +0 -13
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemResponse.js +0 -34
- package/serialization/resources/products/types/ProductSkuCreateProduct.d.ts +0 -18
- package/serialization/resources/products/types/ProductSkuCreateProduct.js +0 -50
- package/serialization/resources/products/types/ProductSkuCreateProductFieldData.d.ts +0 -20
- package/serialization/resources/products/types/ProductSkuCreateProductFieldData.js +0 -56
- package/serialization/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.d.ts +0 -10
- package/serialization/resources/products/types/ProductSkuCreateProductFieldDataEcProductType.js +0 -36
- package/serialization/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.d.ts +0 -10
- package/serialization/resources/products/types/ProductSkuCreateProductFieldDataTaxCategory.js +0 -61
- package/serialization/resources/products/types/ProductSkuCreateSku.d.ts +0 -16
- package/serialization/resources/products/types/ProductSkuCreateSku.js +0 -48
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldData.d.ts +0 -20
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldData.js +0 -56
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.d.ts +0 -13
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.js +0 -34
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuBillingMethod.d.ts +0 -10
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.d.ts +0 -14
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlanInterval.d.ts +0 -10
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataPrice.d.ts +0 -14
- package/serialization/resources/products/types/ProductSkuCreateSkuFieldDataPrice.js +0 -35
- /package/api/resources/collections/resources/items/{types/ItemsPublishItemResponse.js → client/requests/ItemsListItemsLiveRequest.js} +0 -0
- /package/api/resources/{products/client/requests/ProductsUpdateRequest.js → pages/types/UpdateStaticContentResponse.js} +0 -0
- /package/api/resources/products/{types/ProductSkuCreateProduct.js → client/requests/ProductSkuUpdate.js} +0 -0
- /package/api/{resources/products/types/ProductSkuCreateProductFieldData.js → types/CustomCodeHostedResponse.js} +0 -0
- /package/api/{resources/products/types/ProductSkuCreateSku.js → types/CustomCodeInlineResponse.js} +0 -0
- /package/api/{resources/products/types/ProductSkuCreateSkuFieldData.js → types/Locale.js} +0 -0
- /package/api/{resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.js → types/Locales.js} +0 -0
- /package/api/{resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.js → types/Sites.js} +0 -0
- /package/api/{resources/products/types/ProductSkuCreateSkuFieldDataPrice.js → types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.js} +0 -0
- /package/{api/types/CustomCodeResponse.js → dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.js} +0 -0
- /package/dist/api/resources/{collections/resources/items/types/ItemsPublishItemResponse.js → pages/types/UpdateStaticContentResponse.js} +0 -0
- /package/dist/api/resources/products/client/requests/{ProductsUpdateRequest.js → ProductSkuUpdate.js} +0 -0
- /package/dist/api/{resources/products/types/ProductSkuCreateProduct.js → types/CustomCodeHostedResponse.js} +0 -0
- /package/dist/api/{resources/products/types/ProductSkuCreateProductFieldData.js → types/CustomCodeInlineResponse.js} +0 -0
- /package/dist/api/{resources/products/types/ProductSkuCreateSku.js → types/Locale.js} +0 -0
- /package/dist/api/{resources/products/types/ProductSkuCreateSkuFieldData.js → types/Locales.js} +0 -0
- /package/dist/api/{resources/products/types/ProductSkuCreateSkuFieldDataCompareAtPrice.js → types/Sites.js} +0 -0
- /package/dist/api/{resources/products/types/ProductSkuCreateSkuFieldDataEcSkuSubscriptionPlan.js → types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.js} +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* @example
|
|
6
|
+
* {}
|
|
7
|
+
*/
|
|
8
|
+
export interface ItemsListItemsLiveRequest {
|
|
9
|
+
/**
|
|
10
|
+
* Unique identifiers for CMS Locales. These UIDs are different from the Site locale identifier and are listed as `cmsLocaleId` in the Sites response. Applicable when using localization.
|
|
11
|
+
*/
|
|
12
|
+
cmsLocaleIds?: string | string[];
|
|
13
|
+
/**
|
|
14
|
+
* Offset used for pagination if the results have more than limit records
|
|
15
|
+
*/
|
|
16
|
+
offset?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Maximum number of records to be returned (max limit: 100)
|
|
19
|
+
*/
|
|
20
|
+
limit?: number;
|
|
21
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { ItemsListItemsRequest } from "./ItemsListItemsRequest";
|
|
2
|
+
export { ItemsListItemsLiveRequest } from "./ItemsListItemsLiveRequest";
|
|
2
3
|
export { BulkCollectionItem } from "./BulkCollectionItem";
|
|
3
4
|
export { ItemsGetItemRequest } from "./ItemsGetItemRequest";
|
|
4
5
|
export { ItemsDeleteItemRequest } from "./ItemsDeleteItemRequest";
|
|
@@ -15,4 +15,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./BulkCollectionItemFieldData"), exports);
|
|
18
|
-
__exportStar(require("./ItemsPublishItemResponse"), exports);
|
|
@@ -74,7 +74,7 @@ class Ecommerce {
|
|
|
74
74
|
Authorization: yield this._getAuthorizationHeader(),
|
|
75
75
|
"X-Fern-Language": "JavaScript",
|
|
76
76
|
"X-Fern-SDK-Name": "webflow-api",
|
|
77
|
-
"X-Fern-SDK-Version": "
|
|
77
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
78
78
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
79
79
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
80
80
|
},
|
|
@@ -80,7 +80,7 @@ class Forms {
|
|
|
80
80
|
Authorization: yield this._getAuthorizationHeader(),
|
|
81
81
|
"X-Fern-Language": "JavaScript",
|
|
82
82
|
"X-Fern-SDK-Name": "webflow-api",
|
|
83
|
-
"X-Fern-SDK-Version": "
|
|
83
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
84
84
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
85
85
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
86
86
|
},
|
|
@@ -158,7 +158,7 @@ class Forms {
|
|
|
158
158
|
Authorization: yield this._getAuthorizationHeader(),
|
|
159
159
|
"X-Fern-Language": "JavaScript",
|
|
160
160
|
"X-Fern-SDK-Name": "webflow-api",
|
|
161
|
-
"X-Fern-SDK-Version": "
|
|
161
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
162
162
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
163
163
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
164
164
|
},
|
|
@@ -233,7 +233,7 @@ class Forms {
|
|
|
233
233
|
Authorization: yield this._getAuthorizationHeader(),
|
|
234
234
|
"X-Fern-Language": "JavaScript",
|
|
235
235
|
"X-Fern-SDK-Name": "webflow-api",
|
|
236
|
-
"X-Fern-SDK-Version": "
|
|
236
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
237
237
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
238
238
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
239
239
|
},
|
|
@@ -308,7 +308,7 @@ class Forms {
|
|
|
308
308
|
Authorization: yield this._getAuthorizationHeader(),
|
|
309
309
|
"X-Fern-Language": "JavaScript",
|
|
310
310
|
"X-Fern-SDK-Name": "webflow-api",
|
|
311
|
-
"X-Fern-SDK-Version": "
|
|
311
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
312
312
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
313
313
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
314
314
|
},
|
|
@@ -384,7 +384,7 @@ class Forms {
|
|
|
384
384
|
Authorization: yield this._getAuthorizationHeader(),
|
|
385
385
|
"X-Fern-Language": "JavaScript",
|
|
386
386
|
"X-Fern-SDK-Name": "webflow-api",
|
|
387
|
-
"X-Fern-SDK-Version": "
|
|
387
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
388
388
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
389
389
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
390
390
|
},
|
|
@@ -74,7 +74,7 @@ class Inventory {
|
|
|
74
74
|
Authorization: yield this._getAuthorizationHeader(),
|
|
75
75
|
"X-Fern-Language": "JavaScript",
|
|
76
76
|
"X-Fern-SDK-Name": "webflow-api",
|
|
77
|
-
"X-Fern-SDK-Version": "
|
|
77
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
78
78
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
79
79
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
80
80
|
},
|
|
@@ -158,7 +158,7 @@ class Inventory {
|
|
|
158
158
|
Authorization: yield this._getAuthorizationHeader(),
|
|
159
159
|
"X-Fern-Language": "JavaScript",
|
|
160
160
|
"X-Fern-SDK-Name": "webflow-api",
|
|
161
|
-
"X-Fern-SDK-Version": "
|
|
161
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
162
162
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
163
163
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
164
164
|
},
|
|
@@ -85,7 +85,7 @@ class Orders {
|
|
|
85
85
|
Authorization: yield this._getAuthorizationHeader(),
|
|
86
86
|
"X-Fern-Language": "JavaScript",
|
|
87
87
|
"X-Fern-SDK-Name": "webflow-api",
|
|
88
|
-
"X-Fern-SDK-Version": "
|
|
88
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
89
89
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
90
90
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
91
91
|
},
|
|
@@ -166,7 +166,7 @@ class Orders {
|
|
|
166
166
|
Authorization: yield this._getAuthorizationHeader(),
|
|
167
167
|
"X-Fern-Language": "JavaScript",
|
|
168
168
|
"X-Fern-SDK-Name": "webflow-api",
|
|
169
|
-
"X-Fern-SDK-Version": "
|
|
169
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
170
170
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
171
171
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
172
172
|
},
|
|
@@ -251,7 +251,7 @@ class Orders {
|
|
|
251
251
|
Authorization: yield this._getAuthorizationHeader(),
|
|
252
252
|
"X-Fern-Language": "JavaScript",
|
|
253
253
|
"X-Fern-SDK-Name": "webflow-api",
|
|
254
|
-
"X-Fern-SDK-Version": "
|
|
254
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
255
255
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
256
256
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
257
257
|
},
|
|
@@ -332,7 +332,7 @@ class Orders {
|
|
|
332
332
|
Authorization: yield this._getAuthorizationHeader(),
|
|
333
333
|
"X-Fern-Language": "JavaScript",
|
|
334
334
|
"X-Fern-SDK-Name": "webflow-api",
|
|
335
|
-
"X-Fern-SDK-Version": "
|
|
335
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
336
336
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
337
337
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
338
338
|
},
|
|
@@ -415,7 +415,7 @@ class Orders {
|
|
|
415
415
|
Authorization: yield this._getAuthorizationHeader(),
|
|
416
416
|
"X-Fern-Language": "JavaScript",
|
|
417
417
|
"X-Fern-SDK-Name": "webflow-api",
|
|
418
|
-
"X-Fern-SDK-Version": "
|
|
418
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
419
419
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
420
420
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
421
421
|
},
|
|
@@ -496,7 +496,7 @@ class Orders {
|
|
|
496
496
|
Authorization: yield this._getAuthorizationHeader(),
|
|
497
497
|
"X-Fern-Language": "JavaScript",
|
|
498
498
|
"X-Fern-SDK-Name": "webflow-api",
|
|
499
|
-
"X-Fern-SDK-Version": "
|
|
499
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
500
500
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
501
501
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
502
502
|
},
|
|
@@ -53,27 +53,27 @@ export declare class Pages {
|
|
|
53
53
|
* @example
|
|
54
54
|
* await webflow.pages.updatePageSettings("page_id", {
|
|
55
55
|
* body: {
|
|
56
|
-
* id: "
|
|
57
|
-
* siteId: "
|
|
58
|
-
* title: "
|
|
59
|
-
* slug: "
|
|
56
|
+
* id: "6596da6045e56dee495bcbba",
|
|
57
|
+
* siteId: "6258612d1ee792848f805dcf",
|
|
58
|
+
* title: "Guide to the Galaxy",
|
|
59
|
+
* slug: "guide-to-the-galaxy",
|
|
60
60
|
* parentId: "6419db964a9c435aa3af6251",
|
|
61
61
|
* collectionId: "6390c49774a71f12831a08e3",
|
|
62
|
-
* createdOn: new Date("
|
|
63
|
-
* lastUpdated: new Date("
|
|
62
|
+
* createdOn: new Date("2024-03-11T10:42:00.000Z"),
|
|
63
|
+
* lastUpdated: new Date("2024-03-11T10:42:42.000Z"),
|
|
64
64
|
* archived: false,
|
|
65
65
|
* draft: false,
|
|
66
66
|
* canBranch: true,
|
|
67
67
|
* isMembersOnly: false,
|
|
68
68
|
* seo: {
|
|
69
|
-
* title: "
|
|
70
|
-
* description: "
|
|
69
|
+
* title: "The Ultimate Hitchhiker's Guide to the Galaxy",
|
|
70
|
+
* description: "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels."
|
|
71
71
|
* },
|
|
72
72
|
* openGraph: {
|
|
73
|
-
* title: "
|
|
74
|
-
* titleCopied:
|
|
75
|
-
* description: "
|
|
76
|
-
* descriptionCopied:
|
|
73
|
+
* title: "Explore the Cosmos with The Ultimate Guide",
|
|
74
|
+
* titleCopied: false,
|
|
75
|
+
* description: "Dive deep into the mysteries of the universe with your guide to everything galactic.",
|
|
76
|
+
* descriptionCopied: false
|
|
77
77
|
* }
|
|
78
78
|
* }
|
|
79
79
|
* })
|
|
@@ -105,12 +105,21 @@ export declare class Pages {
|
|
|
105
105
|
* await webflow.pages.updateStaticContent("page_id", {
|
|
106
106
|
* locale: "locale",
|
|
107
107
|
* nodes: [{
|
|
108
|
-
* nodeId: "
|
|
108
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad623",
|
|
109
|
+
* text: "<h1>The Hitchhiker's Guide to the Galaxy</h1>"
|
|
110
|
+
* }, {
|
|
111
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad627",
|
|
112
|
+
* text: "<div><h3>Don't Panic!</h3><p>Always know where your towel is.</p></div>"
|
|
113
|
+
* }, {
|
|
114
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad629",
|
|
115
|
+
* text: "<img alt='Marvin, the Paranoid Android' src='path/to/image/with/assetId/659595234426a9fcbad57043'/>"
|
|
116
|
+
* }, {
|
|
117
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad623",
|
|
109
118
|
* text: "<h1>Hello world</h1>"
|
|
110
119
|
* }]
|
|
111
120
|
* })
|
|
112
121
|
*/
|
|
113
|
-
updateStaticContent(pageId: string, request: Webflow.DomWrite, requestOptions?: Pages.RequestOptions): Promise<Webflow.
|
|
122
|
+
updateStaticContent(pageId: string, request: Webflow.DomWrite, requestOptions?: Pages.RequestOptions): Promise<Webflow.UpdateStaticContentResponse>;
|
|
114
123
|
protected _scripts: Scripts | undefined;
|
|
115
124
|
get scripts(): Scripts;
|
|
116
125
|
protected _getAuthorizationHeader(): Promise<string>;
|
|
@@ -93,7 +93,7 @@ class Pages {
|
|
|
93
93
|
Authorization: yield this._getAuthorizationHeader(),
|
|
94
94
|
"X-Fern-Language": "JavaScript",
|
|
95
95
|
"X-Fern-SDK-Name": "webflow-api",
|
|
96
|
-
"X-Fern-SDK-Version": "
|
|
96
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
97
97
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
98
98
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
99
99
|
},
|
|
@@ -171,7 +171,7 @@ class Pages {
|
|
|
171
171
|
Authorization: yield this._getAuthorizationHeader(),
|
|
172
172
|
"X-Fern-Language": "JavaScript",
|
|
173
173
|
"X-Fern-SDK-Name": "webflow-api",
|
|
174
|
-
"X-Fern-SDK-Version": "
|
|
174
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
175
175
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
176
176
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
177
177
|
},
|
|
@@ -234,27 +234,27 @@ class Pages {
|
|
|
234
234
|
* @example
|
|
235
235
|
* await webflow.pages.updatePageSettings("page_id", {
|
|
236
236
|
* body: {
|
|
237
|
-
* id: "
|
|
238
|
-
* siteId: "
|
|
239
|
-
* title: "
|
|
240
|
-
* slug: "
|
|
237
|
+
* id: "6596da6045e56dee495bcbba",
|
|
238
|
+
* siteId: "6258612d1ee792848f805dcf",
|
|
239
|
+
* title: "Guide to the Galaxy",
|
|
240
|
+
* slug: "guide-to-the-galaxy",
|
|
241
241
|
* parentId: "6419db964a9c435aa3af6251",
|
|
242
242
|
* collectionId: "6390c49774a71f12831a08e3",
|
|
243
|
-
* createdOn: new Date("
|
|
244
|
-
* lastUpdated: new Date("
|
|
243
|
+
* createdOn: new Date("2024-03-11T10:42:00.000Z"),
|
|
244
|
+
* lastUpdated: new Date("2024-03-11T10:42:42.000Z"),
|
|
245
245
|
* archived: false,
|
|
246
246
|
* draft: false,
|
|
247
247
|
* canBranch: true,
|
|
248
248
|
* isMembersOnly: false,
|
|
249
249
|
* seo: {
|
|
250
|
-
* title: "
|
|
251
|
-
* description: "
|
|
250
|
+
* title: "The Ultimate Hitchhiker's Guide to the Galaxy",
|
|
251
|
+
* description: "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels."
|
|
252
252
|
* },
|
|
253
253
|
* openGraph: {
|
|
254
|
-
* title: "
|
|
255
|
-
* titleCopied:
|
|
256
|
-
* description: "
|
|
257
|
-
* descriptionCopied:
|
|
254
|
+
* title: "Explore the Cosmos with The Ultimate Guide",
|
|
255
|
+
* titleCopied: false,
|
|
256
|
+
* description: "Dive deep into the mysteries of the universe with your guide to everything galactic.",
|
|
257
|
+
* descriptionCopied: false
|
|
258
258
|
* }
|
|
259
259
|
* }
|
|
260
260
|
* })
|
|
@@ -274,7 +274,7 @@ class Pages {
|
|
|
274
274
|
Authorization: yield this._getAuthorizationHeader(),
|
|
275
275
|
"X-Fern-Language": "JavaScript",
|
|
276
276
|
"X-Fern-SDK-Name": "webflow-api",
|
|
277
|
-
"X-Fern-SDK-Version": "
|
|
277
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
278
278
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
279
279
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
280
280
|
},
|
|
@@ -354,7 +354,7 @@ class Pages {
|
|
|
354
354
|
Authorization: yield this._getAuthorizationHeader(),
|
|
355
355
|
"X-Fern-Language": "JavaScript",
|
|
356
356
|
"X-Fern-SDK-Name": "webflow-api",
|
|
357
|
-
"X-Fern-SDK-Version": "
|
|
357
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
358
358
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
359
359
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
360
360
|
},
|
|
@@ -421,7 +421,16 @@ class Pages {
|
|
|
421
421
|
* await webflow.pages.updateStaticContent("page_id", {
|
|
422
422
|
* locale: "locale",
|
|
423
423
|
* nodes: [{
|
|
424
|
-
* nodeId: "
|
|
424
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad623",
|
|
425
|
+
* text: "<h1>The Hitchhiker's Guide to the Galaxy</h1>"
|
|
426
|
+
* }, {
|
|
427
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad627",
|
|
428
|
+
* text: "<div><h3>Don't Panic!</h3><p>Always know where your towel is.</p></div>"
|
|
429
|
+
* }, {
|
|
430
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad629",
|
|
431
|
+
* text: "<img alt='Marvin, the Paranoid Android' src='path/to/image/with/assetId/659595234426a9fcbad57043'/>"
|
|
432
|
+
* }, {
|
|
433
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad623",
|
|
425
434
|
* text: "<h1>Hello world</h1>"
|
|
426
435
|
* }]
|
|
427
436
|
* })
|
|
@@ -439,7 +448,7 @@ class Pages {
|
|
|
439
448
|
Authorization: yield this._getAuthorizationHeader(),
|
|
440
449
|
"X-Fern-Language": "JavaScript",
|
|
441
450
|
"X-Fern-SDK-Name": "webflow-api",
|
|
442
|
-
"X-Fern-SDK-Version": "
|
|
451
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
443
452
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
444
453
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
445
454
|
},
|
|
@@ -450,7 +459,7 @@ class Pages {
|
|
|
450
459
|
maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
|
|
451
460
|
});
|
|
452
461
|
if (_response.ok) {
|
|
453
|
-
return yield serializers.
|
|
462
|
+
return yield serializers.UpdateStaticContentResponse.parseOrThrow(_response.body, {
|
|
454
463
|
unrecognizedObjectKeys: "passthrough",
|
|
455
464
|
allowUnrecognizedUnionMembers: true,
|
|
456
465
|
allowUnrecognizedEnumValues: true,
|
|
@@ -7,7 +7,16 @@ import * as Webflow from "../../../..";
|
|
|
7
7
|
* {
|
|
8
8
|
* locale: "locale",
|
|
9
9
|
* nodes: [{
|
|
10
|
-
* nodeId: "
|
|
10
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad623",
|
|
11
|
+
* text: "<h1>The Hitchhiker's Guide to the Galaxy</h1>"
|
|
12
|
+
* }, {
|
|
13
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad627",
|
|
14
|
+
* text: "<div><h3>Don't Panic!</h3><p>Always know where your towel is.</p></div>"
|
|
15
|
+
* }, {
|
|
16
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad629",
|
|
17
|
+
* text: "<img alt='Marvin, the Paranoid Android' src='path/to/image/with/assetId/659595234426a9fcbad57043'/>"
|
|
18
|
+
* }, {
|
|
19
|
+
* nodeId: "a245c12d-995b-55ee-5ec7-aa36a6cad623",
|
|
11
20
|
* text: "<h1>Hello world</h1>"
|
|
12
21
|
* }]
|
|
13
22
|
* }
|
|
@@ -6,27 +6,27 @@ import * as Webflow from "../../../..";
|
|
|
6
6
|
* @example
|
|
7
7
|
* {
|
|
8
8
|
* body: {
|
|
9
|
-
* id: "
|
|
10
|
-
* siteId: "
|
|
11
|
-
* title: "
|
|
12
|
-
* slug: "
|
|
9
|
+
* id: "6596da6045e56dee495bcbba",
|
|
10
|
+
* siteId: "6258612d1ee792848f805dcf",
|
|
11
|
+
* title: "Guide to the Galaxy",
|
|
12
|
+
* slug: "guide-to-the-galaxy",
|
|
13
13
|
* parentId: "6419db964a9c435aa3af6251",
|
|
14
14
|
* collectionId: "6390c49774a71f12831a08e3",
|
|
15
|
-
* createdOn: new Date("
|
|
16
|
-
* lastUpdated: new Date("
|
|
15
|
+
* createdOn: new Date("2024-03-11T10:42:00.000Z"),
|
|
16
|
+
* lastUpdated: new Date("2024-03-11T10:42:42.000Z"),
|
|
17
17
|
* archived: false,
|
|
18
18
|
* draft: false,
|
|
19
19
|
* canBranch: true,
|
|
20
20
|
* isMembersOnly: false,
|
|
21
21
|
* seo: {
|
|
22
|
-
* title: "
|
|
23
|
-
* description: "
|
|
22
|
+
* title: "The Ultimate Hitchhiker's Guide to the Galaxy",
|
|
23
|
+
* description: "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels."
|
|
24
24
|
* },
|
|
25
25
|
* openGraph: {
|
|
26
|
-
* title: "
|
|
27
|
-
* titleCopied:
|
|
28
|
-
* description: "
|
|
29
|
-
* descriptionCopied:
|
|
26
|
+
* title: "Explore the Cosmos with The Ultimate Guide",
|
|
27
|
+
* titleCopied: false,
|
|
28
|
+
* description: "Dive deep into the mysteries of the universe with your guide to everything galactic.",
|
|
29
|
+
* descriptionCopied: false
|
|
30
30
|
* }
|
|
31
31
|
* }
|
|
32
32
|
* }
|
|
@@ -70,7 +70,7 @@ class Scripts {
|
|
|
70
70
|
Authorization: yield this._getAuthorizationHeader(),
|
|
71
71
|
"X-Fern-Language": "JavaScript",
|
|
72
72
|
"X-Fern-SDK-Name": "webflow-api",
|
|
73
|
-
"X-Fern-SDK-Version": "
|
|
73
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
74
74
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
75
75
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
76
76
|
},
|
|
@@ -159,7 +159,7 @@ class Scripts {
|
|
|
159
159
|
Authorization: yield this._getAuthorizationHeader(),
|
|
160
160
|
"X-Fern-Language": "JavaScript",
|
|
161
161
|
"X-Fern-SDK-Name": "webflow-api",
|
|
162
|
-
"X-Fern-SDK-Version": "
|
|
162
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
163
163
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
164
164
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
165
165
|
},
|
|
@@ -232,7 +232,7 @@ class Scripts {
|
|
|
232
232
|
Authorization: yield this._getAuthorizationHeader(),
|
|
233
233
|
"X-Fern-Language": "JavaScript",
|
|
234
234
|
"X-Fern-SDK-Name": "webflow-api",
|
|
235
|
-
"X-Fern-SDK-Version": "
|
|
235
|
+
"X-Fern-SDK-Version": "2.3.2",
|
|
236
236
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
237
237
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
238
238
|
},
|
|
@@ -52,7 +52,32 @@ export declare class Products {
|
|
|
52
52
|
* @throws {@link Webflow.InternalServerError}
|
|
53
53
|
*
|
|
54
54
|
* @example
|
|
55
|
-
* await webflow.products.create("site_id", {
|
|
55
|
+
* await webflow.products.create("site_id", {
|
|
56
|
+
* product: {
|
|
57
|
+
* id: "660eb7a486d1d6e0412292d7",
|
|
58
|
+
* cmsLocaleId: "653ad57de882f528b32e810e",
|
|
59
|
+
* lastPublished: new Date("2024-04-04T14:24:19.000Z"),
|
|
60
|
+
* lastUpdated: new Date("2024-04-04T14:30:19.000Z"),
|
|
61
|
+
* createdOn: new Date("2024-04-04T14:22:28.000Z"),
|
|
62
|
+
* isArchived: false,
|
|
63
|
+
* isDraft: false,
|
|
64
|
+
* fieldData: {
|
|
65
|
+
* name: "T-Shirt",
|
|
66
|
+
* slug: "t-shirt",
|
|
67
|
+
* description: "A plain cotton t-shirt.",
|
|
68
|
+
* shippable: true,
|
|
69
|
+
* skuProperties: [{
|
|
70
|
+
* id: "Color",
|
|
71
|
+
* name: "Color",
|
|
72
|
+
* enum: [{
|
|
73
|
+
* id: "id",
|
|
74
|
+
* name: "name",
|
|
75
|
+
* slug: "slug"
|
|
76
|
+
* }]
|
|
77
|
+
* }]
|
|
78
|
+
* }
|
|
79
|
+
* }
|
|
80
|
+
* })
|
|
56
81
|
*/
|
|
57
82
|
create(siteId: string, request?: Webflow.ProductSkuCreate, requestOptions?: Products.RequestOptions): Promise<Webflow.ProductAndSkUs>;
|
|
58
83
|
/**
|
|
@@ -86,10 +111,11 @@ export declare class Products {
|
|
|
86
111
|
* @example
|
|
87
112
|
* await webflow.products.update("site_id", "product_id", {
|
|
88
113
|
* product: {
|
|
89
|
-
* id: "
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
114
|
+
* id: "660eb7a486d1d6e0412292d7",
|
|
115
|
+
* cmsLocaleId: "653ad57de882f528b32e810e",
|
|
116
|
+
* lastPublished: new Date("2024-04-04T14:24:19.000Z"),
|
|
117
|
+
* lastUpdated: new Date("2024-04-04T14:30:19.000Z"),
|
|
118
|
+
* createdOn: new Date("2024-04-04T14:22:28.000Z"),
|
|
93
119
|
* isArchived: false,
|
|
94
120
|
* isDraft: false,
|
|
95
121
|
* fieldData: {
|
|
@@ -98,26 +124,6 @@ export declare class Products {
|
|
|
98
124
|
* description: "A plain cotton t-shirt.",
|
|
99
125
|
* shippable: true,
|
|
100
126
|
* skuProperties: [{
|
|
101
|
-
* id: "color",
|
|
102
|
-
* name: "Color",
|
|
103
|
-
* enum: [{
|
|
104
|
-
* id: "royal-blue",
|
|
105
|
-
* name: "Royal Blue",
|
|
106
|
-
* slug: "royal-blue"
|
|
107
|
-
* }, {
|
|
108
|
-
* id: "crimson-red",
|
|
109
|
-
* name: "Crimson Red",
|
|
110
|
-
* slug: "crimson-red"
|
|
111
|
-
* }, {
|
|
112
|
-
* id: "forrest-green",
|
|
113
|
-
* name: "name",
|
|
114
|
-
* slug: "slug"
|
|
115
|
-
* }, {
|
|
116
|
-
* id: "id",
|
|
117
|
-
* name: "name",
|
|
118
|
-
* slug: "slug"
|
|
119
|
-
* }]
|
|
120
|
-
* }, {
|
|
121
127
|
* id: "Color",
|
|
122
128
|
* name: "Color",
|
|
123
129
|
* enum: [{
|
|
@@ -130,7 +136,7 @@ export declare class Products {
|
|
|
130
136
|
* }
|
|
131
137
|
* })
|
|
132
138
|
*/
|
|
133
|
-
update(siteId: string, productId: string, request
|
|
139
|
+
update(siteId: string, productId: string, request?: Webflow.ProductSkuUpdate, requestOptions?: Products.RequestOptions): Promise<Webflow.Product>;
|
|
134
140
|
/**
|
|
135
141
|
* Create additional SKUs to cover every variant of your Product. The Default SKU already counts as one of the variants.
|
|
136
142
|
*
|
|
@@ -149,6 +155,7 @@ export declare class Products {
|
|
|
149
155
|
* await webflow.products.createSku("site_id", "product_id", {
|
|
150
156
|
* skus: [{
|
|
151
157
|
* id: "580e63fc8c9a982ac9b8b745",
|
|
158
|
+
* cmsLocaleId: "653ad57de882f528b32e810e",
|
|
152
159
|
* lastPublished: new Date("2023-03-17T18:47:35.000Z"),
|
|
153
160
|
* lastUpdated: new Date("2023-03-17T18:47:35.000Z"),
|
|
154
161
|
* createdOn: new Date("2023-03-17T18:47:35.000Z"),
|
|
@@ -181,6 +188,7 @@ export declare class Products {
|
|
|
181
188
|
* await webflow.products.updateSku("site_id", "product_id", "sku_id", {
|
|
182
189
|
* sku: {
|
|
183
190
|
* id: "580e63fc8c9a982ac9b8b745",
|
|
191
|
+
* cmsLocaleId: "653ad57de882f528b32e810e",
|
|
184
192
|
* lastPublished: new Date("2023-03-17T18:47:35.000Z"),
|
|
185
193
|
* lastUpdated: new Date("2023-03-17T18:47:35.000Z"),
|
|
186
194
|
* createdOn: new Date("2023-03-17T18:47:35.000Z"),
|