@api-client/core 0.18.33 → 0.18.34

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@api-client/core",
3
3
  "description": "The API Client's core client library. Works in NodeJS and in a ES enabled browser.",
4
- "version": "0.18.33",
4
+ "version": "0.18.34",
5
5
  "license": "Apache-2.0",
6
6
  "exports": {
7
7
  "./browser.js": {
@@ -674,6 +674,13 @@ export interface DeleteAction extends Action {
674
674
  * @default 'soft'
675
675
  */
676
676
  strategy?: 'soft' | 'hard'
677
+ /**
678
+ * The data retention period (in days) for soft-deleted resources.
679
+ * This defines how long the data should be kept before it is permanently deleted.
680
+ *
681
+ * @default 30
682
+ */
683
+ retentionPeriod?: number
677
684
  }
678
685
 
679
686
  /**