@wix/auto_sdk_calendar_events 1.0.78 → 1.0.79
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +6 -4
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +6 -4
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +6 -4
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +6 -4
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -956,6 +956,11 @@ interface Properties {
|
|
|
956
956
|
externalSiteUrl?: string | null;
|
|
957
957
|
/** Track clicks analytics. */
|
|
958
958
|
trackClicksAnalytics?: boolean;
|
|
959
|
+
/**
|
|
960
|
+
* Company ID issued to the business by local authorities. Appears on invoices and price quotes.
|
|
961
|
+
* @maxLength 50
|
|
962
|
+
*/
|
|
963
|
+
companyId?: string | null;
|
|
959
964
|
}
|
|
960
965
|
interface Categories {
|
|
961
966
|
/** Primary site category. */
|
|
@@ -2512,10 +2517,7 @@ type EventQuery = {
|
|
|
2512
2517
|
declare const utils: {
|
|
2513
2518
|
query: {
|
|
2514
2519
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Event, EventQuerySpec, EventQuery>;
|
|
2515
|
-
Filter: _wix_sdk_types.FilterFactory<Event, EventQuerySpec>;
|
|
2516
|
-
* ID of a site visitor that has not logged in to the site.
|
|
2517
|
-
* @format GUID
|
|
2518
|
-
*/
|
|
2520
|
+
Filter: _wix_sdk_types.FilterFactory<Event, EventQuerySpec>;
|
|
2519
2521
|
Sort: _wix_sdk_types.SortFactory<EventQuerySpec>;
|
|
2520
2522
|
};
|
|
2521
2523
|
};
|