@talkplay/shared-types 1.0.30 → 1.0.32
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/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -207,7 +207,7 @@ declare const LeadStatusTranslationsEnum: {
|
|
|
207
207
|
type LeadStatusTranslationsEnum = Enum<typeof LeadStatusTranslationsEnum>;
|
|
208
208
|
|
|
209
209
|
declare const LeadTypesEnum: {
|
|
210
|
-
readonly SIGNUP: "
|
|
210
|
+
readonly SIGNUP: "SIGNUP";
|
|
211
211
|
readonly LANDING_PAGE: "LANDING_PAGE";
|
|
212
212
|
};
|
|
213
213
|
type LeadTypesEnum = Enum<typeof LeadTypesEnum>;
|
|
@@ -834,10 +834,10 @@ type UpdateSignupLeadPayload = {
|
|
|
834
834
|
notes?: string;
|
|
835
835
|
};
|
|
836
836
|
type UpdateLandingPageLeadPayload = UpdateSignupLeadPayload & {
|
|
837
|
-
directorName
|
|
838
|
-
radioFantasyName
|
|
839
|
-
radioComercialEmail
|
|
840
|
-
radioFinancialEmail
|
|
837
|
+
directorName?: string;
|
|
838
|
+
radioFantasyName?: string;
|
|
839
|
+
radioComercialEmail?: string;
|
|
840
|
+
radioFinancialEmail?: string;
|
|
841
841
|
};
|
|
842
842
|
|
|
843
843
|
type EpisodeCreatedEvt = {};
|
package/dist/index.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ declare const LeadStatusTranslationsEnum: {
|
|
|
207
207
|
type LeadStatusTranslationsEnum = Enum<typeof LeadStatusTranslationsEnum>;
|
|
208
208
|
|
|
209
209
|
declare const LeadTypesEnum: {
|
|
210
|
-
readonly SIGNUP: "
|
|
210
|
+
readonly SIGNUP: "SIGNUP";
|
|
211
211
|
readonly LANDING_PAGE: "LANDING_PAGE";
|
|
212
212
|
};
|
|
213
213
|
type LeadTypesEnum = Enum<typeof LeadTypesEnum>;
|
|
@@ -834,10 +834,10 @@ type UpdateSignupLeadPayload = {
|
|
|
834
834
|
notes?: string;
|
|
835
835
|
};
|
|
836
836
|
type UpdateLandingPageLeadPayload = UpdateSignupLeadPayload & {
|
|
837
|
-
directorName
|
|
838
|
-
radioFantasyName
|
|
839
|
-
radioComercialEmail
|
|
840
|
-
radioFinancialEmail
|
|
837
|
+
directorName?: string;
|
|
838
|
+
radioFantasyName?: string;
|
|
839
|
+
radioComercialEmail?: string;
|
|
840
|
+
radioFinancialEmail?: string;
|
|
841
841
|
};
|
|
842
842
|
|
|
843
843
|
type EpisodeCreatedEvt = {};
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED