@nimee/shared-types 1.0.151 → 1.0.152

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.
@@ -5,6 +5,12 @@ export interface IAutomationParamsUserCheckedInToEvent {
5
5
  eventId?: string;
6
6
  actionType: IAutomationAction;
7
7
  }
8
+ export interface IAutomationParamsCreateGroup {
9
+ ids: string[];
10
+ groupName: string;
11
+ marketplaceId: string;
12
+ sellerId: string;
13
+ }
8
14
  export declare enum IAutomationProvider {
9
15
  INFORU = "inforu",
10
16
  NIMI = "nimi"
@@ -15,5 +21,6 @@ export declare enum IAutomationAction {
15
21
  endUserCanceledEvent = "endUserCanceledEvent",
16
22
  endUserCanceledSeasonTicket = "endUserCanceledSeasonTicket",
17
23
  endUserCheckedInToEvent = "endUserCheckedInToEvent",
18
- endUserCheckedInToPlace = "endUserCheckedInToPlace"
24
+ endUserCheckedInToPlace = "endUserCheckedInToPlace",
25
+ syncGroup = "syncGroup"
19
26
  }
@@ -14,5 +14,6 @@ var IAutomationAction;
14
14
  IAutomationAction["endUserCanceledSeasonTicket"] = "endUserCanceledSeasonTicket";
15
15
  IAutomationAction["endUserCheckedInToEvent"] = "endUserCheckedInToEvent";
16
16
  IAutomationAction["endUserCheckedInToPlace"] = "endUserCheckedInToPlace";
17
+ IAutomationAction["syncGroup"] = "syncGroup";
17
18
  })(IAutomationAction || (exports.IAutomationAction = IAutomationAction = {}));
18
19
  //# sourceMappingURL=automation.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"automation.js","sourceRoot":"","sources":["../../src/crm/automation.ts"],"names":[],"mappings":";;;AAOA,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC7B,wCAAiB,CAAA;IACjB,oCAAa,CAAA;AACf,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B;AACD,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAC3B,8DAAyC,CAAA;IACzC,4EAAuD,CAAA;IACvD,kEAA6C,CAAA;IAC7C,gFAA2D,CAAA;IAC3D,wEAAmD,CAAA;IACnD,wEAAmD,CAAA;AACrD,CAAC,EAPW,iBAAiB,iCAAjB,iBAAiB,QAO5B"}
1
+ {"version":3,"file":"automation.js","sourceRoot":"","sources":["../../src/crm/automation.ts"],"names":[],"mappings":";;;AAaA,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC7B,wCAAiB,CAAA;IACjB,oCAAa,CAAA;AACf,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B;AACD,IAAY,iBAQX;AARD,WAAY,iBAAiB;IAC3B,8DAAyC,CAAA;IACzC,4EAAuD,CAAA;IACvD,kEAA6C,CAAA;IAC7C,gFAA2D,CAAA;IAC3D,wEAAmD,CAAA;IACnD,wEAAmD,CAAA;IACnD,4CAAuB,CAAA;AACzB,CAAC,EARW,iBAAiB,iCAAjB,iBAAiB,QAQ5B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.151",
3
+ "version": "1.0.152",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -5,6 +5,12 @@ export interface IAutomationParamsUserCheckedInToEvent {
5
5
  eventId?: string;
6
6
  actionType: IAutomationAction;
7
7
  }
8
+ export interface IAutomationParamsCreateGroup {
9
+ ids: string[];
10
+ groupName: string;
11
+ marketplaceId: string;
12
+ sellerId: string;
13
+ }
8
14
  export enum IAutomationProvider {
9
15
  INFORU = "inforu",
10
16
  NIMI = "nimi",
@@ -16,4 +22,5 @@ export enum IAutomationAction {
16
22
  endUserCanceledSeasonTicket = "endUserCanceledSeasonTicket",
17
23
  endUserCheckedInToEvent = "endUserCheckedInToEvent",
18
24
  endUserCheckedInToPlace = "endUserCheckedInToPlace",
25
+ syncGroup = "syncGroup",
19
26
  }