@zitadel/components 1.0.0-alpha.21 → 1.0.0-alpha.22

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.
@@ -334,7 +334,7 @@ declare global {
334
334
  }
335
335
  } //# sourceMappingURL=zl-checkbox.d.ts.map
336
336
  //#endregion
337
- //#region ../api/dist/index-BK4Q468Q.d.mts
337
+ //#region ../api/dist/index-DtExHu2p.d.mts
338
338
  //#region src/generated/model/beginUserPasskeyRegistration201Options.d.ts
339
339
  /**
340
340
  * Generated by orval v8.10.0 🍺
@@ -1862,9 +1862,11 @@ the purpose + audience when a flow is created via POST /flow.
1862
1862
  type CreateFlowDefinition201FlowDefinition = {
1863
1863
  /**
1864
1864
  * Stable identifier for this flow, used as the target of cross-flow
1865
- `switch` and `pivot` transitions. Renaming is not supported — the
1866
- `name` is part of the public contract another definition may
1867
- reference. Acts as the human display label as well; no separate slug.
1865
+ `switch` and `pivot` transitions. Every revision of a flow shares its
1866
+ `name`; publishing a definition under an existing `name` adds a
1867
+ revision to that flow. Renaming is not supported — the `name` is part
1868
+ of the public contract another definition may reference. Acts as the
1869
+ human display label as well; no separate slug.
1868
1870
  * @pattern ^[a-z][a-z0-9-]*$
1869
1871
  */
1870
1872
  name: string;
