@blazeo.com/calendar-client 1.0.46 → 1.0.47
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.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1926,6 +1926,7 @@ var CompanyModel = import_mobx_state_tree15.types.model("Company", {
|
|
|
1926
1926
|
companyName: import_mobx_state_tree15.types.optional(import_mobx_state_tree15.types.string, ""),
|
|
1927
1927
|
purchasedPhone: import_mobx_state_tree15.types.optional(import_mobx_state_tree15.types.string, ""),
|
|
1928
1928
|
purchasedPhoneStatus: import_mobx_state_tree15.types.optional(import_mobx_state_tree15.types.number, 0),
|
|
1929
|
+
purchasedPhoneOn: import_mobx_state_tree15.types.optional(import_mobx_state_tree15.types.maybeNull(import_mobx_state_tree15.types.string), null),
|
|
1929
1930
|
createdOn: import_mobx_state_tree15.types.optional(import_mobx_state_tree15.types.maybeNull(import_mobx_state_tree15.types.string), null),
|
|
1930
1931
|
modifiedOn: import_mobx_state_tree15.types.optional(import_mobx_state_tree15.types.maybeNull(import_mobx_state_tree15.types.string), null)
|
|
1931
1932
|
}).actions((self) => {
|
|
@@ -1955,6 +1956,7 @@ function mapFromApi4(d) {
|
|
|
1955
1956
|
companyName: pick2("companyName", "CompanyName", "company_name") ?? "",
|
|
1956
1957
|
purchasedPhone: pick2("purchasedPhone", "PurchasedPhone", "purchased_phone") ?? "",
|
|
1957
1958
|
purchasedPhoneStatus: pick2("purchasedPhoneStatus", "PurchasedPhoneStatus", "purchased_phone_status") ?? 0,
|
|
1959
|
+
purchasedPhoneOn: pick2("purchasedPhoneOn", "PurchasedPhoneOn", "purchased_phone_on") ?? null,
|
|
1958
1960
|
createdOn: pick2("createdOn", "CreatedOn", "created_on") ?? null,
|
|
1959
1961
|
modifiedOn: pick2("modifiedOn", "ModifiedOn", "modified_on") ?? null
|
|
1960
1962
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1851,6 +1851,7 @@ var CompanyModel = types15.model("Company", {
|
|
|
1851
1851
|
companyName: types15.optional(types15.string, ""),
|
|
1852
1852
|
purchasedPhone: types15.optional(types15.string, ""),
|
|
1853
1853
|
purchasedPhoneStatus: types15.optional(types15.number, 0),
|
|
1854
|
+
purchasedPhoneOn: types15.optional(types15.maybeNull(types15.string), null),
|
|
1854
1855
|
createdOn: types15.optional(types15.maybeNull(types15.string), null),
|
|
1855
1856
|
modifiedOn: types15.optional(types15.maybeNull(types15.string), null)
|
|
1856
1857
|
}).actions((self) => {
|
|
@@ -1880,6 +1881,7 @@ function mapFromApi4(d) {
|
|
|
1880
1881
|
companyName: pick2("companyName", "CompanyName", "company_name") ?? "",
|
|
1881
1882
|
purchasedPhone: pick2("purchasedPhone", "PurchasedPhone", "purchased_phone") ?? "",
|
|
1882
1883
|
purchasedPhoneStatus: pick2("purchasedPhoneStatus", "PurchasedPhoneStatus", "purchased_phone_status") ?? 0,
|
|
1884
|
+
purchasedPhoneOn: pick2("purchasedPhoneOn", "PurchasedPhoneOn", "purchased_phone_on") ?? null,
|
|
1883
1885
|
createdOn: pick2("createdOn", "CreatedOn", "created_on") ?? null,
|
|
1884
1886
|
modifiedOn: pick2("modifiedOn", "ModifiedOn", "modified_on") ?? null
|
|
1885
1887
|
};
|