@forge/cli-shared 3.22.0-next.5 → 3.22.0-next.6
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.
package/CHANGELOG.md
CHANGED
|
@@ -7351,18 +7351,165 @@ export declare enum CustomerServiceContextType {
|
|
|
7351
7351
|
Default = "DEFAULT",
|
|
7352
7352
|
Issue = "ISSUE"
|
|
7353
7353
|
}
|
|
7354
|
+
export type CustomerServiceCustomDetail = Node & {
|
|
7355
|
+
__typename?: 'CustomerServiceCustomDetail';
|
|
7356
|
+
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
7357
|
+
id: Scalars['ID']['output'];
|
|
7358
|
+
name: Scalars['String']['output'];
|
|
7359
|
+
type: CustomerServiceCustomDetailType;
|
|
7360
|
+
};
|
|
7361
|
+
export type CustomerServiceCustomDetailConfigMetadata = {
|
|
7362
|
+
__typename?: 'CustomerServiceCustomDetailConfigMetadata';
|
|
7363
|
+
contextConfigurations?: Maybe<Array<CustomerServiceContextConfiguration>>;
|
|
7364
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
7365
|
+
};
|
|
7366
|
+
export type CustomerServiceCustomDetailConfigMetadataUpdateInput = {
|
|
7367
|
+
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
7368
|
+
id: Scalars['ID']['input'];
|
|
7369
|
+
position?: InputMaybe<Scalars['Int']['input']>;
|
|
7370
|
+
};
|
|
7371
|
+
export type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Payload & {
|
|
7372
|
+
__typename?: 'CustomerServiceCustomDetailConfigMetadataUpdatePayload';
|
|
7373
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7374
|
+
success: Scalars['Boolean']['output'];
|
|
7375
|
+
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
7376
|
+
};
|
|
7377
|
+
export type CustomerServiceCustomDetailCreateInput = {
|
|
7378
|
+
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
7379
|
+
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
7380
|
+
name: Scalars['String']['input'];
|
|
7381
|
+
type?: InputMaybe<CustomerServiceCustomDetailCreateTypeInput>;
|
|
7382
|
+
};
|
|
7383
|
+
export type CustomerServiceCustomDetailCreatePayload = Payload & {
|
|
7384
|
+
__typename?: 'CustomerServiceCustomDetailCreatePayload';
|
|
7385
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7386
|
+
success: Scalars['Boolean']['output'];
|
|
7387
|
+
successfullyCreatedCustomDetail?: Maybe<CustomerServiceCustomDetail>;
|
|
7388
|
+
};
|
|
7389
|
+
export type CustomerServiceCustomDetailCreateTypeInput = {
|
|
7390
|
+
name?: InputMaybe<CustomerServiceCustomDetailTypeName>;
|
|
7391
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7392
|
+
};
|
|
7393
|
+
export type CustomerServiceCustomDetailDeleteInput = {
|
|
7394
|
+
id: Scalars['ID']['input'];
|
|
7395
|
+
};
|
|
7396
|
+
export type CustomerServiceCustomDetailDeletePayload = Payload & {
|
|
7397
|
+
__typename?: 'CustomerServiceCustomDetailDeletePayload';
|
|
7398
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7399
|
+
success: Scalars['Boolean']['output'];
|
|
7400
|
+
};
|
|
7401
|
+
export type CustomerServiceCustomDetailEntityTypeId = {
|
|
7402
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
7403
|
+
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
7404
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
7405
|
+
};
|
|
7406
|
+
export type CustomerServiceCustomDetailType = {
|
|
7407
|
+
__typename?: 'CustomerServiceCustomDetailType';
|
|
7408
|
+
name: CustomerServiceCustomDetailTypeName;
|
|
7409
|
+
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
7410
|
+
};
|
|
7411
|
+
export declare enum CustomerServiceCustomDetailTypeName {
|
|
7412
|
+
Boolean = "BOOLEAN",
|
|
7413
|
+
Date = "DATE",
|
|
7414
|
+
Email = "EMAIL",
|
|
7415
|
+
Multiselect = "MULTISELECT",
|
|
7416
|
+
Number = "NUMBER",
|
|
7417
|
+
Phone = "PHONE",
|
|
7418
|
+
Select = "SELECT",
|
|
7419
|
+
Text = "TEXT",
|
|
7420
|
+
Url = "URL"
|
|
7421
|
+
}
|
|
7422
|
+
export type CustomerServiceCustomDetailUpdateInput = {
|
|
7423
|
+
id: Scalars['ID']['input'];
|
|
7424
|
+
name: Scalars['String']['input'];
|
|
7425
|
+
type?: InputMaybe<CustomerServiceCustomDetailUpdateTypeInput>;
|
|
7426
|
+
};
|
|
7427
|
+
export type CustomerServiceCustomDetailUpdatePayload = Payload & {
|
|
7428
|
+
__typename?: 'CustomerServiceCustomDetailUpdatePayload';
|
|
7429
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7430
|
+
success: Scalars['Boolean']['output'];
|
|
7431
|
+
successfullyUpdatedCustomDetail?: Maybe<CustomerServiceCustomDetail>;
|
|
7432
|
+
};
|
|
7433
|
+
export type CustomerServiceCustomDetailUpdateTypeInput = {
|
|
7434
|
+
name?: InputMaybe<CustomerServiceCustomDetailTypeName>;
|
|
7435
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7436
|
+
};
|
|
7437
|
+
export type CustomerServiceCustomDetailValue = Node & {
|
|
7438
|
+
__typename?: 'CustomerServiceCustomDetailValue';
|
|
7439
|
+
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
7440
|
+
id: Scalars['ID']['output'];
|
|
7441
|
+
name: Scalars['String']['output'];
|
|
7442
|
+
type: CustomerServiceCustomDetailType;
|
|
7443
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
7444
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
7445
|
+
};
|
|
7446
|
+
export type CustomerServiceCustomDetails = {
|
|
7447
|
+
__typename?: 'CustomerServiceCustomDetails';
|
|
7448
|
+
customDetails: Array<CustomerServiceCustomDetail>;
|
|
7449
|
+
maxAllowedCustomDetails?: Maybe<Scalars['Int']['output']>;
|
|
7450
|
+
};
|
|
7451
|
+
export declare enum CustomerServiceCustomDetailsEntityType {
|
|
7452
|
+
Customer = "CUSTOMER",
|
|
7453
|
+
Entitlement = "ENTITLEMENT",
|
|
7454
|
+
Organization = "ORGANIZATION"
|
|
7455
|
+
}
|
|
7456
|
+
export type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
|
|
7457
|
+
export type CustomerServiceEntitlement = {
|
|
7458
|
+
__typename?: 'CustomerServiceEntitlement';
|
|
7459
|
+
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
7460
|
+
id: Scalars['ID']['output'];
|
|
7461
|
+
product: CustomerServiceProduct;
|
|
7462
|
+
};
|
|
7463
|
+
export type CustomerServiceEntitlementAddInput = {
|
|
7464
|
+
entitlementEntityId: CustomerServiceEntitlementEntityId;
|
|
7465
|
+
productId: Scalars['ID']['input'];
|
|
7466
|
+
};
|
|
7467
|
+
export type CustomerServiceEntitlementAddPayload = {
|
|
7468
|
+
__typename?: 'CustomerServiceEntitlementAddPayload';
|
|
7469
|
+
addedEntitlement?: Maybe<CustomerServiceEntitlement>;
|
|
7470
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7471
|
+
success: Scalars['Boolean']['output'];
|
|
7472
|
+
};
|
|
7473
|
+
export type CustomerServiceEntitlementConnection = {
|
|
7474
|
+
__typename?: 'CustomerServiceEntitlementConnection';
|
|
7475
|
+
edges: Array<CustomerServiceEntitlementEdge>;
|
|
7476
|
+
pageInfo: PageInfo;
|
|
7477
|
+
};
|
|
7478
|
+
export type CustomerServiceEntitlementEdge = {
|
|
7479
|
+
__typename?: 'CustomerServiceEntitlementEdge';
|
|
7480
|
+
cursor: Scalars['String']['output'];
|
|
7481
|
+
node?: Maybe<CustomerServiceEntitlement>;
|
|
7482
|
+
};
|
|
7483
|
+
export type CustomerServiceEntitlementEntityId = {
|
|
7484
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
7485
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
7486
|
+
};
|
|
7487
|
+
export type CustomerServiceEntitlementQueryResult = CustomerServiceEntitlement | QueryError;
|
|
7488
|
+
export type CustomerServiceEntitlementRemoveInput = {
|
|
7489
|
+
entitlementId: Scalars['ID']['input'];
|
|
7490
|
+
};
|
|
7491
|
+
export type CustomerServiceEntitlementRemovePayload = {
|
|
7492
|
+
__typename?: 'CustomerServiceEntitlementRemovePayload';
|
|
7493
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7494
|
+
success: Scalars['Boolean']['output'];
|
|
7495
|
+
};
|
|
7354
7496
|
export type CustomerServiceFilterInput = {
|
|
7355
7497
|
context: CustomerServiceContext;
|
|
7356
7498
|
};
|
|
7357
7499
|
export type CustomerServiceIndividual = Node & {
|
|
7358
7500
|
__typename?: 'CustomerServiceIndividual';
|
|
7359
7501
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7502
|
+
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
7360
7503
|
id: Scalars['ID']['output'];
|
|
7361
7504
|
links: Array<CustomerServiceLink>;
|
|
7362
7505
|
name: Scalars['String']['output'];
|
|
7363
7506
|
notes: CustomerServiceNotes;
|
|
7364
7507
|
organizations: Array<CustomerServiceOrganization>;
|
|
7365
7508
|
};
|
|
7509
|
+
export type CustomerServiceIndividualEntitlementsArgs = {
|
|
7510
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7511
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7512
|
+
};
|
|
7366
7513
|
export type CustomerServiceIndividualLinksArgs = {
|
|
7367
7514
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7368
7515
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7433,16 +7580,25 @@ export declare enum CustomerServiceLinkEntityType {
|
|
|
7433
7580
|
export type CustomerServiceLinksQueryResult = CustomerServiceLink | QueryError;
|
|
7434
7581
|
export type CustomerServiceMutationApi = {
|
|
7435
7582
|
__typename?: 'CustomerServiceMutationApi';
|
|
7583
|
+
addEntitlement?: Maybe<CustomerServiceEntitlementAddPayload>;
|
|
7584
|
+
createCustomDetail?: Maybe<CustomerServiceCustomDetailCreatePayload>;
|
|
7436
7585
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
7437
7586
|
createLink?: Maybe<CustomerServiceLinkCreatePayload>;
|
|
7438
7587
|
createNote?: Maybe<CustomerServiceNoteCreatePayload>;
|
|
7439
7588
|
createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
|
|
7440
7589
|
createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
7590
|
+
createProduct?: Maybe<CustomerServiceProductCreatePayload>;
|
|
7591
|
+
deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
|
|
7441
7592
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
7442
7593
|
deleteLink?: Maybe<CustomerServiceLinkDeletePayload>;
|
|
7443
7594
|
deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
|
|
7444
7595
|
deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
|
|
7445
7596
|
deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
7597
|
+
deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
|
|
7598
|
+
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
7599
|
+
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
7600
|
+
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
7601
|
+
updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
|
|
7446
7602
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
7447
7603
|
updateIndividualAttributeConfig?: Maybe<CustomerServiceAttributeConfigMetadataUpdatePayload>;
|
|
7448
7604
|
updateIndividualAttributeMultiValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
@@ -7454,6 +7610,13 @@ export type CustomerServiceMutationApi = {
|
|
|
7454
7610
|
updateOrganizationAttributeMultiValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
7455
7611
|
updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
7456
7612
|
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
|
|
7613
|
+
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
7614
|
+
};
|
|
7615
|
+
export type CustomerServiceMutationApiAddEntitlementArgs = {
|
|
7616
|
+
input: CustomerServiceEntitlementAddInput;
|
|
7617
|
+
};
|
|
7618
|
+
export type CustomerServiceMutationApiCreateCustomDetailArgs = {
|
|
7619
|
+
input: CustomerServiceCustomDetailCreateInput;
|
|
7457
7620
|
};
|
|
7458
7621
|
export type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
|
|
7459
7622
|
input: CustomerServiceAttributeCreateInput;
|
|
@@ -7470,6 +7633,12 @@ export type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
|
7470
7633
|
export type CustomerServiceMutationApiCreateOrganizationAttributeArgs = {
|
|
7471
7634
|
input: CustomerServiceAttributeCreateInput;
|
|
7472
7635
|
};
|
|
7636
|
+
export type CustomerServiceMutationApiCreateProductArgs = {
|
|
7637
|
+
input: CustomerServiceProductCreateInput;
|
|
7638
|
+
};
|
|
7639
|
+
export type CustomerServiceMutationApiDeleteCustomDetailArgs = {
|
|
7640
|
+
input: CustomerServiceCustomDetailDeleteInput;
|
|
7641
|
+
};
|
|
7473
7642
|
export type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
7474
7643
|
input: CustomerServiceAttributeDeleteInput;
|
|
7475
7644
|
};
|
|
@@ -7485,6 +7654,21 @@ export type CustomerServiceMutationApiDeleteOrganizationArgs = {
|
|
|
7485
7654
|
export type CustomerServiceMutationApiDeleteOrganizationAttributeArgs = {
|
|
7486
7655
|
input: CustomerServiceAttributeDeleteInput;
|
|
7487
7656
|
};
|
|
7657
|
+
export type CustomerServiceMutationApiDeleteProductArgs = {
|
|
7658
|
+
input: CustomerServiceProductDeleteInput;
|
|
7659
|
+
};
|
|
7660
|
+
export type CustomerServiceMutationApiRemoveEntitlementArgs = {
|
|
7661
|
+
input: CustomerServiceEntitlementRemoveInput;
|
|
7662
|
+
};
|
|
7663
|
+
export type CustomerServiceMutationApiUpdateCustomDetailArgs = {
|
|
7664
|
+
input: CustomerServiceCustomDetailUpdateInput;
|
|
7665
|
+
};
|
|
7666
|
+
export type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
|
|
7667
|
+
input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
|
|
7668
|
+
};
|
|
7669
|
+
export type CustomerServiceMutationApiUpdateCustomDetailValueArgs = {
|
|
7670
|
+
input: CustomerServiceUpdateCustomDetailValueInput;
|
|
7671
|
+
};
|
|
7488
7672
|
export type CustomerServiceMutationApiUpdateIndividualAttributeArgs = {
|
|
7489
7673
|
input: CustomerServiceAttributeUpdateInput;
|
|
7490
7674
|
};
|
|
@@ -7518,6 +7702,9 @@ export type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
|
|
|
7518
7702
|
export type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
|
|
7519
7703
|
input: CustomerServiceOrganizationUpdateAttributeByNameInput;
|
|
7520
7704
|
};
|
|
7705
|
+
export type CustomerServiceMutationApiUpdateProductArgs = {
|
|
7706
|
+
input: CustomerServiceProductUpdateInput;
|
|
7707
|
+
};
|
|
7521
7708
|
export type CustomerServiceNote = {
|
|
7522
7709
|
__typename?: 'CustomerServiceNote';
|
|
7523
7710
|
author: CustomerServiceNoteAuthor;
|
|
@@ -7583,11 +7770,16 @@ export type CustomerServiceNotesQueryResult = CustomerServiceNotes | QueryError;
|
|
|
7583
7770
|
export type CustomerServiceOrganization = Node & {
|
|
7584
7771
|
__typename?: 'CustomerServiceOrganization';
|
|
7585
7772
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7773
|
+
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
7586
7774
|
id: Scalars['ID']['output'];
|
|
7587
7775
|
links: Array<CustomerServiceLink>;
|
|
7588
7776
|
name: Scalars['String']['output'];
|
|
7589
7777
|
notes: CustomerServiceNotes;
|
|
7590
7778
|
};
|
|
7779
|
+
export type CustomerServiceOrganizationEntitlementsArgs = {
|
|
7780
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7781
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7782
|
+
};
|
|
7591
7783
|
export type CustomerServiceOrganizationLinksArgs = {
|
|
7592
7784
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7593
7785
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7646,12 +7838,65 @@ export type CustomerServiceOrganizationUpdatePayload = Payload & {
|
|
|
7646
7838
|
success: Scalars['Boolean']['output'];
|
|
7647
7839
|
successfullyUpdatedOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
7648
7840
|
};
|
|
7841
|
+
export type CustomerServiceProduct = {
|
|
7842
|
+
__typename?: 'CustomerServiceProduct';
|
|
7843
|
+
entitlementsCount?: Maybe<Scalars['Int']['output']>;
|
|
7844
|
+
id: Scalars['ID']['output'];
|
|
7845
|
+
name: Scalars['String']['output'];
|
|
7846
|
+
};
|
|
7847
|
+
export type CustomerServiceProductConnection = {
|
|
7848
|
+
__typename?: 'CustomerServiceProductConnection';
|
|
7849
|
+
edges: Array<CustomerServiceProductEdge>;
|
|
7850
|
+
pageInfo: PageInfo;
|
|
7851
|
+
};
|
|
7852
|
+
export type CustomerServiceProductCreateInput = {
|
|
7853
|
+
name: Scalars['String']['input'];
|
|
7854
|
+
};
|
|
7855
|
+
export type CustomerServiceProductCreatePayload = Payload & {
|
|
7856
|
+
__typename?: 'CustomerServiceProductCreatePayload';
|
|
7857
|
+
createdProduct?: Maybe<CustomerServiceProduct>;
|
|
7858
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7859
|
+
success: Scalars['Boolean']['output'];
|
|
7860
|
+
};
|
|
7861
|
+
export type CustomerServiceProductDeleteInput = {
|
|
7862
|
+
id: Scalars['ID']['input'];
|
|
7863
|
+
};
|
|
7864
|
+
export type CustomerServiceProductDeletePayload = Payload & {
|
|
7865
|
+
__typename?: 'CustomerServiceProductDeletePayload';
|
|
7866
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7867
|
+
success: Scalars['Boolean']['output'];
|
|
7868
|
+
};
|
|
7869
|
+
export type CustomerServiceProductEdge = {
|
|
7870
|
+
__typename?: 'CustomerServiceProductEdge';
|
|
7871
|
+
cursor: Scalars['String']['output'];
|
|
7872
|
+
node?: Maybe<CustomerServiceProduct>;
|
|
7873
|
+
};
|
|
7874
|
+
export type CustomerServiceProductQueryResult = CustomerServiceProductConnection | QueryError;
|
|
7875
|
+
export type CustomerServiceProductUpdateInput = {
|
|
7876
|
+
id: Scalars['ID']['input'];
|
|
7877
|
+
name: Scalars['String']['input'];
|
|
7878
|
+
};
|
|
7879
|
+
export type CustomerServiceProductUpdatePayload = Payload & {
|
|
7880
|
+
__typename?: 'CustomerServiceProductUpdatePayload';
|
|
7881
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7882
|
+
success: Scalars['Boolean']['output'];
|
|
7883
|
+
updatedProduct?: Maybe<CustomerServiceProduct>;
|
|
7884
|
+
};
|
|
7649
7885
|
export type CustomerServiceQueryApi = {
|
|
7650
7886
|
__typename?: 'CustomerServiceQueryApi';
|
|
7887
|
+
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
7888
|
+
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
7651
7889
|
individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
7652
7890
|
individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
7653
7891
|
organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
7654
7892
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
7893
|
+
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
7894
|
+
};
|
|
7895
|
+
export type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
7896
|
+
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
7897
|
+
};
|
|
7898
|
+
export type CustomerServiceQueryApiEntitlementByIdArgs = {
|
|
7899
|
+
entitlementId: Scalars['ID']['input'];
|
|
7655
7900
|
};
|
|
7656
7901
|
export type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
7657
7902
|
accountId: Scalars['ID']['input'];
|
|
@@ -7661,11 +7906,27 @@ export type CustomerServiceQueryApiOrganizationByOrganizationIdArgs = {
|
|
|
7661
7906
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
7662
7907
|
organizationId: Scalars['ID']['input'];
|
|
7663
7908
|
};
|
|
7909
|
+
export type CustomerServiceQueryApiProductsArgs = {
|
|
7910
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7911
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7912
|
+
};
|
|
7664
7913
|
export type CustomerServiceStatusPayload = Payload & {
|
|
7665
7914
|
__typename?: 'CustomerServiceStatusPayload';
|
|
7666
7915
|
errors?: Maybe<Array<MutationError>>;
|
|
7667
7916
|
success: Scalars['Boolean']['output'];
|
|
7668
7917
|
};
|
|
7918
|
+
export type CustomerServiceUpdateCustomDetailValueInput = {
|
|
7919
|
+
id: CustomerServiceCustomDetailEntityTypeId;
|
|
7920
|
+
name: Scalars['String']['input'];
|
|
7921
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
7922
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7923
|
+
};
|
|
7924
|
+
export type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
7925
|
+
__typename?: 'CustomerServiceUpdateCustomDetailValuePayload';
|
|
7926
|
+
customDetail?: Maybe<CustomerServiceCustomDetailValue>;
|
|
7927
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7928
|
+
success: Scalars['Boolean']['output'];
|
|
7929
|
+
};
|
|
7669
7930
|
export type CustomerUser = LocalizationContext & User & {
|
|
7670
7931
|
__typename?: 'CustomerUser';
|
|
7671
7932
|
accountId: Scalars['ID']['output'];
|
|
@@ -9543,6 +9804,7 @@ export type EcosystemConnectAppVersion = {
|
|
|
9543
9804
|
export type EcosystemConnectInstallation = {
|
|
9544
9805
|
__typename?: 'EcosystemConnectInstallation';
|
|
9545
9806
|
appVersion: EcosystemConnectAppVersion;
|
|
9807
|
+
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
9546
9808
|
installationContext?: Maybe<Scalars['String']['output']>;
|
|
9547
9809
|
};
|
|
9548
9810
|
export type EcosystemConnectScope = {
|
|
@@ -9627,6 +9889,7 @@ export type EcosystemQuery = {
|
|
|
9627
9889
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
9628
9890
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
9629
9891
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
9892
|
+
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
9630
9893
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
9631
9894
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
9632
9895
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
@@ -9670,6 +9933,10 @@ export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
|
9670
9933
|
export type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
9671
9934
|
input: CheckConsentPermissionByOAuthClientIdInput;
|
|
9672
9935
|
};
|
|
9936
|
+
export type EcosystemQueryDataClassificationsArgs = {
|
|
9937
|
+
appId: Scalars['ID']['input'];
|
|
9938
|
+
workspaceId: Scalars['ID']['input'];
|
|
9939
|
+
};
|
|
9673
9940
|
export type EcosystemQueryForgeAlertsArgs = {
|
|
9674
9941
|
appId: Scalars['ID']['input'];
|
|
9675
9942
|
};
|