@remnawave/backend-contract 2.3.17 → 2.3.18
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/external-squads/actions/reorder.command.d.ts +72 -48
- package/build/backend/commands/external-squads/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/create-external-squad.command.d.ts +43 -29
- package/build/backend/commands/external-squads/create-external-squad.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/get-external-squad-by-uuid.command.d.ts +43 -29
- package/build/backend/commands/external-squads/get-external-squad-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/get-external-squads.command.d.ts +57 -39
- package/build/backend/commands/external-squads/get-external-squads.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/update-external-squad.command.d.ts +72 -48
- package/build/backend/commands/external-squads/update-external-squad.command.d.ts.map +1 -1
- package/build/backend/commands/external-squads/update-external-squad.command.js +1 -1
- package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts +47 -15
- package/build/backend/commands/subscription-settings/get-subscription-settings.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts +81 -25
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-settings/update-subscription-settings.command.js +2 -4
- package/build/backend/models/external-squad.schema.d.ts +29 -19
- package/build/backend/models/external-squad.schema.d.ts.map +1 -1
- package/build/backend/models/external-squad.schema.js +3 -3
- package/build/backend/models/external-squads/index.d.ts +0 -1
- package/build/backend/models/external-squads/index.d.ts.map +1 -1
- package/build/backend/models/external-squads/index.js +0 -1
- package/build/backend/models/subscription-settings/custom-remarks.schema.d.ts +22 -0
- package/build/backend/models/subscription-settings/custom-remarks.schema.d.ts.map +1 -0
- package/build/backend/models/subscription-settings/custom-remarks.schema.js +14 -0
- package/build/backend/models/subscription-settings/index.d.ts +1 -0
- package/build/backend/models/subscription-settings/index.d.ts.map +1 -1
- package/build/backend/models/subscription-settings/index.js +1 -0
- package/build/backend/models/subscription-settings.schema.d.ts +33 -9
- package/build/backend/models/subscription-settings.schema.d.ts.map +1 -1
- package/build/backend/models/subscription-settings.schema.js +2 -3
- package/build/frontend/commands/external-squads/update-external-squad.command.js +1 -1
- package/build/frontend/commands/subscription-settings/update-subscription-settings.command.js +2 -4
- package/build/frontend/models/external-squad.schema.js +3 -3
- package/build/frontend/models/external-squads/index.js +0 -1
- package/build/frontend/models/subscription-settings/custom-remarks.schema.js +14 -0
- package/build/frontend/models/subscription-settings/index.js +1 -0
- package/build/frontend/models/subscription-settings.schema.js +2 -3
- package/package.json +1 -1
- package/build/backend/models/external-squads/external-squad-custom-remarks.schema.d.ts +0 -16
- package/build/backend/models/external-squads/external-squad-custom-remarks.schema.d.ts.map +0 -1
- package/build/backend/models/external-squads/external-squad-custom-remarks.schema.js +0 -12
- package/build/frontend/models/external-squads/external-squad-custom-remarks.schema.js +0 -12
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import z from 'zod';
|
|
2
|
-
export declare const ExternalSquadCustomRemarksSchema: z.ZodObject<{
|
|
3
|
-
expiredUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
|
4
|
-
limitedUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
|
5
|
-
disabledUsersRemarks: z.ZodArray<z.ZodString, "many">;
|
|
6
|
-
}, "strip", z.ZodTypeAny, {
|
|
7
|
-
expiredUsersRemarks: string[];
|
|
8
|
-
limitedUsersRemarks: string[];
|
|
9
|
-
disabledUsersRemarks: string[];
|
|
10
|
-
}, {
|
|
11
|
-
expiredUsersRemarks: string[];
|
|
12
|
-
limitedUsersRemarks: string[];
|
|
13
|
-
disabledUsersRemarks: string[];
|
|
14
|
-
}>;
|
|
15
|
-
export type TExternalSquadCustomRemarks = z.infer<typeof ExternalSquadCustomRemarksSchema>;
|
|
16
|
-
//# sourceMappingURL=external-squad-custom-remarks.schema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"external-squad-custom-remarks.schema.d.ts","sourceRoot":"","sources":["../../../../models/external-squads/external-squad-custom-remarks.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;EAI3C,CAAC;AAEH,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.ExternalSquadCustomRemarksSchema = void 0;
|
|
7
|
-
const zod_1 = __importDefault(require("zod"));
|
|
8
|
-
exports.ExternalSquadCustomRemarksSchema = zod_1.default.object({
|
|
9
|
-
expiredUsersRemarks: zod_1.default.array(zod_1.default.string()),
|
|
10
|
-
limitedUsersRemarks: zod_1.default.array(zod_1.default.string()),
|
|
11
|
-
disabledUsersRemarks: zod_1.default.array(zod_1.default.string()),
|
|
12
|
-
});
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.ExternalSquadCustomRemarksSchema = void 0;
|
|
7
|
-
const zod_1 = __importDefault(require("zod"));
|
|
8
|
-
exports.ExternalSquadCustomRemarksSchema = zod_1.default.object({
|
|
9
|
-
expiredUsersRemarks: zod_1.default.array(zod_1.default.string()),
|
|
10
|
-
limitedUsersRemarks: zod_1.default.array(zod_1.default.string()),
|
|
11
|
-
disabledUsersRemarks: zod_1.default.array(zod_1.default.string()),
|
|
12
|
-
});
|