@marcoappio/marco-config 2.0.556 → 2.0.558
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/constants/deepLinking.d.ts +4 -0
- package/dist/constants/deepLinking.d.ts.map +1 -0
- package/dist/constants/deepLinking.js +3 -0
- package/dist/constants/index.d.ts +3 -0
- package/dist/constants/index.d.ts.map +1 -1
- package/dist/constants/index.js +2 -0
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/models/user.d.ts +1 -1
- package/dist/schemas/models/user.js +1 -1
- package/dist/sdk/endpoints/private/models/user/getUser.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deepLinking.d.ts","sourceRoot":"","sources":["../../src/constants/deepLinking.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;CAEd,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ1B,CAAA"}
|
package/dist/constants/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { api } from './api';
|
|
2
|
+
import { deepLinking } from './deepLinking';
|
|
2
3
|
import { emailAccounts } from './emailAccounts';
|
|
3
4
|
import { emailProvider } from './emailProvider';
|
|
4
5
|
import { messages } from './messages';
|
|
@@ -6,6 +7,7 @@ import { oauth } from './oauth';
|
|
|
6
7
|
import { user } from './user';
|
|
7
8
|
export const marcoConstants = {
|
|
8
9
|
api,
|
|
10
|
+
deepLinking,
|
|
9
11
|
emailAccounts,
|
|
10
12
|
emailProvider,
|
|
11
13
|
messages,
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -350,7 +350,7 @@ export declare const marcoSchemas: {
|
|
|
350
350
|
}, undefined>, undefined>;
|
|
351
351
|
readonly subscriptionTier: import("valibot").NullableSchema<import("valibot").PicklistSchema<readonly ["tier1"], undefined>, undefined>;
|
|
352
352
|
}, undefined>, undefined>, undefined>;
|
|
353
|
-
readonly trialEndsAt: import("valibot").
|
|
353
|
+
readonly trialEndsAt: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
354
354
|
readonly undoSendEnabled: import("valibot").BooleanSchema<undefined>;
|
|
355
355
|
readonly views: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
356
356
|
readonly aliasEmails: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
@@ -61,7 +61,7 @@ export declare const userSchema: v.ObjectSchema<{
|
|
|
61
61
|
}, undefined>, undefined>;
|
|
62
62
|
readonly subscriptionTier: v.NullableSchema<v.PicklistSchema<readonly ["tier1"], undefined>, undefined>;
|
|
63
63
|
}, undefined>, undefined>, undefined>;
|
|
64
|
-
readonly trialEndsAt: v.
|
|
64
|
+
readonly trialEndsAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
65
65
|
readonly undoSendEnabled: v.BooleanSchema<undefined>;
|
|
66
66
|
readonly views: v.ArraySchema<v.ObjectSchema<{
|
|
67
67
|
readonly aliasEmails: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
@@ -21,7 +21,7 @@ export const userSchema = v.object({
|
|
|
21
21
|
profilePicture: string.nullable(),
|
|
22
22
|
pushNotificationTokens: v.array(userPushNotificationTokenSchema),
|
|
23
23
|
stripe: v.optional(stripeUserDataSchema),
|
|
24
|
-
trialEndsAt: number.
|
|
24
|
+
trialEndsAt: number.nullable(),
|
|
25
25
|
undoSendEnabled: v.boolean(),
|
|
26
26
|
views: v.array(userViewSchema),
|
|
27
27
|
});
|
|
@@ -60,7 +60,7 @@ export declare const getUser: import("../../../../..").EndpointConfig<"/v1/pv/mo
|
|
|
60
60
|
}, undefined>, undefined>;
|
|
61
61
|
readonly subscriptionTier: v.NullableSchema<v.PicklistSchema<readonly ["tier1"], undefined>, undefined>;
|
|
62
62
|
}, undefined>, undefined>, undefined>;
|
|
63
|
-
readonly trialEndsAt: v.
|
|
63
|
+
readonly trialEndsAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
64
64
|
readonly undoSendEnabled: v.BooleanSchema<undefined>;
|
|
65
65
|
readonly views: v.ArraySchema<v.ObjectSchema<{
|
|
66
66
|
readonly aliasEmails: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|