@opengeni/contracts 2.5.0-canary.2 → 2.7.0
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/dist/agent-topology.d.ts +292 -0
- package/dist/atlassian.js +6 -5
- package/dist/chunk-BCS7WHCK.js +139 -0
- package/dist/chunk-BCS7WHCK.js.map +1 -0
- package/dist/{chunk-4I7DWNRR.js → chunk-ILB4IYNN.js} +6977 -6701
- package/dist/chunk-ILB4IYNN.js.map +1 -0
- package/dist/connection-authority.js +6 -5
- package/dist/connection-authority.js.map +1 -1
- package/dist/editable-artifact-live.js +1 -1
- package/dist/editable-artifact-serialized-commit.js +1 -1
- package/dist/editable-artifacts.js +8 -8
- package/dist/google-drive.js +7 -6
- package/dist/google-drive.js.map +1 -1
- package/dist/index.d.ts +137 -140
- package/dist/index.js +155 -47
- package/dist/managed-auth-session-sets.d.ts +215 -0
- package/dist/managed-auth-session-sets.js +166 -0
- package/dist/managed-auth-session-sets.js.map +1 -0
- package/dist/organization-recovery.d.ts +337 -0
- package/dist/organization-recovery.js +37 -0
- package/dist/organization-recovery.js.map +1 -0
- package/dist/personal-github.js +6 -5
- package/dist/personal-github.js.map +1 -1
- package/dist/session-topology-primitives.d.ts +22 -0
- package/dist/work-claims.d.ts +411 -0
- package/package.json +9 -1
- package/src/agent-topology.ts +69 -0
- package/src/image-generation.ts +8 -2
- package/src/index.ts +69 -81
- package/src/managed-auth-session-sets.ts +208 -0
- package/src/organization-recovery.ts +186 -0
- package/src/session-topology-primitives.ts +21 -0
- package/src/work-claims.ts +266 -0
- package/dist/chunk-4I7DWNRR.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -758,6 +758,7 @@ import {
|
|
|
758
758
|
ListUserResourceAuthoritiesResponse,
|
|
759
759
|
ListWorkspaceMembersResponse,
|
|
760
760
|
MAX_NESTED_AGENT_DEPTH,
|
|
761
|
+
MAX_RESOLVED_VARIABLE_SET_ATTACHMENTS,
|
|
761
762
|
MAX_SELECTED_VARIABLE_SETS,
|
|
762
763
|
MCP_MUTATION_RECEIPT_MAX_BYTES,
|
|
763
764
|
MCP_MUTATION_RECEIPT_VERSION,
|
|
@@ -968,6 +969,7 @@ import {
|
|
|
968
969
|
REMEMBER_CONTENT_MAX_CHARS,
|
|
969
970
|
REMEMBER_HUMAN_INPUT_SAVE_OPTION,
|
|
970
971
|
REMEMBER_HUMAN_INPUT_SKIP_OPTION,
|
|
972
|
+
RIG_SETUP_SCRIPT_MAX_CHARS,
|
|
971
973
|
ReasoningEffort,
|
|
972
974
|
ReclassifyDocumentAuthorityRequest,
|
|
973
975
|
RecordingAvailablePayload,
|
|
@@ -1001,6 +1003,8 @@ import {
|
|
|
1001
1003
|
RequestHumanInteractionToolInput,
|
|
1002
1004
|
RequestHumanInteractionToolOutput,
|
|
1003
1005
|
ResolveInteractionInterventionRequest,
|
|
1006
|
+
ResolveVariableSetAttachmentsRequest,
|
|
1007
|
+
ResolveVariableSetAttachmentsResponse,
|
|
1004
1008
|
ResolvedCompanyProfileSnapshot,
|
|
1005
1009
|
ResolvedWorkspaceInstructionPolicySnapshot,
|
|
1006
1010
|
ResolvedWorkspaceInstructionPolicySnapshotEntry,
|
|
@@ -1404,6 +1408,7 @@ import {
|
|
|
1404
1408
|
VOICE_INPUT_MAX_DURATION_SECONDS,
|
|
1405
1409
|
VOICE_INPUT_MAX_SIZE_BYTES,
|
|
1406
1410
|
VariableSet,
|
|
1411
|
+
VariableSetAttachmentMetadata,
|
|
1407
1412
|
VariableSetScope,
|
|
1408
1413
|
VariableSetSecret,
|
|
1409
1414
|
VariableSetVariableMetadata,
|
|
@@ -1444,6 +1449,35 @@ import {
|
|
|
1444
1449
|
WORKSPACE_STATE_MAX_TOPICS,
|
|
1445
1450
|
WORKSPACE_STATE_MEMORY_SAMPLE_LIMIT,
|
|
1446
1451
|
WORKSPACE_STATE_TOPIC_MAX_CHARS,
|
|
1452
|
+
WORK_CLAIM_ACTIVE_SESSION_CAP,
|
|
1453
|
+
WORK_CLAIM_CANONICAL_KEY_MAX_BYTES,
|
|
1454
|
+
WORK_CLAIM_DISCOVERY_DEFAULT_LIMIT,
|
|
1455
|
+
WORK_CLAIM_DISCOVERY_LIMIT,
|
|
1456
|
+
WORK_CLAIM_DISPLAY_LABEL_MAX_BYTES,
|
|
1457
|
+
WORK_CLAIM_NAMESPACE_MAX_BYTES,
|
|
1458
|
+
WORK_CLAIM_VERSION_VALUE_MAX_BYTES,
|
|
1459
|
+
WORK_DISCOVERY_QUERY_MAX_CHARS,
|
|
1460
|
+
WORK_DISCOVERY_RECENT_HOURS_MAX,
|
|
1461
|
+
WorkClaim,
|
|
1462
|
+
WorkClaimCanonicalKey,
|
|
1463
|
+
WorkClaimDiscoverySummary,
|
|
1464
|
+
WorkClaimDisplayLabel,
|
|
1465
|
+
WorkClaimMutationKind,
|
|
1466
|
+
WorkClaimMutationResult,
|
|
1467
|
+
WorkClaimNamespace,
|
|
1468
|
+
WorkClaimProvenance,
|
|
1469
|
+
WorkClaimReleaseReason,
|
|
1470
|
+
WorkClaimRole,
|
|
1471
|
+
WorkClaimState,
|
|
1472
|
+
WorkClaimSubjectFilter,
|
|
1473
|
+
WorkClaimSubjectType,
|
|
1474
|
+
WorkClaimVersionKind,
|
|
1475
|
+
WorkClaimVersionValue,
|
|
1476
|
+
WorkDiscoveryMatch,
|
|
1477
|
+
WorkDiscoveryMatchClass,
|
|
1478
|
+
WorkDiscoveryMatchedField,
|
|
1479
|
+
WorkDiscoveryProjection,
|
|
1480
|
+
WorkDiscoveryScoreBand,
|
|
1447
1481
|
Workspace,
|
|
1448
1482
|
WorkspaceArtifact,
|
|
1449
1483
|
WorkspaceArtifactContentResponse,
|
|
@@ -1620,6 +1654,9 @@ import {
|
|
|
1620
1654
|
normalizeRepositoryTransportUri,
|
|
1621
1655
|
normalizeResourceMountPath,
|
|
1622
1656
|
normalizeSessionGoalRootConstraints,
|
|
1657
|
+
normalizeWorkClaimCanonicalKey,
|
|
1658
|
+
normalizeWorkClaimDisplayLabel,
|
|
1659
|
+
normalizeWorkClaimNamespace,
|
|
1623
1660
|
normalizeWorkspaceArtifactSlug,
|
|
1624
1661
|
normalizeWorkspaceInstructionPolicyRoleKey,
|
|
1625
1662
|
normalizeWorkspaceLearningSourceKind,
|
|
@@ -1683,7 +1720,17 @@ import {
|
|
|
1683
1720
|
workspaceLearningPolicyRouterContext,
|
|
1684
1721
|
workspaceLearningSourceKey,
|
|
1685
1722
|
workspaceSlackReactionChannelAllowed
|
|
1686
|
-
} from "./chunk-
|
|
1723
|
+
} from "./chunk-ILB4IYNN.js";
|
|
1724
|
+
import {
|
|
1725
|
+
ConnectorDocumentDestination,
|
|
1726
|
+
ConnectorDocumentDestinationAuthority,
|
|
1727
|
+
ConnectorDocumentDestinationSelection,
|
|
1728
|
+
bindConnectorDocumentDestination,
|
|
1729
|
+
connectorDestinationDocumentAuthority,
|
|
1730
|
+
connectorDocumentDestinationCollectionId,
|
|
1731
|
+
legacyWorkspaceConnectorDocumentDestination,
|
|
1732
|
+
resolveConnectorDocumentDestination
|
|
1733
|
+
} from "./chunk-WYBDERIY.js";
|
|
1687
1734
|
import {
|
|
1688
1735
|
OPENGENI_MANAGED_PUBLIC_BASE_URL,
|
|
1689
1736
|
OPENGENI_SLACK_BOT_EVENTS,
|
|
@@ -1700,6 +1747,10 @@ import {
|
|
|
1700
1747
|
hasOpenGeniSlackBotSearchScopes,
|
|
1701
1748
|
hasOpenGeniSlackReactionScope
|
|
1702
1749
|
} from "./chunk-MRWYRAS5.js";
|
|
1750
|
+
import {
|
|
1751
|
+
WORKSPACE_XAI_PROVIDER_ACCOUNT_AUTHORITY_SNAPSHOT_V1,
|
|
1752
|
+
XaiProviderAccountAuthoritySnapshotV1
|
|
1753
|
+
} from "./chunk-CM6BMECR.js";
|
|
1703
1754
|
import {
|
|
1704
1755
|
CanonicalHumanBindingOperationRequest,
|
|
1705
1756
|
CanonicalHumanIdentityMutationOutcome,
|
|
@@ -1712,15 +1763,30 @@ import {
|
|
|
1712
1763
|
LinkCanonicalHumanLoginBindingRequest
|
|
1713
1764
|
} from "./chunk-JUFK3T4Q.js";
|
|
1714
1765
|
import {
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1766
|
+
CONNECTOR_ATTACHMENT_FILENAME_MAX_UTF8_BYTES,
|
|
1767
|
+
CONNECTOR_ATTACHMENT_MAX_BYTES,
|
|
1768
|
+
CONNECTOR_ATTACHMENT_MAX_COUNT,
|
|
1769
|
+
CONNECTOR_ATTACHMENT_MEDIA_TYPE_MAX_UTF8_BYTES,
|
|
1770
|
+
CONNECTOR_ATTACHMENT_PROVIDER_ID_MAX_UTF8_BYTES,
|
|
1771
|
+
CONNECTOR_ATTACHMENT_PROVIDER_MAX_UTF8_BYTES,
|
|
1772
|
+
CONNECTOR_ATTACHMENT_RECEIPT_META_KEY,
|
|
1773
|
+
CONNECTOR_ATTACHMENT_RECEIPT_VERSION,
|
|
1774
|
+
CONNECTOR_ATTACHMENT_SANDBOX_PATH_MAX_UTF8_BYTES,
|
|
1775
|
+
CONNECTOR_ATTACHMENT_SOURCE_URL_MAX_UTF8_BYTES,
|
|
1776
|
+
CONNECTOR_ATTACHMENT_TRANSFER_META_KEY,
|
|
1777
|
+
CONNECTOR_ATTACHMENT_TRANSFER_VERSION,
|
|
1778
|
+
ConnectorAttachmentFileName,
|
|
1779
|
+
ConnectorAttachmentMediaType,
|
|
1780
|
+
ConnectorAttachmentPrivateSource,
|
|
1781
|
+
ConnectorAttachmentProviderIdentity,
|
|
1782
|
+
ConnectorAttachmentReceipt,
|
|
1783
|
+
ConnectorAttachmentReceiptEnvelope,
|
|
1784
|
+
ConnectorAttachmentSandboxPath,
|
|
1785
|
+
ConnectorAttachmentSha256,
|
|
1786
|
+
ConnectorAttachmentTransfer,
|
|
1787
|
+
ConnectorAttachmentTransferEnvelope,
|
|
1788
|
+
parseConnectorAttachmentTransferEnvelope
|
|
1789
|
+
} from "./chunk-YBW5JSA3.js";
|
|
1724
1790
|
import {
|
|
1725
1791
|
EDITABLE_ARTIFACT_NATIVE_RECEIPT_MAX_BYTES,
|
|
1726
1792
|
EDITABLE_ARTIFACT_SERIALIZED_COMMIT_MAX_BYTES,
|
|
@@ -1750,6 +1816,14 @@ import {
|
|
|
1750
1816
|
hashEditableArtifactMutationIntent,
|
|
1751
1817
|
hashEditableArtifactMutationIntentBytes
|
|
1752
1818
|
} from "./chunk-NVJMJWLL.js";
|
|
1819
|
+
import {
|
|
1820
|
+
EDITABLE_ARTIFACT_CAUSAL_FRONTIER_MAX_BYTES,
|
|
1821
|
+
EDITABLE_ARTIFACT_CAUSAL_FRONTIER_MAX_REPLICAS,
|
|
1822
|
+
EDITABLE_ARTIFACT_CAUSAL_FRONTIER_VERSION,
|
|
1823
|
+
assertCanonicalEditableArtifactCausalFrontierBytes,
|
|
1824
|
+
decodeEditableArtifactCausalFrontier,
|
|
1825
|
+
encodeEditableArtifactCausalFrontier
|
|
1826
|
+
} from "./chunk-YRKRZ6OF.js";
|
|
1753
1827
|
import {
|
|
1754
1828
|
EDITABLE_ARTIFACT_CODEC_REGISTRY,
|
|
1755
1829
|
currentEditableArtifactCompatibility,
|
|
@@ -1804,18 +1878,6 @@ import {
|
|
|
1804
1878
|
encodeDocumentArtifactQuery,
|
|
1805
1879
|
encodeDocumentArtifactQueryResponse
|
|
1806
1880
|
} from "./chunk-RIY7GYQS.js";
|
|
1807
|
-
import {
|
|
1808
|
-
EDITABLE_ARTIFACT_CAUSAL_FRONTIER_MAX_BYTES,
|
|
1809
|
-
EDITABLE_ARTIFACT_CAUSAL_FRONTIER_MAX_REPLICAS,
|
|
1810
|
-
EDITABLE_ARTIFACT_CAUSAL_FRONTIER_VERSION,
|
|
1811
|
-
assertCanonicalEditableArtifactCausalFrontierBytes,
|
|
1812
|
-
decodeEditableArtifactCausalFrontier,
|
|
1813
|
-
encodeEditableArtifactCausalFrontier
|
|
1814
|
-
} from "./chunk-YRKRZ6OF.js";
|
|
1815
|
-
import {
|
|
1816
|
-
WORKSPACE_XAI_PROVIDER_ACCOUNT_AUTHORITY_SNAPSHOT_V1,
|
|
1817
|
-
XaiProviderAccountAuthoritySnapshotV1
|
|
1818
|
-
} from "./chunk-CM6BMECR.js";
|
|
1819
1881
|
import {
|
|
1820
1882
|
PRESENTATION_ARTIFACT_COMMAND_MAX_BYTES,
|
|
1821
1883
|
PRESENTATION_ARTIFACT_COMMAND_MAX_COMMANDS,
|
|
@@ -1872,6 +1934,24 @@ import {
|
|
|
1872
1934
|
SPREADSHEET_ARTIFACT_MODEL_SCHEMA_VERSION,
|
|
1873
1935
|
SPREADSHEET_COLLABORATION_SNAPSHOT_VERSION
|
|
1874
1936
|
} from "./chunk-PX3VCKAU.js";
|
|
1937
|
+
import {
|
|
1938
|
+
AcceptOrganizationRecoveryCustodyRequest,
|
|
1939
|
+
ConfigureOrganizationRecoveryPolicyRequest,
|
|
1940
|
+
DisableOrganizationRecoveryPolicyRequest,
|
|
1941
|
+
OrganizationRecoveryApproval,
|
|
1942
|
+
OrganizationRecoveryCapabilities,
|
|
1943
|
+
OrganizationRecoveryCustodian,
|
|
1944
|
+
OrganizationRecoveryMemberSummary,
|
|
1945
|
+
OrganizationRecoveryMutationResponse,
|
|
1946
|
+
OrganizationRecoveryOperation,
|
|
1947
|
+
OrganizationRecoveryOperationCommandRequest,
|
|
1948
|
+
OrganizationRecoveryOperationState,
|
|
1949
|
+
OrganizationRecoveryOverview,
|
|
1950
|
+
OrganizationRecoveryPolicy,
|
|
1951
|
+
OrganizationRecoveryPolicyState,
|
|
1952
|
+
OrganizationRecoveryUnavailableReason,
|
|
1953
|
+
StartOrganizationRecoveryOperationRequest
|
|
1954
|
+
} from "./chunk-BCS7WHCK.js";
|
|
1875
1955
|
import {
|
|
1876
1956
|
COMPUTER_SCREENSHOT_MAX_BYTES,
|
|
1877
1957
|
COMPUTER_SCREENSHOT_MAX_DIMENSION,
|
|
@@ -1924,31 +2004,6 @@ import {
|
|
|
1924
2004
|
retainedScreenshotReferenceFromFile,
|
|
1925
2005
|
validateRetainedOutputEvidence
|
|
1926
2006
|
} from "./chunk-M5ZGRVIQ.js";
|
|
1927
|
-
import {
|
|
1928
|
-
CONNECTOR_ATTACHMENT_FILENAME_MAX_UTF8_BYTES,
|
|
1929
|
-
CONNECTOR_ATTACHMENT_MAX_BYTES,
|
|
1930
|
-
CONNECTOR_ATTACHMENT_MAX_COUNT,
|
|
1931
|
-
CONNECTOR_ATTACHMENT_MEDIA_TYPE_MAX_UTF8_BYTES,
|
|
1932
|
-
CONNECTOR_ATTACHMENT_PROVIDER_ID_MAX_UTF8_BYTES,
|
|
1933
|
-
CONNECTOR_ATTACHMENT_PROVIDER_MAX_UTF8_BYTES,
|
|
1934
|
-
CONNECTOR_ATTACHMENT_RECEIPT_META_KEY,
|
|
1935
|
-
CONNECTOR_ATTACHMENT_RECEIPT_VERSION,
|
|
1936
|
-
CONNECTOR_ATTACHMENT_SANDBOX_PATH_MAX_UTF8_BYTES,
|
|
1937
|
-
CONNECTOR_ATTACHMENT_SOURCE_URL_MAX_UTF8_BYTES,
|
|
1938
|
-
CONNECTOR_ATTACHMENT_TRANSFER_META_KEY,
|
|
1939
|
-
CONNECTOR_ATTACHMENT_TRANSFER_VERSION,
|
|
1940
|
-
ConnectorAttachmentFileName,
|
|
1941
|
-
ConnectorAttachmentMediaType,
|
|
1942
|
-
ConnectorAttachmentPrivateSource,
|
|
1943
|
-
ConnectorAttachmentProviderIdentity,
|
|
1944
|
-
ConnectorAttachmentReceipt,
|
|
1945
|
-
ConnectorAttachmentReceiptEnvelope,
|
|
1946
|
-
ConnectorAttachmentSandboxPath,
|
|
1947
|
-
ConnectorAttachmentSha256,
|
|
1948
|
-
ConnectorAttachmentTransfer,
|
|
1949
|
-
ConnectorAttachmentTransferEnvelope,
|
|
1950
|
-
parseConnectorAttachmentTransferEnvelope
|
|
1951
|
-
} from "./chunk-YBW5JSA3.js";
|
|
1952
2007
|
export {
|
|
1953
2008
|
AGENT_AUTHORED_COMPANY_PROFILE_CONTENT_MAX_UTF8_BYTES,
|
|
1954
2009
|
AGENT_AUTHORED_COMPANY_PROFILE_ENTRY_MAX_CHARS,
|
|
@@ -1978,6 +2033,7 @@ export {
|
|
|
1978
2033
|
AUTOMATION_WEBHOOK_MAX_BYTES,
|
|
1979
2034
|
AcceptOrganizationInvitationRequest,
|
|
1980
2035
|
AcceptOrganizationInvitationResponse,
|
|
2036
|
+
AcceptOrganizationRecoveryCustodyRequest,
|
|
1981
2037
|
AccessContext,
|
|
1982
2038
|
AccessGrant,
|
|
1983
2039
|
AccessPrincipalKind,
|
|
@@ -2325,6 +2381,7 @@ export {
|
|
|
2325
2381
|
ComputerSessionMutationResponse,
|
|
2326
2382
|
ComputerTarget,
|
|
2327
2383
|
ComputerTargetListResponse,
|
|
2384
|
+
ConfigureOrganizationRecoveryPolicyRequest,
|
|
2328
2385
|
ConfirmRememberKnowledgeClaimRequest,
|
|
2329
2386
|
ConnectionCredentialBundle,
|
|
2330
2387
|
ConnectionKind,
|
|
@@ -2435,6 +2492,7 @@ export {
|
|
|
2435
2492
|
DeviceEnrollmentStartRequest,
|
|
2436
2493
|
DeviceEnrollmentStartResponse,
|
|
2437
2494
|
DeviceEnrollmentState,
|
|
2495
|
+
DisableOrganizationRecoveryPolicyRequest,
|
|
2438
2496
|
DiscoverMcpCapabilitiesResponse,
|
|
2439
2497
|
Document,
|
|
2440
2498
|
DocumentAuthorityKind,
|
|
@@ -2792,6 +2850,7 @@ export {
|
|
|
2792
2850
|
MAX_COMMITTED_TRANSACTION_CELLS,
|
|
2793
2851
|
MAX_COMMITTED_TRANSACTION_OPERATIONS,
|
|
2794
2852
|
MAX_NESTED_AGENT_DEPTH,
|
|
2853
|
+
MAX_RESOLVED_VARIABLE_SET_ATTACHMENTS,
|
|
2795
2854
|
MAX_SELECTED_VARIABLE_SETS,
|
|
2796
2855
|
MCP_MUTATION_RECEIPT_MAX_BYTES,
|
|
2797
2856
|
MCP_MUTATION_RECEIPT_VERSION,
|
|
@@ -2908,6 +2967,18 @@ export {
|
|
|
2908
2967
|
OrganizationMembershipRole,
|
|
2909
2968
|
OrganizationMembershipStatus,
|
|
2910
2969
|
OrganizationPrivateSessionSettings,
|
|
2970
|
+
OrganizationRecoveryApproval,
|
|
2971
|
+
OrganizationRecoveryCapabilities,
|
|
2972
|
+
OrganizationRecoveryCustodian,
|
|
2973
|
+
OrganizationRecoveryMemberSummary,
|
|
2974
|
+
OrganizationRecoveryMutationResponse,
|
|
2975
|
+
OrganizationRecoveryOperation,
|
|
2976
|
+
OrganizationRecoveryOperationCommandRequest,
|
|
2977
|
+
OrganizationRecoveryOperationState,
|
|
2978
|
+
OrganizationRecoveryOverview,
|
|
2979
|
+
OrganizationRecoveryPolicy,
|
|
2980
|
+
OrganizationRecoveryPolicyState,
|
|
2981
|
+
OrganizationRecoveryUnavailableReason,
|
|
2911
2982
|
OrganizationRetentionDatabaseFinalization,
|
|
2912
2983
|
OrganizationRetentionDeletionClaim,
|
|
2913
2984
|
OrganizationRetentionDeletionObject,
|
|
@@ -3038,6 +3109,7 @@ export {
|
|
|
3038
3109
|
RETAINED_OUTPUT_DEFAULT_PAGE_BYTES,
|
|
3039
3110
|
RETAINED_OUTPUT_MAX_PAGE_BYTES,
|
|
3040
3111
|
RETAINED_OUTPUT_RECEIPT_MAX_BYTES,
|
|
3112
|
+
RIG_SETUP_SCRIPT_MAX_CHARS,
|
|
3041
3113
|
ReasoningEffort,
|
|
3042
3114
|
ReclassifyDocumentAuthorityRequest,
|
|
3043
3115
|
RecordingAvailablePayload,
|
|
@@ -3071,6 +3143,8 @@ export {
|
|
|
3071
3143
|
RequestHumanInteractionToolInput,
|
|
3072
3144
|
RequestHumanInteractionToolOutput,
|
|
3073
3145
|
ResolveInteractionInterventionRequest,
|
|
3146
|
+
ResolveVariableSetAttachmentsRequest,
|
|
3147
|
+
ResolveVariableSetAttachmentsResponse,
|
|
3074
3148
|
ResolvedCompanyProfileSnapshot,
|
|
3075
3149
|
ResolvedWorkspaceInstructionPolicySnapshot,
|
|
3076
3150
|
ResolvedWorkspaceInstructionPolicySnapshotEntry,
|
|
@@ -3333,6 +3407,7 @@ export {
|
|
|
3333
3407
|
SocialPost,
|
|
3334
3408
|
SocialProvider,
|
|
3335
3409
|
StartAuthRunRequest,
|
|
3410
|
+
StartOrganizationRecoveryOperationRequest,
|
|
3336
3411
|
StaticUsageLimits,
|
|
3337
3412
|
SteerSessionMessageRequest,
|
|
3338
3413
|
SteerSessionMessageResponse,
|
|
@@ -3500,6 +3575,7 @@ export {
|
|
|
3500
3575
|
VOICE_INPUT_MAX_DURATION_SECONDS,
|
|
3501
3576
|
VOICE_INPUT_MAX_SIZE_BYTES,
|
|
3502
3577
|
VariableSet,
|
|
3578
|
+
VariableSetAttachmentMetadata,
|
|
3503
3579
|
VariableSetScope,
|
|
3504
3580
|
VariableSetSecret,
|
|
3505
3581
|
VariableSetVariableMetadata,
|
|
@@ -3558,6 +3634,35 @@ export {
|
|
|
3558
3634
|
WORKSPACE_STATE_MEMORY_SAMPLE_LIMIT,
|
|
3559
3635
|
WORKSPACE_STATE_TOPIC_MAX_CHARS,
|
|
3560
3636
|
WORKSPACE_XAI_PROVIDER_ACCOUNT_AUTHORITY_SNAPSHOT_V1,
|
|
3637
|
+
WORK_CLAIM_ACTIVE_SESSION_CAP,
|
|
3638
|
+
WORK_CLAIM_CANONICAL_KEY_MAX_BYTES,
|
|
3639
|
+
WORK_CLAIM_DISCOVERY_DEFAULT_LIMIT,
|
|
3640
|
+
WORK_CLAIM_DISCOVERY_LIMIT,
|
|
3641
|
+
WORK_CLAIM_DISPLAY_LABEL_MAX_BYTES,
|
|
3642
|
+
WORK_CLAIM_NAMESPACE_MAX_BYTES,
|
|
3643
|
+
WORK_CLAIM_VERSION_VALUE_MAX_BYTES,
|
|
3644
|
+
WORK_DISCOVERY_QUERY_MAX_CHARS,
|
|
3645
|
+
WORK_DISCOVERY_RECENT_HOURS_MAX,
|
|
3646
|
+
WorkClaim,
|
|
3647
|
+
WorkClaimCanonicalKey,
|
|
3648
|
+
WorkClaimDiscoverySummary,
|
|
3649
|
+
WorkClaimDisplayLabel,
|
|
3650
|
+
WorkClaimMutationKind,
|
|
3651
|
+
WorkClaimMutationResult,
|
|
3652
|
+
WorkClaimNamespace,
|
|
3653
|
+
WorkClaimProvenance,
|
|
3654
|
+
WorkClaimReleaseReason,
|
|
3655
|
+
WorkClaimRole,
|
|
3656
|
+
WorkClaimState,
|
|
3657
|
+
WorkClaimSubjectFilter,
|
|
3658
|
+
WorkClaimSubjectType,
|
|
3659
|
+
WorkClaimVersionKind,
|
|
3660
|
+
WorkClaimVersionValue,
|
|
3661
|
+
WorkDiscoveryMatch,
|
|
3662
|
+
WorkDiscoveryMatchClass,
|
|
3663
|
+
WorkDiscoveryMatchedField,
|
|
3664
|
+
WorkDiscoveryProjection,
|
|
3665
|
+
WorkDiscoveryScoreBand,
|
|
3561
3666
|
Workspace,
|
|
3562
3667
|
WorkspaceArtifact,
|
|
3563
3668
|
WorkspaceArtifactContentResponse,
|
|
@@ -3793,6 +3898,9 @@ export {
|
|
|
3793
3898
|
normalizeRepositoryTransportUri,
|
|
3794
3899
|
normalizeResourceMountPath,
|
|
3795
3900
|
normalizeSessionGoalRootConstraints,
|
|
3901
|
+
normalizeWorkClaimCanonicalKey,
|
|
3902
|
+
normalizeWorkClaimDisplayLabel,
|
|
3903
|
+
normalizeWorkClaimNamespace,
|
|
3796
3904
|
normalizeWorkspaceArtifactSlug,
|
|
3797
3905
|
normalizeWorkspaceInstructionPolicyRoleKey,
|
|
3798
3906
|
normalizeWorkspaceLearningSourceKind,
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const MANAGED_AUTH_SESSION_SET_MAX_SLOTS: 8;
|
|
3
|
+
export declare const MANAGED_AUTH_TRANSACTION_TTL_SECONDS: 600;
|
|
4
|
+
export declare const MANAGED_AUTH_RETURN_INTENT_MAX_BYTES: 2048;
|
|
5
|
+
export declare const MANAGED_AUTH_SESSION_SET_API_CONTRACT_HEADER: "x-opengeni-api-contract";
|
|
6
|
+
export declare const MANAGED_AUTH_SESSION_SET_API_CONTRACT_REVISION: "2026-08-personal-only-organization-setup-v1";
|
|
7
|
+
export declare const ManagedAuthSessionSetMode: z.ZodEnum<{
|
|
8
|
+
broker: "broker";
|
|
9
|
+
dual: "dual";
|
|
10
|
+
legacy: "legacy";
|
|
11
|
+
}>;
|
|
12
|
+
export type ManagedAuthSessionSetMode = z.infer<typeof ManagedAuthSessionSetMode>;
|
|
13
|
+
export declare const ManagedAuthLoginSlotState: z.ZodEnum<{
|
|
14
|
+
active: "active";
|
|
15
|
+
reauth_required: "reauth_required";
|
|
16
|
+
}>;
|
|
17
|
+
export type ManagedAuthLoginSlotState = z.infer<typeof ManagedAuthLoginSlotState>;
|
|
18
|
+
export declare const ManagedAuthVerifiedClaim: z.ZodObject<{
|
|
19
|
+
kind: z.ZodLiteral<"email">;
|
|
20
|
+
value: z.ZodString;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
export type ManagedAuthVerifiedClaim = z.infer<typeof ManagedAuthVerifiedClaim>;
|
|
23
|
+
/** Secret-free, browser-safe summary. Provider session ids and tokens never enter this shape. */
|
|
24
|
+
export declare const ManagedAuthLoginSlot: z.ZodObject<{
|
|
25
|
+
id: z.ZodString;
|
|
26
|
+
displayName: z.ZodString;
|
|
27
|
+
verifiedClaim: z.ZodObject<{
|
|
28
|
+
kind: z.ZodLiteral<"email">;
|
|
29
|
+
value: z.ZodString;
|
|
30
|
+
}, z.core.$strip>;
|
|
31
|
+
state: z.ZodEnum<{
|
|
32
|
+
active: "active";
|
|
33
|
+
reauth_required: "reauth_required";
|
|
34
|
+
}>;
|
|
35
|
+
}, z.core.$strip>;
|
|
36
|
+
export type ManagedAuthLoginSlot = z.infer<typeof ManagedAuthLoginSlot>;
|
|
37
|
+
export declare const ManagedAuthSessionSetState: z.ZodEnum<{
|
|
38
|
+
actor_change_required: "actor_change_required";
|
|
39
|
+
ready: "ready";
|
|
40
|
+
}>;
|
|
41
|
+
export type ManagedAuthSessionSetState = z.infer<typeof ManagedAuthSessionSetState>;
|
|
42
|
+
export declare const ManagedAuthSessionSetProjection: z.ZodObject<{
|
|
43
|
+
mode: z.ZodEnum<{
|
|
44
|
+
broker: "broker";
|
|
45
|
+
dual: "dual";
|
|
46
|
+
legacy: "legacy";
|
|
47
|
+
}>;
|
|
48
|
+
generation: z.ZodString;
|
|
49
|
+
actorEpoch: z.ZodString;
|
|
50
|
+
csrfToken: z.ZodString;
|
|
51
|
+
selectedSlotId: z.ZodNullable<z.ZodString>;
|
|
52
|
+
state: z.ZodEnum<{
|
|
53
|
+
actor_change_required: "actor_change_required";
|
|
54
|
+
ready: "ready";
|
|
55
|
+
}>;
|
|
56
|
+
slots: z.ZodArray<z.ZodObject<{
|
|
57
|
+
id: z.ZodString;
|
|
58
|
+
displayName: z.ZodString;
|
|
59
|
+
verifiedClaim: z.ZodObject<{
|
|
60
|
+
kind: z.ZodLiteral<"email">;
|
|
61
|
+
value: z.ZodString;
|
|
62
|
+
}, z.core.$strip>;
|
|
63
|
+
state: z.ZodEnum<{
|
|
64
|
+
active: "active";
|
|
65
|
+
reauth_required: "reauth_required";
|
|
66
|
+
}>;
|
|
67
|
+
}, z.core.$strip>>;
|
|
68
|
+
}, z.core.$strip>;
|
|
69
|
+
export type ManagedAuthSessionSetProjection = z.infer<typeof ManagedAuthSessionSetProjection>;
|
|
70
|
+
export declare const ManagedAuthOperationIdentity: z.ZodObject<{
|
|
71
|
+
operationId: z.ZodString;
|
|
72
|
+
expectedGeneration: z.ZodString;
|
|
73
|
+
}, z.core.$strip>;
|
|
74
|
+
export type ManagedAuthOperationIdentity = z.infer<typeof ManagedAuthOperationIdentity>;
|
|
75
|
+
export declare const BootstrapManagedAuthSessionSetRequest: z.ZodObject<{
|
|
76
|
+
operationId: z.ZodString;
|
|
77
|
+
expectedGeneration: z.ZodString;
|
|
78
|
+
}, z.core.$strip>;
|
|
79
|
+
export type BootstrapManagedAuthSessionSetRequest = z.infer<typeof BootstrapManagedAuthSessionSetRequest>;
|
|
80
|
+
export declare const ManagedAuthReturnIntent: z.ZodString;
|
|
81
|
+
export declare const BeginManagedAuthLoginTransactionRequest: z.ZodObject<{
|
|
82
|
+
operationId: z.ZodString;
|
|
83
|
+
expectedGeneration: z.ZodString;
|
|
84
|
+
kind: z.ZodEnum<{
|
|
85
|
+
add: "add";
|
|
86
|
+
reauth: "reauth";
|
|
87
|
+
}>;
|
|
88
|
+
slotId: z.ZodOptional<z.ZodString>;
|
|
89
|
+
returnIntent: z.ZodOptional<z.ZodString>;
|
|
90
|
+
}, z.core.$strip>;
|
|
91
|
+
export type BeginManagedAuthLoginTransactionRequest = z.infer<typeof BeginManagedAuthLoginTransactionRequest>;
|
|
92
|
+
export declare const ManagedAuthLoginTransaction: z.ZodObject<{
|
|
93
|
+
id: z.ZodString;
|
|
94
|
+
kind: z.ZodEnum<{
|
|
95
|
+
add: "add";
|
|
96
|
+
reauth: "reauth";
|
|
97
|
+
}>;
|
|
98
|
+
expiresAt: z.ZodString;
|
|
99
|
+
returnIntentId: z.ZodNullable<z.ZodString>;
|
|
100
|
+
}, z.core.$strip>;
|
|
101
|
+
export type ManagedAuthLoginTransaction = z.infer<typeof ManagedAuthLoginTransaction>;
|
|
102
|
+
export declare const CompleteManagedAuthEmailPasswordTransactionRequest: z.ZodObject<{
|
|
103
|
+
operationId: z.ZodString;
|
|
104
|
+
expectedGeneration: z.ZodString;
|
|
105
|
+
transactionId: z.ZodString;
|
|
106
|
+
email: z.ZodString;
|
|
107
|
+
password: z.ZodString;
|
|
108
|
+
}, z.core.$strip>;
|
|
109
|
+
export type CompleteManagedAuthEmailPasswordTransactionRequest = z.infer<typeof CompleteManagedAuthEmailPasswordTransactionRequest>;
|
|
110
|
+
export declare const CompleteManagedAuthLoginTransactionResponse: z.ZodObject<{
|
|
111
|
+
projection: z.ZodObject<{
|
|
112
|
+
mode: z.ZodEnum<{
|
|
113
|
+
broker: "broker";
|
|
114
|
+
dual: "dual";
|
|
115
|
+
legacy: "legacy";
|
|
116
|
+
}>;
|
|
117
|
+
generation: z.ZodString;
|
|
118
|
+
actorEpoch: z.ZodString;
|
|
119
|
+
csrfToken: z.ZodString;
|
|
120
|
+
selectedSlotId: z.ZodNullable<z.ZodString>;
|
|
121
|
+
state: z.ZodEnum<{
|
|
122
|
+
actor_change_required: "actor_change_required";
|
|
123
|
+
ready: "ready";
|
|
124
|
+
}>;
|
|
125
|
+
slots: z.ZodArray<z.ZodObject<{
|
|
126
|
+
id: z.ZodString;
|
|
127
|
+
displayName: z.ZodString;
|
|
128
|
+
verifiedClaim: z.ZodObject<{
|
|
129
|
+
kind: z.ZodLiteral<"email">;
|
|
130
|
+
value: z.ZodString;
|
|
131
|
+
}, z.core.$strip>;
|
|
132
|
+
state: z.ZodEnum<{
|
|
133
|
+
active: "active";
|
|
134
|
+
reauth_required: "reauth_required";
|
|
135
|
+
}>;
|
|
136
|
+
}, z.core.$strip>>;
|
|
137
|
+
}, z.core.$strip>;
|
|
138
|
+
returnIntent: z.ZodNullable<z.ZodString>;
|
|
139
|
+
}, z.core.$strip>;
|
|
140
|
+
export type CompleteManagedAuthLoginTransactionResponse = z.infer<typeof CompleteManagedAuthLoginTransactionResponse>;
|
|
141
|
+
export declare const CancelManagedAuthLoginTransactionRequest: z.ZodObject<{
|
|
142
|
+
operationId: z.ZodString;
|
|
143
|
+
expectedGeneration: z.ZodString;
|
|
144
|
+
transactionId: z.ZodString;
|
|
145
|
+
}, z.core.$strip>;
|
|
146
|
+
export type CancelManagedAuthLoginTransactionRequest = z.infer<typeof CancelManagedAuthLoginTransactionRequest>;
|
|
147
|
+
export declare const SelectManagedAuthLoginSlotRequest: z.ZodObject<{
|
|
148
|
+
operationId: z.ZodString;
|
|
149
|
+
expectedGeneration: z.ZodString;
|
|
150
|
+
slotId: z.ZodString;
|
|
151
|
+
}, z.core.$strip>;
|
|
152
|
+
export type SelectManagedAuthLoginSlotRequest = z.infer<typeof SelectManagedAuthLoginSlotRequest>;
|
|
153
|
+
export declare const LogoutManagedAuthLoginSlotRequest: z.ZodObject<{
|
|
154
|
+
operationId: z.ZodString;
|
|
155
|
+
expectedGeneration: z.ZodString;
|
|
156
|
+
slotId: z.ZodString;
|
|
157
|
+
replacementSlotId: z.ZodNullable<z.ZodString>;
|
|
158
|
+
}, z.core.$strip>;
|
|
159
|
+
export type LogoutManagedAuthLoginSlotRequest = z.infer<typeof LogoutManagedAuthLoginSlotRequest>;
|
|
160
|
+
export declare const LogoutManagedAuthSessionSetRequest: z.ZodObject<{
|
|
161
|
+
operationId: z.ZodString;
|
|
162
|
+
expectedGeneration: z.ZodString;
|
|
163
|
+
}, z.core.$strip>;
|
|
164
|
+
export type LogoutManagedAuthSessionSetRequest = z.infer<typeof LogoutManagedAuthSessionSetRequest>;
|
|
165
|
+
export declare const ManagedAuthLogoutAllReceipt: z.ZodObject<{
|
|
166
|
+
generation: z.ZodString;
|
|
167
|
+
actorEpoch: z.ZodString;
|
|
168
|
+
state: z.ZodLiteral<"logged_out">;
|
|
169
|
+
}, z.core.$strip>;
|
|
170
|
+
export type ManagedAuthLogoutAllReceipt = z.infer<typeof ManagedAuthLogoutAllReceipt>;
|
|
171
|
+
export declare const ResolveManagedAuthDeepLinkRequest: z.ZodObject<{
|
|
172
|
+
path: z.ZodString;
|
|
173
|
+
}, z.core.$strip>;
|
|
174
|
+
export type ResolveManagedAuthDeepLinkRequest = z.infer<typeof ResolveManagedAuthDeepLinkRequest>;
|
|
175
|
+
export declare const ManagedAuthDeepLinkResolution: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
176
|
+
kind: z.ZodLiteral<"current">;
|
|
177
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
178
|
+
kind: z.ZodLiteral<"switch_required">;
|
|
179
|
+
slot: z.ZodObject<{
|
|
180
|
+
id: z.ZodString;
|
|
181
|
+
displayName: z.ZodString;
|
|
182
|
+
verifiedClaim: z.ZodObject<{
|
|
183
|
+
kind: z.ZodLiteral<"email">;
|
|
184
|
+
value: z.ZodString;
|
|
185
|
+
}, z.core.$strip>;
|
|
186
|
+
state: z.ZodEnum<{
|
|
187
|
+
active: "active";
|
|
188
|
+
reauth_required: "reauth_required";
|
|
189
|
+
}>;
|
|
190
|
+
}, z.core.$strip>;
|
|
191
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
192
|
+
kind: z.ZodLiteral<"unavailable">;
|
|
193
|
+
}, z.core.$strip>], "kind">;
|
|
194
|
+
export type ManagedAuthDeepLinkResolution = z.infer<typeof ManagedAuthDeepLinkResolution>;
|
|
195
|
+
export declare const ManagedAuthSessionSetErrorCode: z.ZodEnum<{
|
|
196
|
+
actor_change_required: "actor_change_required";
|
|
197
|
+
actor_mutation_in_flight: "actor_mutation_in_flight";
|
|
198
|
+
api_contract_changed: "api_contract_changed";
|
|
199
|
+
browser_session_set_required: "browser_session_set_required";
|
|
200
|
+
browser_session_set_unavailable: "browser_session_set_unavailable";
|
|
201
|
+
generation_conflict: "generation_conflict";
|
|
202
|
+
invalid_browser_session_set_request: "invalid_browser_session_set_request";
|
|
203
|
+
invalid_transaction: "invalid_transaction";
|
|
204
|
+
login_transaction_rate_limited: "login_transaction_rate_limited";
|
|
205
|
+
managed_authentication_required: "managed_authentication_required";
|
|
206
|
+
managed_authentication_unavailable: "managed_authentication_unavailable";
|
|
207
|
+
operation_outcome_unknown: "operation_outcome_unknown";
|
|
208
|
+
operation_reused: "operation_reused";
|
|
209
|
+
origin_rejected: "origin_rejected";
|
|
210
|
+
provider_route_blocked: "provider_route_blocked";
|
|
211
|
+
slot_already_exists: "slot_already_exists";
|
|
212
|
+
slot_limit_reached: "slot_limit_reached";
|
|
213
|
+
slot_unavailable: "slot_unavailable";
|
|
214
|
+
}>;
|
|
215
|
+
export type ManagedAuthSessionSetErrorCode = z.infer<typeof ManagedAuthSessionSetErrorCode>;
|