@constructive-io/sdk 0.0.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/LICENSE +23 -0
- package/README.md +84 -0
- package/admin/index.d.ts +5 -0
- package/admin/index.js +21 -0
- package/admin/orm/client.d.ts +55 -0
- package/admin/orm/client.js +105 -0
- package/admin/orm/index.d.ts +153 -0
- package/admin/orm/index.js +122 -0
- package/admin/orm/input-types.d.ts +3682 -0
- package/admin/orm/input-types.js +5 -0
- package/admin/orm/models/appAchievement.d.ts +56 -0
- package/admin/orm/models/appAchievement.js +98 -0
- package/admin/orm/models/appAdminGrant.d.ts +56 -0
- package/admin/orm/models/appAdminGrant.js +98 -0
- package/admin/orm/models/appGrant.d.ts +56 -0
- package/admin/orm/models/appGrant.js +98 -0
- package/admin/orm/models/appLevel.d.ts +56 -0
- package/admin/orm/models/appLevel.js +98 -0
- package/admin/orm/models/appLevelRequirement.d.ts +56 -0
- package/admin/orm/models/appLevelRequirement.js +98 -0
- package/admin/orm/models/appLimit.d.ts +56 -0
- package/admin/orm/models/appLimit.js +98 -0
- package/admin/orm/models/appLimitDefault.d.ts +56 -0
- package/admin/orm/models/appLimitDefault.js +98 -0
- package/admin/orm/models/appMembership.d.ts +56 -0
- package/admin/orm/models/appMembership.js +98 -0
- package/admin/orm/models/appMembershipDefault.d.ts +56 -0
- package/admin/orm/models/appMembershipDefault.js +98 -0
- package/admin/orm/models/appOwnerGrant.d.ts +56 -0
- package/admin/orm/models/appOwnerGrant.js +98 -0
- package/admin/orm/models/appPermission.d.ts +56 -0
- package/admin/orm/models/appPermission.js +98 -0
- package/admin/orm/models/appPermissionDefault.d.ts +56 -0
- package/admin/orm/models/appPermissionDefault.js +98 -0
- package/admin/orm/models/appStep.d.ts +56 -0
- package/admin/orm/models/appStep.js +98 -0
- package/admin/orm/models/claimedInvite.d.ts +56 -0
- package/admin/orm/models/claimedInvite.js +98 -0
- package/admin/orm/models/index.d.ts +33 -0
- package/admin/orm/models/index.js +64 -0
- package/admin/orm/models/invite.d.ts +56 -0
- package/admin/orm/models/invite.js +98 -0
- package/admin/orm/models/membershipType.d.ts +56 -0
- package/admin/orm/models/membershipType.js +98 -0
- package/admin/orm/models/orgAdminGrant.d.ts +56 -0
- package/admin/orm/models/orgAdminGrant.js +98 -0
- package/admin/orm/models/orgClaimedInvite.d.ts +56 -0
- package/admin/orm/models/orgClaimedInvite.js +98 -0
- package/admin/orm/models/orgGrant.d.ts +56 -0
- package/admin/orm/models/orgGrant.js +98 -0
- package/admin/orm/models/orgInvite.d.ts +56 -0
- package/admin/orm/models/orgInvite.js +98 -0
- package/admin/orm/models/orgLimit.d.ts +56 -0
- package/admin/orm/models/orgLimit.js +98 -0
- package/admin/orm/models/orgLimitDefault.d.ts +56 -0
- package/admin/orm/models/orgLimitDefault.js +98 -0
- package/admin/orm/models/orgMember.d.ts +56 -0
- package/admin/orm/models/orgMember.js +98 -0
- package/admin/orm/models/orgMembership.d.ts +56 -0
- package/admin/orm/models/orgMembership.js +98 -0
- package/admin/orm/models/orgMembershipDefault.d.ts +56 -0
- package/admin/orm/models/orgMembershipDefault.js +98 -0
- package/admin/orm/models/orgOwnerGrant.d.ts +56 -0
- package/admin/orm/models/orgOwnerGrant.js +98 -0
- package/admin/orm/models/orgPermission.d.ts +56 -0
- package/admin/orm/models/orgPermission.js +98 -0
- package/admin/orm/models/orgPermissionDefault.d.ts +56 -0
- package/admin/orm/models/orgPermissionDefault.js +98 -0
- package/admin/orm/mutation/index.d.ts +27 -0
- package/admin/orm/mutation/index.js +33 -0
- package/admin/orm/query/index.d.ts +101 -0
- package/admin/orm/query/index.js +173 -0
- package/admin/orm/query-builder.d.ts +89 -0
- package/admin/orm/query-builder.js +611 -0
- package/admin/orm/select-types.d.ts +101 -0
- package/admin/orm/select-types.js +2 -0
- package/admin/orm/types.d.ts +6 -0
- package/admin/orm/types.js +23 -0
- package/auth/index.d.ts +5 -0
- package/auth/index.js +21 -0
- package/auth/orm/client.d.ts +55 -0
- package/auth/orm/client.js +105 -0
- package/auth/orm/index.d.ts +151 -0
- package/auth/orm/index.js +80 -0
- package/auth/orm/input-types.d.ts +1412 -0
- package/auth/orm/input-types.js +5 -0
- package/auth/orm/models/auditLog.d.ts +56 -0
- package/auth/orm/models/auditLog.js +98 -0
- package/auth/orm/models/connectedAccount.d.ts +56 -0
- package/auth/orm/models/connectedAccount.js +98 -0
- package/auth/orm/models/cryptoAddress.d.ts +56 -0
- package/auth/orm/models/cryptoAddress.js +98 -0
- package/auth/orm/models/email.d.ts +56 -0
- package/auth/orm/models/email.js +98 -0
- package/auth/orm/models/index.d.ts +12 -0
- package/auth/orm/models/index.js +22 -0
- package/auth/orm/models/phoneNumber.d.ts +56 -0
- package/auth/orm/models/phoneNumber.js +98 -0
- package/auth/orm/models/roleType.d.ts +56 -0
- package/auth/orm/models/roleType.js +98 -0
- package/auth/orm/models/user.d.ts +56 -0
- package/auth/orm/models/user.js +98 -0
- package/auth/orm/mutation/index.d.ts +139 -0
- package/auth/orm/mutation/index.js +201 -0
- package/auth/orm/query/index.d.ts +31 -0
- package/auth/orm/query/index.js +37 -0
- package/auth/orm/query-builder.d.ts +89 -0
- package/auth/orm/query-builder.js +611 -0
- package/auth/orm/select-types.d.ts +101 -0
- package/auth/orm/select-types.js +2 -0
- package/auth/orm/types.d.ts +6 -0
- package/auth/orm/types.js +23 -0
- package/esm/admin/index.d.ts +5 -0
- package/esm/admin/index.js +5 -0
- package/esm/admin/orm/client.d.ts +55 -0
- package/esm/admin/orm/client.js +99 -0
- package/esm/admin/orm/index.d.ts +153 -0
- package/esm/admin/orm/index.js +100 -0
- package/esm/admin/orm/input-types.d.ts +3682 -0
- package/esm/admin/orm/input-types.js +2 -0
- package/esm/admin/orm/models/appAchievement.d.ts +56 -0
- package/esm/admin/orm/models/appAchievement.js +94 -0
- package/esm/admin/orm/models/appAdminGrant.d.ts +56 -0
- package/esm/admin/orm/models/appAdminGrant.js +94 -0
- package/esm/admin/orm/models/appGrant.d.ts +56 -0
- package/esm/admin/orm/models/appGrant.js +94 -0
- package/esm/admin/orm/models/appLevel.d.ts +56 -0
- package/esm/admin/orm/models/appLevel.js +94 -0
- package/esm/admin/orm/models/appLevelRequirement.d.ts +56 -0
- package/esm/admin/orm/models/appLevelRequirement.js +94 -0
- package/esm/admin/orm/models/appLimit.d.ts +56 -0
- package/esm/admin/orm/models/appLimit.js +94 -0
- package/esm/admin/orm/models/appLimitDefault.d.ts +56 -0
- package/esm/admin/orm/models/appLimitDefault.js +94 -0
- package/esm/admin/orm/models/appMembership.d.ts +56 -0
- package/esm/admin/orm/models/appMembership.js +94 -0
- package/esm/admin/orm/models/appMembershipDefault.d.ts +56 -0
- package/esm/admin/orm/models/appMembershipDefault.js +94 -0
- package/esm/admin/orm/models/appOwnerGrant.d.ts +56 -0
- package/esm/admin/orm/models/appOwnerGrant.js +94 -0
- package/esm/admin/orm/models/appPermission.d.ts +56 -0
- package/esm/admin/orm/models/appPermission.js +94 -0
- package/esm/admin/orm/models/appPermissionDefault.d.ts +56 -0
- package/esm/admin/orm/models/appPermissionDefault.js +94 -0
- package/esm/admin/orm/models/appStep.d.ts +56 -0
- package/esm/admin/orm/models/appStep.js +94 -0
- package/esm/admin/orm/models/claimedInvite.d.ts +56 -0
- package/esm/admin/orm/models/claimedInvite.js +94 -0
- package/esm/admin/orm/models/index.d.ts +33 -0
- package/esm/admin/orm/models/index.js +33 -0
- package/esm/admin/orm/models/invite.d.ts +56 -0
- package/esm/admin/orm/models/invite.js +94 -0
- package/esm/admin/orm/models/membershipType.d.ts +56 -0
- package/esm/admin/orm/models/membershipType.js +94 -0
- package/esm/admin/orm/models/orgAdminGrant.d.ts +56 -0
- package/esm/admin/orm/models/orgAdminGrant.js +94 -0
- package/esm/admin/orm/models/orgClaimedInvite.d.ts +56 -0
- package/esm/admin/orm/models/orgClaimedInvite.js +94 -0
- package/esm/admin/orm/models/orgGrant.d.ts +56 -0
- package/esm/admin/orm/models/orgGrant.js +94 -0
- package/esm/admin/orm/models/orgInvite.d.ts +56 -0
- package/esm/admin/orm/models/orgInvite.js +94 -0
- package/esm/admin/orm/models/orgLimit.d.ts +56 -0
- package/esm/admin/orm/models/orgLimit.js +94 -0
- package/esm/admin/orm/models/orgLimitDefault.d.ts +56 -0
- package/esm/admin/orm/models/orgLimitDefault.js +94 -0
- package/esm/admin/orm/models/orgMember.d.ts +56 -0
- package/esm/admin/orm/models/orgMember.js +94 -0
- package/esm/admin/orm/models/orgMembership.d.ts +56 -0
- package/esm/admin/orm/models/orgMembership.js +94 -0
- package/esm/admin/orm/models/orgMembershipDefault.d.ts +56 -0
- package/esm/admin/orm/models/orgMembershipDefault.js +94 -0
- package/esm/admin/orm/models/orgOwnerGrant.d.ts +56 -0
- package/esm/admin/orm/models/orgOwnerGrant.js +94 -0
- package/esm/admin/orm/models/orgPermission.d.ts +56 -0
- package/esm/admin/orm/models/orgPermission.js +94 -0
- package/esm/admin/orm/models/orgPermissionDefault.d.ts +56 -0
- package/esm/admin/orm/models/orgPermissionDefault.js +94 -0
- package/esm/admin/orm/mutation/index.d.ts +27 -0
- package/esm/admin/orm/mutation/index.js +30 -0
- package/esm/admin/orm/query/index.d.ts +101 -0
- package/esm/admin/orm/query/index.js +170 -0
- package/esm/admin/orm/query-builder.d.ts +89 -0
- package/esm/admin/orm/query-builder.js +564 -0
- package/esm/admin/orm/select-types.d.ts +101 -0
- package/esm/admin/orm/select-types.js +1 -0
- package/esm/admin/orm/types.d.ts +6 -0
- package/esm/admin/orm/types.js +7 -0
- package/esm/auth/index.d.ts +5 -0
- package/esm/auth/index.js +5 -0
- package/esm/auth/orm/client.d.ts +55 -0
- package/esm/auth/orm/client.js +99 -0
- package/esm/auth/orm/index.d.ts +151 -0
- package/esm/auth/orm/index.js +58 -0
- package/esm/auth/orm/input-types.d.ts +1412 -0
- package/esm/auth/orm/input-types.js +2 -0
- package/esm/auth/orm/models/auditLog.d.ts +56 -0
- package/esm/auth/orm/models/auditLog.js +94 -0
- package/esm/auth/orm/models/connectedAccount.d.ts +56 -0
- package/esm/auth/orm/models/connectedAccount.js +94 -0
- package/esm/auth/orm/models/cryptoAddress.d.ts +56 -0
- package/esm/auth/orm/models/cryptoAddress.js +94 -0
- package/esm/auth/orm/models/email.d.ts +56 -0
- package/esm/auth/orm/models/email.js +94 -0
- package/esm/auth/orm/models/index.d.ts +12 -0
- package/esm/auth/orm/models/index.js +12 -0
- package/esm/auth/orm/models/phoneNumber.d.ts +56 -0
- package/esm/auth/orm/models/phoneNumber.js +94 -0
- package/esm/auth/orm/models/roleType.d.ts +56 -0
- package/esm/auth/orm/models/roleType.js +94 -0
- package/esm/auth/orm/models/user.d.ts +56 -0
- package/esm/auth/orm/models/user.js +94 -0
- package/esm/auth/orm/mutation/index.d.ts +139 -0
- package/esm/auth/orm/mutation/index.js +198 -0
- package/esm/auth/orm/query/index.d.ts +31 -0
- package/esm/auth/orm/query/index.js +34 -0
- package/esm/auth/orm/query-builder.d.ts +89 -0
- package/esm/auth/orm/query-builder.js +564 -0
- package/esm/auth/orm/select-types.d.ts +101 -0
- package/esm/auth/orm/select-types.js +1 -0
- package/esm/auth/orm/types.d.ts +6 -0
- package/esm/auth/orm/types.js +7 -0
- package/esm/index.d.ts +12 -0
- package/esm/index.js +12 -0
- package/esm/objects/index.d.ts +5 -0
- package/esm/objects/index.js +5 -0
- package/esm/objects/orm/client.d.ts +55 -0
- package/esm/objects/orm/client.js +99 -0
- package/esm/objects/orm/index.d.ts +107 -0
- package/esm/objects/orm/index.js +54 -0
- package/esm/objects/orm/input-types.d.ts +909 -0
- package/esm/objects/orm/input-types.js +2 -0
- package/esm/objects/orm/models/commit.d.ts +56 -0
- package/esm/objects/orm/models/commit.js +94 -0
- package/esm/objects/orm/models/getAllRecord.d.ts +32 -0
- package/esm/objects/orm/models/getAllRecord.js +51 -0
- package/esm/objects/orm/models/index.d.ts +10 -0
- package/esm/objects/orm/models/index.js +10 -0
- package/esm/objects/orm/models/object.d.ts +56 -0
- package/esm/objects/orm/models/object.js +84 -0
- package/esm/objects/orm/models/ref.d.ts +56 -0
- package/esm/objects/orm/models/ref.js +94 -0
- package/esm/objects/orm/models/store.d.ts +56 -0
- package/esm/objects/orm/models/store.js +94 -0
- package/esm/objects/orm/mutation/index.d.ts +75 -0
- package/esm/objects/orm/mutation/index.js +102 -0
- package/esm/objects/orm/query/index.d.ts +57 -0
- package/esm/objects/orm/query/index.js +110 -0
- package/esm/objects/orm/query-builder.d.ts +89 -0
- package/esm/objects/orm/query-builder.js +564 -0
- package/esm/objects/orm/select-types.d.ts +101 -0
- package/esm/objects/orm/select-types.js +1 -0
- package/esm/objects/orm/types.d.ts +6 -0
- package/esm/objects/orm/types.js +7 -0
- package/esm/public/index.d.ts +5 -0
- package/esm/public/index.js +5 -0
- package/esm/public/orm/client.d.ts +55 -0
- package/esm/public/orm/client.js +99 -0
- package/esm/public/orm/index.d.ts +480 -0
- package/esm/public/orm/index.js +242 -0
- package/esm/public/orm/input-types.d.ts +15987 -0
- package/esm/public/orm/input-types.js +128 -0
- package/esm/public/orm/models/api.d.ts +56 -0
- package/esm/public/orm/models/api.js +94 -0
- package/esm/public/orm/models/apiModule.d.ts +56 -0
- package/esm/public/orm/models/apiModule.js +94 -0
- package/esm/public/orm/models/apiSchema.d.ts +56 -0
- package/esm/public/orm/models/apiSchema.js +94 -0
- package/esm/public/orm/models/app.d.ts +56 -0
- package/esm/public/orm/models/app.js +94 -0
- package/esm/public/orm/models/appAchievement.d.ts +56 -0
- package/esm/public/orm/models/appAchievement.js +94 -0
- package/esm/public/orm/models/appAdminGrant.d.ts +56 -0
- package/esm/public/orm/models/appAdminGrant.js +94 -0
- package/esm/public/orm/models/appGrant.d.ts +56 -0
- package/esm/public/orm/models/appGrant.js +94 -0
- package/esm/public/orm/models/appLevel.d.ts +56 -0
- package/esm/public/orm/models/appLevel.js +94 -0
- package/esm/public/orm/models/appLevelRequirement.d.ts +56 -0
- package/esm/public/orm/models/appLevelRequirement.js +94 -0
- package/esm/public/orm/models/appLimit.d.ts +56 -0
- package/esm/public/orm/models/appLimit.js +94 -0
- package/esm/public/orm/models/appLimitDefault.d.ts +56 -0
- package/esm/public/orm/models/appLimitDefault.js +94 -0
- package/esm/public/orm/models/appMembership.d.ts +56 -0
- package/esm/public/orm/models/appMembership.js +94 -0
- package/esm/public/orm/models/appMembershipDefault.d.ts +56 -0
- package/esm/public/orm/models/appMembershipDefault.js +94 -0
- package/esm/public/orm/models/appOwnerGrant.d.ts +56 -0
- package/esm/public/orm/models/appOwnerGrant.js +94 -0
- package/esm/public/orm/models/appPermission.d.ts +56 -0
- package/esm/public/orm/models/appPermission.js +94 -0
- package/esm/public/orm/models/appPermissionDefault.d.ts +56 -0
- package/esm/public/orm/models/appPermissionDefault.js +94 -0
- package/esm/public/orm/models/appStep.d.ts +56 -0
- package/esm/public/orm/models/appStep.js +94 -0
- package/esm/public/orm/models/astMigration.d.ts +38 -0
- package/esm/public/orm/models/astMigration.js +72 -0
- package/esm/public/orm/models/auditLog.d.ts +56 -0
- package/esm/public/orm/models/auditLog.js +94 -0
- package/esm/public/orm/models/checkConstraint.d.ts +56 -0
- package/esm/public/orm/models/checkConstraint.js +94 -0
- package/esm/public/orm/models/claimedInvite.d.ts +56 -0
- package/esm/public/orm/models/claimedInvite.js +94 -0
- package/esm/public/orm/models/commit.d.ts +56 -0
- package/esm/public/orm/models/commit.js +94 -0
- package/esm/public/orm/models/connectedAccount.d.ts +56 -0
- package/esm/public/orm/models/connectedAccount.js +94 -0
- package/esm/public/orm/models/connectedAccountsModule.d.ts +56 -0
- package/esm/public/orm/models/connectedAccountsModule.js +94 -0
- package/esm/public/orm/models/cryptoAddress.d.ts +56 -0
- package/esm/public/orm/models/cryptoAddress.js +94 -0
- package/esm/public/orm/models/cryptoAddressesModule.d.ts +56 -0
- package/esm/public/orm/models/cryptoAddressesModule.js +94 -0
- package/esm/public/orm/models/cryptoAuthModule.d.ts +56 -0
- package/esm/public/orm/models/cryptoAuthModule.js +94 -0
- package/esm/public/orm/models/database.d.ts +56 -0
- package/esm/public/orm/models/database.js +94 -0
- package/esm/public/orm/models/databaseProvisionModule.d.ts +56 -0
- package/esm/public/orm/models/databaseProvisionModule.js +94 -0
- package/esm/public/orm/models/defaultIdsModule.d.ts +56 -0
- package/esm/public/orm/models/defaultIdsModule.js +94 -0
- package/esm/public/orm/models/denormalizedTableField.d.ts +56 -0
- package/esm/public/orm/models/denormalizedTableField.js +94 -0
- package/esm/public/orm/models/domain.d.ts +56 -0
- package/esm/public/orm/models/domain.js +94 -0
- package/esm/public/orm/models/email.d.ts +56 -0
- package/esm/public/orm/models/email.js +94 -0
- package/esm/public/orm/models/emailsModule.d.ts +56 -0
- package/esm/public/orm/models/emailsModule.js +94 -0
- package/esm/public/orm/models/encryptedSecretsModule.d.ts +56 -0
- package/esm/public/orm/models/encryptedSecretsModule.js +94 -0
- package/esm/public/orm/models/field.d.ts +56 -0
- package/esm/public/orm/models/field.js +94 -0
- package/esm/public/orm/models/fieldModule.d.ts +56 -0
- package/esm/public/orm/models/fieldModule.js +94 -0
- package/esm/public/orm/models/foreignKeyConstraint.d.ts +56 -0
- package/esm/public/orm/models/foreignKeyConstraint.js +94 -0
- package/esm/public/orm/models/fullTextSearch.d.ts +56 -0
- package/esm/public/orm/models/fullTextSearch.js +94 -0
- package/esm/public/orm/models/getAllRecord.d.ts +32 -0
- package/esm/public/orm/models/getAllRecord.js +51 -0
- package/esm/public/orm/models/hierarchyModule.d.ts +56 -0
- package/esm/public/orm/models/hierarchyModule.js +94 -0
- package/esm/public/orm/models/index.d.ts +104 -0
- package/esm/public/orm/models/index.js +104 -0
- package/esm/public/orm/models/indexModel.d.ts +56 -0
- package/esm/public/orm/models/indexModel.js +94 -0
- package/esm/public/orm/models/invite.d.ts +56 -0
- package/esm/public/orm/models/invite.js +94 -0
- package/esm/public/orm/models/invitesModule.d.ts +56 -0
- package/esm/public/orm/models/invitesModule.js +94 -0
- package/esm/public/orm/models/levelsModule.d.ts +56 -0
- package/esm/public/orm/models/levelsModule.js +94 -0
- package/esm/public/orm/models/limitFunction.d.ts +56 -0
- package/esm/public/orm/models/limitFunction.js +94 -0
- package/esm/public/orm/models/limitsModule.d.ts +56 -0
- package/esm/public/orm/models/limitsModule.js +94 -0
- package/esm/public/orm/models/membershipType.d.ts +56 -0
- package/esm/public/orm/models/membershipType.js +94 -0
- package/esm/public/orm/models/membershipTypesModule.d.ts +56 -0
- package/esm/public/orm/models/membershipTypesModule.js +94 -0
- package/esm/public/orm/models/membershipsModule.d.ts +56 -0
- package/esm/public/orm/models/membershipsModule.js +94 -0
- package/esm/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/esm/public/orm/models/nodeTypeRegistry.js +94 -0
- package/esm/public/orm/models/object.d.ts +56 -0
- package/esm/public/orm/models/object.js +84 -0
- package/esm/public/orm/models/orgAdminGrant.d.ts +56 -0
- package/esm/public/orm/models/orgAdminGrant.js +94 -0
- package/esm/public/orm/models/orgClaimedInvite.d.ts +56 -0
- package/esm/public/orm/models/orgClaimedInvite.js +94 -0
- package/esm/public/orm/models/orgGrant.d.ts +56 -0
- package/esm/public/orm/models/orgGrant.js +94 -0
- package/esm/public/orm/models/orgInvite.d.ts +56 -0
- package/esm/public/orm/models/orgInvite.js +94 -0
- package/esm/public/orm/models/orgLimit.d.ts +56 -0
- package/esm/public/orm/models/orgLimit.js +94 -0
- package/esm/public/orm/models/orgLimitDefault.d.ts +56 -0
- package/esm/public/orm/models/orgLimitDefault.js +94 -0
- package/esm/public/orm/models/orgMember.d.ts +56 -0
- package/esm/public/orm/models/orgMember.js +94 -0
- package/esm/public/orm/models/orgMembership.d.ts +56 -0
- package/esm/public/orm/models/orgMembership.js +94 -0
- package/esm/public/orm/models/orgMembershipDefault.d.ts +56 -0
- package/esm/public/orm/models/orgMembershipDefault.js +94 -0
- package/esm/public/orm/models/orgOwnerGrant.d.ts +56 -0
- package/esm/public/orm/models/orgOwnerGrant.js +94 -0
- package/esm/public/orm/models/orgPermission.d.ts +56 -0
- package/esm/public/orm/models/orgPermission.js +94 -0
- package/esm/public/orm/models/orgPermissionDefault.d.ts +56 -0
- package/esm/public/orm/models/orgPermissionDefault.js +94 -0
- package/esm/public/orm/models/permissionsModule.d.ts +56 -0
- package/esm/public/orm/models/permissionsModule.js +94 -0
- package/esm/public/orm/models/phoneNumber.d.ts +56 -0
- package/esm/public/orm/models/phoneNumber.js +94 -0
- package/esm/public/orm/models/phoneNumbersModule.d.ts +56 -0
- package/esm/public/orm/models/phoneNumbersModule.js +94 -0
- package/esm/public/orm/models/policy.d.ts +56 -0
- package/esm/public/orm/models/policy.js +94 -0
- package/esm/public/orm/models/primaryKeyConstraint.d.ts +56 -0
- package/esm/public/orm/models/primaryKeyConstraint.js +94 -0
- package/esm/public/orm/models/procedure.d.ts +56 -0
- package/esm/public/orm/models/procedure.js +94 -0
- package/esm/public/orm/models/profilesModule.d.ts +56 -0
- package/esm/public/orm/models/profilesModule.js +94 -0
- package/esm/public/orm/models/ref.d.ts +56 -0
- package/esm/public/orm/models/ref.js +94 -0
- package/esm/public/orm/models/rlsModule.d.ts +56 -0
- package/esm/public/orm/models/rlsModule.js +94 -0
- package/esm/public/orm/models/roleType.d.ts +56 -0
- package/esm/public/orm/models/roleType.js +94 -0
- package/esm/public/orm/models/schema.d.ts +56 -0
- package/esm/public/orm/models/schema.js +94 -0
- package/esm/public/orm/models/schemaGrant.d.ts +56 -0
- package/esm/public/orm/models/schemaGrant.js +94 -0
- package/esm/public/orm/models/secretsModule.d.ts +56 -0
- package/esm/public/orm/models/secretsModule.js +94 -0
- package/esm/public/orm/models/sessionsModule.d.ts +56 -0
- package/esm/public/orm/models/sessionsModule.js +94 -0
- package/esm/public/orm/models/site.d.ts +56 -0
- package/esm/public/orm/models/site.js +94 -0
- package/esm/public/orm/models/siteMetadatum.d.ts +56 -0
- package/esm/public/orm/models/siteMetadatum.js +94 -0
- package/esm/public/orm/models/siteModule.d.ts +56 -0
- package/esm/public/orm/models/siteModule.js +94 -0
- package/esm/public/orm/models/siteTheme.d.ts +56 -0
- package/esm/public/orm/models/siteTheme.js +94 -0
- package/esm/public/orm/models/sqlMigration.d.ts +38 -0
- package/esm/public/orm/models/sqlMigration.js +72 -0
- package/esm/public/orm/models/store.d.ts +56 -0
- package/esm/public/orm/models/store.js +94 -0
- package/esm/public/orm/models/table.d.ts +56 -0
- package/esm/public/orm/models/table.js +94 -0
- package/esm/public/orm/models/tableGrant.d.ts +56 -0
- package/esm/public/orm/models/tableGrant.js +94 -0
- package/esm/public/orm/models/tableModule.d.ts +56 -0
- package/esm/public/orm/models/tableModule.js +94 -0
- package/esm/public/orm/models/tableTemplateModule.d.ts +56 -0
- package/esm/public/orm/models/tableTemplateModule.js +94 -0
- package/esm/public/orm/models/trigger.d.ts +56 -0
- package/esm/public/orm/models/trigger.js +94 -0
- package/esm/public/orm/models/triggerFunction.d.ts +56 -0
- package/esm/public/orm/models/triggerFunction.js +94 -0
- package/esm/public/orm/models/uniqueConstraint.d.ts +56 -0
- package/esm/public/orm/models/uniqueConstraint.js +94 -0
- package/esm/public/orm/models/user.d.ts +56 -0
- package/esm/public/orm/models/user.js +94 -0
- package/esm/public/orm/models/userAuthModule.d.ts +56 -0
- package/esm/public/orm/models/userAuthModule.js +94 -0
- package/esm/public/orm/models/usersModule.d.ts +56 -0
- package/esm/public/orm/models/usersModule.js +94 -0
- package/esm/public/orm/models/uuidModule.d.ts +56 -0
- package/esm/public/orm/models/uuidModule.js +94 -0
- package/esm/public/orm/models/view.d.ts +56 -0
- package/esm/public/orm/models/view.js +94 -0
- package/esm/public/orm/models/viewGrant.d.ts +56 -0
- package/esm/public/orm/models/viewGrant.js +94 -0
- package/esm/public/orm/models/viewRule.d.ts +56 -0
- package/esm/public/orm/models/viewRule.js +94 -0
- package/esm/public/orm/models/viewTable.d.ts +56 -0
- package/esm/public/orm/models/viewTable.js +94 -0
- package/esm/public/orm/mutation/index.d.ts +259 -0
- package/esm/public/orm/mutation/index.js +378 -0
- package/esm/public/orm/query/index.d.ts +168 -0
- package/esm/public/orm/query/index.js +302 -0
- package/esm/public/orm/query-builder.d.ts +89 -0
- package/esm/public/orm/query-builder.js +564 -0
- package/esm/public/orm/select-types.d.ts +101 -0
- package/esm/public/orm/select-types.js +1 -0
- package/esm/public/orm/types.d.ts +6 -0
- package/esm/public/orm/types.js +7 -0
- package/index.d.ts +12 -0
- package/index.js +48 -0
- package/objects/index.d.ts +5 -0
- package/objects/index.js +21 -0
- package/objects/orm/client.d.ts +55 -0
- package/objects/orm/client.js +105 -0
- package/objects/orm/index.d.ts +107 -0
- package/objects/orm/index.js +76 -0
- package/objects/orm/input-types.d.ts +909 -0
- package/objects/orm/input-types.js +5 -0
- package/objects/orm/models/commit.d.ts +56 -0
- package/objects/orm/models/commit.js +98 -0
- package/objects/orm/models/getAllRecord.d.ts +32 -0
- package/objects/orm/models/getAllRecord.js +55 -0
- package/objects/orm/models/index.d.ts +10 -0
- package/objects/orm/models/index.js +18 -0
- package/objects/orm/models/object.d.ts +56 -0
- package/objects/orm/models/object.js +88 -0
- package/objects/orm/models/ref.d.ts +56 -0
- package/objects/orm/models/ref.js +98 -0
- package/objects/orm/models/store.d.ts +56 -0
- package/objects/orm/models/store.js +98 -0
- package/objects/orm/mutation/index.d.ts +75 -0
- package/objects/orm/mutation/index.js +105 -0
- package/objects/orm/query/index.d.ts +57 -0
- package/objects/orm/query/index.js +113 -0
- package/objects/orm/query-builder.d.ts +89 -0
- package/objects/orm/query-builder.js +611 -0
- package/objects/orm/select-types.d.ts +101 -0
- package/objects/orm/select-types.js +2 -0
- package/objects/orm/types.d.ts +6 -0
- package/objects/orm/types.js +23 -0
- package/package.json +54 -0
- package/public/index.d.ts +5 -0
- package/public/index.js +21 -0
- package/public/orm/client.d.ts +55 -0
- package/public/orm/client.js +105 -0
- package/public/orm/index.d.ts +480 -0
- package/public/orm/index.js +264 -0
- package/public/orm/input-types.d.ts +15987 -0
- package/public/orm/input-types.js +131 -0
- package/public/orm/models/api.d.ts +56 -0
- package/public/orm/models/api.js +98 -0
- package/public/orm/models/apiModule.d.ts +56 -0
- package/public/orm/models/apiModule.js +98 -0
- package/public/orm/models/apiSchema.d.ts +56 -0
- package/public/orm/models/apiSchema.js +98 -0
- package/public/orm/models/app.d.ts +56 -0
- package/public/orm/models/app.js +98 -0
- package/public/orm/models/appAchievement.d.ts +56 -0
- package/public/orm/models/appAchievement.js +98 -0
- package/public/orm/models/appAdminGrant.d.ts +56 -0
- package/public/orm/models/appAdminGrant.js +98 -0
- package/public/orm/models/appGrant.d.ts +56 -0
- package/public/orm/models/appGrant.js +98 -0
- package/public/orm/models/appLevel.d.ts +56 -0
- package/public/orm/models/appLevel.js +98 -0
- package/public/orm/models/appLevelRequirement.d.ts +56 -0
- package/public/orm/models/appLevelRequirement.js +98 -0
- package/public/orm/models/appLimit.d.ts +56 -0
- package/public/orm/models/appLimit.js +98 -0
- package/public/orm/models/appLimitDefault.d.ts +56 -0
- package/public/orm/models/appLimitDefault.js +98 -0
- package/public/orm/models/appMembership.d.ts +56 -0
- package/public/orm/models/appMembership.js +98 -0
- package/public/orm/models/appMembershipDefault.d.ts +56 -0
- package/public/orm/models/appMembershipDefault.js +98 -0
- package/public/orm/models/appOwnerGrant.d.ts +56 -0
- package/public/orm/models/appOwnerGrant.js +98 -0
- package/public/orm/models/appPermission.d.ts +56 -0
- package/public/orm/models/appPermission.js +98 -0
- package/public/orm/models/appPermissionDefault.d.ts +56 -0
- package/public/orm/models/appPermissionDefault.js +98 -0
- package/public/orm/models/appStep.d.ts +56 -0
- package/public/orm/models/appStep.js +98 -0
- package/public/orm/models/astMigration.d.ts +38 -0
- package/public/orm/models/astMigration.js +76 -0
- package/public/orm/models/auditLog.d.ts +56 -0
- package/public/orm/models/auditLog.js +98 -0
- package/public/orm/models/checkConstraint.d.ts +56 -0
- package/public/orm/models/checkConstraint.js +98 -0
- package/public/orm/models/claimedInvite.d.ts +56 -0
- package/public/orm/models/claimedInvite.js +98 -0
- package/public/orm/models/commit.d.ts +56 -0
- package/public/orm/models/commit.js +98 -0
- package/public/orm/models/connectedAccount.d.ts +56 -0
- package/public/orm/models/connectedAccount.js +98 -0
- package/public/orm/models/connectedAccountsModule.d.ts +56 -0
- package/public/orm/models/connectedAccountsModule.js +98 -0
- package/public/orm/models/cryptoAddress.d.ts +56 -0
- package/public/orm/models/cryptoAddress.js +98 -0
- package/public/orm/models/cryptoAddressesModule.d.ts +56 -0
- package/public/orm/models/cryptoAddressesModule.js +98 -0
- package/public/orm/models/cryptoAuthModule.d.ts +56 -0
- package/public/orm/models/cryptoAuthModule.js +98 -0
- package/public/orm/models/database.d.ts +56 -0
- package/public/orm/models/database.js +98 -0
- package/public/orm/models/databaseProvisionModule.d.ts +56 -0
- package/public/orm/models/databaseProvisionModule.js +98 -0
- package/public/orm/models/defaultIdsModule.d.ts +56 -0
- package/public/orm/models/defaultIdsModule.js +98 -0
- package/public/orm/models/denormalizedTableField.d.ts +56 -0
- package/public/orm/models/denormalizedTableField.js +98 -0
- package/public/orm/models/domain.d.ts +56 -0
- package/public/orm/models/domain.js +98 -0
- package/public/orm/models/email.d.ts +56 -0
- package/public/orm/models/email.js +98 -0
- package/public/orm/models/emailsModule.d.ts +56 -0
- package/public/orm/models/emailsModule.js +98 -0
- package/public/orm/models/encryptedSecretsModule.d.ts +56 -0
- package/public/orm/models/encryptedSecretsModule.js +98 -0
- package/public/orm/models/field.d.ts +56 -0
- package/public/orm/models/field.js +98 -0
- package/public/orm/models/fieldModule.d.ts +56 -0
- package/public/orm/models/fieldModule.js +98 -0
- package/public/orm/models/foreignKeyConstraint.d.ts +56 -0
- package/public/orm/models/foreignKeyConstraint.js +98 -0
- package/public/orm/models/fullTextSearch.d.ts +56 -0
- package/public/orm/models/fullTextSearch.js +98 -0
- package/public/orm/models/getAllRecord.d.ts +32 -0
- package/public/orm/models/getAllRecord.js +55 -0
- package/public/orm/models/hierarchyModule.d.ts +56 -0
- package/public/orm/models/hierarchyModule.js +98 -0
- package/public/orm/models/index.d.ts +104 -0
- package/public/orm/models/index.js +207 -0
- package/public/orm/models/indexModel.d.ts +56 -0
- package/public/orm/models/indexModel.js +98 -0
- package/public/orm/models/invite.d.ts +56 -0
- package/public/orm/models/invite.js +98 -0
- package/public/orm/models/invitesModule.d.ts +56 -0
- package/public/orm/models/invitesModule.js +98 -0
- package/public/orm/models/levelsModule.d.ts +56 -0
- package/public/orm/models/levelsModule.js +98 -0
- package/public/orm/models/limitFunction.d.ts +56 -0
- package/public/orm/models/limitFunction.js +98 -0
- package/public/orm/models/limitsModule.d.ts +56 -0
- package/public/orm/models/limitsModule.js +98 -0
- package/public/orm/models/membershipType.d.ts +56 -0
- package/public/orm/models/membershipType.js +98 -0
- package/public/orm/models/membershipTypesModule.d.ts +56 -0
- package/public/orm/models/membershipTypesModule.js +98 -0
- package/public/orm/models/membershipsModule.d.ts +56 -0
- package/public/orm/models/membershipsModule.js +98 -0
- package/public/orm/models/nodeTypeRegistry.d.ts +56 -0
- package/public/orm/models/nodeTypeRegistry.js +98 -0
- package/public/orm/models/object.d.ts +56 -0
- package/public/orm/models/object.js +88 -0
- package/public/orm/models/orgAdminGrant.d.ts +56 -0
- package/public/orm/models/orgAdminGrant.js +98 -0
- package/public/orm/models/orgClaimedInvite.d.ts +56 -0
- package/public/orm/models/orgClaimedInvite.js +98 -0
- package/public/orm/models/orgGrant.d.ts +56 -0
- package/public/orm/models/orgGrant.js +98 -0
- package/public/orm/models/orgInvite.d.ts +56 -0
- package/public/orm/models/orgInvite.js +98 -0
- package/public/orm/models/orgLimit.d.ts +56 -0
- package/public/orm/models/orgLimit.js +98 -0
- package/public/orm/models/orgLimitDefault.d.ts +56 -0
- package/public/orm/models/orgLimitDefault.js +98 -0
- package/public/orm/models/orgMember.d.ts +56 -0
- package/public/orm/models/orgMember.js +98 -0
- package/public/orm/models/orgMembership.d.ts +56 -0
- package/public/orm/models/orgMembership.js +98 -0
- package/public/orm/models/orgMembershipDefault.d.ts +56 -0
- package/public/orm/models/orgMembershipDefault.js +98 -0
- package/public/orm/models/orgOwnerGrant.d.ts +56 -0
- package/public/orm/models/orgOwnerGrant.js +98 -0
- package/public/orm/models/orgPermission.d.ts +56 -0
- package/public/orm/models/orgPermission.js +98 -0
- package/public/orm/models/orgPermissionDefault.d.ts +56 -0
- package/public/orm/models/orgPermissionDefault.js +98 -0
- package/public/orm/models/permissionsModule.d.ts +56 -0
- package/public/orm/models/permissionsModule.js +98 -0
- package/public/orm/models/phoneNumber.d.ts +56 -0
- package/public/orm/models/phoneNumber.js +98 -0
- package/public/orm/models/phoneNumbersModule.d.ts +56 -0
- package/public/orm/models/phoneNumbersModule.js +98 -0
- package/public/orm/models/policy.d.ts +56 -0
- package/public/orm/models/policy.js +98 -0
- package/public/orm/models/primaryKeyConstraint.d.ts +56 -0
- package/public/orm/models/primaryKeyConstraint.js +98 -0
- package/public/orm/models/procedure.d.ts +56 -0
- package/public/orm/models/procedure.js +98 -0
- package/public/orm/models/profilesModule.d.ts +56 -0
- package/public/orm/models/profilesModule.js +98 -0
- package/public/orm/models/ref.d.ts +56 -0
- package/public/orm/models/ref.js +98 -0
- package/public/orm/models/rlsModule.d.ts +56 -0
- package/public/orm/models/rlsModule.js +98 -0
- package/public/orm/models/roleType.d.ts +56 -0
- package/public/orm/models/roleType.js +98 -0
- package/public/orm/models/schema.d.ts +56 -0
- package/public/orm/models/schema.js +98 -0
- package/public/orm/models/schemaGrant.d.ts +56 -0
- package/public/orm/models/schemaGrant.js +98 -0
- package/public/orm/models/secretsModule.d.ts +56 -0
- package/public/orm/models/secretsModule.js +98 -0
- package/public/orm/models/sessionsModule.d.ts +56 -0
- package/public/orm/models/sessionsModule.js +98 -0
- package/public/orm/models/site.d.ts +56 -0
- package/public/orm/models/site.js +98 -0
- package/public/orm/models/siteMetadatum.d.ts +56 -0
- package/public/orm/models/siteMetadatum.js +98 -0
- package/public/orm/models/siteModule.d.ts +56 -0
- package/public/orm/models/siteModule.js +98 -0
- package/public/orm/models/siteTheme.d.ts +56 -0
- package/public/orm/models/siteTheme.js +98 -0
- package/public/orm/models/sqlMigration.d.ts +38 -0
- package/public/orm/models/sqlMigration.js +76 -0
- package/public/orm/models/store.d.ts +56 -0
- package/public/orm/models/store.js +98 -0
- package/public/orm/models/table.d.ts +56 -0
- package/public/orm/models/table.js +98 -0
- package/public/orm/models/tableGrant.d.ts +56 -0
- package/public/orm/models/tableGrant.js +98 -0
- package/public/orm/models/tableModule.d.ts +56 -0
- package/public/orm/models/tableModule.js +98 -0
- package/public/orm/models/tableTemplateModule.d.ts +56 -0
- package/public/orm/models/tableTemplateModule.js +98 -0
- package/public/orm/models/trigger.d.ts +56 -0
- package/public/orm/models/trigger.js +98 -0
- package/public/orm/models/triggerFunction.d.ts +56 -0
- package/public/orm/models/triggerFunction.js +98 -0
- package/public/orm/models/uniqueConstraint.d.ts +56 -0
- package/public/orm/models/uniqueConstraint.js +98 -0
- package/public/orm/models/user.d.ts +56 -0
- package/public/orm/models/user.js +98 -0
- package/public/orm/models/userAuthModule.d.ts +56 -0
- package/public/orm/models/userAuthModule.js +98 -0
- package/public/orm/models/usersModule.d.ts +56 -0
- package/public/orm/models/usersModule.js +98 -0
- package/public/orm/models/uuidModule.d.ts +56 -0
- package/public/orm/models/uuidModule.js +98 -0
- package/public/orm/models/view.d.ts +56 -0
- package/public/orm/models/view.js +98 -0
- package/public/orm/models/viewGrant.d.ts +56 -0
- package/public/orm/models/viewGrant.js +98 -0
- package/public/orm/models/viewRule.d.ts +56 -0
- package/public/orm/models/viewRule.js +98 -0
- package/public/orm/models/viewTable.d.ts +56 -0
- package/public/orm/models/viewTable.js +98 -0
- package/public/orm/mutation/index.d.ts +259 -0
- package/public/orm/mutation/index.js +381 -0
- package/public/orm/query/index.d.ts +168 -0
- package/public/orm/query/index.js +305 -0
- package/public/orm/query-builder.d.ts +89 -0
- package/public/orm/query-builder.js +611 -0
- package/public/orm/select-types.d.ts +101 -0
- package/public/orm/select-types.js +2 -0
- package/public/orm/types.d.ts +6 -0
- package/public/orm/types.js +23 -0
|
@@ -0,0 +1,909 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GraphQL types for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
export interface StringFilter {
|
|
7
|
+
isNull?: boolean;
|
|
8
|
+
equalTo?: string;
|
|
9
|
+
notEqualTo?: string;
|
|
10
|
+
distinctFrom?: string;
|
|
11
|
+
notDistinctFrom?: string;
|
|
12
|
+
in?: string[];
|
|
13
|
+
notIn?: string[];
|
|
14
|
+
lessThan?: string;
|
|
15
|
+
lessThanOrEqualTo?: string;
|
|
16
|
+
greaterThan?: string;
|
|
17
|
+
greaterThanOrEqualTo?: string;
|
|
18
|
+
includes?: string;
|
|
19
|
+
notIncludes?: string;
|
|
20
|
+
includesInsensitive?: string;
|
|
21
|
+
notIncludesInsensitive?: string;
|
|
22
|
+
startsWith?: string;
|
|
23
|
+
notStartsWith?: string;
|
|
24
|
+
startsWithInsensitive?: string;
|
|
25
|
+
notStartsWithInsensitive?: string;
|
|
26
|
+
endsWith?: string;
|
|
27
|
+
notEndsWith?: string;
|
|
28
|
+
endsWithInsensitive?: string;
|
|
29
|
+
notEndsWithInsensitive?: string;
|
|
30
|
+
like?: string;
|
|
31
|
+
notLike?: string;
|
|
32
|
+
likeInsensitive?: string;
|
|
33
|
+
notLikeInsensitive?: string;
|
|
34
|
+
}
|
|
35
|
+
export interface IntFilter {
|
|
36
|
+
isNull?: boolean;
|
|
37
|
+
equalTo?: number;
|
|
38
|
+
notEqualTo?: number;
|
|
39
|
+
distinctFrom?: number;
|
|
40
|
+
notDistinctFrom?: number;
|
|
41
|
+
in?: number[];
|
|
42
|
+
notIn?: number[];
|
|
43
|
+
lessThan?: number;
|
|
44
|
+
lessThanOrEqualTo?: number;
|
|
45
|
+
greaterThan?: number;
|
|
46
|
+
greaterThanOrEqualTo?: number;
|
|
47
|
+
}
|
|
48
|
+
export interface FloatFilter {
|
|
49
|
+
isNull?: boolean;
|
|
50
|
+
equalTo?: number;
|
|
51
|
+
notEqualTo?: number;
|
|
52
|
+
distinctFrom?: number;
|
|
53
|
+
notDistinctFrom?: number;
|
|
54
|
+
in?: number[];
|
|
55
|
+
notIn?: number[];
|
|
56
|
+
lessThan?: number;
|
|
57
|
+
lessThanOrEqualTo?: number;
|
|
58
|
+
greaterThan?: number;
|
|
59
|
+
greaterThanOrEqualTo?: number;
|
|
60
|
+
}
|
|
61
|
+
export interface BooleanFilter {
|
|
62
|
+
isNull?: boolean;
|
|
63
|
+
equalTo?: boolean;
|
|
64
|
+
notEqualTo?: boolean;
|
|
65
|
+
}
|
|
66
|
+
export interface UUIDFilter {
|
|
67
|
+
isNull?: boolean;
|
|
68
|
+
equalTo?: string;
|
|
69
|
+
notEqualTo?: string;
|
|
70
|
+
distinctFrom?: string;
|
|
71
|
+
notDistinctFrom?: string;
|
|
72
|
+
in?: string[];
|
|
73
|
+
notIn?: string[];
|
|
74
|
+
}
|
|
75
|
+
export interface DatetimeFilter {
|
|
76
|
+
isNull?: boolean;
|
|
77
|
+
equalTo?: string;
|
|
78
|
+
notEqualTo?: string;
|
|
79
|
+
distinctFrom?: string;
|
|
80
|
+
notDistinctFrom?: string;
|
|
81
|
+
in?: string[];
|
|
82
|
+
notIn?: string[];
|
|
83
|
+
lessThan?: string;
|
|
84
|
+
lessThanOrEqualTo?: string;
|
|
85
|
+
greaterThan?: string;
|
|
86
|
+
greaterThanOrEqualTo?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface DateFilter {
|
|
89
|
+
isNull?: boolean;
|
|
90
|
+
equalTo?: string;
|
|
91
|
+
notEqualTo?: string;
|
|
92
|
+
distinctFrom?: string;
|
|
93
|
+
notDistinctFrom?: string;
|
|
94
|
+
in?: string[];
|
|
95
|
+
notIn?: string[];
|
|
96
|
+
lessThan?: string;
|
|
97
|
+
lessThanOrEqualTo?: string;
|
|
98
|
+
greaterThan?: string;
|
|
99
|
+
greaterThanOrEqualTo?: string;
|
|
100
|
+
}
|
|
101
|
+
export interface JSONFilter {
|
|
102
|
+
isNull?: boolean;
|
|
103
|
+
equalTo?: Record<string, unknown>;
|
|
104
|
+
notEqualTo?: Record<string, unknown>;
|
|
105
|
+
distinctFrom?: Record<string, unknown>;
|
|
106
|
+
notDistinctFrom?: Record<string, unknown>;
|
|
107
|
+
contains?: Record<string, unknown>;
|
|
108
|
+
containedBy?: Record<string, unknown>;
|
|
109
|
+
containsKey?: string;
|
|
110
|
+
containsAllKeys?: string[];
|
|
111
|
+
containsAnyKeys?: string[];
|
|
112
|
+
}
|
|
113
|
+
export interface BigIntFilter {
|
|
114
|
+
isNull?: boolean;
|
|
115
|
+
equalTo?: string;
|
|
116
|
+
notEqualTo?: string;
|
|
117
|
+
distinctFrom?: string;
|
|
118
|
+
notDistinctFrom?: string;
|
|
119
|
+
in?: string[];
|
|
120
|
+
notIn?: string[];
|
|
121
|
+
lessThan?: string;
|
|
122
|
+
lessThanOrEqualTo?: string;
|
|
123
|
+
greaterThan?: string;
|
|
124
|
+
greaterThanOrEqualTo?: string;
|
|
125
|
+
}
|
|
126
|
+
export interface BigFloatFilter {
|
|
127
|
+
isNull?: boolean;
|
|
128
|
+
equalTo?: string;
|
|
129
|
+
notEqualTo?: string;
|
|
130
|
+
distinctFrom?: string;
|
|
131
|
+
notDistinctFrom?: string;
|
|
132
|
+
in?: string[];
|
|
133
|
+
notIn?: string[];
|
|
134
|
+
lessThan?: string;
|
|
135
|
+
lessThanOrEqualTo?: string;
|
|
136
|
+
greaterThan?: string;
|
|
137
|
+
greaterThanOrEqualTo?: string;
|
|
138
|
+
}
|
|
139
|
+
export interface BitStringFilter {
|
|
140
|
+
isNull?: boolean;
|
|
141
|
+
equalTo?: string;
|
|
142
|
+
notEqualTo?: string;
|
|
143
|
+
}
|
|
144
|
+
export interface InternetAddressFilter {
|
|
145
|
+
isNull?: boolean;
|
|
146
|
+
equalTo?: string;
|
|
147
|
+
notEqualTo?: string;
|
|
148
|
+
distinctFrom?: string;
|
|
149
|
+
notDistinctFrom?: string;
|
|
150
|
+
in?: string[];
|
|
151
|
+
notIn?: string[];
|
|
152
|
+
lessThan?: string;
|
|
153
|
+
lessThanOrEqualTo?: string;
|
|
154
|
+
greaterThan?: string;
|
|
155
|
+
greaterThanOrEqualTo?: string;
|
|
156
|
+
contains?: string;
|
|
157
|
+
containsOrEqualTo?: string;
|
|
158
|
+
containedBy?: string;
|
|
159
|
+
containedByOrEqualTo?: string;
|
|
160
|
+
containsOrContainedBy?: string;
|
|
161
|
+
}
|
|
162
|
+
export interface FullTextFilter {
|
|
163
|
+
matches?: string;
|
|
164
|
+
}
|
|
165
|
+
export interface StringListFilter {
|
|
166
|
+
isNull?: boolean;
|
|
167
|
+
equalTo?: string[];
|
|
168
|
+
notEqualTo?: string[];
|
|
169
|
+
distinctFrom?: string[];
|
|
170
|
+
notDistinctFrom?: string[];
|
|
171
|
+
lessThan?: string[];
|
|
172
|
+
lessThanOrEqualTo?: string[];
|
|
173
|
+
greaterThan?: string[];
|
|
174
|
+
greaterThanOrEqualTo?: string[];
|
|
175
|
+
contains?: string[];
|
|
176
|
+
containedBy?: string[];
|
|
177
|
+
overlaps?: string[];
|
|
178
|
+
anyEqualTo?: string;
|
|
179
|
+
anyNotEqualTo?: string;
|
|
180
|
+
anyLessThan?: string;
|
|
181
|
+
anyLessThanOrEqualTo?: string;
|
|
182
|
+
anyGreaterThan?: string;
|
|
183
|
+
anyGreaterThanOrEqualTo?: string;
|
|
184
|
+
}
|
|
185
|
+
export interface IntListFilter {
|
|
186
|
+
isNull?: boolean;
|
|
187
|
+
equalTo?: number[];
|
|
188
|
+
notEqualTo?: number[];
|
|
189
|
+
distinctFrom?: number[];
|
|
190
|
+
notDistinctFrom?: number[];
|
|
191
|
+
lessThan?: number[];
|
|
192
|
+
lessThanOrEqualTo?: number[];
|
|
193
|
+
greaterThan?: number[];
|
|
194
|
+
greaterThanOrEqualTo?: number[];
|
|
195
|
+
contains?: number[];
|
|
196
|
+
containedBy?: number[];
|
|
197
|
+
overlaps?: number[];
|
|
198
|
+
anyEqualTo?: number;
|
|
199
|
+
anyNotEqualTo?: number;
|
|
200
|
+
anyLessThan?: number;
|
|
201
|
+
anyLessThanOrEqualTo?: number;
|
|
202
|
+
anyGreaterThan?: number;
|
|
203
|
+
anyGreaterThanOrEqualTo?: number;
|
|
204
|
+
}
|
|
205
|
+
export interface UUIDListFilter {
|
|
206
|
+
isNull?: boolean;
|
|
207
|
+
equalTo?: string[];
|
|
208
|
+
notEqualTo?: string[];
|
|
209
|
+
distinctFrom?: string[];
|
|
210
|
+
notDistinctFrom?: string[];
|
|
211
|
+
lessThan?: string[];
|
|
212
|
+
lessThanOrEqualTo?: string[];
|
|
213
|
+
greaterThan?: string[];
|
|
214
|
+
greaterThanOrEqualTo?: string[];
|
|
215
|
+
contains?: string[];
|
|
216
|
+
containedBy?: string[];
|
|
217
|
+
overlaps?: string[];
|
|
218
|
+
anyEqualTo?: string;
|
|
219
|
+
anyNotEqualTo?: string;
|
|
220
|
+
anyLessThan?: string;
|
|
221
|
+
anyLessThanOrEqualTo?: string;
|
|
222
|
+
anyGreaterThan?: string;
|
|
223
|
+
anyGreaterThanOrEqualTo?: string;
|
|
224
|
+
}
|
|
225
|
+
export interface GetAllRecord {
|
|
226
|
+
path?: string | null;
|
|
227
|
+
data?: Record<string, unknown> | null;
|
|
228
|
+
}
|
|
229
|
+
export interface Object {
|
|
230
|
+
hashUuid?: string | null;
|
|
231
|
+
id: string;
|
|
232
|
+
databaseId?: string | null;
|
|
233
|
+
kids?: string | null;
|
|
234
|
+
ktree?: string | null;
|
|
235
|
+
data?: Record<string, unknown> | null;
|
|
236
|
+
frzn?: boolean | null;
|
|
237
|
+
createdAt?: string | null;
|
|
238
|
+
}
|
|
239
|
+
export interface Ref {
|
|
240
|
+
id: string;
|
|
241
|
+
name?: string | null;
|
|
242
|
+
databaseId?: string | null;
|
|
243
|
+
storeId?: string | null;
|
|
244
|
+
commitId?: string | null;
|
|
245
|
+
}
|
|
246
|
+
export interface Store {
|
|
247
|
+
id: string;
|
|
248
|
+
name?: string | null;
|
|
249
|
+
databaseId?: string | null;
|
|
250
|
+
hash?: string | null;
|
|
251
|
+
createdAt?: string | null;
|
|
252
|
+
}
|
|
253
|
+
export interface Commit {
|
|
254
|
+
id: string;
|
|
255
|
+
message?: string | null;
|
|
256
|
+
databaseId?: string | null;
|
|
257
|
+
storeId?: string | null;
|
|
258
|
+
parentIds?: string | null;
|
|
259
|
+
authorId?: string | null;
|
|
260
|
+
committerId?: string | null;
|
|
261
|
+
treeId?: string | null;
|
|
262
|
+
date?: string | null;
|
|
263
|
+
}
|
|
264
|
+
export interface ConnectionResult<T> {
|
|
265
|
+
nodes: T[];
|
|
266
|
+
totalCount: number;
|
|
267
|
+
pageInfo: PageInfo;
|
|
268
|
+
}
|
|
269
|
+
export interface PageInfo {
|
|
270
|
+
hasNextPage: boolean;
|
|
271
|
+
hasPreviousPage: boolean;
|
|
272
|
+
startCursor?: string | null;
|
|
273
|
+
endCursor?: string | null;
|
|
274
|
+
}
|
|
275
|
+
export interface GetAllRecordRelations {
|
|
276
|
+
}
|
|
277
|
+
export interface ObjectRelations {
|
|
278
|
+
}
|
|
279
|
+
export interface RefRelations {
|
|
280
|
+
}
|
|
281
|
+
export interface StoreRelations {
|
|
282
|
+
}
|
|
283
|
+
export interface CommitRelations {
|
|
284
|
+
}
|
|
285
|
+
export type GetAllRecordWithRelations = GetAllRecord & GetAllRecordRelations;
|
|
286
|
+
export type ObjectWithRelations = Object & ObjectRelations;
|
|
287
|
+
export type RefWithRelations = Ref & RefRelations;
|
|
288
|
+
export type StoreWithRelations = Store & StoreRelations;
|
|
289
|
+
export type CommitWithRelations = Commit & CommitRelations;
|
|
290
|
+
export type GetAllRecordSelect = {
|
|
291
|
+
path?: boolean;
|
|
292
|
+
data?: boolean;
|
|
293
|
+
};
|
|
294
|
+
export type ObjectSelect = {
|
|
295
|
+
hashUuid?: boolean;
|
|
296
|
+
id?: boolean;
|
|
297
|
+
databaseId?: boolean;
|
|
298
|
+
kids?: boolean;
|
|
299
|
+
ktree?: boolean;
|
|
300
|
+
data?: boolean;
|
|
301
|
+
frzn?: boolean;
|
|
302
|
+
createdAt?: boolean;
|
|
303
|
+
};
|
|
304
|
+
export type RefSelect = {
|
|
305
|
+
id?: boolean;
|
|
306
|
+
name?: boolean;
|
|
307
|
+
databaseId?: boolean;
|
|
308
|
+
storeId?: boolean;
|
|
309
|
+
commitId?: boolean;
|
|
310
|
+
};
|
|
311
|
+
export type StoreSelect = {
|
|
312
|
+
id?: boolean;
|
|
313
|
+
name?: boolean;
|
|
314
|
+
databaseId?: boolean;
|
|
315
|
+
hash?: boolean;
|
|
316
|
+
createdAt?: boolean;
|
|
317
|
+
};
|
|
318
|
+
export type CommitSelect = {
|
|
319
|
+
id?: boolean;
|
|
320
|
+
message?: boolean;
|
|
321
|
+
databaseId?: boolean;
|
|
322
|
+
storeId?: boolean;
|
|
323
|
+
parentIds?: boolean;
|
|
324
|
+
authorId?: boolean;
|
|
325
|
+
committerId?: boolean;
|
|
326
|
+
treeId?: boolean;
|
|
327
|
+
date?: boolean;
|
|
328
|
+
};
|
|
329
|
+
export interface GetAllRecordFilter {
|
|
330
|
+
path?: StringFilter;
|
|
331
|
+
data?: JSONFilter;
|
|
332
|
+
and?: GetAllRecordFilter[];
|
|
333
|
+
or?: GetAllRecordFilter[];
|
|
334
|
+
not?: GetAllRecordFilter;
|
|
335
|
+
}
|
|
336
|
+
export interface ObjectFilter {
|
|
337
|
+
hashUuid?: UUIDFilter;
|
|
338
|
+
id?: UUIDFilter;
|
|
339
|
+
databaseId?: UUIDFilter;
|
|
340
|
+
kids?: UUIDFilter;
|
|
341
|
+
ktree?: StringFilter;
|
|
342
|
+
data?: JSONFilter;
|
|
343
|
+
frzn?: BooleanFilter;
|
|
344
|
+
createdAt?: DatetimeFilter;
|
|
345
|
+
and?: ObjectFilter[];
|
|
346
|
+
or?: ObjectFilter[];
|
|
347
|
+
not?: ObjectFilter;
|
|
348
|
+
}
|
|
349
|
+
export interface RefFilter {
|
|
350
|
+
id?: UUIDFilter;
|
|
351
|
+
name?: StringFilter;
|
|
352
|
+
databaseId?: UUIDFilter;
|
|
353
|
+
storeId?: UUIDFilter;
|
|
354
|
+
commitId?: UUIDFilter;
|
|
355
|
+
and?: RefFilter[];
|
|
356
|
+
or?: RefFilter[];
|
|
357
|
+
not?: RefFilter;
|
|
358
|
+
}
|
|
359
|
+
export interface StoreFilter {
|
|
360
|
+
id?: UUIDFilter;
|
|
361
|
+
name?: StringFilter;
|
|
362
|
+
databaseId?: UUIDFilter;
|
|
363
|
+
hash?: UUIDFilter;
|
|
364
|
+
createdAt?: DatetimeFilter;
|
|
365
|
+
and?: StoreFilter[];
|
|
366
|
+
or?: StoreFilter[];
|
|
367
|
+
not?: StoreFilter;
|
|
368
|
+
}
|
|
369
|
+
export interface CommitFilter {
|
|
370
|
+
id?: UUIDFilter;
|
|
371
|
+
message?: StringFilter;
|
|
372
|
+
databaseId?: UUIDFilter;
|
|
373
|
+
storeId?: UUIDFilter;
|
|
374
|
+
parentIds?: UUIDFilter;
|
|
375
|
+
authorId?: UUIDFilter;
|
|
376
|
+
committerId?: UUIDFilter;
|
|
377
|
+
treeId?: UUIDFilter;
|
|
378
|
+
date?: DatetimeFilter;
|
|
379
|
+
and?: CommitFilter[];
|
|
380
|
+
or?: CommitFilter[];
|
|
381
|
+
not?: CommitFilter;
|
|
382
|
+
}
|
|
383
|
+
export interface GetAllRecordCondition {
|
|
384
|
+
path?: string | null;
|
|
385
|
+
data?: unknown | null;
|
|
386
|
+
}
|
|
387
|
+
export interface ObjectCondition {
|
|
388
|
+
hashUuid?: string | null;
|
|
389
|
+
id?: string | null;
|
|
390
|
+
databaseId?: string | null;
|
|
391
|
+
kids?: string | null;
|
|
392
|
+
ktree?: string | null;
|
|
393
|
+
data?: unknown | null;
|
|
394
|
+
frzn?: boolean | null;
|
|
395
|
+
createdAt?: string | null;
|
|
396
|
+
}
|
|
397
|
+
export interface RefCondition {
|
|
398
|
+
id?: string | null;
|
|
399
|
+
name?: string | null;
|
|
400
|
+
databaseId?: string | null;
|
|
401
|
+
storeId?: string | null;
|
|
402
|
+
commitId?: string | null;
|
|
403
|
+
}
|
|
404
|
+
export interface StoreCondition {
|
|
405
|
+
id?: string | null;
|
|
406
|
+
name?: string | null;
|
|
407
|
+
databaseId?: string | null;
|
|
408
|
+
hash?: string | null;
|
|
409
|
+
createdAt?: string | null;
|
|
410
|
+
}
|
|
411
|
+
export interface CommitCondition {
|
|
412
|
+
id?: string | null;
|
|
413
|
+
message?: string | null;
|
|
414
|
+
databaseId?: string | null;
|
|
415
|
+
storeId?: string | null;
|
|
416
|
+
parentIds?: string | null;
|
|
417
|
+
authorId?: string | null;
|
|
418
|
+
committerId?: string | null;
|
|
419
|
+
treeId?: string | null;
|
|
420
|
+
date?: string | null;
|
|
421
|
+
}
|
|
422
|
+
export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'DATA_ASC' | 'DATA_DESC';
|
|
423
|
+
export type ObjectOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'HASH_UUID_ASC' | 'HASH_UUID_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';
|
|
424
|
+
export type RefOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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';
|
|
425
|
+
export type StoreOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
426
|
+
export type CommitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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';
|
|
427
|
+
export interface CreateGetAllRecordInput {
|
|
428
|
+
clientMutationId?: string;
|
|
429
|
+
getAllRecord: {
|
|
430
|
+
path?: string;
|
|
431
|
+
data?: Record<string, unknown>;
|
|
432
|
+
};
|
|
433
|
+
}
|
|
434
|
+
export interface GetAllRecordPatch {
|
|
435
|
+
path?: string | null;
|
|
436
|
+
data?: Record<string, unknown> | null;
|
|
437
|
+
}
|
|
438
|
+
export interface UpdateGetAllRecordInput {
|
|
439
|
+
clientMutationId?: string;
|
|
440
|
+
id: string;
|
|
441
|
+
getAllRecordPatch: GetAllRecordPatch;
|
|
442
|
+
}
|
|
443
|
+
export interface DeleteGetAllRecordInput {
|
|
444
|
+
clientMutationId?: string;
|
|
445
|
+
id: string;
|
|
446
|
+
}
|
|
447
|
+
export interface CreateObjectInput {
|
|
448
|
+
clientMutationId?: string;
|
|
449
|
+
object: {
|
|
450
|
+
databaseId: string;
|
|
451
|
+
kids?: string[];
|
|
452
|
+
ktree?: string[];
|
|
453
|
+
data?: Record<string, unknown>;
|
|
454
|
+
frzn?: boolean;
|
|
455
|
+
};
|
|
456
|
+
}
|
|
457
|
+
export interface ObjectPatch {
|
|
458
|
+
hashUuid?: string | null;
|
|
459
|
+
databaseId?: string | null;
|
|
460
|
+
kids?: string | null;
|
|
461
|
+
ktree?: string | null;
|
|
462
|
+
data?: Record<string, unknown> | null;
|
|
463
|
+
frzn?: boolean | null;
|
|
464
|
+
}
|
|
465
|
+
export interface UpdateObjectInput {
|
|
466
|
+
clientMutationId?: string;
|
|
467
|
+
id: string;
|
|
468
|
+
objectPatch: ObjectPatch;
|
|
469
|
+
}
|
|
470
|
+
export interface DeleteObjectInput {
|
|
471
|
+
clientMutationId?: string;
|
|
472
|
+
id: string;
|
|
473
|
+
}
|
|
474
|
+
export interface CreateRefInput {
|
|
475
|
+
clientMutationId?: string;
|
|
476
|
+
ref: {
|
|
477
|
+
name: string;
|
|
478
|
+
databaseId: string;
|
|
479
|
+
storeId: string;
|
|
480
|
+
commitId?: string;
|
|
481
|
+
};
|
|
482
|
+
}
|
|
483
|
+
export interface RefPatch {
|
|
484
|
+
name?: string | null;
|
|
485
|
+
databaseId?: string | null;
|
|
486
|
+
storeId?: string | null;
|
|
487
|
+
commitId?: string | null;
|
|
488
|
+
}
|
|
489
|
+
export interface UpdateRefInput {
|
|
490
|
+
clientMutationId?: string;
|
|
491
|
+
id: string;
|
|
492
|
+
refPatch: RefPatch;
|
|
493
|
+
}
|
|
494
|
+
export interface DeleteRefInput {
|
|
495
|
+
clientMutationId?: string;
|
|
496
|
+
id: string;
|
|
497
|
+
}
|
|
498
|
+
export interface CreateStoreInput {
|
|
499
|
+
clientMutationId?: string;
|
|
500
|
+
store: {
|
|
501
|
+
name: string;
|
|
502
|
+
databaseId: string;
|
|
503
|
+
hash?: string;
|
|
504
|
+
};
|
|
505
|
+
}
|
|
506
|
+
export interface StorePatch {
|
|
507
|
+
name?: string | null;
|
|
508
|
+
databaseId?: string | null;
|
|
509
|
+
hash?: string | null;
|
|
510
|
+
}
|
|
511
|
+
export interface UpdateStoreInput {
|
|
512
|
+
clientMutationId?: string;
|
|
513
|
+
id: string;
|
|
514
|
+
storePatch: StorePatch;
|
|
515
|
+
}
|
|
516
|
+
export interface DeleteStoreInput {
|
|
517
|
+
clientMutationId?: string;
|
|
518
|
+
id: string;
|
|
519
|
+
}
|
|
520
|
+
export interface CreateCommitInput {
|
|
521
|
+
clientMutationId?: string;
|
|
522
|
+
commit: {
|
|
523
|
+
message?: string;
|
|
524
|
+
databaseId: string;
|
|
525
|
+
storeId: string;
|
|
526
|
+
parentIds?: string[];
|
|
527
|
+
authorId?: string;
|
|
528
|
+
committerId?: string;
|
|
529
|
+
treeId?: string;
|
|
530
|
+
date?: string;
|
|
531
|
+
};
|
|
532
|
+
}
|
|
533
|
+
export interface CommitPatch {
|
|
534
|
+
message?: string | null;
|
|
535
|
+
databaseId?: string | null;
|
|
536
|
+
storeId?: string | null;
|
|
537
|
+
parentIds?: string | null;
|
|
538
|
+
authorId?: string | null;
|
|
539
|
+
committerId?: string | null;
|
|
540
|
+
treeId?: string | null;
|
|
541
|
+
date?: string | null;
|
|
542
|
+
}
|
|
543
|
+
export interface UpdateCommitInput {
|
|
544
|
+
clientMutationId?: string;
|
|
545
|
+
id: string;
|
|
546
|
+
commitPatch: CommitPatch;
|
|
547
|
+
}
|
|
548
|
+
export interface DeleteCommitInput {
|
|
549
|
+
clientMutationId?: string;
|
|
550
|
+
id: string;
|
|
551
|
+
}
|
|
552
|
+
export declare const connectionFieldsMap: Record<string, Record<string, string>>;
|
|
553
|
+
export interface FreezeObjectsInput {
|
|
554
|
+
clientMutationId?: string;
|
|
555
|
+
databaseId?: string;
|
|
556
|
+
id?: string;
|
|
557
|
+
}
|
|
558
|
+
export interface InitEmptyRepoInput {
|
|
559
|
+
clientMutationId?: string;
|
|
560
|
+
dbId?: string;
|
|
561
|
+
storeId?: string;
|
|
562
|
+
}
|
|
563
|
+
export interface RemoveNodeAtPathInput {
|
|
564
|
+
clientMutationId?: string;
|
|
565
|
+
dbId?: string;
|
|
566
|
+
root?: string;
|
|
567
|
+
path?: string[];
|
|
568
|
+
}
|
|
569
|
+
export interface SetDataAtPathInput {
|
|
570
|
+
clientMutationId?: string;
|
|
571
|
+
dbId?: string;
|
|
572
|
+
root?: string;
|
|
573
|
+
path?: string[];
|
|
574
|
+
data?: Record<string, unknown>;
|
|
575
|
+
}
|
|
576
|
+
export interface SetPropsAndCommitInput {
|
|
577
|
+
clientMutationId?: string;
|
|
578
|
+
dbId?: string;
|
|
579
|
+
storeId?: string;
|
|
580
|
+
refname?: string;
|
|
581
|
+
path?: string[];
|
|
582
|
+
data?: Record<string, unknown>;
|
|
583
|
+
}
|
|
584
|
+
export interface InsertNodeAtPathInput {
|
|
585
|
+
clientMutationId?: string;
|
|
586
|
+
dbId?: string;
|
|
587
|
+
root?: string;
|
|
588
|
+
path?: string[];
|
|
589
|
+
data?: Record<string, unknown>;
|
|
590
|
+
kids?: string[];
|
|
591
|
+
ktree?: string[];
|
|
592
|
+
}
|
|
593
|
+
export interface UpdateNodeAtPathInput {
|
|
594
|
+
clientMutationId?: string;
|
|
595
|
+
dbId?: string;
|
|
596
|
+
root?: string;
|
|
597
|
+
path?: string[];
|
|
598
|
+
data?: Record<string, unknown>;
|
|
599
|
+
kids?: string[];
|
|
600
|
+
ktree?: string[];
|
|
601
|
+
}
|
|
602
|
+
export interface SetAndCommitInput {
|
|
603
|
+
clientMutationId?: string;
|
|
604
|
+
dbId?: string;
|
|
605
|
+
storeId?: string;
|
|
606
|
+
refname?: string;
|
|
607
|
+
path?: string[];
|
|
608
|
+
data?: Record<string, unknown>;
|
|
609
|
+
kids?: string[];
|
|
610
|
+
ktree?: string[];
|
|
611
|
+
}
|
|
612
|
+
export interface ObjectConnection {
|
|
613
|
+
nodes: Object[];
|
|
614
|
+
edges: ObjectEdge[];
|
|
615
|
+
pageInfo: PageInfo;
|
|
616
|
+
totalCount: number;
|
|
617
|
+
}
|
|
618
|
+
export type ObjectConnectionSelect = {
|
|
619
|
+
nodes?: {
|
|
620
|
+
select: ObjectSelect;
|
|
621
|
+
};
|
|
622
|
+
edges?: {
|
|
623
|
+
select: ObjectEdgeSelect;
|
|
624
|
+
};
|
|
625
|
+
pageInfo?: {
|
|
626
|
+
select: PageInfoSelect;
|
|
627
|
+
};
|
|
628
|
+
totalCount?: boolean;
|
|
629
|
+
};
|
|
630
|
+
export interface FreezeObjectsPayload {
|
|
631
|
+
clientMutationId?: string | null;
|
|
632
|
+
}
|
|
633
|
+
export type FreezeObjectsPayloadSelect = {
|
|
634
|
+
clientMutationId?: boolean;
|
|
635
|
+
};
|
|
636
|
+
export interface InitEmptyRepoPayload {
|
|
637
|
+
clientMutationId?: string | null;
|
|
638
|
+
}
|
|
639
|
+
export type InitEmptyRepoPayloadSelect = {
|
|
640
|
+
clientMutationId?: boolean;
|
|
641
|
+
};
|
|
642
|
+
export interface RemoveNodeAtPathPayload {
|
|
643
|
+
clientMutationId?: string | null;
|
|
644
|
+
result?: string | null;
|
|
645
|
+
}
|
|
646
|
+
export type RemoveNodeAtPathPayloadSelect = {
|
|
647
|
+
clientMutationId?: boolean;
|
|
648
|
+
result?: boolean;
|
|
649
|
+
};
|
|
650
|
+
export interface SetDataAtPathPayload {
|
|
651
|
+
clientMutationId?: string | null;
|
|
652
|
+
result?: string | null;
|
|
653
|
+
}
|
|
654
|
+
export type SetDataAtPathPayloadSelect = {
|
|
655
|
+
clientMutationId?: boolean;
|
|
656
|
+
result?: boolean;
|
|
657
|
+
};
|
|
658
|
+
export interface SetPropsAndCommitPayload {
|
|
659
|
+
clientMutationId?: string | null;
|
|
660
|
+
result?: string | null;
|
|
661
|
+
}
|
|
662
|
+
export type SetPropsAndCommitPayloadSelect = {
|
|
663
|
+
clientMutationId?: boolean;
|
|
664
|
+
result?: boolean;
|
|
665
|
+
};
|
|
666
|
+
export interface InsertNodeAtPathPayload {
|
|
667
|
+
clientMutationId?: string | null;
|
|
668
|
+
result?: string | null;
|
|
669
|
+
}
|
|
670
|
+
export type InsertNodeAtPathPayloadSelect = {
|
|
671
|
+
clientMutationId?: boolean;
|
|
672
|
+
result?: boolean;
|
|
673
|
+
};
|
|
674
|
+
export interface UpdateNodeAtPathPayload {
|
|
675
|
+
clientMutationId?: string | null;
|
|
676
|
+
result?: string | null;
|
|
677
|
+
}
|
|
678
|
+
export type UpdateNodeAtPathPayloadSelect = {
|
|
679
|
+
clientMutationId?: boolean;
|
|
680
|
+
result?: boolean;
|
|
681
|
+
};
|
|
682
|
+
export interface SetAndCommitPayload {
|
|
683
|
+
clientMutationId?: string | null;
|
|
684
|
+
result?: string | null;
|
|
685
|
+
}
|
|
686
|
+
export type SetAndCommitPayloadSelect = {
|
|
687
|
+
clientMutationId?: boolean;
|
|
688
|
+
result?: boolean;
|
|
689
|
+
};
|
|
690
|
+
export interface CreateObjectPayload {
|
|
691
|
+
clientMutationId?: string | null;
|
|
692
|
+
object?: Object | null;
|
|
693
|
+
objectEdge?: ObjectEdge | null;
|
|
694
|
+
}
|
|
695
|
+
export type CreateObjectPayloadSelect = {
|
|
696
|
+
clientMutationId?: boolean;
|
|
697
|
+
object?: {
|
|
698
|
+
select: ObjectSelect;
|
|
699
|
+
};
|
|
700
|
+
objectEdge?: {
|
|
701
|
+
select: ObjectEdgeSelect;
|
|
702
|
+
};
|
|
703
|
+
};
|
|
704
|
+
export interface UpdateObjectPayload {
|
|
705
|
+
clientMutationId?: string | null;
|
|
706
|
+
object?: Object | null;
|
|
707
|
+
objectEdge?: ObjectEdge | null;
|
|
708
|
+
}
|
|
709
|
+
export type UpdateObjectPayloadSelect = {
|
|
710
|
+
clientMutationId?: boolean;
|
|
711
|
+
object?: {
|
|
712
|
+
select: ObjectSelect;
|
|
713
|
+
};
|
|
714
|
+
objectEdge?: {
|
|
715
|
+
select: ObjectEdgeSelect;
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
export interface DeleteObjectPayload {
|
|
719
|
+
clientMutationId?: string | null;
|
|
720
|
+
object?: Object | null;
|
|
721
|
+
objectEdge?: ObjectEdge | null;
|
|
722
|
+
}
|
|
723
|
+
export type DeleteObjectPayloadSelect = {
|
|
724
|
+
clientMutationId?: boolean;
|
|
725
|
+
object?: {
|
|
726
|
+
select: ObjectSelect;
|
|
727
|
+
};
|
|
728
|
+
objectEdge?: {
|
|
729
|
+
select: ObjectEdgeSelect;
|
|
730
|
+
};
|
|
731
|
+
};
|
|
732
|
+
export interface CreateRefPayload {
|
|
733
|
+
clientMutationId?: string | null;
|
|
734
|
+
ref?: Ref | null;
|
|
735
|
+
refEdge?: RefEdge | null;
|
|
736
|
+
}
|
|
737
|
+
export type CreateRefPayloadSelect = {
|
|
738
|
+
clientMutationId?: boolean;
|
|
739
|
+
ref?: {
|
|
740
|
+
select: RefSelect;
|
|
741
|
+
};
|
|
742
|
+
refEdge?: {
|
|
743
|
+
select: RefEdgeSelect;
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
export interface UpdateRefPayload {
|
|
747
|
+
clientMutationId?: string | null;
|
|
748
|
+
ref?: Ref | null;
|
|
749
|
+
refEdge?: RefEdge | null;
|
|
750
|
+
}
|
|
751
|
+
export type UpdateRefPayloadSelect = {
|
|
752
|
+
clientMutationId?: boolean;
|
|
753
|
+
ref?: {
|
|
754
|
+
select: RefSelect;
|
|
755
|
+
};
|
|
756
|
+
refEdge?: {
|
|
757
|
+
select: RefEdgeSelect;
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
export interface DeleteRefPayload {
|
|
761
|
+
clientMutationId?: string | null;
|
|
762
|
+
ref?: Ref | null;
|
|
763
|
+
refEdge?: RefEdge | null;
|
|
764
|
+
}
|
|
765
|
+
export type DeleteRefPayloadSelect = {
|
|
766
|
+
clientMutationId?: boolean;
|
|
767
|
+
ref?: {
|
|
768
|
+
select: RefSelect;
|
|
769
|
+
};
|
|
770
|
+
refEdge?: {
|
|
771
|
+
select: RefEdgeSelect;
|
|
772
|
+
};
|
|
773
|
+
};
|
|
774
|
+
export interface CreateStorePayload {
|
|
775
|
+
clientMutationId?: string | null;
|
|
776
|
+
store?: Store | null;
|
|
777
|
+
storeEdge?: StoreEdge | null;
|
|
778
|
+
}
|
|
779
|
+
export type CreateStorePayloadSelect = {
|
|
780
|
+
clientMutationId?: boolean;
|
|
781
|
+
store?: {
|
|
782
|
+
select: StoreSelect;
|
|
783
|
+
};
|
|
784
|
+
storeEdge?: {
|
|
785
|
+
select: StoreEdgeSelect;
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
export interface UpdateStorePayload {
|
|
789
|
+
clientMutationId?: string | null;
|
|
790
|
+
store?: Store | null;
|
|
791
|
+
storeEdge?: StoreEdge | null;
|
|
792
|
+
}
|
|
793
|
+
export type UpdateStorePayloadSelect = {
|
|
794
|
+
clientMutationId?: boolean;
|
|
795
|
+
store?: {
|
|
796
|
+
select: StoreSelect;
|
|
797
|
+
};
|
|
798
|
+
storeEdge?: {
|
|
799
|
+
select: StoreEdgeSelect;
|
|
800
|
+
};
|
|
801
|
+
};
|
|
802
|
+
export interface DeleteStorePayload {
|
|
803
|
+
clientMutationId?: string | null;
|
|
804
|
+
store?: Store | null;
|
|
805
|
+
storeEdge?: StoreEdge | null;
|
|
806
|
+
}
|
|
807
|
+
export type DeleteStorePayloadSelect = {
|
|
808
|
+
clientMutationId?: boolean;
|
|
809
|
+
store?: {
|
|
810
|
+
select: StoreSelect;
|
|
811
|
+
};
|
|
812
|
+
storeEdge?: {
|
|
813
|
+
select: StoreEdgeSelect;
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
export interface CreateCommitPayload {
|
|
817
|
+
clientMutationId?: string | null;
|
|
818
|
+
commit?: Commit | null;
|
|
819
|
+
commitEdge?: CommitEdge | null;
|
|
820
|
+
}
|
|
821
|
+
export type CreateCommitPayloadSelect = {
|
|
822
|
+
clientMutationId?: boolean;
|
|
823
|
+
commit?: {
|
|
824
|
+
select: CommitSelect;
|
|
825
|
+
};
|
|
826
|
+
commitEdge?: {
|
|
827
|
+
select: CommitEdgeSelect;
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
export interface UpdateCommitPayload {
|
|
831
|
+
clientMutationId?: string | null;
|
|
832
|
+
commit?: Commit | null;
|
|
833
|
+
commitEdge?: CommitEdge | null;
|
|
834
|
+
}
|
|
835
|
+
export type UpdateCommitPayloadSelect = {
|
|
836
|
+
clientMutationId?: boolean;
|
|
837
|
+
commit?: {
|
|
838
|
+
select: CommitSelect;
|
|
839
|
+
};
|
|
840
|
+
commitEdge?: {
|
|
841
|
+
select: CommitEdgeSelect;
|
|
842
|
+
};
|
|
843
|
+
};
|
|
844
|
+
export interface DeleteCommitPayload {
|
|
845
|
+
clientMutationId?: string | null;
|
|
846
|
+
commit?: Commit | null;
|
|
847
|
+
commitEdge?: CommitEdge | null;
|
|
848
|
+
}
|
|
849
|
+
export type DeleteCommitPayloadSelect = {
|
|
850
|
+
clientMutationId?: boolean;
|
|
851
|
+
commit?: {
|
|
852
|
+
select: CommitSelect;
|
|
853
|
+
};
|
|
854
|
+
commitEdge?: {
|
|
855
|
+
select: CommitEdgeSelect;
|
|
856
|
+
};
|
|
857
|
+
};
|
|
858
|
+
export interface ObjectEdge {
|
|
859
|
+
cursor?: string | null;
|
|
860
|
+
node?: Object | null;
|
|
861
|
+
}
|
|
862
|
+
export type ObjectEdgeSelect = {
|
|
863
|
+
cursor?: boolean;
|
|
864
|
+
node?: {
|
|
865
|
+
select: ObjectSelect;
|
|
866
|
+
};
|
|
867
|
+
};
|
|
868
|
+
export interface PageInfo {
|
|
869
|
+
hasNextPage: boolean;
|
|
870
|
+
hasPreviousPage: boolean;
|
|
871
|
+
startCursor?: string | null;
|
|
872
|
+
endCursor?: string | null;
|
|
873
|
+
}
|
|
874
|
+
export type PageInfoSelect = {
|
|
875
|
+
hasNextPage?: boolean;
|
|
876
|
+
hasPreviousPage?: boolean;
|
|
877
|
+
startCursor?: boolean;
|
|
878
|
+
endCursor?: boolean;
|
|
879
|
+
};
|
|
880
|
+
export interface RefEdge {
|
|
881
|
+
cursor?: string | null;
|
|
882
|
+
node?: Ref | null;
|
|
883
|
+
}
|
|
884
|
+
export type RefEdgeSelect = {
|
|
885
|
+
cursor?: boolean;
|
|
886
|
+
node?: {
|
|
887
|
+
select: RefSelect;
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
export interface StoreEdge {
|
|
891
|
+
cursor?: string | null;
|
|
892
|
+
node?: Store | null;
|
|
893
|
+
}
|
|
894
|
+
export type StoreEdgeSelect = {
|
|
895
|
+
cursor?: boolean;
|
|
896
|
+
node?: {
|
|
897
|
+
select: StoreSelect;
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
export interface CommitEdge {
|
|
901
|
+
cursor?: string | null;
|
|
902
|
+
node?: Commit | null;
|
|
903
|
+
}
|
|
904
|
+
export type CommitEdgeSelect = {
|
|
905
|
+
cursor?: boolean;
|
|
906
|
+
node?: {
|
|
907
|
+
select: CommitSelect;
|
|
908
|
+
};
|
|
909
|
+
};
|