@wenex/sdk 0.0.2 → 0.0.5
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 +201 -21
- package/README.md +1 -2
- package/common/classes/graphql.service.d.ts +21 -0
- package/common/classes/graphql.service.js +29 -0
- package/common/classes/graphql.service.js.map +1 -0
- package/common/classes/index.d.ts +2 -0
- package/common/{core/base → classes}/index.js +2 -2
- package/common/classes/index.js.map +1 -0
- package/common/classes/restful.service.d.ts +19 -0
- package/common/{core/base/restful.core.js → classes/restful.service.js} +10 -7
- package/common/classes/restful.service.js.map +1 -0
- package/common/enums/{primary/auth/authentication → auth}/index.d.ts +1 -1
- package/common/enums/{primary/auth/authentication → auth}/index.js +1 -1
- package/common/enums/auth/index.js.map +1 -0
- package/common/enums/auth/jwt.enum.d.ts +4 -0
- package/common/enums/auth/jwt.enum.js +9 -0
- package/common/enums/auth/jwt.enum.js.map +1 -0
- package/common/enums/auth/response-type.enum.js.map +1 -0
- package/common/enums/{base → common}/action.enum.d.ts +7 -6
- package/common/enums/{base → common}/action.enum.js +15 -9
- package/common/enums/common/action.enum.js.map +1 -0
- package/common/enums/common/gender.enum.js.map +1 -0
- package/common/enums/{primary/auth/authentication → common}/grant-type.enum.d.ts +1 -0
- package/common/enums/{primary/auth/authentication → common}/grant-type.enum.js +1 -0
- package/common/enums/common/grant-type.enum.js.map +1 -0
- package/common/enums/{base → common}/index.d.ts +2 -1
- package/common/enums/{base → common}/index.js +2 -1
- package/common/enums/common/index.js.map +1 -0
- package/common/enums/common/resource.enum.d.ts +14 -0
- package/common/enums/common/resource.enum.js +23 -0
- package/common/enums/common/resource.enum.js.map +1 -0
- package/common/enums/common/scope.enum.d.ts +37 -0
- package/common/enums/common/scope.enum.js +52 -0
- package/common/enums/common/scope.enum.js.map +1 -0
- package/common/enums/common/state.enum.js.map +1 -0
- package/common/enums/common/status.enum.js.map +1 -0
- package/common/enums/{base → common}/value-type.enum.d.ts +2 -1
- package/common/enums/{base → common}/value-type.enum.js +1 -0
- package/common/enums/common/value-type.enum.js.map +1 -0
- package/common/enums/domain/apps/app-type.enum.js.map +1 -0
- package/common/enums/domain/apps/index.js.map +1 -0
- package/common/enums/{primary/domain → domain}/clients/index.js +2 -2
- package/common/enums/domain/clients/index.js.map +1 -0
- package/common/enums/{primary/domain → domain}/clients/otp-provider.enum.d.ts +1 -1
- package/common/enums/domain/clients/otp-provider.enum.js +9 -0
- package/common/enums/domain/clients/otp-provider.enum.js.map +1 -0
- package/common/enums/{primary/domain → domain}/clients/otp-type.enum.d.ts +1 -1
- package/common/enums/domain/clients/otp-type.enum.js +10 -0
- package/common/enums/domain/clients/otp-type.enum.js.map +1 -0
- package/common/enums/{primary/domain → domain}/clients/plan.enum.d.ts +1 -1
- package/common/enums/domain/clients/plan.enum.js +10 -0
- package/common/enums/domain/clients/plan.enum.js.map +1 -0
- package/common/enums/domain/index.js.map +1 -0
- package/common/{interfaces/primary → enums}/identity/index.d.ts +0 -1
- package/common/{interfaces/primary → enums}/identity/index.js +0 -1
- package/common/enums/identity/index.js.map +1 -0
- package/common/enums/identity/profiles/index.d.ts +1 -0
- package/common/{interfaces/premium/general → enums/identity/profiles}/index.js +1 -1
- package/common/enums/identity/profiles/index.js.map +1 -0
- package/common/enums/identity/profiles/person-type.enum.d.ts +5 -0
- package/common/enums/identity/profiles/person-type.enum.js +10 -0
- package/common/enums/identity/profiles/person-type.enum.js.map +1 -0
- package/common/enums/identity/users/index.d.ts +2 -0
- package/common/{core → enums/identity/users}/index.js +2 -2
- package/common/enums/identity/users/index.js.map +1 -0
- package/common/enums/identity/users/mfa.enum.d.ts +5 -0
- package/common/enums/identity/users/mfa.enum.js +10 -0
- package/common/enums/identity/users/mfa.enum.js.map +1 -0
- package/common/enums/identity/users/oauth.enum.d.ts +4 -0
- package/common/enums/identity/users/oauth.enum.js +9 -0
- package/common/enums/identity/users/oauth.enum.js.map +1 -0
- package/common/enums/index.d.ts +4 -2
- package/common/enums/index.js +4 -2
- package/common/enums/index.js.map +1 -1
- package/common/index.d.ts +5 -0
- package/common/index.js +22 -0
- package/common/index.js.map +1 -0
- package/common/interfaces/{primary/auth → auth}/authentication/index.d.ts +1 -2
- package/common/interfaces/{primary/auth → auth}/authentication/index.js +1 -2
- package/common/interfaces/auth/authentication/index.js.map +1 -0
- package/common/interfaces/auth/authentication/jwt.interface.d.ts +16 -0
- package/common/interfaces/{base/sub.interface.js → auth/authentication/jwt.interface.js} +1 -1
- package/common/interfaces/auth/authentication/jwt.interface.js.map +1 -0
- package/common/interfaces/{primary/auth → auth}/authentication/request.interface.d.ts +14 -9
- package/common/interfaces/auth/authentication/request.interface.js.map +1 -0
- package/common/interfaces/{primary/auth → auth}/authentication/response.interface.d.ts +6 -3
- package/common/interfaces/auth/authentication/response.interface.js.map +1 -0
- package/common/interfaces/{primary/auth → auth}/authentication/token.interface.d.ts +0 -1
- package/common/interfaces/auth/authentication/token.interface.js.map +1 -0
- package/common/interfaces/auth/authorization/index.js.map +1 -0
- package/common/interfaces/{primary/auth → auth}/authorization/policy.interface.d.ts +3 -6
- package/common/interfaces/auth/authorization/policy.interface.js.map +1 -0
- package/common/interfaces/auth/authorization/request.interface.d.ts +17 -0
- package/common/interfaces/auth/authorization/request.interface.js.map +1 -0
- package/common/interfaces/auth/authorization/response.interface.d.ts +7 -0
- package/common/interfaces/auth/authorization/response.interface.js.map +1 -0
- package/common/interfaces/auth/grant/grant.interface.d.ts +17 -0
- package/common/interfaces/auth/grant/grant.interface.js.map +1 -0
- package/common/interfaces/{primary/auth/grants → auth/grant}/index.js +1 -1
- package/common/interfaces/auth/grant/index.js.map +1 -0
- package/common/interfaces/auth/grant/time.interface.d.ts +5 -0
- package/common/interfaces/auth/grant/time.interface.js.map +1 -0
- package/common/interfaces/{primary/auth → auth}/index.d.ts +2 -2
- package/common/interfaces/{primary/auth → auth}/index.js +2 -2
- package/common/interfaces/auth/index.js.map +1 -0
- package/common/interfaces/{base/base.interface.d.ts → common/core.interface.d.ts} +10 -9
- package/common/interfaces/{base/base.interface.js → common/core.interface.js} +1 -1
- package/common/interfaces/common/core.interface.js.map +1 -0
- package/common/interfaces/common/dto.interface.d.ts +12 -0
- package/common/interfaces/{base/filters/obj.interface.js → common/dto.interface.js} +1 -1
- package/common/interfaces/common/dto.interface.js.map +1 -0
- package/common/interfaces/common/filter.interface.d.ts +31 -0
- package/common/interfaces/{base/array.interface.js → common/filter.interface.js} +1 -1
- package/common/interfaces/common/filter.interface.js.map +1 -0
- package/common/interfaces/common/generic.interface.d.ts +9 -0
- package/common/interfaces/common/generic.interface.js +4 -0
- package/common/interfaces/common/generic.interface.js.map +1 -0
- package/common/interfaces/common/index.d.ts +5 -0
- package/common/interfaces/common/index.js +22 -0
- package/common/interfaces/common/index.js.map +1 -0
- package/common/interfaces/common/serializer.interface.d.ts +24 -0
- package/common/interfaces/{base/filters/raw.interface.js → common/serializer.interface.js} +1 -1
- package/common/interfaces/common/serializer.interface.js.map +1 -0
- package/common/interfaces/config/config.interface.d.ts +10 -0
- package/common/interfaces/config/config.interface.js.map +1 -0
- package/common/interfaces/config/index.js.map +1 -0
- package/common/interfaces/domain/app/app.interface.d.ts +25 -0
- package/common/interfaces/domain/app/app.interface.js.map +1 -0
- package/common/interfaces/domain/app/change-log.interface.d.ts +6 -0
- package/common/interfaces/domain/app/change-log.interface.js.map +1 -0
- package/common/interfaces/domain/app/index.js.map +1 -0
- package/common/interfaces/domain/client/client.interface.d.ts +39 -0
- package/common/interfaces/domain/client/client.interface.js.map +1 -0
- package/common/interfaces/domain/client/domain.interface.d.ts +7 -0
- package/common/interfaces/domain/client/domain.interface.js.map +1 -0
- package/common/interfaces/domain/client/index.js.map +1 -0
- package/common/interfaces/domain/client/otp-service.interface.d.ts +7 -0
- package/common/interfaces/domain/client/otp-service.interface.js.map +1 -0
- package/common/interfaces/domain/index.d.ts +2 -0
- package/common/interfaces/{premium/general/artifacts → domain}/index.js +2 -1
- package/common/interfaces/domain/index.js.map +1 -0
- package/common/interfaces/identity/index.d.ts +3 -0
- package/common/interfaces/{primary/identity/profiles → identity}/index.js +2 -1
- package/common/interfaces/identity/index.js.map +1 -0
- package/common/interfaces/identity/profile.interface.d.ts +22 -0
- package/common/interfaces/identity/profile.interface.js.map +1 -0
- package/common/interfaces/identity/session.interface.d.ts +9 -0
- package/common/interfaces/identity/session.interface.js.map +1 -0
- package/common/interfaces/identity/user.interface.d.ts +18 -0
- package/common/interfaces/identity/user.interface.js.map +1 -0
- package/common/interfaces/index.d.ts +5 -3
- package/common/interfaces/index.js +5 -3
- package/common/interfaces/index.js.map +1 -1
- package/common/providers/index.d.ts +1 -0
- package/common/{enums/primary/auth → providers}/index.js +1 -1
- package/common/providers/index.js.map +1 -0
- package/common/{core/request.core.d.ts → providers/request.provider.d.ts} +4 -4
- package/common/{core/request.core.js → providers/request.provider.js} +2 -2
- package/common/providers/request.provider.js.map +1 -0
- package/common/utils/index.d.ts +3 -1
- package/common/utils/index.js +3 -1
- package/common/utils/index.js.map +1 -1
- package/common/utils/object-id.util.d.ts +3 -0
- package/common/{graphql/gql.js → utils/object-id.util.js} +9 -10
- package/common/utils/object-id.util.js.map +1 -0
- package/common/utils/repository.util.d.ts +9 -0
- package/common/utils/repository.util.js +32 -0
- package/common/utils/repository.util.js.map +1 -0
- package/common/utils/transform.util.d.ts +2 -0
- package/common/utils/transform.util.js +23 -0
- package/common/utils/transform.util.js.map +1 -0
- package/index.d.ts +7 -6
- package/index.js +8 -7
- package/index.js.map +1 -1
- package/package.json +31 -43
- package/services/{primary/auth → auth}/authentication.service.d.ts +4 -4
- package/services/{primary/auth → auth}/authentication.service.js +5 -5
- package/services/auth/authentication.service.js.map +1 -0
- package/services/auth/authorization.service.d.ts +11 -0
- package/services/{primary/auth → auth}/authorization.service.js +5 -2
- package/services/auth/authorization.service.js.map +1 -0
- package/services/auth/grants.service.d.ts +7 -0
- package/services/{primary/auth → auth}/grants.service.js +2 -2
- package/services/auth/grants.service.js.map +1 -0
- package/services/{primary/auth → auth}/index.d.ts +9 -9
- package/services/{primary/auth → auth}/index.js +11 -9
- package/services/auth/index.js.map +1 -0
- package/services/config/configs.service.d.ts +7 -0
- package/services/{primary/configs → config}/configs.service.js +2 -2
- package/services/config/configs.service.js.map +1 -0
- package/services/config/index.d.ts +9 -0
- package/services/{premium/general → config}/index.js +7 -7
- package/services/config/index.js.map +1 -0
- package/services/domain/apps.service.d.ts +7 -0
- package/services/{primary/domain → domain}/apps.service.js +2 -2
- package/services/domain/apps.service.js.map +1 -0
- package/services/domain/clients.service.d.ts +7 -0
- package/services/{primary/domain → domain}/clients.service.js +2 -2
- package/services/domain/clients.service.js.map +1 -0
- package/services/{primary/domain → domain}/index.js +1 -1
- package/services/domain/index.js.map +1 -0
- package/services/{primary/identity → identity}/index.js +1 -1
- package/services/identity/index.js.map +1 -0
- package/services/identity/profiles.service.d.ts +7 -0
- package/services/{primary/identity → identity}/profiles.service.js +2 -2
- package/services/identity/profiles.service.js.map +1 -0
- package/services/{primary/identity → identity}/sessions.service.d.ts +3 -3
- package/services/{primary/identity → identity}/sessions.service.js +2 -2
- package/services/identity/sessions.service.js.map +1 -0
- package/services/identity/users.service.d.ts +7 -0
- package/services/{primary/identity → identity}/users.service.js +2 -2
- package/services/identity/users.service.js.map +1 -0
- package/services/index.d.ts +4 -2
- package/services/index.js +4 -2
- package/services/index.js.map +1 -1
- package/common/core/base/graphql.core.d.ts +0 -5
- package/common/core/base/graphql.core.js +0 -15
- package/common/core/base/graphql.core.js.map +0 -1
- package/common/core/base/index.d.ts +0 -2
- package/common/core/base/index.js.map +0 -1
- package/common/core/base/restful.core.d.ts +0 -18
- package/common/core/base/restful.core.js.map +0 -1
- package/common/core/index.d.ts +0 -2
- package/common/core/index.js.map +0 -1
- package/common/core/request.core.js.map +0 -1
- package/common/enums/base/action.enum.js.map +0 -1
- package/common/enums/base/index.js.map +0 -1
- package/common/enums/base/resource.enum.d.ts +0 -26
- package/common/enums/base/resource.enum.js +0 -34
- package/common/enums/base/resource.enum.js.map +0 -1
- package/common/enums/base/role.enum.d.ts +0 -7
- package/common/enums/base/role.enum.js +0 -12
- package/common/enums/base/role.enum.js.map +0 -1
- package/common/enums/base/scope.enum.d.ts +0 -78
- package/common/enums/base/scope.enum.js +0 -90
- package/common/enums/base/scope.enum.js.map +0 -1
- package/common/enums/base/state.enum.js.map +0 -1
- package/common/enums/base/status.enum.js.map +0 -1
- package/common/enums/base/value-type.enum.js.map +0 -1
- package/common/enums/primary/auth/authentication/grant-type.enum.js.map +0 -1
- package/common/enums/primary/auth/authentication/index.js.map +0 -1
- package/common/enums/primary/auth/authentication/response-type.enum.js.map +0 -1
- package/common/enums/primary/auth/index.d.ts +0 -1
- package/common/enums/primary/auth/index.js.map +0 -1
- package/common/enums/primary/domain/apps/app-type.enum.js.map +0 -1
- package/common/enums/primary/domain/apps/index.js.map +0 -1
- package/common/enums/primary/domain/clients/index.js.map +0 -1
- package/common/enums/primary/domain/clients/otp-provider.enum.js +0 -9
- package/common/enums/primary/domain/clients/otp-provider.enum.js.map +0 -1
- package/common/enums/primary/domain/clients/otp-type.enum.js +0 -10
- package/common/enums/primary/domain/clients/otp-type.enum.js.map +0 -1
- package/common/enums/primary/domain/clients/plan.enum.js +0 -10
- package/common/enums/primary/domain/clients/plan.enum.js.map +0 -1
- package/common/enums/primary/domain/index.js.map +0 -1
- package/common/enums/primary/identity/index.d.ts +0 -1
- package/common/enums/primary/identity/index.js +0 -18
- package/common/enums/primary/identity/index.js.map +0 -1
- package/common/enums/primary/identity/profiles/gender.enum.js.map +0 -1
- package/common/enums/primary/identity/profiles/index.d.ts +0 -3
- package/common/enums/primary/identity/profiles/index.js +0 -20
- package/common/enums/primary/identity/profiles/index.js.map +0 -1
- package/common/enums/primary/identity/profiles/person-type.enum.d.ts +0 -4
- package/common/enums/primary/identity/profiles/person-type.enum.js +0 -9
- package/common/enums/primary/identity/profiles/person-type.enum.js.map +0 -1
- package/common/enums/primary/identity/profiles/place-type.enum.d.ts +0 -5
- package/common/enums/primary/identity/profiles/place-type.enum.js +0 -10
- package/common/enums/primary/identity/profiles/place-type.enum.js.map +0 -1
- package/common/enums/primary/index.d.ts +0 -3
- package/common/enums/primary/index.js +0 -20
- package/common/enums/primary/index.js.map +0 -1
- package/common/graphql/fragment-masking.d.ts +0 -15
- package/common/graphql/fragment-masking.js +0 -24
- package/common/graphql/fragment-masking.js.map +0 -1
- package/common/graphql/gql.d.ts +0 -16
- package/common/graphql/gql.js.map +0 -1
- package/common/graphql/graphql.d.ts +0 -1499
- package/common/graphql/graphql.js +0 -168
- package/common/graphql/graphql.js.map +0 -1
- package/common/graphql/index.d.ts +0 -2
- package/common/graphql/index.js +0 -19
- package/common/graphql/index.js.map +0 -1
- package/common/interfaces/base/array.interface.d.ts +0 -4
- package/common/interfaces/base/array.interface.js.map +0 -1
- package/common/interfaces/base/base.interface.js.map +0 -1
- package/common/interfaces/base/filters/index.d.ts +0 -2
- package/common/interfaces/base/filters/index.js +0 -19
- package/common/interfaces/base/filters/index.js.map +0 -1
- package/common/interfaces/base/filters/obj.interface.d.ts +0 -30
- package/common/interfaces/base/filters/obj.interface.js.map +0 -1
- package/common/interfaces/base/filters/raw.interface.d.ts +0 -16
- package/common/interfaces/base/filters/raw.interface.js.map +0 -1
- package/common/interfaces/base/index.d.ts +0 -6
- package/common/interfaces/base/index.js +0 -23
- package/common/interfaces/base/index.js.map +0 -1
- package/common/interfaces/base/props.interface.d.ts +0 -2
- package/common/interfaces/base/props.interface.js +0 -3
- package/common/interfaces/base/props.interface.js.map +0 -1
- package/common/interfaces/base/sub.interface.d.ts +0 -25
- package/common/interfaces/base/sub.interface.js.map +0 -1
- package/common/interfaces/base/total.interface.d.ts +0 -4
- package/common/interfaces/base/total.interface.js +0 -3
- package/common/interfaces/base/total.interface.js.map +0 -1
- package/common/interfaces/premium/general/artifacts/artifact.interface.d.ts +0 -9
- package/common/interfaces/premium/general/artifacts/artifact.interface.js +0 -3
- package/common/interfaces/premium/general/artifacts/artifact.interface.js.map +0 -1
- package/common/interfaces/premium/general/artifacts/index.d.ts +0 -1
- package/common/interfaces/premium/general/artifacts/index.js.map +0 -1
- package/common/interfaces/premium/general/index.d.ts +0 -1
- package/common/interfaces/premium/general/index.js.map +0 -1
- package/common/interfaces/premium/index.d.ts +0 -1
- package/common/interfaces/premium/index.js +0 -18
- package/common/interfaces/premium/index.js.map +0 -1
- package/common/interfaces/primary/auth/authentication/index.js.map +0 -1
- package/common/interfaces/primary/auth/authentication/jwt-token.interface.d.ts +0 -13
- package/common/interfaces/primary/auth/authentication/jwt-token.interface.js +0 -3
- package/common/interfaces/primary/auth/authentication/jwt-token.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authentication/request.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authentication/response.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authentication/result.interface.d.ts +0 -4
- package/common/interfaces/primary/auth/authentication/result.interface.js +0 -3
- package/common/interfaces/primary/auth/authentication/result.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authentication/token.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authorization/index.js.map +0 -1
- package/common/interfaces/primary/auth/authorization/policy.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authorization/request.interface.d.ts +0 -10
- package/common/interfaces/primary/auth/authorization/request.interface.js.map +0 -1
- package/common/interfaces/primary/auth/authorization/response.interface.d.ts +0 -6
- package/common/interfaces/primary/auth/authorization/response.interface.js.map +0 -1
- package/common/interfaces/primary/auth/grants/grant.interface.d.ts +0 -13
- package/common/interfaces/primary/auth/grants/grant.interface.js.map +0 -1
- package/common/interfaces/primary/auth/grants/index.js.map +0 -1
- package/common/interfaces/primary/auth/grants/time.interface.d.ts +0 -6
- package/common/interfaces/primary/auth/grants/time.interface.js.map +0 -1
- package/common/interfaces/primary/auth/index.js.map +0 -1
- package/common/interfaces/primary/configs/config.interface.d.ts +0 -8
- package/common/interfaces/primary/configs/config.interface.js.map +0 -1
- package/common/interfaces/primary/configs/index.js.map +0 -1
- package/common/interfaces/primary/domain/apps/app.interface.d.ts +0 -20
- package/common/interfaces/primary/domain/apps/app.interface.js.map +0 -1
- package/common/interfaces/primary/domain/apps/change-log.interface.d.ts +0 -7
- package/common/interfaces/primary/domain/apps/change-log.interface.js.map +0 -1
- package/common/interfaces/primary/domain/apps/index.js.map +0 -1
- package/common/interfaces/primary/domain/clients/client.interface.d.ts +0 -25
- package/common/interfaces/primary/domain/clients/client.interface.js.map +0 -1
- package/common/interfaces/primary/domain/clients/domain.interface.d.ts +0 -8
- package/common/interfaces/primary/domain/clients/domain.interface.js.map +0 -1
- package/common/interfaces/primary/domain/clients/index.js.map +0 -1
- package/common/interfaces/primary/domain/clients/otp-service.interface.d.ts +0 -8
- package/common/interfaces/primary/domain/clients/otp-service.interface.js.map +0 -1
- package/common/interfaces/primary/domain/index.d.ts +0 -2
- package/common/interfaces/primary/domain/index.js +0 -19
- package/common/interfaces/primary/domain/index.js.map +0 -1
- package/common/interfaces/primary/identity/index.js.map +0 -1
- package/common/interfaces/primary/identity/profiles/index.d.ts +0 -2
- package/common/interfaces/primary/identity/profiles/index.js.map +0 -1
- package/common/interfaces/primary/identity/profiles/place.interface.d.ts +0 -10
- package/common/interfaces/primary/identity/profiles/place.interface.js +0 -3
- package/common/interfaces/primary/identity/profiles/place.interface.js.map +0 -1
- package/common/interfaces/primary/identity/profiles/profile.interface.d.ts +0 -19
- package/common/interfaces/primary/identity/profiles/profile.interface.js.map +0 -1
- package/common/interfaces/primary/identity/sessions/index.d.ts +0 -1
- package/common/interfaces/primary/identity/sessions/index.js +0 -18
- package/common/interfaces/primary/identity/sessions/index.js.map +0 -1
- package/common/interfaces/primary/identity/sessions/session.interface.d.ts +0 -5
- package/common/interfaces/primary/identity/sessions/session.interface.js.map +0 -1
- package/common/interfaces/primary/identity/users/index.d.ts +0 -1
- package/common/interfaces/primary/identity/users/index.js +0 -18
- package/common/interfaces/primary/identity/users/index.js.map +0 -1
- package/common/interfaces/primary/identity/users/user.interface.d.ts +0 -14
- package/common/interfaces/primary/identity/users/user.interface.js.map +0 -1
- package/common/interfaces/primary/index.d.ts +0 -4
- package/common/interfaces/primary/index.js +0 -21
- package/common/interfaces/primary/index.js.map +0 -1
- package/common/utils/tools.d.ts +0 -14
- package/common/utils/tools.js +0 -23
- package/common/utils/tools.js.map +0 -1
- package/services/premium/general/artifacts.service.d.ts +0 -7
- package/services/premium/general/artifacts.service.js +0 -12
- package/services/premium/general/artifacts.service.js.map +0 -1
- package/services/premium/general/index.d.ts +0 -9
- package/services/premium/general/index.js.map +0 -1
- package/services/premium/index.d.ts +0 -1
- package/services/premium/index.js +0 -18
- package/services/premium/index.js.map +0 -1
- package/services/primary/auth/authentication.service.js.map +0 -1
- package/services/primary/auth/authorization.service.d.ts +0 -10
- package/services/primary/auth/authorization.service.js.map +0 -1
- package/services/primary/auth/grants.service.d.ts +0 -7
- package/services/primary/auth/grants.service.js.map +0 -1
- package/services/primary/auth/index.js.map +0 -1
- package/services/primary/configs/configs.service.d.ts +0 -7
- package/services/primary/configs/configs.service.js.map +0 -1
- package/services/primary/configs/index.d.ts +0 -1
- package/services/primary/configs/index.js +0 -18
- package/services/primary/configs/index.js.map +0 -1
- package/services/primary/domain/apps.service.d.ts +0 -7
- package/services/primary/domain/apps.service.js.map +0 -1
- package/services/primary/domain/clients.service.d.ts +0 -7
- package/services/primary/domain/clients.service.js.map +0 -1
- package/services/primary/domain/index.js.map +0 -1
- package/services/primary/identity/index.js.map +0 -1
- package/services/primary/identity/profiles.service.d.ts +0 -7
- package/services/primary/identity/profiles.service.js.map +0 -1
- package/services/primary/identity/sessions.service.js.map +0 -1
- package/services/primary/identity/users.service.d.ts +0 -7
- package/services/primary/identity/users.service.js.map +0 -1
- package/services/primary/index.d.ts +0 -4
- package/services/primary/index.js +0 -21
- package/services/primary/index.js.map +0 -1
- package/common/enums/{primary/auth/authentication → auth}/response-type.enum.d.ts +0 -0
- package/common/enums/{primary/auth/authentication → auth}/response-type.enum.js +0 -0
- package/common/enums/{primary/identity/profiles → common}/gender.enum.d.ts +0 -0
- package/common/enums/{primary/identity/profiles → common}/gender.enum.js +0 -0
- package/common/enums/{base → common}/state.enum.d.ts +0 -0
- package/common/enums/{base → common}/state.enum.js +0 -0
- package/common/enums/{base → common}/status.enum.d.ts +0 -0
- package/common/enums/{base → common}/status.enum.js +0 -0
- package/common/enums/{primary/domain → domain}/apps/app-type.enum.d.ts +0 -0
- package/common/enums/{primary/domain → domain}/apps/app-type.enum.js +0 -0
- package/common/enums/{primary/domain → domain}/apps/index.d.ts +0 -0
- package/common/enums/{primary/domain → domain}/apps/index.js +0 -0
- package/common/enums/{primary/domain → domain}/clients/index.d.ts +2 -2
- package/common/enums/{primary/domain → domain}/index.d.ts +0 -0
- package/common/enums/{primary/domain → domain}/index.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authentication/request.interface.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authentication/response.interface.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authentication/token.interface.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authorization/index.d.ts +0 -0
- package/common/interfaces/{primary/auth → auth}/authorization/index.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authorization/policy.interface.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authorization/request.interface.js +0 -0
- package/common/interfaces/{primary/auth → auth}/authorization/response.interface.js +0 -0
- package/common/interfaces/{primary/auth/grants → auth/grant}/grant.interface.js +0 -0
- package/common/interfaces/{primary/auth/grants → auth/grant}/index.d.ts +1 -1
- package/common/interfaces/{primary/auth/grants → auth/grant}/time.interface.js +0 -0
- package/common/interfaces/{primary/configs → config}/config.interface.js +0 -0
- package/common/interfaces/{primary/configs → config}/index.d.ts +0 -0
- package/common/interfaces/{primary/configs → config}/index.js +0 -0
- package/common/interfaces/{primary/domain/apps → domain/app}/app.interface.js +0 -0
- package/common/interfaces/{primary/domain/apps → domain/app}/change-log.interface.js +0 -0
- package/common/interfaces/{primary/domain/apps → domain/app}/index.d.ts +0 -0
- package/common/interfaces/{primary/domain/apps → domain/app}/index.js +0 -0
- package/common/interfaces/{primary/domain/clients → domain/client}/client.interface.js +0 -0
- package/common/interfaces/{primary/domain/clients → domain/client}/domain.interface.js +0 -0
- package/common/interfaces/{primary/domain/clients → domain/client}/index.d.ts +0 -0
- package/common/interfaces/{primary/domain/clients → domain/client}/index.js +0 -0
- package/common/interfaces/{primary/domain/clients → domain/client}/otp-service.interface.js +0 -0
- package/common/interfaces/{primary/identity/profiles → identity}/profile.interface.js +0 -0
- package/common/interfaces/{primary/identity/sessions → identity}/session.interface.js +0 -0
- package/common/interfaces/{primary/identity/users → identity}/user.interface.js +0 -0
- package/services/{primary/domain → domain}/index.d.ts +1 -1
- package/services/{primary/identity → identity}/index.d.ts +1 -1
|
@@ -1,1499 +0,0 @@
|
|
|
1
|
-
export type Maybe<T> = T | null;
|
|
2
|
-
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
-
export type Exact<T extends {
|
|
4
|
-
[key: string]: unknown;
|
|
5
|
-
}> = {
|
|
6
|
-
[K in keyof T]: T[K];
|
|
7
|
-
};
|
|
8
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
9
|
-
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
10
|
-
};
|
|
11
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
12
|
-
[SubKey in K]: Maybe<T[SubKey]>;
|
|
13
|
-
};
|
|
14
|
-
export type MakeEmpty<T extends {
|
|
15
|
-
[key: string]: unknown;
|
|
16
|
-
}, K extends keyof T> = {
|
|
17
|
-
[_ in K]?: never;
|
|
18
|
-
};
|
|
19
|
-
export type Incremental<T> = T | {
|
|
20
|
-
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
21
|
-
};
|
|
22
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
23
|
-
export type Scalars = {
|
|
24
|
-
ID: {
|
|
25
|
-
input: string;
|
|
26
|
-
output: string;
|
|
27
|
-
};
|
|
28
|
-
String: {
|
|
29
|
-
input: string;
|
|
30
|
-
output: string;
|
|
31
|
-
};
|
|
32
|
-
Boolean: {
|
|
33
|
-
input: boolean;
|
|
34
|
-
output: boolean;
|
|
35
|
-
};
|
|
36
|
-
Int: {
|
|
37
|
-
input: number;
|
|
38
|
-
output: number;
|
|
39
|
-
};
|
|
40
|
-
Float: {
|
|
41
|
-
input: number;
|
|
42
|
-
output: number;
|
|
43
|
-
};
|
|
44
|
-
/** Date custom scalar type */
|
|
45
|
-
Date: {
|
|
46
|
-
input: any;
|
|
47
|
-
output: any;
|
|
48
|
-
};
|
|
49
|
-
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
|
|
50
|
-
JSON: {
|
|
51
|
-
input: any;
|
|
52
|
-
output: any;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
export declare enum Action {
|
|
56
|
-
Any = "Any",
|
|
57
|
-
Create = "Create",
|
|
58
|
-
CreateClient = "CreateClient",
|
|
59
|
-
CreateGroup = "CreateGroup",
|
|
60
|
-
CreateOwn = "CreateOwn",
|
|
61
|
-
CreateShare = "CreateShare",
|
|
62
|
-
Delete = "Delete",
|
|
63
|
-
DeleteClient = "DeleteClient",
|
|
64
|
-
DeleteGroup = "DeleteGroup",
|
|
65
|
-
DeleteOwn = "DeleteOwn",
|
|
66
|
-
DeleteShare = "DeleteShare",
|
|
67
|
-
Destroy = "Destroy",
|
|
68
|
-
DestroyClient = "DestroyClient",
|
|
69
|
-
DestroyGroup = "DestroyGroup",
|
|
70
|
-
DestroyOwn = "DestroyOwn",
|
|
71
|
-
DestroyShare = "DestroyShare",
|
|
72
|
-
Read = "Read",
|
|
73
|
-
ReadClient = "ReadClient",
|
|
74
|
-
ReadGroup = "ReadGroup",
|
|
75
|
-
ReadOwn = "ReadOwn",
|
|
76
|
-
ReadShare = "ReadShare",
|
|
77
|
-
Restore = "Restore",
|
|
78
|
-
RestoreClient = "RestoreClient",
|
|
79
|
-
RestoreGroup = "RestoreGroup",
|
|
80
|
-
RestoreOwn = "RestoreOwn",
|
|
81
|
-
RestoreShare = "RestoreShare",
|
|
82
|
-
Update = "Update",
|
|
83
|
-
UpdateClient = "UpdateClient",
|
|
84
|
-
UpdateGroup = "UpdateGroup",
|
|
85
|
-
UpdateOwn = "UpdateOwn",
|
|
86
|
-
UpdateShare = "UpdateShare"
|
|
87
|
-
}
|
|
88
|
-
export type AppSerializer = {
|
|
89
|
-
__typename?: 'AppSerializer';
|
|
90
|
-
access_token_ttl: Scalars['Float']['output'];
|
|
91
|
-
change_logs?: Maybe<Array<ChangeLogSerializer>>;
|
|
92
|
-
cid: Scalars['String']['output'];
|
|
93
|
-
clients: Array<Scalars['String']['output']>;
|
|
94
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
95
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
96
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
97
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
98
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
99
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
100
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
101
|
-
grant_types: Array<GrantType>;
|
|
102
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
103
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
104
|
-
logo?: Maybe<Scalars['String']['output']>;
|
|
105
|
-
name: Scalars['String']['output'];
|
|
106
|
-
owner: Scalars['String']['output'];
|
|
107
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
108
|
-
redirect_uri?: Maybe<Scalars['String']['output']>;
|
|
109
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
110
|
-
refresh_token_ttl: Scalars['Float']['output'];
|
|
111
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
112
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
113
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
114
|
-
scopes: Array<Scope>;
|
|
115
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
116
|
-
site?: Maybe<Scalars['String']['output']>;
|
|
117
|
-
slogan?: Maybe<Scalars['String']['output']>;
|
|
118
|
-
status: Status;
|
|
119
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
120
|
-
type: AppType;
|
|
121
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
122
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
123
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
124
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
125
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
126
|
-
};
|
|
127
|
-
export declare enum AppType {
|
|
128
|
-
Application = "Application",
|
|
129
|
-
Desktop = "Desktop",
|
|
130
|
-
Mobile = "Mobile",
|
|
131
|
-
Web = "Web"
|
|
132
|
-
}
|
|
133
|
-
export type AppsSerializer = {
|
|
134
|
-
__typename?: 'AppsSerializer';
|
|
135
|
-
data: Array<AppSerializer>;
|
|
136
|
-
};
|
|
137
|
-
export type ArtifactSerializer = {
|
|
138
|
-
__typename?: 'ArtifactSerializer';
|
|
139
|
-
clients: Array<Scalars['String']['output']>;
|
|
140
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
141
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
142
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
143
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
144
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
145
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
146
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
147
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
148
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
149
|
-
key: Scalars['String']['output'];
|
|
150
|
-
owner: Scalars['String']['output'];
|
|
151
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
152
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
153
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
154
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
155
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
156
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
157
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
158
|
-
type: ValueType;
|
|
159
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
160
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
161
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
162
|
-
value?: Maybe<Scalars['JSON']['output']>;
|
|
163
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
164
|
-
};
|
|
165
|
-
export type ArtifactsSerializer = {
|
|
166
|
-
__typename?: 'ArtifactsSerializer';
|
|
167
|
-
data: Array<ArtifactSerializer>;
|
|
168
|
-
};
|
|
169
|
-
export type ChangeLogSerializer = {
|
|
170
|
-
__typename?: 'ChangeLogSerializer';
|
|
171
|
-
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
172
|
-
code: Scalars['String']['output'];
|
|
173
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
174
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
175
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
176
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
177
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
178
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
179
|
-
deprecated_at?: Maybe<Scalars['Date']['output']>;
|
|
180
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
181
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
182
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
183
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
184
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
185
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
186
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
187
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
188
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
189
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
190
|
-
uid: Scalars['String']['output'];
|
|
191
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
192
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
193
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
194
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
195
|
-
};
|
|
196
|
-
export type ClientSerializer = {
|
|
197
|
-
__typename?: 'ClientSerializer';
|
|
198
|
-
access_token_ttl: Scalars['Float']['output'];
|
|
199
|
-
api_key: Scalars['String']['output'];
|
|
200
|
-
client_id: Scalars['String']['output'];
|
|
201
|
-
client_secret: Scalars['String']['output'];
|
|
202
|
-
clients: Array<Scalars['String']['output']>;
|
|
203
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
204
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
205
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
206
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
207
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
208
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
209
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
210
|
-
domains: Array<DomainSerializer>;
|
|
211
|
-
expiration_date: Scalars['Date']['output'];
|
|
212
|
-
grant_types: Array<GrantType>;
|
|
213
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
214
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
215
|
-
logo?: Maybe<Scalars['String']['output']>;
|
|
216
|
-
name: Scalars['String']['output'];
|
|
217
|
-
otp_services: Array<OtpServiceSerializer>;
|
|
218
|
-
owner: Scalars['String']['output'];
|
|
219
|
-
plan: Plan;
|
|
220
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
221
|
-
redirect_uri?: Maybe<Scalars['String']['output']>;
|
|
222
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
223
|
-
refresh_token_ttl: Scalars['Float']['output'];
|
|
224
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
225
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
226
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
227
|
-
scopes: Array<Scope>;
|
|
228
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
229
|
-
site?: Maybe<Scalars['String']['output']>;
|
|
230
|
-
slogan?: Maybe<Scalars['String']['output']>;
|
|
231
|
-
state: State;
|
|
232
|
-
status: Status;
|
|
233
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
234
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
235
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
236
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
237
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
238
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
239
|
-
};
|
|
240
|
-
export type ClientsSerializer = {
|
|
241
|
-
__typename?: 'ClientsSerializer';
|
|
242
|
-
data: Array<ClientSerializer>;
|
|
243
|
-
};
|
|
244
|
-
export type ConfigSerializer = {
|
|
245
|
-
__typename?: 'ConfigSerializer';
|
|
246
|
-
clients: Array<Scalars['String']['output']>;
|
|
247
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
248
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
249
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
250
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
251
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
252
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
253
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
254
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
255
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
256
|
-
key: Scalars['String']['output'];
|
|
257
|
-
owner: Scalars['String']['output'];
|
|
258
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
259
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
260
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
261
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
262
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
263
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
264
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
265
|
-
type: ValueType;
|
|
266
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
267
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
268
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
269
|
-
value?: Maybe<Scalars['JSON']['output']>;
|
|
270
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
271
|
-
};
|
|
272
|
-
export type ConfigsSerializer = {
|
|
273
|
-
__typename?: 'ConfigsSerializer';
|
|
274
|
-
data: Array<ConfigSerializer>;
|
|
275
|
-
};
|
|
276
|
-
export type CreateAppDto = {
|
|
277
|
-
access_token_ttl: Scalars['Float']['input'];
|
|
278
|
-
change_logs?: InputMaybe<Array<CreateChangeLogDto>>;
|
|
279
|
-
cid: Scalars['String']['input'];
|
|
280
|
-
clients: Array<Scalars['String']['input']>;
|
|
281
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
282
|
-
grant_types: Array<GrantType>;
|
|
283
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
284
|
-
logo?: InputMaybe<Scalars['String']['input']>;
|
|
285
|
-
name: Scalars['String']['input'];
|
|
286
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
287
|
-
redirect_uri?: InputMaybe<Scalars['String']['input']>;
|
|
288
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
289
|
-
refresh_token_ttl: Scalars['Float']['input'];
|
|
290
|
-
scopes: Array<Scope>;
|
|
291
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
292
|
-
site?: InputMaybe<Scalars['String']['input']>;
|
|
293
|
-
slogan?: InputMaybe<Scalars['String']['input']>;
|
|
294
|
-
status: Status;
|
|
295
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
296
|
-
type: AppType;
|
|
297
|
-
url?: InputMaybe<Scalars['String']['input']>;
|
|
298
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
299
|
-
};
|
|
300
|
-
export type CreateArtifactDto = {
|
|
301
|
-
clients: Array<Scalars['String']['input']>;
|
|
302
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
303
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
304
|
-
key: Scalars['String']['input'];
|
|
305
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
306
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
307
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
308
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
309
|
-
type: ValueType;
|
|
310
|
-
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
311
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
312
|
-
};
|
|
313
|
-
export type CreateChangeLogDto = {
|
|
314
|
-
changes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
315
|
-
code: Scalars['String']['input'];
|
|
316
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
317
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
318
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
319
|
-
deprecated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
320
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
321
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
322
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
323
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
324
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
325
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
326
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
327
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
328
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
329
|
-
uid: Scalars['String']['input'];
|
|
330
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
331
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
332
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
333
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
334
|
-
};
|
|
335
|
-
export type CreateClientDto = {
|
|
336
|
-
access_token_ttl: Scalars['Float']['input'];
|
|
337
|
-
api_key: Scalars['String']['input'];
|
|
338
|
-
client_id: Scalars['String']['input'];
|
|
339
|
-
client_secret: Scalars['String']['input'];
|
|
340
|
-
clients: Array<Scalars['String']['input']>;
|
|
341
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
342
|
-
domains: Array<CreateDomainDto>;
|
|
343
|
-
expiration_date: Scalars['Date']['input'];
|
|
344
|
-
grant_types: Array<GrantType>;
|
|
345
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
346
|
-
logo?: InputMaybe<Scalars['String']['input']>;
|
|
347
|
-
name: Scalars['String']['input'];
|
|
348
|
-
otp_services: Array<CreateOtpServiceDto>;
|
|
349
|
-
plan: Plan;
|
|
350
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
351
|
-
redirect_uri?: InputMaybe<Scalars['String']['input']>;
|
|
352
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
353
|
-
refresh_token_ttl: Scalars['Float']['input'];
|
|
354
|
-
scopes: Array<Scope>;
|
|
355
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
356
|
-
site?: InputMaybe<Scalars['String']['input']>;
|
|
357
|
-
slogan?: InputMaybe<Scalars['String']['input']>;
|
|
358
|
-
state: State;
|
|
359
|
-
status: Status;
|
|
360
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
361
|
-
url?: InputMaybe<Scalars['String']['input']>;
|
|
362
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
363
|
-
};
|
|
364
|
-
export type CreateConfigDto = {
|
|
365
|
-
clients: Array<Scalars['String']['input']>;
|
|
366
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
367
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
368
|
-
key: Scalars['String']['input'];
|
|
369
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
370
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
371
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
372
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
373
|
-
type: ValueType;
|
|
374
|
-
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
375
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
376
|
-
};
|
|
377
|
-
export type CreateDomainDto = {
|
|
378
|
-
address: Scalars['String']['input'];
|
|
379
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
380
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
381
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
382
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
383
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
384
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
385
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
386
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
387
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
388
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
389
|
-
roles: Array<Scalars['String']['input']>;
|
|
390
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
391
|
-
status: Status;
|
|
392
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
393
|
-
uid: Scalars['String']['input'];
|
|
394
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
395
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
396
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
397
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
398
|
-
};
|
|
399
|
-
export type CreateGrantDto = {
|
|
400
|
-
action: Action;
|
|
401
|
-
clients: Array<Scalars['String']['input']>;
|
|
402
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
403
|
-
field?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
404
|
-
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
405
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
406
|
-
location?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
407
|
-
object: Resource;
|
|
408
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
409
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
410
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
411
|
-
subject: Scalars['String']['input'];
|
|
412
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
413
|
-
time?: InputMaybe<Array<CreateTimeDto>>;
|
|
414
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
415
|
-
};
|
|
416
|
-
export type CreateOtpServiceDto = {
|
|
417
|
-
config: Scalars['JSON']['input'];
|
|
418
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
419
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
420
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
421
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
422
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
423
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
424
|
-
provider: OtpProvider;
|
|
425
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
426
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
427
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
428
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
429
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
430
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
431
|
-
type: OtpType;
|
|
432
|
-
uid: Scalars['String']['input'];
|
|
433
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
434
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
435
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
436
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
437
|
-
};
|
|
438
|
-
export type CreatePlaceDto = {
|
|
439
|
-
address?: InputMaybe<Scalars['String']['input']>;
|
|
440
|
-
country: Scalars['String']['input'];
|
|
441
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
442
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
443
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
444
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
445
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
446
|
-
location?: InputMaybe<Scalars['String']['input']>;
|
|
447
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
448
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
449
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
450
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
451
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
452
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
453
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
454
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
455
|
-
type: PlaceType;
|
|
456
|
-
uid: Scalars['String']['input'];
|
|
457
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
458
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
459
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
460
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
461
|
-
};
|
|
462
|
-
export type CreateProfileDto = {
|
|
463
|
-
avatar?: InputMaybe<Scalars['String']['input']>;
|
|
464
|
-
birth_date?: InputMaybe<Scalars['Date']['input']>;
|
|
465
|
-
clients: Array<Scalars['String']['input']>;
|
|
466
|
-
cover?: InputMaybe<Scalars['String']['input']>;
|
|
467
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
468
|
-
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
469
|
-
gender: Gender;
|
|
470
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
471
|
-
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
472
|
-
middle_name?: InputMaybe<Scalars['String']['input']>;
|
|
473
|
-
national_code?: InputMaybe<Scalars['String']['input']>;
|
|
474
|
-
nationality?: InputMaybe<Scalars['String']['input']>;
|
|
475
|
-
nickname?: InputMaybe<Scalars['String']['input']>;
|
|
476
|
-
person_type: PersonType;
|
|
477
|
-
places?: InputMaybe<Array<CreatePlaceDto>>;
|
|
478
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
479
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
480
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
481
|
-
state: State;
|
|
482
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
483
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
484
|
-
};
|
|
485
|
-
export type CreateSessionDto = {
|
|
486
|
-
agent: Scalars['String']['input'];
|
|
487
|
-
clients: Array<Scalars['String']['input']>;
|
|
488
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
489
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
490
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
491
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
492
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
493
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
494
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
495
|
-
};
|
|
496
|
-
export type CreateTimeDto = {
|
|
497
|
-
cron_exp: Scalars['String']['input'];
|
|
498
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
499
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
500
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
501
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
502
|
-
duration: Scalars['Float']['input'];
|
|
503
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
504
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
505
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
506
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
507
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
508
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
509
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
510
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
511
|
-
uid: Scalars['String']['input'];
|
|
512
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
513
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
514
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
515
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
516
|
-
};
|
|
517
|
-
export type CreateUserDto = {
|
|
518
|
-
clients: Array<Scalars['String']['input']>;
|
|
519
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
520
|
-
email?: InputMaybe<Scalars['String']['input']>;
|
|
521
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
522
|
-
password?: InputMaybe<Scalars['String']['input']>;
|
|
523
|
-
phone?: InputMaybe<Scalars['String']['input']>;
|
|
524
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
525
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
526
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
527
|
-
status: Status;
|
|
528
|
-
subjects?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
529
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
530
|
-
username?: InputMaybe<Scalars['String']['input']>;
|
|
531
|
-
verified_at?: InputMaybe<Scalars['Date']['input']>;
|
|
532
|
-
verified_by?: InputMaybe<Scalars['String']['input']>;
|
|
533
|
-
verified_in?: InputMaybe<Scalars['String']['input']>;
|
|
534
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
535
|
-
};
|
|
536
|
-
export type DomainSerializer = {
|
|
537
|
-
__typename?: 'DomainSerializer';
|
|
538
|
-
address: Scalars['String']['output'];
|
|
539
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
540
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
541
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
542
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
543
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
544
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
545
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
546
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
547
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
548
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
549
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
550
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
551
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
552
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
553
|
-
roles: Array<Scalars['String']['output']>;
|
|
554
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
555
|
-
status: Status;
|
|
556
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
557
|
-
uid: Scalars['String']['output'];
|
|
558
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
559
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
560
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
561
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
562
|
-
};
|
|
563
|
-
export type FilterDto = {
|
|
564
|
-
pagination?: InputMaybe<Scalars['JSON']['input']>;
|
|
565
|
-
projection?: InputMaybe<Scalars['JSON']['input']>;
|
|
566
|
-
query: Scalars['JSON']['input'];
|
|
567
|
-
};
|
|
568
|
-
export declare enum Gender {
|
|
569
|
-
Female = "Female",
|
|
570
|
-
Male = "Male",
|
|
571
|
-
Unknown = "Unknown"
|
|
572
|
-
}
|
|
573
|
-
export type GrantSerializer = {
|
|
574
|
-
__typename?: 'GrantSerializer';
|
|
575
|
-
action: Action;
|
|
576
|
-
clients: Array<Scalars['String']['output']>;
|
|
577
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
578
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
579
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
580
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
581
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
582
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
583
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
584
|
-
field?: Maybe<Array<Scalars['String']['output']>>;
|
|
585
|
-
filter?: Maybe<Array<Scalars['String']['output']>>;
|
|
586
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
587
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
588
|
-
location?: Maybe<Array<Scalars['String']['output']>>;
|
|
589
|
-
object: Resource;
|
|
590
|
-
owner: Scalars['String']['output'];
|
|
591
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
592
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
593
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
594
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
595
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
596
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
597
|
-
subject: Scalars['String']['output'];
|
|
598
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
599
|
-
time?: Maybe<Array<TimeSerializer>>;
|
|
600
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
601
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
602
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
603
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
604
|
-
};
|
|
605
|
-
export declare enum GrantType {
|
|
606
|
-
AuthorizationCode = "AuthorizationCode",
|
|
607
|
-
ClientCredential = "ClientCredential",
|
|
608
|
-
Otp = "OTP",
|
|
609
|
-
Password = "Password",
|
|
610
|
-
RefreshToken = "RefreshToken"
|
|
611
|
-
}
|
|
612
|
-
export type GrantsSerializer = {
|
|
613
|
-
__typename?: 'GrantsSerializer';
|
|
614
|
-
data: Array<GrantSerializer>;
|
|
615
|
-
};
|
|
616
|
-
export type Mutation = {
|
|
617
|
-
__typename?: 'Mutation';
|
|
618
|
-
createApp: AppSerializer;
|
|
619
|
-
createArtifact: ArtifactSerializer;
|
|
620
|
-
createClient: ClientSerializer;
|
|
621
|
-
createConfig: ConfigSerializer;
|
|
622
|
-
createGrant: GrantSerializer;
|
|
623
|
-
createProfile: ProfileSerializer;
|
|
624
|
-
createSession: SessionSerializer;
|
|
625
|
-
createUser: UserSerializer;
|
|
626
|
-
deleteApp: AppSerializer;
|
|
627
|
-
deleteArtifact: ArtifactSerializer;
|
|
628
|
-
deleteClient: ClientSerializer;
|
|
629
|
-
deleteConfig: ConfigSerializer;
|
|
630
|
-
deleteGrant: GrantSerializer;
|
|
631
|
-
deleteProfile: ProfileSerializer;
|
|
632
|
-
deleteSession: SessionSerializer;
|
|
633
|
-
deleteUser: UserSerializer;
|
|
634
|
-
destroyApp: AppSerializer;
|
|
635
|
-
destroyArtifact: ArtifactSerializer;
|
|
636
|
-
destroyClient: ClientSerializer;
|
|
637
|
-
destroyConfig: ConfigSerializer;
|
|
638
|
-
destroyGrant: GrantSerializer;
|
|
639
|
-
destroyProfile: ProfileSerializer;
|
|
640
|
-
destroySession: SessionSerializer;
|
|
641
|
-
destroyUser: UserSerializer;
|
|
642
|
-
restoreApp: AppSerializer;
|
|
643
|
-
restoreArtifact: ArtifactSerializer;
|
|
644
|
-
restoreClient: ClientSerializer;
|
|
645
|
-
restoreConfig: ConfigSerializer;
|
|
646
|
-
restoreGrant: GrantSerializer;
|
|
647
|
-
restoreProfile: ProfileSerializer;
|
|
648
|
-
restoreSession: SessionSerializer;
|
|
649
|
-
restoreUser: UserSerializer;
|
|
650
|
-
updateApp: AppSerializer;
|
|
651
|
-
updateApps: TotalSerializer;
|
|
652
|
-
updateArtifact: ArtifactSerializer;
|
|
653
|
-
updateArtifacts: TotalSerializer;
|
|
654
|
-
updateClient: ClientSerializer;
|
|
655
|
-
updateClients: TotalSerializer;
|
|
656
|
-
updateConfig: ConfigSerializer;
|
|
657
|
-
updateConfigs: TotalSerializer;
|
|
658
|
-
updateGrant: GrantSerializer;
|
|
659
|
-
updateGrants: TotalSerializer;
|
|
660
|
-
updateProfile: ProfileSerializer;
|
|
661
|
-
updateProfiles: TotalSerializer;
|
|
662
|
-
updateSession: SessionSerializer;
|
|
663
|
-
updateSessions: TotalSerializer;
|
|
664
|
-
updateUser: UserSerializer;
|
|
665
|
-
updateUsers: TotalSerializer;
|
|
666
|
-
};
|
|
667
|
-
export type MutationCreateAppArgs = {
|
|
668
|
-
data: CreateAppDto;
|
|
669
|
-
};
|
|
670
|
-
export type MutationCreateArtifactArgs = {
|
|
671
|
-
data: CreateArtifactDto;
|
|
672
|
-
};
|
|
673
|
-
export type MutationCreateClientArgs = {
|
|
674
|
-
data: CreateClientDto;
|
|
675
|
-
};
|
|
676
|
-
export type MutationCreateConfigArgs = {
|
|
677
|
-
data: CreateConfigDto;
|
|
678
|
-
};
|
|
679
|
-
export type MutationCreateGrantArgs = {
|
|
680
|
-
data: CreateGrantDto;
|
|
681
|
-
};
|
|
682
|
-
export type MutationCreateProfileArgs = {
|
|
683
|
-
data: CreateProfileDto;
|
|
684
|
-
};
|
|
685
|
-
export type MutationCreateSessionArgs = {
|
|
686
|
-
data: CreateSessionDto;
|
|
687
|
-
};
|
|
688
|
-
export type MutationCreateUserArgs = {
|
|
689
|
-
data: CreateUserDto;
|
|
690
|
-
};
|
|
691
|
-
export type MutationDeleteAppArgs = {
|
|
692
|
-
id: Scalars['String']['input'];
|
|
693
|
-
};
|
|
694
|
-
export type MutationDeleteArtifactArgs = {
|
|
695
|
-
id: Scalars['String']['input'];
|
|
696
|
-
};
|
|
697
|
-
export type MutationDeleteClientArgs = {
|
|
698
|
-
id: Scalars['String']['input'];
|
|
699
|
-
};
|
|
700
|
-
export type MutationDeleteConfigArgs = {
|
|
701
|
-
id: Scalars['String']['input'];
|
|
702
|
-
};
|
|
703
|
-
export type MutationDeleteGrantArgs = {
|
|
704
|
-
id: Scalars['String']['input'];
|
|
705
|
-
};
|
|
706
|
-
export type MutationDeleteProfileArgs = {
|
|
707
|
-
id: Scalars['String']['input'];
|
|
708
|
-
};
|
|
709
|
-
export type MutationDeleteSessionArgs = {
|
|
710
|
-
id: Scalars['String']['input'];
|
|
711
|
-
};
|
|
712
|
-
export type MutationDeleteUserArgs = {
|
|
713
|
-
id: Scalars['String']['input'];
|
|
714
|
-
};
|
|
715
|
-
export type MutationDestroyAppArgs = {
|
|
716
|
-
id: Scalars['String']['input'];
|
|
717
|
-
};
|
|
718
|
-
export type MutationDestroyArtifactArgs = {
|
|
719
|
-
id: Scalars['String']['input'];
|
|
720
|
-
};
|
|
721
|
-
export type MutationDestroyClientArgs = {
|
|
722
|
-
id: Scalars['String']['input'];
|
|
723
|
-
};
|
|
724
|
-
export type MutationDestroyConfigArgs = {
|
|
725
|
-
id: Scalars['String']['input'];
|
|
726
|
-
};
|
|
727
|
-
export type MutationDestroyGrantArgs = {
|
|
728
|
-
id: Scalars['String']['input'];
|
|
729
|
-
};
|
|
730
|
-
export type MutationDestroyProfileArgs = {
|
|
731
|
-
id: Scalars['String']['input'];
|
|
732
|
-
};
|
|
733
|
-
export type MutationDestroySessionArgs = {
|
|
734
|
-
id: Scalars['String']['input'];
|
|
735
|
-
};
|
|
736
|
-
export type MutationDestroyUserArgs = {
|
|
737
|
-
id: Scalars['String']['input'];
|
|
738
|
-
};
|
|
739
|
-
export type MutationRestoreAppArgs = {
|
|
740
|
-
id: Scalars['String']['input'];
|
|
741
|
-
};
|
|
742
|
-
export type MutationRestoreArtifactArgs = {
|
|
743
|
-
id: Scalars['String']['input'];
|
|
744
|
-
};
|
|
745
|
-
export type MutationRestoreClientArgs = {
|
|
746
|
-
id: Scalars['String']['input'];
|
|
747
|
-
};
|
|
748
|
-
export type MutationRestoreConfigArgs = {
|
|
749
|
-
id: Scalars['String']['input'];
|
|
750
|
-
};
|
|
751
|
-
export type MutationRestoreGrantArgs = {
|
|
752
|
-
id: Scalars['String']['input'];
|
|
753
|
-
};
|
|
754
|
-
export type MutationRestoreProfileArgs = {
|
|
755
|
-
id: Scalars['String']['input'];
|
|
756
|
-
};
|
|
757
|
-
export type MutationRestoreSessionArgs = {
|
|
758
|
-
id: Scalars['String']['input'];
|
|
759
|
-
};
|
|
760
|
-
export type MutationRestoreUserArgs = {
|
|
761
|
-
id: Scalars['String']['input'];
|
|
762
|
-
};
|
|
763
|
-
export type MutationUpdateAppArgs = {
|
|
764
|
-
data: UpdateAppDto;
|
|
765
|
-
id: Scalars['String']['input'];
|
|
766
|
-
};
|
|
767
|
-
export type MutationUpdateAppsArgs = {
|
|
768
|
-
data: UpdateAppDto;
|
|
769
|
-
filter: QueryFilterDto;
|
|
770
|
-
};
|
|
771
|
-
export type MutationUpdateArtifactArgs = {
|
|
772
|
-
data: UpdateArtifactDto;
|
|
773
|
-
id: Scalars['String']['input'];
|
|
774
|
-
};
|
|
775
|
-
export type MutationUpdateArtifactsArgs = {
|
|
776
|
-
data: UpdateArtifactDto;
|
|
777
|
-
filter: QueryFilterDto;
|
|
778
|
-
};
|
|
779
|
-
export type MutationUpdateClientArgs = {
|
|
780
|
-
data: UpdateClientDto;
|
|
781
|
-
id: Scalars['String']['input'];
|
|
782
|
-
};
|
|
783
|
-
export type MutationUpdateClientsArgs = {
|
|
784
|
-
data: UpdateClientDto;
|
|
785
|
-
filter: QueryFilterDto;
|
|
786
|
-
};
|
|
787
|
-
export type MutationUpdateConfigArgs = {
|
|
788
|
-
data: UpdateConfigDto;
|
|
789
|
-
id: Scalars['String']['input'];
|
|
790
|
-
};
|
|
791
|
-
export type MutationUpdateConfigsArgs = {
|
|
792
|
-
data: UpdateConfigDto;
|
|
793
|
-
filter: QueryFilterDto;
|
|
794
|
-
};
|
|
795
|
-
export type MutationUpdateGrantArgs = {
|
|
796
|
-
data: UpdateGrantDto;
|
|
797
|
-
id: Scalars['String']['input'];
|
|
798
|
-
};
|
|
799
|
-
export type MutationUpdateGrantsArgs = {
|
|
800
|
-
data: UpdateGrantDto;
|
|
801
|
-
filter: QueryFilterDto;
|
|
802
|
-
};
|
|
803
|
-
export type MutationUpdateProfileArgs = {
|
|
804
|
-
data: UpdateProfileDto;
|
|
805
|
-
id: Scalars['String']['input'];
|
|
806
|
-
};
|
|
807
|
-
export type MutationUpdateProfilesArgs = {
|
|
808
|
-
data: UpdateProfileDto;
|
|
809
|
-
filter: QueryFilterDto;
|
|
810
|
-
};
|
|
811
|
-
export type MutationUpdateSessionArgs = {
|
|
812
|
-
data: UpdateSessionDto;
|
|
813
|
-
id: Scalars['String']['input'];
|
|
814
|
-
};
|
|
815
|
-
export type MutationUpdateSessionsArgs = {
|
|
816
|
-
data: UpdateSessionDto;
|
|
817
|
-
filter: QueryFilterDto;
|
|
818
|
-
};
|
|
819
|
-
export type MutationUpdateUserArgs = {
|
|
820
|
-
data: UpdateUserDto;
|
|
821
|
-
id: Scalars['String']['input'];
|
|
822
|
-
};
|
|
823
|
-
export type MutationUpdateUsersArgs = {
|
|
824
|
-
data: UpdateUserDto;
|
|
825
|
-
filter: QueryFilterDto;
|
|
826
|
-
};
|
|
827
|
-
export declare enum OtpProvider {
|
|
828
|
-
Unknown = "Unknown",
|
|
829
|
-
Wenex = "Wenex"
|
|
830
|
-
}
|
|
831
|
-
export type OtpServiceSerializer = {
|
|
832
|
-
__typename?: 'OtpServiceSerializer';
|
|
833
|
-
config: Scalars['JSON']['output'];
|
|
834
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
835
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
836
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
837
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
838
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
839
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
840
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
841
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
842
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
843
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
844
|
-
provider: OtpProvider;
|
|
845
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
846
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
847
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
848
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
849
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
850
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
851
|
-
type: OtpType;
|
|
852
|
-
uid: Scalars['String']['output'];
|
|
853
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
854
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
855
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
856
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
857
|
-
};
|
|
858
|
-
export declare enum OtpType {
|
|
859
|
-
Call = "Call",
|
|
860
|
-
Email = "Email",
|
|
861
|
-
Sms = "SMS"
|
|
862
|
-
}
|
|
863
|
-
export declare enum PersonType {
|
|
864
|
-
Legal = "Legal",
|
|
865
|
-
Real = "Real"
|
|
866
|
-
}
|
|
867
|
-
export type PlaceSerializer = {
|
|
868
|
-
__typename?: 'PlaceSerializer';
|
|
869
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
870
|
-
country: Scalars['String']['output'];
|
|
871
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
872
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
873
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
874
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
875
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
876
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
877
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
878
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
879
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
880
|
-
location?: Maybe<Scalars['String']['output']>;
|
|
881
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
882
|
-
postal_code?: Maybe<Scalars['String']['output']>;
|
|
883
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
884
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
885
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
886
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
887
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
888
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
889
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
890
|
-
type: PlaceType;
|
|
891
|
-
uid: Scalars['String']['output'];
|
|
892
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
893
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
894
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
895
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
896
|
-
};
|
|
897
|
-
export declare enum PlaceType {
|
|
898
|
-
Favor = "Favor",
|
|
899
|
-
Home = "Home",
|
|
900
|
-
Work = "Work"
|
|
901
|
-
}
|
|
902
|
-
export declare enum Plan {
|
|
903
|
-
Aluminum = "Aluminum",
|
|
904
|
-
Gold = "Gold",
|
|
905
|
-
Platinum = "Platinum"
|
|
906
|
-
}
|
|
907
|
-
export type PolicySerializer = {
|
|
908
|
-
__typename?: 'PolicySerializer';
|
|
909
|
-
action: Action;
|
|
910
|
-
field?: Maybe<Array<Scalars['String']['output']>>;
|
|
911
|
-
filter?: Maybe<Array<Scalars['String']['output']>>;
|
|
912
|
-
location?: Maybe<Array<Scalars['String']['output']>>;
|
|
913
|
-
object: Resource;
|
|
914
|
-
subject: Scalars['String']['output'];
|
|
915
|
-
time?: Maybe<Array<PolicyTimeSerializer>>;
|
|
916
|
-
};
|
|
917
|
-
export type PolicyTimeSerializer = {
|
|
918
|
-
__typename?: 'PolicyTimeSerializer';
|
|
919
|
-
cron_exp: Scalars['String']['output'];
|
|
920
|
-
duration: Scalars['Float']['output'];
|
|
921
|
-
};
|
|
922
|
-
export type ProfileSerializer = {
|
|
923
|
-
__typename?: 'ProfileSerializer';
|
|
924
|
-
avatar?: Maybe<Scalars['String']['output']>;
|
|
925
|
-
birth_date?: Maybe<Scalars['Date']['output']>;
|
|
926
|
-
clients: Array<Scalars['String']['output']>;
|
|
927
|
-
cover?: Maybe<Scalars['String']['output']>;
|
|
928
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
929
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
930
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
931
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
932
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
933
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
934
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
935
|
-
first_name?: Maybe<Scalars['String']['output']>;
|
|
936
|
-
gender: Gender;
|
|
937
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
938
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
939
|
-
last_name?: Maybe<Scalars['String']['output']>;
|
|
940
|
-
middle_name?: Maybe<Scalars['String']['output']>;
|
|
941
|
-
national_code?: Maybe<Scalars['String']['output']>;
|
|
942
|
-
nationality?: Maybe<Scalars['String']['output']>;
|
|
943
|
-
nickname?: Maybe<Scalars['String']['output']>;
|
|
944
|
-
owner: Scalars['String']['output'];
|
|
945
|
-
person_type: PersonType;
|
|
946
|
-
places?: Maybe<Array<PlaceSerializer>>;
|
|
947
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
948
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
949
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
950
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
951
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
952
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
953
|
-
state: State;
|
|
954
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
955
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
956
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
957
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
958
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
959
|
-
};
|
|
960
|
-
export type ProfilesSerializer = {
|
|
961
|
-
__typename?: 'ProfilesSerializer';
|
|
962
|
-
data: Array<ProfileSerializer>;
|
|
963
|
-
};
|
|
964
|
-
export type Query = {
|
|
965
|
-
__typename?: 'Query';
|
|
966
|
-
countApp: TotalSerializer;
|
|
967
|
-
countArtifact: TotalSerializer;
|
|
968
|
-
countClient: TotalSerializer;
|
|
969
|
-
countConfig: TotalSerializer;
|
|
970
|
-
countGrant: TotalSerializer;
|
|
971
|
-
countProfile: TotalSerializer;
|
|
972
|
-
countSession: TotalSerializer;
|
|
973
|
-
countUser: TotalSerializer;
|
|
974
|
-
findApp: AppSerializer;
|
|
975
|
-
findApps: AppsSerializer;
|
|
976
|
-
findArtifact: ArtifactSerializer;
|
|
977
|
-
findArtifacts: ArtifactsSerializer;
|
|
978
|
-
findClient: ClientSerializer;
|
|
979
|
-
findClients: ClientsSerializer;
|
|
980
|
-
findConfig: ConfigSerializer;
|
|
981
|
-
findConfigs: ConfigsSerializer;
|
|
982
|
-
findGrant: GrantSerializer;
|
|
983
|
-
findGrants: GrantsSerializer;
|
|
984
|
-
findProfile: ProfileSerializer;
|
|
985
|
-
findProfiles: ProfilesSerializer;
|
|
986
|
-
findSession: SessionSerializer;
|
|
987
|
-
findSessions: SessionsSerializer;
|
|
988
|
-
findUser: UserSerializer;
|
|
989
|
-
findUsers: UsersSerializer;
|
|
990
|
-
};
|
|
991
|
-
export type QueryCountAppArgs = {
|
|
992
|
-
filter: QueryFilterDto;
|
|
993
|
-
};
|
|
994
|
-
export type QueryCountArtifactArgs = {
|
|
995
|
-
filter: QueryFilterDto;
|
|
996
|
-
};
|
|
997
|
-
export type QueryCountClientArgs = {
|
|
998
|
-
filter: QueryFilterDto;
|
|
999
|
-
};
|
|
1000
|
-
export type QueryCountConfigArgs = {
|
|
1001
|
-
filter: QueryFilterDto;
|
|
1002
|
-
};
|
|
1003
|
-
export type QueryCountGrantArgs = {
|
|
1004
|
-
filter: QueryFilterDto;
|
|
1005
|
-
};
|
|
1006
|
-
export type QueryCountProfileArgs = {
|
|
1007
|
-
filter: QueryFilterDto;
|
|
1008
|
-
};
|
|
1009
|
-
export type QueryCountSessionArgs = {
|
|
1010
|
-
filter: QueryFilterDto;
|
|
1011
|
-
};
|
|
1012
|
-
export type QueryCountUserArgs = {
|
|
1013
|
-
filter: QueryFilterDto;
|
|
1014
|
-
};
|
|
1015
|
-
export type QueryFindAppArgs = {
|
|
1016
|
-
id: Scalars['String']['input'];
|
|
1017
|
-
};
|
|
1018
|
-
export type QueryFindAppsArgs = {
|
|
1019
|
-
filter: FilterDto;
|
|
1020
|
-
};
|
|
1021
|
-
export type QueryFindArtifactArgs = {
|
|
1022
|
-
id: Scalars['String']['input'];
|
|
1023
|
-
};
|
|
1024
|
-
export type QueryFindArtifactsArgs = {
|
|
1025
|
-
filter: FilterDto;
|
|
1026
|
-
};
|
|
1027
|
-
export type QueryFindClientArgs = {
|
|
1028
|
-
id: Scalars['String']['input'];
|
|
1029
|
-
};
|
|
1030
|
-
export type QueryFindClientsArgs = {
|
|
1031
|
-
filter: FilterDto;
|
|
1032
|
-
};
|
|
1033
|
-
export type QueryFindConfigArgs = {
|
|
1034
|
-
id: Scalars['String']['input'];
|
|
1035
|
-
};
|
|
1036
|
-
export type QueryFindConfigsArgs = {
|
|
1037
|
-
filter: FilterDto;
|
|
1038
|
-
};
|
|
1039
|
-
export type QueryFindGrantArgs = {
|
|
1040
|
-
id: Scalars['String']['input'];
|
|
1041
|
-
};
|
|
1042
|
-
export type QueryFindGrantsArgs = {
|
|
1043
|
-
filter: FilterDto;
|
|
1044
|
-
};
|
|
1045
|
-
export type QueryFindProfileArgs = {
|
|
1046
|
-
id: Scalars['String']['input'];
|
|
1047
|
-
};
|
|
1048
|
-
export type QueryFindProfilesArgs = {
|
|
1049
|
-
filter: FilterDto;
|
|
1050
|
-
};
|
|
1051
|
-
export type QueryFindSessionArgs = {
|
|
1052
|
-
id: Scalars['String']['input'];
|
|
1053
|
-
};
|
|
1054
|
-
export type QueryFindSessionsArgs = {
|
|
1055
|
-
filter: FilterDto;
|
|
1056
|
-
};
|
|
1057
|
-
export type QueryFindUserArgs = {
|
|
1058
|
-
id: Scalars['String']['input'];
|
|
1059
|
-
};
|
|
1060
|
-
export type QueryFindUsersArgs = {
|
|
1061
|
-
filter: FilterDto;
|
|
1062
|
-
};
|
|
1063
|
-
export type QueryFilterDto = {
|
|
1064
|
-
query: Scalars['JSON']['input'];
|
|
1065
|
-
};
|
|
1066
|
-
export declare enum Resource {
|
|
1067
|
-
All = "All",
|
|
1068
|
-
Auth = "Auth",
|
|
1069
|
-
AuthAuthentication = "AuthAuthentication",
|
|
1070
|
-
AuthAuthorization = "AuthAuthorization",
|
|
1071
|
-
AuthGrants = "AuthGrants",
|
|
1072
|
-
Configs = "Configs",
|
|
1073
|
-
Domain = "Domain",
|
|
1074
|
-
DomainApps = "DomainApps",
|
|
1075
|
-
DomainClients = "DomainClients",
|
|
1076
|
-
General = "General",
|
|
1077
|
-
GeneralArtifacts = "GeneralArtifacts",
|
|
1078
|
-
Identity = "Identity",
|
|
1079
|
-
IdentityProfiles = "IdentityProfiles",
|
|
1080
|
-
IdentitySessions = "IdentitySessions",
|
|
1081
|
-
IdentityUsers = "IdentityUsers"
|
|
1082
|
-
}
|
|
1083
|
-
export declare enum Scope {
|
|
1084
|
-
Manage = "Manage",
|
|
1085
|
-
ManageAuth = "ManageAuth",
|
|
1086
|
-
ManageAuthGrants = "ManageAuthGrants",
|
|
1087
|
-
ManageConfigs = "ManageConfigs",
|
|
1088
|
-
ManageDomain = "ManageDomain",
|
|
1089
|
-
ManageDomainApps = "ManageDomainApps",
|
|
1090
|
-
ManageDomainClients = "ManageDomainClients",
|
|
1091
|
-
ManageGeneral = "ManageGeneral",
|
|
1092
|
-
ManageGeneralArtifacts = "ManageGeneralArtifacts",
|
|
1093
|
-
ManageIdentity = "ManageIdentity",
|
|
1094
|
-
ManageIdentityProfiles = "ManageIdentityProfiles",
|
|
1095
|
-
ManageIdentitySessions = "ManageIdentitySessions",
|
|
1096
|
-
ManageIdentityUsers = "ManageIdentityUsers",
|
|
1097
|
-
Read = "Read",
|
|
1098
|
-
ReadAuthGrants = "ReadAuthGrants",
|
|
1099
|
-
ReadConfigs = "ReadConfigs",
|
|
1100
|
-
ReadDomain = "ReadDomain",
|
|
1101
|
-
ReadDomainApps = "ReadDomainApps",
|
|
1102
|
-
ReadDomainClients = "ReadDomainClients",
|
|
1103
|
-
ReadGeneral = "ReadGeneral",
|
|
1104
|
-
ReadGeneralArtifacts = "ReadGeneralArtifacts",
|
|
1105
|
-
ReadIdentity = "ReadIdentity",
|
|
1106
|
-
ReadIdentityProfiles = "ReadIdentityProfiles",
|
|
1107
|
-
ReadIdentitySessions = "ReadIdentitySessions",
|
|
1108
|
-
ReadIdentityUsers = "ReadIdentityUsers",
|
|
1109
|
-
Whole = "Whole",
|
|
1110
|
-
Write = "Write",
|
|
1111
|
-
WriteAuthGrants = "WriteAuthGrants",
|
|
1112
|
-
WriteConfigs = "WriteConfigs",
|
|
1113
|
-
WriteDomain = "WriteDomain",
|
|
1114
|
-
WriteDomainApps = "WriteDomainApps",
|
|
1115
|
-
WriteDomainClients = "WriteDomainClients",
|
|
1116
|
-
WriteGeneral = "WriteGeneral",
|
|
1117
|
-
WriteGeneralArtifacts = "WriteGeneralArtifacts",
|
|
1118
|
-
WriteIdentity = "WriteIdentity",
|
|
1119
|
-
WriteIdentityProfiles = "WriteIdentityProfiles",
|
|
1120
|
-
WriteIdentitySessions = "WriteIdentitySessions",
|
|
1121
|
-
WriteIdentityUsers = "WriteIdentityUsers"
|
|
1122
|
-
}
|
|
1123
|
-
export type SessionSerializer = {
|
|
1124
|
-
__typename?: 'SessionSerializer';
|
|
1125
|
-
agent: Scalars['String']['output'];
|
|
1126
|
-
clients: Array<Scalars['String']['output']>;
|
|
1127
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
1128
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
1129
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
1130
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
1131
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
1132
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
1133
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
1134
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
1135
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
1136
|
-
owner: Scalars['String']['output'];
|
|
1137
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
1138
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
1139
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
1140
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
1141
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
1142
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
1143
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1144
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
1145
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
1146
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
1147
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
1148
|
-
};
|
|
1149
|
-
export type SessionsSerializer = {
|
|
1150
|
-
__typename?: 'SessionsSerializer';
|
|
1151
|
-
data: Array<SessionSerializer>;
|
|
1152
|
-
};
|
|
1153
|
-
export declare enum State {
|
|
1154
|
-
Approved = "Approved",
|
|
1155
|
-
Pending = "Pending",
|
|
1156
|
-
Rejected = "Rejected",
|
|
1157
|
-
Unknown = "Unknown",
|
|
1158
|
-
Verified = "Verified"
|
|
1159
|
-
}
|
|
1160
|
-
export declare enum Status {
|
|
1161
|
-
Active = "Active",
|
|
1162
|
-
Inactive = "Inactive"
|
|
1163
|
-
}
|
|
1164
|
-
export type TimeSerializer = {
|
|
1165
|
-
__typename?: 'TimeSerializer';
|
|
1166
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
1167
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
1168
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
1169
|
-
cron_exp: Scalars['String']['output'];
|
|
1170
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
1171
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
1172
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
1173
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
1174
|
-
duration: Scalars['Float']['output'];
|
|
1175
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
1176
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
1177
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
1178
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
1179
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
1180
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
1181
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
1182
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
1183
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1184
|
-
uid: Scalars['String']['output'];
|
|
1185
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
1186
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
1187
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
1188
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
1189
|
-
};
|
|
1190
|
-
export type TotalSerializer = {
|
|
1191
|
-
__typename?: 'TotalSerializer';
|
|
1192
|
-
total: Scalars['Int']['output'];
|
|
1193
|
-
};
|
|
1194
|
-
export type UpdateAppDto = {
|
|
1195
|
-
access_token_ttl: Scalars['Float']['input'];
|
|
1196
|
-
change_logs?: InputMaybe<Array<UpdateChangeLogDto>>;
|
|
1197
|
-
cid: Scalars['String']['input'];
|
|
1198
|
-
clients: Array<Scalars['String']['input']>;
|
|
1199
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
-
grant_types: Array<GrantType>;
|
|
1201
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1202
|
-
logo?: InputMaybe<Scalars['String']['input']>;
|
|
1203
|
-
name: Scalars['String']['input'];
|
|
1204
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1205
|
-
redirect_uri?: InputMaybe<Scalars['String']['input']>;
|
|
1206
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1207
|
-
refresh_token_ttl: Scalars['Float']['input'];
|
|
1208
|
-
scopes: Array<Scope>;
|
|
1209
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1210
|
-
site?: InputMaybe<Scalars['String']['input']>;
|
|
1211
|
-
slogan?: InputMaybe<Scalars['String']['input']>;
|
|
1212
|
-
status: Status;
|
|
1213
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1214
|
-
type: AppType;
|
|
1215
|
-
url?: InputMaybe<Scalars['String']['input']>;
|
|
1216
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1217
|
-
};
|
|
1218
|
-
export type UpdateArtifactDto = {
|
|
1219
|
-
clients: Array<Scalars['String']['input']>;
|
|
1220
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1221
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1222
|
-
key: Scalars['String']['input'];
|
|
1223
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1224
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1225
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1226
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1227
|
-
type: ValueType;
|
|
1228
|
-
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
1229
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1230
|
-
};
|
|
1231
|
-
export type UpdateChangeLogDto = {
|
|
1232
|
-
changes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1233
|
-
code: Scalars['String']['input'];
|
|
1234
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1235
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
1236
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
1237
|
-
deprecated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1238
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1239
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1240
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1241
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1242
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1243
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
1244
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
1245
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1246
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1247
|
-
uid: Scalars['String']['input'];
|
|
1248
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1249
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
1250
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
1251
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1252
|
-
};
|
|
1253
|
-
export type UpdateClientDto = {
|
|
1254
|
-
access_token_ttl: Scalars['Float']['input'];
|
|
1255
|
-
api_key: Scalars['String']['input'];
|
|
1256
|
-
client_id: Scalars['String']['input'];
|
|
1257
|
-
client_secret: Scalars['String']['input'];
|
|
1258
|
-
clients: Array<Scalars['String']['input']>;
|
|
1259
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1260
|
-
domains: Array<UpdateDomainDto>;
|
|
1261
|
-
expiration_date: Scalars['Date']['input'];
|
|
1262
|
-
grant_types: Array<GrantType>;
|
|
1263
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1264
|
-
logo?: InputMaybe<Scalars['String']['input']>;
|
|
1265
|
-
name: Scalars['String']['input'];
|
|
1266
|
-
otp_services: Array<UpdateOtpServiceDto>;
|
|
1267
|
-
plan: Plan;
|
|
1268
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1269
|
-
redirect_uri?: InputMaybe<Scalars['String']['input']>;
|
|
1270
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1271
|
-
refresh_token_ttl: Scalars['Float']['input'];
|
|
1272
|
-
scopes: Array<Scope>;
|
|
1273
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1274
|
-
site?: InputMaybe<Scalars['String']['input']>;
|
|
1275
|
-
slogan?: InputMaybe<Scalars['String']['input']>;
|
|
1276
|
-
state: State;
|
|
1277
|
-
status: Status;
|
|
1278
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1279
|
-
url?: InputMaybe<Scalars['String']['input']>;
|
|
1280
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1281
|
-
};
|
|
1282
|
-
export type UpdateConfigDto = {
|
|
1283
|
-
clients: Array<Scalars['String']['input']>;
|
|
1284
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1285
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1286
|
-
key: Scalars['String']['input'];
|
|
1287
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1288
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1289
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1290
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1291
|
-
type: ValueType;
|
|
1292
|
-
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
1293
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1294
|
-
};
|
|
1295
|
-
export type UpdateDomainDto = {
|
|
1296
|
-
address: Scalars['String']['input'];
|
|
1297
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1298
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
1299
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
1300
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1301
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1302
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1303
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1304
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1305
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
1306
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
1307
|
-
roles: Array<Scalars['String']['input']>;
|
|
1308
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1309
|
-
status: Status;
|
|
1310
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1311
|
-
uid: Scalars['String']['input'];
|
|
1312
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1313
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
1314
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
1315
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1316
|
-
};
|
|
1317
|
-
export type UpdateGrantDto = {
|
|
1318
|
-
action: Action;
|
|
1319
|
-
clients: Array<Scalars['String']['input']>;
|
|
1320
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1321
|
-
field?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1322
|
-
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1323
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1324
|
-
location?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1325
|
-
object: Resource;
|
|
1326
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1327
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1328
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1329
|
-
subject: Scalars['String']['input'];
|
|
1330
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1331
|
-
time?: InputMaybe<Array<UpdateTimeDto>>;
|
|
1332
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1333
|
-
};
|
|
1334
|
-
export type UpdateOtpServiceDto = {
|
|
1335
|
-
config: Scalars['JSON']['input'];
|
|
1336
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1337
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
1338
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
1339
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1340
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1341
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1342
|
-
provider: OtpProvider;
|
|
1343
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1344
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1345
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
1346
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
1347
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1348
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1349
|
-
type: OtpType;
|
|
1350
|
-
uid: Scalars['String']['input'];
|
|
1351
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1352
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
1353
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
1354
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1355
|
-
};
|
|
1356
|
-
export type UpdatePlaceDto = {
|
|
1357
|
-
address?: InputMaybe<Scalars['String']['input']>;
|
|
1358
|
-
country: Scalars['String']['input'];
|
|
1359
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1360
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
1361
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
1362
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1363
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1364
|
-
location?: InputMaybe<Scalars['String']['input']>;
|
|
1365
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
1366
|
-
postal_code?: InputMaybe<Scalars['String']['input']>;
|
|
1367
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1368
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1369
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1370
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
1371
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
1372
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1373
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1374
|
-
type: PlaceType;
|
|
1375
|
-
uid: Scalars['String']['input'];
|
|
1376
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1377
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
1378
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
1379
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1380
|
-
};
|
|
1381
|
-
export type UpdateProfileDto = {
|
|
1382
|
-
avatar?: InputMaybe<Scalars['String']['input']>;
|
|
1383
|
-
birth_date?: InputMaybe<Scalars['Date']['input']>;
|
|
1384
|
-
clients: Array<Scalars['String']['input']>;
|
|
1385
|
-
cover?: InputMaybe<Scalars['String']['input']>;
|
|
1386
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1387
|
-
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
1388
|
-
gender: Gender;
|
|
1389
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1390
|
-
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
1391
|
-
middle_name?: InputMaybe<Scalars['String']['input']>;
|
|
1392
|
-
national_code?: InputMaybe<Scalars['String']['input']>;
|
|
1393
|
-
nationality?: InputMaybe<Scalars['String']['input']>;
|
|
1394
|
-
nickname?: InputMaybe<Scalars['String']['input']>;
|
|
1395
|
-
person_type: PersonType;
|
|
1396
|
-
places?: InputMaybe<Array<UpdatePlaceDto>>;
|
|
1397
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1398
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1399
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1400
|
-
state: State;
|
|
1401
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1402
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1403
|
-
};
|
|
1404
|
-
export type UpdateSessionDto = {
|
|
1405
|
-
agent: Scalars['String']['input'];
|
|
1406
|
-
clients: Array<Scalars['String']['input']>;
|
|
1407
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1408
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1409
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1410
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1411
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1412
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1413
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1414
|
-
};
|
|
1415
|
-
export type UpdateTimeDto = {
|
|
1416
|
-
cron_exp: Scalars['String']['input'];
|
|
1417
|
-
deleted_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1418
|
-
deleted_by?: InputMaybe<Scalars['String']['input']>;
|
|
1419
|
-
deleted_in?: InputMaybe<Scalars['String']['input']>;
|
|
1420
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1421
|
-
duration: Scalars['Float']['input'];
|
|
1422
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1423
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1424
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1425
|
-
restored_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1426
|
-
restored_by?: InputMaybe<Scalars['String']['input']>;
|
|
1427
|
-
restored_in?: InputMaybe<Scalars['String']['input']>;
|
|
1428
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1429
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1430
|
-
uid: Scalars['String']['input'];
|
|
1431
|
-
updated_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1432
|
-
updated_by?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
-
updated_in?: InputMaybe<Scalars['String']['input']>;
|
|
1434
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1435
|
-
};
|
|
1436
|
-
export type UpdateUserDto = {
|
|
1437
|
-
clients: Array<Scalars['String']['input']>;
|
|
1438
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1439
|
-
email?: InputMaybe<Scalars['String']['input']>;
|
|
1440
|
-
groups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1441
|
-
password?: InputMaybe<Scalars['String']['input']>;
|
|
1442
|
-
phone?: InputMaybe<Scalars['String']['input']>;
|
|
1443
|
-
props?: InputMaybe<Scalars['JSON']['input']>;
|
|
1444
|
-
ref?: InputMaybe<Scalars['String']['input']>;
|
|
1445
|
-
shares?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1446
|
-
status: Status;
|
|
1447
|
-
subjects?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1448
|
-
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1449
|
-
username?: InputMaybe<Scalars['String']['input']>;
|
|
1450
|
-
verified_at?: InputMaybe<Scalars['Date']['input']>;
|
|
1451
|
-
verified_by?: InputMaybe<Scalars['String']['input']>;
|
|
1452
|
-
verified_in?: InputMaybe<Scalars['String']['input']>;
|
|
1453
|
-
version?: InputMaybe<Scalars['String']['input']>;
|
|
1454
|
-
};
|
|
1455
|
-
export type UserSerializer = {
|
|
1456
|
-
__typename?: 'UserSerializer';
|
|
1457
|
-
clients: Array<Scalars['String']['output']>;
|
|
1458
|
-
created_at?: Maybe<Scalars['Date']['output']>;
|
|
1459
|
-
created_by?: Maybe<Scalars['String']['output']>;
|
|
1460
|
-
created_in?: Maybe<Scalars['String']['output']>;
|
|
1461
|
-
deleted_at?: Maybe<Scalars['Date']['output']>;
|
|
1462
|
-
deleted_by?: Maybe<Scalars['String']['output']>;
|
|
1463
|
-
deleted_in?: Maybe<Scalars['String']['output']>;
|
|
1464
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
1465
|
-
email?: Maybe<Scalars['String']['output']>;
|
|
1466
|
-
groups?: Maybe<Array<Scalars['String']['output']>>;
|
|
1467
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
1468
|
-
owner: Scalars['String']['output'];
|
|
1469
|
-
phone?: Maybe<Scalars['String']['output']>;
|
|
1470
|
-
props?: Maybe<Scalars['JSON']['output']>;
|
|
1471
|
-
ref?: Maybe<Scalars['String']['output']>;
|
|
1472
|
-
restored_at?: Maybe<Scalars['Date']['output']>;
|
|
1473
|
-
restored_by?: Maybe<Scalars['String']['output']>;
|
|
1474
|
-
restored_in?: Maybe<Scalars['String']['output']>;
|
|
1475
|
-
shares?: Maybe<Array<Scalars['String']['output']>>;
|
|
1476
|
-
status: Status;
|
|
1477
|
-
subjects?: Maybe<Array<Scalars['String']['output']>>;
|
|
1478
|
-
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
1479
|
-
updated_at?: Maybe<Scalars['Date']['output']>;
|
|
1480
|
-
updated_by?: Maybe<Scalars['String']['output']>;
|
|
1481
|
-
updated_in?: Maybe<Scalars['String']['output']>;
|
|
1482
|
-
username?: Maybe<Scalars['String']['output']>;
|
|
1483
|
-
verified_at?: Maybe<Scalars['Date']['output']>;
|
|
1484
|
-
verified_by?: Maybe<Scalars['String']['output']>;
|
|
1485
|
-
verified_in?: Maybe<Scalars['String']['output']>;
|
|
1486
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
1487
|
-
};
|
|
1488
|
-
export type UsersSerializer = {
|
|
1489
|
-
__typename?: 'UsersSerializer';
|
|
1490
|
-
data: Array<UserSerializer>;
|
|
1491
|
-
};
|
|
1492
|
-
export declare enum ValueType {
|
|
1493
|
-
Array = "Array",
|
|
1494
|
-
Boolean = "Boolean",
|
|
1495
|
-
Null = "Null",
|
|
1496
|
-
Number = "Number",
|
|
1497
|
-
Object = "Object",
|
|
1498
|
-
String = "String"
|
|
1499
|
-
}
|