@constructive-io/sdk 0.25.0 → 0.25.2
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/README.md +4 -1
- package/admin/orm/index.d.ts +10 -46
- package/admin/orm/index.js +10 -46
- package/admin/orm/input-types.d.ts +953 -3908
- package/admin/orm/input-types.js +1 -13
- package/admin/orm/models/index.d.ts +5 -23
- package/admin/orm/models/index.js +11 -47
- package/agent/orm/index.d.ts +57 -0
- package/agent/orm/index.js +81 -0
- package/agent/orm/input-types.d.ts +2753 -0
- package/agent/orm/input-types.js +24 -0
- package/agent/orm/models/agent.d.ts +54 -0
- package/{public/orm/models/email.js → agent/orm/models/agent.js} +27 -27
- package/agent/orm/models/agentMessage.d.ts +54 -0
- package/{public/orm/models/auditLogAuth.js → agent/orm/models/agentMessage.js} +27 -27
- package/agent/orm/models/agentPersona.d.ts +54 -0
- package/agent/orm/models/agentPersona.js +104 -0
- package/agent/orm/models/agentPlan.d.ts +54 -0
- package/{public/orm/models/appInvite.js → agent/orm/models/agentPlan.js} +27 -27
- package/agent/orm/models/agentPrompt.d.ts +54 -0
- package/{public/orm/models/appLimitCap.js → agent/orm/models/agentPrompt.js} +27 -27
- package/agent/orm/models/agentResource.d.ts +54 -0
- package/{public/orm/models/appLimitEvent.js → agent/orm/models/agentResource.js} +27 -27
- package/agent/orm/models/agentResourceChunk.d.ts +54 -0
- package/{public/orm/models/appLimitCreditCode.js → agent/orm/models/agentResourceChunk.js} +27 -27
- package/agent/orm/models/agentTask.d.ts +54 -0
- package/agent/orm/models/agentTask.js +104 -0
- package/agent/orm/models/agentThread.d.ts +54 -0
- package/agent/orm/models/agentThread.js +104 -0
- package/agent/orm/models/index.d.ts +14 -0
- package/agent/orm/models/index.js +26 -0
- package/agent/orm/mutation/index.d.ts +26 -0
- package/agent/orm/mutation/index.js +21 -0
- package/api/index.js +21 -0
- package/api/orm/client.js +152 -0
- package/api/orm/index.d.ts +177 -0
- package/api/orm/index.js +157 -0
- package/api/orm/input-types.d.ts +11882 -0
- package/api/orm/input-types.js +91 -0
- package/api/orm/models/index.d.ts +50 -0
- package/api/orm/models/index.js +98 -0
- package/api/orm/mutation/index.d.ts +109 -0
- package/api/orm/mutation/index.js +117 -0
- package/api/orm/query/index.d.ts +18 -0
- package/api/orm/query/index.js +25 -0
- package/api/orm/query-builder.js +756 -0
- package/api/orm/realtime.js +104 -0
- package/api/orm/select-types.js +2 -0
- package/api/orm/types.js +23 -0
- package/esm/admin/orm/index.d.ts +10 -46
- package/esm/admin/orm/index.js +10 -46
- package/esm/admin/orm/input-types.d.ts +953 -3908
- package/esm/admin/orm/input-types.js +1 -13
- package/esm/admin/orm/models/index.d.ts +5 -23
- package/esm/admin/orm/models/index.js +5 -23
- package/esm/agent/index.js +5 -0
- package/esm/agent/orm/client.d.ts +97 -0
- package/esm/agent/orm/index.d.ts +57 -0
- package/esm/agent/orm/index.js +59 -0
- package/esm/agent/orm/input-types.d.ts +2753 -0
- package/esm/agent/orm/input-types.js +21 -0
- package/esm/agent/orm/models/agent.d.ts +54 -0
- package/esm/{public/orm/models/appGrant.js → agent/orm/models/agent.js} +25 -25
- package/esm/agent/orm/models/agentMessage.d.ts +54 -0
- package/esm/{public/orm/models/auditLogAuth.js → agent/orm/models/agentMessage.js} +25 -25
- package/esm/agent/orm/models/agentPersona.d.ts +54 -0
- package/esm/agent/orm/models/agentPersona.js +100 -0
- package/esm/agent/orm/models/agentPlan.d.ts +54 -0
- package/esm/{public/orm/models/appInvite.js → agent/orm/models/agentPlan.js} +25 -25
- package/esm/agent/orm/models/agentPrompt.d.ts +54 -0
- package/esm/{public/orm/models/appLimitCap.js → agent/orm/models/agentPrompt.js} +25 -25
- package/esm/agent/orm/models/agentResource.d.ts +54 -0
- package/esm/{public/orm/models/appLimitEvent.js → agent/orm/models/agentResource.js} +25 -25
- package/esm/agent/orm/models/agentResourceChunk.d.ts +54 -0
- package/esm/{public/orm/models/appLimitCreditCode.js → agent/orm/models/agentResourceChunk.js} +25 -25
- package/esm/agent/orm/models/agentTask.d.ts +54 -0
- package/esm/agent/orm/models/agentTask.js +100 -0
- package/esm/agent/orm/models/agentThread.d.ts +54 -0
- package/esm/agent/orm/models/agentThread.js +100 -0
- package/esm/agent/orm/models/index.d.ts +14 -0
- package/esm/agent/orm/models/index.js +14 -0
- package/esm/agent/orm/mutation/index.d.ts +26 -0
- package/esm/agent/orm/mutation/index.js +18 -0
- package/esm/agent/orm/query-builder.d.ts +110 -0
- package/esm/agent/orm/realtime.d.ts +142 -0
- package/esm/agent/orm/select-types.d.ts +125 -0
- package/esm/agent/orm/types.d.ts +6 -0
- package/esm/api/index.d.ts +5 -0
- package/esm/api/index.js +5 -0
- package/esm/api/orm/client.d.ts +97 -0
- package/esm/api/orm/client.js +145 -0
- package/esm/api/orm/index.d.ts +177 -0
- package/esm/api/orm/index.js +134 -0
- package/esm/api/orm/input-types.d.ts +11882 -0
- package/esm/api/orm/input-types.js +88 -0
- package/esm/api/orm/models/index.d.ts +50 -0
- package/esm/api/orm/models/index.js +50 -0
- package/esm/api/orm/mutation/index.d.ts +109 -0
- package/esm/api/orm/mutation/index.js +114 -0
- package/esm/api/orm/query/index.d.ts +18 -0
- package/esm/api/orm/query/index.js +22 -0
- package/esm/api/orm/query-builder.d.ts +110 -0
- package/esm/api/orm/query-builder.js +704 -0
- package/esm/api/orm/realtime.d.ts +142 -0
- package/esm/api/orm/realtime.js +100 -0
- package/esm/api/orm/select-types.d.ts +125 -0
- package/esm/api/orm/select-types.js +1 -0
- package/esm/api/orm/types.d.ts +6 -0
- package/esm/api/orm/types.js +7 -0
- package/esm/index.d.ts +4 -1
- package/esm/index.js +4 -1
- package/esm/modules/index.d.ts +5 -0
- package/esm/modules/index.js +5 -0
- package/esm/modules/orm/client.d.ts +97 -0
- package/esm/modules/orm/client.js +145 -0
- package/esm/modules/orm/index.d.ts +209 -0
- package/esm/modules/orm/index.js +156 -0
- package/esm/modules/orm/input-types.d.ts +11821 -0
- package/esm/modules/orm/input-types.js +13 -0
- package/esm/modules/orm/models/configSecretsModule.d.ts +54 -0
- package/esm/{public/orm/models/appLimitCapsDefault.js → modules/orm/models/configSecretsModule.js} +25 -25
- package/esm/modules/orm/models/i18NModule.d.ts +54 -0
- package/esm/modules/orm/models/i18NModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +61 -0
- package/esm/modules/orm/models/index.js +61 -0
- package/esm/modules/orm/models/userCredentialsModule.d.ts +54 -0
- package/esm/modules/orm/models/userCredentialsModule.js +100 -0
- package/esm/modules/orm/models/userSettingsModule.d.ts +54 -0
- package/esm/{public/orm/models/user.js → modules/orm/models/userSettingsModule.js} +25 -25
- package/esm/modules/orm/mutation/index.d.ts +134 -0
- package/esm/modules/orm/mutation/index.js +126 -0
- package/esm/modules/orm/query/index.d.ts +39 -0
- package/esm/modules/orm/query/index.js +54 -0
- package/esm/modules/orm/query-builder.d.ts +110 -0
- package/esm/modules/orm/query-builder.js +704 -0
- package/esm/modules/orm/realtime.d.ts +142 -0
- package/esm/modules/orm/realtime.js +100 -0
- package/esm/modules/orm/select-types.d.ts +125 -0
- package/esm/modules/orm/select-types.js +1 -0
- package/esm/modules/orm/types.d.ts +6 -0
- package/esm/modules/orm/types.js +7 -0
- package/esm/objects/orm/index.d.ts +2 -50
- package/esm/objects/orm/index.js +2 -5
- package/esm/objects/orm/input-types.d.ts +153 -260
- package/esm/objects/orm/models/index.d.ts +1 -1
- package/esm/objects/orm/models/index.js +1 -1
- package/esm/objects/orm/mutation/index.d.ts +1 -41
- package/esm/objects/orm/mutation/index.js +0 -60
- package/esm/usage/index.d.ts +5 -0
- package/esm/usage/index.js +5 -0
- package/esm/usage/orm/client.d.ts +97 -0
- package/esm/usage/orm/client.js +145 -0
- package/esm/usage/orm/index.d.ts +95 -0
- package/esm/usage/orm/index.js +77 -0
- package/esm/usage/orm/input-types.d.ts +3313 -0
- package/esm/usage/orm/input-types.js +14 -0
- package/esm/usage/orm/models/index.d.ts +23 -0
- package/esm/usage/orm/models/index.js +23 -0
- package/esm/usage/orm/mutation/index.d.ts +58 -0
- package/esm/usage/orm/mutation/index.js +66 -0
- package/esm/usage/orm/query-builder.d.ts +110 -0
- package/esm/usage/orm/query-builder.js +704 -0
- package/esm/usage/orm/realtime.d.ts +142 -0
- package/esm/usage/orm/realtime.js +100 -0
- package/esm/usage/orm/select-types.d.ts +125 -0
- package/esm/usage/orm/select-types.js +1 -0
- package/esm/usage/orm/types.d.ts +6 -0
- package/esm/usage/orm/types.js +7 -0
- package/index.d.ts +4 -1
- package/index.js +5 -2
- package/modules/index.d.ts +5 -0
- package/modules/index.js +21 -0
- package/modules/orm/client.d.ts +97 -0
- package/modules/orm/client.js +152 -0
- package/modules/orm/index.d.ts +209 -0
- package/modules/orm/index.js +179 -0
- package/modules/orm/input-types.d.ts +11821 -0
- package/modules/orm/input-types.js +16 -0
- package/modules/orm/models/configSecretsModule.d.ts +54 -0
- package/{public/orm/models/appLimitCapsDefault.js → modules/orm/models/configSecretsModule.js} +27 -27
- package/modules/orm/models/i18NModule.d.ts +54 -0
- package/modules/orm/models/i18NModule.js +104 -0
- package/modules/orm/models/index.d.ts +61 -0
- package/modules/orm/models/index.js +121 -0
- package/modules/orm/models/userCredentialsModule.d.ts +54 -0
- package/modules/orm/models/userCredentialsModule.js +104 -0
- package/modules/orm/models/userSettingsModule.d.ts +54 -0
- package/modules/orm/models/userSettingsModule.js +104 -0
- package/modules/orm/mutation/index.d.ts +134 -0
- package/modules/orm/mutation/index.js +129 -0
- package/modules/orm/query/index.d.ts +39 -0
- package/modules/orm/query/index.js +57 -0
- package/modules/orm/query-builder.d.ts +110 -0
- package/modules/orm/query-builder.js +756 -0
- package/modules/orm/realtime.d.ts +142 -0
- package/modules/orm/realtime.js +104 -0
- package/modules/orm/select-types.d.ts +125 -0
- package/modules/orm/select-types.js +2 -0
- package/modules/orm/types.d.ts +6 -0
- package/modules/orm/types.js +23 -0
- package/objects/orm/index.d.ts +2 -50
- package/objects/orm/index.js +3 -7
- package/objects/orm/input-types.d.ts +153 -260
- package/objects/orm/models/index.d.ts +1 -1
- package/objects/orm/models/index.js +3 -3
- package/objects/orm/mutation/index.d.ts +1 -41
- package/objects/orm/mutation/index.js +0 -60
- package/package.json +3 -3
- package/usage/index.d.ts +5 -0
- package/usage/index.js +21 -0
- package/usage/orm/client.d.ts +97 -0
- package/usage/orm/client.js +152 -0
- package/usage/orm/index.d.ts +95 -0
- package/usage/orm/index.js +99 -0
- package/usage/orm/input-types.d.ts +3313 -0
- package/usage/orm/input-types.js +17 -0
- package/usage/orm/models/index.d.ts +23 -0
- package/usage/orm/models/index.js +44 -0
- package/usage/orm/mutation/index.d.ts +58 -0
- package/usage/orm/mutation/index.js +69 -0
- package/usage/orm/query-builder.d.ts +110 -0
- package/usage/orm/query-builder.js +756 -0
- package/usage/orm/realtime.d.ts +142 -0
- package/usage/orm/realtime.js +104 -0
- package/usage/orm/select-types.d.ts +125 -0
- package/usage/orm/select-types.js +2 -0
- package/usage/orm/types.d.ts +6 -0
- package/usage/orm/types.js +23 -0
- package/esm/objects/orm/query/index.d.ts +0 -69
- package/esm/objects/orm/query/index.js +0 -110
- package/esm/public/orm/index.d.ts +0 -627
- package/esm/public/orm/index.js +0 -344
- package/esm/public/orm/input-types.d.ts +0 -38680
- package/esm/public/orm/input-types.js +0 -224
- package/esm/public/orm/models/appAdminGrant.d.ts +0 -54
- package/esm/public/orm/models/appAdminGrant.js +0 -100
- package/esm/public/orm/models/appClaimedInvite.d.ts +0 -54
- package/esm/public/orm/models/appClaimedInvite.js +0 -100
- package/esm/public/orm/models/appGrant.d.ts +0 -54
- package/esm/public/orm/models/appInvite.d.ts +0 -54
- package/esm/public/orm/models/appLimit.d.ts +0 -54
- package/esm/public/orm/models/appLimit.js +0 -100
- package/esm/public/orm/models/appLimitCap.d.ts +0 -54
- package/esm/public/orm/models/appLimitCapsDefault.d.ts +0 -54
- package/esm/public/orm/models/appLimitCredit.d.ts +0 -54
- package/esm/public/orm/models/appLimitCredit.js +0 -100
- package/esm/public/orm/models/appLimitCreditCode.d.ts +0 -54
- package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
- package/esm/public/orm/models/appLimitCreditCodeItem.js +0 -100
- package/esm/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
- package/esm/public/orm/models/appLimitCreditRedemption.js +0 -100
- package/esm/public/orm/models/appLimitDefault.d.ts +0 -54
- package/esm/public/orm/models/appLimitDefault.js +0 -100
- package/esm/public/orm/models/appLimitEvent.d.ts +0 -54
- package/esm/public/orm/models/appLimitWarning.d.ts +0 -54
- package/esm/public/orm/models/appLimitWarning.js +0 -100
- package/esm/public/orm/models/appMembership.d.ts +0 -54
- package/esm/public/orm/models/appMembership.js +0 -100
- package/esm/public/orm/models/appMembershipDefault.d.ts +0 -54
- package/esm/public/orm/models/appMembershipDefault.js +0 -100
- package/esm/public/orm/models/appOwnerGrant.d.ts +0 -54
- package/esm/public/orm/models/appOwnerGrant.js +0 -100
- package/esm/public/orm/models/appPermission.d.ts +0 -54
- package/esm/public/orm/models/appPermission.js +0 -100
- package/esm/public/orm/models/appPermissionDefault.d.ts +0 -54
- package/esm/public/orm/models/appPermissionDefault.js +0 -100
- package/esm/public/orm/models/auditLogAuth.d.ts +0 -54
- package/esm/public/orm/models/cryptoAddress.d.ts +0 -54
- package/esm/public/orm/models/cryptoAddress.js +0 -100
- package/esm/public/orm/models/email.d.ts +0 -54
- package/esm/public/orm/models/email.js +0 -100
- package/esm/public/orm/models/identityProvider.d.ts +0 -30
- package/esm/public/orm/models/identityProvider.js +0 -55
- package/esm/public/orm/models/index.d.ts +0 -155
- package/esm/public/orm/models/index.js +0 -155
- package/esm/public/orm/models/membershipType.d.ts +0 -54
- package/esm/public/orm/models/membershipType.js +0 -100
- package/esm/public/orm/models/orgAdminGrant.d.ts +0 -54
- package/esm/public/orm/models/orgAdminGrant.js +0 -100
- package/esm/public/orm/models/orgChartEdge.d.ts +0 -54
- package/esm/public/orm/models/orgChartEdge.js +0 -100
- package/esm/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
- package/esm/public/orm/models/orgChartEdgeGrant.js +0 -100
- package/esm/public/orm/models/orgClaimedInvite.d.ts +0 -54
- package/esm/public/orm/models/orgClaimedInvite.js +0 -100
- package/esm/public/orm/models/orgGetManagersRecord.d.ts +0 -30
- package/esm/public/orm/models/orgGetManagersRecord.js +0 -55
- package/esm/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
- package/esm/public/orm/models/orgGetSubordinatesRecord.js +0 -55
- package/esm/public/orm/models/orgGrant.d.ts +0 -54
- package/esm/public/orm/models/orgGrant.js +0 -100
- package/esm/public/orm/models/orgInvite.d.ts +0 -54
- package/esm/public/orm/models/orgInvite.js +0 -100
- package/esm/public/orm/models/orgLimit.d.ts +0 -54
- package/esm/public/orm/models/orgLimit.js +0 -100
- package/esm/public/orm/models/orgLimitAggregate.d.ts +0 -54
- package/esm/public/orm/models/orgLimitAggregate.js +0 -100
- package/esm/public/orm/models/orgLimitCap.d.ts +0 -54
- package/esm/public/orm/models/orgLimitCap.js +0 -100
- package/esm/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
- package/esm/public/orm/models/orgLimitCapsDefault.js +0 -100
- package/esm/public/orm/models/orgLimitCredit.d.ts +0 -54
- package/esm/public/orm/models/orgLimitCredit.js +0 -100
- package/esm/public/orm/models/orgLimitDefault.d.ts +0 -54
- package/esm/public/orm/models/orgLimitDefault.js +0 -100
- package/esm/public/orm/models/orgLimitEvent.d.ts +0 -54
- package/esm/public/orm/models/orgLimitEvent.js +0 -100
- package/esm/public/orm/models/orgLimitWarning.d.ts +0 -54
- package/esm/public/orm/models/orgLimitWarning.js +0 -100
- package/esm/public/orm/models/orgMember.d.ts +0 -54
- package/esm/public/orm/models/orgMember.js +0 -100
- package/esm/public/orm/models/orgMemberProfile.d.ts +0 -54
- package/esm/public/orm/models/orgMemberProfile.js +0 -100
- package/esm/public/orm/models/orgMembership.d.ts +0 -54
- package/esm/public/orm/models/orgMembership.js +0 -100
- package/esm/public/orm/models/orgMembershipDefault.d.ts +0 -54
- package/esm/public/orm/models/orgMembershipDefault.js +0 -100
- package/esm/public/orm/models/orgMembershipSetting.d.ts +0 -54
- package/esm/public/orm/models/orgMembershipSetting.js +0 -100
- package/esm/public/orm/models/orgOwnerGrant.d.ts +0 -54
- package/esm/public/orm/models/orgOwnerGrant.js +0 -100
- package/esm/public/orm/models/orgPermission.d.ts +0 -54
- package/esm/public/orm/models/orgPermission.js +0 -100
- package/esm/public/orm/models/orgPermissionDefault.d.ts +0 -54
- package/esm/public/orm/models/orgPermissionDefault.js +0 -100
- package/esm/public/orm/models/phoneNumber.d.ts +0 -54
- package/esm/public/orm/models/phoneNumber.js +0 -100
- package/esm/public/orm/models/roleType.d.ts +0 -54
- package/esm/public/orm/models/roleType.js +0 -100
- package/esm/public/orm/models/user.d.ts +0 -54
- package/esm/public/orm/models/userConnectedAccount.d.ts +0 -36
- package/esm/public/orm/models/userConnectedAccount.js +0 -76
- package/esm/public/orm/models/webauthnCredential.d.ts +0 -54
- package/esm/public/orm/models/webauthnCredential.js +0 -100
- package/esm/public/orm/mutation/index.d.ts +0 -401
- package/esm/public/orm/mutation/index.js +0 -498
- package/esm/public/orm/query/index.d.ts +0 -171
- package/esm/public/orm/query/index.js +0 -254
- package/objects/orm/query/index.d.ts +0 -69
- package/objects/orm/query/index.js +0 -113
- package/public/orm/index.d.ts +0 -627
- package/public/orm/index.js +0 -367
- package/public/orm/input-types.d.ts +0 -38680
- package/public/orm/input-types.js +0 -227
- package/public/orm/models/appAdminGrant.d.ts +0 -54
- package/public/orm/models/appAdminGrant.js +0 -104
- package/public/orm/models/appClaimedInvite.d.ts +0 -54
- package/public/orm/models/appClaimedInvite.js +0 -104
- package/public/orm/models/appGrant.d.ts +0 -54
- package/public/orm/models/appGrant.js +0 -104
- package/public/orm/models/appInvite.d.ts +0 -54
- package/public/orm/models/appLimit.d.ts +0 -54
- package/public/orm/models/appLimit.js +0 -104
- package/public/orm/models/appLimitCap.d.ts +0 -54
- package/public/orm/models/appLimitCapsDefault.d.ts +0 -54
- package/public/orm/models/appLimitCredit.d.ts +0 -54
- package/public/orm/models/appLimitCredit.js +0 -104
- package/public/orm/models/appLimitCreditCode.d.ts +0 -54
- package/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
- package/public/orm/models/appLimitCreditCodeItem.js +0 -104
- package/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
- package/public/orm/models/appLimitCreditRedemption.js +0 -104
- package/public/orm/models/appLimitDefault.d.ts +0 -54
- package/public/orm/models/appLimitDefault.js +0 -104
- package/public/orm/models/appLimitEvent.d.ts +0 -54
- package/public/orm/models/appLimitWarning.d.ts +0 -54
- package/public/orm/models/appLimitWarning.js +0 -104
- package/public/orm/models/appMembership.d.ts +0 -54
- package/public/orm/models/appMembership.js +0 -104
- package/public/orm/models/appMembershipDefault.d.ts +0 -54
- package/public/orm/models/appMembershipDefault.js +0 -104
- package/public/orm/models/appOwnerGrant.d.ts +0 -54
- package/public/orm/models/appOwnerGrant.js +0 -104
- package/public/orm/models/appPermission.d.ts +0 -54
- package/public/orm/models/appPermission.js +0 -104
- package/public/orm/models/appPermissionDefault.d.ts +0 -54
- package/public/orm/models/appPermissionDefault.js +0 -104
- package/public/orm/models/auditLogAuth.d.ts +0 -54
- package/public/orm/models/cryptoAddress.d.ts +0 -54
- package/public/orm/models/cryptoAddress.js +0 -104
- package/public/orm/models/email.d.ts +0 -54
- package/public/orm/models/identityProvider.d.ts +0 -30
- package/public/orm/models/identityProvider.js +0 -59
- package/public/orm/models/index.d.ts +0 -155
- package/public/orm/models/index.js +0 -310
- package/public/orm/models/membershipType.d.ts +0 -54
- package/public/orm/models/membershipType.js +0 -104
- package/public/orm/models/orgAdminGrant.d.ts +0 -54
- package/public/orm/models/orgAdminGrant.js +0 -104
- package/public/orm/models/orgChartEdge.d.ts +0 -54
- package/public/orm/models/orgChartEdge.js +0 -104
- package/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
- package/public/orm/models/orgChartEdgeGrant.js +0 -104
- package/public/orm/models/orgClaimedInvite.d.ts +0 -54
- package/public/orm/models/orgClaimedInvite.js +0 -104
- package/public/orm/models/orgGetManagersRecord.d.ts +0 -30
- package/public/orm/models/orgGetManagersRecord.js +0 -59
- package/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
- package/public/orm/models/orgGetSubordinatesRecord.js +0 -59
- package/public/orm/models/orgGrant.d.ts +0 -54
- package/public/orm/models/orgGrant.js +0 -104
- package/public/orm/models/orgInvite.d.ts +0 -54
- package/public/orm/models/orgInvite.js +0 -104
- package/public/orm/models/orgLimit.d.ts +0 -54
- package/public/orm/models/orgLimit.js +0 -104
- package/public/orm/models/orgLimitAggregate.d.ts +0 -54
- package/public/orm/models/orgLimitAggregate.js +0 -104
- package/public/orm/models/orgLimitCap.d.ts +0 -54
- package/public/orm/models/orgLimitCap.js +0 -104
- package/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
- package/public/orm/models/orgLimitCapsDefault.js +0 -104
- package/public/orm/models/orgLimitCredit.d.ts +0 -54
- package/public/orm/models/orgLimitCredit.js +0 -104
- package/public/orm/models/orgLimitDefault.d.ts +0 -54
- package/public/orm/models/orgLimitDefault.js +0 -104
- package/public/orm/models/orgLimitEvent.d.ts +0 -54
- package/public/orm/models/orgLimitEvent.js +0 -104
- package/public/orm/models/orgLimitWarning.d.ts +0 -54
- package/public/orm/models/orgLimitWarning.js +0 -104
- package/public/orm/models/orgMember.d.ts +0 -54
- package/public/orm/models/orgMember.js +0 -104
- package/public/orm/models/orgMemberProfile.d.ts +0 -54
- package/public/orm/models/orgMemberProfile.js +0 -104
- package/public/orm/models/orgMembership.d.ts +0 -54
- package/public/orm/models/orgMembership.js +0 -104
- package/public/orm/models/orgMembershipDefault.d.ts +0 -54
- package/public/orm/models/orgMembershipDefault.js +0 -104
- package/public/orm/models/orgMembershipSetting.d.ts +0 -54
- package/public/orm/models/orgMembershipSetting.js +0 -104
- package/public/orm/models/orgOwnerGrant.d.ts +0 -54
- package/public/orm/models/orgOwnerGrant.js +0 -104
- package/public/orm/models/orgPermission.d.ts +0 -54
- package/public/orm/models/orgPermission.js +0 -104
- package/public/orm/models/orgPermissionDefault.d.ts +0 -54
- package/public/orm/models/orgPermissionDefault.js +0 -104
- package/public/orm/models/phoneNumber.d.ts +0 -54
- package/public/orm/models/phoneNumber.js +0 -104
- package/public/orm/models/roleType.d.ts +0 -54
- package/public/orm/models/roleType.js +0 -104
- package/public/orm/models/user.d.ts +0 -54
- package/public/orm/models/user.js +0 -104
- package/public/orm/models/userConnectedAccount.d.ts +0 -36
- package/public/orm/models/userConnectedAccount.js +0 -80
- package/public/orm/models/webauthnCredential.d.ts +0 -54
- package/public/orm/models/webauthnCredential.js +0 -104
- package/public/orm/mutation/index.d.ts +0 -401
- package/public/orm/mutation/index.js +0 -501
- package/public/orm/query/index.d.ts +0 -171
- package/public/orm/query/index.js +0 -257
- /package/{esm/public → agent}/index.d.ts +0 -0
- /package/{public → agent}/index.js +0 -0
- /package/{esm/public → agent}/orm/client.d.ts +0 -0
- /package/{public → agent}/orm/client.js +0 -0
- /package/{esm/public → agent}/orm/query-builder.d.ts +0 -0
- /package/{public → agent}/orm/query-builder.js +0 -0
- /package/{esm/public → agent}/orm/realtime.d.ts +0 -0
- /package/{public → agent}/orm/realtime.js +0 -0
- /package/{esm/public → agent}/orm/select-types.d.ts +0 -0
- /package/{public → agent}/orm/select-types.js +0 -0
- /package/{esm/public → agent}/orm/types.d.ts +0 -0
- /package/{public → agent}/orm/types.js +0 -0
- /package/{public → api}/index.d.ts +0 -0
- /package/{public → api}/orm/client.d.ts +0 -0
- /package/{esm/public → api}/orm/models/api.d.ts +0 -0
- /package/{public → api}/orm/models/api.js +0 -0
- /package/{esm/public → api}/orm/models/apiModule.d.ts +0 -0
- /package/{public → api}/orm/models/apiModule.js +0 -0
- /package/{esm/public → api}/orm/models/apiSchema.d.ts +0 -0
- /package/{public → api}/orm/models/apiSchema.js +0 -0
- /package/{esm/public → api}/orm/models/apiSetting.d.ts +0 -0
- /package/{public → api}/orm/models/apiSetting.js +0 -0
- /package/{esm/public → api}/orm/models/app.d.ts +0 -0
- /package/{public → api}/orm/models/app.js +0 -0
- /package/{esm/public → api}/orm/models/astMigration.d.ts +0 -0
- /package/{public → api}/orm/models/astMigration.js +0 -0
- /package/{esm/public → api}/orm/models/checkConstraint.d.ts +0 -0
- /package/{public → api}/orm/models/checkConstraint.js +0 -0
- /package/{esm/public → api}/orm/models/corsSetting.d.ts +0 -0
- /package/{public → api}/orm/models/corsSetting.js +0 -0
- /package/{esm/public → api}/orm/models/database.d.ts +0 -0
- /package/{public → api}/orm/models/database.js +0 -0
- /package/{esm/public → api}/orm/models/databaseSetting.d.ts +0 -0
- /package/{public → api}/orm/models/databaseSetting.js +0 -0
- /package/{esm/public → api}/orm/models/databaseTransfer.d.ts +0 -0
- /package/{public → api}/orm/models/databaseTransfer.js +0 -0
- /package/{esm/public → api}/orm/models/defaultPrivilege.d.ts +0 -0
- /package/{public → api}/orm/models/defaultPrivilege.js +0 -0
- /package/{esm/public → api}/orm/models/domain.d.ts +0 -0
- /package/{public → api}/orm/models/domain.js +0 -0
- /package/{esm/public → api}/orm/models/embeddingChunk.d.ts +0 -0
- /package/{public → api}/orm/models/embeddingChunk.js +0 -0
- /package/{esm/public → api}/orm/models/enum.d.ts +0 -0
- /package/{public → api}/orm/models/enum.js +0 -0
- /package/{esm/public → api}/orm/models/field.d.ts +0 -0
- /package/{public → api}/orm/models/field.js +0 -0
- /package/{esm/public → api}/orm/models/foreignKeyConstraint.d.ts +0 -0
- /package/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
- /package/{esm/public → api}/orm/models/fullTextSearch.d.ts +0 -0
- /package/{public → api}/orm/models/fullTextSearch.js +0 -0
- /package/{esm/public → api}/orm/models/function.d.ts +0 -0
- /package/{public → api}/orm/models/function.js +0 -0
- /package/{esm/public → api}/orm/models/indexModel.d.ts +0 -0
- /package/{public → api}/orm/models/indexModel.js +0 -0
- /package/{esm/public → api}/orm/models/migrateFile.d.ts +0 -0
- /package/{public → api}/orm/models/migrateFile.js +0 -0
- /package/{esm/public → api}/orm/models/nodeTypeRegistry.d.ts +0 -0
- /package/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
- /package/{esm/public → api}/orm/models/partition.d.ts +0 -0
- /package/{public → api}/orm/models/partition.js +0 -0
- /package/{esm/public → api}/orm/models/policy.d.ts +0 -0
- /package/{public → api}/orm/models/policy.js +0 -0
- /package/{esm/public → api}/orm/models/primaryKeyConstraint.d.ts +0 -0
- /package/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
- /package/{esm/public → api}/orm/models/pubkeySetting.d.ts +0 -0
- /package/{public → api}/orm/models/pubkeySetting.js +0 -0
- /package/{esm/public → api}/orm/models/rlsSetting.d.ts +0 -0
- /package/{public → api}/orm/models/rlsSetting.js +0 -0
- /package/{esm/public → api}/orm/models/schema.d.ts +0 -0
- /package/{public → api}/orm/models/schema.js +0 -0
- /package/{esm/public → api}/orm/models/schemaGrant.d.ts +0 -0
- /package/{public → api}/orm/models/schemaGrant.js +0 -0
- /package/{esm/public → api}/orm/models/site.d.ts +0 -0
- /package/{public → api}/orm/models/site.js +0 -0
- /package/{esm/public → api}/orm/models/siteMetadatum.d.ts +0 -0
- /package/{public → api}/orm/models/siteMetadatum.js +0 -0
- /package/{esm/public → api}/orm/models/siteModule.d.ts +0 -0
- /package/{public → api}/orm/models/siteModule.js +0 -0
- /package/{esm/public → api}/orm/models/siteTheme.d.ts +0 -0
- /package/{public → api}/orm/models/siteTheme.js +0 -0
- /package/{esm/public → api}/orm/models/spatialRelation.d.ts +0 -0
- /package/{public → api}/orm/models/spatialRelation.js +0 -0
- /package/{esm/public → api}/orm/models/sqlAction.d.ts +0 -0
- /package/{public → api}/orm/models/sqlAction.js +0 -0
- /package/{esm/public → api}/orm/models/table.d.ts +0 -0
- /package/{public → api}/orm/models/table.js +0 -0
- /package/{esm/public → api}/orm/models/tableGrant.d.ts +0 -0
- /package/{public → api}/orm/models/tableGrant.js +0 -0
- /package/{esm/public → api}/orm/models/trigger.d.ts +0 -0
- /package/{public → api}/orm/models/trigger.js +0 -0
- /package/{esm/public → api}/orm/models/triggerFunction.d.ts +0 -0
- /package/{public → api}/orm/models/triggerFunction.js +0 -0
- /package/{esm/public → api}/orm/models/uniqueConstraint.d.ts +0 -0
- /package/{public → api}/orm/models/uniqueConstraint.js +0 -0
- /package/{esm/public → api}/orm/models/view.d.ts +0 -0
- /package/{public → api}/orm/models/view.js +0 -0
- /package/{esm/public → api}/orm/models/viewGrant.d.ts +0 -0
- /package/{public → api}/orm/models/viewGrant.js +0 -0
- /package/{esm/public → api}/orm/models/viewRule.d.ts +0 -0
- /package/{public → api}/orm/models/viewRule.js +0 -0
- /package/{esm/public → api}/orm/models/viewTable.d.ts +0 -0
- /package/{public → api}/orm/models/viewTable.js +0 -0
- /package/{esm/public → api}/orm/models/webauthnSetting.d.ts +0 -0
- /package/{public → api}/orm/models/webauthnSetting.js +0 -0
- /package/{public → api}/orm/query-builder.d.ts +0 -0
- /package/{public → api}/orm/realtime.d.ts +0 -0
- /package/{public → api}/orm/select-types.d.ts +0 -0
- /package/{public → api}/orm/types.d.ts +0 -0
- /package/esm/{public/index.js → agent/index.d.ts} +0 -0
- /package/esm/{public → agent}/orm/client.js +0 -0
- /package/esm/{public → agent}/orm/query-builder.js +0 -0
- /package/esm/{public → agent}/orm/realtime.js +0 -0
- /package/esm/{public → agent}/orm/select-types.js +0 -0
- /package/esm/{public → agent}/orm/types.js +0 -0
- /package/{public → esm/api}/orm/models/api.d.ts +0 -0
- /package/esm/{public → api}/orm/models/api.js +0 -0
- /package/{public → esm/api}/orm/models/apiModule.d.ts +0 -0
- /package/esm/{public → api}/orm/models/apiModule.js +0 -0
- /package/{public → esm/api}/orm/models/apiSchema.d.ts +0 -0
- /package/esm/{public → api}/orm/models/apiSchema.js +0 -0
- /package/{public → esm/api}/orm/models/apiSetting.d.ts +0 -0
- /package/esm/{public → api}/orm/models/apiSetting.js +0 -0
- /package/{public → esm/api}/orm/models/app.d.ts +0 -0
- /package/esm/{public → api}/orm/models/app.js +0 -0
- /package/{public → esm/api}/orm/models/astMigration.d.ts +0 -0
- /package/esm/{public → api}/orm/models/astMigration.js +0 -0
- /package/{public → esm/api}/orm/models/checkConstraint.d.ts +0 -0
- /package/esm/{public → api}/orm/models/checkConstraint.js +0 -0
- /package/{public → esm/api}/orm/models/corsSetting.d.ts +0 -0
- /package/esm/{public → api}/orm/models/corsSetting.js +0 -0
- /package/{public → esm/api}/orm/models/database.d.ts +0 -0
- /package/esm/{public → api}/orm/models/database.js +0 -0
- /package/{public → esm/api}/orm/models/databaseSetting.d.ts +0 -0
- /package/esm/{public → api}/orm/models/databaseSetting.js +0 -0
- /package/{public → esm/api}/orm/models/databaseTransfer.d.ts +0 -0
- /package/esm/{public → api}/orm/models/databaseTransfer.js +0 -0
- /package/{public → esm/api}/orm/models/defaultPrivilege.d.ts +0 -0
- /package/esm/{public → api}/orm/models/defaultPrivilege.js +0 -0
- /package/{public → esm/api}/orm/models/domain.d.ts +0 -0
- /package/esm/{public → api}/orm/models/domain.js +0 -0
- /package/{public → esm/api}/orm/models/embeddingChunk.d.ts +0 -0
- /package/esm/{public → api}/orm/models/embeddingChunk.js +0 -0
- /package/{public → esm/api}/orm/models/enum.d.ts +0 -0
- /package/esm/{public → api}/orm/models/enum.js +0 -0
- /package/{public → esm/api}/orm/models/field.d.ts +0 -0
- /package/esm/{public → api}/orm/models/field.js +0 -0
- /package/{public → esm/api}/orm/models/foreignKeyConstraint.d.ts +0 -0
- /package/esm/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
- /package/{public → esm/api}/orm/models/fullTextSearch.d.ts +0 -0
- /package/esm/{public → api}/orm/models/fullTextSearch.js +0 -0
- /package/{public → esm/api}/orm/models/function.d.ts +0 -0
- /package/esm/{public → api}/orm/models/function.js +0 -0
- /package/{public → esm/api}/orm/models/indexModel.d.ts +0 -0
- /package/esm/{public → api}/orm/models/indexModel.js +0 -0
- /package/{public → esm/api}/orm/models/migrateFile.d.ts +0 -0
- /package/esm/{public → api}/orm/models/migrateFile.js +0 -0
- /package/{public → esm/api}/orm/models/nodeTypeRegistry.d.ts +0 -0
- /package/esm/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
- /package/{public → esm/api}/orm/models/partition.d.ts +0 -0
- /package/esm/{public → api}/orm/models/partition.js +0 -0
- /package/{public → esm/api}/orm/models/policy.d.ts +0 -0
- /package/esm/{public → api}/orm/models/policy.js +0 -0
- /package/{public → esm/api}/orm/models/primaryKeyConstraint.d.ts +0 -0
- /package/esm/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
- /package/{public → esm/api}/orm/models/pubkeySetting.d.ts +0 -0
- /package/esm/{public → api}/orm/models/pubkeySetting.js +0 -0
- /package/{public → esm/api}/orm/models/rlsSetting.d.ts +0 -0
- /package/esm/{public → api}/orm/models/rlsSetting.js +0 -0
- /package/{public → esm/api}/orm/models/schema.d.ts +0 -0
- /package/esm/{public → api}/orm/models/schema.js +0 -0
- /package/{public → esm/api}/orm/models/schemaGrant.d.ts +0 -0
- /package/esm/{public → api}/orm/models/schemaGrant.js +0 -0
- /package/{public → esm/api}/orm/models/site.d.ts +0 -0
- /package/esm/{public → api}/orm/models/site.js +0 -0
- /package/{public → esm/api}/orm/models/siteMetadatum.d.ts +0 -0
- /package/esm/{public → api}/orm/models/siteMetadatum.js +0 -0
- /package/{public → esm/api}/orm/models/siteModule.d.ts +0 -0
- /package/esm/{public → api}/orm/models/siteModule.js +0 -0
- /package/{public → esm/api}/orm/models/siteTheme.d.ts +0 -0
- /package/esm/{public → api}/orm/models/siteTheme.js +0 -0
- /package/{public → esm/api}/orm/models/spatialRelation.d.ts +0 -0
- /package/esm/{public → api}/orm/models/spatialRelation.js +0 -0
- /package/{public → esm/api}/orm/models/sqlAction.d.ts +0 -0
- /package/esm/{public → api}/orm/models/sqlAction.js +0 -0
- /package/{public → esm/api}/orm/models/table.d.ts +0 -0
- /package/esm/{public → api}/orm/models/table.js +0 -0
- /package/{public → esm/api}/orm/models/tableGrant.d.ts +0 -0
- /package/esm/{public → api}/orm/models/tableGrant.js +0 -0
- /package/{public → esm/api}/orm/models/trigger.d.ts +0 -0
- /package/esm/{public → api}/orm/models/trigger.js +0 -0
- /package/{public → esm/api}/orm/models/triggerFunction.d.ts +0 -0
- /package/esm/{public → api}/orm/models/triggerFunction.js +0 -0
- /package/{public → esm/api}/orm/models/uniqueConstraint.d.ts +0 -0
- /package/esm/{public → api}/orm/models/uniqueConstraint.js +0 -0
- /package/{public → esm/api}/orm/models/view.d.ts +0 -0
- /package/esm/{public → api}/orm/models/view.js +0 -0
- /package/{public → esm/api}/orm/models/viewGrant.d.ts +0 -0
- /package/esm/{public → api}/orm/models/viewGrant.js +0 -0
- /package/{public → esm/api}/orm/models/viewRule.d.ts +0 -0
- /package/esm/{public → api}/orm/models/viewRule.js +0 -0
- /package/{public → esm/api}/orm/models/viewTable.d.ts +0 -0
- /package/esm/{public → api}/orm/models/viewTable.js +0 -0
- /package/{public → esm/api}/orm/models/webauthnSetting.d.ts +0 -0
- /package/esm/{public → api}/orm/models/webauthnSetting.js +0 -0
- /package/esm/{public → modules}/orm/models/agentModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/agentModule.js +0 -0
- /package/esm/{public → modules}/orm/models/billingModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/billingModule.js +0 -0
- /package/esm/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/billingProviderModule.js +0 -0
- /package/esm/{public → modules}/orm/models/blueprint.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/blueprint.js +0 -0
- /package/esm/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/blueprintConstruction.js +0 -0
- /package/esm/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/blueprintTemplate.js +0 -0
- /package/esm/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/computeLogModule.js +0 -0
- /package/esm/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
- /package/esm/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
- /package/esm/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
- /package/esm/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
- /package/esm/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
- /package/esm/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/dbUsageModule.js +0 -0
- /package/esm/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/defaultIdsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/denormalizedTableField.js +0 -0
- /package/esm/{public → modules}/orm/models/devicesModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/devicesModule.js +0 -0
- /package/esm/{public → modules}/orm/models/emailsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/emailsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/entityTypeProvision.js +0 -0
- /package/esm/{public → modules}/orm/models/eventsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/eventsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/functionModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/functionModule.js +0 -0
- /package/esm/{public → modules}/orm/models/graphModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/graphModule.js +0 -0
- /package/esm/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/hierarchyModule.js +0 -0
- /package/esm/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/identityProvidersModule.js +0 -0
- /package/esm/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/inferenceLogModule.js +0 -0
- /package/esm/{public → modules}/orm/models/invitesModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/invitesModule.js +0 -0
- /package/esm/{public → modules}/orm/models/limitsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/limitsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/membershipTypesModule.js +0 -0
- /package/esm/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/membershipsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/merkleStoreModule.js +0 -0
- /package/esm/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/namespaceModule.js +0 -0
- /package/esm/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/notificationsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/permissionsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
- /package/esm/{public → modules}/orm/models/plansModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/plansModule.js +0 -0
- /package/esm/{public → modules}/orm/models/profilesModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/profilesModule.js +0 -0
- /package/esm/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
- /package/esm/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/rateLimitsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/realtimeModule.js +0 -0
- /package/esm/{public → modules}/orm/models/relationProvision.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/relationProvision.js +0 -0
- /package/esm/{public → modules}/orm/models/rlsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/rlsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/secureTableProvision.js +0 -0
- /package/esm/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/sessionsModule.js +0 -0
- /package/esm/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/storageLogModule.js +0 -0
- /package/esm/{public → modules}/orm/models/storageModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/storageModule.js +0 -0
- /package/esm/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/transferLogModule.js +0 -0
- /package/esm/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/userAuthModule.js +0 -0
- /package/esm/{public → modules}/orm/models/userStateModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/userStateModule.js +0 -0
- /package/esm/{public → modules}/orm/models/usersModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/usersModule.js +0 -0
- /package/esm/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
- /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
- /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimit.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimit.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitCap.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitCap.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitCredit.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitCredit.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitCreditCode.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitDefault.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitDefault.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitEvent.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitEvent.js +0 -0
- /package/{admin → esm/usage}/orm/models/appLimitWarning.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/appLimitWarning.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimit.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimit.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitAggregate.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitCap.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitCap.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitCredit.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitDefault.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitEvent.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
- /package/{admin → esm/usage}/orm/models/orgLimitWarning.d.ts +0 -0
- /package/esm/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
- /package/{public → modules}/orm/models/agentModule.d.ts +0 -0
- /package/{public → modules}/orm/models/agentModule.js +0 -0
- /package/{public → modules}/orm/models/billingModule.d.ts +0 -0
- /package/{public → modules}/orm/models/billingModule.js +0 -0
- /package/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
- /package/{public → modules}/orm/models/billingProviderModule.js +0 -0
- /package/{public → modules}/orm/models/blueprint.d.ts +0 -0
- /package/{public → modules}/orm/models/blueprint.js +0 -0
- /package/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
- /package/{public → modules}/orm/models/blueprintConstruction.js +0 -0
- /package/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
- /package/{public → modules}/orm/models/blueprintTemplate.js +0 -0
- /package/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
- /package/{public → modules}/orm/models/computeLogModule.js +0 -0
- /package/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
- /package/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
- /package/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
- /package/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
- /package/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
- /package/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
- /package/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
- /package/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
- /package/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
- /package/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
- /package/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
- /package/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
- /package/{public → modules}/orm/models/dbUsageModule.js +0 -0
- /package/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/defaultIdsModule.js +0 -0
- /package/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
- /package/{public → modules}/orm/models/denormalizedTableField.js +0 -0
- /package/{public → modules}/orm/models/devicesModule.d.ts +0 -0
- /package/{public → modules}/orm/models/devicesModule.js +0 -0
- /package/{public → modules}/orm/models/emailsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/emailsModule.js +0 -0
- /package/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
- /package/{public → modules}/orm/models/entityTypeProvision.js +0 -0
- /package/{public → modules}/orm/models/eventsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/eventsModule.js +0 -0
- /package/{public → modules}/orm/models/functionModule.d.ts +0 -0
- /package/{public → modules}/orm/models/functionModule.js +0 -0
- /package/{public → modules}/orm/models/graphModule.d.ts +0 -0
- /package/{public → modules}/orm/models/graphModule.js +0 -0
- /package/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
- /package/{public → modules}/orm/models/hierarchyModule.js +0 -0
- /package/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
- /package/{public → modules}/orm/models/identityProvidersModule.js +0 -0
- /package/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
- /package/{public → modules}/orm/models/inferenceLogModule.js +0 -0
- /package/{public → modules}/orm/models/invitesModule.d.ts +0 -0
- /package/{public → modules}/orm/models/invitesModule.js +0 -0
- /package/{public → modules}/orm/models/limitsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/limitsModule.js +0 -0
- /package/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
- /package/{public → modules}/orm/models/membershipTypesModule.js +0 -0
- /package/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/membershipsModule.js +0 -0
- /package/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
- /package/{public → modules}/orm/models/merkleStoreModule.js +0 -0
- /package/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
- /package/{public → modules}/orm/models/namespaceModule.js +0 -0
- /package/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/notificationsModule.js +0 -0
- /package/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/permissionsModule.js +0 -0
- /package/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
- /package/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
- /package/{public → modules}/orm/models/plansModule.d.ts +0 -0
- /package/{public → modules}/orm/models/plansModule.js +0 -0
- /package/{public → modules}/orm/models/profilesModule.d.ts +0 -0
- /package/{public → modules}/orm/models/profilesModule.js +0 -0
- /package/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
- /package/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
- /package/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/rateLimitsModule.js +0 -0
- /package/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
- /package/{public → modules}/orm/models/realtimeModule.js +0 -0
- /package/{public → modules}/orm/models/relationProvision.d.ts +0 -0
- /package/{public → modules}/orm/models/relationProvision.js +0 -0
- /package/{public → modules}/orm/models/rlsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/rlsModule.js +0 -0
- /package/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
- /package/{public → modules}/orm/models/secureTableProvision.js +0 -0
- /package/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
- /package/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/sessionsModule.js +0 -0
- /package/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
- /package/{public → modules}/orm/models/storageLogModule.js +0 -0
- /package/{public → modules}/orm/models/storageModule.d.ts +0 -0
- /package/{public → modules}/orm/models/storageModule.js +0 -0
- /package/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
- /package/{public → modules}/orm/models/transferLogModule.js +0 -0
- /package/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
- /package/{public → modules}/orm/models/userAuthModule.js +0 -0
- /package/{public → modules}/orm/models/userStateModule.d.ts +0 -0
- /package/{public → modules}/orm/models/userStateModule.js +0 -0
- /package/{public → modules}/orm/models/usersModule.d.ts +0 -0
- /package/{public → modules}/orm/models/usersModule.js +0 -0
- /package/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
- /package/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
- /package/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
- /package/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimit.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimit.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitCap.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitCap.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitCredit.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitCredit.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitCreditCode.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitDefault.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitDefault.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitEvent.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitEvent.js +0 -0
- /package/{esm/admin → usage}/orm/models/appLimitWarning.d.ts +0 -0
- /package/{admin → usage}/orm/models/appLimitWarning.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimit.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimit.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitAggregate.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitCap.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitCap.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitCredit.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitDefault.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitEvent.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
- /package/{esm/admin → usage}/orm/models/orgLimitWarning.d.ts +0 -0
- /package/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
|
@@ -233,55 +233,66 @@ export interface GetAllRecord {
|
|
|
233
233
|
path?: string[] | null;
|
|
234
234
|
data?: Record<string, unknown> | null;
|
|
235
235
|
}
|
|
236
|
-
|
|
237
|
-
hashUuid?: string | null;
|
|
238
|
-
id: string;
|
|
239
|
-
databaseId?: string | null;
|
|
240
|
-
kids?: string[] | null;
|
|
241
|
-
ktree?: string[] | null;
|
|
242
|
-
data?: Record<string, unknown> | null;
|
|
243
|
-
frzn?: boolean | null;
|
|
244
|
-
createdAt?: string | null;
|
|
245
|
-
}
|
|
246
|
-
/** A ref is a data structure for pointing to a commit. */
|
|
236
|
+
/** Branch heads — mutable pointers into the commit chain */
|
|
247
237
|
export interface Ref {
|
|
248
|
-
/**
|
|
238
|
+
/** Unique ref identifier */
|
|
249
239
|
id: string;
|
|
250
|
-
/**
|
|
240
|
+
/** Ref name (e.g. HEAD, main) */
|
|
251
241
|
name?: string | null;
|
|
242
|
+
/** Database scope for multi-tenant isolation */
|
|
252
243
|
databaseId?: string | null;
|
|
244
|
+
/** Store this ref belongs to */
|
|
253
245
|
storeId?: string | null;
|
|
246
|
+
/** Commit this ref points to */
|
|
254
247
|
commitId?: string | null;
|
|
255
248
|
}
|
|
256
|
-
/**
|
|
249
|
+
/** Named stores — one per version-controlled tree (e.g. one graph, one definition set) */
|
|
257
250
|
export interface Store {
|
|
258
|
-
/**
|
|
251
|
+
/** Unique store identifier */
|
|
259
252
|
id: string;
|
|
260
|
-
/**
|
|
253
|
+
/** Human-readable store name */
|
|
261
254
|
name?: string | null;
|
|
262
|
-
/**
|
|
255
|
+
/** Database scope for multi-tenant isolation */
|
|
263
256
|
databaseId?: string | null;
|
|
264
|
-
/**
|
|
257
|
+
/** Current root object hash of this store */
|
|
265
258
|
hash?: string | null;
|
|
259
|
+
/** Timestamp of store creation */
|
|
260
|
+
createdAt?: string | null;
|
|
261
|
+
}
|
|
262
|
+
/** Content-addressed Merkle tree objects keyed by UUID v5 hash of data + children */
|
|
263
|
+
export interface Object {
|
|
264
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
265
|
+
id: string;
|
|
266
|
+
/** Database scope for multi-tenant isolation */
|
|
267
|
+
databaseId?: string | null;
|
|
268
|
+
/** Ordered array of child object IDs */
|
|
269
|
+
kids?: string[] | null;
|
|
270
|
+
/** Ordered array of child path names (parallel to kids) */
|
|
271
|
+
ktree?: string[] | null;
|
|
272
|
+
/** Payload data for this object node */
|
|
273
|
+
data?: Record<string, unknown> | null;
|
|
274
|
+
/** Timestamp of object creation */
|
|
266
275
|
createdAt?: string | null;
|
|
267
276
|
}
|
|
268
|
-
/**
|
|
277
|
+
/** Commit history — each commit snapshots a tree root for a store */
|
|
269
278
|
export interface Commit {
|
|
270
|
-
/**
|
|
279
|
+
/** Unique commit identifier */
|
|
271
280
|
id: string;
|
|
272
|
-
/**
|
|
281
|
+
/** Optional commit message */
|
|
273
282
|
message?: string | null;
|
|
274
|
-
/**
|
|
283
|
+
/** Database scope for multi-tenant isolation */
|
|
275
284
|
databaseId?: string | null;
|
|
285
|
+
/** Store this commit belongs to */
|
|
276
286
|
storeId?: string | null;
|
|
277
|
-
/** Parent commits */
|
|
287
|
+
/** Parent commit IDs (supports merge commits) */
|
|
278
288
|
parentIds?: string[] | null;
|
|
279
|
-
/**
|
|
289
|
+
/** User who authored the changes */
|
|
280
290
|
authorId?: string | null;
|
|
281
|
-
/**
|
|
291
|
+
/** User who committed (may differ from author) */
|
|
282
292
|
committerId?: string | null;
|
|
283
|
-
/**
|
|
293
|
+
/** Root object ID of the tree snapshot at this commit */
|
|
284
294
|
treeId?: string | null;
|
|
295
|
+
/** Commit timestamp */
|
|
285
296
|
date?: string | null;
|
|
286
297
|
}
|
|
287
298
|
export interface ConnectionResult<T> {
|
|
@@ -297,33 +308,23 @@ export interface PageInfo {
|
|
|
297
308
|
}
|
|
298
309
|
export interface GetAllRecordRelations {
|
|
299
310
|
}
|
|
300
|
-
export interface ObjectRelations {
|
|
301
|
-
}
|
|
302
311
|
export interface RefRelations {
|
|
303
312
|
}
|
|
304
313
|
export interface StoreRelations {
|
|
305
314
|
}
|
|
315
|
+
export interface ObjectRelations {
|
|
316
|
+
}
|
|
306
317
|
export interface CommitRelations {
|
|
307
318
|
}
|
|
308
319
|
export type GetAllRecordWithRelations = GetAllRecord & GetAllRecordRelations;
|
|
309
|
-
export type ObjectWithRelations = Object & ObjectRelations;
|
|
310
320
|
export type RefWithRelations = Ref & RefRelations;
|
|
311
321
|
export type StoreWithRelations = Store & StoreRelations;
|
|
322
|
+
export type ObjectWithRelations = Object & ObjectRelations;
|
|
312
323
|
export type CommitWithRelations = Commit & CommitRelations;
|
|
313
324
|
export type GetAllRecordSelect = {
|
|
314
325
|
path?: boolean;
|
|
315
326
|
data?: boolean;
|
|
316
327
|
};
|
|
317
|
-
export type ObjectSelect = {
|
|
318
|
-
hashUuid?: boolean;
|
|
319
|
-
id?: boolean;
|
|
320
|
-
databaseId?: boolean;
|
|
321
|
-
kids?: boolean;
|
|
322
|
-
ktree?: boolean;
|
|
323
|
-
data?: boolean;
|
|
324
|
-
frzn?: boolean;
|
|
325
|
-
createdAt?: boolean;
|
|
326
|
-
};
|
|
327
328
|
export type RefSelect = {
|
|
328
329
|
id?: boolean;
|
|
329
330
|
name?: boolean;
|
|
@@ -338,6 +339,14 @@ export type StoreSelect = {
|
|
|
338
339
|
hash?: boolean;
|
|
339
340
|
createdAt?: boolean;
|
|
340
341
|
};
|
|
342
|
+
export type ObjectSelect = {
|
|
343
|
+
id?: boolean;
|
|
344
|
+
databaseId?: boolean;
|
|
345
|
+
kids?: boolean;
|
|
346
|
+
ktree?: boolean;
|
|
347
|
+
data?: boolean;
|
|
348
|
+
createdAt?: boolean;
|
|
349
|
+
};
|
|
341
350
|
export type CommitSelect = {
|
|
342
351
|
id?: boolean;
|
|
343
352
|
message?: boolean;
|
|
@@ -356,28 +365,6 @@ export interface GetAllRecordFilter {
|
|
|
356
365
|
or?: GetAllRecordFilter[];
|
|
357
366
|
not?: GetAllRecordFilter;
|
|
358
367
|
}
|
|
359
|
-
export interface ObjectFilter {
|
|
360
|
-
/** Filter by the object’s `id` field. */
|
|
361
|
-
id?: UUIDFilter;
|
|
362
|
-
/** Filter by the object’s `databaseId` field. */
|
|
363
|
-
databaseId?: UUIDFilter;
|
|
364
|
-
/** Filter by the object’s `kids` field. */
|
|
365
|
-
kids?: UUIDListFilter;
|
|
366
|
-
/** Filter by the object’s `ktree` field. */
|
|
367
|
-
ktree?: StringListFilter;
|
|
368
|
-
/** Filter by the object’s `data` field. */
|
|
369
|
-
data?: JSONFilter;
|
|
370
|
-
/** Filter by the object’s `frzn` field. */
|
|
371
|
-
frzn?: BooleanFilter;
|
|
372
|
-
/** Filter by the object’s `createdAt` field. */
|
|
373
|
-
createdAt?: DatetimeFilter;
|
|
374
|
-
/** Checks for all expressions in this list. */
|
|
375
|
-
and?: ObjectFilter[];
|
|
376
|
-
/** Checks for any expressions in this list. */
|
|
377
|
-
or?: ObjectFilter[];
|
|
378
|
-
/** Negates the expression. */
|
|
379
|
-
not?: ObjectFilter;
|
|
380
|
-
}
|
|
381
368
|
export interface RefFilter {
|
|
382
369
|
/** Filter by the object’s `id` field. */
|
|
383
370
|
id?: UUIDFilter;
|
|
@@ -414,6 +401,26 @@ export interface StoreFilter {
|
|
|
414
401
|
/** Negates the expression. */
|
|
415
402
|
not?: StoreFilter;
|
|
416
403
|
}
|
|
404
|
+
export interface ObjectFilter {
|
|
405
|
+
/** Filter by the object’s `id` field. */
|
|
406
|
+
id?: UUIDFilter;
|
|
407
|
+
/** Filter by the object’s `databaseId` field. */
|
|
408
|
+
databaseId?: UUIDFilter;
|
|
409
|
+
/** Filter by the object’s `kids` field. */
|
|
410
|
+
kids?: UUIDListFilter;
|
|
411
|
+
/** Filter by the object’s `ktree` field. */
|
|
412
|
+
ktree?: StringListFilter;
|
|
413
|
+
/** Filter by the object’s `data` field. */
|
|
414
|
+
data?: JSONFilter;
|
|
415
|
+
/** Filter by the object’s `createdAt` field. */
|
|
416
|
+
createdAt?: DatetimeFilter;
|
|
417
|
+
/** Checks for all expressions in this list. */
|
|
418
|
+
and?: ObjectFilter[];
|
|
419
|
+
/** Checks for any expressions in this list. */
|
|
420
|
+
or?: ObjectFilter[];
|
|
421
|
+
/** Negates the expression. */
|
|
422
|
+
not?: ObjectFilter;
|
|
423
|
+
}
|
|
417
424
|
export interface CommitFilter {
|
|
418
425
|
/** Filter by the object’s `id` field. */
|
|
419
426
|
id?: UUIDFilter;
|
|
@@ -441,9 +448,9 @@ export interface CommitFilter {
|
|
|
441
448
|
not?: CommitFilter;
|
|
442
449
|
}
|
|
443
450
|
export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'DATA_ASC' | 'DATA_DESC';
|
|
444
|
-
export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FRZN_ASC' | 'FRZN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
445
451
|
export type RefOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC';
|
|
446
452
|
export type StoreOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
453
|
+
export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
447
454
|
export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC';
|
|
448
455
|
export interface CreateGetAllRecordInput {
|
|
449
456
|
clientMutationId?: string;
|
|
@@ -465,32 +472,6 @@ export interface DeleteGetAllRecordInput {
|
|
|
465
472
|
clientMutationId?: string;
|
|
466
473
|
id: string;
|
|
467
474
|
}
|
|
468
|
-
export interface CreateObjectInput {
|
|
469
|
-
clientMutationId?: string;
|
|
470
|
-
object: {
|
|
471
|
-
databaseId: string;
|
|
472
|
-
kids?: string[];
|
|
473
|
-
ktree?: string[];
|
|
474
|
-
data?: Record<string, unknown>;
|
|
475
|
-
frzn?: boolean;
|
|
476
|
-
};
|
|
477
|
-
}
|
|
478
|
-
export interface ObjectPatch {
|
|
479
|
-
databaseId?: string | null;
|
|
480
|
-
kids?: string[] | null;
|
|
481
|
-
ktree?: string[] | null;
|
|
482
|
-
data?: Record<string, unknown> | null;
|
|
483
|
-
frzn?: boolean | null;
|
|
484
|
-
}
|
|
485
|
-
export interface UpdateObjectInput {
|
|
486
|
-
clientMutationId?: string;
|
|
487
|
-
id: string;
|
|
488
|
-
objectPatch: ObjectPatch;
|
|
489
|
-
}
|
|
490
|
-
export interface DeleteObjectInput {
|
|
491
|
-
clientMutationId?: string;
|
|
492
|
-
id: string;
|
|
493
|
-
}
|
|
494
475
|
export interface CreateRefInput {
|
|
495
476
|
clientMutationId?: string;
|
|
496
477
|
ref: {
|
|
@@ -537,6 +518,30 @@ export interface DeleteStoreInput {
|
|
|
537
518
|
clientMutationId?: string;
|
|
538
519
|
id: string;
|
|
539
520
|
}
|
|
521
|
+
export interface CreateObjectInput {
|
|
522
|
+
clientMutationId?: string;
|
|
523
|
+
object: {
|
|
524
|
+
databaseId: string;
|
|
525
|
+
kids?: string[];
|
|
526
|
+
ktree?: string[];
|
|
527
|
+
data?: Record<string, unknown>;
|
|
528
|
+
};
|
|
529
|
+
}
|
|
530
|
+
export interface ObjectPatch {
|
|
531
|
+
databaseId?: string | null;
|
|
532
|
+
kids?: string[] | null;
|
|
533
|
+
ktree?: string[] | null;
|
|
534
|
+
data?: Record<string, unknown> | null;
|
|
535
|
+
}
|
|
536
|
+
export interface UpdateObjectInput {
|
|
537
|
+
clientMutationId?: string;
|
|
538
|
+
id: string;
|
|
539
|
+
objectPatch: ObjectPatch;
|
|
540
|
+
}
|
|
541
|
+
export interface DeleteObjectInput {
|
|
542
|
+
clientMutationId?: string;
|
|
543
|
+
id: string;
|
|
544
|
+
}
|
|
540
545
|
export interface CreateCommitInput {
|
|
541
546
|
clientMutationId?: string;
|
|
542
547
|
commit: {
|
|
@@ -570,65 +575,27 @@ export interface DeleteCommitInput {
|
|
|
570
575
|
id: string;
|
|
571
576
|
}
|
|
572
577
|
export declare const connectionFieldsMap: Record<string, Record<string, string>>;
|
|
573
|
-
export interface FreezeObjectsInput {
|
|
574
|
-
clientMutationId?: string;
|
|
575
|
-
databaseId?: string;
|
|
576
|
-
id?: string;
|
|
577
|
-
}
|
|
578
578
|
export interface InitEmptyRepoInput {
|
|
579
579
|
clientMutationId?: string;
|
|
580
|
-
|
|
580
|
+
sId?: string;
|
|
581
581
|
storeId?: string;
|
|
582
582
|
}
|
|
583
|
-
export interface RemoveNodeAtPathInput {
|
|
584
|
-
clientMutationId?: string;
|
|
585
|
-
dbId?: string;
|
|
586
|
-
root?: string;
|
|
587
|
-
path?: string[];
|
|
588
|
-
}
|
|
589
583
|
export interface SetDataAtPathInput {
|
|
590
584
|
clientMutationId?: string;
|
|
591
|
-
|
|
585
|
+
sId?: string;
|
|
592
586
|
root?: string;
|
|
593
587
|
path?: string[];
|
|
594
588
|
data?: Record<string, unknown>;
|
|
595
589
|
}
|
|
596
|
-
export interface SetPropsAndCommitInput {
|
|
597
|
-
clientMutationId?: string;
|
|
598
|
-
dbId?: string;
|
|
599
|
-
storeId?: string;
|
|
600
|
-
refname?: string;
|
|
601
|
-
path?: string[];
|
|
602
|
-
data?: Record<string, unknown>;
|
|
603
|
-
}
|
|
604
590
|
export interface InsertNodeAtPathInput {
|
|
605
591
|
clientMutationId?: string;
|
|
606
|
-
|
|
607
|
-
root?: string;
|
|
608
|
-
path?: string[];
|
|
609
|
-
data?: Record<string, unknown>;
|
|
610
|
-
kids?: string[];
|
|
611
|
-
ktree?: string[];
|
|
612
|
-
}
|
|
613
|
-
export interface UpdateNodeAtPathInput {
|
|
614
|
-
clientMutationId?: string;
|
|
615
|
-
dbId?: string;
|
|
592
|
+
sId?: string;
|
|
616
593
|
root?: string;
|
|
617
594
|
path?: string[];
|
|
618
595
|
data?: Record<string, unknown>;
|
|
619
596
|
kids?: string[];
|
|
620
597
|
ktree?: string[];
|
|
621
598
|
}
|
|
622
|
-
export interface SetAndCommitInput {
|
|
623
|
-
clientMutationId?: string;
|
|
624
|
-
dbId?: string;
|
|
625
|
-
storeId?: string;
|
|
626
|
-
refname?: string;
|
|
627
|
-
path?: string[];
|
|
628
|
-
data?: Record<string, unknown>;
|
|
629
|
-
kids?: string[];
|
|
630
|
-
ktree?: string[];
|
|
631
|
-
}
|
|
632
599
|
export interface ProvisionBucketInput {
|
|
633
600
|
/** The logical bucket key (e.g., "public", "private") */
|
|
634
601
|
bucketKey: string;
|
|
@@ -638,45 +605,12 @@ export interface ProvisionBucketInput {
|
|
|
638
605
|
*/
|
|
639
606
|
ownerId?: string;
|
|
640
607
|
}
|
|
641
|
-
/** A connection to a list of `Object` values. */
|
|
642
|
-
export interface ObjectConnection {
|
|
643
|
-
nodes: Object[];
|
|
644
|
-
edges: ObjectEdge[];
|
|
645
|
-
pageInfo: PageInfo;
|
|
646
|
-
totalCount: number;
|
|
647
|
-
}
|
|
648
|
-
export type ObjectConnectionSelect = {
|
|
649
|
-
nodes?: {
|
|
650
|
-
select: ObjectSelect;
|
|
651
|
-
};
|
|
652
|
-
edges?: {
|
|
653
|
-
select: ObjectEdgeSelect;
|
|
654
|
-
};
|
|
655
|
-
pageInfo?: {
|
|
656
|
-
select: PageInfoSelect;
|
|
657
|
-
};
|
|
658
|
-
totalCount?: boolean;
|
|
659
|
-
};
|
|
660
|
-
export interface FreezeObjectsPayload {
|
|
661
|
-
clientMutationId?: string | null;
|
|
662
|
-
}
|
|
663
|
-
export type FreezeObjectsPayloadSelect = {
|
|
664
|
-
clientMutationId?: boolean;
|
|
665
|
-
};
|
|
666
608
|
export interface InitEmptyRepoPayload {
|
|
667
609
|
clientMutationId?: string | null;
|
|
668
610
|
}
|
|
669
611
|
export type InitEmptyRepoPayloadSelect = {
|
|
670
612
|
clientMutationId?: boolean;
|
|
671
613
|
};
|
|
672
|
-
export interface RemoveNodeAtPathPayload {
|
|
673
|
-
clientMutationId?: string | null;
|
|
674
|
-
result?: string | null;
|
|
675
|
-
}
|
|
676
|
-
export type RemoveNodeAtPathPayloadSelect = {
|
|
677
|
-
clientMutationId?: boolean;
|
|
678
|
-
result?: boolean;
|
|
679
|
-
};
|
|
680
614
|
export interface SetDataAtPathPayload {
|
|
681
615
|
clientMutationId?: string | null;
|
|
682
616
|
result?: string | null;
|
|
@@ -685,14 +619,6 @@ export type SetDataAtPathPayloadSelect = {
|
|
|
685
619
|
clientMutationId?: boolean;
|
|
686
620
|
result?: boolean;
|
|
687
621
|
};
|
|
688
|
-
export interface SetPropsAndCommitPayload {
|
|
689
|
-
clientMutationId?: string | null;
|
|
690
|
-
result?: string | null;
|
|
691
|
-
}
|
|
692
|
-
export type SetPropsAndCommitPayloadSelect = {
|
|
693
|
-
clientMutationId?: boolean;
|
|
694
|
-
result?: boolean;
|
|
695
|
-
};
|
|
696
622
|
export interface InsertNodeAtPathPayload {
|
|
697
623
|
clientMutationId?: string | null;
|
|
698
624
|
result?: string | null;
|
|
@@ -701,22 +627,6 @@ export type InsertNodeAtPathPayloadSelect = {
|
|
|
701
627
|
clientMutationId?: boolean;
|
|
702
628
|
result?: boolean;
|
|
703
629
|
};
|
|
704
|
-
export interface UpdateNodeAtPathPayload {
|
|
705
|
-
clientMutationId?: string | null;
|
|
706
|
-
result?: string | null;
|
|
707
|
-
}
|
|
708
|
-
export type UpdateNodeAtPathPayloadSelect = {
|
|
709
|
-
clientMutationId?: boolean;
|
|
710
|
-
result?: boolean;
|
|
711
|
-
};
|
|
712
|
-
export interface SetAndCommitPayload {
|
|
713
|
-
clientMutationId?: string | null;
|
|
714
|
-
result?: string | null;
|
|
715
|
-
}
|
|
716
|
-
export type SetAndCommitPayloadSelect = {
|
|
717
|
-
clientMutationId?: boolean;
|
|
718
|
-
result?: boolean;
|
|
719
|
-
};
|
|
720
630
|
export interface ProvisionBucketPayload {
|
|
721
631
|
/** Whether provisioning succeeded */
|
|
722
632
|
success: boolean;
|
|
@@ -739,51 +649,6 @@ export type ProvisionBucketPayloadSelect = {
|
|
|
739
649
|
endpoint?: boolean;
|
|
740
650
|
error?: boolean;
|
|
741
651
|
};
|
|
742
|
-
export interface CreateObjectPayload {
|
|
743
|
-
clientMutationId?: string | null;
|
|
744
|
-
/** The `Object` that was created by this mutation. */
|
|
745
|
-
object?: Object | null;
|
|
746
|
-
objectEdge?: ObjectEdge | null;
|
|
747
|
-
}
|
|
748
|
-
export type CreateObjectPayloadSelect = {
|
|
749
|
-
clientMutationId?: boolean;
|
|
750
|
-
object?: {
|
|
751
|
-
select: ObjectSelect;
|
|
752
|
-
};
|
|
753
|
-
objectEdge?: {
|
|
754
|
-
select: ObjectEdgeSelect;
|
|
755
|
-
};
|
|
756
|
-
};
|
|
757
|
-
export interface UpdateObjectPayload {
|
|
758
|
-
clientMutationId?: string | null;
|
|
759
|
-
/** The `Object` that was updated by this mutation. */
|
|
760
|
-
object?: Object | null;
|
|
761
|
-
objectEdge?: ObjectEdge | null;
|
|
762
|
-
}
|
|
763
|
-
export type UpdateObjectPayloadSelect = {
|
|
764
|
-
clientMutationId?: boolean;
|
|
765
|
-
object?: {
|
|
766
|
-
select: ObjectSelect;
|
|
767
|
-
};
|
|
768
|
-
objectEdge?: {
|
|
769
|
-
select: ObjectEdgeSelect;
|
|
770
|
-
};
|
|
771
|
-
};
|
|
772
|
-
export interface DeleteObjectPayload {
|
|
773
|
-
clientMutationId?: string | null;
|
|
774
|
-
/** The `Object` that was deleted by this mutation. */
|
|
775
|
-
object?: Object | null;
|
|
776
|
-
objectEdge?: ObjectEdge | null;
|
|
777
|
-
}
|
|
778
|
-
export type DeleteObjectPayloadSelect = {
|
|
779
|
-
clientMutationId?: boolean;
|
|
780
|
-
object?: {
|
|
781
|
-
select: ObjectSelect;
|
|
782
|
-
};
|
|
783
|
-
objectEdge?: {
|
|
784
|
-
select: ObjectEdgeSelect;
|
|
785
|
-
};
|
|
786
|
-
};
|
|
787
652
|
export interface CreateRefPayload {
|
|
788
653
|
clientMutationId?: string | null;
|
|
789
654
|
/** The `Ref` that was created by this mutation. */
|
|
@@ -874,6 +739,51 @@ export type DeleteStorePayloadSelect = {
|
|
|
874
739
|
select: StoreEdgeSelect;
|
|
875
740
|
};
|
|
876
741
|
};
|
|
742
|
+
export interface CreateObjectPayload {
|
|
743
|
+
clientMutationId?: string | null;
|
|
744
|
+
/** The `Object` that was created by this mutation. */
|
|
745
|
+
object?: Object | null;
|
|
746
|
+
objectEdge?: ObjectEdge | null;
|
|
747
|
+
}
|
|
748
|
+
export type CreateObjectPayloadSelect = {
|
|
749
|
+
clientMutationId?: boolean;
|
|
750
|
+
object?: {
|
|
751
|
+
select: ObjectSelect;
|
|
752
|
+
};
|
|
753
|
+
objectEdge?: {
|
|
754
|
+
select: ObjectEdgeSelect;
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
export interface UpdateObjectPayload {
|
|
758
|
+
clientMutationId?: string | null;
|
|
759
|
+
/** The `Object` that was updated by this mutation. */
|
|
760
|
+
object?: Object | null;
|
|
761
|
+
objectEdge?: ObjectEdge | null;
|
|
762
|
+
}
|
|
763
|
+
export type UpdateObjectPayloadSelect = {
|
|
764
|
+
clientMutationId?: boolean;
|
|
765
|
+
object?: {
|
|
766
|
+
select: ObjectSelect;
|
|
767
|
+
};
|
|
768
|
+
objectEdge?: {
|
|
769
|
+
select: ObjectEdgeSelect;
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
export interface DeleteObjectPayload {
|
|
773
|
+
clientMutationId?: string | null;
|
|
774
|
+
/** The `Object` that was deleted by this mutation. */
|
|
775
|
+
object?: Object | null;
|
|
776
|
+
objectEdge?: ObjectEdge | null;
|
|
777
|
+
}
|
|
778
|
+
export type DeleteObjectPayloadSelect = {
|
|
779
|
+
clientMutationId?: boolean;
|
|
780
|
+
object?: {
|
|
781
|
+
select: ObjectSelect;
|
|
782
|
+
};
|
|
783
|
+
objectEdge?: {
|
|
784
|
+
select: ObjectEdgeSelect;
|
|
785
|
+
};
|
|
786
|
+
};
|
|
877
787
|
export interface CreateCommitPayload {
|
|
878
788
|
clientMutationId?: string | null;
|
|
879
789
|
/** The `Commit` that was created by this mutation. */
|
|
@@ -919,35 +829,6 @@ export type DeleteCommitPayloadSelect = {
|
|
|
919
829
|
select: CommitEdgeSelect;
|
|
920
830
|
};
|
|
921
831
|
};
|
|
922
|
-
/** A `Object` edge in the connection. */
|
|
923
|
-
export interface ObjectEdge {
|
|
924
|
-
cursor?: string | null;
|
|
925
|
-
/** The `Object` at the end of the edge. */
|
|
926
|
-
node?: Object | null;
|
|
927
|
-
}
|
|
928
|
-
export type ObjectEdgeSelect = {
|
|
929
|
-
cursor?: boolean;
|
|
930
|
-
node?: {
|
|
931
|
-
select: ObjectSelect;
|
|
932
|
-
};
|
|
933
|
-
};
|
|
934
|
-
/** Information about pagination in a connection. */
|
|
935
|
-
export interface PageInfo {
|
|
936
|
-
/** When paginating forwards, are there more items? */
|
|
937
|
-
hasNextPage: boolean;
|
|
938
|
-
/** When paginating backwards, are there more items? */
|
|
939
|
-
hasPreviousPage: boolean;
|
|
940
|
-
/** When paginating backwards, the cursor to continue. */
|
|
941
|
-
startCursor?: string | null;
|
|
942
|
-
/** When paginating forwards, the cursor to continue. */
|
|
943
|
-
endCursor?: string | null;
|
|
944
|
-
}
|
|
945
|
-
export type PageInfoSelect = {
|
|
946
|
-
hasNextPage?: boolean;
|
|
947
|
-
hasPreviousPage?: boolean;
|
|
948
|
-
startCursor?: boolean;
|
|
949
|
-
endCursor?: boolean;
|
|
950
|
-
};
|
|
951
832
|
/** A `Ref` edge in the connection. */
|
|
952
833
|
export interface RefEdge {
|
|
953
834
|
cursor?: string | null;
|
|
@@ -972,6 +853,18 @@ export type StoreEdgeSelect = {
|
|
|
972
853
|
select: StoreSelect;
|
|
973
854
|
};
|
|
974
855
|
};
|
|
856
|
+
/** A `Object` edge in the connection. */
|
|
857
|
+
export interface ObjectEdge {
|
|
858
|
+
cursor?: string | null;
|
|
859
|
+
/** The `Object` at the end of the edge. */
|
|
860
|
+
node?: Object | null;
|
|
861
|
+
}
|
|
862
|
+
export type ObjectEdgeSelect = {
|
|
863
|
+
cursor?: boolean;
|
|
864
|
+
node?: {
|
|
865
|
+
select: ObjectSelect;
|
|
866
|
+
};
|
|
867
|
+
};
|
|
975
868
|
/** A `Commit` edge in the connection. */
|
|
976
869
|
export interface CommitEdge {
|
|
977
870
|
cursor?: string | null;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { GetAllRecordModel } from './getAllRecord';
|
|
7
|
-
export { ObjectModel } from './object';
|
|
8
7
|
export { RefModel } from './ref';
|
|
9
8
|
export { StoreModel } from './store';
|
|
9
|
+
export { ObjectModel } from './object';
|
|
10
10
|
export { CommitModel } from './commit';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { GetAllRecordModel } from './getAllRecord';
|
|
7
|
-
export { ObjectModel } from './object';
|
|
8
7
|
export { RefModel } from './ref';
|
|
9
8
|
export { StoreModel } from './store';
|
|
9
|
+
export { ObjectModel } from './object';
|
|
10
10
|
export { CommitModel } from './commit';
|
|
@@ -6,31 +6,16 @@
|
|
|
6
6
|
import { OrmClient } from '../client';
|
|
7
7
|
import { QueryBuilder } from '../query-builder';
|
|
8
8
|
import type { InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
-
import type {
|
|
10
|
-
export interface FreezeObjectsVariables {
|
|
11
|
-
input: FreezeObjectsInput;
|
|
12
|
-
}
|
|
9
|
+
import type { InitEmptyRepoInput, SetDataAtPathInput, InsertNodeAtPathInput, ProvisionBucketInput, InitEmptyRepoPayload, SetDataAtPathPayload, InsertNodeAtPathPayload, ProvisionBucketPayload, InitEmptyRepoPayloadSelect, SetDataAtPathPayloadSelect, InsertNodeAtPathPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
|
|
13
10
|
export interface InitEmptyRepoVariables {
|
|
14
11
|
input: InitEmptyRepoInput;
|
|
15
12
|
}
|
|
16
|
-
export interface RemoveNodeAtPathVariables {
|
|
17
|
-
input: RemoveNodeAtPathInput;
|
|
18
|
-
}
|
|
19
13
|
export interface SetDataAtPathVariables {
|
|
20
14
|
input: SetDataAtPathInput;
|
|
21
15
|
}
|
|
22
|
-
export interface SetPropsAndCommitVariables {
|
|
23
|
-
input: SetPropsAndCommitInput;
|
|
24
|
-
}
|
|
25
16
|
export interface InsertNodeAtPathVariables {
|
|
26
17
|
input: InsertNodeAtPathInput;
|
|
27
18
|
}
|
|
28
|
-
export interface UpdateNodeAtPathVariables {
|
|
29
|
-
input: UpdateNodeAtPathInput;
|
|
30
|
-
}
|
|
31
|
-
export interface SetAndCommitVariables {
|
|
32
|
-
input: SetAndCommitInput;
|
|
33
|
-
}
|
|
34
19
|
/**
|
|
35
20
|
* Variables for provisionBucket
|
|
36
21
|
* Provision an S3 bucket for a logical bucket in the database.
|
|
@@ -42,46 +27,21 @@ export interface ProvisionBucketVariables {
|
|
|
42
27
|
input: ProvisionBucketInput;
|
|
43
28
|
}
|
|
44
29
|
export declare function createMutationOperations(client: OrmClient): {
|
|
45
|
-
freezeObjects: <S extends FreezeObjectsPayloadSelect>(args: FreezeObjectsVariables, options: {
|
|
46
|
-
select: S;
|
|
47
|
-
} & StrictSelect<S, FreezeObjectsPayloadSelect>) => QueryBuilder<{
|
|
48
|
-
freezeObjects: InferSelectResult<FreezeObjectsPayload, S> | null;
|
|
49
|
-
}>;
|
|
50
30
|
initEmptyRepo: <S extends InitEmptyRepoPayloadSelect>(args: InitEmptyRepoVariables, options: {
|
|
51
31
|
select: S;
|
|
52
32
|
} & StrictSelect<S, InitEmptyRepoPayloadSelect>) => QueryBuilder<{
|
|
53
33
|
initEmptyRepo: InferSelectResult<InitEmptyRepoPayload, S> | null;
|
|
54
34
|
}>;
|
|
55
|
-
removeNodeAtPath: <S extends RemoveNodeAtPathPayloadSelect>(args: RemoveNodeAtPathVariables, options: {
|
|
56
|
-
select: S;
|
|
57
|
-
} & StrictSelect<S, RemoveNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
58
|
-
removeNodeAtPath: InferSelectResult<RemoveNodeAtPathPayload, S> | null;
|
|
59
|
-
}>;
|
|
60
35
|
setDataAtPath: <S extends SetDataAtPathPayloadSelect>(args: SetDataAtPathVariables, options: {
|
|
61
36
|
select: S;
|
|
62
37
|
} & StrictSelect<S, SetDataAtPathPayloadSelect>) => QueryBuilder<{
|
|
63
38
|
setDataAtPath: InferSelectResult<SetDataAtPathPayload, S> | null;
|
|
64
39
|
}>;
|
|
65
|
-
setPropsAndCommit: <S extends SetPropsAndCommitPayloadSelect>(args: SetPropsAndCommitVariables, options: {
|
|
66
|
-
select: S;
|
|
67
|
-
} & StrictSelect<S, SetPropsAndCommitPayloadSelect>) => QueryBuilder<{
|
|
68
|
-
setPropsAndCommit: InferSelectResult<SetPropsAndCommitPayload, S> | null;
|
|
69
|
-
}>;
|
|
70
40
|
insertNodeAtPath: <S extends InsertNodeAtPathPayloadSelect>(args: InsertNodeAtPathVariables, options: {
|
|
71
41
|
select: S;
|
|
72
42
|
} & StrictSelect<S, InsertNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
73
43
|
insertNodeAtPath: InferSelectResult<InsertNodeAtPathPayload, S> | null;
|
|
74
44
|
}>;
|
|
75
|
-
updateNodeAtPath: <S extends UpdateNodeAtPathPayloadSelect>(args: UpdateNodeAtPathVariables, options: {
|
|
76
|
-
select: S;
|
|
77
|
-
} & StrictSelect<S, UpdateNodeAtPathPayloadSelect>) => QueryBuilder<{
|
|
78
|
-
updateNodeAtPath: InferSelectResult<UpdateNodeAtPathPayload, S> | null;
|
|
79
|
-
}>;
|
|
80
|
-
setAndCommit: <S extends SetAndCommitPayloadSelect>(args: SetAndCommitVariables, options: {
|
|
81
|
-
select: S;
|
|
82
|
-
} & StrictSelect<S, SetAndCommitPayloadSelect>) => QueryBuilder<{
|
|
83
|
-
setAndCommit: InferSelectResult<SetAndCommitPayload, S> | null;
|
|
84
|
-
}>;
|
|
85
45
|
provisionBucket: <S extends ProvisionBucketPayloadSelect>(args: ProvisionBucketVariables, options: {
|
|
86
46
|
select: S;
|
|
87
47
|
} & StrictSelect<S, ProvisionBucketPayloadSelect>) => QueryBuilder<{
|