@logto/cloud 0.2.5-1116646 → 0.2.5-31703ea
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/routes/index.d.ts +1 -7
- package/package.json +1 -1
package/build/routes/index.d.ts
CHANGED
|
@@ -36,12 +36,6 @@ declare enum VerificationCodeType {
|
|
|
36
36
|
/** @deprecated Use `Generic` type template for sending test sms/email use case */
|
|
37
37
|
Test = "Test"
|
|
38
38
|
}
|
|
39
|
-
declare enum ProductType {
|
|
40
|
-
FlatRate = "FlatRate",
|
|
41
|
-
Tier1 = "tier1",
|
|
42
|
-
Tier2 = "tier2",
|
|
43
|
-
Tier3 = "tier3"
|
|
44
|
-
}
|
|
45
39
|
declare const _default: import("@withtyped/server").Router<WithAuthContext, import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").MergeRoutes<import("@withtyped/server").BaseRoutes, import("@withtyped/server").RoutesWithPrefix<{
|
|
46
40
|
options: {};
|
|
47
41
|
patch: {
|
|
@@ -126,9 +120,9 @@ declare const _default: import("@withtyped/server").Router<WithAuthContext, impo
|
|
|
126
120
|
name: string;
|
|
127
121
|
products: {
|
|
128
122
|
description?: string | undefined;
|
|
123
|
+
type: "flat" | "tier1" | "tier2" | "tier3";
|
|
129
124
|
id: string;
|
|
130
125
|
name: string;
|
|
131
|
-
type: ProductType;
|
|
132
126
|
price: {
|
|
133
127
|
quantity?: 1 | undefined;
|
|
134
128
|
unitAmount?: number | null | undefined;
|