Skip to content

Commit

Permalink
fix(rebase): rebase deps up
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Apr 30, 2024
1 parent 47a32b1 commit 51ee979
Show file tree
Hide file tree
Showing 16 changed files with 945 additions and 864 deletions.
17 changes: 15 additions & 2 deletions cfg/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
"FULFILLED": "fulfillmentFulfilled",
"WITHDRAWN": "fulfillmentWithdrawn",
"CANCELLED": "fulfillmentCancelled",
"CREATE_FULFILLMENTS": "createFulfillments",
"CREATE_INVOICES": "createInvoices"
},
"kafka": {
Expand Down Expand Up @@ -359,8 +358,22 @@
"preDefinedIds": {
"legalAddressTypeId": "legal_address"
},
"errors": {
"INVALID_CREDENTIALS": {
"code": 401,
"message": "Invalid credentials"
},
"USER_NOT_LOGGED_IN": {
"code": 401,
"message": "Invalid authentication context, please log in first"
},
"ACTION_NOT_ALLOWED": {
"code": 403,
"message": "Action not allowed on this resource"
}
},
"stubs": {
"DHLSoapStub": {
"DHLSoap": {
"defaults": {
"ordering": {
"wsdl": "./wsdl/dhl/geschaeftskundenversand-api-3.4.0.wsdl",
Expand Down
65 changes: 54 additions & 11 deletions cfg/config_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,61 @@
"prettyPrint": true
}
},
"database": {
"main": {
"database": "fulfillment-srv-test"
}
},
"server": {
"transports": [
{
"name": "grpcFulfillmentSrv",
"provider": "grpc",
"addr": "0.0.0.0:50167"
}
]
},
"authorization": {
"client": null
},
"client": {
"fulfillment": {
"address": "localhost:50067"
"address": "localhost:50167"
},
"fulfillment_courier": {
"address": "localhost:50067"
"address": "localhost:50167"
},
"fulfillment_product": {
"address": "localhost:50067"
"address": "localhost:50167"
},
"acs-srv": {
"address": "localhost:50161",
"mock": {
"protoPath": "io/restorecommerce/access_control.proto",
"packageName": "io.restorecommerce.access_control",
"serviceName": "AccessControlService",
"protoLoadOptions": {
"includeDirs": [
"node_modules/@restorecommerce/protos/"
]
}
}
},
"user": {
"address": "localhost:50162",
"mock": {
"protoPath": "io/restorecommerce/user.proto",
"packageName": "io.restorecommerce.user",
"serviceName": "UserService",
"protoLoadOptions": {
"includeDirs": [
"node_modules/@restorecommerce/protos/"
]
}
}
},
"customer": {
"address": "localhost:50063",
"address": "localhost:50163",
"mock": {
"protoPath": "io/restorecommerce/customer.proto",
"packageName": "io.restorecommerce.customer",
Expand All @@ -31,7 +74,7 @@
}
},
"shop": {
"address": "localhost:50063",
"address": "localhost:50165",
"mock": {
"protoPath": "io/restorecommerce/shop.proto",
"packageName": "io.restorecommerce.shop",
Expand All @@ -44,7 +87,7 @@
}
},
"organization": {
"address": "localhost:50063",
"address": "localhost:50166",
"mock": {
"protoPath": "io/restorecommerce/organization.proto",
"packageName": "io.restorecommerce.organization",
Expand All @@ -57,7 +100,7 @@
}
},
"contact_point": {
"address": "localhost:50063",
"address": "localhost:50172",
"mock": {
"protoPath": "io/restorecommerce/contact_point.proto",
"packageName": "io.restorecommerce.contact_point",
Expand All @@ -70,7 +113,7 @@
}
},
"address": {
"address": "localhost:50063",
"address": "localhost:50168",
"mock": {
"protoPath": "io/restorecommerce/address.proto",
"packageName": "io.restorecommerce.address",
Expand All @@ -83,7 +126,7 @@
}
},
"country": {
"address": "localhost:50063",
"address": "localhost:50169",
"mock": {
"protoPath": "io/restorecommerce/country.proto",
"packageName": "io.restorecommerce.country",
Expand All @@ -96,7 +139,7 @@
}
},
"tax": {
"address": "localhost:50063",
"address": "localhost:50170",
"mock": {
"protoPath": "io/restorecommerce/tax.proto",
"packageName": "io.restorecommerce.tax",
Expand All @@ -109,7 +152,7 @@
}
},
"product": {
"address": "localhost:50068",
"address": "localhost:50171",
"mock": {
"protoPath": "io/restorecommerce/product.proto",
"packageName": "io.restorecommerce.product",
Expand Down
48 changes: 28 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
},
"type": "module",
"dependencies": {
"@restorecommerce/acs-client": "^1.6.0",
"@restorecommerce/acs-client": "^1.6.6",
"@restorecommerce/cart": "^1.0.5",
"@restorecommerce/chassis-srv": "^1.6.0",
"@restorecommerce/cluster-service": "^1.0.3",
"@restorecommerce/grpc-client": "^2.2.1",
"@restorecommerce/kafka-client": "^1.2.1",
"@restorecommerce/logger": "^1.2.10",
"@restorecommerce/rc-grpc-clients": "^5.1.23",
"@restorecommerce/rc-grpc-clients": "^5.1.27",
"@restorecommerce/resource-base-interface": "^1.6.0",
"@restorecommerce/service-config": "^1.0.12",
"@types/soap": "^0.21.0",
Expand Down
5 changes: 0 additions & 5 deletions src/index.ts

This file was deleted.

Loading

0 comments on commit 51ee979

Please sign in to comment.