@comet/brevo-admin 3.1.1-canary-20250424130022 → 3.1.1-canary-20250512122412

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.
@@ -8,6 +8,7 @@ export type GQLStartBrevoContactImportMutationVariables = Types.Exact<{
8
8
  scope: Types.GQLEmailCampaignContentScopeInput;
9
9
  fileId: Types.Scalars['ID'];
10
10
  sendDoubleOptIn: Types.Scalars['Boolean'];
11
+ targetGroupIds?: Types.InputMaybe<Array<Types.Scalars['ID']> | Types.Scalars['ID']>;
11
12
  }>;
12
13
  export type GQLStartBrevoContactImportMutation = {
13
14
  __typename?: 'Mutation';
@@ -1 +1 @@
1
- {"version":3,"file":"useContactImportFromCsv.gql.generated.d.ts","sourceRoot":"","sources":["../../../src/common/contactImport/useContactImportFromCsv.gql.generated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAC;AAEjD,eAAO,MAAM,eAAe;;;;CAI3B,CAAA;AACD,MAAM,MAAM,2CAA2C,GAAG,KAAK,CAAC,KAAK,CAAC;IACpE,KAAK,EAAE,KAAK,CAAC,iCAAiC,CAAC;IAC/C,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC5B,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;CAC3C,CAAC,CAAC;AAGH,MAAM,MAAM,kCAAkC,GAAG;IAAE,UAAU,CAAC,EAAE,UAAU,CAAC;IAAC,uBAAuB,EAAE;QAAE,UAAU,CAAC,EAAE,sBAAsB,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;QAAC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"useContactImportFromCsv.gql.generated.d.ts","sourceRoot":"","sources":["../../../src/common/contactImport/useContactImportFromCsv.gql.generated.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAC;AAEjD,eAAO,MAAM,eAAe;;;;CAI3B,CAAA;AACD,MAAM,MAAM,2CAA2C,GAAG,KAAK,CAAC,KAAK,CAAC;IACpE,KAAK,EAAE,KAAK,CAAC,iCAAiC,CAAC;IAC/C,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC5B,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAC1C,cAAc,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC;CACrF,CAAC,CAAC;AAGH,MAAM,MAAM,kCAAkC,GAAG;IAAE,UAAU,CAAC,EAAE,UAAU,CAAC;IAAC,uBAAuB,EAAE;QAAE,UAAU,CAAC,EAAE,sBAAsB,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;QAAC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAA;CAAE,CAAC"}
@@ -7,4 +7,4 @@ exports.startBrevoContactImportMutation = void 0;
7
7
  var _client = require("@apollo/client");
8
8
  var _templateObject;
9
9
  function _taggedTemplateLiteral(e, t) { return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } })); }
10
- var startBrevoContactImportMutation = exports.startBrevoContactImportMutation = (0, _client.gql)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n mutation StartBrevoContactImport($scope: EmailCampaignContentScopeInput!, $fileId: ID!, $sendDoubleOptIn: Boolean!) {\n startBrevoContactImport(scope: $scope, fileId: $fileId, sendDoubleOptIn: $sendDoubleOptIn) {\n created\n updated\n failed\n failedColumns\n errorMessage\n }\n }\n"])));
10
+ var startBrevoContactImportMutation = exports.startBrevoContactImportMutation = (0, _client.gql)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n mutation StartBrevoContactImport($scope: EmailCampaignContentScopeInput!, $fileId: ID!, $sendDoubleOptIn: Boolean!, $targetGroupIds: [ID!]) {\n startBrevoContactImport(scope: $scope, fileId: $fileId, sendDoubleOptIn: $sendDoubleOptIn, targetGroupIds: $targetGroupIds) {\n created\n updated\n failed\n failedColumns\n errorMessage\n }\n }\n"])));
@@ -206,7 +206,8 @@ var ContactImportComponent = function ContactImportComponent(_ref3) {
206
206
  variables: {
207
207
  fileId: fileUploadId,
208
208
  scope: scope,
209
- sendDoubleOptIn: sendDoubleOptIn
209
+ sendDoubleOptIn: sendDoubleOptIn,
210
+ targetGroupIds: listIds
210
211
  }
211
212
  });
212
213
  case 12:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/brevo-admin",
3
- "version": "3.1.1-canary-20250424130022",
3
+ "version": "3.1.1-canary-20250512122412",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/vivid-planet/comet-brevo-module/",