@@ -2361,9 +2363,11 @@ the purpose + audience when a flow is created via POST /flow.
2361
2363
  type CreateFlowDefinitionBodyFlowDefinition = {
2362
2364
  /**
2363
2365
  * Stable identifier for this flow, used as the target of cross-flow
2364
- `switch` and `pivot` transitions. Renaming is not supported — the
2365
- `name` is part of the public contract another definition may
2366
- reference. Acts as the human display label as well; no separate slug.
2366
+ `switch` and `pivot` transitions. Every revision of a flow shares its
2367
+ `name`; publishing a definition under an existing `name` adds a
2368
+ revision to that flow. Renaming is not supported — the `name` is part
2369
+ of the public contract another definition may reference. Acts as the
2370
+ human display label as well; no separate slug.
2367
2371
  * @pattern ^[a-z][a-z0-9-]*$
2368
2372
  */
2369
2373
  name: string;
@@ -2449,6 +2453,131 @@ type CreateGrant201ObjectType = (typeof CreateGrant201ObjectType)[keyof typeof C
2449
2453
  declare const CreateGrant201ObjectType: {
2450
2454
  readonly project: "project";
2451
2455
  }; //#endregion
2456
+ //#region src/generated/model/createGrant201Principal.d.ts
2457
+ /**
2458
+ * Generated by orval v8.10.0 🍺
2459
+ * Do not edit manually.
2460
+ * Zitadel NextGen
2461
+ * This is the next generation of the Zitadel identity platform.
2462
+ * OpenAPI spec version: 0.0.1
2463
+ */
2464
+ /**
2465
+ * The principal named by `principal_id`, present only when the request
2466
+ asked for it with `expand: ["principal"]` (ADR 059). Absent means it
2467
+ was not requested; `null` means the principal cannot be loaded
2468
+ (deleted or missing). GET and create never set this field.
2469
+
2470
+ When present, the body is the same representation `GET /users/{id}`
2471
+ serves for `principal_type=user`, or `GET /teams/{id}` for
2472
+ `principal_type=team`. Discriminate with the grant's existing
2473
+ `principal_type`.
2474
+
2475
+ Requires `user.read` and `team.read` in addition to `project.read`.
2476
+ Both are checked on the whole request before the list.
2477
+
2478
+ */
2479
+ type CreateGrant201Principal = {
2480
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */id: string;
2481
+ /** The schema that defines the content of `attributes`. These schemas can be
2482
+ created using the `/schemas` endpoint. A default schema is provided.
2483
+ This schema can be retrieved using the same endpoint.
2484
+ */
2485
+ schema: string;
2486
+ /** The user's content, satisfying the schema named by `schema`. Property
2487
+ names and types are determined entirely by that schema.
2488
+ */
2489
+ attributes: {
2490
+ [key: string]: unknown;
2491
+ };
2492
+ metadata: {
2493
+ /** The time when the user was created. */created_at: string; /** The time when the user was last updated. */
2494
+ updated_at: string; /** The status of the user. */
2495
+ status: "active" | "suspended" | "deactivated" | "pending_purge";
2496
+ /** The team that owns this user's identity lifecycle, or `null` when the
2497
+ user is self-owned. This is a single team and a different concept from
2498
+ the user's team memberships: it decides who may deprovision the user, not
2499
+ which teams the user collaborates in. Memberships are their own paginated
2500
+ resource — `GET /users/{user_id}/teams`.
2501
+ */
2502
+ lifecycle_owner_team_id?: string | null;
2503
+ /** The team named by `lifecycle_owner_team_id`, present only when the
2504
+ request asked for it with `expand: ["lifecycle_owner_team"]` (ADR 059).
2505
+ Absent means it was not requested; `null` means the user is self-owned
2506
+ and there is no owner to resolve.
2507
+ Requesting it does not guarantee it is present on every user. Today
2508
+ `team.read` is checked once for the whole request, so it is; once that
2509
+ check is per team, a page may contain a user whose owner the caller may
2510
+ not read, and such a row answers with neither the team nor `null` —
2511
+ `null` already means self-owned. What it answers with instead is decided
2512
+ with the granular scopes (#420); do not read the two cases above as the
2513
+ complete set.
2514
+ This is the same representation `GET /teams/{team_id}` serves. It is a
2515
+ single team, not a collection, so it carries no cap and no truncation
2516
+ flag.
2517
+ */
2518
+ readonly lifecycle_owner_team?: {
2519
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
2520
+ name: string;
2521
+ /** The lifecycle state of a team.
2522
+ active: The team is available for use.
2523
+ deactivated: The team is no longer active but is retained for historical and audit purposes.
2524
+ */
2525
+ status: "active" | "deactivated"; /** The time when the team was created. */
2526
+ created_at: string; /** The time when the team was last updated. */
2527
+ updated_at: string;
2528
+ } | null;
2529
+ };
2530
+ /** The current value of the user schema's designated identifier
2531
+ (`x-identifier`), resolved live at read time. Absent when the schema
2532
+ designates no identifier or the user carries no value for it.
2533
+ */
2534
+ readonly identifier?: string;
2535
+ /** The schema property `identifier` came from, so clients can reach the
2536
+ property's schema for semantics (a mailto link, a field label)
2537
+ instead of guessing from the value. Present exactly when
2538
+ `identifier` is.
2539
+ */
2540
+ readonly identifier_property?: string;
2541
+ /** The `x-display` rendering — the designated properties' values joined
2542
+ in list order, resolved live at read time. Purely presentational.
2543
+ Absent when the schema designates no display properties or the user
2544
+ carries no values for them. Clients render `display`, falling back
2545
+ to `identifier`, then `id`.
2546
+ */
2547
+ readonly display?: string;
2548
+ /** The user's team memberships, present only when the request asked for them with
2549
+ `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
2550
+ means the user has none.
2551
+ Deliberately outside `metadata`: memberships are a related collection, not
2552
+ part of the server-owned envelope, and it is a different concept from
2553
+ `metadata.lifecycle_owner_team_id` (ADR 024).
2554
+ */
2555
+ readonly teams?: readonly {
2556
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
2557
+ name: string;
2558
+ /** The user's participation state on this team. Memberships the user was
2559
+ removed from are not returned.
2560
+ */
2561
+ membership_status: "pending" | "active" | "inactive"; /** The time when the user joined this team. */
2562
+ created_at: string; /** The time when this membership was last changed. */
2563
+ updated_at: string;
2564
+ }[];
2565
+ /** True when the user is on more teams than the embedded list carries. The
2566
+ embedded list is capped and cannot be paged; read them all at
2567
+ `GET /users/{user_id}/teams`. Present only alongside `teams`.
2568
+ */
2569
+ readonly teams_truncated?: boolean;
2570
+ } | {
2571
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
2572
+ name: string;
2573
+ /** The lifecycle state of a team.
2574
+ active: The team is available for use.
2575
+ deactivated: The team is no longer active but is retained for historical and audit purposes.
2576
+ */
2577
+ status: "active" | "deactivated"; /** The time when the team was created. */
2578
+ created_at: string; /** The time when the team was last updated. */
2579
+ updated_at: string;
2580
+ } | null; //#endregion
2452
2581
  //#region src/generated/model/createGrant201PrincipalType.d.ts
2453
2582
  /**
2454
2583
  * Generated by orval v8.10.0 🍺
@@ -2482,6 +2611,63 @@ declare const CreateGrant201Relation: {
2482
2611
  readonly editor: "editor";
2483
2612
  readonly admin: "admin";
2484
2613
  }; //#endregion
2614
+ //#region src/generated/model/createGrant201Team.d.ts
2615
+ /**
2616
+ * Generated by orval v8.10.0 🍺
2617
+ * Do not edit manually.
2618
+ * Zitadel NextGen
2619
+ * This is the next generation of the Zitadel identity platform.
2620
+ * OpenAPI spec version: 0.0.1
2621
+ */
2622
+ /**
2623
+ * A resolved reference to a team. Carries the team's id and name so a grant
2624
+ list is readable without embedding the full Team body. Id and display ride
2625
+ `project.read` (ADR 059 rule 8): a reference field carrying only the
2626
+ target's id and display strings needs no gate of its own. Missing or
2627
+ deleted teams degrade to `team_id` only.
2628
+
2629
+ */
2630
+ type CreateGrant201Team = {
2631
+ /** The referenced team's id (`team_<opaque>`). Always present. */team_id: string; /** The team's name. Absent when the team can no longer be loaded. */
2632
+ name?: string;
2633
+ }; //#endregion
2634
+ //#region src/generated/model/createGrant201User.d.ts
2635
+ /**
2636
+ * Generated by orval v8.10.0 🍺
2637
+ * Do not edit manually.
2638
+ * Zitadel NextGen
2639
+ * This is the next generation of the Zitadel identity platform.
2640
+ * OpenAPI spec version: 0.0.1
2641
+ */
2642
+ /**
2643
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
2644
+ property-named, so responses can mix users from different schemas.
2645
+ `identifier` and `display` are resolved independently from the user
2646
+ schema's `x-identifier` and `x-display` designations, live at read time.
2647
+ Clients render `display`, falling back to `identifier`, then `user_id`.
2648
+ Missing or deleted users degrade to `user_id` only.
2649
+
2650
+ */
2651
+ type CreateGrant201User = {
2652
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
2653
+ /** The current value of the schema's designated identifier
2654
+ (`x-identifier`). Absent when the schema designates no identifier or
2655
+ the user carries no value for it.
2656
+ */
2657
+ identifier?: string;
2658
+ /** The schema property `identifier` came from, so clients can reach the
2659
+ property's schema for semantics (a mailto link, a field label)
2660
+ instead of guessing from the value. Present exactly when
2661
+ `identifier` is.
2662
+ */
2663
+ identifier_property?: string;
2664
+ /** The `x-display` rendering — the designated properties' values joined
2665
+ in list order. Purely presentational, with no source attribution.
2666
+ Absent when the schema designates no display properties or the user
2667
+ carries no values for them.
2668
+ */
2669
+ display?: string;
2670
+ }; //#endregion
2485
2671
  //#region src/generated/model/createGrant201.d.ts
2486
2672
  /**
2487
2673
  * A collaboration grant binding a principal to a project relation.
@@ -2498,6 +2684,33 @@ type CreateGrant201 = {
2498
2684
  returns expired unrevoked grants; authorization ignores them.
2499
2685
  */
2500
2686
  expires_at?: string | null;
2687
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
2688
+ property-named, so responses can mix users from different schemas.
2689
+ `identifier` and `display` are resolved independently from the user
2690
+ schema's `x-identifier` and `x-display` designations, live at read time.
2691
+ Clients render `display`, falling back to `identifier`, then `user_id`.
2692
+ Missing or deleted users degrade to `user_id` only.
2693
+ */
2694
+ user?: CreateGrant201User;
2695
+ /** A resolved reference to a team. Carries the team's id and name so a grant
2696
+ list is readable without embedding the full Team body. Id and display ride
2697
+ `project.read` (ADR 059 rule 8): a reference field carrying only the
2698
+ target's id and display strings needs no gate of its own. Missing or
2699
+ deleted teams degrade to `team_id` only.
2700
+ */
2701
+ team?: CreateGrant201Team;
2702
+ /** The principal named by `principal_id`, present only when the request
2703
+ asked for it with `expand: ["principal"]` (ADR 059). Absent means it
2704
+ was not requested; `null` means the principal cannot be loaded
2705
+ (deleted or missing). GET and create never set this field.
2706
+ When present, the body is the same representation `GET /users/{id}`
2707
+ serves for `principal_type=user`, or `GET /teams/{id}` for
2708
+ `principal_type=team`. Discriminate with the grant's existing
2709
+ `principal_type`.
2710
+ Requires `user.read` and `team.read` in addition to `project.read`.
2711
+ Both are checked on the whole request before the list.
2712
+ */
2713
+ readonly principal?: CreateGrant201Principal;
2501
2714
  }; //#endregion
2502
2715
  //#region src/generated/model/createGrant400Details.d.ts
2503
2716
  /**
@@ -3310,6 +3523,7 @@ property-named, so responses can mix users from different schemas.
3310
3523
  `identifier` and `display` are resolved independently from the user
3311
3524
  schema's `x-identifier` and `x-display` designations, live at read time.
3312
3525
  Clients render `display`, falling back to `identifier`, then `user_id`.
3526
+ Missing or deleted users degrade to `user_id` only.
3313
3527
 
3314
3528
  */
3315
3529
  type CreateSession201SessionUser = {
@@ -3380,6 +3594,7 @@ type CreateSession201Session = {
3380
3594
  `identifier` and `display` are resolved independently from the user
3381
3595
  schema's `x-identifier` and `x-display` designations, live at read time.
3382
3596
  Clients render `display`, falling back to `identifier`, then `user_id`.
3597
+ Missing or deleted users degrade to `user_id` only.
3383
3598
  */
3384
3599
  user?: CreateSession201SessionUser;
3385
3600
  /** Verified authentication factors accumulated by this session.
@@ -4004,6 +4219,7 @@ property-named, so responses can mix users from different schemas.
4004
4219
  `identifier` and `display` are resolved independently from the user
4005
4220
  schema's `x-identifier` and `x-display` designations, live at read time.
4006
4221
  Clients render `display`, falling back to `identifier`, then `user_id`.
4222
+ Missing or deleted users degrade to `user_id` only.
4007
4223
 
4008
4224
  */
4009
4225
  type ExchangeHandoff200SessionUser = {
@@ -4074,6 +4290,7 @@ type ExchangeHandoff200Session = {
4074
4290
  `identifier` and `display` are resolved independently from the user
4075
4291
  schema's `x-identifier` and `x-display` designations, live at read time.
4076
4292
  Clients render `display`, falling back to `identifier`, then `user_id`.
4293
+ Missing or deleted users degrade to `user_id` only.
4077
4294
  */
4078
4295
  user?: ExchangeHandoff200SessionUser;
4079
4296
  /** Verified authentication factors accumulated by this session.
@@ -4637,6 +4854,55 @@ type GetClaimStatusParams = {
4637
4854
  */
4638
4855
  challenge_id: string;
4639
4856
  }; //#endregion
4857
+ //#region src/generated/model/getClaimWindow200.d.ts
4858
+ /**
4859
+ * Generated by orval v8.10.0 🍺
4860
+ * Do not edit manually.
4861
+ * Zitadel NextGen
4862
+ * This is the next generation of the Zitadel identity platform.
4863
+ * OpenAPI spec version: 0.0.1
4864
+ */
4865
+ /**
4866
+ * How long the project can still be claimed. Derived from the project's
4867
+ creation time and the fixed 14-day claim window (ADR 046); it does not
4868
+ depend on the challenge, which has its own much shorter expiry.
4869
+
4870
+ */
4871
+ type GetClaimWindow200 = {
4872
+ /** The time when the project's claim window closes. */expires_at: string;
4873
+ /** Whether the window has already closed. Reported alongside `expires_at`
4874
+ rather than left to the client so a skewed browser clock cannot show a
4875
+ claimable project as expired, or the reverse.
4876
+ */
4877
+ expired: boolean;
4878
+ }; //#endregion
4879
+ //#region src/generated/model/getClaimWindow404Details.d.ts
4880
+ /**
4881
+ * Generated by orval v8.10.0 🍺
4882
+ * Do not edit manually.
4883
+ * Zitadel NextGen
4884
+ * This is the next generation of the Zitadel identity platform.
4885
+ * OpenAPI spec version: 0.0.1
4886
+ */
4887
+ /**
4888
+ * Additional error-specific context.
4889
+ */
4890
+ //#endregion
4891
+ //#region src/generated/model/getClaimWindowParams.d.ts
4892
+ /**
4893
+ * Generated by orval v8.10.0 🍺
4894
+ * Do not edit manually.
4895
+ * Zitadel NextGen
4896
+ * This is the next generation of the Zitadel identity platform.
4897
+ * OpenAPI spec version: 0.0.1
4898
+ */
4899
+ type GetClaimWindowParams = {
4900
+ /**
4901
+ * Unique identifier for this challenge (dialect-minted prefixed opaque string).
4902
+ * @pattern ^ch_[a-zA-Z0-9_-]+$
4903
+ */
4904
+ challenge_id: string;
4905
+ }; //#endregion
4640
4906
  //#region src/generated/model/getEnvironmentByName200.d.ts
4641
4907
  /**
4642
4908
  * Generated by orval v8.10.0 🍺
@@ -5551,6 +5817,59 @@ type GetEvent200 = ({
5551
5817
  };
5552
5818
  [key: string]: unknown;
5553
5819
  };
5820
+ } & {
5821
+ event_type: "release.created";
5822
+ /** Allowlisted fields for `release.created`. The release id is already the
5823
+ event's `entity_id`; the pinned set is repeated here so the audit stream
5824
+ answers what a release contained without reading the release itself.
5825
+ */
5826
+ payload: {
5827
+ content_hash?: string;
5828
+ message?: string;
5829
+ git_sha?: string;
5830
+ git_dirty?: boolean;
5831
+ pointers?: {
5832
+ kind?: string;
5833
+ handle?: string;
5834
+ revision_id?: string;
5835
+ }[];
5836
+ };
5837
+ }) | ({
5838
+ /** Managed event id (`evt_<opaque>`). */id: string; /** @pattern ^[a-zA-Z0-9_-]+$ */
5839
+ project_id: string; /** Emit-time team scope, when the actor operated under a team. */
5840
+ team_id?: string | null;
5841
+ /** Semantic event name (dot-separated). Discriminator for the Event union —
5842
+ see docs/design/api/events-catalog.md.
5843
+ */
5844
+ event_type: string; /** Wide-event category. */
5845
+ category: "request" | "auth" | "session" | "admin" | "entity" | "signal"; /** When the action happened (server/storage clock, dialect-owned). */
5846
+ occurred_at: string; /** When the row was inserted (server/storage clock, dialect-owned). */
5847
+ created_at: string; /** Who triggered the event. */
5848
+ actor_id?: string | null; /** Actor kind. */
5849
+ actor_type?: "human" | "service" | "system" | "agent" | null; /** Resource type affected. */
5850
+ entity_type?: string | null; /** Resource id affected. */
5851
+ entity_id?: string | null; /** Application or agent that produced the event. */
5852
+ client_id: string; /** Token id present at emit time, when any. */
5853
+ token_id?: string; /** Delegation kind (omit when unset). */
5854
+ delegation_type?: "direct" | "delegated" | "pat_shared" | "exchanged";
5855
+ delegation_id?: string;
5856
+ grantor?: string; /** Device fingerprint correlation id. */
5857
+ fingerprint?: string; /** HTTP request correlation id. */
5858
+ request_id?: string | null; /** Session correlation id. */
5859
+ session_id?: string | null; /** Login flow correlation id. */
5860
+ flow_id?: string | null;
5861
+ /** Emit-time metadata, already redacted at write. Path A request.api may
5862
+ set client (ip, user_agent, origin) for SIEM join on request_id. Not a
5863
+ live risk-evaluator input.
5864
+ */
5865
+ metadata?: {
5866
+ /** Observed HTTP requestor context on Path A request.api only. */client?: {
5867
+ /** Client IP from the first X-Forwarded-For hop or RemoteAddr. */ip?: string; /** Observed User-Agent header. */
5868
+ user_agent?: string; /** Origin header when present. */
5869
+ origin?: string;
5870
+ };
5871
+ [key: string]: unknown;
5872
+ };
5554
5873
  } & {
5555
5874
  event_type: "request.api"; /** Payload for `request.api` events. */
5556
5875
  payload: {
@@ -6326,9 +6645,11 @@ the purpose + audience when a flow is created via POST /flow.
6326
6645
  type GetFlowDefinition200FlowDefinition = {
6327
6646
  /**
6328
6647
  * Stable identifier for this flow, used as the target of cross-flow
6329
- `switch` and `pivot` transitions. Renaming is not supported — the
6330
- `name` is part of the public contract another definition may
6331
- reference. Acts as the human display label as well; no separate slug.
6648
+ `switch` and `pivot` transitions. Every revision of a flow shares its
6649
+ `name`; publishing a definition under an existing `name` adds a
6650
+ revision to that flow. Renaming is not supported — the `name` is part
6651
+ of the public contract another definition may reference. Acts as the
6652
+ human display label as well; no separate slug.
6332
6653
  * @pattern ^[a-z][a-z0-9-]*$
6333
6654
  */
6334
6655
  name: string;
@@ -7018,57 +7339,7 @@ type GetGrant200ObjectType = (typeof GetGrant200ObjectType)[keyof typeof GetGran
7018
7339
  declare const GetGrant200ObjectType: {
7019
7340
  readonly project: "project";
7020
7341
  }; //#endregion
7021
- //#region src/generated/model/getGrant200PrincipalType.d.ts
7022
- /**
7023
- * Generated by orval v8.10.0 🍺
7024
- * Do not edit manually.
7025
- * Zitadel NextGen
7026
- * This is the next generation of the Zitadel identity platform.
7027
- * OpenAPI spec version: 0.0.1
7028
- */
7029
- /**
7030
- * Kind of principal bound by this grant.
7031
- */
7032
- type GetGrant200PrincipalType = (typeof GetGrant200PrincipalType)[keyof typeof GetGrant200PrincipalType];
7033
- declare const GetGrant200PrincipalType: {
7034
- readonly user: "user";
7035
- readonly team: "team";
7036
- }; //#endregion
7037
- //#region src/generated/model/getGrant200Relation.d.ts
7038
- /**
7039
- * Generated by orval v8.10.0 🍺
7040
- * Do not edit manually.
7041
- * Zitadel NextGen
7042
- * This is the next generation of the Zitadel identity platform.
7043
- * OpenAPI spec version: 0.0.1
7044
- */
7045
- /**
7046
- * Catalog relation on the project.
7047
- */
7048
- type GetGrant200Relation = (typeof GetGrant200Relation)[keyof typeof GetGrant200Relation];
7049
- declare const GetGrant200Relation: {
7050
- readonly viewer: "viewer";
7051
- readonly editor: "editor";
7052
- readonly admin: "admin";
7053
- }; //#endregion
7054
- //#region src/generated/model/getGrant200.d.ts
7055
- /**
7056
- * A collaboration grant binding a principal to a project relation.
7057
- */
7058
- type GetGrant200 = {
7059
- /** Managed assignment id (`asgn_<opaque>`). */id: string; /** Project this grant is scoped to. */
7060
- project_id: string; /** Kind of principal bound by this grant. */
7061
- principal_type: GetGrant200PrincipalType; /** Principal id (`user_<opaque>` or `team_<opaque>`). */
7062
- principal_id: string; /** Catalog object type. Always `project` for this API. */
7063
- object_type: GetGrant200ObjectType; /** Catalog relation on the project. */
7064
- relation: GetGrant200Relation; /** When the grant was created. */
7065
- created_at: string;
7066
- /** When the grant expires. Null when it does not expire. GET still
7067
- returns expired unrevoked grants; authorization ignores them.
7068
- */
7069
- expires_at?: string | null;
7070
- }; //#endregion
7071
- //#region src/generated/model/getGrant401Details.d.ts
7342
+ //#region src/generated/model/getGrant200Principal.d.ts
7072
7343
  /**
7073
7344
  * Generated by orval v8.10.0 🍺
7074
7345
  * Do not edit manually.
@@ -7077,14 +7348,273 @@ type GetGrant200 = {
7077
7348
  * OpenAPI spec version: 0.0.1
7078
7349
  */
7079
7350
  /**
7080
- * Additional error-specific context.
7351
+ * The principal named by `principal_id`, present only when the request
7352
+ asked for it with `expand: ["principal"]` (ADR 059). Absent means it
7353
+ was not requested; `null` means the principal cannot be loaded
7354
+ (deleted or missing). GET and create never set this field.
7355
+
7356
+ When present, the body is the same representation `GET /users/{id}`
7357
+ serves for `principal_type=user`, or `GET /teams/{id}` for
7358
+ `principal_type=team`. Discriminate with the grant's existing
7359
+ `principal_type`.
7360
+
7361
+ Requires `user.read` and `team.read` in addition to `project.read`.
7362
+ Both are checked on the whole request before the list.
7363
+
7081
7364
  */
7082
- //#endregion
7083
- //#region src/generated/model/getGrantParams.d.ts
7084
- /**
7085
- * Generated by orval v8.10.0 🍺
7086
- * Do not edit manually.
7087
- * Zitadel NextGen
7365
+ type GetGrant200Principal = {
7366
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */id: string;
7367
+ /** The schema that defines the content of `attributes`. These schemas can be
7368
+ created using the `/schemas` endpoint. A default schema is provided.
7369
+ This schema can be retrieved using the same endpoint.
7370
+ */
7371
+ schema: string;
7372
+ /** The user's content, satisfying the schema named by `schema`. Property
7373
+ names and types are determined entirely by that schema.
7374
+ */
7375
+ attributes: {
7376
+ [key: string]: unknown;
7377
+ };
7378
+ metadata: {
7379
+ /** The time when the user was created. */created_at: string; /** The time when the user was last updated. */
7380
+ updated_at: string; /** The status of the user. */
7381
+ status: "active" | "suspended" | "deactivated" | "pending_purge";
7382
+ /** The team that owns this user's identity lifecycle, or `null` when the
7383
+ user is self-owned. This is a single team and a different concept from
7384
+ the user's team memberships: it decides who may deprovision the user, not
7385
+ which teams the user collaborates in. Memberships are their own paginated
7386
+ resource — `GET /users/{user_id}/teams`.
7387
+ */
7388
+ lifecycle_owner_team_id?: string | null;
7389
+ /** The team named by `lifecycle_owner_team_id`, present only when the
7390
+ request asked for it with `expand: ["lifecycle_owner_team"]` (ADR 059).
7391
+ Absent means it was not requested; `null` means the user is self-owned
7392
+ and there is no owner to resolve.
7393
+ Requesting it does not guarantee it is present on every user. Today
7394
+ `team.read` is checked once for the whole request, so it is; once that
7395
+ check is per team, a page may contain a user whose owner the caller may
7396
+ not read, and such a row answers with neither the team nor `null` —
7397
+ `null` already means self-owned. What it answers with instead is decided
7398
+ with the granular scopes (#420); do not read the two cases above as the
7399
+ complete set.
7400
+ This is the same representation `GET /teams/{team_id}` serves. It is a
7401
+ single team, not a collection, so it carries no cap and no truncation
7402
+ flag.
7403
+ */
7404
+ readonly lifecycle_owner_team?: {
7405
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
7406
+ name: string;
7407
+ /** The lifecycle state of a team.
7408
+ active: The team is available for use.
7409
+ deactivated: The team is no longer active but is retained for historical and audit purposes.
7410
+ */
7411
+ status: "active" | "deactivated"; /** The time when the team was created. */
7412
+ created_at: string; /** The time when the team was last updated. */
7413
+ updated_at: string;
7414
+ } | null;
7415
+ };
7416
+ /** The current value of the user schema's designated identifier
7417
+ (`x-identifier`), resolved live at read time. Absent when the schema
7418
+ designates no identifier or the user carries no value for it.
7419
+ */
7420
+ readonly identifier?: string;
7421
+ /** The schema property `identifier` came from, so clients can reach the
7422
+ property's schema for semantics (a mailto link, a field label)
7423
+ instead of guessing from the value. Present exactly when
7424
+ `identifier` is.
7425
+ */
7426
+ readonly identifier_property?: string;
7427
+ /** The `x-display` rendering — the designated properties' values joined
7428
+ in list order, resolved live at read time. Purely presentational.
7429
+ Absent when the schema designates no display properties or the user
7430
+ carries no values for them. Clients render `display`, falling back
7431
+ to `identifier`, then `id`.
7432
+ */
7433
+ readonly display?: string;
7434
+ /** The user's team memberships, present only when the request asked for them with
7435
+ `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
7436
+ means the user has none.
7437
+ Deliberately outside `metadata`: memberships are a related collection, not
7438
+ part of the server-owned envelope, and it is a different concept from
7439
+ `metadata.lifecycle_owner_team_id` (ADR 024).
7440
+ */
7441
+ readonly teams?: readonly {
7442
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
7443
+ name: string;
7444
+ /** The user's participation state on this team. Memberships the user was
7445
+ removed from are not returned.
7446
+ */
7447
+ membership_status: "pending" | "active" | "inactive"; /** The time when the user joined this team. */
7448
+ created_at: string; /** The time when this membership was last changed. */
7449
+ updated_at: string;
7450
+ }[];
7451
+ /** True when the user is on more teams than the embedded list carries. The
7452
+ embedded list is capped and cannot be paged; read them all at
7453
+ `GET /users/{user_id}/teams`. Present only alongside `teams`.
7454
+ */
7455
+ readonly teams_truncated?: boolean;
7456
+ } | {
7457
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
7458
+ name: string;
7459
+ /** The lifecycle state of a team.
7460
+ active: The team is available for use.
7461
+ deactivated: The team is no longer active but is retained for historical and audit purposes.
7462
+ */
7463
+ status: "active" | "deactivated"; /** The time when the team was created. */
7464
+ created_at: string; /** The time when the team was last updated. */
7465
+ updated_at: string;
7466
+ } | null; //#endregion
7467
+ //#region src/generated/model/getGrant200PrincipalType.d.ts
7468
+ /**
7469
+ * Generated by orval v8.10.0 🍺
7470
+ * Do not edit manually.
7471
+ * Zitadel NextGen
7472
+ * This is the next generation of the Zitadel identity platform.
7473
+ * OpenAPI spec version: 0.0.1
7474
+ */
7475
+ /**
7476
+ * Kind of principal bound by this grant.
7477
+ */
7478
+ type GetGrant200PrincipalType = (typeof GetGrant200PrincipalType)[keyof typeof GetGrant200PrincipalType];
7479
+ declare const GetGrant200PrincipalType: {
7480
+ readonly user: "user";
7481
+ readonly team: "team";
7482
+ }; //#endregion
7483
+ //#region src/generated/model/getGrant200Relation.d.ts
7484
+ /**
7485
+ * Generated by orval v8.10.0 🍺
7486
+ * Do not edit manually.
7487
+ * Zitadel NextGen
7488
+ * This is the next generation of the Zitadel identity platform.
7489
+ * OpenAPI spec version: 0.0.1
7490
+ */
7491
+ /**
7492
+ * Catalog relation on the project.
7493
+ */
7494
+ type GetGrant200Relation = (typeof GetGrant200Relation)[keyof typeof GetGrant200Relation];
7495
+ declare const GetGrant200Relation: {
7496
+ readonly viewer: "viewer";
7497
+ readonly editor: "editor";
7498
+ readonly admin: "admin";
7499
+ }; //#endregion
7500
+ //#region src/generated/model/getGrant200Team.d.ts
7501
+ /**
7502
+ * Generated by orval v8.10.0 🍺
7503
+ * Do not edit manually.
7504
+ * Zitadel NextGen
7505
+ * This is the next generation of the Zitadel identity platform.
7506
+ * OpenAPI spec version: 0.0.1
7507
+ */
7508
+ /**
7509
+ * A resolved reference to a team. Carries the team's id and name so a grant
7510
+ list is readable without embedding the full Team body. Id and display ride
7511
+ `project.read` (ADR 059 rule 8): a reference field carrying only the
7512
+ target's id and display strings needs no gate of its own. Missing or
7513
+ deleted teams degrade to `team_id` only.
7514
+
7515
+ */
7516
+ type GetGrant200Team = {
7517
+ /** The referenced team's id (`team_<opaque>`). Always present. */team_id: string; /** The team's name. Absent when the team can no longer be loaded. */
7518
+ name?: string;
7519
+ }; //#endregion
7520
+ //#region src/generated/model/getGrant200User.d.ts
7521
+ /**
7522
+ * Generated by orval v8.10.0 🍺
7523
+ * Do not edit manually.
7524
+ * Zitadel NextGen
7525
+ * This is the next generation of the Zitadel identity platform.
7526
+ * OpenAPI spec version: 0.0.1
7527
+ */
7528
+ /**
7529
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
7530
+ property-named, so responses can mix users from different schemas.
7531
+ `identifier` and `display` are resolved independently from the user
7532
+ schema's `x-identifier` and `x-display` designations, live at read time.
7533
+ Clients render `display`, falling back to `identifier`, then `user_id`.
7534
+ Missing or deleted users degrade to `user_id` only.
7535
+
7536
+ */
7537
+ type GetGrant200User = {
7538
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
7539
+ /** The current value of the schema's designated identifier
7540
+ (`x-identifier`). Absent when the schema designates no identifier or
7541
+ the user carries no value for it.
7542
+ */
7543
+ identifier?: string;
7544
+ /** The schema property `identifier` came from, so clients can reach the
7545
+ property's schema for semantics (a mailto link, a field label)
7546
+ instead of guessing from the value. Present exactly when
7547
+ `identifier` is.
7548
+ */
7549
+ identifier_property?: string;
7550
+ /** The `x-display` rendering — the designated properties' values joined
7551
+ in list order. Purely presentational, with no source attribution.
7552
+ Absent when the schema designates no display properties or the user
7553
+ carries no values for them.
7554
+ */
7555
+ display?: string;
7556
+ }; //#endregion
7557
+ //#region src/generated/model/getGrant200.d.ts
7558
+ /**
7559
+ * A collaboration grant binding a principal to a project relation.
7560
+ */
7561
+ type GetGrant200 = {
7562
+ /** Managed assignment id (`asgn_<opaque>`). */id: string; /** Project this grant is scoped to. */
7563
+ project_id: string; /** Kind of principal bound by this grant. */
7564
+ principal_type: GetGrant200PrincipalType; /** Principal id (`user_<opaque>` or `team_<opaque>`). */
7565
+ principal_id: string; /** Catalog object type. Always `project` for this API. */
7566
+ object_type: GetGrant200ObjectType; /** Catalog relation on the project. */
7567
+ relation: GetGrant200Relation; /** When the grant was created. */
7568
+ created_at: string;
7569
+ /** When the grant expires. Null when it does not expire. GET still
7570
+ returns expired unrevoked grants; authorization ignores them.
7571
+ */
7572
+ expires_at?: string | null;
7573
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
7574
+ property-named, so responses can mix users from different schemas.
7575
+ `identifier` and `display` are resolved independently from the user
7576
+ schema's `x-identifier` and `x-display` designations, live at read time.
7577
+ Clients render `display`, falling back to `identifier`, then `user_id`.
7578
+ Missing or deleted users degrade to `user_id` only.
7579
+ */
7580
+ user?: GetGrant200User;
7581
+ /** A resolved reference to a team. Carries the team's id and name so a grant
7582
+ list is readable without embedding the full Team body. Id and display ride
7583
+ `project.read` (ADR 059 rule 8): a reference field carrying only the
7584
+ target's id and display strings needs no gate of its own. Missing or
7585
+ deleted teams degrade to `team_id` only.
7586
+ */
7587
+ team?: GetGrant200Team;
7588
+ /** The principal named by `principal_id`, present only when the request
7589
+ asked for it with `expand: ["principal"]` (ADR 059). Absent means it
7590
+ was not requested; `null` means the principal cannot be loaded
7591
+ (deleted or missing). GET and create never set this field.
7592
+ When present, the body is the same representation `GET /users/{id}`
7593
+ serves for `principal_type=user`, or `GET /teams/{id}` for
7594
+ `principal_type=team`. Discriminate with the grant's existing
7595
+ `principal_type`.
7596
+ Requires `user.read` and `team.read` in addition to `project.read`.
7597
+ Both are checked on the whole request before the list.
7598
+ */
7599
+ readonly principal?: GetGrant200Principal;
7600
+ }; //#endregion
7601
+ //#region src/generated/model/getGrant401Details.d.ts
7602
+ /**
7603
+ * Generated by orval v8.10.0 🍺
7604
+ * Do not edit manually.
7605
+ * Zitadel NextGen
7606
+ * This is the next generation of the Zitadel identity platform.
7607
+ * OpenAPI spec version: 0.0.1
7608
+ */
7609
+ /**
7610
+ * Additional error-specific context.
7611
+ */
7612
+ //#endregion
7613
+ //#region src/generated/model/getGrantParams.d.ts
7614
+ /**
7615
+ * Generated by orval v8.10.0 🍺
7616
+ * Do not edit manually.
7617
+ * Zitadel NextGen
7088
7618
  * This is the next generation of the Zitadel identity platform.
7089
7619
  * OpenAPI spec version: 0.0.1
7090
7620
  */
@@ -7273,6 +7803,7 @@ property-named, so responses can mix users from different schemas.
7273
7803
  `identifier` and `display` are resolved independently from the user
7274
7804
  schema's `x-identifier` and `x-display` designations, live at read time.
7275
7805
  Clients render `display`, falling back to `identifier`, then `user_id`.
7806
+ Missing or deleted users degrade to `user_id` only.
7276
7807
 
7277
7808
  */
7278
7809
  type GetMySession200User = {
@@ -7343,6 +7874,7 @@ type GetMySession200 = {
7343
7874
  `identifier` and `display` are resolved independently from the user
7344
7875
  schema's `x-identifier` and `x-display` designations, live at read time.
7345
7876
  Clients render `display`, falling back to `identifier`, then `user_id`.
7877
+ Missing or deleted users degrade to `user_id` only.
7346
7878
  */
7347
7879
  user?: GetMySession200User;
7348
7880
  /** Verified authentication factors accumulated by this session.
@@ -8052,6 +8584,7 @@ property-named, so responses can mix users from different schemas.
8052
8584
  `identifier` and `display` are resolved independently from the user
8053
8585
  schema's `x-identifier` and `x-display` designations, live at read time.
8054
8586
  Clients render `display`, falling back to `identifier`, then `user_id`.
8587
+ Missing or deleted users degrade to `user_id` only.
8055
8588
 
8056
8589
  */
8057
8590
  type GetSession200User = {
@@ -8122,6 +8655,7 @@ type GetSession200 = {
8122
8655
  `identifier` and `display` are resolved independently from the user
8123
8656
  schema's `x-identifier` and `x-display` designations, live at read time.
8124
8657
  Clients render `display`, falling back to `identifier`, then `user_id`.
8658
+ Missing or deleted users degrade to `user_id` only.
8125
8659
  */
8126
8660
  user?: GetSession200User;
8127
8661
  /** Verified authentication factors accumulated by this session.
@@ -9613,6 +10147,59 @@ type ListEvents200DataItem = ({
9613
10147
  };
9614
10148
  [key: string]: unknown;
9615
10149
  };
10150
+ } & {
10151
+ event_type: "release.created";
10152
+ /** Allowlisted fields for `release.created`. The release id is already the
10153
+ event's `entity_id`; the pinned set is repeated here so the audit stream
10154
+ answers what a release contained without reading the release itself.
10155
+ */
10156
+ payload: {
10157
+ content_hash?: string;
10158
+ message?: string;
10159
+ git_sha?: string;
10160
+ git_dirty?: boolean;
10161
+ pointers?: {
10162
+ kind?: string;
10163
+ handle?: string;
10164
+ revision_id?: string;
10165
+ }[];
10166
+ };
10167
+ }) | ({
10168
+ /** Managed event id (`evt_<opaque>`). */id: string; /** @pattern ^[a-zA-Z0-9_-]+$ */
10169
+ project_id: string; /** Emit-time team scope, when the actor operated under a team. */
10170
+ team_id?: string | null;
10171
+ /** Semantic event name (dot-separated). Discriminator for the Event union —
10172
+ see docs/design/api/events-catalog.md.
10173
+ */
10174
+ event_type: string; /** Wide-event category. */
10175
+ category: "request" | "auth" | "session" | "admin" | "entity" | "signal"; /** When the action happened (server/storage clock, dialect-owned). */
10176
+ occurred_at: string; /** When the row was inserted (server/storage clock, dialect-owned). */
10177
+ created_at: string; /** Who triggered the event. */
10178
+ actor_id?: string | null; /** Actor kind. */
10179
+ actor_type?: "human" | "service" | "system" | "agent" | null; /** Resource type affected. */
10180
+ entity_type?: string | null; /** Resource id affected. */
10181
+ entity_id?: string | null; /** Application or agent that produced the event. */
10182
+ client_id: string; /** Token id present at emit time, when any. */
10183
+ token_id?: string; /** Delegation kind (omit when unset). */
10184
+ delegation_type?: "direct" | "delegated" | "pat_shared" | "exchanged";
10185
+ delegation_id?: string;
10186
+ grantor?: string; /** Device fingerprint correlation id. */
10187
+ fingerprint?: string; /** HTTP request correlation id. */
10188
+ request_id?: string | null; /** Session correlation id. */
10189
+ session_id?: string | null; /** Login flow correlation id. */
10190
+ flow_id?: string | null;
10191
+ /** Emit-time metadata, already redacted at write. Path A request.api may
10192
+ set client (ip, user_agent, origin) for SIEM join on request_id. Not a
10193
+ live risk-evaluator input.
10194
+ */
10195
+ metadata?: {
10196
+ /** Observed HTTP requestor context on Path A request.api only. */client?: {
10197
+ /** Client IP from the first X-Forwarded-For hop or RemoteAddr. */ip?: string; /** Observed User-Agent header. */
10198
+ user_agent?: string; /** Origin header when present. */
10199
+ origin?: string;
10200
+ };
10201
+ [key: string]: unknown;
10202
+ };
9616
10203
  } & {
9617
10204
  event_type: "request.api"; /** Payload for `request.api` events. */
9618
10205
  payload: {
@@ -10480,9 +11067,11 @@ the purpose + audience when a flow is created via POST /flow.
10480
11067
  type ListFlowDefinitions200FlowDefinitionsItemFlowDefinition = {
10481
11068
  /**
10482
11069
  * Stable identifier for this flow, used as the target of cross-flow
10483
- `switch` and `pivot` transitions. Renaming is not supported — the
10484
- `name` is part of the public contract another definition may
10485
- reference. Acts as the human display label as well; no separate slug.
11070
+ `switch` and `pivot` transitions. Every revision of a flow shares its
11071
+ `name`; publishing a definition under an existing `name` adds a
11072
+ revision to that flow. Renaming is not supported — the `name` is part
11073
+ of the public contract another definition may reference. Acts as the
11074
+ human display label as well; no separate slug.
10486
11075
  * @pattern ^[a-z][a-z0-9-]*$
10487
11076
  */
10488
11077
  name: string;
@@ -10633,6 +11222,9 @@ type ListFlowDefinitions200FlowDefinitionsItem = {
10633
11222
  updated_at: string;
10634
11223
  }; //#endregion
10635
11224
  //#region src/generated/model/listFlowDefinitions200.d.ts
11225
+ /**
11226
+ * List of flow definitions, newest by creation time first.
11227
+ */
10636
11228
  type ListFlowDefinitions200 = {
10637
11229
  flow_definitions: ListFlowDefinitions200FlowDefinitionsItem[]; /** The token to retrieve the next page of results. Absent if there are no more results. */
10638
11230
  next_page_token?: string | null;
@@ -10713,6 +11305,13 @@ type ListFlowDefinitionsParams = {
10713
11305
  * Filter flow definitions by purpose (e.g., registration, login).
10714
11306
  */
10715
11307
  purpose?: ListFlowDefinitionsPurpose;
11308
+ /**
11309
+ * The flow name to filter by. Every revision of a flow shares its
11310
+ `name`, so the result is that flow's revisions, newest by creation
11311
+ time first.
11312
+ * @pattern ^[a-z][a-z0-9-]*$
11313
+ */
11314
+ name?: string;
10716
11315
  /**
10717
11316
  * Related entities to embed on each returned flow definition.
10718
11317
  */
@@ -11226,6 +11825,494 @@ type PatchProjectBody = {
11226
11825
  * OpenAPI spec version: 0.0.1
11227
11826
  */
11228
11827
  //#endregion
11828
+ //#region src/generated/model/queryGrants200GrantsItemObjectType.d.ts
11829
+ /**
11830
+ * Generated by orval v8.10.0 🍺
11831
+ * Do not edit manually.
11832
+ * Zitadel NextGen
11833
+ * This is the next generation of the Zitadel identity platform.
11834
+ * OpenAPI spec version: 0.0.1
11835
+ */
11836
+ /**
11837
+ * Catalog object type. Always `project` for this API.
11838
+ */
11839
+ type QueryGrants200GrantsItemObjectType = (typeof QueryGrants200GrantsItemObjectType)[keyof typeof QueryGrants200GrantsItemObjectType];
11840
+ declare const QueryGrants200GrantsItemObjectType: {
11841
+ readonly project: "project";
11842
+ }; //#endregion
11843
+ //#region src/generated/model/queryGrants200GrantsItemPrincipal.d.ts
11844
+ /**
11845
+ * Generated by orval v8.10.0 🍺
11846
+ * Do not edit manually.
11847
+ * Zitadel NextGen
11848
+ * This is the next generation of the Zitadel identity platform.
11849
+ * OpenAPI spec version: 0.0.1
11850
+ */
11851
+ /**
11852
+ * The principal named by `principal_id`, present only when the request
11853
+ asked for it with `expand: ["principal"]` (ADR 059). Absent means it
11854
+ was not requested; `null` means the principal cannot be loaded
11855
+ (deleted or missing). GET and create never set this field.
11856
+
11857
+ When present, the body is the same representation `GET /users/{id}`
11858
+ serves for `principal_type=user`, or `GET /teams/{id}` for
11859
+ `principal_type=team`. Discriminate with the grant's existing
11860
+ `principal_type`.
11861
+
11862
+ Requires `user.read` and `team.read` in addition to `project.read`.
11863
+ Both are checked on the whole request before the list.
11864
+
11865
+ */
11866
+ type QueryGrants200GrantsItemPrincipal = {
11867
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */id: string;
11868
+ /** The schema that defines the content of `attributes`. These schemas can be
11869
+ created using the `/schemas` endpoint. A default schema is provided.
11870
+ This schema can be retrieved using the same endpoint.
11871
+ */
11872
+ schema: string;
11873
+ /** The user's content, satisfying the schema named by `schema`. Property
11874
+ names and types are determined entirely by that schema.
11875
+ */
11876
+ attributes: {
11877
+ [key: string]: unknown;
11878
+ };
11879
+ metadata: {
11880
+ /** The time when the user was created. */created_at: string; /** The time when the user was last updated. */
11881
+ updated_at: string; /** The status of the user. */
11882
+ status: "active" | "suspended" | "deactivated" | "pending_purge";
11883
+ /** The team that owns this user's identity lifecycle, or `null` when the
11884
+ user is self-owned. This is a single team and a different concept from
11885
+ the user's team memberships: it decides who may deprovision the user, not
11886
+ which teams the user collaborates in. Memberships are their own paginated
11887
+ resource — `GET /users/{user_id}/teams`.
11888
+ */
11889
+ lifecycle_owner_team_id?: string | null;
11890
+ /** The team named by `lifecycle_owner_team_id`, present only when the
11891
+ request asked for it with `expand: ["lifecycle_owner_team"]` (ADR 059).
11892
+ Absent means it was not requested; `null` means the user is self-owned
11893
+ and there is no owner to resolve.
11894
+ Requesting it does not guarantee it is present on every user. Today
11895
+ `team.read` is checked once for the whole request, so it is; once that
11896
+ check is per team, a page may contain a user whose owner the caller may
11897
+ not read, and such a row answers with neither the team nor `null` —
11898
+ `null` already means self-owned. What it answers with instead is decided
11899
+ with the granular scopes (#420); do not read the two cases above as the
11900
+ complete set.
11901
+ This is the same representation `GET /teams/{team_id}` serves. It is a
11902
+ single team, not a collection, so it carries no cap and no truncation
11903
+ flag.
11904
+ */
11905
+ readonly lifecycle_owner_team?: {
11906
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
11907
+ name: string;
11908
+ /** The lifecycle state of a team.
11909
+ active: The team is available for use.
11910
+ deactivated: The team is no longer active but is retained for historical and audit purposes.
11911
+ */
11912
+ status: "active" | "deactivated"; /** The time when the team was created. */
11913
+ created_at: string; /** The time when the team was last updated. */
11914
+ updated_at: string;
11915
+ } | null;
11916
+ };
11917
+ /** The current value of the user schema's designated identifier
11918
+ (`x-identifier`), resolved live at read time. Absent when the schema
11919
+ designates no identifier or the user carries no value for it.
11920
+ */
11921
+ readonly identifier?: string;
11922
+ /** The schema property `identifier` came from, so clients can reach the
11923
+ property's schema for semantics (a mailto link, a field label)
11924
+ instead of guessing from the value. Present exactly when
11925
+ `identifier` is.
11926
+ */
11927
+ readonly identifier_property?: string;
11928
+ /** The `x-display` rendering — the designated properties' values joined
11929
+ in list order, resolved live at read time. Purely presentational.
11930
+ Absent when the schema designates no display properties or the user
11931
+ carries no values for them. Clients render `display`, falling back
11932
+ to `identifier`, then `id`.
11933
+ */
11934
+ readonly display?: string;
11935
+ /** The user's team memberships, present only when the request asked for them with
11936
+ `expand: ["teams"]` (ADR 059). Absent means it was not requested; `[]`
11937
+ means the user has none.
11938
+ Deliberately outside `metadata`: memberships are a related collection, not
11939
+ part of the server-owned envelope, and it is a different concept from
11940
+ `metadata.lifecycle_owner_team_id` (ADR 024).
11941
+ */
11942
+ readonly teams?: readonly {
11943
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
11944
+ name: string;
11945
+ /** The user's participation state on this team. Memberships the user was
11946
+ removed from are not returned.
11947
+ */
11948
+ membership_status: "pending" | "active" | "inactive"; /** The time when the user joined this team. */
11949
+ created_at: string; /** The time when this membership was last changed. */
11950
+ updated_at: string;
11951
+ }[];
11952
+ /** True when the user is on more teams than the embedded list carries. The
11953
+ embedded list is capped and cannot be paged; read them all at
11954
+ `GET /users/{user_id}/teams`. Present only alongside `teams`.
11955
+ */
11956
+ readonly teams_truncated?: boolean;
11957
+ } | {
11958
+ /** The unique identifier of the team. */id: string; /** The name of the team. */
11959
+ name: string;
11960
+ /** The lifecycle state of a team.
11961
+ active: The team is available for use.
11962
+ deactivated: The team is no longer active but is retained for historical and audit purposes.
11963
+ */
11964
+ status: "active" | "deactivated"; /** The time when the team was created. */
11965
+ created_at: string; /** The time when the team was last updated. */
11966
+ updated_at: string;
11967
+ } | null; //#endregion
11968
+ //#region src/generated/model/queryGrants200GrantsItemPrincipalType.d.ts
11969
+ /**
11970
+ * Generated by orval v8.10.0 🍺
11971
+ * Do not edit manually.
11972
+ * Zitadel NextGen
11973
+ * This is the next generation of the Zitadel identity platform.
11974
+ * OpenAPI spec version: 0.0.1
11975
+ */
11976
+ /**
11977
+ * Kind of principal bound by this grant.
11978
+ */
11979
+ type QueryGrants200GrantsItemPrincipalType = (typeof QueryGrants200GrantsItemPrincipalType)[keyof typeof QueryGrants200GrantsItemPrincipalType];
11980
+ declare const QueryGrants200GrantsItemPrincipalType: {
11981
+ readonly user: "user";
11982
+ readonly team: "team";
11983
+ }; //#endregion
11984
+ //#region src/generated/model/queryGrants200GrantsItemRelation.d.ts
11985
+ /**
11986
+ * Generated by orval v8.10.0 🍺
11987
+ * Do not edit manually.
11988
+ * Zitadel NextGen
11989
+ * This is the next generation of the Zitadel identity platform.
11990
+ * OpenAPI spec version: 0.0.1
11991
+ */
11992
+ /**
11993
+ * Catalog relation on the project.
11994
+ */
11995
+ type QueryGrants200GrantsItemRelation = (typeof QueryGrants200GrantsItemRelation)[keyof typeof QueryGrants200GrantsItemRelation];
11996
+ declare const QueryGrants200GrantsItemRelation: {
11997
+ readonly viewer: "viewer";
11998
+ readonly editor: "editor";
11999
+ readonly admin: "admin";
12000
+ }; //#endregion
12001
+ //#region src/generated/model/queryGrants200GrantsItemTeam.d.ts
12002
+ /**
12003
+ * Generated by orval v8.10.0 🍺
12004
+ * Do not edit manually.
12005
+ * Zitadel NextGen
12006
+ * This is the next generation of the Zitadel identity platform.
12007
+ * OpenAPI spec version: 0.0.1
12008
+ */
12009
+ /**
12010
+ * A resolved reference to a team. Carries the team's id and name so a grant
12011
+ list is readable without embedding the full Team body. Id and display ride
12012
+ `project.read` (ADR 059 rule 8): a reference field carrying only the
12013
+ target's id and display strings needs no gate of its own. Missing or
12014
+ deleted teams degrade to `team_id` only.
12015
+
12016
+ */
12017
+ type QueryGrants200GrantsItemTeam = {
12018
+ /** The referenced team's id (`team_<opaque>`). Always present. */team_id: string; /** The team's name. Absent when the team can no longer be loaded. */
12019
+ name?: string;
12020
+ }; //#endregion
12021
+ //#region src/generated/model/queryGrants200GrantsItemUser.d.ts
12022
+ /**
12023
+ * Generated by orval v8.10.0 🍺
12024
+ * Do not edit manually.
12025
+ * Zitadel NextGen
12026
+ * This is the next generation of the Zitadel identity platform.
12027
+ * OpenAPI spec version: 0.0.1
12028
+ */
12029
+ /**
12030
+ * A resolved reference to a user (ADR 058 §3). Fields are role-named, not
12031
+ property-named, so responses can mix users from different schemas.
12032
+ `identifier` and `display` are resolved independently from the user
12033
+ schema's `x-identifier` and `x-display` designations, live at read time.
12034
+ Clients render `display`, falling back to `identifier`, then `user_id`.
12035
+ Missing or deleted users degrade to `user_id` only.
12036
+
12037
+ */
12038
+ type QueryGrants200GrantsItemUser = {
12039
+ /** @pattern ^user_[a-zA-Z0-9_-]+$ */user_id: string;
12040
+ /** The current value of the schema's designated identifier
12041
+ (`x-identifier`). Absent when the schema designates no identifier or
12042
+ the user carries no value for it.
12043
+ */
12044
+ identifier?: string;
12045
+ /** The schema property `identifier` came from, so clients can reach the
12046
+ property's schema for semantics (a mailto link, a field label)
12047
+ instead of guessing from the value. Present exactly when
12048
+ `identifier` is.
12049
+ */
12050
+ identifier_property?: string;
12051
+ /** The `x-display` rendering — the designated properties' values joined
12052
+ in list order. Purely presentational, with no source attribution.
12053
+ Absent when the schema designates no display properties or the user
12054
+ carries no values for them.
12055
+ */
12056
+ display?: string;
12057
+ }; //#endregion
12058
+ //#region src/generated/model/queryGrants200GrantsItem.d.ts
12059
+ /**
12060
+ * A collaboration grant binding a principal to a project relation.
12061
+ */
12062
+ type QueryGrants200GrantsItem = {
12063
+ /** Managed assignment id (`asgn_<opaque>`). */id: string; /** Project this grant is scoped to. */
12064
+ project_id: string; /** Kind of principal bound by this grant. */
12065
+ principal_type: QueryGrants200GrantsItemPrincipalType; /** Principal id (`user_<opaque>` or `team_<opaque>`). */
12066
+ principal_id: string; /** Catalog object type. Always `project` for this API. */
12067
+ object_type: QueryGrants200GrantsItemObjectType; /** Catalog relation on the project. */
12068
+ relation: QueryGrants200GrantsItemRelation; /** When the grant was created. */
12069
+ created_at: string;
12070
+ /** When the grant expires. Null when it does not expire. GET still
12071
+ returns expired unrevoked grants; authorization ignores them.
12072
+ */
12073
+ expires_at?: string | null;
12074
+ /** A resolved reference to a user (ADR 058 §3). Fields are role-named, not
12075
+ property-named, so responses can mix users from different schemas.
12076
+ `identifier` and `display` are resolved independently from the user
12077
+ schema's `x-identifier` and `x-display` designations, live at read time.
12078
+ Clients render `display`, falling back to `identifier`, then `user_id`.
12079
+ Missing or deleted users degrade to `user_id` only.
12080
+ */
12081
+ user?: QueryGrants200GrantsItemUser;
12082
+ /** A resolved reference to a team. Carries the team's id and name so a grant
12083
+ list is readable without embedding the full Team body. Id and display ride
12084
+ `project.read` (ADR 059 rule 8): a reference field carrying only the
12085
+ target's id and display strings needs no gate of its own. Missing or
12086
+ deleted teams degrade to `team_id` only.
12087
+ */
12088
+ team?: QueryGrants200GrantsItemTeam;
12089
+ /** The principal named by `principal_id`, present only when the request
12090
+ asked for it with `expand: ["principal"]` (ADR 059). Absent means it
12091
+ was not requested; `null` means the principal cannot be loaded
12092
+ (deleted or missing). GET and create never set this field.
12093
+ When present, the body is the same representation `GET /users/{id}`
12094
+ serves for `principal_type=user`, or `GET /teams/{id}` for
12095
+ `principal_type=team`. Discriminate with the grant's existing
12096
+ `principal_type`.
12097
+ Requires `user.read` and `team.read` in addition to `project.read`.
12098
+ Both are checked on the whole request before the list.
12099
+ */
12100
+ readonly principal?: QueryGrants200GrantsItemPrincipal;
12101
+ }; //#endregion
12102
+ //#region src/generated/model/queryGrants200.d.ts
12103
+ /**
12104
+ * Paginated list of grants.
12105
+ */
12106
+ type QueryGrants200 = {
12107
+ grants: QueryGrants200GrantsItem[];
12108
+ /** Token to pass as `page_token` in the next request to fetch the following page.
12109
+ Absent when there are no more results. The follow-up request must repeat the
12110
+ same `sorting` that produced this token (omit only when both pages use the default).
12111
+ */
12112
+ next_page_token?: string | null;
12113
+ }; //#endregion
12114
+ //#region src/generated/model/queryGrants400Details.d.ts
12115
+ /**
12116
+ * Generated by orval v8.10.0 🍺
12117
+ * Do not edit manually.
12118
+ * Zitadel NextGen
12119
+ * This is the next generation of the Zitadel identity platform.
12120
+ * OpenAPI spec version: 0.0.1
12121
+ */
12122
+ /**
12123
+ * Additional error-specific context.
12124
+ */
12125
+ //#endregion
12126
+ //#region src/generated/model/queryGrantsBodyExpandItem.d.ts
12127
+ /**
12128
+ * Generated by orval v8.10.0 🍺
12129
+ * Do not edit manually.
12130
+ * Zitadel NextGen
12131
+ * This is the next generation of the Zitadel identity platform.
12132
+ * OpenAPI spec version: 0.0.1
12133
+ */
12134
+ /**
12135
+ * A related object to embed on each returned grant (ADR 059).
12136
+
12137
+ - `principal`: the principal named by `principal_id`, as `principal` on
12138
+ each grant. The property is omitted entirely when not requested. When
12139
+ requested, it is the same body `GET /users/{id}` serves for
12140
+ `principal_type=user`, or `GET /teams/{id}` for `principal_type=team`,
12141
+ and `null` when that principal cannot be loaded. Discriminate with the
12142
+ grant's existing `principal_type`.
12143
+
12144
+ Requires `user.read` and `team.read` in addition to `project.read`.
12145
+ Both are checked on the whole request before the list, because a mixed
12146
+ page is the common case. A caller who may not read either resource
12147
+ receives 403 rather than a silently missing `principal`.
12148
+
12149
+ */
12150
+ type QueryGrantsBodyExpandItem = (typeof QueryGrantsBodyExpandItem)[keyof typeof QueryGrantsBodyExpandItem];
12151
+ declare const QueryGrantsBodyExpandItem: {
12152
+ readonly principal: "principal";
12153
+ }; //#endregion
12154
+ //#region src/generated/model/queryGrantsBodyFilterItemField.d.ts
12155
+ /**
12156
+ * Generated by orval v8.10.0 🍺
12157
+ * Do not edit manually.
12158
+ * Zitadel NextGen
12159
+ * This is the next generation of the Zitadel identity platform.
12160
+ * OpenAPI spec version: 0.0.1
12161
+ */
12162
+ /**
12163
+ * Field to filter grants by:
12164
+ - `created_at`: RFC3339 timestamp
12165
+ - `principal_type`: `user` or `team`
12166
+ - `principal_id`: principal id (`user_<opaque>` or `team_<opaque>`)
12167
+ - `relation`: `viewer`, `editor`, or `admin`
12168
+ - `expires_at`: RFC3339 timestamp (null when the grant does not expire)
12169
+
12170
+ */
12171
+ type QueryGrantsBodyFilterItemField = (typeof QueryGrantsBodyFilterItemField)[keyof typeof QueryGrantsBodyFilterItemField];
12172
+ declare const QueryGrantsBodyFilterItemField: {
12173
+ readonly created_at: "created_at";
12174
+ readonly principal_type: "principal_type";
12175
+ readonly principal_id: "principal_id";
12176
+ readonly relation: "relation";
12177
+ readonly expires_at: "expires_at";
12178
+ }; //#endregion
12179
+ //#region src/generated/model/queryGrantsBodyFilterItemOperation.d.ts
12180
+ /**
12181
+ * Generated by orval v8.10.0 🍺
12182
+ * Do not edit manually.
12183
+ * Zitadel NextGen
12184
+ * This is the next generation of the Zitadel identity platform.
12185
+ * OpenAPI spec version: 0.0.1
12186
+ */
12187
+ /**
12188
+ * Filter operation defines the operations which can be used when filtering on a
12189
+ query endpoint.
12190
+
12191
+ On text fields, `contains` is a case-insensitive substring match. `equals`
12192
+ compares the whole value and is case-sensitive unless the field documents
12193
+ otherwise.
12194
+
12195
+ */
12196
+ type QueryGrantsBodyFilterItemOperation = (typeof QueryGrantsBodyFilterItemOperation)[keyof typeof QueryGrantsBodyFilterItemOperation];
12197
+ declare const QueryGrantsBodyFilterItemOperation: {
12198
+ readonly equals: "equals";
12199
+ readonly not_equals: "not_equals";
12200
+ readonly contains: "contains";
12201
+ readonly not_contains: "not_contains";
12202
+ readonly less_than: "less_than";
12203
+ readonly less_than_or_equal: "less_than_or_equal";
12204
+ readonly greater_than: "greater_than";
12205
+ readonly greater_than_or_equal: "greater_than_or_equal";
12206
+ }; //#endregion
12207
+ //#region src/generated/model/queryGrantsBodyFilterItem.d.ts
12208
+ type QueryGrantsBodyFilterItem = {
12209
+ /** Field to filter grants by:
12210
+ - `created_at`: RFC3339 timestamp
12211
+ - `principal_type`: `user` or `team`
12212
+ - `principal_id`: principal id (`user_<opaque>` or `team_<opaque>`)
12213
+ - `relation`: `viewer`, `editor`, or `admin`
12214
+ - `expires_at`: RFC3339 timestamp (null when the grant does not expire)
12215
+ */
12216
+ field: QueryGrantsBodyFilterItemField;
12217
+ /** Filter-value specifies which values can be filtered by a query endpoint. This
12218
+ is a union of types. When a value is specified which is not assignable to the
12219
+ field which is being filtered, a 400 error will be returned.
12220
+ */
12221
+ value?: string | number | boolean | null;
12222
+ /** Filter operation defines the operations which can be used when filtering on a
12223
+ query endpoint.
12224
+ On text fields, `contains` is a case-insensitive substring match. `equals`
12225
+ compares the whole value and is case-sensitive unless the field documents
12226
+ otherwise.
12227
+ */
12228
+ operation: QueryGrantsBodyFilterItemOperation;
12229
+ }; //#endregion
12230
+ //#region src/generated/model/queryGrantsBodySortingDirection.d.ts
12231
+ /**
12232
+ * Generated by orval v8.10.0 🍺
12233
+ * Do not edit manually.
12234
+ * Zitadel NextGen
12235
+ * This is the next generation of the Zitadel identity platform.
12236
+ * OpenAPI spec version: 0.0.1
12237
+ */
12238
+ type QueryGrantsBodySortingDirection = (typeof QueryGrantsBodySortingDirection)[keyof typeof QueryGrantsBodySortingDirection];
12239
+ declare const QueryGrantsBodySortingDirection: {
12240
+ readonly asc: "asc";
12241
+ readonly desc: "desc";
12242
+ }; //#endregion
12243
+ //#region src/generated/model/queryGrantsBodySortingField.d.ts
12244
+ /**
12245
+ * Generated by orval v8.10.0 🍺
12246
+ * Do not edit manually.
12247
+ * Zitadel NextGen
12248
+ * This is the next generation of the Zitadel identity platform.
12249
+ * OpenAPI spec version: 0.0.1
12250
+ */
12251
+ /**
12252
+ * Field to sort grants by. Default is `created_at` ascending with `id` as
12253
+ the tiebreaker.
12254
+
12255
+ */
12256
+ type QueryGrantsBodySortingField = (typeof QueryGrantsBodySortingField)[keyof typeof QueryGrantsBodySortingField];
12257
+ declare const QueryGrantsBodySortingField: {
12258
+ readonly created_at: "created_at";
12259
+ readonly expires_at: "expires_at";
12260
+ readonly id: "id";
12261
+ }; //#endregion
12262
+ //#region src/generated/model/queryGrantsBodySorting.d.ts
12263
+ type QueryGrantsBodySorting = {
12264
+ /** Field to sort grants by. Default is `created_at` ascending with `id` as
12265
+ the tiebreaker.
12266
+ */
12267
+ field: QueryGrantsBodySortingField;
12268
+ direction: QueryGrantsBodySortingDirection;
12269
+ }; //#endregion
12270
+ //#region src/generated/model/queryGrantsBody.d.ts
12271
+ /**
12272
+ * Request to query the grants of a project.
12273
+ */
12274
+ type QueryGrantsBody = {
12275
+ /**
12276
+ * @minimum 1
12277
+ * @maximum 100
12278
+ */
12279
+ limit?: number;
12280
+ /** Token to retrieve the next page of results. Must be sent with the same
12281
+ `sorting` as the request that issued the token. Omitting `sorting` reuses
12282
+ the default sort and only succeeds when that default matches the token.
12283
+ */
12284
+ page_token?: string | null;
12285
+ /** Related objects to embed on each grant (ADR 059). Omit it and no
12286
+ embedded object is returned. An unrecognised value is rejected.
12287
+ */
12288
+ expand?: QueryGrantsBodyExpandItem[];
12289
+ sorting?: QueryGrantsBodySorting; /** Filter criteria for querying grants. Combined with AND. */
12290
+ filter?: QueryGrantsBodyFilterItem[];
12291
+ }; //#endregion
12292
+ //#region src/generated/model/queryGrantsDefault.d.ts
12293
+ /**
12294
+ * Generated by orval v8.10.0 🍺
12295
+ * Do not edit manually.
12296
+ * Zitadel NextGen
12297
+ * This is the next generation of the Zitadel identity platform.
12298
+ * OpenAPI spec version: 0.0.1
12299
+ */
12300
+ //#endregion
12301
+ //#region src/generated/model/queryGrantsParams.d.ts
12302
+ /**
12303
+ * Generated by orval v8.10.0 🍺
12304
+ * Do not edit manually.
12305
+ * Zitadel NextGen
12306
+ * This is the next generation of the Zitadel identity platform.
12307
+ * OpenAPI spec version: 0.0.1
12308
+ */
12309
+ type QueryGrantsParams = {
12310
+ /**
12311
+ * The unique identifier of the project
12312
+ * @pattern ^[a-zA-Z0-9_-]+$
12313
+ */
12314
+ project_id: string;
12315
+ }; //#endregion
11229
12316
  //#region src/generated/model/queryProjects200ProjectsItem.d.ts
11230
12317
  /**
11231
12318
  * Generated by orval v8.10.0 🍺
@@ -11491,6 +12578,7 @@ property-named, so responses can mix users from different schemas.
11491
12578
  `identifier` and `display` are resolved independently from the user
11492
12579
  schema's `x-identifier` and `x-display` designations, live at read time.
11493
12580
  Clients render `display`, falling back to `identifier`, then `user_id`.
12581
+ Missing or deleted users degrade to `user_id` only.
11494
12582
 
11495
12583
  */
11496
12584
  type QuerySessions200SessionsItemUser = {
@@ -11561,6 +12649,7 @@ type QuerySessions200SessionsItem = {
11561
12649
  `identifier` and `display` are resolved independently from the user
11562
12650
  schema's `x-identifier` and `x-display` designations, live at read time.
11563
12651
  Clients render `display`, falling back to `identifier`, then `user_id`.
12652
+ Missing or deleted users degrade to `user_id` only.
11564
12653
  */
11565
12654
  user?: QuerySessions200SessionsItemUser;
11566
12655
  /** Verified authentication factors accumulated by this session.
@@ -13429,9 +14518,11 @@ the purpose + audience when a flow is created via POST /flow.
13429
14518
  type UpdateFlowDefinition200FlowDefinition = {
13430
14519
  /**
13431
14520
  * Stable identifier for this flow, used as the target of cross-flow
13432
- `switch` and `pivot` transitions. Renaming is not supported — the
13433
- `name` is part of the public contract another definition may
13434
- reference. Acts as the human display label as well; no separate slug.
14521
+ `switch` and `pivot` transitions. Every revision of a flow shares its
14522
+ `name`; publishing a definition under an existing `name` adds a
14523
+ revision to that flow. Renaming is not supported — the `name` is part
14524
+ of the public contract another definition may reference. Acts as the
14525
+ human display label as well; no separate slug.
13435
14526
  * @pattern ^[a-z][a-z0-9-]*$
13436
14527
  */
13437
14528
  name: string;
@@ -13928,9 +15019,11 @@ the purpose + audience when a flow is created via POST /flow.
13928
15019
  type UpdateFlowDefinitionBodyFlowDefinition = {
13929
15020
  /**
13930
15021
  * Stable identifier for this flow, used as the target of cross-flow
13931
- `switch` and `pivot` transitions. Renaming is not supported — the
13932
- `name` is part of the public contract another definition may
13933
- reference. Acts as the human display label as well; no separate slug.
15022
+ `switch` and `pivot` transitions. Every revision of a flow shares its
15023
+ `name`; publishing a definition under an existing `name` adds a
15024
+ revision to that flow. Renaming is not supported — the `name` is part
15025
+ of the public contract another definition may reference. Acts as the
15026
+ human display label as well; no separate slug.
13934
15027
  * @pattern ^[a-z][a-z0-9-]*$
13935
15028
  */
13936
15029
  name: string;
@@ -14840,5 +15933,5 @@ declare global {
14840
15933
  }
14841
15934
  } //# sourceMappingURL=zl-select.d.ts.map
14842
15935
  //#endregion
14843
- export { CreateTeam201 as $, ListUserPasskeysParams as $t, CreateFlow201StepChallenge as A, ZlAlert as An, GetReleaseByIdParams as At, CreateGrantParams as B, ListBranding200Item as Bt, CreateBrandingBody as C, ZlCheckbox as Cn, GetHealthDefault as Ct, CreateFlow201BrandingLayout as D, zlCardManifest as Dn, GetProject200 as Dt, CreateFlow201Branding as E, ZlCard as En, GetMyUser200 as Et, CreateFlowBodyPurpose as F, ZlIcon as Fn, GetUserByID200 as Ft, CreateRelease201 as G, ListEventsParams as Gt, CreateProject201 as H, ListEnvironments200 as Ht, CreateFlowDefinition201 as I, zlIconManifest as In, GetUserByIDParams as It, CreateSchema201 as J, ListReleases200 as Jt, CreateReleaseBody as K, ListFlowDefinitions200 as Kt, CreateFlowDefinitionBody as L, InitClaim201 as Lt, CreateFlow201StepGates as M, IconName as Mn, GetSchemaByIdParams as Mt, CreateFlow201StepSsoProvidersItem as N, IconSize as Nn, GetSession200 as Nt, CreateFlow201Step as O, ZlButton as On, GetReadyDefault as Ot, CreateFlowBody as P, IconTone as Pn, GetTeam200 as Pt, CreateSessionBody as Q, ListUserPasskeys200 as Qt, CreateGrant201 as R, IssueChallenge201 as Rt, CreateBranding201 as S, VerifyChallengeProofBody as Sn, GetGrantParams as St, CreateFlow201 as T, zlCheckboxManifest as Tn, GetMySession200 as Tt, CreateProjectBody as U, ListEnvironmentsParams as Ut, CreateHandoff200 as V, ListBrandingParams as Vt, CreateRelease200 as W, ListEvents200 as Wt, CreateSchemaParams as X, ListSchemas200 as Xt, CreateSchemaBody as Y, ListReleasesParams as Yt, CreateSession201 as Z, ListSchemasParams as Zt, BeginUserPasskeyRegistrationBody as _, UpdateFlowDefinition200 as _n, GetEvent200 as _t, ZlPill as a, QueryProjectsBody as an, DeleteGrantParams as at, CreateAuthAttempt201 as b, UpdateTeamBody as bn, GetFlowStep200 as bt, ZlPasskeyErrorDetail as c, QuerySessionsParams as cn, ExchangeHandoffParams as ct, ZlPageShell as d, QueryTeamsParams as dn, GetAuthAttempt200 as dt, ListUserTeams200 as en, CreateTeamBody as et, zlPageShellManifest as f, QueryUsers200 as fn, GetBrandingById200 as ft, BeginUserPasskeyRegistration201 as g, SubmitFlowStepBody as gn, GetEnvironmentByNameParams as gt, zlFieldManifest as h, SubmitFlowStep200 as hn, GetEnvironmentByName200 as ht, zlSelectManifest as i, QueryProjects200 as in, CreateUserParams as it, CreateFlow201StepFieldsItem as j, zlAlertManifest as jn, GetSchemaById200 as jt, CreateFlow201StepActionsItem as k, zlButtonManifest as kn, GetReleaseById200 as kt, ZlPasskeyResultDetail as l, QueryTeams200 as ln, FinishUserPasskeyRegistration201 as lt, ZlFieldType as m, SetUserPasswordBody as mn, GetClaimStatusParams as mt, ZlSelectChangeDetail as n, PatchProject200 as nn, CreateUser201 as nt, zlPillManifest as o, QuerySessions200 as on, ExchangeHandoff200 as ot, ZlField as p, QueryUsersBody as pn, GetClaimStatus200 as pt, CreateReleaseParams as q, ListFlowDefinitionsParams as qt, ZlSelectOption as r, PatchProjectBody as rn, CreateUserBody as rt, ZlPasskey as s, QuerySessionsBody as sn, ExchangeHandoffBody as st, ZlSelect as t, ListUserTeamsParams as tn, CreateTeamParams as tt, zlPasskeyManifest as u, QueryTeamsBody as un, FinishUserPasskeyRegistrationBody as ut, CompleteClaim200 as v, UpdateFlowDefinitionBody as vn, GetEventParams as vt, CreateBrandingParams as w, ZlCheckboxChangeDetail as wn, GetLiveDefault as wt, CreateAuthAttemptBody as x, VerifyChallengeProof200 as xn, GetGrant200 as xt, CompleteClaimBody as y, UpdateTeam200 as yn, GetFlowDefinition200 as yt, CreateGrantBody as z, IssueChallengeBody as zt };
14844
- //# sourceMappingURL=index-Dx8rvpNs.d.mts.map
15936
+ export { CreateTeam201 as $, ListSchemasParams as $t, CreateFlow201StepChallenge as A, zlCheckboxManifest as An, GetReadyDefault as At, CreateGrantParams as B, ZlIcon as Bn, IssueChallenge201 as Bt, CreateBrandingBody as C, UpdateFlowDefinitionBody as Cn, GetGrant200 as Ct, CreateFlow201BrandingLayout as D, VerifyChallengeProofBody as Dn, GetMySession200 as Dt, CreateFlow201Branding as E, VerifyChallengeProof200 as En, GetLiveDefault as Et, CreateFlowBodyPurpose as F, ZlAlert as Fn, GetSession200 as Ft, CreateRelease201 as G, ListEnvironmentsParams as Gt, CreateProject201 as H, ListBranding200Item as Ht, CreateFlowDefinition201 as I, zlAlertManifest as In, GetTeam200 as It, CreateSchema201 as J, ListFlowDefinitions200 as Jt, CreateReleaseBody as K, ListEvents200 as Kt, CreateFlowDefinitionBody as L, IconName as Ln, GetUserByID200 as Lt, CreateFlow201StepGates as M, zlCardManifest as Mn, GetReleaseByIdParams as Mt, CreateFlow201StepSsoProvidersItem as N, ZlButton as Nn, GetSchemaById200 as Nt, CreateFlow201Step as O, ZlCheckbox as On, GetMyUser200 as Ot, CreateFlowBody as P, zlButtonManifest as Pn, GetSchemaByIdParams as Pt, CreateSessionBody as Q, ListSchemas200 as Qt, CreateGrant201 as R, IconSize as Rn, GetUserByIDParams as Rt, CreateBranding201 as S, UpdateFlowDefinition200 as Sn, GetFlowStep200 as St, CreateFlow201 as T, UpdateTeamBody as Tn, GetHealthDefault as Tt, CreateProjectBody as U, ListBrandingParams as Ut, CreateHandoff200 as V, zlIconManifest as Vn, IssueChallengeBody as Vt, CreateRelease200 as W, ListEnvironments200 as Wt, CreateSchemaParams as X, ListReleases200 as Xt, CreateSchemaBody as Y, ListFlowDefinitionsParams as Yt, CreateSession201 as Z, ListReleasesParams as Zt, BeginUserPasskeyRegistrationBody as _, QueryUsers200 as _n, GetEnvironmentByName200 as _t, ZlPill as a, PatchProjectBody as an, DeleteGrantParams as at, CreateAuthAttempt201 as b, SubmitFlowStep200 as bn, GetEventParams as bt, ZlPasskeyErrorDetail as c, QueryGrantsParams as cn, ExchangeHandoffParams as ct, ZlPageShell as d, QuerySessions200 as dn, GetAuthAttempt200 as dt, ListUserPasskeys200 as en, CreateTeamBody as et, zlPageShellManifest as f, QuerySessionsBody as fn, GetBrandingById200 as ft, BeginUserPasskeyRegistration201 as g, QueryTeamsParams as gn, GetClaimWindowParams as gt, zlFieldManifest as h, QueryTeamsBody as hn, GetClaimWindow200 as ht, zlSelectManifest as i, PatchProject200 as in, CreateUserParams as it, CreateFlow201StepFieldsItem as j, ZlCard as jn, GetReleaseById200 as jt, CreateFlow201StepActionsItem as k, ZlCheckboxChangeDetail as kn, GetProject200 as kt, ZlPasskeyResultDetail as l, QueryProjects200 as ln, FinishUserPasskeyRegistration201 as lt, ZlFieldType as m, QueryTeams200 as mn, GetClaimStatusParams as mt, ZlSelectChangeDetail as n, ListUserTeams200 as nn, CreateUser201 as nt, zlPillManifest as o, QueryGrants200 as on, ExchangeHandoff200 as ot, ZlField as p, QuerySessionsParams as pn, GetClaimStatus200 as pt, CreateReleaseParams as q, ListEventsParams as qt, ZlSelectOption as r, ListUserTeamsParams as rn, CreateUserBody as rt, ZlPasskey as s, QueryGrantsBody as sn, ExchangeHandoffBody as st, ZlSelect as t, ListUserPasskeysParams as tn, CreateTeamParams as tt, zlPasskeyManifest as u, QueryProjectsBody as un, FinishUserPasskeyRegistrationBody as ut, CompleteClaim200 as v, QueryUsersBody as vn, GetEnvironmentByNameParams as vt, CreateBrandingParams as w, UpdateTeam200 as wn, GetGrantParams as wt, CreateAuthAttemptBody as x, SubmitFlowStepBody as xn, GetFlowDefinition200 as xt, CompleteClaimBody as y, SetUserPasswordBody as yn, GetEvent200 as yt, CreateGrantBody as z, IconTone as zn, InitClaim201 as zt };
15937
+ //# sourceMappingURL=index-DMPCvLh_.d.mts.map