graphlit-client 1.0.20240425001 → 1.0.20240426002

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.
@@ -3780,14 +3780,32 @@ export type Mutation = {
3780
3780
  deleteAlerts?: Maybe<Array<Maybe<Alert>>>;
3781
3781
  /** Bulk deletes alerts based on the provided filter criteria. */
3782
3782
  deleteAllAlerts?: Maybe<Array<Maybe<Alert>>>;
3783
+ /** Bulk deletes categories based on the provided filter criteria. */
3784
+ deleteAllCategories?: Maybe<Array<Maybe<Category>>>;
3783
3785
  /** Bulk deletes collections based on the provided filter criteria. */
3784
3786
  deleteAllCollections?: Maybe<Array<Maybe<Collection>>>;
3785
3787
  /** Bulk deletes content based on the provided filter criteria. */
3786
3788
  deleteAllContents?: Maybe<Array<Maybe<Content>>>;
3787
3789
  /** Bulk deletes conversations based on the provided filter criteria. */
3788
3790
  deleteAllConversations?: Maybe<Array<Maybe<Conversation>>>;
3791
+ /** Bulk deletes events based on the provided filter criteria. */
3792
+ deleteAllEvents?: Maybe<Array<Maybe<Event>>>;
3789
3793
  /** Bulk deletes feeds based on the provided filter criteria. */
3790
3794
  deleteAllFeeds?: Maybe<Array<Maybe<Feed>>>;
3795
+ /** Bulk deletes labels based on the provided filter criteria. */
3796
+ deleteAllLabels?: Maybe<Array<Maybe<Label>>>;
3797
+ /** Bulk deletes organizations based on the provided filter criteria. */
3798
+ deleteAllOrganizations?: Maybe<Array<Maybe<Organization>>>;
3799
+ /** Bulk deletes persons based on the provided filter criteria. */
3800
+ deleteAllPersons?: Maybe<Array<Maybe<Person>>>;
3801
+ /** Bulk deletes places based on the provided filter criteria. */
3802
+ deleteAllPlaces?: Maybe<Array<Maybe<Place>>>;
3803
+ /** Bulk deletes products based on the provided filter criteria. */
3804
+ deleteAllProducts?: Maybe<Array<Maybe<Product>>>;
3805
+ /** Bulk deletes repos based on the provided filter criteria. */
3806
+ deleteAllRepos?: Maybe<Array<Maybe<Repo>>>;
3807
+ /** Bulk deletes software based on the provided filter criteria. */
3808
+ deleteAllSoftwares?: Maybe<Array<Maybe<Software>>>;
3791
3809
  /** Bulk deletes workflows based on the provided filter criteria. */
3792
3810
  deleteAllWorkflows?: Maybe<Array<Maybe<Workflow>>>;
3793
3811
  /** Bulk deletes categories. */
@@ -4021,6 +4039,10 @@ export type MutationDeleteAlertsArgs = {
4021
4039
  export type MutationDeleteAllAlertsArgs = {
4022
4040
  filter?: InputMaybe<AlertFilter>;
4023
4041
  };
4042
+ export type MutationDeleteAllCategoriesArgs = {
4043
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4044
+ filter?: InputMaybe<CategoryFilter>;
4045
+ };
4024
4046
  export type MutationDeleteAllCollectionsArgs = {
4025
4047
  correlationId?: InputMaybe<Scalars['String']['input']>;
4026
4048
  filter?: InputMaybe<CollectionFilter>;
@@ -4033,9 +4055,41 @@ export type MutationDeleteAllConversationsArgs = {
4033
4055
  correlationId?: InputMaybe<Scalars['String']['input']>;
4034
4056
  filter?: InputMaybe<ConversationFilter>;
4035
4057
  };
4058
+ export type MutationDeleteAllEventsArgs = {
4059
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4060
+ filter?: InputMaybe<EventFilter>;
4061
+ };
4036
4062
  export type MutationDeleteAllFeedsArgs = {
4037
4063
  filter?: InputMaybe<FeedFilter>;
4038
4064
  };
4065
+ export type MutationDeleteAllLabelsArgs = {
4066
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4067
+ filter?: InputMaybe<LabelFilter>;
4068
+ };
4069
+ export type MutationDeleteAllOrganizationsArgs = {
4070
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4071
+ filter?: InputMaybe<OrganizationFilter>;
4072
+ };
4073
+ export type MutationDeleteAllPersonsArgs = {
4074
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4075
+ filter?: InputMaybe<PersonFilter>;
4076
+ };
4077
+ export type MutationDeleteAllPlacesArgs = {
4078
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4079
+ filter?: InputMaybe<PlaceFilter>;
4080
+ };
4081
+ export type MutationDeleteAllProductsArgs = {
4082
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4083
+ filter?: InputMaybe<ProductFilter>;
4084
+ };
4085
+ export type MutationDeleteAllReposArgs = {
4086
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4087
+ filter?: InputMaybe<RepoFilter>;
4088
+ };
4089
+ export type MutationDeleteAllSoftwaresArgs = {
4090
+ correlationId?: InputMaybe<Scalars['String']['input']>;
4091
+ filter?: InputMaybe<SoftwareFilter>;
4092
+ };
4039
4093
  export type MutationDeleteAllWorkflowsArgs = {
4040
4094
  correlationId?: InputMaybe<Scalars['String']['input']>;
4041
4095
  filter?: InputMaybe<WorkflowFilter>;
@@ -7212,6 +7266,8 @@ export declare enum TextRoles {
7212
7266
  Heading3 = "HEADING3",
7213
7267
  /** Heading 4 */
7214
7268
  Heading4 = "HEADING4",
7269
+ /** Heading 5 */
7270
+ Heading5 = "HEADING5",
7215
7271
  /** List Item */
7216
7272
  ListItem = "LIST_ITEM",
7217
7273
  /** Page Footer */
@@ -7830,6 +7886,90 @@ export type UpdateAlertMutation = {
7830
7886
  type: AlertTypes;
7831
7887
  } | null;
7832
7888
  };
7889
+ export type CreateCategoryMutationVariables = Exact<{
7890
+ category: CategoryInput;
7891
+ }>;
7892
+ export type CreateCategoryMutation = {
7893
+ __typename?: 'Mutation';
7894
+ createCategory?: {
7895
+ __typename?: 'Category';
7896
+ id: string;
7897
+ name: string;
7898
+ } | null;
7899
+ };
7900
+ export type DeleteAllCategoriesMutationVariables = Exact<{
7901
+ filter: CategoryFilter;
7902
+ }>;
7903
+ export type DeleteAllCategoriesMutation = {
7904
+ __typename?: 'Mutation';
7905
+ deleteAllCategories?: Array<{
7906
+ __typename?: 'Category';
7907
+ id: string;
7908
+ state: EntityState;
7909
+ } | null> | null;
7910
+ };
7911
+ export type DeleteCategoriesMutationVariables = Exact<{
7912
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
7913
+ }>;
7914
+ export type DeleteCategoriesMutation = {
7915
+ __typename?: 'Mutation';
7916
+ deleteCategories?: Array<{
7917
+ __typename?: 'Category';
7918
+ id: string;
7919
+ state: EntityState;
7920
+ } | null> | null;
7921
+ };
7922
+ export type DeleteCategoryMutationVariables = Exact<{
7923
+ id: Scalars['ID']['input'];
7924
+ }>;
7925
+ export type DeleteCategoryMutation = {
7926
+ __typename?: 'Mutation';
7927
+ deleteCategory?: {
7928
+ __typename?: 'Category';
7929
+ id: string;
7930
+ state: EntityState;
7931
+ } | null;
7932
+ };
7933
+ export type GetCategoryQueryVariables = Exact<{
7934
+ id: Scalars['ID']['input'];
7935
+ }>;
7936
+ export type GetCategoryQuery = {
7937
+ __typename?: 'Query';
7938
+ category?: {
7939
+ __typename?: 'Category';
7940
+ id: string;
7941
+ name: string;
7942
+ description?: string | null;
7943
+ creationDate: any;
7944
+ } | null;
7945
+ };
7946
+ export type QueryCategoriesQueryVariables = Exact<{
7947
+ filter: CategoryFilter;
7948
+ }>;
7949
+ export type QueryCategoriesQuery = {
7950
+ __typename?: 'Query';
7951
+ categories?: {
7952
+ __typename?: 'CategoryResults';
7953
+ results?: Array<{
7954
+ __typename?: 'Category';
7955
+ id: string;
7956
+ name: string;
7957
+ description?: string | null;
7958
+ creationDate: any;
7959
+ } | null> | null;
7960
+ } | null;
7961
+ };
7962
+ export type UpdateCategoryMutationVariables = Exact<{
7963
+ category: CategoryUpdateInput;
7964
+ }>;
7965
+ export type UpdateCategoryMutation = {
7966
+ __typename?: 'Mutation';
7967
+ updateCategory?: {
7968
+ __typename?: 'Category';
7969
+ id: string;
7970
+ name: string;
7971
+ } | null;
7972
+ };
7833
7973
  export type AddContentsToCollectionsMutationVariables = Exact<{
7834
7974
  contents: Array<EntityReferenceInput> | EntityReferenceInput;
7835
7975
  collections: Array<EntityReferenceInput> | EntityReferenceInput;
@@ -9004,6 +9144,126 @@ export type UpdateConversationMutation = {
9004
9144
  type?: ConversationTypes | null;
9005
9145
  } | null;
9006
9146
  };
9147
+ export type CreateEventMutationVariables = Exact<{
9148
+ event: EventInput;
9149
+ }>;
9150
+ export type CreateEventMutation = {
9151
+ __typename?: 'Mutation';
9152
+ createEvent?: {
9153
+ __typename?: 'Event';
9154
+ id: string;
9155
+ name: string;
9156
+ } | null;
9157
+ };
9158
+ export type DeleteAllEventsMutationVariables = Exact<{
9159
+ filter: EventFilter;
9160
+ }>;
9161
+ export type DeleteAllEventsMutation = {
9162
+ __typename?: 'Mutation';
9163
+ deleteAllEvents?: Array<{
9164
+ __typename?: 'Event';
9165
+ id: string;
9166
+ state: EntityState;
9167
+ } | null> | null;
9168
+ };
9169
+ export type DeleteEventMutationVariables = Exact<{
9170
+ id: Scalars['ID']['input'];
9171
+ }>;
9172
+ export type DeleteEventMutation = {
9173
+ __typename?: 'Mutation';
9174
+ deleteEvent?: {
9175
+ __typename?: 'Event';
9176
+ id: string;
9177
+ state: EntityState;
9178
+ } | null;
9179
+ };
9180
+ export type DeleteEventsMutationVariables = Exact<{
9181
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9182
+ }>;
9183
+ export type DeleteEventsMutation = {
9184
+ __typename?: 'Mutation';
9185
+ deleteEvents?: Array<{
9186
+ __typename?: 'Event';
9187
+ id: string;
9188
+ state: EntityState;
9189
+ } | null> | null;
9190
+ };
9191
+ export type GetEventQueryVariables = Exact<{
9192
+ id: Scalars['ID']['input'];
9193
+ }>;
9194
+ export type GetEventQuery = {
9195
+ __typename?: 'Query';
9196
+ event?: {
9197
+ __typename?: 'Event';
9198
+ id: string;
9199
+ name: string;
9200
+ alternateNames?: Array<string | null> | null;
9201
+ creationDate: any;
9202
+ startDate?: any | null;
9203
+ endDate?: any | null;
9204
+ availabilityStartDate?: any | null;
9205
+ availabilityEndDate?: any | null;
9206
+ price?: any | null;
9207
+ minPrice?: any | null;
9208
+ maxPrice?: any | null;
9209
+ priceCurrency?: string | null;
9210
+ isAccessibleForFree?: boolean | null;
9211
+ typicalAgeRange?: string | null;
9212
+ address?: {
9213
+ __typename?: 'Address';
9214
+ streetAddress?: string | null;
9215
+ city?: string | null;
9216
+ region?: string | null;
9217
+ country?: string | null;
9218
+ postalCode?: string | null;
9219
+ } | null;
9220
+ } | null;
9221
+ };
9222
+ export type QueryEventsQueryVariables = Exact<{
9223
+ filter: EventFilter;
9224
+ }>;
9225
+ export type QueryEventsQuery = {
9226
+ __typename?: 'Query';
9227
+ events?: {
9228
+ __typename?: 'EventResults';
9229
+ results?: Array<{
9230
+ __typename?: 'Event';
9231
+ id: string;
9232
+ name: string;
9233
+ alternateNames?: Array<string | null> | null;
9234
+ creationDate: any;
9235
+ startDate?: any | null;
9236
+ endDate?: any | null;
9237
+ availabilityStartDate?: any | null;
9238
+ availabilityEndDate?: any | null;
9239
+ price?: any | null;
9240
+ minPrice?: any | null;
9241
+ maxPrice?: any | null;
9242
+ priceCurrency?: string | null;
9243
+ isAccessibleForFree?: boolean | null;
9244
+ typicalAgeRange?: string | null;
9245
+ address?: {
9246
+ __typename?: 'Address';
9247
+ streetAddress?: string | null;
9248
+ city?: string | null;
9249
+ region?: string | null;
9250
+ country?: string | null;
9251
+ postalCode?: string | null;
9252
+ } | null;
9253
+ } | null> | null;
9254
+ } | null;
9255
+ };
9256
+ export type UpdateEventMutationVariables = Exact<{
9257
+ event: EventUpdateInput;
9258
+ }>;
9259
+ export type UpdateEventMutation = {
9260
+ __typename?: 'Mutation';
9261
+ updateEvent?: {
9262
+ __typename?: 'Event';
9263
+ id: string;
9264
+ name: string;
9265
+ } | null;
9266
+ };
9007
9267
  export type CreateFeedMutationVariables = Exact<{
9008
9268
  feed: FeedInput;
9009
9269
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -9447,130 +9707,597 @@ export type UpdateFeedMutation = {
9447
9707
  type: FeedTypes;
9448
9708
  } | null;
9449
9709
  };
9450
- export type CreditsQueryVariables = Exact<{
9451
- startDate: Scalars['DateTime']['input'];
9452
- duration: Scalars['TimeSpan']['input'];
9710
+ export type CreateLabelMutationVariables = Exact<{
9711
+ label: LabelInput;
9453
9712
  }>;
9454
- export type CreditsQuery = {
9455
- __typename?: 'Query';
9456
- credits?: Array<{
9457
- __typename?: 'ProjectCredits';
9458
- correlationId?: string | null;
9459
- ownerId?: string | null;
9460
- credits?: any | null;
9461
- storageRatio?: any | null;
9462
- computeRatio?: any | null;
9463
- preparationRatio?: any | null;
9464
- extractionRatio?: any | null;
9465
- enrichmentRatio?: any | null;
9466
- publishingRatio?: any | null;
9467
- searchRatio?: any | null;
9468
- conversationRatio?: any | null;
9469
- } | null> | null;
9713
+ export type CreateLabelMutation = {
9714
+ __typename?: 'Mutation';
9715
+ createLabel?: {
9716
+ __typename?: 'Label';
9717
+ id: string;
9718
+ name: string;
9719
+ } | null;
9470
9720
  };
9471
- export type GetProjectQueryVariables = Exact<{
9472
- [key: string]: never;
9721
+ export type DeleteAllLabelsMutationVariables = Exact<{
9722
+ filter: LabelFilter;
9473
9723
  }>;
9474
- export type GetProjectQuery = {
9475
- __typename?: 'Query';
9476
- project?: {
9477
- __typename?: 'Project';
9724
+ export type DeleteAllLabelsMutation = {
9725
+ __typename?: 'Mutation';
9726
+ deleteAllLabels?: Array<{
9727
+ __typename?: 'Label';
9478
9728
  id: string;
9479
- name: string;
9480
- creationDate: any;
9481
- modifiedDate?: any | null;
9482
9729
  state: EntityState;
9483
- environmentType?: EnvironmentTypes | null;
9484
- platform?: ResourceConnectorTypes | null;
9485
- region?: string | null;
9486
- callbackUri?: any | null;
9487
- workflow?: {
9488
- __typename?: 'Workflow';
9489
- id: string;
9490
- name: string;
9491
- } | null;
9492
- specification?: {
9493
- __typename?: 'Specification';
9494
- id: string;
9495
- name: string;
9496
- } | null;
9497
- quota?: {
9498
- __typename?: 'ProjectQuota';
9499
- storage?: number | null;
9500
- contents?: number | null;
9501
- feeds?: number | null;
9502
- posts?: number | null;
9503
- conversations?: number | null;
9504
- } | null;
9505
- } | null;
9730
+ } | null> | null;
9506
9731
  };
9507
- export type LookupCreditsQueryVariables = Exact<{
9508
- correlationId: Scalars['String']['input'];
9732
+ export type DeleteLabelMutationVariables = Exact<{
9733
+ id: Scalars['ID']['input'];
9509
9734
  }>;
9510
- export type LookupCreditsQuery = {
9511
- __typename?: 'Query';
9512
- lookupCredits?: {
9513
- __typename?: 'ProjectCredits';
9514
- correlationId?: string | null;
9515
- ownerId?: string | null;
9516
- credits?: any | null;
9517
- storageRatio?: any | null;
9518
- computeRatio?: any | null;
9519
- preparationRatio?: any | null;
9520
- extractionRatio?: any | null;
9521
- enrichmentRatio?: any | null;
9522
- publishingRatio?: any | null;
9523
- searchRatio?: any | null;
9524
- conversationRatio?: any | null;
9735
+ export type DeleteLabelMutation = {
9736
+ __typename?: 'Mutation';
9737
+ deleteLabel?: {
9738
+ __typename?: 'Label';
9739
+ id: string;
9740
+ state: EntityState;
9525
9741
  } | null;
9526
9742
  };
9527
- export type LookupUsageQueryVariables = Exact<{
9528
- correlationId: Scalars['String']['input'];
9743
+ export type DeleteLabelsMutationVariables = Exact<{
9744
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9529
9745
  }>;
9530
- export type LookupUsageQuery = {
9531
- __typename?: 'Query';
9532
- lookupUsage?: Array<{
9533
- __typename?: 'ProjectUsageRecord';
9534
- correlationId?: string | null;
9535
- date: any;
9536
- credits?: any | null;
9537
- name: string;
9538
- metric?: BillableMetrics | null;
9539
- workflow?: string | null;
9540
- entityType?: EntityTypes | null;
9541
- entityId?: string | null;
9542
- projectId: string;
9543
- ownerId: string;
9544
- uri?: string | null;
9545
- duration?: any | null;
9546
- throughput?: number | null;
9547
- contentType?: ContentTypes | null;
9548
- fileType?: FileTypes | null;
9549
- modelService?: string | null;
9550
- modelName?: string | null;
9551
- processorName?: string | null;
9552
- prompt?: string | null;
9553
- promptTokens?: number | null;
9554
- completion?: string | null;
9555
- completionTokens?: number | null;
9556
- tokens?: number | null;
9557
- count?: number | null;
9558
- request?: string | null;
9559
- variables?: string | null;
9560
- response?: string | null;
9746
+ export type DeleteLabelsMutation = {
9747
+ __typename?: 'Mutation';
9748
+ deleteLabels?: Array<{
9749
+ __typename?: 'Label';
9750
+ id: string;
9751
+ state: EntityState;
9561
9752
  } | null> | null;
9562
9753
  };
9563
- export type ProjectQueryVariables = Exact<{
9564
- [key: string]: never;
9754
+ export type GetLabelQueryVariables = Exact<{
9755
+ id: Scalars['ID']['input'];
9565
9756
  }>;
9566
- export type ProjectQuery = {
9757
+ export type GetLabelQuery = {
9567
9758
  __typename?: 'Query';
9568
- project?: {
9569
- __typename?: 'Project';
9759
+ label?: {
9760
+ __typename?: 'Label';
9570
9761
  id: string;
9571
9762
  name: string;
9763
+ description?: string | null;
9572
9764
  creationDate: any;
9573
- modifiedDate?: any | null;
9765
+ } | null;
9766
+ };
9767
+ export type QueryLabelsQueryVariables = Exact<{
9768
+ filter: LabelFilter;
9769
+ }>;
9770
+ export type QueryLabelsQuery = {
9771
+ __typename?: 'Query';
9772
+ labels?: {
9773
+ __typename?: 'LabelResults';
9774
+ results?: Array<{
9775
+ __typename?: 'Label';
9776
+ id: string;
9777
+ name: string;
9778
+ description?: string | null;
9779
+ creationDate: any;
9780
+ } | null> | null;
9781
+ } | null;
9782
+ };
9783
+ export type UpdateLabelMutationVariables = Exact<{
9784
+ label: LabelUpdateInput;
9785
+ }>;
9786
+ export type UpdateLabelMutation = {
9787
+ __typename?: 'Mutation';
9788
+ updateLabel?: {
9789
+ __typename?: 'Label';
9790
+ id: string;
9791
+ name: string;
9792
+ } | null;
9793
+ };
9794
+ export type CreateObservationMutationVariables = Exact<{
9795
+ observation: ObservationInput;
9796
+ }>;
9797
+ export type CreateObservationMutation = {
9798
+ __typename?: 'Mutation';
9799
+ createObservation?: {
9800
+ __typename?: 'Observation';
9801
+ id: string;
9802
+ state: EntityState;
9803
+ } | null;
9804
+ };
9805
+ export type DeleteObservationMutationVariables = Exact<{
9806
+ id: Scalars['ID']['input'];
9807
+ }>;
9808
+ export type DeleteObservationMutation = {
9809
+ __typename?: 'Mutation';
9810
+ deleteObservation?: {
9811
+ __typename?: 'Observation';
9812
+ id: string;
9813
+ state: EntityState;
9814
+ } | null;
9815
+ };
9816
+ export type UpdateObservationMutationVariables = Exact<{
9817
+ observation: ObservationUpdateInput;
9818
+ }>;
9819
+ export type UpdateObservationMutation = {
9820
+ __typename?: 'Mutation';
9821
+ updateObservation?: {
9822
+ __typename?: 'Observation';
9823
+ id: string;
9824
+ state: EntityState;
9825
+ } | null;
9826
+ };
9827
+ export type CreateOrganizationMutationVariables = Exact<{
9828
+ organization: OrganizationInput;
9829
+ }>;
9830
+ export type CreateOrganizationMutation = {
9831
+ __typename?: 'Mutation';
9832
+ createOrganization?: {
9833
+ __typename?: 'Organization';
9834
+ id: string;
9835
+ name: string;
9836
+ } | null;
9837
+ };
9838
+ export type DeleteAllOrganizationsMutationVariables = Exact<{
9839
+ filter: OrganizationFilter;
9840
+ }>;
9841
+ export type DeleteAllOrganizationsMutation = {
9842
+ __typename?: 'Mutation';
9843
+ deleteAllOrganizations?: Array<{
9844
+ __typename?: 'Organization';
9845
+ id: string;
9846
+ state: EntityState;
9847
+ } | null> | null;
9848
+ };
9849
+ export type DeleteOrganizationMutationVariables = Exact<{
9850
+ id: Scalars['ID']['input'];
9851
+ }>;
9852
+ export type DeleteOrganizationMutation = {
9853
+ __typename?: 'Mutation';
9854
+ deleteOrganization?: {
9855
+ __typename?: 'Organization';
9856
+ id: string;
9857
+ state: EntityState;
9858
+ } | null;
9859
+ };
9860
+ export type DeleteOrganizationsMutationVariables = Exact<{
9861
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9862
+ }>;
9863
+ export type DeleteOrganizationsMutation = {
9864
+ __typename?: 'Mutation';
9865
+ deleteOrganizations?: Array<{
9866
+ __typename?: 'Organization';
9867
+ id: string;
9868
+ state: EntityState;
9869
+ } | null> | null;
9870
+ };
9871
+ export type GetOrganizationQueryVariables = Exact<{
9872
+ id: Scalars['ID']['input'];
9873
+ }>;
9874
+ export type GetOrganizationQuery = {
9875
+ __typename?: 'Query';
9876
+ organization?: {
9877
+ __typename?: 'Organization';
9878
+ id: string;
9879
+ name: string;
9880
+ alternateNames?: Array<string | null> | null;
9881
+ creationDate: any;
9882
+ foundingDate?: any | null;
9883
+ industries?: Array<string | null> | null;
9884
+ revenue?: any | null;
9885
+ revenueCurrency?: string | null;
9886
+ investment?: any | null;
9887
+ investmentCurrency?: string | null;
9888
+ address?: {
9889
+ __typename?: 'Address';
9890
+ streetAddress?: string | null;
9891
+ city?: string | null;
9892
+ region?: string | null;
9893
+ country?: string | null;
9894
+ postalCode?: string | null;
9895
+ } | null;
9896
+ } | null;
9897
+ };
9898
+ export type QueryOrganizationsQueryVariables = Exact<{
9899
+ filter: OrganizationFilter;
9900
+ }>;
9901
+ export type QueryOrganizationsQuery = {
9902
+ __typename?: 'Query';
9903
+ organizations?: {
9904
+ __typename?: 'OrganizationResults';
9905
+ results?: Array<{
9906
+ __typename?: 'Organization';
9907
+ id: string;
9908
+ name: string;
9909
+ alternateNames?: Array<string | null> | null;
9910
+ creationDate: any;
9911
+ foundingDate?: any | null;
9912
+ industries?: Array<string | null> | null;
9913
+ revenue?: any | null;
9914
+ revenueCurrency?: string | null;
9915
+ investment?: any | null;
9916
+ investmentCurrency?: string | null;
9917
+ address?: {
9918
+ __typename?: 'Address';
9919
+ streetAddress?: string | null;
9920
+ city?: string | null;
9921
+ region?: string | null;
9922
+ country?: string | null;
9923
+ postalCode?: string | null;
9924
+ } | null;
9925
+ } | null> | null;
9926
+ } | null;
9927
+ };
9928
+ export type UpdateOrganizationMutationVariables = Exact<{
9929
+ organization: OrganizationUpdateInput;
9930
+ }>;
9931
+ export type UpdateOrganizationMutation = {
9932
+ __typename?: 'Mutation';
9933
+ updateOrganization?: {
9934
+ __typename?: 'Organization';
9935
+ id: string;
9936
+ name: string;
9937
+ } | null;
9938
+ };
9939
+ export type CreatePersonMutationVariables = Exact<{
9940
+ person: PersonInput;
9941
+ }>;
9942
+ export type CreatePersonMutation = {
9943
+ __typename?: 'Mutation';
9944
+ createPerson?: {
9945
+ __typename?: 'Person';
9946
+ id: string;
9947
+ name: string;
9948
+ } | null;
9949
+ };
9950
+ export type DeleteAllPersonsMutationVariables = Exact<{
9951
+ filter: PersonFilter;
9952
+ }>;
9953
+ export type DeleteAllPersonsMutation = {
9954
+ __typename?: 'Mutation';
9955
+ deleteAllPersons?: Array<{
9956
+ __typename?: 'Person';
9957
+ id: string;
9958
+ state: EntityState;
9959
+ } | null> | null;
9960
+ };
9961
+ export type DeletePersonMutationVariables = Exact<{
9962
+ id: Scalars['ID']['input'];
9963
+ }>;
9964
+ export type DeletePersonMutation = {
9965
+ __typename?: 'Mutation';
9966
+ deletePerson?: {
9967
+ __typename?: 'Person';
9968
+ id: string;
9969
+ state: EntityState;
9970
+ } | null;
9971
+ };
9972
+ export type DeletePersonsMutationVariables = Exact<{
9973
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9974
+ }>;
9975
+ export type DeletePersonsMutation = {
9976
+ __typename?: 'Mutation';
9977
+ deletePersons?: Array<{
9978
+ __typename?: 'Person';
9979
+ id: string;
9980
+ state: EntityState;
9981
+ } | null> | null;
9982
+ };
9983
+ export type GetPersonQueryVariables = Exact<{
9984
+ id: Scalars['ID']['input'];
9985
+ }>;
9986
+ export type GetPersonQuery = {
9987
+ __typename?: 'Query';
9988
+ person?: {
9989
+ __typename?: 'Person';
9990
+ id: string;
9991
+ name: string;
9992
+ alternateNames?: Array<string | null> | null;
9993
+ creationDate: any;
9994
+ email?: string | null;
9995
+ givenName?: string | null;
9996
+ familyName?: string | null;
9997
+ phoneNumber?: string | null;
9998
+ birthDate?: any | null;
9999
+ title?: string | null;
10000
+ occupation?: string | null;
10001
+ education?: string | null;
10002
+ address?: {
10003
+ __typename?: 'Address';
10004
+ streetAddress?: string | null;
10005
+ city?: string | null;
10006
+ region?: string | null;
10007
+ country?: string | null;
10008
+ postalCode?: string | null;
10009
+ } | null;
10010
+ } | null;
10011
+ };
10012
+ export type QueryPersonsQueryVariables = Exact<{
10013
+ filter: PersonFilter;
10014
+ }>;
10015
+ export type QueryPersonsQuery = {
10016
+ __typename?: 'Query';
10017
+ persons?: {
10018
+ __typename?: 'PersonResults';
10019
+ results?: Array<{
10020
+ __typename?: 'Person';
10021
+ id: string;
10022
+ name: string;
10023
+ alternateNames?: Array<string | null> | null;
10024
+ creationDate: any;
10025
+ email?: string | null;
10026
+ givenName?: string | null;
10027
+ familyName?: string | null;
10028
+ phoneNumber?: string | null;
10029
+ birthDate?: any | null;
10030
+ title?: string | null;
10031
+ occupation?: string | null;
10032
+ education?: string | null;
10033
+ address?: {
10034
+ __typename?: 'Address';
10035
+ streetAddress?: string | null;
10036
+ city?: string | null;
10037
+ region?: string | null;
10038
+ country?: string | null;
10039
+ postalCode?: string | null;
10040
+ } | null;
10041
+ } | null> | null;
10042
+ } | null;
10043
+ };
10044
+ export type UpdatePersonMutationVariables = Exact<{
10045
+ person: PersonUpdateInput;
10046
+ }>;
10047
+ export type UpdatePersonMutation = {
10048
+ __typename?: 'Mutation';
10049
+ updatePerson?: {
10050
+ __typename?: 'Person';
10051
+ id: string;
10052
+ name: string;
10053
+ } | null;
10054
+ };
10055
+ export type CreatePlaceMutationVariables = Exact<{
10056
+ place: PlaceInput;
10057
+ }>;
10058
+ export type CreatePlaceMutation = {
10059
+ __typename?: 'Mutation';
10060
+ createPlace?: {
10061
+ __typename?: 'Place';
10062
+ id: string;
10063
+ name: string;
10064
+ } | null;
10065
+ };
10066
+ export type DeleteAllPlacesMutationVariables = Exact<{
10067
+ filter: PlaceFilter;
10068
+ }>;
10069
+ export type DeleteAllPlacesMutation = {
10070
+ __typename?: 'Mutation';
10071
+ deleteAllPlaces?: Array<{
10072
+ __typename?: 'Place';
10073
+ id: string;
10074
+ state: EntityState;
10075
+ } | null> | null;
10076
+ };
10077
+ export type DeletePlaceMutationVariables = Exact<{
10078
+ id: Scalars['ID']['input'];
10079
+ }>;
10080
+ export type DeletePlaceMutation = {
10081
+ __typename?: 'Mutation';
10082
+ deletePlace?: {
10083
+ __typename?: 'Place';
10084
+ id: string;
10085
+ state: EntityState;
10086
+ } | null;
10087
+ };
10088
+ export type DeletePlacesMutationVariables = Exact<{
10089
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10090
+ }>;
10091
+ export type DeletePlacesMutation = {
10092
+ __typename?: 'Mutation';
10093
+ deletePlaces?: Array<{
10094
+ __typename?: 'Place';
10095
+ id: string;
10096
+ state: EntityState;
10097
+ } | null> | null;
10098
+ };
10099
+ export type GetPlaceQueryVariables = Exact<{
10100
+ id: Scalars['ID']['input'];
10101
+ }>;
10102
+ export type GetPlaceQuery = {
10103
+ __typename?: 'Query';
10104
+ place?: {
10105
+ __typename?: 'Place';
10106
+ id: string;
10107
+ name: string;
10108
+ alternateNames?: Array<string | null> | null;
10109
+ creationDate: any;
10110
+ address?: {
10111
+ __typename?: 'Address';
10112
+ streetAddress?: string | null;
10113
+ city?: string | null;
10114
+ region?: string | null;
10115
+ country?: string | null;
10116
+ postalCode?: string | null;
10117
+ } | null;
10118
+ } | null;
10119
+ };
10120
+ export type QueryPlacesQueryVariables = Exact<{
10121
+ filter: PlaceFilter;
10122
+ }>;
10123
+ export type QueryPlacesQuery = {
10124
+ __typename?: 'Query';
10125
+ places?: {
10126
+ __typename?: 'PlaceResults';
10127
+ results?: Array<{
10128
+ __typename?: 'Place';
10129
+ id: string;
10130
+ name: string;
10131
+ alternateNames?: Array<string | null> | null;
10132
+ creationDate: any;
10133
+ address?: {
10134
+ __typename?: 'Address';
10135
+ streetAddress?: string | null;
10136
+ city?: string | null;
10137
+ region?: string | null;
10138
+ country?: string | null;
10139
+ postalCode?: string | null;
10140
+ } | null;
10141
+ } | null> | null;
10142
+ } | null;
10143
+ };
10144
+ export type UpdatePlaceMutationVariables = Exact<{
10145
+ place: PlaceUpdateInput;
10146
+ }>;
10147
+ export type UpdatePlaceMutation = {
10148
+ __typename?: 'Mutation';
10149
+ updatePlace?: {
10150
+ __typename?: 'Place';
10151
+ id: string;
10152
+ name: string;
10153
+ } | null;
10154
+ };
10155
+ export type CreateProductMutationVariables = Exact<{
10156
+ product: ProductInput;
10157
+ }>;
10158
+ export type CreateProductMutation = {
10159
+ __typename?: 'Mutation';
10160
+ createProduct?: {
10161
+ __typename?: 'Product';
10162
+ id: string;
10163
+ name: string;
10164
+ } | null;
10165
+ };
10166
+ export type DeleteAllProductsMutationVariables = Exact<{
10167
+ filter: ProductFilter;
10168
+ }>;
10169
+ export type DeleteAllProductsMutation = {
10170
+ __typename?: 'Mutation';
10171
+ deleteAllProducts?: Array<{
10172
+ __typename?: 'Product';
10173
+ id: string;
10174
+ state: EntityState;
10175
+ } | null> | null;
10176
+ };
10177
+ export type DeleteProductMutationVariables = Exact<{
10178
+ id: Scalars['ID']['input'];
10179
+ }>;
10180
+ export type DeleteProductMutation = {
10181
+ __typename?: 'Mutation';
10182
+ deleteProduct?: {
10183
+ __typename?: 'Product';
10184
+ id: string;
10185
+ state: EntityState;
10186
+ } | null;
10187
+ };
10188
+ export type DeleteProductsMutationVariables = Exact<{
10189
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10190
+ }>;
10191
+ export type DeleteProductsMutation = {
10192
+ __typename?: 'Mutation';
10193
+ deleteProducts?: Array<{
10194
+ __typename?: 'Product';
10195
+ id: string;
10196
+ state: EntityState;
10197
+ } | null> | null;
10198
+ };
10199
+ export type GetProductQueryVariables = Exact<{
10200
+ id: Scalars['ID']['input'];
10201
+ }>;
10202
+ export type GetProductQuery = {
10203
+ __typename?: 'Query';
10204
+ product?: {
10205
+ __typename?: 'Product';
10206
+ id: string;
10207
+ name: string;
10208
+ alternateNames?: Array<string | null> | null;
10209
+ creationDate: any;
10210
+ manufacturer?: string | null;
10211
+ model?: string | null;
10212
+ brand?: string | null;
10213
+ upc?: string | null;
10214
+ sku?: string | null;
10215
+ releaseDate?: any | null;
10216
+ productionDate?: any | null;
10217
+ address?: {
10218
+ __typename?: 'Address';
10219
+ streetAddress?: string | null;
10220
+ city?: string | null;
10221
+ region?: string | null;
10222
+ country?: string | null;
10223
+ postalCode?: string | null;
10224
+ } | null;
10225
+ } | null;
10226
+ };
10227
+ export type QueryProductsQueryVariables = Exact<{
10228
+ filter: ProductFilter;
10229
+ }>;
10230
+ export type QueryProductsQuery = {
10231
+ __typename?: 'Query';
10232
+ products?: {
10233
+ __typename?: 'ProductResults';
10234
+ results?: Array<{
10235
+ __typename?: 'Product';
10236
+ id: string;
10237
+ name: string;
10238
+ alternateNames?: Array<string | null> | null;
10239
+ creationDate: any;
10240
+ manufacturer?: string | null;
10241
+ model?: string | null;
10242
+ brand?: string | null;
10243
+ upc?: string | null;
10244
+ sku?: string | null;
10245
+ releaseDate?: any | null;
10246
+ productionDate?: any | null;
10247
+ address?: {
10248
+ __typename?: 'Address';
10249
+ streetAddress?: string | null;
10250
+ city?: string | null;
10251
+ region?: string | null;
10252
+ country?: string | null;
10253
+ postalCode?: string | null;
10254
+ } | null;
10255
+ } | null> | null;
10256
+ } | null;
10257
+ };
10258
+ export type UpdateProductMutationVariables = Exact<{
10259
+ product: ProductUpdateInput;
10260
+ }>;
10261
+ export type UpdateProductMutation = {
10262
+ __typename?: 'Mutation';
10263
+ updateProduct?: {
10264
+ __typename?: 'Product';
10265
+ id: string;
10266
+ name: string;
10267
+ } | null;
10268
+ };
10269
+ export type CreditsQueryVariables = Exact<{
10270
+ startDate: Scalars['DateTime']['input'];
10271
+ duration: Scalars['TimeSpan']['input'];
10272
+ }>;
10273
+ export type CreditsQuery = {
10274
+ __typename?: 'Query';
10275
+ credits?: Array<{
10276
+ __typename?: 'ProjectCredits';
10277
+ correlationId?: string | null;
10278
+ ownerId?: string | null;
10279
+ credits?: any | null;
10280
+ storageRatio?: any | null;
10281
+ computeRatio?: any | null;
10282
+ preparationRatio?: any | null;
10283
+ extractionRatio?: any | null;
10284
+ enrichmentRatio?: any | null;
10285
+ publishingRatio?: any | null;
10286
+ searchRatio?: any | null;
10287
+ conversationRatio?: any | null;
10288
+ } | null> | null;
10289
+ };
10290
+ export type GetProjectQueryVariables = Exact<{
10291
+ [key: string]: never;
10292
+ }>;
10293
+ export type GetProjectQuery = {
10294
+ __typename?: 'Query';
10295
+ project?: {
10296
+ __typename?: 'Project';
10297
+ id: string;
10298
+ name: string;
10299
+ creationDate: any;
10300
+ modifiedDate?: any | null;
9574
10301
  state: EntityState;
9575
10302
  environmentType?: EnvironmentTypes | null;
9576
10303
  platform?: ResourceConnectorTypes | null;
@@ -9596,6 +10323,62 @@ export type ProjectQuery = {
9596
10323
  } | null;
9597
10324
  } | null;
9598
10325
  };
10326
+ export type LookupCreditsQueryVariables = Exact<{
10327
+ correlationId: Scalars['String']['input'];
10328
+ }>;
10329
+ export type LookupCreditsQuery = {
10330
+ __typename?: 'Query';
10331
+ lookupCredits?: {
10332
+ __typename?: 'ProjectCredits';
10333
+ correlationId?: string | null;
10334
+ ownerId?: string | null;
10335
+ credits?: any | null;
10336
+ storageRatio?: any | null;
10337
+ computeRatio?: any | null;
10338
+ preparationRatio?: any | null;
10339
+ extractionRatio?: any | null;
10340
+ enrichmentRatio?: any | null;
10341
+ publishingRatio?: any | null;
10342
+ searchRatio?: any | null;
10343
+ conversationRatio?: any | null;
10344
+ } | null;
10345
+ };
10346
+ export type LookupUsageQueryVariables = Exact<{
10347
+ correlationId: Scalars['String']['input'];
10348
+ }>;
10349
+ export type LookupUsageQuery = {
10350
+ __typename?: 'Query';
10351
+ lookupUsage?: Array<{
10352
+ __typename?: 'ProjectUsageRecord';
10353
+ correlationId?: string | null;
10354
+ date: any;
10355
+ credits?: any | null;
10356
+ name: string;
10357
+ metric?: BillableMetrics | null;
10358
+ workflow?: string | null;
10359
+ entityType?: EntityTypes | null;
10360
+ entityId?: string | null;
10361
+ projectId: string;
10362
+ ownerId: string;
10363
+ uri?: string | null;
10364
+ duration?: any | null;
10365
+ throughput?: number | null;
10366
+ contentType?: ContentTypes | null;
10367
+ fileType?: FileTypes | null;
10368
+ modelService?: string | null;
10369
+ modelName?: string | null;
10370
+ processorName?: string | null;
10371
+ prompt?: string | null;
10372
+ promptTokens?: number | null;
10373
+ completion?: string | null;
10374
+ completionTokens?: number | null;
10375
+ tokens?: number | null;
10376
+ count?: number | null;
10377
+ request?: string | null;
10378
+ variables?: string | null;
10379
+ response?: string | null;
10380
+ } | null> | null;
10381
+ };
9599
10382
  export type UpdateProjectMutationVariables = Exact<{
9600
10383
  project: ProjectUpdateInput;
9601
10384
  }>;
@@ -9644,6 +10427,178 @@ export type UsageQuery = {
9644
10427
  response?: string | null;
9645
10428
  } | null> | null;
9646
10429
  };
10430
+ export type CreateRepoMutationVariables = Exact<{
10431
+ repo: RepoInput;
10432
+ }>;
10433
+ export type CreateRepoMutation = {
10434
+ __typename?: 'Mutation';
10435
+ createRepo?: {
10436
+ __typename?: 'Repo';
10437
+ id: string;
10438
+ name: string;
10439
+ } | null;
10440
+ };
10441
+ export type DeleteAllReposMutationVariables = Exact<{
10442
+ filter: RepoFilter;
10443
+ }>;
10444
+ export type DeleteAllReposMutation = {
10445
+ __typename?: 'Mutation';
10446
+ deleteAllRepos?: Array<{
10447
+ __typename?: 'Repo';
10448
+ id: string;
10449
+ state: EntityState;
10450
+ } | null> | null;
10451
+ };
10452
+ export type DeleteRepoMutationVariables = Exact<{
10453
+ id: Scalars['ID']['input'];
10454
+ }>;
10455
+ export type DeleteRepoMutation = {
10456
+ __typename?: 'Mutation';
10457
+ deleteRepo?: {
10458
+ __typename?: 'Repo';
10459
+ id: string;
10460
+ state: EntityState;
10461
+ } | null;
10462
+ };
10463
+ export type DeleteReposMutationVariables = Exact<{
10464
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10465
+ }>;
10466
+ export type DeleteReposMutation = {
10467
+ __typename?: 'Mutation';
10468
+ deleteRepos?: Array<{
10469
+ __typename?: 'Repo';
10470
+ id: string;
10471
+ state: EntityState;
10472
+ } | null> | null;
10473
+ };
10474
+ export type GetRepoQueryVariables = Exact<{
10475
+ id: Scalars['ID']['input'];
10476
+ }>;
10477
+ export type GetRepoQuery = {
10478
+ __typename?: 'Query';
10479
+ repo?: {
10480
+ __typename?: 'Repo';
10481
+ id: string;
10482
+ name: string;
10483
+ alternateNames?: Array<string | null> | null;
10484
+ creationDate: any;
10485
+ } | null;
10486
+ };
10487
+ export type QueryReposQueryVariables = Exact<{
10488
+ filter: RepoFilter;
10489
+ }>;
10490
+ export type QueryReposQuery = {
10491
+ __typename?: 'Query';
10492
+ repos?: {
10493
+ __typename?: 'RepoResults';
10494
+ results?: Array<{
10495
+ __typename?: 'Repo';
10496
+ id: string;
10497
+ name: string;
10498
+ alternateNames?: Array<string | null> | null;
10499
+ creationDate: any;
10500
+ } | null> | null;
10501
+ } | null;
10502
+ };
10503
+ export type UpdateRepoMutationVariables = Exact<{
10504
+ repo: RepoUpdateInput;
10505
+ }>;
10506
+ export type UpdateRepoMutation = {
10507
+ __typename?: 'Mutation';
10508
+ updateRepo?: {
10509
+ __typename?: 'Repo';
10510
+ id: string;
10511
+ name: string;
10512
+ } | null;
10513
+ };
10514
+ export type CreateSoftwareMutationVariables = Exact<{
10515
+ software: SoftwareInput;
10516
+ }>;
10517
+ export type CreateSoftwareMutation = {
10518
+ __typename?: 'Mutation';
10519
+ createSoftware?: {
10520
+ __typename?: 'Software';
10521
+ id: string;
10522
+ name: string;
10523
+ } | null;
10524
+ };
10525
+ export type DeleteAllSoftwaresMutationVariables = Exact<{
10526
+ filter: SoftwareFilter;
10527
+ }>;
10528
+ export type DeleteAllSoftwaresMutation = {
10529
+ __typename?: 'Mutation';
10530
+ deleteAllSoftwares?: Array<{
10531
+ __typename?: 'Software';
10532
+ id: string;
10533
+ state: EntityState;
10534
+ } | null> | null;
10535
+ };
10536
+ export type DeleteSoftwareMutationVariables = Exact<{
10537
+ id: Scalars['ID']['input'];
10538
+ }>;
10539
+ export type DeleteSoftwareMutation = {
10540
+ __typename?: 'Mutation';
10541
+ deleteSoftware?: {
10542
+ __typename?: 'Software';
10543
+ id: string;
10544
+ state: EntityState;
10545
+ } | null;
10546
+ };
10547
+ export type DeleteSoftwaresMutationVariables = Exact<{
10548
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10549
+ }>;
10550
+ export type DeleteSoftwaresMutation = {
10551
+ __typename?: 'Mutation';
10552
+ deleteSoftwares?: Array<{
10553
+ __typename?: 'Software';
10554
+ id: string;
10555
+ state: EntityState;
10556
+ } | null> | null;
10557
+ };
10558
+ export type GetSoftwareQueryVariables = Exact<{
10559
+ id: Scalars['ID']['input'];
10560
+ }>;
10561
+ export type GetSoftwareQuery = {
10562
+ __typename?: 'Query';
10563
+ software?: {
10564
+ __typename?: 'Software';
10565
+ id: string;
10566
+ name: string;
10567
+ alternateNames?: Array<string | null> | null;
10568
+ creationDate: any;
10569
+ releaseDate?: any | null;
10570
+ developer?: string | null;
10571
+ } | null;
10572
+ };
10573
+ export type QuerySoftwaresQueryVariables = Exact<{
10574
+ filter: SoftwareFilter;
10575
+ }>;
10576
+ export type QuerySoftwaresQuery = {
10577
+ __typename?: 'Query';
10578
+ softwares?: {
10579
+ __typename?: 'SoftwareResults';
10580
+ results?: Array<{
10581
+ __typename?: 'Software';
10582
+ id: string;
10583
+ name: string;
10584
+ alternateNames?: Array<string | null> | null;
10585
+ creationDate: any;
10586
+ releaseDate?: any | null;
10587
+ developer?: string | null;
10588
+ } | null> | null;
10589
+ } | null;
10590
+ };
10591
+ export type UpdateSoftwareMutationVariables = Exact<{
10592
+ software: SoftwareUpdateInput;
10593
+ }>;
10594
+ export type UpdateSoftwareMutation = {
10595
+ __typename?: 'Mutation';
10596
+ updateSoftware?: {
10597
+ __typename?: 'Software';
10598
+ id: string;
10599
+ name: string;
10600
+ } | null;
10601
+ };
9647
10602
  export type CreateSpecificationMutationVariables = Exact<{
9648
10603
  specification: SpecificationInput;
9649
10604
  }>;