@vertikalx/vtx-backend-client 3.1.18-dev.3 → 3.1.20-dev.1

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.
@@ -2280,6 +2280,7 @@ export type MutationCreateAthleteMembershipAffilationArgs = {
2280
2280
  };
2281
2281
  export type MutationCreateBrandArgs = {
2282
2282
  input: CreateBrandDto;
2283
+ tenantId?: InputMaybe<Scalars['String']['input']>;
2283
2284
  };
2284
2285
  export type MutationCreateCityArgs = {
2285
2286
  input: CreateCityDto;
@@ -2323,6 +2324,7 @@ export type MutationCreateMembershipOrganizationArgs = {
2323
2324
  };
2324
2325
  export type MutationCreateOfferArgs = {
2325
2326
  input: CreateOfferDto;
2327
+ tenantId?: InputMaybe<Scalars['String']['input']>;
2326
2328
  };
2327
2329
  export type MutationCreateResetPasswordCodeArgs = {
2328
2330
  input: Scalars['String']['input'];
@@ -2637,6 +2639,7 @@ export type MutationUpdateAthleteIntegrationArgs = {
2637
2639
  export type MutationUpdateBrandArgs = {
2638
2640
  id: Scalars['String']['input'];
2639
2641
  input: CreateBrandDto;
2642
+ tenantId?: InputMaybe<Scalars['String']['input']>;
2640
2643
  };
2641
2644
  export type MutationUpdateClubArgs = {
2642
2645
  input: UpdateClubInput;
@@ -2658,6 +2661,7 @@ export type MutationUpdateNotificationPreferencesArgs = {
2658
2661
  export type MutationUpdateOfferArgs = {
2659
2662
  id: Scalars['String']['input'];
2660
2663
  input: CreateOfferDto;
2664
+ tenantId?: InputMaybe<Scalars['String']['input']>;
2661
2665
  };
2662
2666
  export type MutationUpdateOnboardingProgressArgs = {
2663
2667
  input: UpdateOnboardingProgressDto;
@@ -13840,6 +13844,7 @@ export type PaginationFieldsFragment = {
13840
13844
  };
13841
13845
  export type CreateOfferMutationVariables = Exact<{
13842
13846
  input: CreateOfferDto;
13847
+ tenantId?: InputMaybe<Scalars['String']['input']>;
13843
13848
  }>;
13844
13849
  export type CreateOfferMutation = {
13845
13850
  createOffer: {
@@ -13849,6 +13854,7 @@ export type CreateOfferMutation = {
13849
13854
  export type UpdateOfferMutationVariables = Exact<{
13850
13855
  id: Scalars['String']['input'];
13851
13856
  input: CreateOfferDto;
13857
+ tenantId?: InputMaybe<Scalars['String']['input']>;
13852
13858
  }>;
13853
13859
  export type UpdateOfferMutation = {
13854
13860
  updateOffer: {
@@ -14603,6 +14609,7 @@ export type GetBrandsPaginatedQuery = {
14603
14609
  };
14604
14610
  export type CreateBrandMutationVariables = Exact<{
14605
14611
  input: CreateBrandDto;
14612
+ tenantId?: InputMaybe<Scalars['String']['input']>;
14606
14613
  }>;
14607
14614
  export type CreateBrandMutation = {
14608
14615
  createBrand: {
@@ -14612,6 +14619,7 @@ export type CreateBrandMutation = {
14612
14619
  export type UpdateBrandMutationVariables = Exact<{
14613
14620
  id: Scalars['String']['input'];
14614
14621
  input: CreateBrandDto;
14622
+ tenantId?: InputMaybe<Scalars['String']['input']>;
14615
14623
  }>;
14616
14624
  export type UpdateBrandMutation = {
14617
14625
  updateBrand: {
@@ -5528,15 +5528,15 @@ exports.UpdateNotificationPreferencesDocument = (0, graphql_tag_1.default) `
5528
5528
  }
5529
5529
  `;
5530
5530
  exports.CreateOfferDocument = (0, graphql_tag_1.default) `
5531
- mutation CreateOffer($input: CreateOfferDto!) {
5532
- createOffer(input: $input) {
5531
+ mutation CreateOffer($input: CreateOfferDto!, $tenantId: String) {
5532
+ createOffer(input: $input, tenantId: $tenantId) {
5533
5533
  _id
5534
5534
  }
5535
5535
  }
5536
5536
  `;
5537
5537
  exports.UpdateOfferDocument = (0, graphql_tag_1.default) `
5538
- mutation UpdateOffer($id: String!, $input: CreateOfferDto!) {
5539
- updateOffer(id: $id, input: $input) {
5538
+ mutation UpdateOffer($id: String!, $input: CreateOfferDto!, $tenantId: String) {
5539
+ updateOffer(id: $id, input: $input, tenantId: $tenantId) {
5540
5540
  _id
5541
5541
  }
5542
5542
  }
@@ -5985,15 +5985,15 @@ exports.GetBrandsPaginatedDocument = (0, graphql_tag_1.default) `
5985
5985
  ${exports.Awss3FileFieldsFragmentDoc}
5986
5986
  ${exports.PaginationInfoFieldsFragmentDoc}`;
5987
5987
  exports.CreateBrandDocument = (0, graphql_tag_1.default) `
5988
- mutation CreateBrand($input: CreateBrandDto!) {
5989
- createBrand(input: $input) {
5988
+ mutation CreateBrand($input: CreateBrandDto!, $tenantId: String) {
5989
+ createBrand(input: $input, tenantId: $tenantId) {
5990
5990
  _id
5991
5991
  }
5992
5992
  }
5993
5993
  `;
5994
5994
  exports.UpdateBrandDocument = (0, graphql_tag_1.default) `
5995
- mutation UpdateBrand($id: String!, $input: CreateBrandDto!) {
5996
- updateBrand(id: $id, input: $input) {
5995
+ mutation UpdateBrand($id: String!, $input: CreateBrandDto!, $tenantId: String) {
5996
+ updateBrand(id: $id, input: $input, tenantId: $tenantId) {
5997
5997
  _id
5998
5998
  }
5999
5999
  }