@flexprice/mcp-server 2.0.13 → 2.0.15
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/bin/mcp-server.js +8 -5
- package/bin/mcp-server.js.map +6 -6
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/subscriptionfilter.d.ts +1 -0
- package/esm/models/subscriptionfilter.d.ts.map +1 -1
- package/esm/models/subscriptionfilter.js +1 -0
- package/esm/models/subscriptionfilter.js.map +1 -1
- package/esm/tsconfig.tsbuildinfo +1 -1
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/subscriptionfilter.ts +4 -0
package/manifest.json
CHANGED
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -69,8 +69,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
69
69
|
export const SDK_METADATA = {
|
|
70
70
|
language: "typescript",
|
|
71
71
|
openapiDocVersion: "1.0",
|
|
72
|
-
sdkVersion: "2.0.
|
|
72
|
+
sdkVersion: "2.0.15",
|
|
73
73
|
genVersion: "2.879.1",
|
|
74
74
|
userAgent:
|
|
75
|
-
"speakeasy-sdk/mcp-typescript 2.0.
|
|
75
|
+
"speakeasy-sdk/mcp-typescript 2.0.15 2.879.1 1.0 @flexprice/mcp-server",
|
|
76
76
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -35,6 +35,7 @@ export type SubscriptionFilter = {
|
|
|
35
35
|
billing_cadence?: Array<BillingCadence> | undefined;
|
|
36
36
|
billing_period?: Array<BillingPeriod> | undefined;
|
|
37
37
|
customer_id?: string | undefined;
|
|
38
|
+
effective_date_for_update?: string | undefined;
|
|
38
39
|
end_time?: string | undefined;
|
|
39
40
|
expand?: string | undefined;
|
|
40
41
|
external_customer_id?: string | undefined;
|
|
@@ -67,6 +68,9 @@ export const SubscriptionFilter$zodSchema: z.ZodType<SubscriptionFilter> = z
|
|
|
67
68
|
customer_id: z.string().optional().describe(
|
|
68
69
|
"CustomerID filters by customer ID",
|
|
69
70
|
),
|
|
71
|
+
effective_date_for_update: z.string().optional().describe(
|
|
72
|
+
"EffectiveDateForUpdate selects subscriptions that need a billing-period pass on or before this time:\ncurrent_period_end <= date OR (cancel_at IS NOT NULL AND cancel_at <= date).\nWhen nil, period/cancel cutoff logic is not applied by this field (see TimeRangeFilter for legacy period-end filtering).",
|
|
73
|
+
),
|
|
70
74
|
end_time: z.string().optional(),
|
|
71
75
|
expand: z.string().optional(),
|
|
72
76
|
external_customer_id: z.string().optional().describe(
|