@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.
@@ -0,0 +1,4 @@
1
+ export declare const deepLinking: {
2
+ readonly redirectPath: "/v1/wh/deep-link";
3
+ };
4
+ //# sourceMappingURL=deepLinking.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deepLinking.d.ts","sourceRoot":"","sources":["../../src/constants/deepLinking.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;CAEd,CAAA"}
@@ -0,0 +1,3 @@
1
+ export const deepLinking = {
2
+ redirectPath: '/v1/wh/deep-link',
3
+ };
@@ -7,6 +7,9 @@ export declare const marcoConstants: {
7
7
  MAX_PAYLOAD_BYTES: number;
8
8
  };
9
9
  };
10
+ deepLinking: {
11
+ readonly redirectPath: "/v1/wh/deep-link";
12
+ };
10
13
  emailAccounts: {
11
14
  defaultColors: string[];
12
15
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO1B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQ1B,CAAA"}
@@ -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,
@@ -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").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
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.NonOptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
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.positiveInteger(),
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.NonOptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcoappio/marco-config",
3
- "version": "2.0.556",
3
+ "version": "2.0.558",
4
4
  "author": "team@marcoapp.io",
5
5
  "main": "dist/index.js",
6
6
  "repository": "git@github.com:marcoappio/marco-config.git",