@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
package/src/modeling/types.ts
CHANGED
|
@@ -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
|
/**
|