windmill-client 1.357.0 → 1.358.0
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/dist/core/OpenAPI.js +1 -1
- package/dist/services.gen.d.ts +2 -0
- package/dist/services.gen.js +4 -0
- package/dist/types.gen.d.ts +16 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
|
@@ -46,6 +46,8 @@ export declare class AuditService {
|
|
|
46
46
|
* @param data.after filter on created after (exclusive) timestamp
|
|
47
47
|
* @param data.username filter on exact username of user
|
|
48
48
|
* @param data.operation filter on exact or prefix name of operation
|
|
49
|
+
* @param data.operations comma separated list of exact operations to include
|
|
50
|
+
* @param data.excludeOperations comma separated list of operations to exclude
|
|
49
51
|
* @param data.resource filter on exact or prefix name of resource
|
|
50
52
|
* @param data.actionKind filter on type of operation
|
|
51
53
|
* @returns AuditLog a list of audit logs
|
package/dist/services.gen.js
CHANGED
|
@@ -80,6 +80,8 @@ class AuditService {
|
|
|
80
80
|
* @param data.after filter on created after (exclusive) timestamp
|
|
81
81
|
* @param data.username filter on exact username of user
|
|
82
82
|
* @param data.operation filter on exact or prefix name of operation
|
|
83
|
+
* @param data.operations comma separated list of exact operations to include
|
|
84
|
+
* @param data.excludeOperations comma separated list of operations to exclude
|
|
83
85
|
* @param data.resource filter on exact or prefix name of resource
|
|
84
86
|
* @param data.actionKind filter on type of operation
|
|
85
87
|
* @returns AuditLog a list of audit logs
|
|
@@ -99,6 +101,8 @@ class AuditService {
|
|
|
99
101
|
after: data.after,
|
|
100
102
|
username: data.username,
|
|
101
103
|
operation: data.operation,
|
|
104
|
+
operations: data.operations,
|
|
105
|
+
exclude_operations: data.excludeOperations,
|
|
102
106
|
resource: data.resource,
|
|
103
107
|
action_kind: data.actionKind
|
|
104
108
|
}
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -1126,10 +1126,18 @@ export type ListAuditLogsData = {
|
|
|
1126
1126
|
* filter on created before (exclusive) timestamp
|
|
1127
1127
|
*/
|
|
1128
1128
|
before?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* comma separated list of operations to exclude
|
|
1131
|
+
*/
|
|
1132
|
+
excludeOperations?: string;
|
|
1129
1133
|
/**
|
|
1130
1134
|
* filter on exact or prefix name of operation
|
|
1131
1135
|
*/
|
|
1132
1136
|
operation?: string;
|
|
1137
|
+
/**
|
|
1138
|
+
* comma separated list of exact operations to include
|
|
1139
|
+
*/
|
|
1140
|
+
operations?: string;
|
|
1133
1141
|
/**
|
|
1134
1142
|
* which page to return (start at 1, default 1)
|
|
1135
1143
|
*/
|
|
@@ -4672,10 +4680,18 @@ export type $OpenApiTs = {
|
|
|
4672
4680
|
* filter on created before (exclusive) timestamp
|
|
4673
4681
|
*/
|
|
4674
4682
|
before?: string;
|
|
4683
|
+
/**
|
|
4684
|
+
* comma separated list of operations to exclude
|
|
4685
|
+
*/
|
|
4686
|
+
excludeOperations?: string;
|
|
4675
4687
|
/**
|
|
4676
4688
|
* filter on exact or prefix name of operation
|
|
4677
4689
|
*/
|
|
4678
4690
|
operation?: string;
|
|
4691
|
+
/**
|
|
4692
|
+
* comma separated list of exact operations to include
|
|
4693
|
+
*/
|
|
4694
|
+
operations?: string;
|
|
4679
4695
|
/**
|
|
4680
4696
|
* which page to return (start at 1, default 1)
|
|
4681
4697
|
*/
|