@adminide-stack/extension-api 7.2.8-alpha.6 → 7.2.9-alpha.0
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.
@@ -77,6 +77,10 @@ export type Scalars = {
|
|
77
77
|
input: any;
|
78
78
|
output: any;
|
79
79
|
};
|
80
|
+
Timestamp: {
|
81
|
+
input: any;
|
82
|
+
output: any;
|
83
|
+
};
|
80
84
|
URI: {
|
81
85
|
input: URI;
|
82
86
|
output: URI;
|
@@ -954,17 +958,6 @@ export type IGalleryQueryInput = {
|
|
954
958
|
export type IGeoLocation = {
|
955
959
|
__typename?: 'GeoLocation';
|
956
960
|
coordinates?: Maybe<Array<Maybe<Scalars['Float']['output']>>>;
|
957
|
-
type?: Maybe<Scalars['String']['output']>;
|
958
|
-
};
|
959
|
-
/**
|
960
|
-
* Input geometry of the location.
|
961
|
-
* List the `longitude` first and then `latitude`
|
962
|
-
* - Validate longitude values are between `-180` and `180`
|
963
|
-
* - Validate latitude values are between `-90` and `90`
|
964
|
-
*/
|
965
|
-
export type IGeoLocationInput = {
|
966
|
-
coordinates?: InputMaybe<Array<InputMaybe<Scalars['Float']['input']>>>;
|
967
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
968
961
|
};
|
969
962
|
export type IGrammar = {
|
970
963
|
__typename?: 'Grammar';
|
@@ -2681,7 +2674,6 @@ export type IResolversTypes = {
|
|
2681
2674
|
GalleryPager: ResolverTypeWrapper<IGalleryPager>;
|
2682
2675
|
GalleryQueryInput: IGalleryQueryInput;
|
2683
2676
|
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
2684
|
-
GeoLocationInput: IGeoLocationInput;
|
2685
2677
|
Grammar: ResolverTypeWrapper<IGrammar>;
|
2686
2678
|
GraphqlCallType: IGraphqlCallType;
|
2687
2679
|
Hover: ResolverTypeWrapper<IResolversInterfaceTypes<IResolversTypes>['Hover']>;
|
@@ -2782,6 +2774,7 @@ export type IResolversTypes = {
|
|
2782
2774
|
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
2783
2775
|
ThemeLabel: ResolverTypeWrapper<IThemeLabel>;
|
2784
2776
|
Time: ResolverTypeWrapper<Scalars['Time']['output']>;
|
2777
|
+
Timestamp: ResolverTypeWrapper<Scalars['Timestamp']['output']>;
|
2785
2778
|
URI: ResolverTypeWrapper<Scalars['URI']['output']>;
|
2786
2779
|
URIInput: ResolverTypeWrapper<Scalars['URIInput']['output']>;
|
2787
2780
|
ViewContainer: ResolverTypeWrapper<IViewContainer>;
|
@@ -2850,7 +2843,6 @@ export type IResolversParentTypes = {
|
|
2850
2843
|
GalleryPager: IGalleryPager;
|
2851
2844
|
GalleryQueryInput: IGalleryQueryInput;
|
2852
2845
|
GeoLocation: IGeoLocation;
|
2853
|
-
GeoLocationInput: IGeoLocationInput;
|
2854
2846
|
Grammar: IGrammar;
|
2855
2847
|
Hover: IResolversInterfaceTypes<IResolversParentTypes>['Hover'];
|
2856
2848
|
IActivationRequest: IIActivationRequest;
|
@@ -2941,6 +2933,7 @@ export type IResolversParentTypes = {
|
|
2941
2933
|
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
2942
2934
|
ThemeLabel: IThemeLabel;
|
2943
2935
|
Time: Scalars['Time']['output'];
|
2936
|
+
Timestamp: Scalars['Timestamp']['output'];
|
2944
2937
|
URI: Scalars['URI']['output'];
|
2945
2938
|
URIInput: Scalars['URIInput']['output'];
|
2946
2939
|
ViewContainer: IViewContainer;
|
@@ -3339,7 +3332,6 @@ export type IGalleryPagerResolvers<ContextType = MyContext, ParentType extends I
|
|
3339
3332
|
};
|
3340
3333
|
export type IGeoLocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
|
3341
3334
|
coordinates?: Resolver<Maybe<Array<Maybe<IResolversTypes['Float']>>>, ParentType, ContextType>;
|
3342
|
-
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
3343
3335
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
3344
3336
|
};
|
3345
3337
|
export type IGrammarResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Grammar'] = IResolversParentTypes['Grammar']> = {
|
@@ -3772,6 +3764,9 @@ export type IThemeLabelResolvers<ContextType = MyContext, ParentType extends IRe
|
|
3772
3764
|
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
3773
3765
|
name: 'Time';
|
3774
3766
|
}
|
3767
|
+
export interface ITimestampScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Timestamp'], any> {
|
3768
|
+
name: 'Timestamp';
|
3769
|
+
}
|
3775
3770
|
export interface IUriScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['URI'], any> {
|
3776
3771
|
name: 'URI';
|
3777
3772
|
}
|
@@ -3901,6 +3896,7 @@ export type IResolvers<ContextType = MyContext> = {
|
|
3901
3896
|
TextDocumentRegistrationOptions?: ITextDocumentRegistrationOptionsResolvers<ContextType>;
|
3902
3897
|
ThemeLabel?: IThemeLabelResolvers<ContextType>;
|
3903
3898
|
Time?: GraphQLScalarType;
|
3899
|
+
Timestamp?: GraphQLScalarType;
|
3904
3900
|
URI?: GraphQLScalarType;
|
3905
3901
|
URIInput?: GraphQLScalarType;
|
3906
3902
|
ViewContainer?: IViewContainerResolvers<ContextType>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/extension-api",
|
3
|
-
"version": "7.2.
|
3
|
+
"version": "7.2.9-alpha.0",
|
4
4
|
"description": "Workbench core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -37,11 +37,11 @@
|
|
37
37
|
}
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@adminide-stack/core": "7.2.
|
40
|
+
"@adminide-stack/core": "7.2.9-alpha.0",
|
41
41
|
"@workbench-stack/core": "3.6.0",
|
42
42
|
"abort-controller": "^2.0.0",
|
43
43
|
"abortable-rx": "^1.0.9",
|
44
|
-
"cdeops": "7.2.
|
44
|
+
"cdeops": "7.2.9-alpha.0",
|
45
45
|
"minimatch": "^9.0.0",
|
46
46
|
"queueing-subject": "0.3.4",
|
47
47
|
"utility-types": "^3.10.0",
|
@@ -60,5 +60,5 @@
|
|
60
60
|
"typescript": {
|
61
61
|
"definition": "lib/index.d.ts"
|
62
62
|
},
|
63
|
-
"gitHead": "
|
63
|
+
"gitHead": "4e0102e27163e8c0f7fdfbb511ef49baa9b6b20b"
|
64
64
|
}
|