@flowcore/sdk 1.21.0 → 1.21.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.21.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.21.0...v1.21.1) (2025-03-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * change union literals to string (to make forward compatible) ([9b8c14d](https://github.com/flowcore-io/flowcore-sdk/commit/9b8c14d3b25485e2b3ca26a5fbdb86c35e2a493d))
9
+ * **event-type:** :bug: add tenant to EventListCommand ([7b7e989](https://github.com/flowcore-io/flowcore-sdk/commit/7b7e9898bab300d55261d53667f704193b373620))
10
+ * permissions should never return action.all (*) ([d28c20d](https://github.com/flowcore-io/flowcore-sdk/commit/d28c20d43f41db560c535fcb12c6e97ceeae2ec9))
11
+ * permissions should never return action.all (*) ([48190e2](https://github.com/flowcore-io/flowcore-sdk/commit/48190e29f703ae6b0eae087d9dcae5aea66c410e))
12
+
3
13
  ## [1.21.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.20.0...v1.21.0) (2025-03-24)
4
14
 
5
15
 
@@ -40,11 +40,11 @@ export class EventTypeInfoCommand extends CustomCommand {
40
40
  const lastEvents = [];
41
41
  for (const timeBucket of lastTimeBucketResponse.timeBuckets) {
42
42
  const eventListCommand = new EventListCommand({
43
- tenant: this.input.tenant,
44
43
  eventTypeId: this.input.eventTypeId,
45
44
  timeBucket,
46
45
  pageSize: lastEventsLimit - lastEvents.length,
47
46
  order: "desc",
47
+ tenant: this.input.tenant,
48
48
  });
49
49
  const eventListResponse = await client.execute(eventListCommand);
50
50
  lastEvents.push(...eventListResponse.events);
@@ -1,5 +1,8 @@
1
1
  import { Command } from "../../common/command.js";
2
2
  import { type Permission } from "../../contracts/permission.js";
3
+ /**
4
+ * The input for the permissions list command
5
+ */
3
6
  export interface PermissionsListInput {
4
7
  /** Filter by the type of the frn */
5
8
  type?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"permissions.list.d.ts","sourceRoot":"","sources":["../../../src/commands/security/permissions.list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAEjD,OAAO,EAAE,KAAK,UAAU,EAAoB,MAAM,+BAA+B,CAAA;AAEjF,MAAM,WAAW,oBAAoB;IACnC,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED;;GAEG;AACH,qBAAa,sBAAuB,SAAQ,OAAO,CAAC,oBAAoB,EAAE,UAAU,EAAE,CAAC;IACrF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAQpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,UAAU,EAAE;CAIrE"}
1
+ {"version":3,"file":"permissions.list.d.ts","sourceRoot":"","sources":["../../../src/commands/security/permissions.list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAEjD,OAAO,EAAE,KAAK,UAAU,EAAoB,MAAM,+BAA+B,CAAA;AAEjF;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAWD;;GAEG;AACH,qBAAa,sBAAuB,SAAQ,OAAO,CAAC,oBAAoB,EAAE,UAAU,EAAE,CAAC;IACrF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAQpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,UAAU,EAAE;CAIrE"}
@@ -2,6 +2,14 @@ import { Type } from "@sinclair/typebox";
2
2
  import { Command } from "../../common/command.js";
3
3
  import { parseResponseHelper } from "../../utils/parse-response-helper.js";
4
4
  import { PermissionSchema } from "../../contracts/permission.js";
5
+ /**
6
+ * The response schema for the permissions list command
7
+ */
8
+ const responseSchema = Type.Object({
9
+ ...PermissionSchema.properties,
10
+ // parse as string to prevent sdk to fail when new actions are added
11
+ action: Type.Array(Type.String()),
12
+ });
5
13
  /**
6
14
  * Fetch an event type
7
15
  */
@@ -32,7 +40,7 @@ export class PermissionsListCommand extends Command {
32
40
  * Parse the response
33
41
  */
34
42
  parseResponse(rawResponse) {
35
- const response = parseResponseHelper(Type.Array(PermissionSchema), rawResponse);
43
+ const response = parseResponseHelper(Type.Array(responseSchema), rawResponse);
36
44
  return response;
37
45
  }
38
46
  }
@@ -1 +1 @@
1
- {"version":3,"file":"tenant.fetch.d.ts","sourceRoot":"","sources":["../../../src/commands/tenant/tenant.fetch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAGjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AACnE,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,2BAA2B,CAAA;AAErE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,6BAA6B;IAC7B,MAAM,CAAC,EAAE,KAAK,CAAA;CACf;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,6BAA6B;IAC7B,MAAM,EAAE,MAAM,CAAA;IACd,2BAA2B;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,GAAG,sBAAsB,CAAA;AAE5E;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,OAAO,CAAC,gBAAgB,EAAE,MAAM,CAAC;IACvE;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAOpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,MAAM;IAK9D;;OAEG;cACgB,iBAAiB,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI;CAQ/D"}
1
+ {"version":3,"file":"tenant.fetch.d.ts","sourceRoot":"","sources":["../../../src/commands/tenant/tenant.fetch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAGjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AACnE,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,2BAA2B,CAAA;AAGrE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,6BAA6B;IAC7B,MAAM,CAAC,EAAE,KAAK,CAAA;CACf;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,6BAA6B;IAC7B,MAAM,EAAE,MAAM,CAAA;IACd,2BAA2B;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,GAAG,sBAAsB,CAAA;AAoB5E;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,OAAO,CAAC,gBAAgB,EAAE,MAAM,CAAC;IACvE;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAOpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,MAAM;IAK9D;;OAEG;cACgB,iBAAiB,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI;CAQ/D"}
@@ -2,6 +2,24 @@ import { Command } from "../../common/command.js";
2
2
  import { parseResponseHelper } from "../../utils/parse-response-helper.js";
3
3
  import { NotFoundException } from "../../exceptions/not-found.js";
4
4
  import { TenantSchema } from "../../contracts/tenant.js";
5
+ import { Type } from "@sinclair/typebox";
6
+ /**
7
+ * The response schema for the tenant fetch command
8
+ */
9
+ const responseSchema = Type.Object({
10
+ ...TenantSchema.properties,
11
+ dedicated: Type.Union([
12
+ Type.Null(),
13
+ Type.Object({
14
+ // parse as string to prevent sdk to fail when new status are added
15
+ status: Type.String(),
16
+ configuration: Type.Object({
17
+ domain: Type.String(),
18
+ configurationRepoUrl: Type.String(),
19
+ }),
20
+ }),
21
+ ]),
22
+ });
5
23
  /**
6
24
  * Fetch a tenant
7
25
  */
@@ -31,7 +49,7 @@ export class TenantFetchCommand extends Command {
31
49
  * Parse the response
32
50
  */
33
51
  parseResponse(rawResponse) {
34
- const response = parseResponseHelper(TenantSchema, rawResponse);
52
+ const response = parseResponseHelper(responseSchema, rawResponse);
35
53
  return response;
36
54
  }
37
55
  /**
@@ -3,4 +3,5 @@ export type { EventType } from "./event-type.js";
3
3
  export type { FlowType } from "./flow-type.js";
4
4
  export type { FlowcoreEvent } from "./event.js";
5
5
  export type { Tenant } from "./tenant.js";
6
+ export type { Permission } from "./permission.js";
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAChD,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC/C,YAAY,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAChD,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC/C,YAAY,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AACzC,YAAY,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA"}
@@ -10,8 +10,7 @@ export declare const PermissionSchema: TObject<{
10
10
  TLiteral<"read">,
11
11
  TLiteral<"write">,
12
12
  TLiteral<"ingest">,
13
- TLiteral<"fetch">,
14
- TLiteral<"*">
13
+ TLiteral<"fetch">
15
14
  ]>>;
16
15
  }>;
17
16
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"permission.d.ts","sourceRoot":"","sources":["../../src/contracts/permission.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,MAAM,EACX,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,OAAO,EACZ,KAAK,OAAO,EACZ,KAAK,MAAM,EAEZ,MAAM,mBAAmB,CAAA;AAE1B;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC;IACrC,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;IACb,EAAE,EAAE,OAAO,CAAA;IACX,MAAM,EAAE,MAAM,CACZ,MAAM,CAAC;QACL,QAAQ,CAAC,MAAM,CAAC;QAChB,QAAQ,CAAC,OAAO,CAAC;QACjB,QAAQ,CAAC,QAAQ,CAAC;QAClB,QAAQ,CAAC,OAAO,CAAC;QACjB,QAAQ,CAAC,GAAG,CAAC;KACd,CAAC,CACH,CAAA;CACF,CAaC,CAAA;AAEF;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
1
+ {"version":3,"file":"permission.d.ts","sourceRoot":"","sources":["../../src/contracts/permission.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,MAAM,EACX,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,OAAO,EACZ,KAAK,OAAO,EACZ,KAAK,MAAM,EAEZ,MAAM,mBAAmB,CAAA;AAE1B;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC;IACrC,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;IACb,EAAE,EAAE,OAAO,CAAA;IACX,MAAM,EAAE,MAAM,CACZ,MAAM,CAAC;QACL,QAAQ,CAAC,MAAM,CAAC;QAChB,QAAQ,CAAC,OAAO,CAAC;QACjB,QAAQ,CAAC,QAAQ,CAAC;QAClB,QAAQ,CAAC,OAAO,CAAC;KAClB,CAAC,CACH,CAAA;CACF,CAYC,CAAA;AAEF;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
@@ -11,6 +11,5 @@ export const PermissionSchema = Type.Object({
11
11
  Type.Literal("write"),
12
12
  Type.Literal("ingest"),
13
13
  Type.Literal("fetch"),
14
- Type.Literal("*"),
15
14
  ])),
16
15
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowcore/sdk",
3
- "version": "1.21.0",
3
+ "version": "1.21.1",
4
4
  "description": "Flowcore SDK",
5
5
  "homepage": "https://github.com/flowcore-io/flowcore-sdk#readme",
6
6
  "repository": {
@@ -43,11 +43,11 @@ class EventTypeInfoCommand extends command_custom_js_1.CustomCommand {
43
43
  const lastEvents = [];
44
44
  for (const timeBucket of lastTimeBucketResponse.timeBuckets) {
45
45
  const eventListCommand = new event_list_js_1.EventListCommand({
46
- tenant: this.input.tenant,
47
46
  eventTypeId: this.input.eventTypeId,
48
47
  timeBucket,
49
48
  pageSize: lastEventsLimit - lastEvents.length,
50
49
  order: "desc",
50
+ tenant: this.input.tenant,
51
51
  });
52
52
  const eventListResponse = await client.execute(eventListCommand);
53
53
  lastEvents.push(...eventListResponse.events);
@@ -1,5 +1,8 @@
1
1
  import { Command } from "../../common/command.js";
2
2
  import { type Permission } from "../../contracts/permission.js";
3
+ /**
4
+ * The input for the permissions list command
5
+ */
3
6
  export interface PermissionsListInput {
4
7
  /** Filter by the type of the frn */
5
8
  type?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"permissions.list.d.ts","sourceRoot":"","sources":["../../../src/commands/security/permissions.list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAEjD,OAAO,EAAE,KAAK,UAAU,EAAoB,MAAM,+BAA+B,CAAA;AAEjF,MAAM,WAAW,oBAAoB;IACnC,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED;;GAEG;AACH,qBAAa,sBAAuB,SAAQ,OAAO,CAAC,oBAAoB,EAAE,UAAU,EAAE,CAAC;IACrF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAQpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,UAAU,EAAE;CAIrE"}
1
+ {"version":3,"file":"permissions.list.d.ts","sourceRoot":"","sources":["../../../src/commands/security/permissions.list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAEjD,OAAO,EAAE,KAAK,UAAU,EAAoB,MAAM,+BAA+B,CAAA;AAEjF;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAWD;;GAEG;AACH,qBAAa,sBAAuB,SAAQ,OAAO,CAAC,oBAAoB,EAAE,UAAU,EAAE,CAAC;IACrF;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAQpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,UAAU,EAAE;CAIrE"}
@@ -5,6 +5,14 @@ const typebox_1 = require("@sinclair/typebox");
5
5
  const command_js_1 = require("../../common/command.js");
6
6
  const parse_response_helper_js_1 = require("../../utils/parse-response-helper.js");
7
7
  const permission_js_1 = require("../../contracts/permission.js");
8
+ /**
9
+ * The response schema for the permissions list command
10
+ */
11
+ const responseSchema = typebox_1.Type.Object({
12
+ ...permission_js_1.PermissionSchema.properties,
13
+ // parse as string to prevent sdk to fail when new actions are added
14
+ action: typebox_1.Type.Array(typebox_1.Type.String()),
15
+ });
8
16
  /**
9
17
  * Fetch an event type
10
18
  */
@@ -35,7 +43,7 @@ class PermissionsListCommand extends command_js_1.Command {
35
43
  * Parse the response
36
44
  */
37
45
  parseResponse(rawResponse) {
38
- const response = (0, parse_response_helper_js_1.parseResponseHelper)(typebox_1.Type.Array(permission_js_1.PermissionSchema), rawResponse);
46
+ const response = (0, parse_response_helper_js_1.parseResponseHelper)(typebox_1.Type.Array(responseSchema), rawResponse);
39
47
  return response;
40
48
  }
41
49
  }
@@ -1 +1 @@
1
- {"version":3,"file":"tenant.fetch.d.ts","sourceRoot":"","sources":["../../../src/commands/tenant/tenant.fetch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAGjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AACnE,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,2BAA2B,CAAA;AAErE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,6BAA6B;IAC7B,MAAM,CAAC,EAAE,KAAK,CAAA;CACf;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,6BAA6B;IAC7B,MAAM,EAAE,MAAM,CAAA;IACd,2BAA2B;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,GAAG,sBAAsB,CAAA;AAE5E;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,OAAO,CAAC,gBAAgB,EAAE,MAAM,CAAC;IACvE;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAOpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,MAAM;IAK9D;;OAEG;cACgB,iBAAiB,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI;CAQ/D"}
1
+ {"version":3,"file":"tenant.fetch.d.ts","sourceRoot":"","sources":["../../../src/commands/tenant/tenant.fetch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AAGjD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AACnE,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,2BAA2B,CAAA;AAGrE;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,2BAA2B;IAC3B,QAAQ,EAAE,MAAM,CAAA;IAChB,6BAA6B;IAC7B,MAAM,CAAC,EAAE,KAAK,CAAA;CACf;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,6BAA6B;IAC7B,MAAM,EAAE,MAAM,CAAA;IACd,2BAA2B;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAA;CACjB;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,GAAG,sBAAsB,CAAA;AAoB5E;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,OAAO,CAAC,gBAAgB,EAAE,MAAM,CAAC;IACvE;;OAEG;cACgB,SAAS,IAAI,MAAM;IAItC;;OAEG;cACgB,UAAU,IAAI,MAAM;IAIvC;;OAEG;cACgB,OAAO,IAAI,MAAM;IAOpC;;OAEG;cACgB,aAAa,CAAC,WAAW,EAAE,OAAO,GAAG,MAAM;IAK9D;;OAEG;cACgB,iBAAiB,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI;CAQ/D"}
@@ -5,6 +5,24 @@ const command_js_1 = require("../../common/command.js");
5
5
  const parse_response_helper_js_1 = require("../../utils/parse-response-helper.js");
6
6
  const not_found_js_1 = require("../../exceptions/not-found.js");
7
7
  const tenant_js_1 = require("../../contracts/tenant.js");
8
+ const typebox_1 = require("@sinclair/typebox");
9
+ /**
10
+ * The response schema for the tenant fetch command
11
+ */
12
+ const responseSchema = typebox_1.Type.Object({
13
+ ...tenant_js_1.TenantSchema.properties,
14
+ dedicated: typebox_1.Type.Union([
15
+ typebox_1.Type.Null(),
16
+ typebox_1.Type.Object({
17
+ // parse as string to prevent sdk to fail when new status are added
18
+ status: typebox_1.Type.String(),
19
+ configuration: typebox_1.Type.Object({
20
+ domain: typebox_1.Type.String(),
21
+ configurationRepoUrl: typebox_1.Type.String(),
22
+ }),
23
+ }),
24
+ ]),
25
+ });
8
26
  /**
9
27
  * Fetch a tenant
10
28
  */
@@ -34,7 +52,7 @@ class TenantFetchCommand extends command_js_1.Command {
34
52
  * Parse the response
35
53
  */
36
54
  parseResponse(rawResponse) {
37
- const response = (0, parse_response_helper_js_1.parseResponseHelper)(tenant_js_1.TenantSchema, rawResponse);
55
+ const response = (0, parse_response_helper_js_1.parseResponseHelper)(responseSchema, rawResponse);
38
56
  return response;
39
57
  }
40
58
  /**
@@ -3,4 +3,5 @@ export type { EventType } from "./event-type.js";
3
3
  export type { FlowType } from "./flow-type.js";
4
4
  export type { FlowcoreEvent } from "./event.js";
5
5
  export type { Tenant } from "./tenant.js";
6
+ export type { Permission } from "./permission.js";
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAChD,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC/C,YAAY,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contracts/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAChD,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9C,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AAC/C,YAAY,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AACzC,YAAY,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA"}
@@ -10,8 +10,7 @@ export declare const PermissionSchema: TObject<{
10
10
  TLiteral<"read">,
11
11
  TLiteral<"write">,
12
12
  TLiteral<"ingest">,
13
- TLiteral<"fetch">,
14
- TLiteral<"*">
13
+ TLiteral<"fetch">
15
14
  ]>>;
16
15
  }>;
17
16
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"permission.d.ts","sourceRoot":"","sources":["../../src/contracts/permission.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,MAAM,EACX,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,OAAO,EACZ,KAAK,OAAO,EACZ,KAAK,MAAM,EAEZ,MAAM,mBAAmB,CAAA;AAE1B;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC;IACrC,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;IACb,EAAE,EAAE,OAAO,CAAA;IACX,MAAM,EAAE,MAAM,CACZ,MAAM,CAAC;QACL,QAAQ,CAAC,MAAM,CAAC;QAChB,QAAQ,CAAC,OAAO,CAAC;QACjB,QAAQ,CAAC,QAAQ,CAAC;QAClB,QAAQ,CAAC,OAAO,CAAC;QACjB,QAAQ,CAAC,GAAG,CAAC;KACd,CAAC,CACH,CAAA;CACF,CAaC,CAAA;AAEF;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
1
+ {"version":3,"file":"permission.d.ts","sourceRoot":"","sources":["../../src/contracts/permission.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,MAAM,EACX,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,OAAO,EACZ,KAAK,OAAO,EACZ,KAAK,MAAM,EAEZ,MAAM,mBAAmB,CAAA;AAE1B;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC;IACrC,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;IACb,EAAE,EAAE,OAAO,CAAA;IACX,MAAM,EAAE,MAAM,CACZ,MAAM,CAAC;QACL,QAAQ,CAAC,MAAM,CAAC;QAChB,QAAQ,CAAC,OAAO,CAAC;QACjB,QAAQ,CAAC,QAAQ,CAAC;QAClB,QAAQ,CAAC,OAAO,CAAC;KAClB,CAAC,CACH,CAAA;CACF,CAYC,CAAA;AAEF;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
@@ -14,6 +14,5 @@ exports.PermissionSchema = typebox_1.Type.Object({
14
14
  typebox_1.Type.Literal("write"),
15
15
  typebox_1.Type.Literal("ingest"),
16
16
  typebox_1.Type.Literal("fetch"),
17
- typebox_1.Type.Literal("*"),
18
17
  ])),
19
18
  });