graphlit-client 1.0.20240424002 → 1.0.20240426001
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.
@@ -7212,6 +7212,8 @@ export declare enum TextRoles {
|
|
7212
7212
|
Heading3 = "HEADING3",
|
7213
7213
|
/** Heading 4 */
|
7214
7214
|
Heading4 = "HEADING4",
|
7215
|
+
/** Heading 5 */
|
7216
|
+
Heading5 = "HEADING5",
|
7215
7217
|
/** List Item */
|
7216
7218
|
ListItem = "LIST_ITEM",
|
7217
7219
|
/** Page Footer */
|
@@ -7830,6 +7832,75 @@ export type UpdateAlertMutation = {
|
|
7830
7832
|
type: AlertTypes;
|
7831
7833
|
} | null;
|
7832
7834
|
};
|
7835
|
+
export type CreateCategoryMutationVariables = Exact<{
|
7836
|
+
category: CategoryInput;
|
7837
|
+
}>;
|
7838
|
+
export type CreateCategoryMutation = {
|
7839
|
+
__typename?: 'Mutation';
|
7840
|
+
createCategory?: {
|
7841
|
+
__typename?: 'Category';
|
7842
|
+
id: string;
|
7843
|
+
name: string;
|
7844
|
+
} | null;
|
7845
|
+
};
|
7846
|
+
export type DeleteCategoriesMutationVariables = Exact<{
|
7847
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
7848
|
+
}>;
|
7849
|
+
export type DeleteCategoriesMutation = {
|
7850
|
+
__typename?: 'Mutation';
|
7851
|
+
deleteCategories?: Array<{
|
7852
|
+
__typename?: 'Category';
|
7853
|
+
id: string;
|
7854
|
+
state: EntityState;
|
7855
|
+
} | null> | null;
|
7856
|
+
};
|
7857
|
+
export type DeleteCategoryMutationVariables = Exact<{
|
7858
|
+
id: Scalars['ID']['input'];
|
7859
|
+
}>;
|
7860
|
+
export type DeleteCategoryMutation = {
|
7861
|
+
__typename?: 'Mutation';
|
7862
|
+
deleteCategory?: {
|
7863
|
+
__typename?: 'Category';
|
7864
|
+
id: string;
|
7865
|
+
state: EntityState;
|
7866
|
+
} | null;
|
7867
|
+
};
|
7868
|
+
export type GetCategoryQueryVariables = Exact<{
|
7869
|
+
id: Scalars['ID']['input'];
|
7870
|
+
}>;
|
7871
|
+
export type GetCategoryQuery = {
|
7872
|
+
__typename?: 'Query';
|
7873
|
+
category?: {
|
7874
|
+
__typename?: 'Category';
|
7875
|
+
id: string;
|
7876
|
+
name: string;
|
7877
|
+
} | null;
|
7878
|
+
};
|
7879
|
+
export type QueryCategoriesQueryVariables = Exact<{
|
7880
|
+
filter: CategoryFilter;
|
7881
|
+
}>;
|
7882
|
+
export type QueryCategoriesQuery = {
|
7883
|
+
__typename?: 'Query';
|
7884
|
+
categories?: {
|
7885
|
+
__typename?: 'CategoryResults';
|
7886
|
+
results?: Array<{
|
7887
|
+
__typename?: 'Category';
|
7888
|
+
id: string;
|
7889
|
+
name: string;
|
7890
|
+
} | null> | null;
|
7891
|
+
} | null;
|
7892
|
+
};
|
7893
|
+
export type UpdateCategoryMutationVariables = Exact<{
|
7894
|
+
category: CategoryUpdateInput;
|
7895
|
+
}>;
|
7896
|
+
export type UpdateCategoryMutation = {
|
7897
|
+
__typename?: 'Mutation';
|
7898
|
+
updateCategory?: {
|
7899
|
+
__typename?: 'Category';
|
7900
|
+
id: string;
|
7901
|
+
name: string;
|
7902
|
+
} | null;
|
7903
|
+
};
|
7833
7904
|
export type AddContentsToCollectionsMutationVariables = Exact<{
|
7834
7905
|
contents: Array<EntityReferenceInput> | EntityReferenceInput;
|
7835
7906
|
collections: Array<EntityReferenceInput> | EntityReferenceInput;
|
@@ -8413,6 +8484,28 @@ export type QueryContentsQuery = {
|
|
8413
8484
|
__typename?: 'Owner';
|
8414
8485
|
id: string;
|
8415
8486
|
};
|
8487
|
+
pages?: Array<{
|
8488
|
+
__typename?: 'TextPage';
|
8489
|
+
index?: number | null;
|
8490
|
+
chunks?: Array<{
|
8491
|
+
__typename?: 'TextChunk';
|
8492
|
+
index?: number | null;
|
8493
|
+
pageIndex?: number | null;
|
8494
|
+
rowIndex?: number | null;
|
8495
|
+
columnIndex?: number | null;
|
8496
|
+
confidence?: number | null;
|
8497
|
+
text?: string | null;
|
8498
|
+
role?: TextRoles | null;
|
8499
|
+
relevance?: number | null;
|
8500
|
+
} | null> | null;
|
8501
|
+
}> | null;
|
8502
|
+
segments?: Array<{
|
8503
|
+
__typename?: 'TextSegment';
|
8504
|
+
startTime?: any | null;
|
8505
|
+
endTime?: any | null;
|
8506
|
+
text?: string | null;
|
8507
|
+
relevance?: number | null;
|
8508
|
+
}> | null;
|
8416
8509
|
video?: {
|
8417
8510
|
__typename?: 'VideoMetadata';
|
8418
8511
|
width?: number | null;
|
@@ -8982,6 +9075,85 @@ export type UpdateConversationMutation = {
|
|
8982
9075
|
type?: ConversationTypes | null;
|
8983
9076
|
} | null;
|
8984
9077
|
};
|
9078
|
+
export type CreateEventMutationVariables = Exact<{
|
9079
|
+
event: EventInput;
|
9080
|
+
}>;
|
9081
|
+
export type CreateEventMutation = {
|
9082
|
+
__typename?: 'Mutation';
|
9083
|
+
createEvent?: {
|
9084
|
+
__typename?: 'Event';
|
9085
|
+
id: string;
|
9086
|
+
name: string;
|
9087
|
+
} | null;
|
9088
|
+
};
|
9089
|
+
export type DeleteEventMutationVariables = Exact<{
|
9090
|
+
id: Scalars['ID']['input'];
|
9091
|
+
}>;
|
9092
|
+
export type DeleteEventMutation = {
|
9093
|
+
__typename?: 'Mutation';
|
9094
|
+
deleteEvent?: {
|
9095
|
+
__typename?: 'Event';
|
9096
|
+
id: string;
|
9097
|
+
state: EntityState;
|
9098
|
+
} | null;
|
9099
|
+
};
|
9100
|
+
export type DeleteEventsMutationVariables = Exact<{
|
9101
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9102
|
+
}>;
|
9103
|
+
export type DeleteEventsMutation = {
|
9104
|
+
__typename?: 'Mutation';
|
9105
|
+
deleteEvents?: Array<{
|
9106
|
+
__typename?: 'Event';
|
9107
|
+
id: string;
|
9108
|
+
state: EntityState;
|
9109
|
+
} | null> | null;
|
9110
|
+
};
|
9111
|
+
export type GetEventQueryVariables = Exact<{
|
9112
|
+
id: Scalars['ID']['input'];
|
9113
|
+
}>;
|
9114
|
+
export type GetEventQuery = {
|
9115
|
+
__typename?: 'Query';
|
9116
|
+
event?: {
|
9117
|
+
__typename?: 'Event';
|
9118
|
+
id: string;
|
9119
|
+
name: string;
|
9120
|
+
alternateNames?: Array<string | null> | null;
|
9121
|
+
creationDate: any;
|
9122
|
+
startDate?: any | null;
|
9123
|
+
endDate?: any | null;
|
9124
|
+
price?: any | null;
|
9125
|
+
} | null;
|
9126
|
+
};
|
9127
|
+
export type QueryEventsQueryVariables = Exact<{
|
9128
|
+
filter: EventFilter;
|
9129
|
+
}>;
|
9130
|
+
export type QueryEventsQuery = {
|
9131
|
+
__typename?: 'Query';
|
9132
|
+
events?: {
|
9133
|
+
__typename?: 'EventResults';
|
9134
|
+
results?: Array<{
|
9135
|
+
__typename?: 'Event';
|
9136
|
+
id: string;
|
9137
|
+
name: string;
|
9138
|
+
alternateNames?: Array<string | null> | null;
|
9139
|
+
creationDate: any;
|
9140
|
+
startDate?: any | null;
|
9141
|
+
endDate?: any | null;
|
9142
|
+
price?: any | null;
|
9143
|
+
} | null> | null;
|
9144
|
+
} | null;
|
9145
|
+
};
|
9146
|
+
export type UpdateEventMutationVariables = Exact<{
|
9147
|
+
event: EventUpdateInput;
|
9148
|
+
}>;
|
9149
|
+
export type UpdateEventMutation = {
|
9150
|
+
__typename?: 'Mutation';
|
9151
|
+
updateEvent?: {
|
9152
|
+
__typename?: 'Event';
|
9153
|
+
id: string;
|
9154
|
+
name: string;
|
9155
|
+
} | null;
|
9156
|
+
};
|
8985
9157
|
export type CreateFeedMutationVariables = Exact<{
|
8986
9158
|
feed: FeedInput;
|
8987
9159
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -9425,6 +9597,444 @@ export type UpdateFeedMutation = {
|
|
9425
9597
|
type: FeedTypes;
|
9426
9598
|
} | null;
|
9427
9599
|
};
|
9600
|
+
export type CreateLabelMutationVariables = Exact<{
|
9601
|
+
label: LabelInput;
|
9602
|
+
}>;
|
9603
|
+
export type CreateLabelMutation = {
|
9604
|
+
__typename?: 'Mutation';
|
9605
|
+
createLabel?: {
|
9606
|
+
__typename?: 'Label';
|
9607
|
+
id: string;
|
9608
|
+
name: string;
|
9609
|
+
} | null;
|
9610
|
+
};
|
9611
|
+
export type DeleteLabelMutationVariables = Exact<{
|
9612
|
+
id: Scalars['ID']['input'];
|
9613
|
+
}>;
|
9614
|
+
export type DeleteLabelMutation = {
|
9615
|
+
__typename?: 'Mutation';
|
9616
|
+
deleteLabel?: {
|
9617
|
+
__typename?: 'Label';
|
9618
|
+
id: string;
|
9619
|
+
state: EntityState;
|
9620
|
+
} | null;
|
9621
|
+
};
|
9622
|
+
export type DeleteLabelsMutationVariables = Exact<{
|
9623
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9624
|
+
}>;
|
9625
|
+
export type DeleteLabelsMutation = {
|
9626
|
+
__typename?: 'Mutation';
|
9627
|
+
deleteLabels?: Array<{
|
9628
|
+
__typename?: 'Label';
|
9629
|
+
id: string;
|
9630
|
+
state: EntityState;
|
9631
|
+
} | null> | null;
|
9632
|
+
};
|
9633
|
+
export type GetLabelQueryVariables = Exact<{
|
9634
|
+
id: Scalars['ID']['input'];
|
9635
|
+
}>;
|
9636
|
+
export type GetLabelQuery = {
|
9637
|
+
__typename?: 'Query';
|
9638
|
+
label?: {
|
9639
|
+
__typename?: 'Label';
|
9640
|
+
id: string;
|
9641
|
+
name: string;
|
9642
|
+
} | null;
|
9643
|
+
};
|
9644
|
+
export type QueryLabelsQueryVariables = Exact<{
|
9645
|
+
filter: LabelFilter;
|
9646
|
+
}>;
|
9647
|
+
export type QueryLabelsQuery = {
|
9648
|
+
__typename?: 'Query';
|
9649
|
+
labels?: {
|
9650
|
+
__typename?: 'LabelResults';
|
9651
|
+
results?: Array<{
|
9652
|
+
__typename?: 'Label';
|
9653
|
+
id: string;
|
9654
|
+
name: string;
|
9655
|
+
} | null> | null;
|
9656
|
+
} | null;
|
9657
|
+
};
|
9658
|
+
export type UpdateLabelMutationVariables = Exact<{
|
9659
|
+
label: LabelUpdateInput;
|
9660
|
+
}>;
|
9661
|
+
export type UpdateLabelMutation = {
|
9662
|
+
__typename?: 'Mutation';
|
9663
|
+
updateLabel?: {
|
9664
|
+
__typename?: 'Label';
|
9665
|
+
id: string;
|
9666
|
+
name: string;
|
9667
|
+
} | null;
|
9668
|
+
};
|
9669
|
+
export type CreateObservationMutationVariables = Exact<{
|
9670
|
+
observation: ObservationInput;
|
9671
|
+
}>;
|
9672
|
+
export type CreateObservationMutation = {
|
9673
|
+
__typename?: 'Mutation';
|
9674
|
+
createObservation?: {
|
9675
|
+
__typename?: 'Observation';
|
9676
|
+
id: string;
|
9677
|
+
state: EntityState;
|
9678
|
+
} | null;
|
9679
|
+
};
|
9680
|
+
export type DeleteObservationMutationVariables = Exact<{
|
9681
|
+
id: Scalars['ID']['input'];
|
9682
|
+
}>;
|
9683
|
+
export type DeleteObservationMutation = {
|
9684
|
+
__typename?: 'Mutation';
|
9685
|
+
deleteObservation?: {
|
9686
|
+
__typename?: 'Observation';
|
9687
|
+
id: string;
|
9688
|
+
state: EntityState;
|
9689
|
+
} | null;
|
9690
|
+
};
|
9691
|
+
export type UpdateObservationMutationVariables = Exact<{
|
9692
|
+
observation: ObservationUpdateInput;
|
9693
|
+
}>;
|
9694
|
+
export type UpdateObservationMutation = {
|
9695
|
+
__typename?: 'Mutation';
|
9696
|
+
updateObservation?: {
|
9697
|
+
__typename?: 'Observation';
|
9698
|
+
id: string;
|
9699
|
+
state: EntityState;
|
9700
|
+
} | null;
|
9701
|
+
};
|
9702
|
+
export type CreateOrganizationMutationVariables = Exact<{
|
9703
|
+
organization: OrganizationInput;
|
9704
|
+
}>;
|
9705
|
+
export type CreateOrganizationMutation = {
|
9706
|
+
__typename?: 'Mutation';
|
9707
|
+
createOrganization?: {
|
9708
|
+
__typename?: 'Organization';
|
9709
|
+
id: string;
|
9710
|
+
name: string;
|
9711
|
+
foundingDate?: any | null;
|
9712
|
+
industries?: Array<string | null> | null;
|
9713
|
+
revenue?: any | null;
|
9714
|
+
revenueCurrency?: string | null;
|
9715
|
+
investment?: any | null;
|
9716
|
+
investmentCurrency?: string | null;
|
9717
|
+
} | null;
|
9718
|
+
};
|
9719
|
+
export type DeleteOrganizationMutationVariables = Exact<{
|
9720
|
+
id: Scalars['ID']['input'];
|
9721
|
+
}>;
|
9722
|
+
export type DeleteOrganizationMutation = {
|
9723
|
+
__typename?: 'Mutation';
|
9724
|
+
deleteOrganization?: {
|
9725
|
+
__typename?: 'Organization';
|
9726
|
+
id: string;
|
9727
|
+
state: EntityState;
|
9728
|
+
} | null;
|
9729
|
+
};
|
9730
|
+
export type DeleteOrganizationsMutationVariables = Exact<{
|
9731
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9732
|
+
}>;
|
9733
|
+
export type DeleteOrganizationsMutation = {
|
9734
|
+
__typename?: 'Mutation';
|
9735
|
+
deleteOrganizations?: Array<{
|
9736
|
+
__typename?: 'Organization';
|
9737
|
+
id: string;
|
9738
|
+
state: EntityState;
|
9739
|
+
} | null> | null;
|
9740
|
+
};
|
9741
|
+
export type GetOrganizationQueryVariables = Exact<{
|
9742
|
+
id: Scalars['ID']['input'];
|
9743
|
+
}>;
|
9744
|
+
export type GetOrganizationQuery = {
|
9745
|
+
__typename?: 'Query';
|
9746
|
+
organization?: {
|
9747
|
+
__typename?: 'Organization';
|
9748
|
+
id: string;
|
9749
|
+
name: string;
|
9750
|
+
alternateNames?: Array<string | null> | null;
|
9751
|
+
creationDate: any;
|
9752
|
+
foundingDate?: any | null;
|
9753
|
+
industries?: Array<string | null> | null;
|
9754
|
+
revenue?: any | null;
|
9755
|
+
revenueCurrency?: string | null;
|
9756
|
+
investment?: any | null;
|
9757
|
+
investmentCurrency?: string | null;
|
9758
|
+
} | null;
|
9759
|
+
};
|
9760
|
+
export type QueryOrganizationsQueryVariables = Exact<{
|
9761
|
+
filter: OrganizationFilter;
|
9762
|
+
}>;
|
9763
|
+
export type QueryOrganizationsQuery = {
|
9764
|
+
__typename?: 'Query';
|
9765
|
+
organizations?: {
|
9766
|
+
__typename?: 'OrganizationResults';
|
9767
|
+
results?: Array<{
|
9768
|
+
__typename?: 'Organization';
|
9769
|
+
id: string;
|
9770
|
+
name: string;
|
9771
|
+
alternateNames?: Array<string | null> | null;
|
9772
|
+
creationDate: any;
|
9773
|
+
foundingDate?: any | null;
|
9774
|
+
industries?: Array<string | null> | null;
|
9775
|
+
revenue?: any | null;
|
9776
|
+
revenueCurrency?: string | null;
|
9777
|
+
investment?: any | null;
|
9778
|
+
investmentCurrency?: string | null;
|
9779
|
+
} | null> | null;
|
9780
|
+
} | null;
|
9781
|
+
};
|
9782
|
+
export type UpdateOrganizationMutationVariables = Exact<{
|
9783
|
+
organization: OrganizationUpdateInput;
|
9784
|
+
}>;
|
9785
|
+
export type UpdateOrganizationMutation = {
|
9786
|
+
__typename?: 'Mutation';
|
9787
|
+
updateOrganization?: {
|
9788
|
+
__typename?: 'Organization';
|
9789
|
+
id: string;
|
9790
|
+
name: string;
|
9791
|
+
foundingDate?: any | null;
|
9792
|
+
industries?: Array<string | null> | null;
|
9793
|
+
revenue?: any | null;
|
9794
|
+
revenueCurrency?: string | null;
|
9795
|
+
investment?: any | null;
|
9796
|
+
investmentCurrency?: string | null;
|
9797
|
+
} | null;
|
9798
|
+
};
|
9799
|
+
export type CreatePersonMutationVariables = Exact<{
|
9800
|
+
person: PersonInput;
|
9801
|
+
}>;
|
9802
|
+
export type CreatePersonMutation = {
|
9803
|
+
__typename?: 'Mutation';
|
9804
|
+
createPerson?: {
|
9805
|
+
__typename?: 'Person';
|
9806
|
+
id: string;
|
9807
|
+
name: string;
|
9808
|
+
} | null;
|
9809
|
+
};
|
9810
|
+
export type DeletePersonMutationVariables = Exact<{
|
9811
|
+
id: Scalars['ID']['input'];
|
9812
|
+
}>;
|
9813
|
+
export type DeletePersonMutation = {
|
9814
|
+
__typename?: 'Mutation';
|
9815
|
+
deletePerson?: {
|
9816
|
+
__typename?: 'Person';
|
9817
|
+
id: string;
|
9818
|
+
state: EntityState;
|
9819
|
+
} | null;
|
9820
|
+
};
|
9821
|
+
export type DeletePersonsMutationVariables = Exact<{
|
9822
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9823
|
+
}>;
|
9824
|
+
export type DeletePersonsMutation = {
|
9825
|
+
__typename?: 'Mutation';
|
9826
|
+
deletePersons?: Array<{
|
9827
|
+
__typename?: 'Person';
|
9828
|
+
id: string;
|
9829
|
+
state: EntityState;
|
9830
|
+
} | null> | null;
|
9831
|
+
};
|
9832
|
+
export type GetPersonQueryVariables = Exact<{
|
9833
|
+
id: Scalars['ID']['input'];
|
9834
|
+
}>;
|
9835
|
+
export type GetPersonQuery = {
|
9836
|
+
__typename?: 'Query';
|
9837
|
+
person?: {
|
9838
|
+
__typename?: 'Person';
|
9839
|
+
id: string;
|
9840
|
+
name: string;
|
9841
|
+
alternateNames?: Array<string | null> | null;
|
9842
|
+
creationDate: any;
|
9843
|
+
email?: string | null;
|
9844
|
+
givenName?: string | null;
|
9845
|
+
familyName?: string | null;
|
9846
|
+
} | null;
|
9847
|
+
};
|
9848
|
+
export type QueryPersonsQueryVariables = Exact<{
|
9849
|
+
filter: PersonFilter;
|
9850
|
+
}>;
|
9851
|
+
export type QueryPersonsQuery = {
|
9852
|
+
__typename?: 'Query';
|
9853
|
+
persons?: {
|
9854
|
+
__typename?: 'PersonResults';
|
9855
|
+
results?: Array<{
|
9856
|
+
__typename?: 'Person';
|
9857
|
+
id: string;
|
9858
|
+
name: string;
|
9859
|
+
alternateNames?: Array<string | null> | null;
|
9860
|
+
creationDate: any;
|
9861
|
+
email?: string | null;
|
9862
|
+
givenName?: string | null;
|
9863
|
+
familyName?: string | null;
|
9864
|
+
} | null> | null;
|
9865
|
+
} | null;
|
9866
|
+
};
|
9867
|
+
export type UpdatePersonMutationVariables = Exact<{
|
9868
|
+
person: PersonUpdateInput;
|
9869
|
+
}>;
|
9870
|
+
export type UpdatePersonMutation = {
|
9871
|
+
__typename?: 'Mutation';
|
9872
|
+
updatePerson?: {
|
9873
|
+
__typename?: 'Person';
|
9874
|
+
id: string;
|
9875
|
+
name: string;
|
9876
|
+
} | null;
|
9877
|
+
};
|
9878
|
+
export type CreatePlaceMutationVariables = Exact<{
|
9879
|
+
place: PlaceInput;
|
9880
|
+
}>;
|
9881
|
+
export type CreatePlaceMutation = {
|
9882
|
+
__typename?: 'Mutation';
|
9883
|
+
createPlace?: {
|
9884
|
+
__typename?: 'Place';
|
9885
|
+
id: string;
|
9886
|
+
name: string;
|
9887
|
+
} | null;
|
9888
|
+
};
|
9889
|
+
export type DeletePlaceMutationVariables = Exact<{
|
9890
|
+
id: Scalars['ID']['input'];
|
9891
|
+
}>;
|
9892
|
+
export type DeletePlaceMutation = {
|
9893
|
+
__typename?: 'Mutation';
|
9894
|
+
deletePlace?: {
|
9895
|
+
__typename?: 'Place';
|
9896
|
+
id: string;
|
9897
|
+
state: EntityState;
|
9898
|
+
} | null;
|
9899
|
+
};
|
9900
|
+
export type DeletePlacesMutationVariables = Exact<{
|
9901
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9902
|
+
}>;
|
9903
|
+
export type DeletePlacesMutation = {
|
9904
|
+
__typename?: 'Mutation';
|
9905
|
+
deletePlaces?: Array<{
|
9906
|
+
__typename?: 'Place';
|
9907
|
+
id: string;
|
9908
|
+
state: EntityState;
|
9909
|
+
} | null> | null;
|
9910
|
+
};
|
9911
|
+
export type GetPlaceQueryVariables = Exact<{
|
9912
|
+
id: Scalars['ID']['input'];
|
9913
|
+
}>;
|
9914
|
+
export type GetPlaceQuery = {
|
9915
|
+
__typename?: 'Query';
|
9916
|
+
place?: {
|
9917
|
+
__typename?: 'Place';
|
9918
|
+
id: string;
|
9919
|
+
name: string;
|
9920
|
+
alternateNames?: Array<string | null> | null;
|
9921
|
+
creationDate: any;
|
9922
|
+
} | null;
|
9923
|
+
};
|
9924
|
+
export type QueryPlacesQueryVariables = Exact<{
|
9925
|
+
filter: PlaceFilter;
|
9926
|
+
}>;
|
9927
|
+
export type QueryPlacesQuery = {
|
9928
|
+
__typename?: 'Query';
|
9929
|
+
places?: {
|
9930
|
+
__typename?: 'PlaceResults';
|
9931
|
+
results?: Array<{
|
9932
|
+
__typename?: 'Place';
|
9933
|
+
id: string;
|
9934
|
+
name: string;
|
9935
|
+
alternateNames?: Array<string | null> | null;
|
9936
|
+
creationDate: any;
|
9937
|
+
} | null> | null;
|
9938
|
+
} | null;
|
9939
|
+
};
|
9940
|
+
export type UpdatePlaceMutationVariables = Exact<{
|
9941
|
+
place: PlaceUpdateInput;
|
9942
|
+
}>;
|
9943
|
+
export type UpdatePlaceMutation = {
|
9944
|
+
__typename?: 'Mutation';
|
9945
|
+
updatePlace?: {
|
9946
|
+
__typename?: 'Place';
|
9947
|
+
id: string;
|
9948
|
+
name: string;
|
9949
|
+
} | null;
|
9950
|
+
};
|
9951
|
+
export type CreateProductMutationVariables = Exact<{
|
9952
|
+
product: ProductInput;
|
9953
|
+
}>;
|
9954
|
+
export type CreateProductMutation = {
|
9955
|
+
__typename?: 'Mutation';
|
9956
|
+
createProduct?: {
|
9957
|
+
__typename?: 'Product';
|
9958
|
+
id: string;
|
9959
|
+
name: string;
|
9960
|
+
} | null;
|
9961
|
+
};
|
9962
|
+
export type DeleteProductMutationVariables = Exact<{
|
9963
|
+
id: Scalars['ID']['input'];
|
9964
|
+
}>;
|
9965
|
+
export type DeleteProductMutation = {
|
9966
|
+
__typename?: 'Mutation';
|
9967
|
+
deleteProduct?: {
|
9968
|
+
__typename?: 'Product';
|
9969
|
+
id: string;
|
9970
|
+
state: EntityState;
|
9971
|
+
} | null;
|
9972
|
+
};
|
9973
|
+
export type DeleteProductsMutationVariables = Exact<{
|
9974
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
9975
|
+
}>;
|
9976
|
+
export type DeleteProductsMutation = {
|
9977
|
+
__typename?: 'Mutation';
|
9978
|
+
deleteProducts?: Array<{
|
9979
|
+
__typename?: 'Product';
|
9980
|
+
id: string;
|
9981
|
+
state: EntityState;
|
9982
|
+
} | null> | null;
|
9983
|
+
};
|
9984
|
+
export type GetProductQueryVariables = Exact<{
|
9985
|
+
id: Scalars['ID']['input'];
|
9986
|
+
}>;
|
9987
|
+
export type GetProductQuery = {
|
9988
|
+
__typename?: 'Query';
|
9989
|
+
product?: {
|
9990
|
+
__typename?: 'Product';
|
9991
|
+
id: string;
|
9992
|
+
name: string;
|
9993
|
+
alternateNames?: Array<string | null> | null;
|
9994
|
+
creationDate: any;
|
9995
|
+
manufacturer?: string | null;
|
9996
|
+
model?: string | null;
|
9997
|
+
brand?: string | null;
|
9998
|
+
upc?: string | null;
|
9999
|
+
sku?: string | null;
|
10000
|
+
releaseDate?: any | null;
|
10001
|
+
productionDate?: any | null;
|
10002
|
+
} | null;
|
10003
|
+
};
|
10004
|
+
export type QueryProductsQueryVariables = Exact<{
|
10005
|
+
filter: ProductFilter;
|
10006
|
+
}>;
|
10007
|
+
export type QueryProductsQuery = {
|
10008
|
+
__typename?: 'Query';
|
10009
|
+
products?: {
|
10010
|
+
__typename?: 'ProductResults';
|
10011
|
+
results?: Array<{
|
10012
|
+
__typename?: 'Product';
|
10013
|
+
id: string;
|
10014
|
+
name: string;
|
10015
|
+
alternateNames?: Array<string | null> | null;
|
10016
|
+
creationDate: any;
|
10017
|
+
manufacturer?: string | null;
|
10018
|
+
model?: string | null;
|
10019
|
+
brand?: string | null;
|
10020
|
+
upc?: string | null;
|
10021
|
+
sku?: string | null;
|
10022
|
+
releaseDate?: any | null;
|
10023
|
+
productionDate?: any | null;
|
10024
|
+
} | null> | null;
|
10025
|
+
} | null;
|
10026
|
+
};
|
10027
|
+
export type UpdateProductMutationVariables = Exact<{
|
10028
|
+
product: ProductUpdateInput;
|
10029
|
+
}>;
|
10030
|
+
export type UpdateProductMutation = {
|
10031
|
+
__typename?: 'Mutation';
|
10032
|
+
updateProduct?: {
|
10033
|
+
__typename?: 'Product';
|
10034
|
+
id: string;
|
10035
|
+
name: string;
|
10036
|
+
} | null;
|
10037
|
+
};
|
9428
10038
|
export type CreditsQueryVariables = Exact<{
|
9429
10039
|
startDate: Scalars['DateTime']['input'];
|
9430
10040
|
duration: Scalars['TimeSpan']['input'];
|
@@ -9622,6 +10232,156 @@ export type UsageQuery = {
|
|
9622
10232
|
response?: string | null;
|
9623
10233
|
} | null> | null;
|
9624
10234
|
};
|
10235
|
+
export type CreateRepoMutationVariables = Exact<{
|
10236
|
+
repo: RepoInput;
|
10237
|
+
}>;
|
10238
|
+
export type CreateRepoMutation = {
|
10239
|
+
__typename?: 'Mutation';
|
10240
|
+
createRepo?: {
|
10241
|
+
__typename?: 'Repo';
|
10242
|
+
id: string;
|
10243
|
+
name: string;
|
10244
|
+
} | null;
|
10245
|
+
};
|
10246
|
+
export type DeleteRepoMutationVariables = Exact<{
|
10247
|
+
id: Scalars['ID']['input'];
|
10248
|
+
}>;
|
10249
|
+
export type DeleteRepoMutation = {
|
10250
|
+
__typename?: 'Mutation';
|
10251
|
+
deleteRepo?: {
|
10252
|
+
__typename?: 'Repo';
|
10253
|
+
id: string;
|
10254
|
+
state: EntityState;
|
10255
|
+
} | null;
|
10256
|
+
};
|
10257
|
+
export type DeleteReposMutationVariables = Exact<{
|
10258
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10259
|
+
}>;
|
10260
|
+
export type DeleteReposMutation = {
|
10261
|
+
__typename?: 'Mutation';
|
10262
|
+
deleteRepos?: Array<{
|
10263
|
+
__typename?: 'Repo';
|
10264
|
+
id: string;
|
10265
|
+
state: EntityState;
|
10266
|
+
} | null> | null;
|
10267
|
+
};
|
10268
|
+
export type GetRepoQueryVariables = Exact<{
|
10269
|
+
id: Scalars['ID']['input'];
|
10270
|
+
}>;
|
10271
|
+
export type GetRepoQuery = {
|
10272
|
+
__typename?: 'Query';
|
10273
|
+
repo?: {
|
10274
|
+
__typename?: 'Repo';
|
10275
|
+
id: string;
|
10276
|
+
name: string;
|
10277
|
+
alternateNames?: Array<string | null> | null;
|
10278
|
+
creationDate: any;
|
10279
|
+
} | null;
|
10280
|
+
};
|
10281
|
+
export type QueryReposQueryVariables = Exact<{
|
10282
|
+
filter: RepoFilter;
|
10283
|
+
}>;
|
10284
|
+
export type QueryReposQuery = {
|
10285
|
+
__typename?: 'Query';
|
10286
|
+
repos?: {
|
10287
|
+
__typename?: 'RepoResults';
|
10288
|
+
results?: Array<{
|
10289
|
+
__typename?: 'Repo';
|
10290
|
+
id: string;
|
10291
|
+
name: string;
|
10292
|
+
alternateNames?: Array<string | null> | null;
|
10293
|
+
creationDate: any;
|
10294
|
+
} | null> | null;
|
10295
|
+
} | null;
|
10296
|
+
};
|
10297
|
+
export type UpdateRepoMutationVariables = Exact<{
|
10298
|
+
repo: RepoUpdateInput;
|
10299
|
+
}>;
|
10300
|
+
export type UpdateRepoMutation = {
|
10301
|
+
__typename?: 'Mutation';
|
10302
|
+
updateRepo?: {
|
10303
|
+
__typename?: 'Repo';
|
10304
|
+
id: string;
|
10305
|
+
name: string;
|
10306
|
+
} | null;
|
10307
|
+
};
|
10308
|
+
export type CreateSoftwareMutationVariables = Exact<{
|
10309
|
+
software: SoftwareInput;
|
10310
|
+
}>;
|
10311
|
+
export type CreateSoftwareMutation = {
|
10312
|
+
__typename?: 'Mutation';
|
10313
|
+
createSoftware?: {
|
10314
|
+
__typename?: 'Software';
|
10315
|
+
id: string;
|
10316
|
+
name: string;
|
10317
|
+
} | null;
|
10318
|
+
};
|
10319
|
+
export type DeleteSoftwareMutationVariables = Exact<{
|
10320
|
+
id: Scalars['ID']['input'];
|
10321
|
+
}>;
|
10322
|
+
export type DeleteSoftwareMutation = {
|
10323
|
+
__typename?: 'Mutation';
|
10324
|
+
deleteSoftware?: {
|
10325
|
+
__typename?: 'Software';
|
10326
|
+
id: string;
|
10327
|
+
state: EntityState;
|
10328
|
+
} | null;
|
10329
|
+
};
|
10330
|
+
export type DeleteSoftwaresMutationVariables = Exact<{
|
10331
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
10332
|
+
}>;
|
10333
|
+
export type DeleteSoftwaresMutation = {
|
10334
|
+
__typename?: 'Mutation';
|
10335
|
+
deleteSoftwares?: Array<{
|
10336
|
+
__typename?: 'Software';
|
10337
|
+
id: string;
|
10338
|
+
state: EntityState;
|
10339
|
+
} | null> | null;
|
10340
|
+
};
|
10341
|
+
export type GetSoftwareQueryVariables = Exact<{
|
10342
|
+
id: Scalars['ID']['input'];
|
10343
|
+
}>;
|
10344
|
+
export type GetSoftwareQuery = {
|
10345
|
+
__typename?: 'Query';
|
10346
|
+
software?: {
|
10347
|
+
__typename?: 'Software';
|
10348
|
+
id: string;
|
10349
|
+
name: string;
|
10350
|
+
alternateNames?: Array<string | null> | null;
|
10351
|
+
creationDate: any;
|
10352
|
+
releaseDate?: any | null;
|
10353
|
+
developer?: string | null;
|
10354
|
+
} | null;
|
10355
|
+
};
|
10356
|
+
export type QuerySoftwareQueryVariables = Exact<{
|
10357
|
+
filter: SoftwareFilter;
|
10358
|
+
}>;
|
10359
|
+
export type QuerySoftwareQuery = {
|
10360
|
+
__typename?: 'Query';
|
10361
|
+
softwares?: {
|
10362
|
+
__typename?: 'SoftwareResults';
|
10363
|
+
results?: Array<{
|
10364
|
+
__typename?: 'Software';
|
10365
|
+
id: string;
|
10366
|
+
name: string;
|
10367
|
+
alternateNames?: Array<string | null> | null;
|
10368
|
+
creationDate: any;
|
10369
|
+
releaseDate?: any | null;
|
10370
|
+
developer?: string | null;
|
10371
|
+
} | null> | null;
|
10372
|
+
} | null;
|
10373
|
+
};
|
10374
|
+
export type UpdateSoftwareMutationVariables = Exact<{
|
10375
|
+
software: SoftwareUpdateInput;
|
10376
|
+
}>;
|
10377
|
+
export type UpdateSoftwareMutation = {
|
10378
|
+
__typename?: 'Mutation';
|
10379
|
+
updateSoftware?: {
|
10380
|
+
__typename?: 'Software';
|
10381
|
+
id: string;
|
10382
|
+
name: string;
|
10383
|
+
} | null;
|
10384
|
+
};
|
9625
10385
|
export type CreateSpecificationMutationVariables = Exact<{
|
9626
10386
|
specification: SpecificationInput;
|
9627
10387
|
}>;
|