@forge/cli-shared 3.11.3-next.2 → 3.11.3-next.3
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
|
@@ -6535,6 +6535,50 @@ export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
6535
6535
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6536
6536
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6537
6537
|
};
|
|
6538
|
+
export declare type DevOpsDocument = {
|
|
6539
|
+
__typename?: 'DevOpsDocument';
|
|
6540
|
+
id: Scalars['ID'];
|
|
6541
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
6542
|
+
providerId?: Maybe<Scalars['String']>;
|
|
6543
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6544
|
+
type?: Maybe<DevOpsDocumentType>;
|
|
6545
|
+
url?: Maybe<Scalars['URL']>;
|
|
6546
|
+
createdAt?: Maybe<Scalars['DateTime']>;
|
|
6547
|
+
createdBy?: Maybe<User>;
|
|
6548
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6549
|
+
lastUpdatedBy?: Maybe<User>;
|
|
6550
|
+
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
6551
|
+
byteSize?: Maybe<Scalars['Long']>;
|
|
6552
|
+
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
6553
|
+
hasChildren?: Maybe<Scalars['Boolean']>;
|
|
6554
|
+
};
|
|
6555
|
+
export declare enum DevOpsDocumentCategory {
|
|
6556
|
+
Folder = "FOLDER",
|
|
6557
|
+
Document = "DOCUMENT",
|
|
6558
|
+
Presentation = "PRESENTATION",
|
|
6559
|
+
Spreadsheet = "SPREADSHEET",
|
|
6560
|
+
Image = "IMAGE",
|
|
6561
|
+
Audio = "AUDIO",
|
|
6562
|
+
Video = "VIDEO",
|
|
6563
|
+
Pdf = "PDF",
|
|
6564
|
+
Shortcut = "SHORTCUT",
|
|
6565
|
+
Code = "CODE",
|
|
6566
|
+
Archive = "ARCHIVE",
|
|
6567
|
+
Form = "FORM",
|
|
6568
|
+
Other = "OTHER"
|
|
6569
|
+
}
|
|
6570
|
+
export declare type DevOpsDocumentExportLink = {
|
|
6571
|
+
__typename?: 'DevOpsDocumentExportLink';
|
|
6572
|
+
mimeType?: Maybe<Scalars['String']>;
|
|
6573
|
+
url?: Maybe<Scalars['URL']>;
|
|
6574
|
+
};
|
|
6575
|
+
export declare type DevOpsDocumentType = {
|
|
6576
|
+
__typename?: 'DevOpsDocumentType';
|
|
6577
|
+
category?: Maybe<DevOpsDocumentCategory>;
|
|
6578
|
+
mimeType?: Maybe<Scalars['String']>;
|
|
6579
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
6580
|
+
fileExtension?: Maybe<Scalars['String']>;
|
|
6581
|
+
};
|
|
6538
6582
|
export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
6539
6583
|
__typename?: 'DevOpsDocumentationProvider';
|
|
6540
6584
|
id: Scalars['ID'];
|
|
@@ -6543,6 +6587,8 @@ export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
6543
6587
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
6544
6588
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6545
6589
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6590
|
+
check3LOUrl?: Maybe<Scalars['String']>;
|
|
6591
|
+
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
6546
6592
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
6547
6593
|
};
|
|
6548
6594
|
export declare type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
@@ -23228,6 +23274,7 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
23228
23274
|
export declare type Toolchain = {
|
|
23229
23275
|
__typename?: 'Toolchain';
|
|
23230
23276
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
23277
|
+
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
23231
23278
|
};
|
|
23232
23279
|
export declare type ToolchainContainersArgs = {
|
|
23233
23280
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -23237,6 +23284,25 @@ export declare type ToolchainContainersArgs = {
|
|
|
23237
23284
|
first?: Maybe<Scalars['Int']>;
|
|
23238
23285
|
after?: Maybe<Scalars['String']>;
|
|
23239
23286
|
};
|
|
23287
|
+
export declare type ToolchainSyncStatusArgs = {
|
|
23288
|
+
cloudId: Scalars['ID'];
|
|
23289
|
+
providerId: Scalars['String'];
|
|
23290
|
+
containerId: Scalars['ID'];
|
|
23291
|
+
};
|
|
23292
|
+
export declare type ToolchainAssociateContainerInput = {
|
|
23293
|
+
cloudId: Scalars['ID'];
|
|
23294
|
+
providerId: Scalars['ID'];
|
|
23295
|
+
jiraProjectId: Scalars['ID'];
|
|
23296
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
23297
|
+
containerId: Scalars['ID'];
|
|
23298
|
+
};
|
|
23299
|
+
export declare type ToolchainAssociateContainerPayload = Payload & {
|
|
23300
|
+
__typename?: 'ToolchainAssociateContainerPayload';
|
|
23301
|
+
success: Scalars['Boolean'];
|
|
23302
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23303
|
+
container?: Maybe<ToolchainAssociatedContainer>;
|
|
23304
|
+
};
|
|
23305
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocument;
|
|
23240
23306
|
export declare type ToolchainContainer = Node & {
|
|
23241
23307
|
__typename?: 'ToolchainContainer';
|
|
23242
23308
|
id: Scalars['ID'];
|
|
@@ -23266,13 +23332,40 @@ export declare type ToolchainCreateContainerPayload = Payload & {
|
|
|
23266
23332
|
errors?: Maybe<Array<MutationError>>;
|
|
23267
23333
|
createdContainer?: Maybe<ToolchainContainer>;
|
|
23268
23334
|
};
|
|
23335
|
+
export declare type ToolchainDisassociateContainerInput = {
|
|
23336
|
+
cloudId: Scalars['ID'];
|
|
23337
|
+
providerId: Scalars['ID'];
|
|
23338
|
+
jiraProjectId: Scalars['ID'];
|
|
23339
|
+
containerId: Scalars['ID'];
|
|
23340
|
+
};
|
|
23341
|
+
export declare type ToolchainDisassociateContainerPayload = Payload & {
|
|
23342
|
+
__typename?: 'ToolchainDisassociateContainerPayload';
|
|
23343
|
+
success: Scalars['Boolean'];
|
|
23344
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23345
|
+
};
|
|
23269
23346
|
export declare type ToolchainMutation = {
|
|
23270
23347
|
__typename?: 'ToolchainMutation';
|
|
23348
|
+
associateContainer?: Maybe<ToolchainAssociateContainerPayload>;
|
|
23349
|
+
disassociateContainer?: Maybe<ToolchainDisassociateContainerPayload>;
|
|
23271
23350
|
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
23272
23351
|
};
|
|
23352
|
+
export declare type ToolchainMutationAssociateContainerArgs = {
|
|
23353
|
+
input: ToolchainAssociateContainerInput;
|
|
23354
|
+
};
|
|
23355
|
+
export declare type ToolchainMutationDisassociateContainerArgs = {
|
|
23356
|
+
input: ToolchainDisassociateContainerInput;
|
|
23357
|
+
};
|
|
23273
23358
|
export declare type ToolchainMutationCreateContainerArgs = {
|
|
23274
23359
|
input: ToolchainCreateContainerInput;
|
|
23275
23360
|
};
|
|
23361
|
+
export declare enum ToolchainSyncState {
|
|
23362
|
+
InProgress = "IN_PROGRESS",
|
|
23363
|
+
Complete = "COMPLETE"
|
|
23364
|
+
}
|
|
23365
|
+
export declare type ToolchainSyncStatus = {
|
|
23366
|
+
__typename?: 'ToolchainSyncStatus';
|
|
23367
|
+
state: ToolchainSyncState;
|
|
23368
|
+
};
|
|
23276
23369
|
export declare type TownsquareComment = Node & {
|
|
23277
23370
|
__typename?: 'TownsquareComment';
|
|
23278
23371
|
creator?: Maybe<User>;
|