@veruna/api-contracts 6.18.0 → 6.20.0
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/build/locales/validation.d.ts +50 -0
- package/build/locales/validation.js +50 -0
- package/build/locales/validation.js.map +1 -1
- package/build/rest-api.d.ts +4 -0
- package/build/rest-api.js +4 -0
- package/build/rest-api.js.map +1 -1
- package/build/routes/auth.routes.d.ts +3 -0
- package/build/routes/auth.routes.js +3 -0
- package/build/routes/auth.routes.js.map +1 -1
- package/build/routes/payment.routes.d.ts +1 -0
- package/build/routes/payment.routes.js +1 -0
- package/build/routes/payment.routes.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1/auth/commands/express-signup.command.d.ts +33 -0
- package/build/v1/auth/commands/express-signup.command.js +15 -0
- package/build/v1/auth/commands/express-signup.command.js.map +1 -0
- package/build/v1/auth/commands/index.d.ts +3 -0
- package/build/v1/auth/commands/index.js +3 -0
- package/build/v1/auth/commands/index.js.map +1 -1
- package/build/v1/auth/commands/login-code-request.command.d.ts +14 -0
- package/build/v1/auth/commands/login-code-request.command.js +14 -0
- package/build/v1/auth/commands/login-code-request.command.js.map +1 -0
- package/build/v1/auth/commands/login-code-verify.command.d.ts +33 -0
- package/build/v1/auth/commands/login-code-verify.command.js +15 -0
- package/build/v1/auth/commands/login-code-verify.command.js.map +1 -0
- package/build/v1/auth/schemas/express-signup-request.schema.d.ts +5 -0
- package/build/v1/auth/schemas/express-signup-request.schema.js +13 -0
- package/build/v1/auth/schemas/express-signup-request.schema.js.map +1 -0
- package/build/v1/auth/schemas/index.d.ts +3 -0
- package/build/v1/auth/schemas/index.js +3 -0
- package/build/v1/auth/schemas/index.js.map +1 -1
- package/build/v1/auth/schemas/login-code-request.schema.d.ts +7 -0
- package/build/v1/auth/schemas/login-code-request.schema.js +12 -0
- package/build/v1/auth/schemas/login-code-request.schema.js.map +1 -0
- package/build/v1/auth/schemas/login-code-verify.schema.d.ts +5 -0
- package/build/v1/auth/schemas/login-code-verify.schema.js +12 -0
- package/build/v1/auth/schemas/login-code-verify.schema.js.map +1 -0
- package/build/v1/payment/admin/queries/admin-list-saved-methods.query.d.ts +4 -0
- package/build/v1/payment/admin/schemas/admin-saved-method.schema.d.ts +4 -0
- package/build/v1/payment/commands/check-webhook.command.d.ts +29 -3
- package/build/v1/payment/commands/confirm-webhook.command.d.ts +31 -2
- package/build/v1/payment/commands/fail-webhook.command.d.ts +35 -4
- package/build/v1/payment/commands/index.d.ts +1 -0
- package/build/v1/payment/commands/index.js +1 -0
- package/build/v1/payment/commands/index.js.map +1 -1
- package/build/v1/payment/commands/pay-webhook.command.d.ts +37 -7
- package/build/v1/payment/commands/recurrent-webhook.command.d.ts +10 -3
- package/build/v1/payment/commands/refund-webhook.command.d.ts +7 -1
- package/build/v1/payment/commands/set-default-saved-method.command.d.ts +26 -0
- package/build/v1/payment/commands/set-default-saved-method.command.js +23 -0
- package/build/v1/payment/commands/set-default-saved-method.command.js.map +1 -0
- package/build/v1/payment/payment.errors.d.ts +1 -0
- package/build/v1/payment/payment.errors.js +5 -0
- package/build/v1/payment/payment.errors.js.map +1 -1
- package/build/v1/payment/queries/get-saved-methods.query.d.ts +8 -0
- package/build/v1/payment/queries/get-saved-methods.query.js +4 -0
- package/build/v1/payment/queries/get-saved-methods.query.js.map +1 -1
- package/build/v1/payment/schemas/cloudpayments-webhook.schemas.d.ts +147 -18
- package/build/v1/payment/schemas/cloudpayments-webhook.schemas.js +103 -12
- package/build/v1/payment/schemas/cloudpayments-webhook.schemas.js.map +1 -1
- package/build/v1/users/schemas/index.d.ts +1 -0
- package/build/v1/users/schemas/index.js +1 -0
- package/build/v1/users/schemas/index.js.map +1 -1
- package/build/v1/users/schemas/signup-channel.enum.d.ts +4 -0
- package/build/v1/users/schemas/signup-channel.enum.js +9 -0
- package/build/v1/users/schemas/signup-channel.enum.js.map +1 -0
- package/build/v1/verification/schemas/verification-type.enum.d.ts +2 -1
- package/build/v1/verification/schemas/verification-type.enum.js +1 -0
- package/build/v1/verification/schemas/verification-type.enum.js.map +1 -1
- package/package.json +1 -1
|
@@ -5,4 +5,7 @@ export declare const AUTH_ROUTES: {
|
|
|
5
5
|
readonly LOGOUT_ALL: "logout-all";
|
|
6
6
|
readonly SESSIONS: "sessions";
|
|
7
7
|
readonly SESSION_BY_ID: "sessions/:id";
|
|
8
|
+
readonly LOGIN_CODE_REQUEST: "login-code/request";
|
|
9
|
+
readonly LOGIN_CODE_VERIFY: "login-code/verify";
|
|
10
|
+
readonly EXPRESS_SIGNUP: "express-signup";
|
|
8
11
|
};
|
|
@@ -8,5 +8,8 @@ exports.AUTH_ROUTES = {
|
|
|
8
8
|
LOGOUT_ALL: 'logout-all',
|
|
9
9
|
SESSIONS: 'sessions',
|
|
10
10
|
SESSION_BY_ID: 'sessions/:id',
|
|
11
|
+
LOGIN_CODE_REQUEST: 'login-code/request',
|
|
12
|
+
LOGIN_CODE_VERIFY: 'login-code/verify',
|
|
13
|
+
EXPRESS_SIGNUP: 'express-signup',
|
|
11
14
|
};
|
|
12
15
|
//# sourceMappingURL=auth.routes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.routes.js","sourceRoot":"","sources":["../../routes/auth.routes.ts"],"names":[],"mappings":";;;AAIa,QAAA,WAAW,GAAG;IACzB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,aAAa,EAAE,cAAc;
|
|
1
|
+
{"version":3,"file":"auth.routes.js","sourceRoot":"","sources":["../../routes/auth.routes.ts"],"names":[],"mappings":";;;AAIa,QAAA,WAAW,GAAG;IACzB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,aAAa,EAAE,cAAc;IAC7B,kBAAkB,EAAE,oBAAoB;IACxC,iBAAiB,EAAE,mBAAmB;IACtC,cAAc,EAAE,gBAAgB;CACxB,CAAC"}
|
|
@@ -2,6 +2,7 @@ export declare const PAYMENT_ROUTES: {
|
|
|
2
2
|
readonly CHECKOUT_CONFIG: "checkout-config";
|
|
3
3
|
readonly SAVED_METHODS: "saved-methods";
|
|
4
4
|
readonly REVOKE_SAVED_METHOD: "saved-methods/:id";
|
|
5
|
+
readonly SET_DEFAULT_SAVED_METHOD: "saved-methods/:id/default";
|
|
5
6
|
};
|
|
6
7
|
export declare const PAYMENT_WEBHOOKS_ROUTES: {
|
|
7
8
|
readonly CHECK: "check";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment.routes.js","sourceRoot":"","sources":["../../routes/payment.routes.ts"],"names":[],"mappings":";;;AAMa,QAAA,cAAc,GAAG;IAE1B,eAAe,EAAE,iBAAiB;IAElC,aAAa,EAAE,eAAe;IAE9B,mBAAmB,EAAE,mBAAmB;
|
|
1
|
+
{"version":3,"file":"payment.routes.js","sourceRoot":"","sources":["../../routes/payment.routes.ts"],"names":[],"mappings":";;;AAMa,QAAA,cAAc,GAAG;IAE1B,eAAe,EAAE,iBAAiB;IAElC,aAAa,EAAE,eAAe;IAE9B,mBAAmB,EAAE,mBAAmB;IAExC,wBAAwB,EAAE,2BAA2B;CAC/C,CAAC;AAEE,QAAA,uBAAuB,GAAG;IAEnC,KAAK,EAAE,OAAO;IAEd,GAAG,EAAE,KAAK;IAEV,IAAI,EAAE,MAAM;IAEZ,OAAO,EAAE,SAAS;IAElB,MAAM,EAAE,QAAQ;IAEhB,SAAS,EAAE,WAAW;CAChB,CAAC"}
|