We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd1f4b8 commit b4f8ae3Copy full SHA for b4f8ae3
1 file changed
packages/api-client/src/loops.ts
@@ -155,6 +155,12 @@ export namespace LoopSchemas {
155
behaviors: LoopBehaviors;
156
connectors: LoopConnectors;
157
notifications: LoopNotifications;
158
+ /** Backend-set: internal loops are hidden from the UI (never returned by the
159
+ * list/detail API), so this is effectively always false for loops a client can see. */
160
+ internal: boolean;
161
+ /** What created this loop: "user_created" for loops a person made, other values for
162
+ * loops created by a backend flow. Read-only. */
163
+ origin_product: string;
164
last_run_at: string | null;
165
last_run_status: string | null;
166
last_error: string | null;
0 commit comments