File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -160,21 +160,21 @@ public function item(string $collectionId, string $itemId)
160
160
return $ this ->get ("/collections/ {$ collectionId }/items/ {$ itemId }" );
161
161
}
162
162
163
- public function createItem (string $ collectionId , array $ fields )
163
+ public function createItem (string $ collectionId , array $ fields, bool $ live = false )
164
164
{
165
165
$ defaults = [
166
166
"_archived " => false ,
167
167
"_draft " => false ,
168
168
];
169
169
170
- return $ this ->post ("/collections/ {$ collectionId }/items " , [
171
- 'fields ' => array_merge ($ defaults , $ fields ),
170
+ return $ this ->post ("/collections/ {$ collectionId }/items " . ( $ live ? " ?live=true " : "" ) , [
171
+ 'fields ' => array_merge ($ defaults , $ fields ),
172
172
]);
173
173
}
174
174
175
- public function updateItem (string $ collectionId , string $ itemId , array $ fields )
175
+ public function updateItem (string $ collectionId , string $ itemId , array $ fields, bool $ live = false )
176
176
{
177
- return $ this ->put ("/collections/ {$ collectionId }/items/ {$ itemId }" , [
177
+ return $ this ->put ("/collections/ {$ collectionId }/items/ {$ itemId }" . ( $ live ? " ?live=true " : "" ) , [
178
178
'fields ' => $ fields ,
179
179
]);
180
180
}
You can’t perform that action at this time.
0 commit comments