@adminide-stack/core 3.1.2-alpha.109 → 3.1.2-alpha.124

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.
@@ -168,7 +168,6 @@ export declare type IAccountTeamInput = {
168
168
  _id?: Maybe<Scalars['String']>;
169
169
  name?: Maybe<Scalars['String']>;
170
170
  title?: Maybe<Scalars['String']>;
171
- orgName?: Maybe<Scalars['String']>;
172
171
  tags?: Maybe<Array<Maybe<Scalars['String']>>>;
173
172
  description?: Maybe<Scalars['String']>;
174
173
  parentTeam?: Maybe<IAccountTeamInput>;
@@ -550,6 +549,7 @@ export declare type IBaseTeamServiceGetUserTeamsArgs = {
550
549
  /** Base Team Service */
551
550
  export declare type IBaseTeamServiceCreateTeamArgs = {
552
551
  team?: Maybe<ITeamCreateRequest>;
552
+ orgName?: Maybe<Scalars['String']>;
553
553
  };
554
554
  /** Base Team Service */
555
555
  export declare type IBaseTeamServiceUpdateTeamArgs = {
@@ -2767,7 +2767,6 @@ export declare type ISubscriptionSubscribeToPolicyUpdateArgs = {
2767
2767
  export declare type ITeamCreateRequest = {
2768
2768
  name?: Maybe<Scalars['String']>;
2769
2769
  title: Scalars['String'];
2770
- orgName: Scalars['String'];
2771
2770
  tags?: Maybe<Array<Maybe<Scalars['String']>>>;
2772
2771
  emails?: Maybe<Array<Maybe<Scalars['String']>>>;
2773
2772
  teamMembers?: Maybe<Array<Maybe<ITeamMemberInput>>>;
@@ -2777,7 +2776,6 @@ export declare type ITeamCreateRequest = {
2777
2776
  export declare type ITeamCreationRequest = {
2778
2777
  name?: Maybe<Scalars['String']>;
2779
2778
  title: Scalars['String'];
2780
- orgName: Scalars['String'];
2781
2779
  tags?: Maybe<Array<Maybe<Scalars['String']>>>;
2782
2780
  emails?: Maybe<Array<Maybe<Scalars['String']>>>;
2783
2781
  parentTeam?: Maybe<Scalars['String']>;