You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Final status of pending extensions will be sent to this URL.
76
76
*/
77
77
webhookUrl?: string
78
+
/*
79
+
* Default is true. If overwriteFile is set to false and useUniqueFileName is also false, and a file already exists at the exact location, upload API will return an error immediately.
80
+
*/
81
+
overwriteFile?: boolean
82
+
/*
83
+
* Default is true. If set to true and a file already exists at the exact location, its AITags will be removed. Set overwriteAITags to false to preserve AITags.
84
+
*/
85
+
overwriteAITags?: boolean
86
+
/*
87
+
* Default is true. If the request does not have tags , overwriteTags is set to true and a file already exists at the exact location, existing tags will be removed.
88
+
* In case the request body has tags, setting overwriteTags to false has no effect and request's tags are set on the asset.
89
+
*/
90
+
overwriteTags?: boolean
91
+
/*
92
+
* Default is true. If the request does not have customMetadata , overwriteCustomMetadata is set to true and a file already exists at the exact location, exiting customMetadata will be removed.
93
+
* In case the request body has customMetadata, setting overwriteCustomMetadata to false has no effect and request's customMetadata is set on the asset.
94
+
*/
95
+
overwriteCustomMetadata?: boolean
96
+
/*
97
+
* Stringified JSON key-value data to be associated with the asset. Checkout overwriteCustomMetadata parameter to understand default behaviour.
98
+
* Before setting any custom metadata on an asset you have to create the field using custom metadata fields API.
0 commit comments