Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dist/base/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,9 @@ var userTouchpointsSchemaSpec = markAsSchemaSpec({
esim_install_completed_at: timestampNullableOptional,
esim_first_package_activated_at: timestampNullableOptional,
esim_topped_up_at: timestampNullableOptional,
activation_initiated_at: timestampNullableOptional,
topup_initiated_at: timestampNullableOptional,
topup_checkout_at: timestampNullableOptional,
created_at: timestampRequired,
updated_at: timestampRequired,
created_by: { _type: "docRef", collection: USER_COLLECTION, nullable: true, optional: true },
Expand Down
2 changes: 1 addition & 1 deletion dist/base/index.cjs.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions dist/base/index.d.cts
Original file line number Diff line number Diff line change
Expand Up @@ -5548,6 +5548,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_first_package_activated_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_topped_up_at: z.ZodEffects<z.ZodDate, Date, Date>;
activation_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_checkout_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_at: z.ZodEffects<z.ZodDate, Date, Date>;
updated_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_by: z.ZodString;
Expand All @@ -5567,6 +5570,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}, {
Expand All @@ -5584,6 +5590,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}>;
Expand Down
9 changes: 9 additions & 0 deletions dist/base/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5548,6 +5548,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_first_package_activated_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_topped_up_at: z.ZodEffects<z.ZodDate, Date, Date>;
activation_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_checkout_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_at: z.ZodEffects<z.ZodDate, Date, Date>;
updated_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_by: z.ZodString;
Expand All @@ -5567,6 +5570,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}, {
Expand All @@ -5584,6 +5590,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}>;
Expand Down
3 changes: 3 additions & 0 deletions dist/base/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/base/index.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1141,6 +1141,9 @@ var userTouchpointsSchemaSpec = markAsSchemaSpec({
esim_install_completed_at: timestampNullableOptional,
esim_first_package_activated_at: timestampNullableOptional,
esim_topped_up_at: timestampNullableOptional,
activation_initiated_at: timestampNullableOptional,
topup_initiated_at: timestampNullableOptional,
topup_checkout_at: timestampNullableOptional,
created_at: timestampRequired,
updated_at: timestampRequired,
created_by: { _type: "docRef", collection: USER_COLLECTION, nullable: true, optional: true },
Expand Down
2 changes: 1 addition & 1 deletion dist/index.cjs.map

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions dist/index.d.cts
Original file line number Diff line number Diff line change
Expand Up @@ -1417,6 +1417,21 @@ declare const userTouchpointsSchemaSpec: {
nullable: boolean;
optional: boolean;
};
activation_initiated_at: {
_type: "timestamp";
nullable: boolean;
optional: boolean;
};
topup_initiated_at: {
_type: "timestamp";
nullable: boolean;
optional: boolean;
};
topup_checkout_at: {
_type: "timestamp";
nullable: boolean;
optional: boolean;
};
created_at: {
_type: "timestamp";
nullable: boolean;
Expand Down Expand Up @@ -7282,6 +7297,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_first_package_activated_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_topped_up_at: z.ZodEffects<z.ZodDate, Date, Date>;
activation_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_checkout_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_at: z.ZodEffects<z.ZodDate, Date, Date>;
updated_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_by: z.ZodString;
Expand All @@ -7301,6 +7319,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}, {
Expand All @@ -7318,6 +7339,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}>;
Expand Down
24 changes: 24 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1417,6 +1417,21 @@ declare const userTouchpointsSchemaSpec: {
nullable: boolean;
optional: boolean;
};
activation_initiated_at: {
_type: "timestamp";
nullable: boolean;
optional: boolean;
};
topup_initiated_at: {
_type: "timestamp";
nullable: boolean;
optional: boolean;
};
topup_checkout_at: {
_type: "timestamp";
nullable: boolean;
optional: boolean;
};
created_at: {
_type: "timestamp";
nullable: boolean;
Expand Down Expand Up @@ -7282,6 +7297,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_first_package_activated_at: z.ZodEffects<z.ZodDate, Date, Date>;
esim_topped_up_at: z.ZodEffects<z.ZodDate, Date, Date>;
activation_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_initiated_at: z.ZodEffects<z.ZodDate, Date, Date>;
topup_checkout_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_at: z.ZodEffects<z.ZodDate, Date, Date>;
updated_at: z.ZodEffects<z.ZodDate, Date, Date>;
created_by: z.ZodString;
Expand All @@ -7301,6 +7319,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}, {
Expand All @@ -7318,6 +7339,9 @@ declare const HUserTouchpointsSchema: z.ZodObject<{
esim_install_completed_at: Date;
esim_first_package_activated_at: Date;
esim_topped_up_at: Date;
activation_initiated_at: Date;
topup_initiated_at: Date;
topup_checkout_at: Date;
id?: string | null | undefined;
unique_device_identifier?: string | null | undefined;
}>;
Expand Down
3 changes: 3 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/specs/userTouchpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export const userTouchpointsSchemaSpec = markAsSchemaSpec({
esim_install_completed_at: timestampNullableOptional,
esim_first_package_activated_at: timestampNullableOptional,
esim_topped_up_at: timestampNullableOptional,
activation_initiated_at: timestampNullableOptional,
topup_initiated_at: timestampNullableOptional,
topup_checkout_at: timestampNullableOptional,
created_at: timestampRequired,
updated_at: timestampRequired,
created_by: { _type: 'docRef' as const, collection: USER_COLLECTION, nullable: true, optional: true },
Expand Down
Loading