@kl1/contracts 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs
CHANGED
@@ -4060,7 +4060,7 @@ var contactContract = initContract11().router(
|
|
4060
4060
|
},
|
4061
4061
|
checkContactPhone: {
|
4062
4062
|
method: "POST",
|
4063
|
-
path: "
|
4063
|
+
path: "ccs/api/v1/contact/check/phone",
|
4064
4064
|
responses: {
|
4065
4065
|
200: DefaultSuccessResponseSchema.extend({
|
4066
4066
|
existed: ContactContractValidationSchema.checkContactPhone.response
|
@@ -4083,7 +4083,7 @@ var contactContract = initContract11().router(
|
|
4083
4083
|
},
|
4084
4084
|
checkContactEmail: {
|
4085
4085
|
method: "POST",
|
4086
|
-
path: "
|
4086
|
+
path: "ccs/api/v1/contact/check/email",
|
4087
4087
|
responses: {
|
4088
4088
|
200: DefaultSuccessResponseSchema.extend({
|
4089
4089
|
existed: ContactContractValidationSchema.checkContactEmail.response
|
@@ -4129,7 +4129,7 @@ var contactContract = initContract11().router(
|
|
4129
4129
|
},
|
4130
4130
|
getById: {
|
4131
4131
|
method: "GET",
|
4132
|
-
path: "
|
4132
|
+
path: "ccs/api/v1/contact/:id",
|
4133
4133
|
pathParams: ContactContractValidationSchema.getById.request,
|
4134
4134
|
responses: {
|
4135
4135
|
200: DefaultSuccessResponseSchema.extend({
|