@stigmer/protos 3.0.7 → 3.0.8-dev.20260612073024
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/ai/stigmer/agentic/workflowinstance/v1/command_connect.d.ts +28 -0
- package/ai/stigmer/agentic/workflowinstance/v1/command_connect.js +29 -1
- package/ai/stigmer/agentic/workflowinstance/v1/command_connect.js.map +1 -1
- package/ai/stigmer/agentic/workflowinstance/v1/command_pb.d.ts +28 -1
- package/ai/stigmer/agentic/workflowinstance/v1/command_pb.js +1 -1
- package/ai/stigmer/agentic/workflowinstance/v1/command_pb.js.map +1 -1
- package/ai/stigmer/agentic/workflowinstance/v1/io_pb.d.ts +30 -0
- package/ai/stigmer/agentic/workflowinstance/v1/io_pb.js +8 -2
- package/ai/stigmer/agentic/workflowinstance/v1/io_pb.js.map +1 -1
- package/ai/stigmer/agentic/workflowinstance/v1/spec_pb.d.ts +58 -1
- package/ai/stigmer/agentic/workflowinstance/v1/spec_pb.js +46 -2
- package/ai/stigmer/agentic/workflowinstance/v1/spec_pb.js.map +1 -1
- package/ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.js +1 -1
- package/ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.js.map +1 -1
- package/ai/stigmer/iam/iampolicy/v1/io_pb.d.ts +42 -0
- package/ai/stigmer/iam/iampolicy/v1/io_pb.js +29 -23
- package/ai/stigmer/iam/iampolicy/v1/io_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -110,6 +110,34 @@ export declare const WorkflowInstanceCommandController: {
|
|
|
110
110
|
readonly O: any;
|
|
111
111
|
readonly kind: any;
|
|
112
112
|
};
|
|
113
|
+
/**
|
|
114
|
+
* Update who can observe the run history (executions) of this instance.
|
|
115
|
+
*
|
|
116
|
+
* This is a SEPARATE axis from updateVisibility: it controls run
|
|
117
|
+
* observability (who sees execution inputs/outputs), not who can see/run
|
|
118
|
+
* the instance itself. Making an instance org-runnable does NOT expose
|
|
119
|
+
* other users' run history — that requires this opt-in.
|
|
120
|
+
*
|
|
121
|
+
* Supported levels: PRIVATE (only the user who ran each execution) and
|
|
122
|
+
* ORGANIZATION (all org members). Public/platform are unsupported.
|
|
123
|
+
*
|
|
124
|
+
* @internal
|
|
125
|
+
* Authorization: requires can_grant_access on the workflow instance —
|
|
126
|
+
* sharing run history is an access-granting action, consistent with the
|
|
127
|
+
* per-execution share flow. In Cloud mode the transition reconciles the
|
|
128
|
+
* instance's `execution_viewer` FGA relation:
|
|
129
|
+
* - PRIVATE -> ORGANIZATION: creates
|
|
130
|
+
* workflow_instance#execution_viewer@organization:<org>#member
|
|
131
|
+
* - ORGANIZATION -> PRIVATE: deletes that tuple
|
|
132
|
+
*
|
|
133
|
+
* @generated from rpc ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceCommandController.updateExecutionVisibility
|
|
134
|
+
*/
|
|
135
|
+
readonly updateExecutionVisibility: {
|
|
136
|
+
readonly name: "updateExecutionVisibility";
|
|
137
|
+
readonly I: any;
|
|
138
|
+
readonly O: any;
|
|
139
|
+
readonly kind: any;
|
|
140
|
+
};
|
|
113
141
|
/**
|
|
114
142
|
* Delete a workflow instance.
|
|
115
143
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { WorkflowInstance } from "./api_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
import { UpdateVisibilityInput } from "../../../commons/apiresource/io_pbjs";
|
|
9
|
-
import { WorkflowInstanceId } from "./io_pbjs";
|
|
9
|
+
import { UpdateExecutionVisibilityInput, WorkflowInstanceId } from "./io_pbjs";
|
|
10
10
|
/**
|
|
11
11
|
* WorkflowInstanceCommandController handles write operations for workflow instances.
|
|
12
12
|
*
|
|
@@ -119,6 +119,34 @@ export const WorkflowInstanceCommandController = {
|
|
|
119
119
|
O: WorkflowInstance,
|
|
120
120
|
kind: MethodKind.Unary,
|
|
121
121
|
},
|
|
122
|
+
/**
|
|
123
|
+
* Update who can observe the run history (executions) of this instance.
|
|
124
|
+
*
|
|
125
|
+
* This is a SEPARATE axis from updateVisibility: it controls run
|
|
126
|
+
* observability (who sees execution inputs/outputs), not who can see/run
|
|
127
|
+
* the instance itself. Making an instance org-runnable does NOT expose
|
|
128
|
+
* other users' run history — that requires this opt-in.
|
|
129
|
+
*
|
|
130
|
+
* Supported levels: PRIVATE (only the user who ran each execution) and
|
|
131
|
+
* ORGANIZATION (all org members). Public/platform are unsupported.
|
|
132
|
+
*
|
|
133
|
+
* @internal
|
|
134
|
+
* Authorization: requires can_grant_access on the workflow instance —
|
|
135
|
+
* sharing run history is an access-granting action, consistent with the
|
|
136
|
+
* per-execution share flow. In Cloud mode the transition reconciles the
|
|
137
|
+
* instance's `execution_viewer` FGA relation:
|
|
138
|
+
* - PRIVATE -> ORGANIZATION: creates
|
|
139
|
+
* workflow_instance#execution_viewer@organization:<org>#member
|
|
140
|
+
* - ORGANIZATION -> PRIVATE: deletes that tuple
|
|
141
|
+
*
|
|
142
|
+
* @generated from rpc ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceCommandController.updateExecutionVisibility
|
|
143
|
+
*/
|
|
144
|
+
updateExecutionVisibility: {
|
|
145
|
+
name: "updateExecutionVisibility",
|
|
146
|
+
I: UpdateExecutionVisibilityInput,
|
|
147
|
+
O: WorkflowInstance,
|
|
148
|
+
kind: MethodKind.Unary,
|
|
149
|
+
},
|
|
122
150
|
/**
|
|
123
151
|
* Delete a workflow instance.
|
|
124
152
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/command_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,4IAA4I;AAC5I,oBAAoB;AACpB,cAAc;AAEd,kGAAkG;AAElG,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/
|
|
1
|
+
{"version":3,"file":"command_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/command_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,4IAA4I;AAC5I,oBAAoB;AACpB,cAAc;AAEd,kGAAkG;AAElG,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,8BAA8B,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/E;;;;;;;;;;;;;;;GAeG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAG;IAC/C,QAAQ,EAAE,0EAA0E;IACpF,OAAO,EAAE;QACP;;;;;;;;WAQG;QACH,KAAK,EAAE;YACL,IAAI,EAAE,OAAO;YACb,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,gBAAgB;YACnB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;WAgBG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,gBAAgB;YACnB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;WAoBG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,gBAAgB;YACnB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;WAqBG;QACH,gBAAgB,EAAE;YAChB,IAAI,EAAE,kBAAkB;YACxB,CAAC,EAAE,qBAAqB;YACxB,CAAC,EAAE,gBAAgB;YACnB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;WAqBG;QACH,yBAAyB,EAAE;YACzB,IAAI,EAAE,2BAA2B;YACjC,CAAC,EAAE,8BAA8B;YACjC,CAAC,EAAE,gBAAgB;YACnB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;WAmBG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,kBAAkB;YACrB,CAAC,EAAE,gBAAgB;YACnB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { WorkflowInstanceSchema } from "./api_pb.js";
|
|
3
|
-
import type { WorkflowInstanceIdSchema } from "./io_pb.js";
|
|
3
|
+
import type { UpdateExecutionVisibilityInputSchema, WorkflowInstanceIdSchema } from "./io_pb.js";
|
|
4
4
|
import type { UpdateVisibilityInputSchema } from "../../../commons/apiresource/io_pb.js";
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file ai/stigmer/agentic/workflowinstance/v1/command.proto.
|
|
@@ -112,6 +112,33 @@ export declare const WorkflowInstanceCommandController: GenService<{
|
|
|
112
112
|
input: typeof UpdateVisibilityInputSchema;
|
|
113
113
|
output: typeof WorkflowInstanceSchema;
|
|
114
114
|
};
|
|
115
|
+
/**
|
|
116
|
+
* Update who can observe the run history (executions) of this instance.
|
|
117
|
+
*
|
|
118
|
+
* This is a SEPARATE axis from updateVisibility: it controls run
|
|
119
|
+
* observability (who sees execution inputs/outputs), not who can see/run
|
|
120
|
+
* the instance itself. Making an instance org-runnable does NOT expose
|
|
121
|
+
* other users' run history — that requires this opt-in.
|
|
122
|
+
*
|
|
123
|
+
* Supported levels: PRIVATE (only the user who ran each execution) and
|
|
124
|
+
* ORGANIZATION (all org members). Public/platform are unsupported.
|
|
125
|
+
*
|
|
126
|
+
* @internal
|
|
127
|
+
* Authorization: requires can_grant_access on the workflow instance —
|
|
128
|
+
* sharing run history is an access-granting action, consistent with the
|
|
129
|
+
* per-execution share flow. In Cloud mode the transition reconciles the
|
|
130
|
+
* instance's `execution_viewer` FGA relation:
|
|
131
|
+
* - PRIVATE -> ORGANIZATION: creates
|
|
132
|
+
* workflow_instance#execution_viewer@organization:<org>#member
|
|
133
|
+
* - ORGANIZATION -> PRIVATE: deletes that tuple
|
|
134
|
+
*
|
|
135
|
+
* @generated from rpc ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceCommandController.updateExecutionVisibility
|
|
136
|
+
*/
|
|
137
|
+
updateExecutionVisibility: {
|
|
138
|
+
methodKind: "unary";
|
|
139
|
+
input: typeof UpdateExecutionVisibilityInputSchema;
|
|
140
|
+
output: typeof WorkflowInstanceSchema;
|
|
141
|
+
};
|
|
115
142
|
/**
|
|
116
143
|
* Delete a workflow instance.
|
|
117
144
|
*
|
|
@@ -10,7 +10,7 @@ import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/agentic/workflowinstance/v1/command.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_workflowinstance_v1_command = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_workflowinstance_v1_command = /*@__PURE__*/ fileDesc("CjRhaS9zdGlnbWVyL2FnZW50aWMvd29ya2Zsb3dpbnN0YW5jZS92MS9jb21tYW5kLnByb3RvEiZhaS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MTLvCAohV29ya2Zsb3dJbnN0YW5jZUNvbW1hbmRDb250cm9sbGVyEnsKBWFwcGx5EjguYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93aW5zdGFuY2UudjEuV29ya2Zsb3dJbnN0YW5jZRo4LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2luc3RhbmNlLnYxLldvcmtmbG93SW5zdGFuY2USggEKBmNyZWF0ZRI4LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2luc3RhbmNlLnYxLldvcmtmbG93SW5zdGFuY2UaOC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MS5Xb3JrZmxvd0luc3RhbmNlIgTQuBgBEr0BCgZ1cGRhdGUSOC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MS5Xb3JrZmxvd0luc3RhbmNlGjguYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93aW5zdGFuY2UudjEuV29ya2Zsb3dJbnN0YW5jZSI/wrgYOwgCEDMiC21ldGFkYXRhLmlkKih1bmF1dGhvcml6ZWQgdG8gdXBkYXRlIHdvcmtmbG93IGluc3RhbmNlEs8BChB1cGRhdGVWaXNpYmlsaXR5EjUuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLlVwZGF0ZVZpc2liaWxpdHlJbnB1dBo4LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2luc3RhbmNlLnYxLldvcmtmbG93SW5zdGFuY2UiSsK4GEYIAhAzIgtyZXNvdXJjZV9pZCozdW5hdXRob3JpemVkIHRvIHVwZGF0ZSB3b3JrZmxvdyBpbnN0YW5jZSB2aXNpYmlsaXR5EvMBChl1cGRhdGVFeGVjdXRpb25WaXNpYmlsaXR5EkYuYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93aW5zdGFuY2UudjEuVXBkYXRlRXhlY3V0aW9uVmlzaWJpbGl0eUlucHV0GjguYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93aW5zdGFuY2UudjEuV29ya2Zsb3dJbnN0YW5jZSJUwrgYUAgEEDMiC3Jlc291cmNlX2lkKj11bmF1dGhvcml6ZWQgdG8gdXBkYXRlIHdvcmtmbG93IGluc3RhbmNlIGV4ZWN1dGlvbiB2aXNpYmlsaXR5ErkBCgZkZWxldGUSOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MS5Xb3JrZmxvd0luc3RhbmNlSWQaOC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MS5Xb3JrZmxvd0luc3RhbmNlIjnCuBg1CAMQMyIFdmFsdWUqKHVuYXV0aG9yaXplZCB0byBkZWxldGUgd29ya2Zsb3cgaW5zdGFuY2UaBKD/KzNiBnByb3RvMw", [file_ai_stigmer_agentic_workflowinstance_v1_api, file_ai_stigmer_agentic_workflowinstance_v1_io, file_ai_stigmer_commons_apiresource_io, file_ai_stigmer_commons_apiresource_rpc_service_options, file_ai_stigmer_commons_rpc_method_options]);
|
|
14
14
|
/**
|
|
15
15
|
* WorkflowInstanceCommandController handles write operations for workflow instances.
|
|
16
16
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/command_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,4IAA4I;AAC5I,oBAAoB;AAKpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,+CAA+C,EAAE,MAAM,aAAa,CAAC;AAE9E,OAAO,EAAE,8CAA8C,EAAE,MAAM,YAAY,CAAC;AAE5E,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,mDAAmD,GAAY,aAAa,CACvF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/command_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,4IAA4I;AAC5I,oBAAoB;AAKpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,+CAA+C,EAAE,MAAM,aAAa,CAAC;AAE9E,OAAO,EAAE,8CAA8C,EAAE,MAAM,YAAY,CAAC;AAE5E,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,mDAAmD,GAAY,aAAa,CACvF,QAAQ,CAAC,wnDAAwnD,EAAE,CAAC,+CAA+C,EAAE,8CAA8C,EAAE,sCAAsC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAEr3D;;;;;;;;;;;;;;;GAeG;AACH,MAAM,CAAC,MAAM,iCAAiC,GA8IzC,aAAa,CAChB,WAAW,CAAC,mDAAmD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { WorkflowInstance } from "./api_pb.js";
|
|
3
|
+
import type { WorkflowExecutionVisibility } from "./spec_pb.js";
|
|
3
4
|
import type { PageInfo } from "../../../commons/rpc/pagination_pb.js";
|
|
4
5
|
import type { Message } from "@bufbuild/protobuf";
|
|
5
6
|
/**
|
|
@@ -62,6 +63,35 @@ export type GetWorkflowInstancesByWorkflowRequest = Message<"ai.stigmer.agentic.
|
|
|
62
63
|
* Use `create(GetWorkflowInstancesByWorkflowRequestSchema)` to create a new message.
|
|
63
64
|
*/
|
|
64
65
|
export declare const GetWorkflowInstancesByWorkflowRequestSchema: GenMessage<GetWorkflowInstancesByWorkflowRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* UpdateExecutionVisibilityInput targets the run-observability setting of a
|
|
68
|
+
* single workflow instance.
|
|
69
|
+
*
|
|
70
|
+
* Mirrors the shape of commons UpdateVisibilityInput, but for the SEPARATE
|
|
71
|
+
* execution-visibility axis (see WorkflowExecutionVisibility). A dedicated
|
|
72
|
+
* message keeps the two visibility concepts from being conflated.
|
|
73
|
+
*
|
|
74
|
+
* @generated from message ai.stigmer.agentic.workflowinstance.v1.UpdateExecutionVisibilityInput
|
|
75
|
+
*/
|
|
76
|
+
export type UpdateExecutionVisibilityInput = Message<"ai.stigmer.agentic.workflowinstance.v1.UpdateExecutionVisibilityInput"> & {
|
|
77
|
+
/**
|
|
78
|
+
* ID of the workflow instance whose execution visibility is being updated.
|
|
79
|
+
*
|
|
80
|
+
* @generated from field: string resource_id = 1;
|
|
81
|
+
*/
|
|
82
|
+
resourceId: string;
|
|
83
|
+
/**
|
|
84
|
+
* The new execution-visibility setting. Must not be unspecified (0).
|
|
85
|
+
*
|
|
86
|
+
* @generated from field: ai.stigmer.agentic.workflowinstance.v1.WorkflowExecutionVisibility execution_visibility = 2;
|
|
87
|
+
*/
|
|
88
|
+
executionVisibility: WorkflowExecutionVisibility;
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* Describes the message ai.stigmer.agentic.workflowinstance.v1.UpdateExecutionVisibilityInput.
|
|
92
|
+
* Use `create(UpdateExecutionVisibilityInputSchema)` to create a new message.
|
|
93
|
+
*/
|
|
94
|
+
export declare const UpdateExecutionVisibilityInputSchema: GenMessage<UpdateExecutionVisibilityInput>;
|
|
65
95
|
/**
|
|
66
96
|
* WorkflowInstanceList contains a paginated list of workflow instances.
|
|
67
97
|
*
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_agentic_workflowinstance_v1_api } from "./api_pb.js";
|
|
6
|
+
import { file_ai_stigmer_agentic_workflowinstance_v1_spec } from "./spec_pb.js";
|
|
6
7
|
import { file_ai_stigmer_commons_rpc_pagination } from "../../../commons/rpc/pagination_pb.js";
|
|
7
8
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
8
9
|
/**
|
|
9
10
|
* Describes the file ai/stigmer/agentic/workflowinstance/v1/io.proto.
|
|
10
11
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_workflowinstance_v1_io = /*@__PURE__*/ fileDesc("
|
|
12
|
+
export const file_ai_stigmer_agentic_workflowinstance_v1_io = /*@__PURE__*/ fileDesc("Ci9haS9zdGlnbWVyL2FnZW50aWMvd29ya2Zsb3dpbnN0YW5jZS92MS9pby5wcm90bxImYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93aW5zdGFuY2UudjEiKwoSV29ya2Zsb3dJbnN0YW5jZUlkEhUKBXZhbHVlGAEgASgJQga6SAPIAQEieQolR2V0V29ya2Zsb3dJbnN0YW5jZXNCeVdvcmtmbG93UmVxdWVzdBIbCgt3b3JrZmxvd19pZBgBIAEoCUIGukgDyAEBEjMKCXBhZ2VfaW5mbxgCIAEoCzIgLmFpLnN0aWdtZXIuY29tbW9ucy5ycGMuUGFnZUluZm8irAEKHlVwZGF0ZUV4ZWN1dGlvblZpc2liaWxpdHlJbnB1dBIbCgtyZXNvdXJjZV9pZBgBIAEoCUIGukgDyAEBEm0KFGV4ZWN1dGlvbl92aXNpYmlsaXR5GAIgASgOMkMuYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93aW5zdGFuY2UudjEuV29ya2Zsb3dFeGVjdXRpb25WaXNpYmlsaXR5Qgq6SAeCAQQQASAAInYKFFdvcmtmbG93SW5zdGFuY2VMaXN0EhMKC3RvdGFsX3BhZ2VzGAEgASgFEkkKB2VudHJpZXMYAiADKAsyOC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MS5Xb3JrZmxvd0luc3RhbmNlYgZwcm90bzM", [file_ai_stigmer_agentic_workflowinstance_v1_api, file_ai_stigmer_agentic_workflowinstance_v1_spec, file_ai_stigmer_commons_rpc_pagination, file_buf_validate_validate]);
|
|
12
13
|
/**
|
|
13
14
|
* Describes the message ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceId.
|
|
14
15
|
* Use `create(WorkflowInstanceIdSchema)` to create a new message.
|
|
@@ -19,9 +20,14 @@ export const WorkflowInstanceIdSchema = /*@__PURE__*/ messageDesc(file_ai_stigme
|
|
|
19
20
|
* Use `create(GetWorkflowInstancesByWorkflowRequestSchema)` to create a new message.
|
|
20
21
|
*/
|
|
21
22
|
export const GetWorkflowInstancesByWorkflowRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowinstance_v1_io, 1);
|
|
23
|
+
/**
|
|
24
|
+
* Describes the message ai.stigmer.agentic.workflowinstance.v1.UpdateExecutionVisibilityInput.
|
|
25
|
+
* Use `create(UpdateExecutionVisibilityInputSchema)` to create a new message.
|
|
26
|
+
*/
|
|
27
|
+
export const UpdateExecutionVisibilityInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowinstance_v1_io, 2);
|
|
22
28
|
/**
|
|
23
29
|
* Describes the message ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceList.
|
|
24
30
|
* Use `create(WorkflowInstanceListSchema)` to create a new message.
|
|
25
31
|
*/
|
|
26
|
-
export const WorkflowInstanceListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowinstance_v1_io,
|
|
32
|
+
export const WorkflowInstanceListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowinstance_v1_io, 3);
|
|
27
33
|
//# sourceMappingURL=io_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,uIAAuI;AACvI,oBAAoB;AAQpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,+CAA+C,EAAE,MAAM,aAAa,CAAC;AAE9E,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,uIAAuI;AACvI,oBAAoB;AAQpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,+CAA+C,EAAE,MAAM,aAAa,CAAC;AAE9E,OAAO,EAAE,gDAAgD,EAAE,MAAM,cAAc,CAAC;AAEhF,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,6uBAA6uB,EAAE,CAAC,+CAA+C,EAAE,gDAAgD,EAAE,sCAAsC,EAAE,0BAA0B,CAAC,CAAC,CAAC;AAsBn6B;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AA+BjE;;;GAGG;AACH,MAAM,CAAC,MAAM,2CAA2C,GAAsD,aAAa,CACzH,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AA4BjE;;;GAGG;AACH,MAAM,CAAC,MAAM,oCAAoC,GAA+C,aAAa,CAC3G,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAuBjE;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { ApiResourceReference } from "../../../commons/apiresource/io_pb.js";
|
|
3
3
|
import type { Message } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
@@ -76,9 +76,66 @@ export type WorkflowInstanceSpec = Message<"ai.stigmer.agentic.workflowinstance.
|
|
|
76
76
|
* @generated from field: repeated ai.stigmer.commons.apiresource.ApiResourceReference environment_refs = 3;
|
|
77
77
|
*/
|
|
78
78
|
environmentRefs: ApiResourceReference[];
|
|
79
|
+
/**
|
|
80
|
+
* Who can observe the run history (executions) of this instance.
|
|
81
|
+
*
|
|
82
|
+
* Independent of the instance's own visibility: making an instance
|
|
83
|
+
* org-visible lets teammates see and run it, but does NOT expose each
|
|
84
|
+
* other's run inputs/outputs unless this is set to ORGANIZATION.
|
|
85
|
+
*
|
|
86
|
+
* Defaults to PRIVATE (unspecified is treated as private) — each execution
|
|
87
|
+
* is visible only to the user who triggered it. Update via
|
|
88
|
+
* WorkflowInstanceCommandController.updateExecutionVisibility.
|
|
89
|
+
*
|
|
90
|
+
* @generated from field: ai.stigmer.agentic.workflowinstance.v1.WorkflowExecutionVisibility execution_visibility = 4;
|
|
91
|
+
*/
|
|
92
|
+
executionVisibility: WorkflowExecutionVisibility;
|
|
79
93
|
};
|
|
80
94
|
/**
|
|
81
95
|
* Describes the message ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceSpec.
|
|
82
96
|
* Use `create(WorkflowInstanceSpecSchema)` to create a new message.
|
|
83
97
|
*/
|
|
84
98
|
export declare const WorkflowInstanceSpecSchema: GenMessage<WorkflowInstanceSpec>;
|
|
99
|
+
/**
|
|
100
|
+
* WorkflowExecutionVisibility controls who can observe the run history
|
|
101
|
+
* (executions) of a workflow instance.
|
|
102
|
+
*
|
|
103
|
+
* This is a SEPARATE axis from the instance's own visibility
|
|
104
|
+
* (metadata.visibility, which governs who can SEE and RUN the instance).
|
|
105
|
+
* Keeping them separate means making an instance org-runnable never exposes
|
|
106
|
+
* other users' run inputs/outputs. See workflow_execution.fga and
|
|
107
|
+
* workflow_instance.fga (the `execution_viewer` relation) for how this maps
|
|
108
|
+
* to authorization tuples.
|
|
109
|
+
*
|
|
110
|
+
* Only PRIVATE and ORGANIZATION are meaningful: run history is either visible
|
|
111
|
+
* to just the triggerer, or to every member of the owning organization.
|
|
112
|
+
* Public/platform run observability is deliberately unsupported.
|
|
113
|
+
*
|
|
114
|
+
* @generated from enum ai.stigmer.agentic.workflowinstance.v1.WorkflowExecutionVisibility
|
|
115
|
+
*/
|
|
116
|
+
export declare enum WorkflowExecutionVisibility {
|
|
117
|
+
/**
|
|
118
|
+
* Unset. Treated as PRIVATE — each execution is visible only to the user
|
|
119
|
+
* who triggered it.
|
|
120
|
+
*
|
|
121
|
+
* @generated from enum value: workflow_execution_visibility_unspecified = 0;
|
|
122
|
+
*/
|
|
123
|
+
unspecified = 0,
|
|
124
|
+
/**
|
|
125
|
+
* Each execution is visible only to the user who triggered it (its owner).
|
|
126
|
+
*
|
|
127
|
+
* @generated from enum value: workflow_execution_visibility_private = 1;
|
|
128
|
+
*/
|
|
129
|
+
private = 1,
|
|
130
|
+
/**
|
|
131
|
+
* Every member of the owning organization can observe all executions of
|
|
132
|
+
* this instance.
|
|
133
|
+
*
|
|
134
|
+
* @generated from enum value: workflow_execution_visibility_organization = 2;
|
|
135
|
+
*/
|
|
136
|
+
organization = 2
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Describes the enum ai.stigmer.agentic.workflowinstance.v1.WorkflowExecutionVisibility.
|
|
140
|
+
*/
|
|
141
|
+
export declare const WorkflowExecutionVisibilitySchema: GenEnum<WorkflowExecutionVisibility>;
|
|
@@ -1,17 +1,61 @@
|
|
|
1
1
|
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
2
|
// @generated from file ai/stigmer/agentic/workflowinstance/v1/spec.proto (package ai.stigmer.agentic.workflowinstance.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
|
-
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
4
|
+
import { enumDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_commons_apiresource_field_options } from "../../../commons/apiresource/field_options_pb.js";
|
|
6
6
|
import { file_ai_stigmer_commons_apiresource_io } from "../../../commons/apiresource/io_pb.js";
|
|
7
7
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/agentic/workflowinstance/v1/spec.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_workflowinstance_v1_spec = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_agentic_workflowinstance_v1_spec = /*@__PURE__*/ fileDesc("CjFhaS9zdGlnbWVyL2FnZW50aWMvd29ya2Zsb3dpbnN0YW5jZS92MS9zcGVjLnByb3RvEiZhaS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dpbnN0YW5jZS52MSKBAwoUV29ya2Zsb3dJbnN0YW5jZVNwZWMSHAoLd29ya2Zsb3dfaWQYASABKAlCB7pIBHICEAESEwoLZGVzY3JpcHRpb24YAiABKAkSyAEKEGVudmlyb25tZW50X3JlZnMYAyADKAsyNC5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuQXBpUmVzb3VyY2VSZWZlcmVuY2VCeLpIcZIBbiJsugFpChVlbnZpcm9ubWVudF9yZWZzLmtpbmQSP2Vudmlyb25tZW50X3JlZnMgbXVzdCByZWZlcmVuY2UgcmVzb3VyY2VzIHdpdGgga2luZD1lbnZpcm9ubWVudBoPdGhpcy5raW5kID09IDUz4IUsNRJrChRleGVjdXRpb25fdmlzaWJpbGl0eRgEIAEoDjJDLmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2luc3RhbmNlLnYxLldvcmtmbG93RXhlY3V0aW9uVmlzaWJpbGl0eUIIukgFggECEAEqpwEKG1dvcmtmbG93RXhlY3V0aW9uVmlzaWJpbGl0eRItCil3b3JrZmxvd19leGVjdXRpb25fdmlzaWJpbGl0eV91bnNwZWNpZmllZBAAEikKJXdvcmtmbG93X2V4ZWN1dGlvbl92aXNpYmlsaXR5X3ByaXZhdGUQARIuCip3b3JrZmxvd19leGVjdXRpb25fdmlzaWJpbGl0eV9vcmdhbml6YXRpb24QAmIGcHJvdG8z", [file_ai_stigmer_commons_apiresource_field_options, file_ai_stigmer_commons_apiresource_io, file_buf_validate_validate]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.agentic.workflowinstance.v1.WorkflowInstanceSpec.
|
|
14
14
|
* Use `create(WorkflowInstanceSpecSchema)` to create a new message.
|
|
15
15
|
*/
|
|
16
16
|
export const WorkflowInstanceSpecSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowinstance_v1_spec, 0);
|
|
17
|
+
/**
|
|
18
|
+
* WorkflowExecutionVisibility controls who can observe the run history
|
|
19
|
+
* (executions) of a workflow instance.
|
|
20
|
+
*
|
|
21
|
+
* This is a SEPARATE axis from the instance's own visibility
|
|
22
|
+
* (metadata.visibility, which governs who can SEE and RUN the instance).
|
|
23
|
+
* Keeping them separate means making an instance org-runnable never exposes
|
|
24
|
+
* other users' run inputs/outputs. See workflow_execution.fga and
|
|
25
|
+
* workflow_instance.fga (the `execution_viewer` relation) for how this maps
|
|
26
|
+
* to authorization tuples.
|
|
27
|
+
*
|
|
28
|
+
* Only PRIVATE and ORGANIZATION are meaningful: run history is either visible
|
|
29
|
+
* to just the triggerer, or to every member of the owning organization.
|
|
30
|
+
* Public/platform run observability is deliberately unsupported.
|
|
31
|
+
*
|
|
32
|
+
* @generated from enum ai.stigmer.agentic.workflowinstance.v1.WorkflowExecutionVisibility
|
|
33
|
+
*/
|
|
34
|
+
export var WorkflowExecutionVisibility;
|
|
35
|
+
(function (WorkflowExecutionVisibility) {
|
|
36
|
+
/**
|
|
37
|
+
* Unset. Treated as PRIVATE — each execution is visible only to the user
|
|
38
|
+
* who triggered it.
|
|
39
|
+
*
|
|
40
|
+
* @generated from enum value: workflow_execution_visibility_unspecified = 0;
|
|
41
|
+
*/
|
|
42
|
+
WorkflowExecutionVisibility[WorkflowExecutionVisibility["unspecified"] = 0] = "unspecified";
|
|
43
|
+
/**
|
|
44
|
+
* Each execution is visible only to the user who triggered it (its owner).
|
|
45
|
+
*
|
|
46
|
+
* @generated from enum value: workflow_execution_visibility_private = 1;
|
|
47
|
+
*/
|
|
48
|
+
WorkflowExecutionVisibility[WorkflowExecutionVisibility["private"] = 1] = "private";
|
|
49
|
+
/**
|
|
50
|
+
* Every member of the owning organization can observe all executions of
|
|
51
|
+
* this instance.
|
|
52
|
+
*
|
|
53
|
+
* @generated from enum value: workflow_execution_visibility_organization = 2;
|
|
54
|
+
*/
|
|
55
|
+
WorkflowExecutionVisibility[WorkflowExecutionVisibility["organization"] = 2] = "organization";
|
|
56
|
+
})(WorkflowExecutionVisibility || (WorkflowExecutionVisibility = {}));
|
|
57
|
+
/**
|
|
58
|
+
* Describes the enum ai.stigmer.agentic.workflowinstance.v1.WorkflowExecutionVisibility.
|
|
59
|
+
*/
|
|
60
|
+
export const WorkflowExecutionVisibilitySchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_workflowinstance_v1_spec, 0);
|
|
17
61
|
//# sourceMappingURL=spec_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yIAAyI;AACzI,oBAAoB;AAKpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowinstance/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yIAAyI;AACzI,oBAAoB;AAKpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,iDAAiD,EAAE,MAAM,kDAAkD,CAAC;AAErH,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,gDAAgD,GAAY,aAAa,CACpF,QAAQ,CAAC,82BAA82B,EAAE,CAAC,iDAAiD,EAAE,sCAAsC,EAAE,0BAA0B,CAAC,CAAC,CAAC;AA4Fp/B;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,gDAAgD,EAAE,CAAC,CAAC,CAAC;AAEnE;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAN,IAAY,2BAuBX;AAvBD,WAAY,2BAA2B;IACrC;;;;;OAKG;IACH,2FAAe,CAAA;IAEf;;;;OAIG;IACH,mFAAW,CAAA;IAEX;;;;;OAKG;IACH,6FAAgB,CAAA;AAClB,CAAC,EAvBW,2BAA2B,KAA3B,2BAA2B,QAuBtC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAyC,aAAa,CAClG,QAAQ,CAAC,gDAAgD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -8,7 +8,7 @@ import { file_google_protobuf_descriptor } from "@bufbuild/protobuf/wkt";
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_kind = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_kind = /*@__PURE__*/ fileDesc("CkZhaS9zdGlnbWVyL2NvbW1vbnMvYXBpcmVzb3VyY2UvYXBpcmVzb3VyY2VraW5kL2FwaV9yZXNvdXJjZV9raW5kLnByb3RvEi5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kIswDChNBcGlSZXNvdXJjZUtpbmRNZXRhEk8KBWdyb3VwGAEgASgOMkAuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLmFwaXJlc291cmNla2luZC5BcGlSZXNvdXJjZUdyb3VwElMKB3ZlcnNpb24YAiABKA4yQi5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kLkFwaVJlc291cmNlVmVyc2lvbhIMCgRuYW1lGAMgASgJEhQKDGRpc3BsYXlfbmFtZRgEIAEoCRIRCglpZF9wcmVmaXgYBSABKAkSFAoMaXNfdmVyc2lvbmVkGAYgASgIEhoKEm5vdF9zZWFyY2hfaW5kZXhlZBgHIAEoCBJKCgR0aWVyGAggASgOMjwuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLmFwaXJlc291cmNla2luZC5SZXNvdXJjZVRpZXISWgoNYXV0aG9yaXphdGlvbhgJIAEoCzJDLmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5hcGlyZXNvdXJjZWtpbmQuQXV0aG9yaXphdGlvbkNvbmZpZypCChJBcGlSZXNvdXJjZVZlcnNpb24SJAogYXBpX3Jlc291cmNlX3ZlcnNpb25fdW5zcGVjaWZpZWQQABIGCgJ2MRABKk4KDFJlc291cmNlVGllchIdChlyZXNvdXJjZV90aWVyX3Vuc3BlY2lmaWVkEAASDwoLb3Blbl9zb3VyY2UQARIOCgpjbG91ZF9vbmx5EAIqQQoPUGxhdGZvcm1JZFZhbHVlEiEKHXBsYXRmb3JtX2lkX3ZhbHVlX3Vuc3BlY2lmaWVkEAASCwoHc3RpZ21lchABKt4OCg9BcGlSZXNvdXJjZUtpbmQSHQoZYXBpX3Jlc291cmNlX2tpbmRfdW5rbm93bhAAElsKFGFwaV9yZXNvdXJjZV92ZXJzaW9uEAEaQar/Kz0IARABGhJBcGlSZXNvdXJjZVZlcnNpb24iFEFQSSBSZXNvdXJjZSBWZXJzaW9uKgN2ZXI4AUACSgQIBRAEEj8KCmlhbV9wb2xpY3kQChovqv8rKwgCEAEaCUlhbVBvbGljeSIKSUFNIFBvbGljeSoEaWFtcDgBQAJKBAgCEAESTgoQaWRlbnRpdHlfYWNjb3VudBALGjiq/ys0CAIQARoPSWRlbnRpdHlBY2NvdW50IhBJZGVudGl0eSBBY2NvdW50KgNpZGFAAkoECAQQAxI1CgdhcGlfa2V5EAwaKKr/KyQIAhABGgZBcGlLZXkiB0FQSSBLZXkqA2tleTgBQAJKBAgEEAESPwoKaW52aXRhdGlvbhAUGi+q/ysrCAIQARoKSW52aXRhdGlvbiIKSW52aXRhdGlvbioDaW52OAFAAkoECAIQARJXChFpZGVudGl0eV9wcm92aWRlchAVGkCq/ys8CAIQARoQSWRlbnRpdHlQcm92aWRlciIRSWRlbnRpdHkgUHJvdmlkZXIqA2lkcDgBQAJKCAgCEAE6AgEEEkAKCW9hdXRoX2FwcBAWGjGq/ystCAIQARoIT0F1dGhBcHAiCU9BdXRoIEFwcCoEb2FwcDgBQAJKCAgCEAE6AgEEElEKD3BsYXRmb3JtX2NsaWVudBAXGjyq/ys4CAIQARoOUGxhdGZvcm1DbGllbnQiD1BsYXRmb3JtIENsaWVudCoDcGNsOAFAAkoICAIQAToCAQQSSQoMb3JnYW5pemF0aW9uEB4aN6r/KzMIAxABGgxPcmdhbml6YXRpb24iDE9yZ2FuaXphdGlvbioDb3JnQAFKCggEEAE6BAECAwQSOQoIcGxhdGZvcm0QHxorqv8rJwgDEAEaCFBsYXRmb3JtIghQbGF0Zm9ybSoDcGx0OAFAAkoECAUQBBI8CgVhZ2VudBAoGjGq/ystCAEQARoFQWdlbnQiBUFnZW50KgNhZ3RAAUoSCAIQASoICAEQARgBIAE6AgEEEmsKD2FnZW50X2V4ZWN1dGlvbhApGlaq/ytSCAEQARoOQWdlbnRFeGVjdXRpb24iD0FnZW50IEV4ZWN1dGlvbioDYWV4QAFKJAgDEAIaHgoHc2Vzc2lvbhIHc2Vzc2lvbhoKc2Vzc2lvbl9pZBI4CgdzZXNzaW9uECoaK6r/KycIARABGgdTZXNzaW9uIgdTZXNzaW9uKgNzZXNAAUoICAIQAToCAQQSPgoFc2tpbGwQKxozqv8rLwgBEAEaBVNraWxsIgVTa2lsbCoDc2tsMAFAAUoSCAIQASoICAEQARgBIAE6AgEEEkoKCm1jcF9zZXJ2ZXIQLBo6qv8rNggBEAEaCU1jcFNlcnZlciIKTUNQIFNlcnZlcioDbWNwQAFKEggCEAEqCAgBEAEYASABOgIBBBJsCg5hZ2VudF9pbnN0YW5jZRAtGliq/ytUCAEQARoNQWdlbnRJbnN0YW5jZSIOQWdlbnQgSW5zdGFuY2UqA2FpbkABSigIAhABIhgKBWFnZW50EgVhZ2VudBoIYWdlbnRfaWQqBAgBGAE6AgEEEkcKCHdvcmtmbG93EDIaOar/KzUIARABGghXb3JrZmxvdyIIV29ya2Zsb3cqA3dmbDABQAFKEggCEAEqCAgBEAEYASABOgIBBBJ+ChF3b3JrZmxvd19pbnN0YW5jZRAzGmeq/ytjCAEQARoQV29ya2Zsb3dJbnN0YW5jZSIRV29ya2Zsb3cgSW5zdGFuY2UqA3dpbkABSjEIAhABIiEKCHdvcmtmbG93Egh3b3JrZmxvdxoLd29ya2Zsb3dfaWQqBAgBGAE6AgEEEpYBChJ3b3JrZmxvd19leGVjdXRpb24QNBp+qv8reggBEAEaEVdvcmtmbG93RXhlY3V0aW9uIhJXb3JrZmxvdyBFeGVjdXRpb24qA3dleEABSkYIAhABIjwKEXdvcmtmbG93X2luc3RhbmNlEhF3b3JrZmxvd19pbnN0YW5jZRoUd29ya2Zsb3dfaW5zdGFuY2VfaWQ6AgEEEkYKC2Vudmlyb25tZW50EDUaNar/KzEIARABGgtFbnZpcm9ubWVudCILRW52aXJvbm1lbnQqA2VudkABSgoIAhABMAE6AgEEEjsKCGFydGlmYWN0EDcaLar/KykIARABGghBcnRpZmFjdCIIQXJ0aWZhY3QqA2FydEABSggIAhABOgIBBBJSChFleGVjdXRpb25fY29udGV4dBA2Gjuq/ys3CAEQARoQRXhlY3V0aW9uQ29udGV4dCIRRXhlY3V0aW9uIENvbnRleHQqBGVjdHhAAUoECAQQARI4Cgdwcm9qZWN0EDwaK6r/KycIAxABGgdQcm9qZWN0IgdQcm9qZWN0KgNwcmpAAUoICAIQAToCAQQ6hQEKCWtpbmRfbWV0YRIhLmdvb2dsZS5wcm90b2J1Zi5FbnVtVmFsdWVPcHRpb25zGPW/BSABKAsyQy5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kLkFwaVJlc291cmNlS2luZE1ldGFSCGtpbmRNZXRhQhtCGUFwaVJlc291cmNlS2luZE91dGVyQ2xhc3NiBnByb3RvMw", [file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_group, file_ai_stigmer_commons_apiresource_apiresourcekind_authorization_config, file_google_protobuf_descriptor]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.commons.apiresource.apiresourcekind.ApiResourceKindMeta.
|
|
14
14
|
* Use `create(ApiResourceKindMetaSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api_resource_kind_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sKAAsK;AACtK,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAExF,OAAO,EAAE,sEAAsE,EAAE,MAAM,4BAA4B,CAAC;AAEpH,OAAO,EAAE,wEAAwE,EAAE,MAAM,8BAA8B,CAAC;AAExH,OAAO,EAAE,+BAA+B,EAAE,MAAM,wBAAwB,CAAC;AAGzE;;GAEG;AACH,MAAM,CAAC,MAAM,qEAAqE,GAAY,aAAa,CACzG,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"api_resource_kind_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { IamPolicy } from "./api_pb.js";
|
|
3
3
|
import type { ApiResourceRef, IamPolicySpec } from "./spec_pb.js";
|
|
4
|
+
import type { IdentityAccountProvisioningMode } from "../../identityaccount/v1/enum_pb.js";
|
|
4
5
|
import type { Message } from "@bufbuild/protobuf";
|
|
5
6
|
/**
|
|
6
7
|
* Describes the file ai/stigmer/iam/iampolicy/v1/io.proto.
|
|
@@ -69,12 +70,53 @@ export type ApiResourceRefView = Message<"ai.stigmer.iam.iampolicy.v1.ApiResourc
|
|
|
69
70
|
* @generated from field: repeated ai.stigmer.iam.iampolicy.v1.ApiResourceRefView teams = 9;
|
|
70
71
|
*/
|
|
71
72
|
teams: ApiResourceRefView[];
|
|
73
|
+
/**
|
|
74
|
+
* Where this identity account was provisioned from. Lets a chooser
|
|
75
|
+
* disambiguate accounts that share the same email address.
|
|
76
|
+
* Populated only when kind = "identity_account".
|
|
77
|
+
*
|
|
78
|
+
* @generated from field: ai.stigmer.iam.iampolicy.v1.IdentityOrigin identity_origin = 10;
|
|
79
|
+
*/
|
|
80
|
+
identityOrigin?: IdentityOrigin;
|
|
72
81
|
};
|
|
73
82
|
/**
|
|
74
83
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ApiResourceRefView.
|
|
75
84
|
* Use `create(ApiResourceRefViewSchema)` to create a new message.
|
|
76
85
|
*/
|
|
77
86
|
export declare const ApiResourceRefViewSchema: GenMessage<ApiResourceRefView>;
|
|
87
|
+
/**
|
|
88
|
+
* IdentityOrigin describes where an identity_account was provisioned from.
|
|
89
|
+
*
|
|
90
|
+
* Email is not an identity key in Stigmer: two distinct accounts can
|
|
91
|
+
* legitimately share one email address — for example a person who signed up
|
|
92
|
+
* directly and is also provisioned through a platform's identity provider.
|
|
93
|
+
* This message gives the UI enough context to tell such accounts apart when
|
|
94
|
+
* presenting a people chooser, so users never have to reason about raw
|
|
95
|
+
* account IDs.
|
|
96
|
+
*
|
|
97
|
+
* @generated from message ai.stigmer.iam.iampolicy.v1.IdentityOrigin
|
|
98
|
+
*/
|
|
99
|
+
export type IdentityOrigin = Message<"ai.stigmer.iam.iampolicy.v1.IdentityOrigin"> & {
|
|
100
|
+
/**
|
|
101
|
+
* How the account was provisioned (direct, federated, machine, platform_client).
|
|
102
|
+
*
|
|
103
|
+
* @generated from field: ai.stigmer.iam.identityaccount.v1.IdentityAccountProvisioningMode provisioning_mode = 1;
|
|
104
|
+
*/
|
|
105
|
+
provisioningMode: IdentityAccountProvisioningMode;
|
|
106
|
+
/**
|
|
107
|
+
* Human-readable label for the identity source: "Stigmer" for direct
|
|
108
|
+
* accounts, or the owning IdentityProvider's display name for federated
|
|
109
|
+
* accounts.
|
|
110
|
+
*
|
|
111
|
+
* @generated from field: string provider_display_name = 2;
|
|
112
|
+
*/
|
|
113
|
+
providerDisplayName: string;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Describes the message ai.stigmer.iam.iampolicy.v1.IdentityOrigin.
|
|
117
|
+
* Use `create(IdentityOriginSchema)` to create a new message.
|
|
118
|
+
*/
|
|
119
|
+
export declare const IdentityOriginSchema: GenMessage<IdentityOrigin>;
|
|
78
120
|
/**
|
|
79
121
|
* IamPolicyId identifies an IAM policy by its unique identifier.
|
|
80
122
|
*
|
|
@@ -4,124 +4,130 @@
|
|
|
4
4
|
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_iam_iampolicy_v1_api } from "./api_pb.js";
|
|
6
6
|
import { file_ai_stigmer_iam_iampolicy_v1_spec } from "./spec_pb.js";
|
|
7
|
+
import { file_ai_stigmer_iam_identityaccount_v1_enum } from "../../identityaccount/v1/enum_pb.js";
|
|
7
8
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
8
9
|
/**
|
|
9
10
|
* Describes the file ai/stigmer/iam/iampolicy/v1/io.proto.
|
|
10
11
|
*/
|
|
11
|
-
export const file_ai_stigmer_iam_iampolicy_v1_io = /*@__PURE__*/ fileDesc("
|
|
12
|
+
export const file_ai_stigmer_iam_iampolicy_v1_io = /*@__PURE__*/ fileDesc("CiRhaS9zdGlnbWVyL2lhbS9pYW1wb2xpY3kvdjEvaW8ucHJvdG8SG2FpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MSLDAgoSQXBpUmVzb3VyY2VSZWZWaWV3EgwKBGtpbmQYASABKAkSCgoCaWQYAiABKAkSEAoIcmVsYXRpb24YAyABKAkSDAoEbmFtZRgEIAEoCRINCgVlbWFpbBgFIAEoCRIMCgRzbHVnGAYgASgJEg4KBmF2YXRhchgHIAEoCRJACgdtZW1iZXJzGAggAygLMi8uYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLkFwaVJlc291cmNlUmVmVmlldxI+CgV0ZWFtcxgJIAMoCzIvLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5BcGlSZXNvdXJjZVJlZlZpZXcSRAoPaWRlbnRpdHlfb3JpZ2luGAogASgLMisuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLklkZW50aXR5T3JpZ2luIo4BCg5JZGVudGl0eU9yaWdpbhJdChFwcm92aXNpb25pbmdfbW9kZRgBIAEoDjJCLmFpLnN0aWdtZXIuaWFtLmlkZW50aXR5YWNjb3VudC52MS5JZGVudGl0eUFjY291bnRQcm92aXNpb25pbmdNb2RlEh0KFXByb3ZpZGVyX2Rpc3BsYXlfbmFtZRgCIAEoCSIkCgtJYW1Qb2xpY3lJZBIVCgV2YWx1ZRgBIAEoCUIGukgDyAEBIqcBChZQcmluY2lwYWxSZXNvdXJjZUlucHV0EkYKCXByaW5jaXBhbBgBIAEoCzIrLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5BcGlSZXNvdXJjZVJlZkIGukgDyAEBEkUKCHJlc291cmNlGAIgASgLMisuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLkFwaVJlc291cmNlUmVmQga6SAPIAQEiqQEKF1Jlc291cmNlUHJpbmNpcGFsc0lucHV0EkUKCHJlc291cmNlGAEgASgLMisuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLkFwaVJlc291cmNlUmVmQga6SAPIAQESRwoKcHJpbmNpcGFscxgCIAMoCzIrLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5BcGlSZXNvdXJjZVJlZkIGukgDyAEBImQKFFJldm9rZU9yZ0FjY2Vzc0lucHV0EicKE2lkZW50aXR5X2FjY291bnRfaWQYASABKAlCCrpIB8gBAXICEAESIwoPb3JnYW5pemF0aW9uX2lkGAIgASgJQgq6SAfIAQFyAhABIkoKD0lhbVBvbGljaWVzTGlzdBI3CgdlbnRyaWVzGAEgAygLMiYuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLklhbVBvbGljeSJ7ChdMaXN0UmVzb3VyY2VBY2Nlc3NJbnB1dBJFCghyZXNvdXJjZRgBIAEoCzIrLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5BcGlSZXNvdXJjZVJlZkIGukgDyAEBEhkKEWluY2x1ZGVfaW5oZXJpdGVkGAIgASgIIl4KHVJlc291cmNlQWNjZXNzQnlQcmluY2lwYWxMaXN0Ej0KB2VudHJpZXMYASADKAsyLC5haS5zdGlnbWVyLmlhbS5pYW1wb2xpY3kudjEuUHJpbmNpcGFsQWNjZXNzIowBCg9QcmluY2lwYWxBY2Nlc3MSQgoJcHJpbmNpcGFsGAEgASgLMi8uYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLkFwaVJlc291cmNlUmVmVmlldxI1CgVyb2xlcxgCIAMoCzImLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5Sb2xlR3JhbnQimwEKCVJvbGVHcmFudBIzCgRyb2xlGAEgASgLMiUuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLlJvbGVJbmZvEkMKDm93bmVyX3Jlc291cmNlGAIgASgLMisuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLkFwaVJlc291cmNlUmVmEhQKDGlzX2luaGVyaXRlZBgDIAEoCCJUChhSZXNvdXJjZUFjY2Vzc0J5Um9sZUxpc3QSOAoHZW50cmllcxgBIAMoCzInLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5Sb2xlQWNjZXNzIocBCgpSb2xlQWNjZXNzEjQKBHJvbGUYASABKAsyJi5haS5zdGlnbWVyLmlhbS5pYW1wb2xpY3kudjEuUm9sZUdyYW50EkMKCnByaW5jaXBhbHMYAiADKAsyLy5haS5zdGlnbWVyLmlhbS5pYW1wb2xpY3kudjEuQXBpUmVzb3VyY2VSZWZWaWV3IkcKCFJvbGVJbmZvEgoKAmlkGAEgASgJEgwKBGNvZGUYAiABKAkSDAoEbmFtZRgDIAEoCRITCgtkZXNjcmlwdGlvbhgEIAEoCSJOChZQcmluY2lwYWxSZXNvdXJjZVJvbGVzEjQKBXJvbGVzGAEgAygLMiUuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLlJvbGVJbmZvIqYBChdDaGVja0F1dGhvcml6YXRpb25JbnB1dBJCCgZwb2xpY3kYASABKAsyKi5haS5zdGlnbWVyLmlhbS5pYW1wb2xpY3kudjEuSWFtUG9saWN5U3BlY0IGukgDyAEBEkcKE2NvbnRleHR1YWxfcG9saWNpZXMYAiADKAsyKi5haS5zdGlnbWVyLmlhbS5pYW1wb2xpY3kudjEuSWFtUG9saWN5U3BlYyIxChhDaGVja0F1dGhvcml6YXRpb25SZXN1bHQSFQoNaXNfYXV0aG9yaXplZBgBIAEoCCLIAQoWQ2hlY2tNeVBlcm1pc3Npb25JbnB1dBJFCghyZXNvdXJjZRgBIAEoCzIrLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5BcGlSZXNvdXJjZVJlZkIGukgDyAEBEh4KCHJlbGF0aW9uGAIgASgJQgy6SAnIAQFyBBABGEASRwoTY29udGV4dHVhbF9wb2xpY2llcxgDIAMoCzIqLmFpLnN0aWdtZXIuaWFtLmlhbXBvbGljeS52MS5JYW1Qb2xpY3lTcGVjIvIBCh5MaXN0QXV0aG9yaXplZFJlc291cmNlSWRzSW5wdXQSRgoJcHJpbmNpcGFsGAEgASgLMisuYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLkFwaVJlc291cmNlUmVmQga6SAPIAQESIQoNcmVzb3VyY2Vfa2luZBgCIAEoCUIKukgHyAEBcgIQARIcCghyZWxhdGlvbhgDIAEoCUIKukgHyAEBcgIQARJHChNjb250ZXh0dWFsX3BvbGljaWVzGAQgAygLMiouYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLklhbVBvbGljeVNwZWMiMQoZQXV0aG9yaXplZFJlc291cmNlSWRzTGlzdBIUCgxyZXNvdXJjZV9pZHMYASADKAki8wEKH0xpc3RBdXRob3JpemVkUHJpbmNpcGFsSWRzSW5wdXQSRQoIcmVzb3VyY2UYASABKAsyKy5haS5zdGlnbWVyLmlhbS5pYW1wb2xpY3kudjEuQXBpUmVzb3VyY2VSZWZCBrpIA8gBARIiCg5wcmluY2lwYWxfa2luZBgCIAEoCUIKukgHyAEBcgIQARIcCghyZWxhdGlvbhgDIAEoCUIKukgHyAEBcgIQARJHChNjb250ZXh0dWFsX3BvbGljaWVzGAQgAygLMiouYWkuc3RpZ21lci5pYW0uaWFtcG9saWN5LnYxLklhbVBvbGljeVNwZWMiMwoaQXV0aG9yaXplZFByaW5jaXBhbElkc0xpc3QSFQoNcHJpbmNpcGFsX2lkcxgBIAMoCSJZChdHZXRQcmluY2lwYWxzQ291bnRJbnB1dBIaCgZvcmdfaWQYASABKAlCCrpIB8gBAXICEAESIgoOcHJpbmNpcGFsX2tpbmQYAiABKAlCCrpIB8gBAXICEAEiIAoPUHJpbmNpcGFsc0NvdW50Eg0KBWNvdW50GAEgASgFYgZwcm90bzM", [file_ai_stigmer_iam_iampolicy_v1_api, file_ai_stigmer_iam_iampolicy_v1_spec, file_ai_stigmer_iam_identityaccount_v1_enum, file_buf_validate_validate]);
|
|
12
13
|
/**
|
|
13
14
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ApiResourceRefView.
|
|
14
15
|
* Use `create(ApiResourceRefViewSchema)` to create a new message.
|
|
15
16
|
*/
|
|
16
17
|
export const ApiResourceRefViewSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 0);
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message ai.stigmer.iam.iampolicy.v1.IdentityOrigin.
|
|
20
|
+
* Use `create(IdentityOriginSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
export const IdentityOriginSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 1);
|
|
17
23
|
/**
|
|
18
24
|
* Describes the message ai.stigmer.iam.iampolicy.v1.IamPolicyId.
|
|
19
25
|
* Use `create(IamPolicyIdSchema)` to create a new message.
|
|
20
26
|
*/
|
|
21
|
-
export const IamPolicyIdSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
27
|
+
export const IamPolicyIdSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 2);
|
|
22
28
|
/**
|
|
23
29
|
* Describes the message ai.stigmer.iam.iampolicy.v1.PrincipalResourceInput.
|
|
24
30
|
* Use `create(PrincipalResourceInputSchema)` to create a new message.
|
|
25
31
|
*/
|
|
26
|
-
export const PrincipalResourceInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
32
|
+
export const PrincipalResourceInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 3);
|
|
27
33
|
/**
|
|
28
34
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ResourcePrincipalsInput.
|
|
29
35
|
* Use `create(ResourcePrincipalsInputSchema)` to create a new message.
|
|
30
36
|
*/
|
|
31
|
-
export const ResourcePrincipalsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
37
|
+
export const ResourcePrincipalsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 4);
|
|
32
38
|
/**
|
|
33
39
|
* Describes the message ai.stigmer.iam.iampolicy.v1.RevokeOrgAccessInput.
|
|
34
40
|
* Use `create(RevokeOrgAccessInputSchema)` to create a new message.
|
|
35
41
|
*/
|
|
36
|
-
export const RevokeOrgAccessInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
42
|
+
export const RevokeOrgAccessInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 5);
|
|
37
43
|
/**
|
|
38
44
|
* Describes the message ai.stigmer.iam.iampolicy.v1.IamPoliciesList.
|
|
39
45
|
* Use `create(IamPoliciesListSchema)` to create a new message.
|
|
40
46
|
*/
|
|
41
|
-
export const IamPoliciesListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
47
|
+
export const IamPoliciesListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 6);
|
|
42
48
|
/**
|
|
43
49
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ListResourceAccessInput.
|
|
44
50
|
* Use `create(ListResourceAccessInputSchema)` to create a new message.
|
|
45
51
|
*/
|
|
46
|
-
export const ListResourceAccessInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
52
|
+
export const ListResourceAccessInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 7);
|
|
47
53
|
/**
|
|
48
54
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ResourceAccessByPrincipalList.
|
|
49
55
|
* Use `create(ResourceAccessByPrincipalListSchema)` to create a new message.
|
|
50
56
|
*/
|
|
51
|
-
export const ResourceAccessByPrincipalListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
57
|
+
export const ResourceAccessByPrincipalListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 8);
|
|
52
58
|
/**
|
|
53
59
|
* Describes the message ai.stigmer.iam.iampolicy.v1.PrincipalAccess.
|
|
54
60
|
* Use `create(PrincipalAccessSchema)` to create a new message.
|
|
55
61
|
*/
|
|
56
|
-
export const PrincipalAccessSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
62
|
+
export const PrincipalAccessSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 9);
|
|
57
63
|
/**
|
|
58
64
|
* Describes the message ai.stigmer.iam.iampolicy.v1.RoleGrant.
|
|
59
65
|
* Use `create(RoleGrantSchema)` to create a new message.
|
|
60
66
|
*/
|
|
61
|
-
export const RoleGrantSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
67
|
+
export const RoleGrantSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 10);
|
|
62
68
|
/**
|
|
63
69
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ResourceAccessByRoleList.
|
|
64
70
|
* Use `create(ResourceAccessByRoleListSchema)` to create a new message.
|
|
65
71
|
*/
|
|
66
|
-
export const ResourceAccessByRoleListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
72
|
+
export const ResourceAccessByRoleListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 11);
|
|
67
73
|
/**
|
|
68
74
|
* Describes the message ai.stigmer.iam.iampolicy.v1.RoleAccess.
|
|
69
75
|
* Use `create(RoleAccessSchema)` to create a new message.
|
|
70
76
|
*/
|
|
71
|
-
export const RoleAccessSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
77
|
+
export const RoleAccessSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 12);
|
|
72
78
|
/**
|
|
73
79
|
* Describes the message ai.stigmer.iam.iampolicy.v1.RoleInfo.
|
|
74
80
|
* Use `create(RoleInfoSchema)` to create a new message.
|
|
75
81
|
*/
|
|
76
|
-
export const RoleInfoSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
82
|
+
export const RoleInfoSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 13);
|
|
77
83
|
/**
|
|
78
84
|
* Describes the message ai.stigmer.iam.iampolicy.v1.PrincipalResourceRoles.
|
|
79
85
|
* Use `create(PrincipalResourceRolesSchema)` to create a new message.
|
|
80
86
|
*/
|
|
81
|
-
export const PrincipalResourceRolesSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
87
|
+
export const PrincipalResourceRolesSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 14);
|
|
82
88
|
/**
|
|
83
89
|
* Describes the message ai.stigmer.iam.iampolicy.v1.CheckAuthorizationInput.
|
|
84
90
|
* Use `create(CheckAuthorizationInputSchema)` to create a new message.
|
|
85
91
|
*/
|
|
86
|
-
export const CheckAuthorizationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
92
|
+
export const CheckAuthorizationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 15);
|
|
87
93
|
/**
|
|
88
94
|
* Describes the message ai.stigmer.iam.iampolicy.v1.CheckAuthorizationResult.
|
|
89
95
|
* Use `create(CheckAuthorizationResultSchema)` to create a new message.
|
|
90
96
|
*/
|
|
91
|
-
export const CheckAuthorizationResultSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
97
|
+
export const CheckAuthorizationResultSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 16);
|
|
92
98
|
/**
|
|
93
99
|
* Describes the message ai.stigmer.iam.iampolicy.v1.CheckMyPermissionInput.
|
|
94
100
|
* Use `create(CheckMyPermissionInputSchema)` to create a new message.
|
|
95
101
|
*/
|
|
96
|
-
export const CheckMyPermissionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
102
|
+
export const CheckMyPermissionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 17);
|
|
97
103
|
/**
|
|
98
104
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ListAuthorizedResourceIdsInput.
|
|
99
105
|
* Use `create(ListAuthorizedResourceIdsInputSchema)` to create a new message.
|
|
100
106
|
*/
|
|
101
|
-
export const ListAuthorizedResourceIdsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
107
|
+
export const ListAuthorizedResourceIdsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 18);
|
|
102
108
|
/**
|
|
103
109
|
* Describes the message ai.stigmer.iam.iampolicy.v1.AuthorizedResourceIdsList.
|
|
104
110
|
* Use `create(AuthorizedResourceIdsListSchema)` to create a new message.
|
|
105
111
|
*/
|
|
106
|
-
export const AuthorizedResourceIdsListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
112
|
+
export const AuthorizedResourceIdsListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 19);
|
|
107
113
|
/**
|
|
108
114
|
* Describes the message ai.stigmer.iam.iampolicy.v1.ListAuthorizedPrincipalIdsInput.
|
|
109
115
|
* Use `create(ListAuthorizedPrincipalIdsInputSchema)` to create a new message.
|
|
110
116
|
*/
|
|
111
|
-
export const ListAuthorizedPrincipalIdsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
117
|
+
export const ListAuthorizedPrincipalIdsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 20);
|
|
112
118
|
/**
|
|
113
119
|
* Describes the message ai.stigmer.iam.iampolicy.v1.AuthorizedPrincipalIdsList.
|
|
114
120
|
* Use `create(AuthorizedPrincipalIdsListSchema)` to create a new message.
|
|
115
121
|
*/
|
|
116
|
-
export const AuthorizedPrincipalIdsListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
122
|
+
export const AuthorizedPrincipalIdsListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 21);
|
|
117
123
|
/**
|
|
118
124
|
* Describes the message ai.stigmer.iam.iampolicy.v1.GetPrincipalsCountInput.
|
|
119
125
|
* Use `create(GetPrincipalsCountInputSchema)` to create a new message.
|
|
120
126
|
*/
|
|
121
|
-
export const GetPrincipalsCountInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
127
|
+
export const GetPrincipalsCountInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 22);
|
|
122
128
|
/**
|
|
123
129
|
* Describes the message ai.stigmer.iam.iampolicy.v1.PrincipalsCount.
|
|
124
130
|
* Use `create(PrincipalsCountSchema)` to create a new message.
|
|
125
131
|
*/
|
|
126
|
-
export const PrincipalsCountSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io,
|
|
132
|
+
export const PrincipalsCountSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_iam_iampolicy_v1_io, 23);
|
|
127
133
|
//# sourceMappingURL=io_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/iam/iampolicy/v1/io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,iHAAiH;AACjH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,oCAAoC,EAAE,MAAM,aAAa,CAAC;AAEnE,OAAO,EAAE,qCAAqC,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/iam/iampolicy/v1/io_pb.ts"],"names":[],"mappings":"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"}
|