@glissandoo/lib 1.108.2 → 1.108.4

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.
@@ -106,7 +106,6 @@ export declare enum FbFunctionName {
106
106
  GroupSendInvitationEmail = "group-sendInvitationEmail",
107
107
  MetricsWeekly = "metrics-week",
108
108
  MiscAddSubscriber = "misc-addSubscriber",
109
- MiscHandleActiveCampaignAutomationContacts = "misc-handleActiveCampaignAutomationContacts",
110
109
  MiscScheduledFirestoreExport = "misc-scheduledFirestoreExport",
111
110
  MiscValidateUsername = "misc-validateUsername",
112
111
  NotificationMarkAllAsReaded = "notification-markAllAsReaded",
@@ -179,7 +178,8 @@ export declare enum FbFunctionName {
179
178
  InventoryAddType = "inventory-addType",
180
179
  InventoryDeleteType = "inventory-deleteType",
181
180
  InventoryMerge = "inventory-merge",
181
+ InventoryFileExport = "inventory-fileExport",
182
182
  InventoryItemAdd = "inventoryItem-add",
183
- InventoryItemDelete = "inventoryItem-delete",
183
+ InventoryItemDelete = "inventoryItem-remove",
184
184
  InventoryItemEdit = "inventoryItem-edit"
185
185
  }
@@ -110,7 +110,6 @@ var FbFunctionName;
110
110
  FbFunctionName["GroupSendInvitationEmail"] = "group-sendInvitationEmail";
111
111
  FbFunctionName["MetricsWeekly"] = "metrics-week";
112
112
  FbFunctionName["MiscAddSubscriber"] = "misc-addSubscriber";
113
- FbFunctionName["MiscHandleActiveCampaignAutomationContacts"] = "misc-handleActiveCampaignAutomationContacts";
114
113
  FbFunctionName["MiscScheduledFirestoreExport"] = "misc-scheduledFirestoreExport";
115
114
  FbFunctionName["MiscValidateUsername"] = "misc-validateUsername";
116
115
  FbFunctionName["NotificationMarkAllAsReaded"] = "notification-markAllAsReaded";
@@ -184,7 +183,8 @@ var FbFunctionName;
184
183
  FbFunctionName["InventoryAddType"] = "inventory-addType";
185
184
  FbFunctionName["InventoryDeleteType"] = "inventory-deleteType";
186
185
  FbFunctionName["InventoryMerge"] = "inventory-merge";
186
+ FbFunctionName["InventoryFileExport"] = "inventory-fileExport";
187
187
  FbFunctionName["InventoryItemAdd"] = "inventoryItem-add";
188
- FbFunctionName["InventoryItemDelete"] = "inventoryItem-delete";
188
+ FbFunctionName["InventoryItemDelete"] = "inventoryItem-remove";
189
189
  FbFunctionName["InventoryItemEdit"] = "inventoryItem-edit";
190
190
  })(FbFunctionName = exports.FbFunctionName || (exports.FbFunctionName = {}));
@@ -19,4 +19,11 @@ export declare namespace InventoryFbFunctionsTypes {
19
19
  targetGroupId: string;
20
20
  }
21
21
  type MergeResult = void;
22
+ type FileExportParams = {
23
+ inventoryId: string;
24
+ groupId: string;
25
+ };
26
+ type FileExportResult = {
27
+ url: string;
28
+ };
22
29
  }
@@ -117,7 +117,6 @@ const regionByFunctions = {
117
117
  [index_1.FbFunctionName.GroupSendInvitationEmail]: GCloudRegions.EuropeWest6,
118
118
  [index_1.FbFunctionName.MetricsWeekly]: GCloudRegions.EuropeWest6,
119
119
  [index_1.FbFunctionName.MiscAddSubscriber]: GCloudRegions.EuropeWest6,
120
- [index_1.FbFunctionName.MiscHandleActiveCampaignAutomationContacts]: GCloudRegions.EuropeWest6,
121
120
  [index_1.FbFunctionName.MiscScheduledFirestoreExport]: GCloudRegions.EuropeWest6,
122
121
  [index_1.FbFunctionName.MiscValidateUsername]: GCloudRegions.UsCentral1,
123
122
  [index_1.FbFunctionName.NotificationMarkAllAsReaded]: GCloudRegions.UsCentral1,
@@ -190,6 +189,7 @@ const regionByFunctions = {
190
189
  [index_1.FbFunctionName.WebhookStripe]: GCloudRegions.EuropeWest6,
191
190
  [index_1.FbFunctionName.InventoryAddType]: GCloudRegions.EuropeWest6,
192
191
  [index_1.FbFunctionName.InventoryDeleteType]: GCloudRegions.EuropeWest6,
192
+ [index_1.FbFunctionName.InventoryFileExport]: GCloudRegions.EuropeWest6,
193
193
  [index_1.FbFunctionName.InventoryMerge]: GCloudRegions.EuropeWest6,
194
194
  [index_1.FbFunctionName.InventoryItemAdd]: GCloudRegions.EuropeWest6,
195
195
  [index_1.FbFunctionName.InventoryItemDelete]: GCloudRegions.EuropeWest6,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.108.2",
3
+ "version": "1.108.4",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",