@remnawave/backend-contract 2.3.52 → 2.3.53
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/subscription-page-configs/actions/reorder.command.d.ts +8 -2012
- package/build/backend/commands/subscription-page-configs/actions/reorder.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-page-configs/create-subpage-config.command.d.ts +5 -1082
- package/build/backend/commands/subscription-page-configs/create-subpage-config.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-page-configs/get-subpage-configs.command.d.ts +7 -1234
- package/build/backend/commands/subscription-page-configs/get-subpage-configs.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-page-configs/update-subpage-config.command.d.ts +8 -2012
- package/build/backend/commands/subscription-page-configs/update-subpage-config.command.d.ts.map +1 -1
- package/build/backend/commands/subscription-page-configs/update-subpage-config.command.js +3 -3
- package/build/backend/constants/subscription-page-config/index.d.ts +1 -0
- package/build/backend/constants/subscription-page-config/index.d.ts.map +1 -1
- package/build/backend/constants/subscription-page-config/index.js +1 -0
- package/build/backend/constants/subscription-page-config/subscription-page-template-keys.contant.d.ts +3 -0
- package/build/backend/constants/subscription-page-config/subscription-page-template-keys.contant.d.ts.map +1 -0
- package/build/backend/constants/subscription-page-config/subscription-page-template-keys.contant.js +4 -0
- package/build/backend/models/subscripion-page-config.schema.d.ts +3 -930
- package/build/backend/models/subscripion-page-config.schema.d.ts.map +1 -1
- package/build/backend/models/subscripion-page-config.schema.js +1 -2
- package/build/frontend/commands/subscription-page-configs/update-subpage-config.command.js +3 -3
- package/build/frontend/constants/subscription-page-config/index.js +1 -0
- package/build/frontend/constants/subscription-page-config/subscription-page-template-keys.contant.js +4 -0
- package/build/frontend/models/subscripion-page-config.schema.js +1 -2
- package/package.json +1 -1
package/build/backend/commands/subscription-page-configs/update-subpage-config.command.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-subpage-config.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-page-configs/update-subpage-config.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,mCAA4C,CAAC;IACtD,MAAM,OAAO,mCAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"update-subpage-config.command.d.ts","sourceRoot":"","sources":["../../../../commands/subscription-page-configs/update-subpage-config.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,mCAAmC,CAAC;IAC1C,MAAM,GAAG,mCAA4C,CAAC;IACtD,MAAM,OAAO,mCAAM,CAAC;IAEpB,MAAM,eAAe,2CAI3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;MAYxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAIzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.UpdateSubscriptionPageConfigCommand = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
-
const models_1 = require("../../models");
|
|
6
5
|
const api_1 = require("../../api");
|
|
6
|
+
const models_1 = require("../../models");
|
|
7
7
|
const constants_1 = require("../../constants");
|
|
8
8
|
var UpdateSubscriptionPageConfigCommand;
|
|
9
9
|
(function (UpdateSubscriptionPageConfigCommand) {
|
|
@@ -18,11 +18,11 @@ var UpdateSubscriptionPageConfigCommand;
|
|
|
18
18
|
.max(30, 'Name must be less than 30 characters')
|
|
19
19
|
.regex(/^[A-Za-z0-9_\s-]+$/, 'Name can only contain letters, numbers, underscores, dashes and spaces')
|
|
20
20
|
.optional(),
|
|
21
|
-
config: zod_1.z.optional(
|
|
21
|
+
config: zod_1.z.optional(zod_1.z.unknown()),
|
|
22
22
|
});
|
|
23
23
|
UpdateSubscriptionPageConfigCommand.ResponseSchema = zod_1.z.object({
|
|
24
24
|
response: models_1.SubscriptionPageConfigSchema.extend({
|
|
25
|
-
config:
|
|
25
|
+
config: zod_1.z.unknown(),
|
|
26
26
|
}),
|
|
27
27
|
});
|
|
28
28
|
})(UpdateSubscriptionPageConfigCommand || (exports.UpdateSubscriptionPageConfigCommand = UpdateSubscriptionPageConfigCommand = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../constants/subscription-page-config/index.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../constants/subscription-page-config/index.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAC;AACpD,cAAc,2CAA2C,CAAC"}
|
|
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./subscription-page-config.contants"), exports);
|
|
18
|
+
__exportStar(require("./subscription-page-template-keys.contant"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subscription-page-template-keys.contant.d.ts","sourceRoot":"","sources":["../../../../constants/subscription-page-config/subscription-page-template-keys.contant.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,+BAA+B,4CAA6C,CAAC;AAC1F,MAAM,MAAM,4BAA4B,GAAG,CAAC,OAAO,+BAA+B,CAAC,CAAC,MAAM,CAAC,CAAC"}
|