├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── initiate_release.yml │ ├── release.yml │ └── reviewdog.yml ├── .gitignore ├── .golangci.yml ├── .versionrc.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── activity.go ├── activity_test.go ├── aggregated_feed.go ├── aggregated_feed_test.go ├── analytics.go ├── analytics_test.go ├── analytics_types.go ├── assets └── logo.svg ├── audit_logs.go ├── audit_logs_test.go ├── authenticator.go ├── authenticator_test.go ├── client.go ├── client_internal_test.go ├── client_test.go ├── collections.go ├── collections_test.go ├── enriched_activities.go ├── enriched_activities_test.go ├── errors.go ├── errors_test.go ├── feed.go ├── feed_test.go ├── flat_feed.go ├── flat_feed_test.go ├── go.mod ├── go.sum ├── moderation.go ├── moderation_test.go ├── notification_feed.go ├── notification_feed_test.go ├── options.go ├── personalization.go ├── personalization_test.go ├── reactions.go ├── reactions_test.go ├── run-lint.sh ├── scripts └── get_changelog_diff.js ├── stream.go ├── types.go ├── types_internal_test.go ├── types_test.go ├── url.go ├── url_internal_test.go ├── users.go ├── users_test.go ├── utils.go ├── utils_internal_test.go ├── utils_test.go └── version.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @JimmyPettersson85 @xernobyl @itsmeadi 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/initiate_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.github/workflows/initiate_release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.versionrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/.versionrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/README.md -------------------------------------------------------------------------------- /activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/activity.go -------------------------------------------------------------------------------- /activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/activity_test.go -------------------------------------------------------------------------------- /aggregated_feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/aggregated_feed.go -------------------------------------------------------------------------------- /aggregated_feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/aggregated_feed_test.go -------------------------------------------------------------------------------- /analytics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/analytics.go -------------------------------------------------------------------------------- /analytics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/analytics_test.go -------------------------------------------------------------------------------- /analytics_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/analytics_types.go -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /audit_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/audit_logs.go -------------------------------------------------------------------------------- /audit_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/audit_logs_test.go -------------------------------------------------------------------------------- /authenticator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/authenticator.go -------------------------------------------------------------------------------- /authenticator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/authenticator_test.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/client.go -------------------------------------------------------------------------------- /client_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/client_internal_test.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/client_test.go -------------------------------------------------------------------------------- /collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/collections.go -------------------------------------------------------------------------------- /collections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/collections_test.go -------------------------------------------------------------------------------- /enriched_activities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/enriched_activities.go -------------------------------------------------------------------------------- /enriched_activities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/enriched_activities_test.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/errors.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/errors_test.go -------------------------------------------------------------------------------- /feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/feed.go -------------------------------------------------------------------------------- /feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/feed_test.go -------------------------------------------------------------------------------- /flat_feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/flat_feed.go -------------------------------------------------------------------------------- /flat_feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/flat_feed_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/go.sum -------------------------------------------------------------------------------- /moderation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/moderation.go -------------------------------------------------------------------------------- /moderation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/moderation_test.go -------------------------------------------------------------------------------- /notification_feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/notification_feed.go -------------------------------------------------------------------------------- /notification_feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/notification_feed_test.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/options.go -------------------------------------------------------------------------------- /personalization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/personalization.go -------------------------------------------------------------------------------- /personalization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/personalization_test.go -------------------------------------------------------------------------------- /reactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/reactions.go -------------------------------------------------------------------------------- /reactions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/reactions_test.go -------------------------------------------------------------------------------- /run-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/run-lint.sh -------------------------------------------------------------------------------- /scripts/get_changelog_diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/scripts/get_changelog_diff.js -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/stream.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/types.go -------------------------------------------------------------------------------- /types_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/types_internal_test.go -------------------------------------------------------------------------------- /types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/types_test.go -------------------------------------------------------------------------------- /url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/url.go -------------------------------------------------------------------------------- /url_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/url_internal_test.go -------------------------------------------------------------------------------- /users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/users.go -------------------------------------------------------------------------------- /users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/users_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/utils.go -------------------------------------------------------------------------------- /utils_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/utils_internal_test.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/utils_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-go2/HEAD/version.go --------------------------------------------------------------------------------