@vendure/admin-ui 2.0.0-beta.0 → 2.0.0-beta.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.
@@ -315,8 +315,10 @@ export type Channel = Node & {
315
315
  __typename?: 'Channel';
316
316
  code: Scalars['String'];
317
317
  createdAt: Scalars['DateTime'];
318
+ /** @deprecated Use defaultCurrencyCode instead */
318
319
  currencyCode: CurrencyCode;
319
320
  customFields?: Maybe<Scalars['JSON']>;
321
+ defaultCurrencyCode: CurrencyCode;
320
322
  defaultLanguageCode: LanguageCode;
321
323
  defaultShippingZone?: Maybe<Zone>;
322
324
  defaultTaxZone?: Maybe<Zone>;
@@ -470,7 +472,7 @@ export type CoordinateInput = {
470
472
  x: Scalars['Float'];
471
473
  y: Scalars['Float'];
472
474
  };
473
- export type Country = Node & {
475
+ export type Country = Node & Region & {
474
476
  __typename?: 'Country';
475
477
  code: Scalars['String'];
476
478
  createdAt: Scalars['DateTime'];
@@ -479,7 +481,10 @@ export type Country = Node & {
479
481
  id: Scalars['ID'];
480
482
  languageCode: LanguageCode;
481
483
  name: Scalars['String'];
482
- translations: Array<CountryTranslation>;
484
+ parent?: Maybe<Region>;
485
+ parentId?: Maybe<Scalars['ID']>;
486
+ translations: Array<RegionTranslation>;
487
+ type: Scalars['String'];
483
488
  updatedAt: Scalars['DateTime'];
484
489
  };
485
490
  export type CountryFilterParameter = {
@@ -489,6 +494,8 @@ export type CountryFilterParameter = {
489
494
  id?: InputMaybe<IdOperators>;
490
495
  languageCode?: InputMaybe<StringOperators>;
491
496
  name?: InputMaybe<StringOperators>;
497
+ parentId?: InputMaybe<IdOperators>;
498
+ type?: InputMaybe<StringOperators>;
492
499
  updatedAt?: InputMaybe<DateOperators>;
493
500
  };
494
501
  export type CountryList = PaginatedList & {
@@ -513,16 +520,10 @@ export type CountrySortParameter = {
513
520
  createdAt?: InputMaybe<SortOrder>;
514
521
  id?: InputMaybe<SortOrder>;
515
522
  name?: InputMaybe<SortOrder>;
523
+ parentId?: InputMaybe<SortOrder>;
524
+ type?: InputMaybe<SortOrder>;
516
525
  updatedAt?: InputMaybe<SortOrder>;
517
526
  };
518
- export type CountryTranslation = {
519
- __typename?: 'CountryTranslation';
520
- createdAt: Scalars['DateTime'];
521
- id: Scalars['ID'];
522
- languageCode: LanguageCode;
523
- name: Scalars['String'];
524
- updatedAt: Scalars['DateTime'];
525
- };
526
527
  export type CountryTranslationInput = {
527
528
  customFields?: InputMaybe<Scalars['JSON']>;
528
529
  id?: InputMaybe<Scalars['ID']>;
@@ -718,6 +719,12 @@ export type CreatePromotionInput = {
718
719
  translations: Array<PromotionTranslationInput>;
719
720
  };
720
721
  export type CreatePromotionResult = MissingConditionsError | Promotion;
722
+ export type CreateProvinceInput = {
723
+ code: Scalars['String'];
724
+ customFields?: InputMaybe<Scalars['JSON']>;
725
+ enabled: Scalars['Boolean'];
726
+ translations: Array<ProvinceTranslationInput>;
727
+ };
721
728
  export type CreateRoleInput = {
722
729
  channelIds?: InputMaybe<Array<Scalars['ID']>>;
723
730
  code: Scalars['String'];
@@ -1123,7 +1130,6 @@ export type CustomFields = {
1123
1130
  Asset: Array<CustomFieldConfig>;
1124
1131
  Channel: Array<CustomFieldConfig>;
1125
1132
  Collection: Array<CustomFieldConfig>;
1126
- Country: Array<CustomFieldConfig>;
1127
1133
  Customer: Array<CustomFieldConfig>;
1128
1134
  CustomerGroup: Array<CustomFieldConfig>;
1129
1135
  Facet: Array<CustomFieldConfig>;
@@ -1138,6 +1144,7 @@ export type CustomFields = {
1138
1144
  ProductOptionGroup: Array<CustomFieldConfig>;
1139
1145
  ProductVariant: Array<CustomFieldConfig>;
1140
1146
  Promotion: Array<CustomFieldConfig>;
1147
+ Region: Array<CustomFieldConfig>;
1141
1148
  Seller: Array<CustomFieldConfig>;
1142
1149
  ShippingMethod: Array<CustomFieldConfig>;
1143
1150
  StockLocation: Array<CustomFieldConfig>;
@@ -2325,6 +2332,8 @@ export type Mutation = {
2325
2332
  /** Create a set of ProductVariants based on the OptionGroups assigned to the given Product */
2326
2333
  createProductVariants: Array<Maybe<ProductVariant>>;
2327
2334
  createPromotion: CreatePromotionResult;
2335
+ /** Create a new Province */
2336
+ createProvince: Province;
2328
2337
  /** Create a new Role */
2329
2338
  createRole: Role;
2330
2339
  /** Create a new Seller */
@@ -2383,6 +2392,8 @@ export type Mutation = {
2383
2392
  /** Delete multiple Products */
2384
2393
  deleteProducts: Array<DeletionResponse>;
2385
2394
  deletePromotion: DeletionResponse;
2395
+ /** Delete a Province */
2396
+ deleteProvince: DeletionResponse;
2386
2397
  /** Delete an existing Role */
2387
2398
  deleteRole: DeletionResponse;
2388
2399
  /** Delete a Seller */
@@ -2498,6 +2509,8 @@ export type Mutation = {
2498
2509
  /** Update multiple existing Products */
2499
2510
  updateProducts: Array<Product>;
2500
2511
  updatePromotion: UpdatePromotionResult;
2512
+ /** Update an existing Province */
2513
+ updateProvince: Province;
2501
2514
  /** Update an existing Role */
2502
2515
  updateRole: Role;
2503
2516
  /** Update an existing Seller */
@@ -2636,6 +2649,9 @@ export type MutationCreateProductVariantsArgs = {
2636
2649
  export type MutationCreatePromotionArgs = {
2637
2650
  input: CreatePromotionInput;
2638
2651
  };
2652
+ export type MutationCreateProvinceArgs = {
2653
+ input: CreateProvinceInput;
2654
+ };
2639
2655
  export type MutationCreateRoleArgs = {
2640
2656
  input: CreateRoleInput;
2641
2657
  };
@@ -2733,6 +2749,9 @@ export type MutationDeleteProductsArgs = {
2733
2749
  export type MutationDeletePromotionArgs = {
2734
2750
  id: Scalars['ID'];
2735
2751
  };
2752
+ export type MutationDeleteProvinceArgs = {
2753
+ id: Scalars['ID'];
2754
+ };
2736
2755
  export type MutationDeleteRoleArgs = {
2737
2756
  id: Scalars['ID'];
2738
2757
  };
@@ -2942,6 +2961,9 @@ export type MutationUpdateProductsArgs = {
2942
2961
  export type MutationUpdatePromotionArgs = {
2943
2962
  input: UpdatePromotionInput;
2944
2963
  };
2964
+ export type MutationUpdateProvinceArgs = {
2965
+ input: UpdateProvinceInput;
2966
+ };
2945
2967
  export type MutationUpdateRoleArgs = {
2946
2968
  input: UpdateRoleInput;
2947
2969
  };
@@ -4003,6 +4025,64 @@ export type PromotionTranslationInput = {
4003
4025
  languageCode: LanguageCode;
4004
4026
  name?: InputMaybe<Scalars['String']>;
4005
4027
  };
4028
+ export type Province = Node & Region & {
4029
+ __typename?: 'Province';
4030
+ code: Scalars['String'];
4031
+ createdAt: Scalars['DateTime'];
4032
+ customFields?: Maybe<Scalars['JSON']>;
4033
+ enabled: Scalars['Boolean'];
4034
+ id: Scalars['ID'];
4035
+ languageCode: LanguageCode;
4036
+ name: Scalars['String'];
4037
+ parent?: Maybe<Region>;
4038
+ parentId?: Maybe<Scalars['ID']>;
4039
+ translations: Array<RegionTranslation>;
4040
+ type: Scalars['String'];
4041
+ updatedAt: Scalars['DateTime'];
4042
+ };
4043
+ export type ProvinceFilterParameter = {
4044
+ code?: InputMaybe<StringOperators>;
4045
+ createdAt?: InputMaybe<DateOperators>;
4046
+ enabled?: InputMaybe<BooleanOperators>;
4047
+ id?: InputMaybe<IdOperators>;
4048
+ languageCode?: InputMaybe<StringOperators>;
4049
+ name?: InputMaybe<StringOperators>;
4050
+ parentId?: InputMaybe<IdOperators>;
4051
+ type?: InputMaybe<StringOperators>;
4052
+ updatedAt?: InputMaybe<DateOperators>;
4053
+ };
4054
+ export type ProvinceList = PaginatedList & {
4055
+ __typename?: 'ProvinceList';
4056
+ items: Array<Province>;
4057
+ totalItems: Scalars['Int'];
4058
+ };
4059
+ export type ProvinceListOptions = {
4060
+ /** Allows the results to be filtered */
4061
+ filter?: InputMaybe<ProvinceFilterParameter>;
4062
+ /** Specifies whether multiple "filter" arguments should be combines with a logical AND or OR operation. Defaults to AND. */
4063
+ filterOperator?: InputMaybe<LogicalOperator>;
4064
+ /** Skips the first n results, for use in pagination */
4065
+ skip?: InputMaybe<Scalars['Int']>;
4066
+ /** Specifies which properties to sort the results by */
4067
+ sort?: InputMaybe<ProvinceSortParameter>;
4068
+ /** Takes n results, for use in pagination */
4069
+ take?: InputMaybe<Scalars['Int']>;
4070
+ };
4071
+ export type ProvinceSortParameter = {
4072
+ code?: InputMaybe<SortOrder>;
4073
+ createdAt?: InputMaybe<SortOrder>;
4074
+ id?: InputMaybe<SortOrder>;
4075
+ name?: InputMaybe<SortOrder>;
4076
+ parentId?: InputMaybe<SortOrder>;
4077
+ type?: InputMaybe<SortOrder>;
4078
+ updatedAt?: InputMaybe<SortOrder>;
4079
+ };
4080
+ export type ProvinceTranslationInput = {
4081
+ customFields?: InputMaybe<Scalars['JSON']>;
4082
+ id?: InputMaybe<Scalars['ID']>;
4083
+ languageCode: LanguageCode;
4084
+ name?: InputMaybe<Scalars['String']>;
4085
+ };
4006
4086
  /** Returned if the specified quantity of an OrderLine is greater than the number of items in that line */
4007
4087
  export type QuantityTooGreatError = ErrorResult & {
4008
4088
  __typename?: 'QuantityTooGreatError';
@@ -4068,6 +4148,8 @@ export type Query = {
4068
4148
  promotionActions: Array<ConfigurableOperationDefinition>;
4069
4149
  promotionConditions: Array<ConfigurableOperationDefinition>;
4070
4150
  promotions: PromotionList;
4151
+ province?: Maybe<Province>;
4152
+ provinces: ProvinceList;
4071
4153
  role?: Maybe<Role>;
4072
4154
  roles: RoleList;
4073
4155
  search: SearchResponse;
@@ -4198,6 +4280,12 @@ export type QueryPromotionArgs = {
4198
4280
  export type QueryPromotionsArgs = {
4199
4281
  options?: InputMaybe<PromotionListOptions>;
4200
4282
  };
4283
+ export type QueryProvinceArgs = {
4284
+ id: Scalars['ID'];
4285
+ };
4286
+ export type QueryProvincesArgs = {
4287
+ options?: InputMaybe<ProvinceListOptions>;
4288
+ };
4201
4289
  export type QueryRoleArgs = {
4202
4290
  id: Scalars['ID'];
4203
4291
  };
@@ -4307,6 +4395,27 @@ export type RefundStateTransitionError = ErrorResult & {
4307
4395
  toState: Scalars['String'];
4308
4396
  transitionError: Scalars['String'];
4309
4397
  };
4398
+ export type Region = {
4399
+ code: Scalars['String'];
4400
+ createdAt: Scalars['DateTime'];
4401
+ enabled: Scalars['Boolean'];
4402
+ id: Scalars['ID'];
4403
+ languageCode: LanguageCode;
4404
+ name: Scalars['String'];
4405
+ parent?: Maybe<Region>;
4406
+ parentId?: Maybe<Scalars['ID']>;
4407
+ translations: Array<RegionTranslation>;
4408
+ type: Scalars['String'];
4409
+ updatedAt: Scalars['DateTime'];
4410
+ };
4411
+ export type RegionTranslation = {
4412
+ __typename?: 'RegionTranslation';
4413
+ createdAt: Scalars['DateTime'];
4414
+ id: Scalars['ID'];
4415
+ languageCode: LanguageCode;
4416
+ name: Scalars['String'];
4417
+ updatedAt: Scalars['DateTime'];
4418
+ };
4310
4419
  export type RelationCustomFieldConfig = CustomField & {
4311
4420
  __typename?: 'RelationCustomFieldConfig';
4312
4421
  description?: Maybe<Array<LocalizedString>>;
@@ -5124,6 +5233,13 @@ export type UpdatePromotionInput = {
5124
5233
  translations?: InputMaybe<Array<PromotionTranslationInput>>;
5125
5234
  };
5126
5235
  export type UpdatePromotionResult = MissingConditionsError | Promotion;
5236
+ export type UpdateProvinceInput = {
5237
+ code?: InputMaybe<Scalars['String']>;
5238
+ customFields?: InputMaybe<Scalars['JSON']>;
5239
+ enabled?: InputMaybe<Scalars['Boolean']>;
5240
+ id: Scalars['ID'];
5241
+ translations?: InputMaybe<Array<ProvinceTranslationInput>>;
5242
+ };
5127
5243
  export type UpdateRoleInput = {
5128
5244
  channelIds?: InputMaybe<Array<Scalars['ID']>>;
5129
5245
  code?: InputMaybe<Scalars['String']>;
@@ -5208,7 +5324,7 @@ export type Zone = Node & {
5208
5324
  createdAt: Scalars['DateTime'];
5209
5325
  customFields?: Maybe<Scalars['JSON']>;
5210
5326
  id: Scalars['ID'];
5211
- members: Array<Country>;
5327
+ members: Array<Region>;
5212
5328
  name: Scalars['String'];
5213
5329
  updatedAt: Scalars['DateTime'];
5214
5330
  };
@@ -13739,7 +13855,7 @@ export type CountryFragment = {
13739
13855
  name: string;
13740
13856
  enabled: boolean;
13741
13857
  translations: Array<{
13742
- __typename?: 'CountryTranslation';
13858
+ __typename?: 'RegionTranslation';
13743
13859
  id: string;
13744
13860
  languageCode: LanguageCode;
13745
13861
  name: string;
@@ -13789,7 +13905,7 @@ export type GetCountryQuery = {
13789
13905
  name: string;
13790
13906
  enabled: boolean;
13791
13907
  translations: Array<{
13792
- __typename?: 'CountryTranslation';
13908
+ __typename?: 'RegionTranslation';
13793
13909
  id: string;
13794
13910
  languageCode: LanguageCode;
13795
13911
  name: string;
@@ -13809,7 +13925,7 @@ export type CreateCountryMutation = {
13809
13925
  name: string;
13810
13926
  enabled: boolean;
13811
13927
  translations: Array<{
13812
- __typename?: 'CountryTranslation';
13928
+ __typename?: 'RegionTranslation';
13813
13929
  id: string;
13814
13930
  languageCode: LanguageCode;
13815
13931
  name: string;
@@ -13829,7 +13945,7 @@ export type UpdateCountryMutation = {
13829
13945
  name: string;
13830
13946
  enabled: boolean;
13831
13947
  translations: Array<{
13832
- __typename?: 'CountryTranslation';
13948
+ __typename?: 'RegionTranslation';
13833
13949
  id: string;
13834
13950
  languageCode: LanguageCode;
13835
13951
  name: string;
@@ -13861,11 +13977,13 @@ export type ZoneFragment = {
13861
13977
  name: string;
13862
13978
  enabled: boolean;
13863
13979
  translations: Array<{
13864
- __typename?: 'CountryTranslation';
13980
+ __typename?: 'RegionTranslation';
13865
13981
  id: string;
13866
13982
  languageCode: LanguageCode;
13867
13983
  name: string;
13868
13984
  }>;
13985
+ } | {
13986
+ __typename?: 'Province';
13869
13987
  }>;
13870
13988
  };
13871
13989
  export type GetZonesQueryVariables = Exact<{
@@ -13887,11 +14005,19 @@ export type GetZonesQuery = {
13887
14005
  code: string;
13888
14006
  enabled: boolean;
13889
14007
  translations: Array<{
13890
- __typename?: 'CountryTranslation';
14008
+ __typename?: 'RegionTranslation';
13891
14009
  id: string;
13892
14010
  languageCode: LanguageCode;
13893
14011
  name: string;
13894
14012
  }>;
14013
+ } | {
14014
+ __typename?: 'Province';
14015
+ createdAt: any;
14016
+ updatedAt: any;
14017
+ id: string;
14018
+ name: string;
14019
+ code: string;
14020
+ enabled: boolean;
13895
14021
  }>;
13896
14022
  }>;
13897
14023
  };
@@ -13914,11 +14040,13 @@ export type GetZoneQuery = {
13914
14040
  name: string;
13915
14041
  enabled: boolean;
13916
14042
  translations: Array<{
13917
- __typename?: 'CountryTranslation';
14043
+ __typename?: 'RegionTranslation';
13918
14044
  id: string;
13919
14045
  languageCode: LanguageCode;
13920
14046
  name: string;
13921
14047
  }>;
14048
+ } | {
14049
+ __typename?: 'Province';
13922
14050
  }>;
13923
14051
  } | null;
13924
14052
  };
@@ -13941,11 +14069,13 @@ export type CreateZoneMutation = {
13941
14069
  name: string;
13942
14070
  enabled: boolean;
13943
14071
  translations: Array<{
13944
- __typename?: 'CountryTranslation';
14072
+ __typename?: 'RegionTranslation';
13945
14073
  id: string;
13946
14074
  languageCode: LanguageCode;
13947
14075
  name: string;
13948
14076
  }>;
14077
+ } | {
14078
+ __typename?: 'Province';
13949
14079
  }>;
13950
14080
  };
13951
14081
  };
@@ -13968,11 +14098,13 @@ export type UpdateZoneMutation = {
13968
14098
  name: string;
13969
14099
  enabled: boolean;
13970
14100
  translations: Array<{
13971
- __typename?: 'CountryTranslation';
14101
+ __typename?: 'RegionTranslation';
13972
14102
  id: string;
13973
14103
  languageCode: LanguageCode;
13974
14104
  name: string;
13975
14105
  }>;
14106
+ } | {
14107
+ __typename?: 'Province';
13976
14108
  }>;
13977
14109
  };
13978
14110
  };
@@ -14006,11 +14138,13 @@ export type AddMembersToZoneMutation = {
14006
14138
  name: string;
14007
14139
  enabled: boolean;
14008
14140
  translations: Array<{
14009
- __typename?: 'CountryTranslation';
14141
+ __typename?: 'RegionTranslation';
14010
14142
  id: string;
14011
14143
  languageCode: LanguageCode;
14012
14144
  name: string;
14013
14145
  }>;
14146
+ } | {
14147
+ __typename?: 'Province';
14014
14148
  }>;
14015
14149
  };
14016
14150
  };
@@ -14034,11 +14168,13 @@ export type RemoveMembersFromZoneMutation = {
14034
14168
  name: string;
14035
14169
  enabled: boolean;
14036
14170
  translations: Array<{
14037
- __typename?: 'CountryTranslation';
14171
+ __typename?: 'RegionTranslation';
14038
14172
  id: string;
14039
14173
  languageCode: LanguageCode;
14040
14174
  name: string;
14041
14175
  }>;
14176
+ } | {
14177
+ __typename?: 'Province';
14042
14178
  }>;
14043
14179
  };
14044
14180
  };
@@ -16390,7 +16526,7 @@ export type GetServerConfigQuery = {
16390
16526
  value: string;
16391
16527
  }> | null;
16392
16528
  }>;
16393
- Country: Array<{
16529
+ Customer: Array<{
16394
16530
  __typename?: 'BooleanCustomFieldConfig';
16395
16531
  name: string;
16396
16532
  type: string;
@@ -16575,7 +16711,7 @@ export type GetServerConfigQuery = {
16575
16711
  value: string;
16576
16712
  }> | null;
16577
16713
  }>;
16578
- Customer: Array<{
16714
+ CustomerGroup: Array<{
16579
16715
  __typename?: 'BooleanCustomFieldConfig';
16580
16716
  name: string;
16581
16717
  type: string;
@@ -16760,7 +16896,7 @@ export type GetServerConfigQuery = {
16760
16896
  value: string;
16761
16897
  }> | null;
16762
16898
  }>;
16763
- CustomerGroup: Array<{
16899
+ Facet: Array<{
16764
16900
  __typename?: 'BooleanCustomFieldConfig';
16765
16901
  name: string;
16766
16902
  type: string;
@@ -16945,7 +17081,7 @@ export type GetServerConfigQuery = {
16945
17081
  value: string;
16946
17082
  }> | null;
16947
17083
  }>;
16948
- Facet: Array<{
17084
+ FacetValue: Array<{
16949
17085
  __typename?: 'BooleanCustomFieldConfig';
16950
17086
  name: string;
16951
17087
  type: string;
@@ -17130,7 +17266,7 @@ export type GetServerConfigQuery = {
17130
17266
  value: string;
17131
17267
  }> | null;
17132
17268
  }>;
17133
- FacetValue: Array<{
17269
+ Fulfillment: Array<{
17134
17270
  __typename?: 'BooleanCustomFieldConfig';
17135
17271
  name: string;
17136
17272
  type: string;
@@ -17315,7 +17451,7 @@ export type GetServerConfigQuery = {
17315
17451
  value: string;
17316
17452
  }> | null;
17317
17453
  }>;
17318
- Fulfillment: Array<{
17454
+ GlobalSettings: Array<{
17319
17455
  __typename?: 'BooleanCustomFieldConfig';
17320
17456
  name: string;
17321
17457
  type: string;
@@ -17500,7 +17636,7 @@ export type GetServerConfigQuery = {
17500
17636
  value: string;
17501
17637
  }> | null;
17502
17638
  }>;
17503
- GlobalSettings: Array<{
17639
+ Order: Array<{
17504
17640
  __typename?: 'BooleanCustomFieldConfig';
17505
17641
  name: string;
17506
17642
  type: string;
@@ -17685,7 +17821,7 @@ export type GetServerConfigQuery = {
17685
17821
  value: string;
17686
17822
  }> | null;
17687
17823
  }>;
17688
- Order: Array<{
17824
+ OrderLine: Array<{
17689
17825
  __typename?: 'BooleanCustomFieldConfig';
17690
17826
  name: string;
17691
17827
  type: string;
@@ -17870,7 +18006,7 @@ export type GetServerConfigQuery = {
17870
18006
  value: string;
17871
18007
  }> | null;
17872
18008
  }>;
17873
- OrderLine: Array<{
18009
+ PaymentMethod: Array<{
17874
18010
  __typename?: 'BooleanCustomFieldConfig';
17875
18011
  name: string;
17876
18012
  type: string;
@@ -18055,7 +18191,7 @@ export type GetServerConfigQuery = {
18055
18191
  value: string;
18056
18192
  }> | null;
18057
18193
  }>;
18058
- PaymentMethod: Array<{
18194
+ Product: Array<{
18059
18195
  __typename?: 'BooleanCustomFieldConfig';
18060
18196
  name: string;
18061
18197
  type: string;
@@ -18240,7 +18376,7 @@ export type GetServerConfigQuery = {
18240
18376
  value: string;
18241
18377
  }> | null;
18242
18378
  }>;
18243
- Product: Array<{
18379
+ ProductOption: Array<{
18244
18380
  __typename?: 'BooleanCustomFieldConfig';
18245
18381
  name: string;
18246
18382
  type: string;
@@ -18425,7 +18561,7 @@ export type GetServerConfigQuery = {
18425
18561
  value: string;
18426
18562
  }> | null;
18427
18563
  }>;
18428
- ProductOption: Array<{
18564
+ ProductOptionGroup: Array<{
18429
18565
  __typename?: 'BooleanCustomFieldConfig';
18430
18566
  name: string;
18431
18567
  type: string;
@@ -18610,7 +18746,7 @@ export type GetServerConfigQuery = {
18610
18746
  value: string;
18611
18747
  }> | null;
18612
18748
  }>;
18613
- ProductOptionGroup: Array<{
18749
+ ProductVariant: Array<{
18614
18750
  __typename?: 'BooleanCustomFieldConfig';
18615
18751
  name: string;
18616
18752
  type: string;
@@ -18795,7 +18931,7 @@ export type GetServerConfigQuery = {
18795
18931
  value: string;
18796
18932
  }> | null;
18797
18933
  }>;
18798
- ProductVariant: Array<{
18934
+ Promotion: Array<{
18799
18935
  __typename?: 'BooleanCustomFieldConfig';
18800
18936
  name: string;
18801
18937
  type: string;
@@ -18980,7 +19116,7 @@ export type GetServerConfigQuery = {
18980
19116
  value: string;
18981
19117
  }> | null;
18982
19118
  }>;
18983
- Promotion: Array<{
19119
+ Region: Array<{
18984
19120
  __typename?: 'BooleanCustomFieldConfig';
18985
19121
  name: string;
18986
19122
  type: string;
@@ -1 +1 @@
1
- export declare const ADMIN_UI_VERSION = "2.0.0-beta.0";
1
+ export declare const ADMIN_UI_VERSION = "2.0.0-beta.1";