-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(chore): disable response validation
- Loading branch information
1 parent
2e0d0d7
commit 4acf657
Showing
29 changed files
with
293 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/api/resources/collections/resources/items/client/requests/BulkCollectionItem.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Webflow from "../../../../../.."; | ||
|
||
/** | ||
* @example | ||
* { | ||
* id: "580e64008c9a982ac9b8b754", | ||
* lastPublished: "2023-03-17T18:47:35.560Z", | ||
* lastUpdated: "2023-03-17T18:47:35.560Z", | ||
* createdOn: "2023-03-17T18:47:35.560Z", | ||
* fieldData: { | ||
* name: "My new item", | ||
* slug: "my-new-item" | ||
* } | ||
* } | ||
*/ | ||
export interface BulkCollectionItem { | ||
/** Unique identifier for the Item */ | ||
id: string; | ||
/** Array of identifiers for the locales where the item will be crated */ | ||
cmsLocaleIds?: string[]; | ||
/** The date the item was last published */ | ||
lastPublished?: string; | ||
/** The date the item was last updated */ | ||
lastUpdated?: string; | ||
/** The date the item was created */ | ||
createdOn?: string; | ||
/** Boolean determining if the Item is set to archived */ | ||
isArchived?: boolean; | ||
/** Boolean determining if the Item is set to draft */ | ||
isDraft?: boolean; | ||
fieldData?: Webflow.collections.BulkCollectionItemFieldData; | ||
} |
1 change: 1 addition & 0 deletions
1
src/api/resources/collections/resources/items/client/requests/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export { ItemsListItemsRequest } from "./ItemsListItemsRequest"; | ||
export { BulkCollectionItem } from "./BulkCollectionItem"; | ||
export { ItemsGetItemRequest } from "./ItemsGetItemRequest"; | ||
export { ItemsDeleteItemRequest } from "./ItemsDeleteItemRequest"; | ||
export { ItemsPublishItemRequest } from "./ItemsPublishItemRequest"; |
10 changes: 10 additions & 0 deletions
10
src/api/resources/collections/resources/items/types/BulkCollectionItemFieldData.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
export interface BulkCollectionItemFieldData { | ||
/** Name of the Item */ | ||
name?: string; | ||
/** URL structure of the Item in your site. Note: Updates to an item slug will break all links referencing the old slug. */ | ||
slug?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from "./BulkCollectionItemFieldData"; | ||
export * from "./ItemsPublishItemResponse"; |
Oops, something went wrong.