@capivv/mcp-server 0.5.25 → 0.5.26
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/tools/create-product.js +4 -0
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
|
@@ -52,6 +52,10 @@ export function registerCreateProductTool(server, client) {
|
|
|
52
52
|
.boolean()
|
|
53
53
|
.optional()
|
|
54
54
|
.describe('When true (default), opts the subscription into new Apple territories automatically as Apple adds them. SaaS-friendly default.'),
|
|
55
|
+
apple_review_note: z
|
|
56
|
+
.string()
|
|
57
|
+
.optional()
|
|
58
|
+
.describe('Text written to Apple\'s "App Review Notes" field on the subscription / IAP. Optional — when omitted Capivv writes a sensible default ("This product grants the user the X entitlement..."). Override when App Review needs explicit testing instructions (e.g. a demo account, a way to skip past a paywall).'),
|
|
55
59
|
}, async (args) => {
|
|
56
60
|
const { skip_store_write, ...rest } = args;
|
|
57
61
|
const product = await client.createProduct({
|
package/dist/types.d.ts
CHANGED
|
@@ -262,6 +262,14 @@ export interface CreateProductRequest {
|
|
|
262
262
|
* adds them. Defaults to true.
|
|
263
263
|
*/
|
|
264
264
|
apple_available_in_new_territories?: boolean;
|
|
265
|
+
/**
|
|
266
|
+
* V0.5.26 — text written to Apple's "App Review Notes" field on the
|
|
267
|
+
* subscription / IAP. Optional; when omitted Capivv generates a sensible
|
|
268
|
+
* default based on product_type + display_name. Override for products
|
|
269
|
+
* that need explicit testing instructions for the App Review team
|
|
270
|
+
* (e.g. a demo account, a way to skip past a paywall).
|
|
271
|
+
*/
|
|
272
|
+
apple_review_note?: string;
|
|
265
273
|
}
|
|
266
274
|
export interface Paywall {
|
|
267
275
|
id: string;
|