diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 168c941d2..aa389af8a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: go-imports-repo args: - "-local" - - "go.mau.fi/whatsmeow" + - "github.com/polymorfa/hypermeow" - "-w" - id: go-vet-repo-mod # TODO enable this diff --git a/README.md b/README.md index e800ea4cc..ee8f58606 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,57 @@ # HyperMeow -[![Go Reference](https://pkg.go.dev/badge/github.com/polymorfa/whatsmeow.svg)](https://pkg.go.dev/github.com/polymorfa/whatsmeow) +[![Go Reference](https://pkg.go.dev/badge/github.com/polymorfa/hypermeow.svg)](https://pkg.go.dev/github.com/polymorfa/hypermeow) HyperMeow is a library used at Polymorfa to ship WhatsApp at scale. We forked from tulir's project since these performance changes are somewhat experimental and diverge from tulir's minimalist philosophy. For Polymorfa to succeed, we needed all the WhatsApp Web functions in one place, meanwhile tulir prefers the core functionalities / messaging be the scope of whatsmeow. -The module path and package names remain `go.mau.fi/whatsmeow` for compatibility. Consumers can test HyperMeow with a Go module `replace` directive while the fork is validated against upstream behavior. +HyperMeow is its own Go module, imported directly as `github.com/polymorfa/hypermeow`. It no longer requires a `replace` directive: + +```go +import whatsmeow "github.com/polymorfa/hypermeow" +``` + +```sh +go get github.com/polymorfa/hypermeow +``` + +### The module is `hypermeow`, the package is `whatsmeow` + +Only the *module path* moved. The Go *package* names are unchanged from upstream, so the root package is still declared `package whatsmeow`. Both of these are expected: + +- godoc renders the title as **"whatsmeow package - github.com/polymorfa/hypermeow"**; +- the import path's last element (`hypermeow`) does not match the package name (`whatsmeow`), so import the root package under an explicit alias as shown above. + +This is deliberate. Keeping the upstream package names means no call site changes when migrating - `whatsmeow.Client`, `whatsmeow.NewClient` and friends all still resolve - and merges from tulir's upstream do not conflict on the package clause of every file. Sub-packages are unaffected, since their path element already matches their package name (`.../store` is `package store`, and so on). + +### Only one whatsmeow may be linked into a binary + +HyperMeow keeps upstream's generated protobuf descriptor paths (`waCommon/WACommon.proto` and friends) and their symbol namespaces. Those are registered in a process-global registry, so linking HyperMeow **and** upstream `go.mau.fi/whatsmeow` into the same binary panics before `main`: + +``` +proto: file "waCommon/WACommon.proto" is already registered +``` + +The old `replace` arrangement made this impossible, because both import paths resolved to one module. A distinct module path removes that guarantee, so a partially migrated dependency graph — where one of your dependencies still requires `go.mau.fi/whatsmeow` — is not safe. + +The failure is loud and immediate rather than silent, but it surfaces at process start. Check for it at build time instead: + +```sh +go mod why -m go.mau.fi/whatsmeow # should report the module is not needed +``` + +Use `-m`. Without it, `go mod why` asks about the *package* `go.mau.fi/whatsmeow`, and a dependency that imports only a subpackage — say `go.mau.fi/whatsmeow/proto/waCommon` — makes it answer "main module does not need package" while the upstream module is linked and its descriptors still collide. + +A stricter check inspects the link graph directly: + +```sh +deps="$(go list -deps -test ./...)" || exit 1 +case "$deps" in *go.mau.fi/whatsmeow*) exit 1 ;; esac +``` + +Exit 0 means safe. There is deliberately no pipeline and no external command here. `-test` matters because `go list -deps` omits test-only dependencies, and a project importing upstream only from a `_test.go` still links both copies under `go test`. Capturing the output first means a failed `go list` propagates through `||` instead of being mistaken for an empty result, and matching with `case` avoids `grep`, whose exit status is 0 on a match — so a naive form of this check passes precisely when the graph is unsafe. + +or assert it in a test via `debug.ReadBuildInfo()`, failing if any entry in `Deps` reports the module path `go.mau.fi/whatsmeow`. + +Migrating from the previous `replace go.mau.fi/whatsmeow => github.com/polymorfa/hypermeow` setup: drop the `replace` line, add a normal `require` on `github.com/polymorfa/hypermeow`, and rewrite `go.mau.fi/whatsmeow` import paths to `github.com/polymorfa/hypermeow`. A `replace` directive is only honoured in the main module, so the previous arrangement did not carry to anything that depended on your module in turn; a direct requirement does. The reproducible Barback and PostgreSQL benchmark is documented in [`benchmark/barback`](benchmark/barback/README.md). @@ -13,8 +61,8 @@ Discord server (#hypermeow channel): https://whiskey.so/discord ## Usage -The [godoc](https://pkg.go.dev/github.com/polymorfa/whatsmeow) includes docs for all methods and event types. -There's also a [simple example](https://pkg.go.dev/github.com/polymorfa/whatsmeow#example-package) at the top. +The [godoc](https://pkg.go.dev/github.com/polymorfa/hypermeow) includes docs for all methods and event types. +There's also a [simple example](https://pkg.go.dev/github.com/polymorfa/hypermeow#example-package) at the top. ## Features diff --git a/appstate.go b/appstate.go index 2da6a3726..6e870c331 100644 --- a/appstate.go +++ b/appstate.go @@ -17,13 +17,13 @@ import ( "go.mau.fi/util/exslices" "go.mau.fi/util/ptr" - "go.mau.fi/whatsmeow/appstate" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + "github.com/polymorfa/hypermeow/appstate" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) // FetchAppState fetches updates to the given type of app state. If fullSync is true, the current diff --git a/appstate/decode.go b/appstate/decode.go index 41dc2bee4..dacda378f 100644 --- a/appstate/decode.go +++ b/appstate/decode.go @@ -17,11 +17,11 @@ import ( "google.golang.org/protobuf/proto" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/proto/waSyncAction" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/util/cbcutil" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/proto/waSyncAction" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/util/cbcutil" ) // PatchList represents a decoded response to getting app state patches from the WhatsApp servers. diff --git a/appstate/encode.go b/appstate/encode.go index bf9946963..490643c28 100644 --- a/appstate/encode.go +++ b/appstate/encode.go @@ -9,11 +9,11 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/proto/waSyncAction" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/util/cbcutil" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/proto/waSyncAction" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/util/cbcutil" ) // MutationInfo contains information about a single mutation to the app state. diff --git a/appstate/encode_label_test.go b/appstate/encode_label_test.go index 330bc7f21..8878b0822 100644 --- a/appstate/encode_label_test.go +++ b/appstate/encode_label_test.go @@ -3,7 +3,7 @@ package appstate import ( "testing" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) func TestBuildLabelChatChangesUsesOnePatch(t *testing.T) { diff --git a/appstate/hash.go b/appstate/hash.go index a3070bff4..db7700ca9 100644 --- a/appstate/hash.go +++ b/appstate/hash.go @@ -14,9 +14,9 @@ import ( "fmt" "hash" - "go.mau.fi/whatsmeow/appstate/lthash" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/proto/waSyncAction" + "github.com/polymorfa/hypermeow/appstate/lthash" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/proto/waSyncAction" ) type Mutation struct { diff --git a/appstate/keys.go b/appstate/keys.go index 97a2fdad1..04e69f4e9 100644 --- a/appstate/keys.go +++ b/appstate/keys.go @@ -12,9 +12,9 @@ import ( "encoding/base64" "sync" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/util/hkdfutil" - waLog "go.mau.fi/whatsmeow/util/log" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/util/hkdfutil" + waLog "github.com/polymorfa/hypermeow/util/log" ) // WAPatchName represents a type of app state patch. diff --git a/appstate/lthash/lthash.go b/appstate/lthash/lthash.go index 8d3045d60..2cad11b3d 100644 --- a/appstate/lthash/lthash.go +++ b/appstate/lthash/lthash.go @@ -13,7 +13,7 @@ package lthash import ( "encoding/binary" - "go.mau.fi/whatsmeow/util/hkdfutil" + "github.com/polymorfa/hypermeow/util/hkdfutil" ) type LTHash struct { diff --git a/appstate/recovery.go b/appstate/recovery.go index 40946c31c..a976b3796 100644 --- a/appstate/recovery.go +++ b/appstate/recovery.go @@ -17,10 +17,10 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/proto/waSyncdSnapshotRecovery" - "go.mau.fi/whatsmeow/store" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/proto/waSyncdSnapshotRecovery" + "github.com/polymorfa/hypermeow/store" ) func ParseRecovery( diff --git a/appstate_label_events_test.go b/appstate_label_events_test.go index 7ec7debe7..057859a8a 100644 --- a/appstate_label_events_test.go +++ b/appstate_label_events_test.go @@ -7,10 +7,10 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/appstate" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/proto/waSyncAction" - "go.mau.fi/whatsmeow/types/events" + "github.com/polymorfa/hypermeow/appstate" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/proto/waSyncAction" + "github.com/polymorfa/hypermeow/types/events" ) func TestSelectiveFullSyncLabelEvents(t *testing.T) { diff --git a/armadillomessage.go b/armadillomessage.go index aea351857..090071962 100644 --- a/armadillomessage.go +++ b/armadillomessage.go @@ -12,14 +12,14 @@ import ( "google.golang.org/protobuf/proto" - armadillo "go.mau.fi/whatsmeow/proto" - "go.mau.fi/whatsmeow/proto/armadilloutil" - "go.mau.fi/whatsmeow/proto/instamadilloTransportPayload" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waMsgApplication" - "go.mau.fi/whatsmeow/proto/waMsgTransport" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + armadillo "github.com/polymorfa/hypermeow/proto" + "github.com/polymorfa/hypermeow/proto/armadilloutil" + "github.com/polymorfa/hypermeow/proto/instamadilloTransportPayload" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waMsgApplication" + "github.com/polymorfa/hypermeow/proto/waMsgTransport" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) func (cli *Client) handleDecryptedArmadillo(ctx context.Context, info *types.MessageInfo, decrypted []byte, retryCount int) (handlerFailed, protobufFailed bool) { diff --git a/benchmark/barback/Dockerfile b/benchmark/barback/Dockerfile index b727330fe..218d51fd5 100644 --- a/benchmark/barback/Dockerfile +++ b/benchmark/barback/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /src COPY . . COPY --from=library . /library WORKDIR /src/benchmark/barback -RUN go mod edit -replace=go.mau.fi/whatsmeow=/library +RUN go mod edit -replace=github.com/polymorfa/hypermeow=/library RUN --mount=type=cache,target=/go/pkg/mod go mod tidy RUN --mount=type=cache,target=/go/pkg/mod --mount=type=cache,target=/root/.cache/go-build \ CGO_ENABLED=0 go build -tags="${BENCH_BUILD_TAGS}" -trimpath -ldflags="-s -w -X main.revision=${BUILD_REV}" -o /out/hypermeow-bench ./cmd/bench diff --git a/benchmark/barback/Dockerfile.clientmem b/benchmark/barback/Dockerfile.clientmem index de80d9970..5e2d140ac 100644 --- a/benchmark/barback/Dockerfile.clientmem +++ b/benchmark/barback/Dockerfile.clientmem @@ -6,7 +6,7 @@ WORKDIR /src COPY . . COPY --from=library . /library WORKDIR /src/benchmark/barback -RUN go mod edit -replace=go.mau.fi/whatsmeow=/library +RUN go mod edit -replace=github.com/polymorfa/hypermeow=/library RUN --mount=type=cache,target=/go/pkg/mod go mod tidy RUN --mount=type=cache,target=/go/pkg/mod --mount=type=cache,target=/root/.cache/go-build \ CGO_ENABLED=0 go build -trimpath -ldflags="-s -w -X main.revision=${BUILD_REV}" -o /out/clientmem ./cmd/clientmem diff --git a/benchmark/barback/cmd/bench/business_app_smoke.go b/benchmark/barback/cmd/bench/business_app_smoke.go index 889632905..6e1e23a2f 100644 --- a/benchmark/barback/cmd/bench/business_app_smoke.go +++ b/benchmark/barback/cmd/bench/business_app_smoke.go @@ -6,8 +6,8 @@ import ( "context" "fmt" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/types" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/types" ) func businessAppSmokeSupported() bool { diff --git a/benchmark/barback/cmd/bench/business_app_smoke_legacy.go b/benchmark/barback/cmd/bench/business_app_smoke_legacy.go index 8ad4360a4..4822a6b7e 100644 --- a/benchmark/barback/cmd/bench/business_app_smoke_legacy.go +++ b/benchmark/barback/cmd/bench/business_app_smoke_legacy.go @@ -5,7 +5,7 @@ package main import ( "context" - "go.mau.fi/whatsmeow" + whatsmeow "github.com/polymorfa/hypermeow" ) func businessAppSmokeSupported() bool { diff --git a/benchmark/barback/cmd/bench/main.go b/benchmark/barback/cmd/bench/main.go index 7da923ca9..d3a267774 100644 --- a/benchmark/barback/cmd/bench/main.go +++ b/benchmark/barback/cmd/bench/main.go @@ -28,12 +28,12 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/store/sqlstore" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - waLog "go.mau.fi/whatsmeow/util/log" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/store/sqlstore" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + waLog "github.com/polymorfa/hypermeow/util/log" ) var revision = "working-tree" diff --git a/benchmark/barback/cmd/bench/main_test.go b/benchmark/barback/cmd/bench/main_test.go index 0daa16cf0..cc01df272 100644 --- a/benchmark/barback/cmd/bench/main_test.go +++ b/benchmark/barback/cmd/bench/main_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) func TestLoadConfigWorkload(t *testing.T) { diff --git a/benchmark/barback/cmd/bench/phone_consent_sync.go b/benchmark/barback/cmd/bench/phone_consent_sync.go index f34946c26..ac6a1eafb 100644 --- a/benchmark/barback/cmd/bench/phone_consent_sync.go +++ b/benchmark/barback/cmd/bench/phone_consent_sync.go @@ -2,7 +2,7 @@ package main -import "go.mau.fi/whatsmeow" +import whatsmeow "github.com/polymorfa/hypermeow" func enablePhoneConsentReceiveBarrier(client *whatsmeow.Client) { client.DangerousInternals().SetSynchronousMessageNameUpdates(true) diff --git a/benchmark/barback/cmd/bench/phone_consent_sync_legacy.go b/benchmark/barback/cmd/bench/phone_consent_sync_legacy.go index eded51d14..3ed971349 100644 --- a/benchmark/barback/cmd/bench/phone_consent_sync_legacy.go +++ b/benchmark/barback/cmd/bench/phone_consent_sync_legacy.go @@ -2,6 +2,6 @@ package main -import "go.mau.fi/whatsmeow" +import whatsmeow "github.com/polymorfa/hypermeow" func enablePhoneConsentReceiveBarrier(_ *whatsmeow.Client) {} diff --git a/benchmark/barback/cmd/bench/security_code_smoke.go b/benchmark/barback/cmd/bench/security_code_smoke.go index 35398f357..50f1866c7 100644 --- a/benchmark/barback/cmd/bench/security_code_smoke.go +++ b/benchmark/barback/cmd/bench/security_code_smoke.go @@ -9,9 +9,9 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/proto/waFingerprint" - "go.mau.fi/whatsmeow/types" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/proto/waFingerprint" + "github.com/polymorfa/hypermeow/types" ) func validateIdentityVerificationCodes(ctx context.Context, client *whatsmeow.Client, userID types.JID) error { diff --git a/benchmark/barback/cmd/bench/security_code_smoke_legacy.go b/benchmark/barback/cmd/bench/security_code_smoke_legacy.go index 0fbd6de63..437d488be 100644 --- a/benchmark/barback/cmd/bench/security_code_smoke_legacy.go +++ b/benchmark/barback/cmd/bench/security_code_smoke_legacy.go @@ -5,8 +5,8 @@ package main import ( "context" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/types" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/types" ) func validateIdentityVerificationCodes(context.Context, *whatsmeow.Client, types.JID) error { diff --git a/benchmark/barback/cmd/bench/security_code_smoke_legacy_test.go b/benchmark/barback/cmd/bench/security_code_smoke_legacy_test.go index 433d146d0..8ba5fd4aa 100644 --- a/benchmark/barback/cmd/bench/security_code_smoke_legacy_test.go +++ b/benchmark/barback/cmd/bench/security_code_smoke_legacy_test.go @@ -6,7 +6,7 @@ import ( "context" "testing" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) func TestLegacySecurityCodeValidationIsSkipped(t *testing.T) { diff --git a/benchmark/barback/cmd/bench/workload_messages.go b/benchmark/barback/cmd/bench/workload_messages.go index 43183f733..44208ac4d 100644 --- a/benchmark/barback/cmd/bench/workload_messages.go +++ b/benchmark/barback/cmd/bench/workload_messages.go @@ -9,9 +9,9 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waE2E" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waE2E" ) var ( diff --git a/benchmark/barback/cmd/clientmem/main.go b/benchmark/barback/cmd/clientmem/main.go index ed6e2beb1..fc0a7ed3e 100644 --- a/benchmark/barback/cmd/clientmem/main.go +++ b/benchmark/barback/cmd/clientmem/main.go @@ -9,9 +9,9 @@ import ( "strconv" "syscall" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/store" - waLog "go.mau.fi/whatsmeow/util/log" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/store" + waLog "github.com/polymorfa/hypermeow/util/log" ) var revision = "working-tree" diff --git a/benchmark/barback/go.mod b/benchmark/barback/go.mod index 565e97c84..6e26db10c 100644 --- a/benchmark/barback/go.mod +++ b/benchmark/barback/go.mod @@ -6,7 +6,7 @@ toolchain go1.26.5 require ( github.com/jackc/pgx/v5 v5.10.0 - go.mau.fi/whatsmeow v0.0.0 + github.com/polymorfa/hypermeow v0.0.0 google.golang.org/protobuf v1.36.11 ) @@ -31,4 +31,4 @@ require ( golang.org/x/text v0.40.0 // indirect ) -replace go.mau.fi/whatsmeow => ../.. +replace github.com/polymorfa/hypermeow => ../.. diff --git a/binary/attrs.go b/binary/attrs.go index 24880e567..1574ddc8c 100644 --- a/binary/attrs.go +++ b/binary/attrs.go @@ -11,7 +11,7 @@ import ( "strconv" "time" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) // AttrUtility is a helper struct for reading multiple XML attributes and checking for errors afterwards. diff --git a/binary/decoder.go b/binary/decoder.go index 436e19772..62ad421eb 100644 --- a/binary/decoder.go +++ b/binary/decoder.go @@ -6,8 +6,8 @@ import ( "io" "strings" - "go.mau.fi/whatsmeow/binary/token" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/binary/token" + "github.com/polymorfa/hypermeow/types" ) type binaryDecoder struct { diff --git a/binary/decoder_test.go b/binary/decoder_test.go index 16370c7c0..8377e374c 100644 --- a/binary/decoder_test.go +++ b/binary/decoder_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func TestMarshalUnmarshalRoundTrip(t *testing.T) { diff --git a/binary/encoder.go b/binary/encoder.go index 3b2b014a3..0e35b1cfb 100644 --- a/binary/encoder.go +++ b/binary/encoder.go @@ -5,8 +5,8 @@ import ( "math" "strconv" - "go.mau.fi/whatsmeow/binary/token" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/binary/token" + "github.com/polymorfa/hypermeow/types" ) type binaryEncoder struct { diff --git a/binary/node.go b/binary/node.go index b421f8a59..0697d9b0c 100644 --- a/binary/node.go +++ b/binary/node.go @@ -11,7 +11,7 @@ import ( "encoding/json" "fmt" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) // Attrs is a type alias for the attributes of an XML element (Node). diff --git a/binary/proto/doc.go b/binary/proto/doc.go index 6ebecb93f..9f6396063 100644 --- a/binary/proto/doc.go +++ b/binary/proto/doc.go @@ -1,4 +1,4 @@ // Package proto contains type aliases for backwards compatibility. // -// Deprecated: New code should reference the protobuf types in the go.mau.fi/whatsmeow/proto/wa* packages directly. +// Deprecated: New code should reference the protobuf types in the github.com/polymorfa/hypermeow/proto/wa* packages directly. package proto diff --git a/binary/proto/legacy.go b/binary/proto/legacy.go index cf9177eeb..5b0fc1a1a 100644 --- a/binary/proto/legacy.go +++ b/binary/proto/legacy.go @@ -3,26 +3,26 @@ package proto import ( - "go.mau.fi/whatsmeow/proto/waAICommon" - "go.mau.fi/whatsmeow/proto/waAdv" - "go.mau.fi/whatsmeow/proto/waBotMetadata" - "go.mau.fi/whatsmeow/proto/waCert" - "go.mau.fi/whatsmeow/proto/waChatLockSettings" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waCompanionReg" - "go.mau.fi/whatsmeow/proto/waDeviceCapabilities" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waEphemeral" - "go.mau.fi/whatsmeow/proto/waHistorySync" - "go.mau.fi/whatsmeow/proto/waMmsRetry" - "go.mau.fi/whatsmeow/proto/waMsgTransport" - "go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/proto/waSyncAction" - "go.mau.fi/whatsmeow/proto/waUserPassword" - "go.mau.fi/whatsmeow/proto/waVnameCert" - "go.mau.fi/whatsmeow/proto/waWa6" - "go.mau.fi/whatsmeow/proto/waWeb" + "github.com/polymorfa/hypermeow/proto/waAICommon" + "github.com/polymorfa/hypermeow/proto/waAdv" + "github.com/polymorfa/hypermeow/proto/waBotMetadata" + "github.com/polymorfa/hypermeow/proto/waCert" + "github.com/polymorfa/hypermeow/proto/waChatLockSettings" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waCompanionReg" + "github.com/polymorfa/hypermeow/proto/waDeviceCapabilities" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waEphemeral" + "github.com/polymorfa/hypermeow/proto/waHistorySync" + "github.com/polymorfa/hypermeow/proto/waMmsRetry" + "github.com/polymorfa/hypermeow/proto/waMsgTransport" + "github.com/polymorfa/hypermeow/proto/waQuickPromotionSurfaces" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/proto/waSyncAction" + "github.com/polymorfa/hypermeow/proto/waUserPassword" + "github.com/polymorfa/hypermeow/proto/waVnameCert" + "github.com/polymorfa/hypermeow/proto/waWa6" + "github.com/polymorfa/hypermeow/proto/waWeb" ) // Deprecated: use new packages directly diff --git a/broadcast.go b/broadcast.go index d3768297d..1855f97c2 100644 --- a/broadcast.go +++ b/broadcast.go @@ -11,8 +11,8 @@ import ( "errors" "fmt" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func (cli *Client) getBroadcastListParticipants(ctx context.Context, jid types.JID) ([]types.JID, error) { diff --git a/business.go b/business.go index d3cd4e7ed..ce8b18e72 100644 --- a/business.go +++ b/business.go @@ -12,8 +12,8 @@ import ( "strconv" "strings" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) // GetOrderDetails fetches the details of a specific order using its ID and token. diff --git a/business_account.go b/business_account.go index 234df6115..a841311db 100644 --- a/business_account.go +++ b/business_account.go @@ -5,8 +5,8 @@ import ( "fmt" "strconv" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) const ( diff --git a/business_account_test.go b/business_account_test.go index 3e9bb922e..ec77a62a4 100644 --- a/business_account_test.go +++ b/business_account_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func TestBusinessLinkedAccountsQuery(t *testing.T) { diff --git a/business_catalog.go b/business_catalog.go index 409b910cc..8b031299a 100644 --- a/business_catalog.go +++ b/business_catalog.go @@ -7,8 +7,8 @@ import ( "strconv" "strings" - "go.mau.fi/whatsmeow/mex" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/mex" + "github.com/polymorfa/hypermeow/types" ) type GetCatalogParams struct { diff --git a/business_catalog_test.go b/business_catalog_test.go index 213b17c2c..d0087b4aa 100644 --- a/business_catalog_test.go +++ b/business_catalog_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func TestBuildCatalogVariablesRejectsInvalidInput(t *testing.T) { diff --git a/business_collection_mutation.go b/business_collection_mutation.go index 3a734b2b7..c5cb16533 100644 --- a/business_collection_mutation.go +++ b/business_collection_mutation.go @@ -8,7 +8,7 @@ import ( "github.com/google/uuid" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) const ( diff --git a/business_collection_mutation_test.go b/business_collection_mutation_test.go index 6408eb159..3de02d5de 100644 --- a/business_collection_mutation_test.go +++ b/business_collection_mutation_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) func TestBuildCreateBusinessCollectionVariables(t *testing.T) { diff --git a/business_commerce_control.go b/business_commerce_control.go index e899094dc..832e8a5fa 100644 --- a/business_commerce_control.go +++ b/business_commerce_control.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) const ( diff --git a/business_commerce_control_test.go b/business_commerce_control_test.go index 778e4ba6b..c8dfc4fda 100644 --- a/business_commerce_control_test.go +++ b/business_commerce_control_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) func TestBuildBusinessCommerceControlVariables(t *testing.T) { diff --git a/business_merchant_compliance.go b/business_merchant_compliance.go index 1ad0bc91e..e93de3594 100644 --- a/business_merchant_compliance.go +++ b/business_merchant_compliance.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) const ( diff --git a/business_merchant_compliance_test.go b/business_merchant_compliance_test.go index 0e5abbb68..eef660783 100644 --- a/business_merchant_compliance_test.go +++ b/business_merchant_compliance_test.go @@ -11,9 +11,9 @@ import ( "strings" "testing" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - waLog "go.mau.fi/whatsmeow/util/log" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + waLog "github.com/polymorfa/hypermeow/util/log" ) type merchantComplianceRoundTripper func(*http.Request) (*http.Response, error) diff --git a/business_message_builders.go b/business_message_builders.go index 2478ef5d3..723b99342 100644 --- a/business_message_builders.go +++ b/business_message_builders.go @@ -10,8 +10,8 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/types" ) type BusinessProductMessageParams struct { diff --git a/business_message_builders_test.go b/business_message_builders_test.go index d3cc3b012..3398d4336 100644 --- a/business_message_builders_test.go +++ b/business_message_builders_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/types" ) func TestBuildBusinessProductMessageMatchesWebGenerator(t *testing.T) { diff --git a/business_product_mutation.go b/business_product_mutation.go index 513c80a99..1b25b1f96 100644 --- a/business_product_mutation.go +++ b/business_product_mutation.go @@ -16,9 +16,9 @@ import ( "sync/atomic" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/socket" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/socket" + "github.com/polymorfa/hypermeow/types" ) const ( diff --git a/business_product_mutation_test.go b/business_product_mutation_test.go index 3856bcc0d..572133405 100644 --- a/business_product_mutation_test.go +++ b/business_product_mutation_test.go @@ -17,8 +17,8 @@ import ( "testing" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func syntheticProductInput() types.BusinessProductInput { diff --git a/business_profile.go b/business_profile.go index d282837ea..2f2fdd593 100644 --- a/business_profile.go +++ b/business_profile.go @@ -14,9 +14,9 @@ import ( "strings" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/socket" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/socket" + "github.com/polymorfa/hypermeow/types" ) const maxBusinessCoverPhotoBytes = 5 * 1024 * 1024 diff --git a/business_profile_test.go b/business_profile_test.go index 8d8cb11a2..0c0dcf508 100644 --- a/business_profile_test.go +++ b/business_profile_test.go @@ -14,8 +14,8 @@ import ( "testing" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func profileString(value string) *string { diff --git a/call.go b/call.go index 47b0e2191..485490da4 100644 --- a/call.go +++ b/call.go @@ -9,9 +9,9 @@ package whatsmeow import ( "context" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) func (cli *Client) handleCallEvent(ctx context.Context, node *waBinary.Node) { diff --git a/client.go b/client.go index 761363d64..f809407df 100644 --- a/client.go +++ b/client.go @@ -28,17 +28,17 @@ import ( "golang.org/x/net/proxy" "golang.org/x/sync/semaphore" - "go.mau.fi/whatsmeow/appstate" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waWa6" - "go.mau.fi/whatsmeow/proto/waWeb" - "go.mau.fi/whatsmeow/socket" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - "go.mau.fi/whatsmeow/util/keys" - waLog "go.mau.fi/whatsmeow/util/log" + "github.com/polymorfa/hypermeow/appstate" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waWa6" + "github.com/polymorfa/hypermeow/proto/waWeb" + "github.com/polymorfa/hypermeow/socket" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + "github.com/polymorfa/hypermeow/util/keys" + waLog "github.com/polymorfa/hypermeow/util/log" ) // EventHandler is a function that can handle events from WhatsApp. diff --git a/client_memory_test.go b/client_memory_test.go index 6d35d79e9..9261c460b 100644 --- a/client_memory_test.go +++ b/client_memory_test.go @@ -6,9 +6,9 @@ import ( "runtime" "testing" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/store" - waLog "go.mau.fi/whatsmeow/util/log" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/store" + waLog "github.com/polymorfa/hypermeow/util/log" ) func TestNewClientDefersSparseState(t *testing.T) { diff --git a/client_test.go b/client_test.go index 895649a7a..c663989c0 100644 --- a/client_test.go +++ b/client_test.go @@ -13,10 +13,10 @@ import ( "os/signal" "syscall" - "go.mau.fi/whatsmeow" - "go.mau.fi/whatsmeow/store/sqlstore" - "go.mau.fi/whatsmeow/types/events" - waLog "go.mau.fi/whatsmeow/util/log" + whatsmeow "github.com/polymorfa/hypermeow" + "github.com/polymorfa/hypermeow/store/sqlstore" + "github.com/polymorfa/hypermeow/types/events" + waLog "github.com/polymorfa/hypermeow/util/log" ) func eventHandler(evt any) { diff --git a/connectionevents.go b/connectionevents.go index 47ab0fb2f..3e52853d3 100644 --- a/connectionevents.go +++ b/connectionevents.go @@ -10,10 +10,10 @@ import ( "context" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) func (cli *Client) handleStreamError(ctx context.Context, node *waBinary.Node) { diff --git a/cstoken.go b/cstoken.go index b69e849b7..aebb172b7 100644 --- a/cstoken.go +++ b/cstoken.go @@ -11,7 +11,7 @@ import ( "crypto/hmac" "crypto/sha256" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) func shouldSendCsToken(jid types.JID) bool { diff --git a/download-to-file.go b/download-to-file.go index 7518695a2..acbeb22e4 100644 --- a/download-to-file.go +++ b/download-to-file.go @@ -21,8 +21,8 @@ import ( "go.mau.fi/util/fallocate" "go.mau.fi/util/retryafter" - "go.mau.fi/whatsmeow/proto/waMediaTransport" - "go.mau.fi/whatsmeow/util/cbcutil" + "github.com/polymorfa/hypermeow/proto/waMediaTransport" + "github.com/polymorfa/hypermeow/util/cbcutil" ) type File interface { diff --git a/download.go b/download.go index 9ae485864..7058ccb09 100644 --- a/download.go +++ b/download.go @@ -24,14 +24,14 @@ import ( "google.golang.org/protobuf/proto" "google.golang.org/protobuf/reflect/protoreflect" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waHistorySync" - "go.mau.fi/whatsmeow/proto/waMediaTransport" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/socket" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/util/cbcutil" - "go.mau.fi/whatsmeow/util/hkdfutil" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waHistorySync" + "github.com/polymorfa/hypermeow/proto/waMediaTransport" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/socket" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/util/cbcutil" + "github.com/polymorfa/hypermeow/util/hkdfutil" ) // MediaType represents a type of uploaded file on WhatsApp. diff --git a/errors.go b/errors.go index ee78e9065..fbee5025b 100644 --- a/errors.go +++ b/errors.go @@ -13,7 +13,7 @@ import ( "reflect" "strconv" - waBinary "go.mau.fi/whatsmeow/binary" + waBinary "github.com/polymorfa/hypermeow/binary" ) // Miscellaneous errors diff --git a/errors_iq_test.go b/errors_iq_test.go index 48e59e1f5..4cbc77d07 100644 --- a/errors_iq_test.go +++ b/errors_iq_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - waBinary "go.mau.fi/whatsmeow/binary" + waBinary "github.com/polymorfa/hypermeow/binary" ) func TestIQErrorIsDistinguishesSensitiveAttributes(t *testing.T) { diff --git a/go.mod b/go.mod index 2661c2d4f..6478839ec 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module go.mau.fi/whatsmeow +module github.com/polymorfa/hypermeow go 1.25.0 diff --git a/group.go b/group.go index c9b6b861a..b0ee505b9 100644 --- a/group.go +++ b/group.go @@ -13,10 +13,10 @@ import ( "fmt" "strings" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) const InviteLinkPrefix = "https://chat.whatsapp.com/" diff --git a/group_username_test.go b/group_username_test.go index c68c4348a..d83be9b18 100644 --- a/group_username_test.go +++ b/group_username_test.go @@ -3,8 +3,8 @@ package whatsmeow import ( "testing" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) func TestParseGroupParticipantPreservesUsername(t *testing.T) { diff --git a/handshake.go b/handshake.go index 8ce358231..67bc7608b 100644 --- a/handshake.go +++ b/handshake.go @@ -15,10 +15,10 @@ import ( "github.com/polymorfa/libsignal-protocol-go/ecc" "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/waCert" - "go.mau.fi/whatsmeow/proto/waWa6" - "go.mau.fi/whatsmeow/socket" - "go.mau.fi/whatsmeow/util/keys" + "github.com/polymorfa/hypermeow/proto/waCert" + "github.com/polymorfa/hypermeow/proto/waWa6" + "github.com/polymorfa/hypermeow/socket" + "github.com/polymorfa/hypermeow/util/keys" ) const NoiseHandshakeResponseTimeout = 20 * time.Second diff --git a/historysync_test.go b/historysync_test.go index d59f18a57..33933f297 100644 --- a/historysync_test.go +++ b/historysync_test.go @@ -10,10 +10,10 @@ import ( "google.golang.org/protobuf/proto" - waE2E "go.mau.fi/whatsmeow/proto/waE2E" - waHistorySync "go.mau.fi/whatsmeow/proto/waHistorySync" - "go.mau.fi/whatsmeow/store" - waLog "go.mau.fi/whatsmeow/util/log" + waE2E "github.com/polymorfa/hypermeow/proto/waE2E" + waHistorySync "github.com/polymorfa/hypermeow/proto/waHistorySync" + "github.com/polymorfa/hypermeow/store" + waLog "github.com/polymorfa/hypermeow/util/log" ) type historySyncDeviceContainer struct { diff --git a/internals.go b/internals.go index 0010f7efa..6abd42388 100644 --- a/internals.go +++ b/internals.go @@ -1,7 +1,7 @@ // GENERATED BY internals_generate.go; DO NOT EDIT //go:generate go run internals_generate.go -//go:generate goimports -local go.mau.fi/whatsmeow -w internals.go +//go:generate goimports -local github.com/polymorfa/hypermeow -w internals.go package whatsmeow @@ -14,19 +14,19 @@ import ( "github.com/polymorfa/libsignal-protocol-go/keys/prekey" - "go.mau.fi/whatsmeow/appstate" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waHistorySync" - "go.mau.fi/whatsmeow/proto/waMsgApplication" - "go.mau.fi/whatsmeow/proto/waMsgTransport" - "go.mau.fi/whatsmeow/proto/waServerSync" - "go.mau.fi/whatsmeow/socket" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - "go.mau.fi/whatsmeow/util/keys" + "github.com/polymorfa/hypermeow/appstate" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waHistorySync" + "github.com/polymorfa/hypermeow/proto/waMsgApplication" + "github.com/polymorfa/hypermeow/proto/waMsgTransport" + "github.com/polymorfa/hypermeow/proto/waServerSync" + "github.com/polymorfa/hypermeow/socket" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + "github.com/polymorfa/hypermeow/util/keys" ) type DangerousInternalClient struct { diff --git a/internals_generate.go b/internals_generate.go index 9c4d6ee69..9d88b206c 100644 --- a/internals_generate.go +++ b/internals_generate.go @@ -22,7 +22,7 @@ import ( const header = `// GENERATED BY internals_generate.go; DO NOT EDIT //go:generate go run internals_generate.go -//go:generate goimports -local go.mau.fi/whatsmeow -w internals.go +//go:generate goimports -local github.com/polymorfa/hypermeow -w internals.go package whatsmeow diff --git a/keepalive.go b/keepalive.go index 8c50e7b36..b2a8e726c 100644 --- a/keepalive.go +++ b/keepalive.go @@ -11,8 +11,8 @@ import ( "math/rand/v2" "time" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) var ( diff --git a/lid_resolution_test.go b/lid_resolution_test.go index acb0559af..59b7d2508 100644 --- a/lid_resolution_test.go +++ b/lid_resolution_test.go @@ -4,9 +4,9 @@ import ( "context" "testing" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - waLog "go.mau.fi/whatsmeow/util/log" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + waLog "github.com/polymorfa/hypermeow/util/log" ) type cachedLIDStore struct { diff --git a/mediaconn.go b/mediaconn.go index 1451fbc44..4c9d04d43 100644 --- a/mediaconn.go +++ b/mediaconn.go @@ -11,8 +11,8 @@ import ( "fmt" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" ) //type MediaConnIP struct { diff --git a/mediaretry.go b/mediaretry.go index 2c6c28ec8..a0030965c 100644 --- a/mediaretry.go +++ b/mediaretry.go @@ -13,12 +13,12 @@ import ( "go.mau.fi/util/random" "google.golang.org/protobuf/proto" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waMmsRetry" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - "go.mau.fi/whatsmeow/util/gcmutil" - "go.mau.fi/whatsmeow/util/hkdfutil" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waMmsRetry" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + "github.com/polymorfa/hypermeow/util/gcmutil" + "github.com/polymorfa/hypermeow/util/hkdfutil" ) func getMediaRetryKey(mediaKey []byte) (cipherKey []byte) { diff --git a/message.go b/message.go index 343e41fcc..19e3ba5f5 100644 --- a/message.go +++ b/message.go @@ -27,15 +27,15 @@ import ( "go.mau.fi/util/random" "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/appstate" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/proto/waHistorySync" - "go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload" - "go.mau.fi/whatsmeow/proto/waWeb" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + "github.com/polymorfa/hypermeow/appstate" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waHistorySync" + "github.com/polymorfa/hypermeow/proto/waLidMigrationSyncPayload" + "github.com/polymorfa/hypermeow/proto/waWeb" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) var pbSerializer = store.SignalProtobufSerializer diff --git a/message_name_updates_test.go b/message_name_updates_test.go index 0511a7aa4..bb66faf3e 100644 --- a/message_name_updates_test.go +++ b/message_name_updates_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" ) type blockingMessageNameStore struct { diff --git a/msgsecret.go b/msgsecret.go index 394e8387c..16700eece 100644 --- a/msgsecret.go +++ b/msgsecret.go @@ -17,12 +17,12 @@ import ( "go.mau.fi/util/random" "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - "go.mau.fi/whatsmeow/util/gcmutil" - "go.mau.fi/whatsmeow/util/hkdfutil" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + "github.com/polymorfa/hypermeow/util/gcmutil" + "github.com/polymorfa/hypermeow/util/hkdfutil" ) type MsgSecretType string diff --git a/newsletter.go b/newsletter.go index 17122b4c0..af29ac0b3 100644 --- a/newsletter.go +++ b/newsletter.go @@ -12,10 +12,10 @@ import ( "fmt" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waWa6" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waWa6" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" ) // NewsletterSubscribeLiveUpdates subscribes to receive live updates from a WhatsApp channel temporarily (for the duration returned). diff --git a/newsletter_delete.go b/newsletter_delete.go index b16c14b3b..bfcca4342 100644 --- a/newsletter_delete.go +++ b/newsletter_delete.go @@ -5,8 +5,8 @@ import ( "encoding/json" "fmt" - "go.mau.fi/whatsmeow/mex" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/mex" + "github.com/polymorfa/hypermeow/types" ) type deleteNewsletterVariables struct { diff --git a/newsletter_delete_test.go b/newsletter_delete_test.go index e56795fed..fa78af925 100644 --- a/newsletter_delete_test.go +++ b/newsletter_delete_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "go.mau.fi/whatsmeow/proto/waWa6" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/proto/waWa6" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" ) func TestBuildDeleteNewsletterVariablesRejectsNonNewsletterJID(t *testing.T) { diff --git a/notification.go b/notification.go index b61ee3931..7bfe51954 100644 --- a/notification.go +++ b/notification.go @@ -15,12 +15,12 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/appstate" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waE2E" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + "github.com/polymorfa/hypermeow/appstate" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waE2E" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) func (cli *Client) handleEncryptNotification(ctx context.Context, node *waBinary.Node) { diff --git a/notification_device_test.go b/notification_device_test.go index ee9b253da..d8bf1ac00 100644 --- a/notification_device_test.go +++ b/notification_device_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - waLog "go.mau.fi/whatsmeow/util/log" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + waLog "github.com/polymorfa/hypermeow/util/log" ) func TestDeviceNotificationUpdatesLIDOnlyCache(t *testing.T) { diff --git a/notification_identity_test.go b/notification_identity_test.go index 04535a8ec..8046f66da 100644 --- a/notification_identity_test.go +++ b/notification_identity_test.go @@ -5,10 +5,10 @@ import ( "slices" "testing" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - waLog "go.mau.fi/whatsmeow/util/log" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + waLog "github.com/polymorfa/hypermeow/util/log" ) type identityChangeStore struct { diff --git a/pair-code.go b/pair-code.go index 6cda22e9b..b7f2c0db8 100644 --- a/pair-code.go +++ b/pair-code.go @@ -21,10 +21,10 @@ import ( "golang.org/x/crypto/curve25519" "golang.org/x/crypto/pbkdf2" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/util/hkdfutil" - "go.mau.fi/whatsmeow/util/keys" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/util/hkdfutil" + "github.com/polymorfa/hypermeow/util/keys" ) // PairClientType is the type of client to use with PairCode. diff --git a/pair-passkey.go b/pair-passkey.go index 4ec037185..c9e25f76a 100644 --- a/pair-passkey.go +++ b/pair-passkey.go @@ -18,14 +18,14 @@ import ( "golang.org/x/crypto/curve25519" "google.golang.org/protobuf/proto" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waCompanionReg" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - "go.mau.fi/whatsmeow/util/gcmutil" - "go.mau.fi/whatsmeow/util/hkdfutil" - "go.mau.fi/whatsmeow/util/keys" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waCompanionReg" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + "github.com/polymorfa/hypermeow/util/gcmutil" + "github.com/polymorfa/hypermeow/util/hkdfutil" + "github.com/polymorfa/hypermeow/util/keys" ) type passkeyLinkingCache struct { diff --git a/pair.go b/pair.go index 6b9c8dc57..0968ea599 100644 --- a/pair.go +++ b/pair.go @@ -17,14 +17,14 @@ import ( "github.com/polymorfa/libsignal-protocol-go/ecc" "google.golang.org/protobuf/proto" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/proto/waAdv" - "go.mau.fi/whatsmeow/proto/waCompanionReg" - "go.mau.fi/whatsmeow/proto/waWa6" - "go.mau.fi/whatsmeow/store" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" - "go.mau.fi/whatsmeow/util/keys" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/proto/waAdv" + "github.com/polymorfa/hypermeow/proto/waCompanionReg" + "github.com/polymorfa/hypermeow/proto/waWa6" + "github.com/polymorfa/hypermeow/store" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" + "github.com/polymorfa/hypermeow/util/keys" ) var ( diff --git a/phone_number_message.go b/phone_number_message.go index ec4c93102..1db9add66 100644 --- a/phone_number_message.go +++ b/phone_number_message.go @@ -1,6 +1,6 @@ package whatsmeow -import "go.mau.fi/whatsmeow/proto/waE2E" +import "github.com/polymorfa/hypermeow/proto/waE2E" func BuildRequestPhoneNumberMessage(contextInfo *waE2E.ContextInfo) *waE2E.Message { return &waE2E.Message{ diff --git a/phone_number_message_test.go b/phone_number_message_test.go index d7e1154f6..bf75ce73f 100644 --- a/phone_number_message_test.go +++ b/phone_number_message_test.go @@ -3,7 +3,7 @@ package whatsmeow import ( "testing" - "go.mau.fi/whatsmeow/proto/waE2E" + "github.com/polymorfa/hypermeow/proto/waE2E" ) func TestBuildRequestPhoneNumberMessage(t *testing.T) { diff --git a/prekeys.go b/prekeys.go index 563a82250..cc2dadd57 100644 --- a/prekeys.go +++ b/prekeys.go @@ -17,9 +17,9 @@ import ( "github.com/polymorfa/libsignal-protocol-go/keys/prekey" "github.com/polymorfa/libsignal-protocol-go/util/optional" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/util/keys" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/util/keys" ) const ( diff --git a/presence.go b/presence.go index e84f51a50..eb378620a 100644 --- a/presence.go +++ b/presence.go @@ -10,9 +10,9 @@ import ( "context" "fmt" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) func (cli *Client) handleChatState(ctx context.Context, node *waBinary.Node) { diff --git a/privacysettings.go b/privacysettings.go index bfe3de802..db4b226e7 100644 --- a/privacysettings.go +++ b/privacysettings.go @@ -11,9 +11,9 @@ import ( "strconv" "time" - waBinary "go.mau.fi/whatsmeow/binary" - "go.mau.fi/whatsmeow/types" - "go.mau.fi/whatsmeow/types/events" + waBinary "github.com/polymorfa/hypermeow/binary" + "github.com/polymorfa/hypermeow/types" + "github.com/polymorfa/hypermeow/types/events" ) // TryFetchPrivacySettings will fetch the user's privacy settings, either from the in-memory cache or from the server. diff --git a/privacysettings_test.go b/privacysettings_test.go index ac0398a22..61fe68961 100644 --- a/privacysettings_test.go +++ b/privacysettings_test.go @@ -3,7 +3,7 @@ package whatsmeow import ( "testing" - "go.mau.fi/whatsmeow/types" + "github.com/polymorfa/hypermeow/types" ) func TestApplyPrivacySettingUpdatesEveryCategory(t *testing.T) { diff --git a/proto/armadilloutil/decode.go b/proto/armadilloutil/decode.go index 31389d33c..0562b1c90 100644 --- a/proto/armadilloutil/decode.go +++ b/proto/armadilloutil/decode.go @@ -6,7 +6,7 @@ import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waCommon" ) var ErrUnsupportedVersion = errors.New("unsupported subprotocol version") diff --git a/proto/extra.go b/proto/extra.go index 81c706f9e..ebd98b376 100644 --- a/proto/extra.go +++ b/proto/extra.go @@ -3,13 +3,13 @@ package armadillo import ( "google.golang.org/protobuf/proto" - "go.mau.fi/whatsmeow/proto/instamadilloAddMessage" - "go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage" - "go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage" - "go.mau.fi/whatsmeow/proto/waArmadilloApplication" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waConsumerApplication" - "go.mau.fi/whatsmeow/proto/waMultiDevice" + "github.com/polymorfa/hypermeow/proto/instamadilloAddMessage" + "github.com/polymorfa/hypermeow/proto/instamadilloDeleteMessage" + "github.com/polymorfa/hypermeow/proto/instamadilloSupplementMessage" + "github.com/polymorfa/hypermeow/proto/waArmadilloApplication" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waConsumerApplication" + "github.com/polymorfa/hypermeow/proto/waMultiDevice" ) type MessageApplicationSub interface { diff --git a/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go b/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go index 43c403624..a89bed661 100644 --- a/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +++ b/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloAddMessage/InstamadilloAddMessage.proto package instamadilloAddMessage @@ -14,13 +14,13 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - instamadilloCoreTypeActionLog "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog" - instamadilloCoreTypeAdminMessage "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage" - instamadilloCoreTypeCollection "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection" - instamadilloCoreTypeLink "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink" - instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia" - instamadilloCoreTypeText "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText" - instamadilloXmaContentRef "go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef" + instamadilloCoreTypeActionLog "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeActionLog" + instamadilloCoreTypeAdminMessage "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeAdminMessage" + instamadilloCoreTypeCollection "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeCollection" + instamadilloCoreTypeLink "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeLink" + instamadilloCoreTypeMedia "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia" + instamadilloCoreTypeText "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeText" + instamadilloXmaContentRef "github.com/polymorfa/hypermeow/proto/instamadilloXmaContentRef" ) const ( @@ -882,7 +882,7 @@ const file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDesc = "" + "#PLACEHOLDER_TYPE_DECRYPTION_FAILURE\x10\x01\x12.\n" + "*PLACEHOLDER_TYPE_NOT_SUPPORTED_NEED_UPDATE\x10\x02\x12'\n" + "#PLACEHOLDER_TYPE_DEVICE_UNAVAILABLE\x10\x03\x122\n" + - ".PLACEHOLDER_TYPE_NOT_SUPPORTED_NOT_RECOVERABLE\x10\x04B2Z0go.mau.fi/whatsmeow/proto/instamadilloAddMessage" + ".PLACEHOLDER_TYPE_NOT_SUPPORTED_NOT_RECOVERABLE\x10\x04B=Z;github.com/polymorfa/hypermeow/proto/instamadilloAddMessage" var ( file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloAddMessage/InstamadilloAddMessage.proto b/proto/instamadilloAddMessage/InstamadilloAddMessage.proto index 399256797..570d6ef6a 100644 --- a/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +++ b/proto/instamadilloAddMessage/InstamadilloAddMessage.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloAddMessage; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloAddMessage"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloAddMessage"; import "instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto"; import "instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto"; diff --git a/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go b/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go index a20af395c..51c1614fb 100644 --- a/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +++ b/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto package instamadilloCoreTypeActionLog @@ -141,7 +141,7 @@ const file_instamadilloCoreTypeActionLog_InstamadilloCoreTypeActionLog_proto_raw "\x11actionLogReaction\x18\x01 \x01(\v20.InstamadilloCoreTypeActionLog.ActionLogReactionH\x00R\x11actionLogReactionB\x12\n" + "\x10actionLogSubtype\"7\n" + "\x11ActionLogReaction\x12\"\n" + - "\femojiUnicode\x18\x01 \x01(\tR\femojiUnicodeB9Z7go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog" + "\femojiUnicode\x18\x01 \x01(\tR\femojiUnicodeBDZBgithub.com/polymorfa/hypermeow/proto/instamadilloCoreTypeActionLog" var ( file_instamadilloCoreTypeActionLog_InstamadilloCoreTypeActionLog_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto b/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto index dad19791d..63725d23d 100644 --- a/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +++ b/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloCoreTypeActionLog; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeActionLog"; message ActionLog { oneof actionLogSubtype { diff --git a/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go b/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go index 0a0195fbb..538dce889 100644 --- a/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +++ b/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto package instamadilloCoreTypeAdminMessage @@ -219,7 +219,7 @@ const file_instamadilloCoreTypeAdminMessage_InstamadilloCoreTypeAdminMessage_pro "\x1eDEVICE_ADMIN_MESSAGE_TYPE_NONE\x10\x00\x12J\n" + "FDEVICE_ADMIN_MESSAGE_TYPE_LOCAL_USER_CHANGED_IDENTITY_KEY_NAMED_DEVICE\x10\x01\x12C\n" + "?DEVICE_ADMIN_MESSAGE_TYPE_SECURITY_ALERT_PARTICIPANT_KEY_CHANGE\x10\x02\x12B\n" + - ">DEVICE_ADMIN_MESSAGE_TYPE_SECURITY_ALERT_PARTICIPANT_NEW_LOGIN\x10\x03BDEVICE_ADMIN_MESSAGE_TYPE_SECURITY_ALERT_PARTICIPANT_NEW_LOGIN\x10\x03BGZEgithub.com/polymorfa/hypermeow/proto/instamadilloCoreTypeAdminMessage" var ( file_instamadilloCoreTypeAdminMessage_InstamadilloCoreTypeAdminMessage_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto b/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto index c6bb7e4e4..bcfac7bfb 100644 --- a/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +++ b/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloCoreTypeAdminMessage; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeAdminMessage"; message AdminMessage { oneof adminMessageSubtype { diff --git a/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go b/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go index 91c025eb0..228bf822e 100644 --- a/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +++ b/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto package instamadilloCoreTypeCollection @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia" + instamadilloCoreTypeMedia "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia" ) const ( @@ -84,7 +84,7 @@ const file_instamadilloCoreTypeCollection_InstamadilloCoreTypeCollection_proto_r "\n" + "Collection\x12\x12\n" + "\x04name\x18\x01 \x01(\tR\x04name\x126\n" + - "\x05media\x18\x02 \x03(\v2 .InstamadilloCoreTypeMedia.MediaR\x05mediaB:Z8go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection" + "\x05media\x18\x02 \x03(\v2 .InstamadilloCoreTypeMedia.MediaR\x05mediaBEZCgithub.com/polymorfa/hypermeow/proto/instamadilloCoreTypeCollection" var ( file_instamadilloCoreTypeCollection_InstamadilloCoreTypeCollection_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto b/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto index 4ad9f921a..760e584d9 100644 --- a/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +++ b/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloCoreTypeCollection; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeCollection"; import "instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto"; diff --git a/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go b/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go index f888c6eb8..e6953effe 100644 --- a/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +++ b/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto package instamadilloCoreTypeLink @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia" + instamadilloCoreTypeMedia "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia" ) const ( @@ -256,7 +256,7 @@ const file_instamadilloCoreTypeLink_InstamadilloCoreTypeLink_proto_rawDesc = "" "\bImageUrl\x12\x10\n" + "\x03URL\x18\x01 \x01(\tR\x03URL\x12\x14\n" + "\x05width\x18\x02 \x01(\x05R\x05width\x12\x16\n" + - "\x06height\x18\x03 \x01(\x05R\x06heightB4Z2go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink" + "\x06height\x18\x03 \x01(\x05R\x06heightB?Z=github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeLink" var ( file_instamadilloCoreTypeLink_InstamadilloCoreTypeLink_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto b/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto index e7b66c6a6..b95ad7e76 100644 --- a/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +++ b/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloCoreTypeLink; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeLink"; import "instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto"; diff --git a/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go b/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go index 9dc5b4fa1..1c090bcad 100644 --- a/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +++ b/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto package instamadilloCoreTypeMedia @@ -1201,7 +1201,7 @@ const file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc = " "$PJPEG_SCAN_CONFIGURATION_UNSPECIFIED\x10\x00\x12\x1f\n" + "\x1bPJPEG_SCAN_CONFIGURATION_WA\x10\x01\x12 \n" + "\x1cPJPEG_SCAN_CONFIGURATION_E15\x10\x02\x12 \n" + - "\x1cPJPEG_SCAN_CONFIGURATION_E35\x10\x03B5Z3go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia" + "\x1cPJPEG_SCAN_CONFIGURATION_E35\x10\x03B@Z>github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia" var ( file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto b/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto index eae154790..ce7ca59c3 100644 --- a/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +++ b/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloCoreTypeMedia; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia"; enum PjpegScanConfiguration { PJPEG_SCAN_CONFIGURATION_UNSPECIFIED = 0; diff --git a/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go b/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go index ef0180f81..4ff3bb4a1 100644 --- a/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +++ b/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloCoreTypeText/InstamadilloCoreTypeText.proto package instamadilloCoreTypeText @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia" + instamadilloCoreTypeMedia "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia" ) const ( @@ -450,7 +450,7 @@ const file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDesc = "" "\x05style\x18\x03 \x01(\x0e2*.InstamadilloCoreTypeText.Text.FormatStyleR\x05style\"M\n" + "\x1bAnimatedEmojiCharacterRange\x12\x16\n" + "\x06offset\x18\x01 \x01(\x05R\x06offset\x12\x16\n" + - "\x06length\x18\x02 \x01(\x05R\x06lengthB4Z2go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText" + "\x06length\x18\x02 \x01(\x05R\x06lengthB?Z=github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeText" var ( file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto b/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto index 8c62e8d3a..503539dc7 100644 --- a/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +++ b/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloCoreTypeText; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeText"; import "instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto"; diff --git a/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go b/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go index 5b732e6f0..a2d2e5a86 100644 --- a/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +++ b/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloDeleteMessage/InstamadilloDeleteMessage.proto package instamadilloDeleteMessage @@ -72,7 +72,7 @@ const file_instamadilloDeleteMessage_InstamadilloDeleteMessage_proto_rawDesc = " "\n" + "9instamadilloDeleteMessage/InstamadilloDeleteMessage.proto\x12\x19InstamadilloDeleteMessage\"8\n" + "\x14DeleteMessagePayload\x12 \n" + - "\vmessageOtid\x18\x01 \x01(\tR\vmessageOtidB5Z3go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage" + "\vmessageOtid\x18\x01 \x01(\tR\vmessageOtidB@Z>github.com/polymorfa/hypermeow/proto/instamadilloDeleteMessage" var ( file_instamadilloDeleteMessage_InstamadilloDeleteMessage_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto b/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto index 0cd7a9ddc..045f3d0f1 100644 --- a/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +++ b/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloDeleteMessage; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloDeleteMessage"; message DeleteMessagePayload { optional string messageOtid = 1; diff --git a/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go b/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go index be1b87a82..36bd4411c 100644 --- a/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +++ b/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloSupplementMessage/InstamadilloSupplementMessage.proto package instamadilloSupplementMessage @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia" + instamadilloCoreTypeMedia "github.com/polymorfa/hypermeow/proto/instamadilloCoreTypeMedia" ) const ( @@ -644,7 +644,7 @@ const file_instamadilloSupplementMessage_InstamadilloSupplementMessage_proto_raw "\x18originalTransportPayload\x18\x01 \x01(\fR\x18originalTransportPayload\"\x8d\x01\n" + "\x12MediaInterventions\x12\x18\n" + "\amediaID\x18\x01 \x01(\tR\amediaID\x12]\n" + - "\x10interventionType\x18\x02 \x01(\x0e21.InstamadilloCoreTypeMedia.Media.InterventionTypeR\x10interventionTypeB9Z7go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage" + "\x10interventionType\x18\x02 \x01(\x0e21.InstamadilloCoreTypeMedia.Media.InterventionTypeR\x10interventionTypeBDZBgithub.com/polymorfa/hypermeow/proto/instamadilloSupplementMessage" var ( file_instamadilloSupplementMessage_InstamadilloSupplementMessage_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto b/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto index 09ff068bc..751040b45 100644 --- a/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +++ b/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloSupplementMessage; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloSupplementMessage"; import "instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto"; diff --git a/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go b/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go index 9ae3c72cc..aaae3d4dc 100644 --- a/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +++ b/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloTransportPayload/InstamadilloTransportPayload.proto package instamadilloTransportPayload @@ -14,9 +14,9 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - instamadilloAddMessage "go.mau.fi/whatsmeow/proto/instamadilloAddMessage" - instamadilloDeleteMessage "go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage" - instamadilloSupplementMessage "go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage" + instamadilloAddMessage "github.com/polymorfa/hypermeow/proto/instamadilloAddMessage" + instamadilloDeleteMessage "github.com/polymorfa/hypermeow/proto/instamadilloDeleteMessage" + instamadilloSupplementMessage "github.com/polymorfa/hypermeow/proto/instamadilloSupplementMessage" ) const ( @@ -297,7 +297,7 @@ const file_instamadilloTransportPayload_InstamadilloTransportPayload_proto_rawDe "\x15PAYLOAD_CREATOR_IGIOS\x10\x01\x12\x18\n" + "\x14PAYLOAD_CREATOR_IG4A\x10\x02\x12\x17\n" + "\x13PAYLOAD_CREATOR_WWW\x10\x03\x12\x1a\n" + - "\x16PAYLOAD_CREATOR_IGLITE\x10\x04B8Z6go.mau.fi/whatsmeow/proto/instamadilloTransportPayload" + "\x16PAYLOAD_CREATOR_IGLITE\x10\x04BCZAgithub.com/polymorfa/hypermeow/proto/instamadilloTransportPayload" var ( file_instamadilloTransportPayload_InstamadilloTransportPayload_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto b/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto index 964f84576..24e26689b 100644 --- a/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +++ b/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloTransportPayload; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloTransportPayload"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloTransportPayload"; import "instamadilloAddMessage/InstamadilloAddMessage.proto"; import "instamadilloDeleteMessage/InstamadilloDeleteMessage.proto"; diff --git a/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go b/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go index 67e54e5de..e7e4d37a2 100644 --- a/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +++ b/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: instamadilloXmaContentRef/InstamadilloXmaContentRef.proto package instamadilloXmaContentRef @@ -1142,7 +1142,7 @@ const file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDesc = " "\x1fMediaNoteFetchParamsMessageType\x124\n" + "0MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED\x10\x00\x120\n" + ",MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_MENTION\x10\x01\x12.\n" + - "*MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY\x10\x02B5Z3go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef" + "*MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY\x10\x02B@Z>github.com/polymorfa/hypermeow/proto/instamadilloXmaContentRef" var ( file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescOnce sync.Once diff --git a/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto b/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto index 00bc9378d..5700144af 100644 --- a/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +++ b/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package InstamadilloXmaContentRef; -option go_package = "go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef"; +option go_package = "github.com/polymorfa/hypermeow/proto/instamadilloXmaContentRef"; enum XmaActionType { XMA_ACTION_TYPE_UNSPECIFIED = 0; diff --git a/proto/waAICommon/WAWebProtobufsAICommon.pb.go b/proto/waAICommon/WAWebProtobufsAICommon.pb.go index 38688f7a5..ca877af44 100644 --- a/proto/waAICommon/WAWebProtobufsAICommon.pb.go +++ b/proto/waAICommon/WAWebProtobufsAICommon.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.34.1 +// protoc v6.33.6 // source: waAICommon/WAWebProtobufsAICommon.proto package waAICommon @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -8118,7 +8118,7 @@ const file_waAICommon_WAWebProtobufsAICommon_proto_rawDesc = "" + "\tVIDEO_GEN\x10\x03*H\n" + "\x17SessionTransparencyType\x12\x10\n" + "\fUNKNOWN_TYPE\x10\x00\x12\x1b\n" + - "\x17NY_AI_SAFETY_DISCLAIMER\x10\x01B&Z$go.mau.fi/whatsmeow/proto/waAICommon" + "\x17NY_AI_SAFETY_DISCLAIMER\x10\x01B1Z/github.com/polymorfa/hypermeow/proto/waAICommon" var ( file_waAICommon_WAWebProtobufsAICommon_proto_rawDescOnce sync.Once diff --git a/proto/waAICommon/WAWebProtobufsAICommon.proto b/proto/waAICommon/WAWebProtobufsAICommon.proto index 67d619cf0..61f5387f5 100644 --- a/proto/waAICommon/WAWebProtobufsAICommon.proto +++ b/proto/waAICommon/WAWebProtobufsAICommon.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufsAICommon; -option go_package = "go.mau.fi/whatsmeow/proto/waAICommon"; +option go_package = "github.com/polymorfa/hypermeow/proto/waAICommon"; import "waCommon/WACommon.proto"; diff --git a/proto/waAICommonDeprecated/WAAICommonDeprecated.pb.go b/proto/waAICommonDeprecated/WAAICommonDeprecated.pb.go index 2dd8390ad..ab545c7b7 100644 --- a/proto/waAICommonDeprecated/WAAICommonDeprecated.pb.go +++ b/proto/waAICommonDeprecated/WAAICommonDeprecated.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v6.33.5 +// protoc v6.33.6 // source: waAICommonDeprecated/WAAICommonDeprecated.proto package waAICommonDeprecated @@ -1599,7 +1599,7 @@ const file_waAICommonDeprecated_WAAICommonDeprecated_proto_rawDesc = "" + "\x18AI_RICH_RESPONSE_DYNAMIC\x10\x06\x12\x18\n" + "\x14AI_RICH_RESPONSE_MAP\x10\a\x12\x1a\n" + "\x16AI_RICH_RESPONSE_LATEX\x10\b\x12\"\n" + - "\x1eAI_RICH_RESPONSE_CONTENT_ITEMS\x10\tB0Z.go.mau.fi/whatsmeow/proto/waAICommonDeprecated" + "\x1eAI_RICH_RESPONSE_CONTENT_ITEMS\x10\tB;Z9github.com/polymorfa/hypermeow/proto/waAICommonDeprecated" var ( file_waAICommonDeprecated_WAAICommonDeprecated_proto_rawDescOnce sync.Once diff --git a/proto/waAICommonDeprecated/WAAICommonDeprecated.proto b/proto/waAICommonDeprecated/WAAICommonDeprecated.proto index 5412ac42e..6f7c4edb5 100644 --- a/proto/waAICommonDeprecated/WAAICommonDeprecated.proto +++ b/proto/waAICommonDeprecated/WAAICommonDeprecated.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAAICommonDeprecated; -option go_package = "go.mau.fi/whatsmeow/proto/waAICommonDeprecated"; +option go_package = "github.com/polymorfa/hypermeow/proto/waAICommonDeprecated"; enum AIRichResponseMessageType { AI_RICH_RESPONSE_TYPE_UNKNOWN = 0; diff --git a/proto/waAdv/WAAdv.pb.go b/proto/waAdv/WAAdv.pb.go index 7e84d0a46..b53247518 100644 --- a/proto/waAdv/WAAdv.pb.go +++ b/proto/waAdv/WAAdv.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waAdv/WAAdv.proto package waAdv @@ -453,7 +453,7 @@ const file_waAdv_WAAdv_proto_rawDesc = "" + "\x11ADVEncryptionType\x12\b\n" + "\x04E2EE\x10\x00\x12\n" + "\n" + - "\x06HOSTED\x10\x01B!Z\x1fgo.mau.fi/whatsmeow/proto/waAdv" + "\x06HOSTED\x10\x01B,Z*github.com/polymorfa/hypermeow/proto/waAdv" var ( file_waAdv_WAAdv_proto_rawDescOnce sync.Once diff --git a/proto/waAdv/WAAdv.proto b/proto/waAdv/WAAdv.proto index 07c96c84b..c69b3b223 100644 --- a/proto/waAdv/WAAdv.proto +++ b/proto/waAdv/WAAdv.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAAdv; -option go_package = "go.mau.fi/whatsmeow/proto/waAdv"; +option go_package = "github.com/polymorfa/hypermeow/proto/waAdv"; enum ADVEncryptionType { E2EE = 0; diff --git a/proto/waAea/WAWebProtobufsAea.pb.go b/proto/waAea/WAWebProtobufsAea.pb.go index 97543d516..c01636654 100644 --- a/proto/waAea/WAWebProtobufsAea.pb.go +++ b/proto/waAea/WAWebProtobufsAea.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.34.1 +// protoc v6.33.6 // source: waAea/WAWebProtobufsAea.proto package waAea @@ -135,7 +135,7 @@ const file_waAea_WAWebProtobufsAea_proto_rawDesc = "" + "\vAccountType\x12\b\n" + "\x04E2EE\x10\x00\x12\x0f\n" + "\vHYBRID_E2EE\x10\x01\x12\f\n" + - "\bNON_E2EE\x10\x02B!Z\x1fgo.mau.fi/whatsmeow/proto/waAea" + "\bNON_E2EE\x10\x02B,Z*github.com/polymorfa/hypermeow/proto/waAea" var ( file_waAea_WAWebProtobufsAea_proto_rawDescOnce sync.Once diff --git a/proto/waAea/WAWebProtobufsAea.proto b/proto/waAea/WAWebProtobufsAea.proto index 79a0f3749..dd60765a3 100644 --- a/proto/waAea/WAWebProtobufsAea.proto +++ b/proto/waAea/WAWebProtobufsAea.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufsAea; -option go_package = "go.mau.fi/whatsmeow/proto/waAea"; +option go_package = "github.com/polymorfa/hypermeow/proto/waAea"; message NonE2EEAttestation { enum AccountType { diff --git a/proto/waArmadilloApplication/WAArmadilloApplication.pb.go b/proto/waArmadilloApplication/WAArmadilloApplication.pb.go index 88e33c570..c8b44e2e4 100644 --- a/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +++ b/proto/waArmadilloApplication/WAArmadilloApplication.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waArmadilloApplication/WAArmadilloApplication.proto package waArmadilloApplication @@ -14,8 +14,8 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waArmadilloXMA "go.mau.fi/whatsmeow/proto/waArmadilloXMA" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waArmadilloXMA "github.com/polymorfa/hypermeow/proto/waArmadilloXMA" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -3075,7 +3075,7 @@ const file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = "" + "\vMEDIUM_LIKE\x10\x02\x12\x0e\n" + "\n" + "LARGE_LIKE\x10\x03B\t\n" + - "\acontentB2Z0go.mau.fi/whatsmeow/proto/waArmadilloApplication" + "\acontentB=Z;github.com/polymorfa/hypermeow/proto/waArmadilloApplication" var ( file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce sync.Once diff --git a/proto/waArmadilloApplication/WAArmadilloApplication.proto b/proto/waArmadilloApplication/WAArmadilloApplication.proto index 02baef992..4d671d40f 100644 --- a/proto/waArmadilloApplication/WAArmadilloApplication.proto +++ b/proto/waArmadilloApplication/WAArmadilloApplication.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAArmadilloApplication; -option go_package = "go.mau.fi/whatsmeow/proto/waArmadilloApplication"; +option go_package = "github.com/polymorfa/hypermeow/proto/waArmadilloApplication"; import "waArmadilloXMA/WAArmadilloXMA.proto"; import "waCommon/WACommon.proto"; diff --git a/proto/waArmadilloApplication/extra.go b/proto/waArmadilloApplication/extra.go index 4337d3809..5c653940e 100644 --- a/proto/waArmadilloApplication/extra.go +++ b/proto/waArmadilloApplication/extra.go @@ -1,9 +1,9 @@ package waArmadilloApplication import ( - "go.mau.fi/whatsmeow/proto/armadilloutil" - "go.mau.fi/whatsmeow/proto/waCommon" - "go.mau.fi/whatsmeow/proto/waMediaTransport" + "github.com/polymorfa/hypermeow/proto/armadilloutil" + "github.com/polymorfa/hypermeow/proto/waCommon" + "github.com/polymorfa/hypermeow/proto/waMediaTransport" ) func (*Armadillo) IsMessageApplicationSub() {} diff --git a/proto/waArmadilloBackupCommon/WAArmadilloBackupCommon.pb.go b/proto/waArmadilloBackupCommon/WAArmadilloBackupCommon.pb.go index 77a6d9042..06a4154be 100644 --- a/proto/waArmadilloBackupCommon/WAArmadilloBackupCommon.pb.go +++ b/proto/waArmadilloBackupCommon/WAArmadilloBackupCommon.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v6.33.5 +// protoc v6.33.6 // source: waArmadilloBackupCommon/WAArmadilloBackupCommon.proto package waArmadilloBackupCommon @@ -245,7 +245,7 @@ const file_waArmadilloBackupCommon_WAArmadilloBackupCommon_proto_rawDesc = "" + "\x0epayloadVersion\x18\x05 \x01(\x05R\x0epayloadVersion\x120\n" + "\x13futureProofBehavior\x18\x06 \x01(\x05R\x13futureProofBehavior\x12$\n" + "\rthreadTypeTag\x18\a \x01(\x05R\rthreadTypeTag\x12,\n" + - "\x11clientTimestampMS\x18\b \x01(\x03R\x11clientTimestampMSB3Z1go.mau.fi/whatsmeow/proto/waArmadilloBackupCommon" + "\x11clientTimestampMS\x18\b \x01(\x03R\x11clientTimestampMSB>ZZgithub.com/polymorfa/hypermeow/proto/waArmadilloTransportEvent" var ( file_waArmadilloTransportEvent_WAArmadilloTransportEvent_proto_rawDescOnce sync.Once diff --git a/proto/waArmadilloTransportEvent/WAArmadilloTransportEvent.proto b/proto/waArmadilloTransportEvent/WAArmadilloTransportEvent.proto index 192b2bcfc..9111e4d28 100644 --- a/proto/waArmadilloTransportEvent/WAArmadilloTransportEvent.proto +++ b/proto/waArmadilloTransportEvent/WAArmadilloTransportEvent.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAArmadilloTransportEvent; -option go_package = "go.mau.fi/whatsmeow/proto/waArmadilloTransportEvent"; +option go_package = "github.com/polymorfa/hypermeow/proto/waArmadilloTransportEvent"; message TransportEvent { message Event { diff --git a/proto/waArmadilloXMA/WAArmadilloXMA.pb.go b/proto/waArmadilloXMA/WAArmadilloXMA.pb.go index 38e2caa48..59912e844 100644 --- a/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +++ b/proto/waArmadilloXMA/WAArmadilloXMA.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v6.33.5 +// protoc v6.33.6 // source: waArmadilloXMA/WAArmadilloXMA.proto package waArmadilloXMA @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -1096,7 +1096,7 @@ const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" + "\x16RTC_ONGOING_AUDIO_CALL\x10\xc0\x17\x12\x1b\n" + "\x16RTC_ONGOING_VIDEO_CALL\x10\xc1\x17\x12 \n" + "\x1bMSG_RECEIVER_FETCH_FALLBACK\x10\xd1\x17\x12\x1a\n" + - "\x15DATACLASS_SENDER_COPY\x10\xa0\x1fB*Z(go.mau.fi/whatsmeow/proto/waArmadilloXMA" + "\x15DATACLASS_SENDER_COPY\x10\xa0\x1fB5Z3github.com/polymorfa/hypermeow/proto/waArmadilloXMA" var ( file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescOnce sync.Once diff --git a/proto/waArmadilloXMA/WAArmadilloXMA.proto b/proto/waArmadilloXMA/WAArmadilloXMA.proto index c9a216f3f..9632cfc65 100644 --- a/proto/waArmadilloXMA/WAArmadilloXMA.proto +++ b/proto/waArmadilloXMA/WAArmadilloXMA.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAArmadilloXMA; -option go_package = "go.mau.fi/whatsmeow/proto/waArmadilloXMA"; +option go_package = "github.com/polymorfa/hypermeow/proto/waArmadilloXMA"; import "waCommon/WACommon.proto"; diff --git a/proto/waBotMetadata/WABotMetadata.pb.go b/proto/waBotMetadata/WABotMetadata.pb.go index 311f564e4..f61eb4c34 100644 --- a/proto/waBotMetadata/WABotMetadata.pb.go +++ b/proto/waBotMetadata/WABotMetadata.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waBotMetadata/WABotMetadata.proto package waBotMetadata @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -5057,7 +5057,7 @@ const file_waBotMetadata_WABotMetadata_proto_rawDesc = "" + "USER_INPUT\x10\x03\x12\r\n" + "\tEMU_FLASH\x10\x04\x12\x16\n" + "\x12EMU_FLASH_FOLLOWUP\x10\x05\x12\t\n" + - "\x05VOICE\x10\x06B)Z'go.mau.fi/whatsmeow/proto/waBotMetadata" + "\x05VOICE\x10\x06B4Z2github.com/polymorfa/hypermeow/proto/waBotMetadata" var ( file_waBotMetadata_WABotMetadata_proto_rawDescOnce sync.Once diff --git a/proto/waBotMetadata/WABotMetadata.proto b/proto/waBotMetadata/WABotMetadata.proto index 0111b38a9..fd35e450a 100644 --- a/proto/waBotMetadata/WABotMetadata.proto +++ b/proto/waBotMetadata/WABotMetadata.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WABotMetadata; -option go_package = "go.mau.fi/whatsmeow/proto/waBotMetadata"; +option go_package = "github.com/polymorfa/hypermeow/proto/waBotMetadata"; import "waCommon/WACommon.proto"; diff --git a/proto/waCert/WACert.pb.go b/proto/waCert/WACert.pb.go index e8c1200b1..b06d28d46 100644 --- a/proto/waCert/WACert.pb.go +++ b/proto/waCert/WACert.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waCert/WACert.proto package waCert @@ -355,7 +355,7 @@ const file_waCert_WACert_proto_rawDesc = "" + "\fissuerSerial\x18\x02 \x01(\rR\fissuerSerial\x12\x10\n" + "\x03key\x18\x03 \x01(\fR\x03key\x12\x1c\n" + "\tnotBefore\x18\x04 \x01(\x04R\tnotBefore\x12\x1a\n" + - "\bnotAfter\x18\x05 \x01(\x04R\bnotAfterB\"Z go.mau.fi/whatsmeow/proto/waCert" + "\bnotAfter\x18\x05 \x01(\x04R\bnotAfterB-Z+github.com/polymorfa/hypermeow/proto/waCert" var ( file_waCert_WACert_proto_rawDescOnce sync.Once diff --git a/proto/waCert/WACert.proto b/proto/waCert/WACert.proto index 1da8c8265..bfd34994a 100644 --- a/proto/waCert/WACert.proto +++ b/proto/waCert/WACert.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WACert; -option go_package = "go.mau.fi/whatsmeow/proto/waCert"; +option go_package = "github.com/polymorfa/hypermeow/proto/waCert"; message NoiseCertificate { message Details { diff --git a/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.pb.go b/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.pb.go index fae5ba172..f47c8fb7c 100644 --- a/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.pb.go +++ b/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waChatLockSettings/WAWebProtobufsChatLockSettings.proto package waChatLockSettings @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waUserPassword "go.mau.fi/whatsmeow/proto/waUserPassword" + waUserPassword "github.com/polymorfa/hypermeow/proto/waUserPassword" ) const ( @@ -85,7 +85,7 @@ const file_waChatLockSettings_WAWebProtobufsChatLockSettings_proto_rawDesc = "" "\x0fhideLockedChats\x18\x01 \x01(\bR\x0fhideLockedChats\x12H\n" + "\n" + "secretCode\x18\x02 \x01(\v2(.WAWebProtobufsUserPassword.UserPasswordR\n" + - "secretCodeB.Z,go.mau.fi/whatsmeow/proto/waChatLockSettings" + "secretCodeB9Z7github.com/polymorfa/hypermeow/proto/waChatLockSettings" var ( file_waChatLockSettings_WAWebProtobufsChatLockSettings_proto_rawDescOnce sync.Once diff --git a/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.proto b/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.proto index 598be63fc..1516d4b16 100644 --- a/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.proto +++ b/proto/waChatLockSettings/WAWebProtobufsChatLockSettings.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufsChatLockSettings; -option go_package = "go.mau.fi/whatsmeow/proto/waChatLockSettings"; +option go_package = "github.com/polymorfa/hypermeow/proto/waChatLockSettings"; import "waUserPassword/WAWebProtobufsUserPassword.proto"; diff --git a/proto/waCommon/WACommon.pb.go b/proto/waCommon/WACommon.pb.go index 2861ab14f..38afb79ca 100644 --- a/proto/waCommon/WACommon.pb.go +++ b/proto/waCommon/WACommon.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v6.33.5 +// protoc v6.33.6 // source: waCommon/WACommon.proto package waCommon @@ -702,7 +702,7 @@ const file_waCommon_WACommon_proto_rawDesc = "" + "\vPLACEHOLDER\x10\x00\x12\x12\n" + "\x0eNO_PLACEHOLDER\x10\x01\x12\n" + "\n" + - "\x06IGNORE\x10\x02B$Z\"go.mau.fi/whatsmeow/proto/waCommon" + "\x06IGNORE\x10\x02B/Z-github.com/polymorfa/hypermeow/proto/waCommon" var ( file_waCommon_WACommon_proto_rawDescOnce sync.Once diff --git a/proto/waCommon/WACommon.proto b/proto/waCommon/WACommon.proto index c75cd1748..b3ae309ca 100644 --- a/proto/waCommon/WACommon.proto +++ b/proto/waCommon/WACommon.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WACommon; -option go_package = "go.mau.fi/whatsmeow/proto/waCommon"; +option go_package = "github.com/polymorfa/hypermeow/proto/waCommon"; enum FutureProofBehavior { PLACEHOLDER = 0; diff --git a/proto/waCommonParameterised/WACommonParameterised.pb.go b/proto/waCommonParameterised/WACommonParameterised.pb.go index 9d4162d7b..4bb84caab 100644 --- a/proto/waCommonParameterised/WACommonParameterised.pb.go +++ b/proto/waCommonParameterised/WACommonParameterised.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waCommonParameterised/WACommonParameterised.proto package waCommonParameterised @@ -562,7 +562,7 @@ const file_waCommonParameterised_WACommonParameterised_proto_rawDesc = "" + "\vPLACEHOLDER\x10\x00\x12\x12\n" + "\x0eNO_PLACEHOLDER\x10\x01\x12\n" + "\n" + - "\x06IGNORE\x10\x02B1Z/go.mau.fi/whatsmeow/proto/waCommonParameterised" + "\x06IGNORE\x10\x02B\n" + - "\bprotocol\x18\x01 \x01(\v2\".WACommonParameterised.SubProtocolR\bprotocolB>Zgithub.com/polymorfa/hypermeow/proto/waLidMigrationSyncPayload" var ( file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescOnce sync.Once diff --git a/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto b/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto index a0b044d14..7a308d5df 100644 --- a/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +++ b/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufLidMigrationSyncPayload; -option go_package = "go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload"; +option go_package = "github.com/polymorfa/hypermeow/proto/waLidMigrationSyncPayload"; message LIDMigrationMapping { required uint64 pn = 1; diff --git a/proto/waMediaEntryData/WAMediaEntryData.pb.go b/proto/waMediaEntryData/WAMediaEntryData.pb.go index ba14f146e..a82b89ab4 100644 --- a/proto/waMediaEntryData/WAMediaEntryData.pb.go +++ b/proto/waMediaEntryData/WAMediaEntryData.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waMediaEntryData/WAMediaEntryData.proto package waMediaEntryData @@ -372,7 +372,7 @@ const file_waMediaEntryData_WAMediaEntryData_proto_rawDesc = "" + "directPath\x12\x1a\n" + "\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" + "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" + - "\bobjectID\x18\x06 \x01(\tR\bobjectIDB,Z*go.mau.fi/whatsmeow/proto/waMediaEntryData" + "\bobjectID\x18\x06 \x01(\tR\bobjectIDB7Z5github.com/polymorfa/hypermeow/proto/waMediaEntryData" var ( file_waMediaEntryData_WAMediaEntryData_proto_rawDescOnce sync.Once diff --git a/proto/waMediaEntryData/WAMediaEntryData.proto b/proto/waMediaEntryData/WAMediaEntryData.proto index a9419386a..1afb9fb38 100644 --- a/proto/waMediaEntryData/WAMediaEntryData.proto +++ b/proto/waMediaEntryData/WAMediaEntryData.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAMediaEntryData; -option go_package = "go.mau.fi/whatsmeow/proto/waMediaEntryData"; +option go_package = "github.com/polymorfa/hypermeow/proto/waMediaEntryData"; message MediaEntry { message ProgressiveJpegDetails { diff --git a/proto/waMediaTransport/WAMediaTransport.pb.go b/proto/waMediaTransport/WAMediaTransport.pb.go index d79f20c3d..ff89aecad 100644 --- a/proto/waMediaTransport/WAMediaTransport.pb.go +++ b/proto/waMediaTransport/WAMediaTransport.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waMediaTransport/WAMediaTransport.proto package waMediaTransport @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -2033,7 +2033,7 @@ const file_waMediaTransport_WAMediaTransport_proto_rawDesc = "" + "\bIntegral\x12\x16\n" + "\x05vcard\x18\x01 \x01(\tH\x00R\x05vcard\x12R\n" + "\x11downloadableVcard\x18\x02 \x01(\v2\".WAMediaTransport.WAMediaTransportH\x00R\x11downloadableVcardB\t\n" + - "\acontactB,Z*go.mau.fi/whatsmeow/proto/waMediaTransport" + "\acontactB7Z5github.com/polymorfa/hypermeow/proto/waMediaTransport" var ( file_waMediaTransport_WAMediaTransport_proto_rawDescOnce sync.Once diff --git a/proto/waMediaTransport/WAMediaTransport.proto b/proto/waMediaTransport/WAMediaTransport.proto index 59ef7d955..ef2ada0a3 100644 --- a/proto/waMediaTransport/WAMediaTransport.proto +++ b/proto/waMediaTransport/WAMediaTransport.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAMediaTransport; -option go_package = "go.mau.fi/whatsmeow/proto/waMediaTransport"; +option go_package = "github.com/polymorfa/hypermeow/proto/waMediaTransport"; import "waCommon/WACommon.proto"; diff --git a/proto/waMmsRetry/WAMmsRetry.pb.go b/proto/waMmsRetry/WAMmsRetry.pb.go index 6128a8090..da1b0a28c 100644 --- a/proto/waMmsRetry/WAMmsRetry.pb.go +++ b/proto/waMmsRetry/WAMmsRetry.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waMmsRetry/WAMmsRetry.proto package waMmsRetry @@ -216,7 +216,7 @@ const file_waMmsRetry_WAMmsRetry_proto_rawDesc = "" + "\tNOT_FOUND\x10\x02\x12\x14\n" + "\x10DECRYPTION_ERROR\x10\x03\"0\n" + "\x12ServerErrorReceipt\x12\x1a\n" + - "\bstanzaID\x18\x01 \x01(\tR\bstanzaIDB&Z$go.mau.fi/whatsmeow/proto/waMmsRetry" + "\bstanzaID\x18\x01 \x01(\tR\bstanzaIDB1Z/github.com/polymorfa/hypermeow/proto/waMmsRetry" var ( file_waMmsRetry_WAMmsRetry_proto_rawDescOnce sync.Once diff --git a/proto/waMmsRetry/WAMmsRetry.proto b/proto/waMmsRetry/WAMmsRetry.proto index c6b18610c..f9816e18a 100644 --- a/proto/waMmsRetry/WAMmsRetry.proto +++ b/proto/waMmsRetry/WAMmsRetry.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAMmsRetry; -option go_package = "go.mau.fi/whatsmeow/proto/waMmsRetry"; +option go_package = "github.com/polymorfa/hypermeow/proto/waMmsRetry"; message MediaRetryNotification { enum ResultType { diff --git a/proto/waMsgApplication/WAMsgApplication.pb.go b/proto/waMsgApplication/WAMsgApplication.pb.go index b11c27870..09be071cc 100644 --- a/proto/waMsgApplication/WAMsgApplication.pb.go +++ b/proto/waMsgApplication/WAMsgApplication.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waMsgApplication/WAMsgApplication.proto package waMsgApplication @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -1050,7 +1050,7 @@ const file_waMsgApplication_WAMsgApplication_proto_rawDesc = "" + "\aUNKNOWN\x10\x00\x12\r\n" + "\tSEEN_ONCE\x10\x01\x12\x19\n" + "\x15SEEN_BASED_WITH_TIMER\x10\x02\x12\x19\n" + - "\x15SEND_BASED_WITH_TIMER\x10\x03B,Z*go.mau.fi/whatsmeow/proto/waMsgApplication" + "\x15SEND_BASED_WITH_TIMER\x10\x03B7Z5github.com/polymorfa/hypermeow/proto/waMsgApplication" var ( file_waMsgApplication_WAMsgApplication_proto_rawDescOnce sync.Once diff --git a/proto/waMsgApplication/WAMsgApplication.proto b/proto/waMsgApplication/WAMsgApplication.proto index 282e52734..9048b5b1e 100644 --- a/proto/waMsgApplication/WAMsgApplication.proto +++ b/proto/waMsgApplication/WAMsgApplication.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAMsgApplication; -option go_package = "go.mau.fi/whatsmeow/proto/waMsgApplication"; +option go_package = "github.com/polymorfa/hypermeow/proto/waMsgApplication"; import "waCommon/WACommon.proto"; diff --git a/proto/waMsgApplication/extra.go b/proto/waMsgApplication/extra.go index b98f78100..b49a0faf2 100644 --- a/proto/waMsgApplication/extra.go +++ b/proto/waMsgApplication/extra.go @@ -1,10 +1,10 @@ package waMsgApplication import ( - "go.mau.fi/whatsmeow/proto/armadilloutil" - "go.mau.fi/whatsmeow/proto/waArmadilloApplication" - "go.mau.fi/whatsmeow/proto/waConsumerApplication" - "go.mau.fi/whatsmeow/proto/waMultiDevice" + "github.com/polymorfa/hypermeow/proto/armadilloutil" + "github.com/polymorfa/hypermeow/proto/waArmadilloApplication" + "github.com/polymorfa/hypermeow/proto/waConsumerApplication" + "github.com/polymorfa/hypermeow/proto/waMultiDevice" ) const ( diff --git a/proto/waMsgTransport/WAMsgTransport.pb.go b/proto/waMsgTransport/WAMsgTransport.pb.go index c0b2faf10..255a15536 100644 --- a/proto/waMsgTransport/WAMsgTransport.pb.go +++ b/proto/waMsgTransport/WAMsgTransport.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waMsgTransport/WAMsgTransport.proto package waMsgTransport @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" ) const ( @@ -779,7 +779,7 @@ const file_waMsgTransport_WAMsgTransport_proto_rawDesc = "" + "\rsenderKeyHash\x18\x01 \x01(\fR\rsenderKeyHash\x12(\n" + "\x0fsenderTimestamp\x18\x02 \x01(\x04R\x0fsenderTimestamp\x12*\n" + "\x10recipientKeyHash\x18\b \x01(\fR\x10recipientKeyHash\x12.\n" + - "\x12recipientTimestamp\x18\t \x01(\x04R\x12recipientTimestampB*Z(go.mau.fi/whatsmeow/proto/waMsgTransport" + "\x12recipientTimestamp\x18\t \x01(\x04R\x12recipientTimestampB5Z3github.com/polymorfa/hypermeow/proto/waMsgTransport" var ( file_waMsgTransport_WAMsgTransport_proto_rawDescOnce sync.Once diff --git a/proto/waMsgTransport/WAMsgTransport.proto b/proto/waMsgTransport/WAMsgTransport.proto index fb5bfdadd..e2465e921 100644 --- a/proto/waMsgTransport/WAMsgTransport.proto +++ b/proto/waMsgTransport/WAMsgTransport.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAMsgTransport; -option go_package = "go.mau.fi/whatsmeow/proto/waMsgTransport"; +option go_package = "github.com/polymorfa/hypermeow/proto/waMsgTransport"; import "waCommon/WACommon.proto"; diff --git a/proto/waMsgTransport/extra.go b/proto/waMsgTransport/extra.go index d8758f1e7..412b35c6e 100644 --- a/proto/waMsgTransport/extra.go +++ b/proto/waMsgTransport/extra.go @@ -1,9 +1,9 @@ package waMsgTransport import ( - "go.mau.fi/whatsmeow/proto/armadilloutil" - "go.mau.fi/whatsmeow/proto/instamadilloTransportPayload" - "go.mau.fi/whatsmeow/proto/waMsgApplication" + "github.com/polymorfa/hypermeow/proto/armadilloutil" + "github.com/polymorfa/hypermeow/proto/instamadilloTransportPayload" + "github.com/polymorfa/hypermeow/proto/waMsgApplication" ) const ( diff --git a/proto/waMultiDevice/WAMultiDevice.pb.go b/proto/waMultiDevice/WAMultiDevice.pb.go index 17691d4b4..b93c322a7 100644 --- a/proto/waMultiDevice/WAMultiDevice.pb.go +++ b/proto/waMultiDevice/WAMultiDevice.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waMultiDevice/WAMultiDevice.proto package waMultiDevice @@ -652,7 +652,7 @@ const file_waMultiDevice_WAMultiDevice_proto_rawDesc = "" + "\x11AppStateSyncKeyId\x12\x14\n" + "\x05keyID\x18\x01 \x01(\fR\x05keyIDB\x11\n" + "\x0fapplicationData\x1a\b\n" + - "\x06SignalB)Z'go.mau.fi/whatsmeow/proto/waMultiDevice" + "\x06SignalB4Z2github.com/polymorfa/hypermeow/proto/waMultiDevice" var ( file_waMultiDevice_WAMultiDevice_proto_rawDescOnce sync.Once diff --git a/proto/waMultiDevice/WAMultiDevice.proto b/proto/waMultiDevice/WAMultiDevice.proto index 3ddc23088..d3d55d658 100644 --- a/proto/waMultiDevice/WAMultiDevice.proto +++ b/proto/waMultiDevice/WAMultiDevice.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAMultiDevice; -option go_package = "go.mau.fi/whatsmeow/proto/waMultiDevice"; +option go_package = "github.com/polymorfa/hypermeow/proto/waMultiDevice"; message MultiDevice { message Metadata { diff --git a/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.pb.go b/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.pb.go index 2837eb66e..8eb24507b 100644 --- a/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.pb.go +++ b/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.proto package waQuickPromotionSurfaces @@ -447,7 +447,7 @@ const file_waQuickPromotionSurfaces_WAWebProtobufsQuickPromotionSurfaces_proto_r "ClauseType\x12\a\n" + "\x03AND\x10\x01\x12\x06\n" + "\x02OR\x10\x02\x12\a\n" + - "\x03NOR\x10\x03B4Z2go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces" + "\x03NOR\x10\x03B?Z=github.com/polymorfa/hypermeow/proto/waQuickPromotionSurfaces" var ( file_waQuickPromotionSurfaces_WAWebProtobufsQuickPromotionSurfaces_proto_rawDescOnce sync.Once diff --git a/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.proto b/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.proto index 4fb264325..cf522cd18 100644 --- a/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.proto +++ b/proto/waQuickPromotionSurfaces/WAWebProtobufsQuickPromotionSurfaces.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufsQuickPromotionSurfaces; -option go_package = "go.mau.fi/whatsmeow/proto/waQuickPromotionSurfaces"; +option go_package = "github.com/polymorfa/hypermeow/proto/waQuickPromotionSurfaces"; message QP { enum FilterResult { diff --git a/proto/waReporting/WAWebProtobufsReporting.pb.go b/proto/waReporting/WAWebProtobufsReporting.pb.go index ef680f7ba..ddcd4fac8 100644 --- a/proto/waReporting/WAWebProtobufsReporting.pb.go +++ b/proto/waReporting/WAWebProtobufsReporting.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waReporting/WAWebProtobufsReporting.proto package waReporting @@ -252,7 +252,7 @@ const file_waReporting_WAWebProtobufsReporting_proto_rawDesc = "" + "\bsubfield\x18\x05 \x03(\v2,.WAWebProtobufsReporting.Field.SubfieldEntryR\bsubfield\x1a[\n" + "\rSubfieldEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\rR\x03key\x124\n" + - "\x05value\x18\x02 \x01(\v2\x1e.WAWebProtobufsReporting.FieldR\x05value:\x028\x01B'Z%go.mau.fi/whatsmeow/proto/waReportingb\x06proto3" + "\x05value\x18\x02 \x01(\v2\x1e.WAWebProtobufsReporting.FieldR\x05value:\x028\x01B2Z0github.com/polymorfa/hypermeow/proto/waReportingb\x06proto3" var ( file_waReporting_WAWebProtobufsReporting_proto_rawDescOnce sync.Once diff --git a/proto/waReporting/WAWebProtobufsReporting.proto b/proto/waReporting/WAWebProtobufsReporting.proto index 598dadd1d..2f74b969b 100644 --- a/proto/waReporting/WAWebProtobufsReporting.proto +++ b/proto/waReporting/WAWebProtobufsReporting.proto @@ -1,6 +1,6 @@ syntax = "proto3"; package WAWebProtobufsReporting; -option go_package = "go.mau.fi/whatsmeow/proto/waReporting"; +option go_package = "github.com/polymorfa/hypermeow/proto/waReporting"; message Reportable { uint32 minVersion = 1; diff --git a/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.pb.go b/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.pb.go index 7f077987e..7e8e80f93 100644 --- a/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.pb.go +++ b/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waRoutingInfo/WAWebProtobufsRoutingInfo.proto package waRoutingInfo @@ -117,7 +117,7 @@ const file_waRoutingInfo_WAWebProtobufsRoutingInfo_proto_rawDesc = "" + "\x06taskID\x18\x03 \x01(\x05R\x06taskID\x12\x14\n" + "\x05debug\x18\x04 \x01(\bR\x05debug\x12\x16\n" + "\x06tcpBbr\x18\x05 \x01(\bR\x06tcpBbr\x12\"\n" + - "\ftcpKeepalive\x18\x06 \x01(\bR\ftcpKeepaliveB)Z'go.mau.fi/whatsmeow/proto/waRoutingInfo" + "\ftcpKeepalive\x18\x06 \x01(\bR\ftcpKeepaliveB4Z2github.com/polymorfa/hypermeow/proto/waRoutingInfo" var ( file_waRoutingInfo_WAWebProtobufsRoutingInfo_proto_rawDescOnce sync.Once diff --git a/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.proto b/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.proto index 3885d0a72..8ed63255e 100644 --- a/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.proto +++ b/proto/waRoutingInfo/WAWebProtobufsRoutingInfo.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufsRoutingInfo; -option go_package = "go.mau.fi/whatsmeow/proto/waRoutingInfo"; +option go_package = "github.com/polymorfa/hypermeow/proto/waRoutingInfo"; message RoutingInfo { repeated int32 regionID = 1; diff --git a/proto/waServerSync/WAWebProtobufsServerSync.pb.go b/proto/waServerSync/WAWebProtobufsServerSync.pb.go index 41d74c95e..de9a4bcf3 100644 --- a/proto/waServerSync/WAWebProtobufsServerSync.pb.go +++ b/proto/waServerSync/WAWebProtobufsServerSync.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.34.1 +// protoc v6.33.6 // source: waServerSync/WAWebProtobufsServerSync.proto package waServerSync @@ -955,7 +955,7 @@ const file_waServerSync_WAWebProtobufsServerSync_proto_rawDesc = "" + "\x05index\x18\x01 \x01(\v2$.WAWebProtobufsServerSync.SyncdIndexR\x05index\x12:\n" + "\x05value\x18\x02 \x01(\v2$.WAWebProtobufsServerSync.SyncdValueR\x05value\x12\"\n" + "\fdirtyVersion\x18\x03 \x01(\x04R\fdirtyVersion\x12T\n" + - "\toperation\x18\x04 \x01(\x0e26.WAWebProtobufsServerSync.SyncdMutation.SyncdOperationR\toperationB(Z&go.mau.fi/whatsmeow/proto/waServerSync" + "\toperation\x18\x04 \x01(\x0e26.WAWebProtobufsServerSync.SyncdMutation.SyncdOperationR\toperationB3Z1github.com/polymorfa/hypermeow/proto/waServerSync" var ( file_waServerSync_WAWebProtobufsServerSync_proto_rawDescOnce sync.Once diff --git a/proto/waServerSync/WAWebProtobufsServerSync.proto b/proto/waServerSync/WAWebProtobufsServerSync.proto index efddc20a5..195e01792 100644 --- a/proto/waServerSync/WAWebProtobufsServerSync.proto +++ b/proto/waServerSync/WAWebProtobufsServerSync.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufsServerSync; -option go_package = "go.mau.fi/whatsmeow/proto/waServerSync"; +option go_package = "github.com/polymorfa/hypermeow/proto/waServerSync"; message SyncdMutation { enum SyncdOperation { diff --git a/proto/waStatusAttributions/WAStatusAttributions.pb.go b/proto/waStatusAttributions/WAStatusAttributions.pb.go index 2badbbd0c..12f879583 100644 --- a/proto/waStatusAttributions/WAStatusAttributions.pb.go +++ b/proto/waStatusAttributions/WAStatusAttributions.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v6.33.5 +// protoc v6.33.6 // source: waStatusAttributions/WAStatusAttributions.proto package waStatusAttributions @@ -1029,7 +1029,7 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" + "\x11NEWSLETTER_STATUS\x10\t\x12\x18\n" + "\x14STATUS_CLOSE_SHARING\x10\n" + "B\x11\n" + - "\x0fattributionDataB0Z.go.mau.fi/whatsmeow/proto/waStatusAttributions" + "\x0fattributionDataB;Z9github.com/polymorfa/hypermeow/proto/waStatusAttributions" var ( file_waStatusAttributions_WAStatusAttributions_proto_rawDescOnce sync.Once diff --git a/proto/waStatusAttributions/WAStatusAttributions.proto b/proto/waStatusAttributions/WAStatusAttributions.proto index 8d61e137a..7a05aeed3 100644 --- a/proto/waStatusAttributions/WAStatusAttributions.proto +++ b/proto/waStatusAttributions/WAStatusAttributions.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAStatusAttributions; -option go_package = "go.mau.fi/whatsmeow/proto/waStatusAttributions"; +option go_package = "github.com/polymorfa/hypermeow/proto/waStatusAttributions"; message StatusAttribution { enum Type { diff --git a/proto/waSyncAction/WAWebProtobufSyncAction.pb.go b/proto/waSyncAction/WAWebProtobufSyncAction.pb.go index 05dff72cc..38670926a 100644 --- a/proto/waSyncAction/WAWebProtobufSyncAction.pb.go +++ b/proto/waSyncAction/WAWebProtobufSyncAction.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v7.34.1 +// protoc v6.33.6 // source: waSyncAction/WAWebProtobufSyncAction.proto package waSyncAction @@ -14,9 +14,9 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waChatLockSettings "go.mau.fi/whatsmeow/proto/waChatLockSettings" - waCommon "go.mau.fi/whatsmeow/proto/waCommon" - waDeviceCapabilities "go.mau.fi/whatsmeow/proto/waDeviceCapabilities" + waChatLockSettings "github.com/polymorfa/hypermeow/proto/waChatLockSettings" + waCommon "github.com/polymorfa/hypermeow/proto/waCommon" + waDeviceCapabilities "github.com/polymorfa/hypermeow/proto/waDeviceCapabilities" ) const ( @@ -9223,7 +9223,7 @@ const file_waSyncAction_WAWebProtobufSyncAction_proto_rawDesc = "" + "PROCESSING\x10\x03\x12\n" + "\n" + "\x06FAILED\x10\x04\x12\b\n" + - "\x04SENT\x10\x05B(Z&go.mau.fi/whatsmeow/proto/waSyncAction" + "\x04SENT\x10\x05B3Z1github.com/polymorfa/hypermeow/proto/waSyncAction" var ( file_waSyncAction_WAWebProtobufSyncAction_proto_rawDescOnce sync.Once diff --git a/proto/waSyncAction/WAWebProtobufSyncAction.proto b/proto/waSyncAction/WAWebProtobufSyncAction.proto index bcb650eeb..78f2d34d6 100644 --- a/proto/waSyncAction/WAWebProtobufSyncAction.proto +++ b/proto/waSyncAction/WAWebProtobufSyncAction.proto @@ -1,6 +1,6 @@ syntax = "proto2"; package WAWebProtobufSyncAction; -option go_package = "go.mau.fi/whatsmeow/proto/waSyncAction"; +option go_package = "github.com/polymorfa/hypermeow/proto/waSyncAction"; import "waChatLockSettings/WAWebProtobufsChatLockSettings.proto"; import "waDeviceCapabilities/WAWebProtobufsDeviceCapabilities.proto"; diff --git a/proto/waSyncdSnapshotRecovery/WAWebProtobufsSyncdSnapshotRecovery.pb.go b/proto/waSyncdSnapshotRecovery/WAWebProtobufsSyncdSnapshotRecovery.pb.go index 853a48ce0..126f50d81 100644 --- a/proto/waSyncdSnapshotRecovery/WAWebProtobufsSyncdSnapshotRecovery.pb.go +++ b/proto/waSyncdSnapshotRecovery/WAWebProtobufsSyncdSnapshotRecovery.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.10 -// protoc v3.21.12 +// protoc-gen-go v1.36.11 +// protoc v6.33.6 // source: waSyncdSnapshotRecovery/WAWebProtobufsSyncdSnapshotRecovery.proto package waSyncdSnapshotRecovery @@ -14,7 +14,7 @@ import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - waSyncAction "go.mau.fi/whatsmeow/proto/waSyncAction" + waSyncAction "github.com/polymorfa/hypermeow/proto/waSyncAction" ) const ( @@ -211,7 +211,7 @@ const file_waSyncdSnapshotRecovery_WAWebProtobufsSyncdSnapshotRecovery_proto_raw "\x05keyID\x18\x02 \x01(\fR\x05keyID\x12\x10\n" + "\x03mac\x18\x03 \x01(\fR\x03mac\"(\n" + "\fSyncdVersion\x12\x18\n" + - "\aversion\x18\x01 \x01(\x04R\aversionB3Z1go.mau.fi/whatsmeow/proto/waSyncdSnapshotRecovery" + "\aversion\x18\x01 \x01(\x04R\aversionB>Z