From c9ca89e364bde7dbf0a80fe878d495bb87a97291 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 26 May 2025 03:24:11 +0300 Subject: [PATCH] Update module path to git.denco.store/fakz9/ozon-api-client --- README.md | 8 ++++---- ozon/analytics.go | 2 +- ozon/analytics_test.go | 2 +- ozon/barcodes.go | 2 +- ozon/barcodes_test.go | 2 +- ozon/brands.go | 2 +- ozon/brands_test.go | 2 +- ozon/cancellations.go | 2 +- ozon/cancellations_test.go | 2 +- ozon/categories.go | 2 +- ozon/categories_test.go | 2 +- ozon/certificates.go | 2 +- ozon/certificates_test.go | 2 +- ozon/chats.go | 2 +- ozon/chats_test.go | 2 +- ozon/clusters.go | 2 +- ozon/clusters_test.go | 2 +- ozon/fbo.go | 2 +- ozon/fbo_test.go | 2 +- ozon/fbs.go | 2 +- ozon/fbs_test.go | 2 +- ozon/finance.go | 2 +- ozon/finance_test.go | 2 +- ozon/invoices.go | 2 +- ozon/invoices_test.go | 2 +- ozon/notifications/server_test.go | 2 +- ozon/ozon.go | 2 +- ozon/pass.go | 2 +- ozon/pass_test.go | 2 +- ozon/polygons.go | 2 +- ozon/polygons_test.go | 2 +- ozon/products.go | 2 +- ozon/products_test.go | 2 +- ozon/promotions.go | 2 +- ozon/promotions_test.go | 2 +- ozon/quants.go | 2 +- ozon/quants_test.go | 2 +- ozon/rating.go | 2 +- ozon/rating_test.go | 2 +- ozon/reports.go | 2 +- ozon/reports_test.go | 2 +- ozon/returns.go | 2 +- ozon/returns_test.go | 2 +- ozon/reviews.go | 2 +- ozon/reviews_test.go | 2 +- ozon/strategies.go | 2 +- ozon/strategies_test.go | 2 +- ozon/warehouses.go | 2 +- ozon/warehouses_test.go | 2 +- 49 files changed, 52 insertions(+), 52 deletions(-) diff --git a/README.md b/README.md index 9f30760..94801e9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A Ozon Seller API client written in Golang [![Coverage Status](https://coveralls.io/repos/github/diPhantxm/ozon-api-client/badge.svg)](https://coveralls.io/github/diPhantxm/ozon-api-client) -![example workflow](https://github.com/diPhantxm/ozon-api-client/actions/workflows/tests.yml/badge.svg) +![example workflow](https://git.denco.store/fakz9/ozon-api-client/actions/workflows/tests.yml/badge.svg) [Ozon](https://ozon.ru) is a marketplace for small and medium enterprises to launch and grow their businesses in Russia. @@ -14,7 +14,7 @@ Get Client-Id and Api-Key in your seller profile [here](https://seller.ozon.ru/a Just add dependency to your project and you're ready to go. ```bash -go get github.com/diphantxm/ozon-api-client +go get git.denco.store/fakz9/ozon-api-client ``` A simple example on how to use this library: ```Golang @@ -26,7 +26,7 @@ import ( "log" "net/http" - "github.com/diphantxm/ozon-api-client/ozon" + "git.denco.store/fakz9/ozon-api-client/ozon" ) func main() { @@ -65,7 +65,7 @@ package main import ( "log" - "github.com/diphantxm/ozon-api-client/ozon/notifications" + "git.denco.store/fakz9/ozon-api-client/ozon/notifications" ) func main() { diff --git a/ozon/analytics.go b/ozon/analytics.go index e8c003e..ed67f19 100644 --- a/ozon/analytics.go +++ b/ozon/analytics.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Analytics struct { diff --git a/ozon/analytics_test.go b/ozon/analytics_test.go index a19f902..96d7a01 100644 --- a/ozon/analytics_test.go +++ b/ozon/analytics_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetAnalyticsData(t *testing.T) { diff --git a/ozon/barcodes.go b/ozon/barcodes.go index 683ac9b..72f9fb5 100644 --- a/ozon/barcodes.go +++ b/ozon/barcodes.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Barcodes struct { diff --git a/ozon/barcodes_test.go b/ozon/barcodes_test.go index ceb2b01..c0122bc 100644 --- a/ozon/barcodes_test.go +++ b/ozon/barcodes_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGenerateBarcodes(t *testing.T) { diff --git a/ozon/brands.go b/ozon/brands.go index bbff923..3573c16 100644 --- a/ozon/brands.go +++ b/ozon/brands.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Brands struct { diff --git a/ozon/brands_test.go b/ozon/brands_test.go index 3e0aff6..1222acc 100644 --- a/ozon/brands_test.go +++ b/ozon/brands_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListCertifiedBrands(t *testing.T) { diff --git a/ozon/cancellations.go b/ozon/cancellations.go index b72e8f2..9e6d10b 100644 --- a/ozon/cancellations.go +++ b/ozon/cancellations.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Cancellations struct { diff --git a/ozon/cancellations_test.go b/ozon/cancellations_test.go index a887e05..29db06b 100644 --- a/ozon/cancellations_test.go +++ b/ozon/cancellations_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetCancellationInfo(t *testing.T) { diff --git a/ozon/categories.go b/ozon/categories.go index c85251b..258765e 100644 --- a/ozon/categories.go +++ b/ozon/categories.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Categories struct { diff --git a/ozon/categories_test.go b/ozon/categories_test.go index c8c7018..1ef25ce 100644 --- a/ozon/categories_test.go +++ b/ozon/categories_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetProductTree(t *testing.T) { diff --git a/ozon/certificates.go b/ozon/certificates.go index d96d209..978e583 100644 --- a/ozon/certificates.go +++ b/ozon/certificates.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Certificates struct { diff --git a/ozon/certificates_test.go b/ozon/certificates_test.go index 489a996..8c89735 100644 --- a/ozon/certificates_test.go +++ b/ozon/certificates_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListOfAccordanceTypes(t *testing.T) { diff --git a/ozon/chats.go b/ozon/chats.go index ae0d88b..3e47a7d 100644 --- a/ozon/chats.go +++ b/ozon/chats.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Chats struct { diff --git a/ozon/chats_test.go b/ozon/chats_test.go index dba5cdc..ec08674 100644 --- a/ozon/chats_test.go +++ b/ozon/chats_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListChats(t *testing.T) { diff --git a/ozon/clusters.go b/ozon/clusters.go index f000226..9f3993a 100644 --- a/ozon/clusters.go +++ b/ozon/clusters.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Clusters struct { diff --git a/ozon/clusters_test.go b/ozon/clusters_test.go index 2861aa3..66f9c55 100644 --- a/ozon/clusters_test.go +++ b/ozon/clusters_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListClusters(t *testing.T) { diff --git a/ozon/fbo.go b/ozon/fbo.go index f54d1ec..d2f373d 100644 --- a/ozon/fbo.go +++ b/ozon/fbo.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type FBO struct { diff --git a/ozon/fbo_test.go b/ozon/fbo_test.go index 33eddd8..9248338 100644 --- a/ozon/fbo_test.go +++ b/ozon/fbo_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetFBOShipmentsList(t *testing.T) { diff --git a/ozon/fbs.go b/ozon/fbs.go index 5eb511a..f015589 100644 --- a/ozon/fbs.go +++ b/ozon/fbs.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type FBS struct { diff --git a/ozon/fbs_test.go b/ozon/fbs_test.go index 6a79967..cccd962 100644 --- a/ozon/fbs_test.go +++ b/ozon/fbs_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListUnprocessedShipments(t *testing.T) { diff --git a/ozon/finance.go b/ozon/finance.go index afadd5b..5581dae 100644 --- a/ozon/finance.go +++ b/ozon/finance.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Finance struct { diff --git a/ozon/finance_test.go b/ozon/finance_test.go index 7c9b6c6..6729afa 100644 --- a/ozon/finance_test.go +++ b/ozon/finance_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestReportOnSoldProducts(t *testing.T) { diff --git a/ozon/invoices.go b/ozon/invoices.go index f72007d..875a1d3 100644 --- a/ozon/invoices.go +++ b/ozon/invoices.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Invoices struct { diff --git a/ozon/invoices_test.go b/ozon/invoices_test.go index 32a9c76..fdc28ba 100644 --- a/ozon/invoices_test.go +++ b/ozon/invoices_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestCreateUpdateProformaLink(t *testing.T) { diff --git a/ozon/notifications/server_test.go b/ozon/notifications/server_test.go index d5ae7fc..3739cd1 100644 --- a/ozon/notifications/server_test.go +++ b/ozon/notifications/server_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type testData struct { diff --git a/ozon/ozon.go b/ozon/ozon.go index ea871ba..4f07cb3 100644 --- a/ozon/ozon.go +++ b/ozon/ozon.go @@ -3,7 +3,7 @@ package ozon import ( "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) const ( diff --git a/ozon/pass.go b/ozon/pass.go index 63e41d5..d219ef6 100644 --- a/ozon/pass.go +++ b/ozon/pass.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Passes struct { diff --git a/ozon/pass_test.go b/ozon/pass_test.go index bc9d65e..ea2c6bd 100644 --- a/ozon/pass_test.go +++ b/ozon/pass_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListPasses(t *testing.T) { diff --git a/ozon/polygons.go b/ozon/polygons.go index abd9e89..8be7d7a 100644 --- a/ozon/polygons.go +++ b/ozon/polygons.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Polygons struct { diff --git a/ozon/polygons_test.go b/ozon/polygons_test.go index 611df4e..1c1c7c4 100644 --- a/ozon/polygons_test.go +++ b/ozon/polygons_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestCreateDeliveryPolygon(t *testing.T) { diff --git a/ozon/products.go b/ozon/products.go index b907cd9..86a2795 100644 --- a/ozon/products.go +++ b/ozon/products.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Products struct { diff --git a/ozon/products_test.go b/ozon/products_test.go index 66d2b02..c5db064 100644 --- a/ozon/products_test.go +++ b/ozon/products_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetStocksInfo(t *testing.T) { diff --git a/ozon/promotions.go b/ozon/promotions.go index 43b655f..80fd05e 100644 --- a/ozon/promotions.go +++ b/ozon/promotions.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Promotions struct { diff --git a/ozon/promotions_test.go b/ozon/promotions_test.go index 177dd83..5edf69a 100644 --- a/ozon/promotions_test.go +++ b/ozon/promotions_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetAvailablePromotions(t *testing.T) { diff --git a/ozon/quants.go b/ozon/quants.go index cb1870a..c4903d1 100644 --- a/ozon/quants.go +++ b/ozon/quants.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Quants struct { diff --git a/ozon/quants_test.go b/ozon/quants_test.go index 3691527..b840eed 100644 --- a/ozon/quants_test.go +++ b/ozon/quants_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListQuants(t *testing.T) { diff --git a/ozon/rating.go b/ozon/rating.go index 97e50ac..17c733b 100644 --- a/ozon/rating.go +++ b/ozon/rating.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Rating struct { diff --git a/ozon/rating_test.go b/ozon/rating_test.go index eb8c8d8..577224b 100644 --- a/ozon/rating_test.go +++ b/ozon/rating_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetCurrentRatingInfo(t *testing.T) { diff --git a/ozon/reports.go b/ozon/reports.go index 9727dc3..dfe3126 100644 --- a/ozon/reports.go +++ b/ozon/reports.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Reports struct { diff --git a/ozon/reports_test.go b/ozon/reports_test.go index e45d486..ef7bda6 100644 --- a/ozon/reports_test.go +++ b/ozon/reports_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetList(t *testing.T) { diff --git a/ozon/returns.go b/ozon/returns.go index ff79e29..1714138 100644 --- a/ozon/returns.go +++ b/ozon/returns.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Returns struct { diff --git a/ozon/returns_test.go b/ozon/returns_test.go index 9e8f242..4f64f91 100644 --- a/ozon/returns_test.go +++ b/ozon/returns_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetRFBSReturns(t *testing.T) { diff --git a/ozon/reviews.go b/ozon/reviews.go index db65154..9d39bc6 100644 --- a/ozon/reviews.go +++ b/ozon/reviews.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Reviews struct { diff --git a/ozon/reviews_test.go b/ozon/reviews_test.go index 9038a0c..c23a595 100644 --- a/ozon/reviews_test.go +++ b/ozon/reviews_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestLeaveComment(t *testing.T) { diff --git a/ozon/strategies.go b/ozon/strategies.go index 2e64a25..a9e6962 100644 --- a/ozon/strategies.go +++ b/ozon/strategies.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Strategies struct { diff --git a/ozon/strategies_test.go b/ozon/strategies_test.go index 37958b2..9719f9c 100644 --- a/ozon/strategies_test.go +++ b/ozon/strategies_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestListCompetitors(t *testing.T) { diff --git a/ozon/warehouses.go b/ozon/warehouses.go index c9ca3cb..410686b 100644 --- a/ozon/warehouses.go +++ b/ozon/warehouses.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) type Warehouses struct { diff --git a/ozon/warehouses_test.go b/ozon/warehouses_test.go index b9477a3..964e7ab 100644 --- a/ozon/warehouses_test.go +++ b/ozon/warehouses_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - core "github.com/diphantxm/ozon-api-client" + core "git.denco.store/fakz9/ozon-api-client" ) func TestGetListOfWarehouses(t *testing.T) {