@flowcore/sdk 1.41.0 → 1.41.1
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/CHANGELOG.md +7 -0
- package/esm/commands/event-type/event-type.list-removed-sensitive-data.d.ts +1 -1
- package/esm/commands/event-type/event-type.list-removed-sensitive-data.d.ts.map +1 -1
- package/esm/commands/event-type/event-type.list-removed-sensitive-data.js +1 -1
- package/esm/commands/event-type/event-type.remove-sensitive-data.d.ts +1 -1
- package/esm/commands/event-type/event-type.remove-sensitive-data.d.ts.map +1 -1
- package/package.json +1 -1
- package/script/commands/event-type/event-type.list-removed-sensitive-data.d.ts +1 -1
- package/script/commands/event-type/event-type.list-removed-sensitive-data.d.ts.map +1 -1
- package/script/commands/event-type/event-type.list-removed-sensitive-data.js +1 -1
- package/script/commands/event-type/event-type.remove-sensitive-data.d.ts +1 -1
- package/script/commands/event-type/event-type.remove-sensitive-data.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.41.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.41.0...v1.41.1) (2025-05-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **event-type:** :art: rename applicationId to application in sensitive data commands ([7a778cd](https://github.com/flowcore-io/flowcore-sdk/commit/7a778cd9609b3fd81463f5cd5741e4b455237ab6))
|
|
9
|
+
|
|
3
10
|
## [1.41.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.40.0...v1.41.0) (2025-05-02)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -13,7 +13,7 @@ export interface EventTypeListRemovedSensitiveDataInput {
|
|
|
13
13
|
/** The id of the event type */
|
|
14
14
|
eventTypeId?: string;
|
|
15
15
|
/** The identifier of the application that is trying to remove sensitive data */
|
|
16
|
-
|
|
16
|
+
application?: string;
|
|
17
17
|
/** The parent key of the event type */
|
|
18
18
|
parentKey?: string;
|
|
19
19
|
/** The cursor to start the list from */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-type.list-removed-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.list-removed-sensitive-data.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,6BAA6B,EAAuC,MAAM,+BAA+B,CAAA;AAGvH;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACrD,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,+BAA+B;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,gFAAgF;IAChF,
|
|
1
|
+
{"version":3,"file":"event-type.list-removed-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.list-removed-sensitive-data.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,6BAA6B,EAAuC,MAAM,+BAA+B,CAAA;AAGvH;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACrD,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,+BAA+B;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,gFAAgF;IAChF,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wCAAwC;IACxC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,iDAAiD;IACjD,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED;;GAEG;AACH,qBAAa,wCACX,SAAQ,OAAO,CAAC,sCAAsC,EAAE,6BAA6B,EAAE,CAAC;IACxF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAYpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,6BAA6B,EAAE;CAGxF"}
|
|
@@ -27,7 +27,7 @@ export class EventTypeListRemovedSensitiveDataCommand extends Command {
|
|
|
27
27
|
this.input.flowTypeId && queryParams.set("flowTypeId", this.input.flowTypeId);
|
|
28
28
|
this.input.eventTypeId && queryParams.set("eventTypeId", this.input.eventTypeId);
|
|
29
29
|
this.input.parentKey && queryParams.set("parentKey", this.input.parentKey);
|
|
30
|
-
this.input.
|
|
30
|
+
this.input.application && queryParams.set("application", this.input.application);
|
|
31
31
|
this.input.cursor && queryParams.set("cursor", this.input.cursor);
|
|
32
32
|
this.input.limit && queryParams.set("limit", this.input.limit.toString());
|
|
33
33
|
return `/api/v1/event-types/sensitive-data/${this.input.tenantId}?${queryParams.toString()}`;
|
|
@@ -7,7 +7,7 @@ export interface EventTypeRemoveSensitiveDataInput {
|
|
|
7
7
|
/** The id of the event type */
|
|
8
8
|
eventTypeId: string;
|
|
9
9
|
/** The identifier of the application that is trying to remove sensitive data */
|
|
10
|
-
|
|
10
|
+
application: string;
|
|
11
11
|
/** The parent key of sensitive data point */
|
|
12
12
|
parentKey: string;
|
|
13
13
|
/** The key of sensitive data point */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-type.remove-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.remove-sensitive-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,4BAA4B,EAAsC,MAAM,+BAA+B,CAAA;AAGrH;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAChD,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAA;IACnB,gFAAgF;IAChF,
|
|
1
|
+
{"version":3,"file":"event-type.remove-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.remove-sensitive-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,4BAA4B,EAAsC,MAAM,+BAA+B,CAAA;AAGrH;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAChD,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAA;IACnB,gFAAgF;IAChF,WAAW,EAAE,MAAM,CAAA;IACnB,6CAA6C;IAC7C,SAAS,EAAE,MAAM,CAAA;IACjB,sCAAsC;IACtC,GAAG,EAAE,MAAM,CAAA;IACX,+CAA+C;IAC/C,IAAI,EAAE,QAAQ,GAAG,UAAU,CAAA;CAC5B;AAED;;GAEG;AACH,qBAAa,mCACX,SAAQ,OAAO,CAAC,iCAAiC,EAAE,4BAA4B,CAAC;IAChF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAIpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,4BAA4B;CAGrF"}
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@ export interface EventTypeListRemovedSensitiveDataInput {
|
|
|
13
13
|
/** The id of the event type */
|
|
14
14
|
eventTypeId?: string;
|
|
15
15
|
/** The identifier of the application that is trying to remove sensitive data */
|
|
16
|
-
|
|
16
|
+
application?: string;
|
|
17
17
|
/** The parent key of the event type */
|
|
18
18
|
parentKey?: string;
|
|
19
19
|
/** The cursor to start the list from */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-type.list-removed-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.list-removed-sensitive-data.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,6BAA6B,EAAuC,MAAM,+BAA+B,CAAA;AAGvH;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACrD,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,+BAA+B;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,gFAAgF;IAChF,
|
|
1
|
+
{"version":3,"file":"event-type.list-removed-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.list-removed-sensitive-data.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,6BAA6B,EAAuC,MAAM,+BAA+B,CAAA;AAGvH;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACrD,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,8BAA8B;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,+BAA+B;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,gFAAgF;IAChF,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wCAAwC;IACxC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,iDAAiD;IACjD,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED;;GAEG;AACH,qBAAa,wCACX,SAAQ,OAAO,CAAC,sCAAsC,EAAE,6BAA6B,EAAE,CAAC;IACxF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAYpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,6BAA6B,EAAE;CAGxF"}
|
|
@@ -30,7 +30,7 @@ class EventTypeListRemovedSensitiveDataCommand extends command_js_1.Command {
|
|
|
30
30
|
this.input.flowTypeId && queryParams.set("flowTypeId", this.input.flowTypeId);
|
|
31
31
|
this.input.eventTypeId && queryParams.set("eventTypeId", this.input.eventTypeId);
|
|
32
32
|
this.input.parentKey && queryParams.set("parentKey", this.input.parentKey);
|
|
33
|
-
this.input.
|
|
33
|
+
this.input.application && queryParams.set("application", this.input.application);
|
|
34
34
|
this.input.cursor && queryParams.set("cursor", this.input.cursor);
|
|
35
35
|
this.input.limit && queryParams.set("limit", this.input.limit.toString());
|
|
36
36
|
return `/api/v1/event-types/sensitive-data/${this.input.tenantId}?${queryParams.toString()}`;
|
|
@@ -7,7 +7,7 @@ export interface EventTypeRemoveSensitiveDataInput {
|
|
|
7
7
|
/** The id of the event type */
|
|
8
8
|
eventTypeId: string;
|
|
9
9
|
/** The identifier of the application that is trying to remove sensitive data */
|
|
10
|
-
|
|
10
|
+
application: string;
|
|
11
11
|
/** The parent key of sensitive data point */
|
|
12
12
|
parentKey: string;
|
|
13
13
|
/** The key of sensitive data point */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-type.remove-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.remove-sensitive-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,4BAA4B,EAAsC,MAAM,+BAA+B,CAAA;AAGrH;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAChD,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAA;IACnB,gFAAgF;IAChF,
|
|
1
|
+
{"version":3,"file":"event-type.remove-sensitive-data.d.ts","sourceRoot":"","sources":["../../../src/commands/event-type/event-type.remove-sensitive-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,KAAK,4BAA4B,EAAsC,MAAM,+BAA+B,CAAA;AAGrH;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAChD,+BAA+B;IAC/B,WAAW,EAAE,MAAM,CAAA;IACnB,gFAAgF;IAChF,WAAW,EAAE,MAAM,CAAA;IACnB,6CAA6C;IAC7C,SAAS,EAAE,MAAM,CAAA;IACjB,sCAAsC;IACtC,GAAG,EAAE,MAAM,CAAA;IACX,+CAA+C;IAC/C,IAAI,EAAE,QAAQ,GAAG,UAAU,CAAA;CAC5B;AAED;;GAEG;AACH,qBAAa,mCACX,SAAQ,OAAO,CAAC,iCAAiC,EAAE,4BAA4B,CAAC;IAChF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAIpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,4BAA4B;CAGrF"}
|