@remnawave/backend-contract 0.6.0 → 0.6.1
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/backend/commands/users/tags/get-all-tags.command.d.ts +2 -2
- package/build/backend/commands/users/tags/get-all-tags.command.d.ts.map +1 -1
- package/build/backend/commands/users/tags/get-all-tags.command.js +1 -1
- package/build/frontend/commands/users/tags/get-all-tags.command.js +1 -1
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare namespace GetAllTagsCommand {
|
3
|
-
const url: "/api/users/";
|
4
|
-
const TSQ_url: "/api/users/";
|
3
|
+
const url: "/api/users/tags";
|
4
|
+
const TSQ_url: "/api/users/tags";
|
5
5
|
const endpointDetails: import("../../../constants").EndpointDetails;
|
6
6
|
const ResponseSchema: z.ZodObject<{
|
7
7
|
response: z.ZodObject<{
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"get-all-tags.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/tags/get-all-tags.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,
|
1
|
+
{"version":3,"file":"get-all-tags.command.d.ts","sourceRoot":"","sources":["../../../../../commands/users/tags/get-all-tags.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,yBAAiB,iBAAiB,CAAC;IACxB,MAAM,GAAG,mBAA0B,CAAC;IACpC,MAAM,OAAO,mBAAM,CAAC;IAEpB,MAAM,eAAe,8CAI3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;MAIzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
@@ -6,7 +6,7 @@ const constants_1 = require("../../../constants");
|
|
6
6
|
const api_1 = require("../../../api");
|
7
7
|
var GetAllTagsCommand;
|
8
8
|
(function (GetAllTagsCommand) {
|
9
|
-
GetAllTagsCommand.url = api_1.REST_API.USERS.GET;
|
9
|
+
GetAllTagsCommand.url = api_1.REST_API.USERS.TAGS.GET;
|
10
10
|
GetAllTagsCommand.TSQ_url = GetAllTagsCommand.url;
|
11
11
|
GetAllTagsCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.USERS_ROUTES.TAGS.GET, 'get', 'Get all existing user tags');
|
12
12
|
GetAllTagsCommand.ResponseSchema = zod_1.z.object({
|
@@ -6,7 +6,7 @@ const constants_1 = require("../../../constants");
|
|
6
6
|
const api_1 = require("../../../api");
|
7
7
|
var GetAllTagsCommand;
|
8
8
|
(function (GetAllTagsCommand) {
|
9
|
-
GetAllTagsCommand.url = api_1.REST_API.USERS.GET;
|
9
|
+
GetAllTagsCommand.url = api_1.REST_API.USERS.TAGS.GET;
|
10
10
|
GetAllTagsCommand.TSQ_url = GetAllTagsCommand.url;
|
11
11
|
GetAllTagsCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.USERS_ROUTES.TAGS.GET, 'get', 'Get all existing user tags');
|
12
12
|
GetAllTagsCommand.ResponseSchema = zod_1.z.object({
|