@forge/cli-shared 6.6.2-next.7 → 6.6.2-next.8
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
|
@@ -1819,6 +1819,10 @@ export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
|
|
|
1819
1819
|
export declare type AppStorageMutationSetAppStoredEntityArgs = {
|
|
1820
1820
|
input: SetAppStoredEntityMutationInput;
|
|
1821
1821
|
};
|
|
1822
|
+
export declare type AppStorageOrderByInput = {
|
|
1823
|
+
columnName: Scalars['String']['input'];
|
|
1824
|
+
direction: AppStorageSqlTableDataSortDirection;
|
|
1825
|
+
};
|
|
1822
1826
|
export declare type AppStorageSqlDatabaseColumn = {
|
|
1823
1827
|
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
1824
1828
|
default: Scalars['String']['output'];
|
|
@@ -1848,6 +1852,27 @@ export declare type AppStorageSqlDatabaseTable = {
|
|
|
1848
1852
|
columns: Array<AppStorageSqlDatabaseColumn>;
|
|
1849
1853
|
name: Scalars['String']['output'];
|
|
1850
1854
|
};
|
|
1855
|
+
export declare type AppStorageSqlTableDataInput = {
|
|
1856
|
+
appId: Scalars['ID']['input'];
|
|
1857
|
+
installationId: Scalars['ID']['input'];
|
|
1858
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1859
|
+
orderBy?: InputMaybe<Array<AppStorageOrderByInput>>;
|
|
1860
|
+
tableName: Scalars['String']['input'];
|
|
1861
|
+
};
|
|
1862
|
+
export declare type AppStorageSqlTableDataPayload = {
|
|
1863
|
+
__typename?: 'AppStorageSqlTableDataPayload';
|
|
1864
|
+
columnNames: Array<Scalars['String']['output']>;
|
|
1865
|
+
filteredColumnNames: Array<Scalars['String']['output']>;
|
|
1866
|
+
rows: Array<AppStorageSqlTableDataRow>;
|
|
1867
|
+
};
|
|
1868
|
+
export declare type AppStorageSqlTableDataRow = {
|
|
1869
|
+
__typename?: 'AppStorageSqlTableDataRow';
|
|
1870
|
+
values: Array<Scalars['String']['output']>;
|
|
1871
|
+
};
|
|
1872
|
+
export declare enum AppStorageSqlTableDataSortDirection {
|
|
1873
|
+
Asc = "ASC",
|
|
1874
|
+
Desc = "DESC"
|
|
1875
|
+
}
|
|
1851
1876
|
export declare type AppStoredCustomEntity = {
|
|
1852
1877
|
__typename?: 'AppStoredCustomEntity';
|
|
1853
1878
|
entityName: Scalars['String']['output'];
|
|
@@ -71371,13 +71396,6 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
|
|
|
71371
71396
|
Private = "PRIVATE",
|
|
71372
71397
|
Public = "PUBLIC"
|
|
71373
71398
|
}
|
|
71374
|
-
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
71375
|
-
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
71376
|
-
endCursor: Scalars['String']['output'];
|
|
71377
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
71378
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
71379
|
-
startCursor: Scalars['String']['output'];
|
|
71380
|
-
};
|
|
71381
71399
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
71382
71400
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
71383
71401
|
appKey: Scalars['ID']['output'];
|
|
@@ -72128,22 +72146,14 @@ export declare enum MarketplaceConsolePricingPlanStatus {
|
|
|
72128
72146
|
Live = "LIVE",
|
|
72129
72147
|
Pending = "PENDING"
|
|
72130
72148
|
}
|
|
72131
|
-
export declare type MarketplaceConsolePrivateListings = {
|
|
72132
|
-
__typename?: 'MarketplaceConsolePrivateListings';
|
|
72133
|
-
appSoftwareId: Scalars['ID']['output'];
|
|
72134
|
-
edges: Array<MarketplaceConsolePrivateListingsTokenDetails>;
|
|
72135
|
-
pageInfo: MarketplaceConsoleAppPrivateListingsPageInfo;
|
|
72136
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
72137
|
-
};
|
|
72138
72149
|
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
72139
72150
|
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
72140
|
-
|
|
72151
|
+
descriptor: Scalars['String']['output'];
|
|
72141
72152
|
versionNumber: Scalars['String']['output'];
|
|
72142
72153
|
};
|
|
72143
|
-
export declare type
|
|
72144
|
-
__typename?: '
|
|
72145
|
-
|
|
72146
|
-
node: MarketplaceConsoleTokenDetails;
|
|
72154
|
+
export declare type MarketplaceConsolePrivateListingsTokens = {
|
|
72155
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokens';
|
|
72156
|
+
tokens: Array<Maybe<MarketplaceConsoleTokenDetails>>;
|
|
72147
72157
|
};
|
|
72148
72158
|
export declare type MarketplaceConsoleProduct = {
|
|
72149
72159
|
__typename?: 'MarketplaceConsoleProduct';
|
|
@@ -72216,7 +72226,7 @@ export declare type MarketplaceConsoleProductTags = {
|
|
|
72216
72226
|
};
|
|
72217
72227
|
export declare type MarketplaceConsoleQueryApi = {
|
|
72218
72228
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
72219
|
-
appPrivateListings?: Maybe<
|
|
72229
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListingsTokens>;
|
|
72220
72230
|
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
72221
72231
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
72222
72232
|
appSoftwareVersionsByAppId?: Maybe<Array<MarketplaceConsoleAppSoftwareVersion>>;
|
|
@@ -72241,9 +72251,8 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
72241
72251
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
72242
72252
|
};
|
|
72243
72253
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
72244
|
-
|
|
72254
|
+
appId: Scalars['ID']['input'];
|
|
72245
72255
|
appSoftwareId: Scalars['ID']['input'];
|
|
72246
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72247
72256
|
};
|
|
72248
72257
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
72249
72258
|
appId: Scalars['ID']['input'];
|
|
@@ -72342,7 +72351,8 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
72342
72351
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
72343
72352
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
72344
72353
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
72345
|
-
|
|
72354
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
72355
|
+
links: Array<Maybe<MarketplaceConsolePrivateListingsLink>>;
|
|
72346
72356
|
token: Scalars['String']['output'];
|
|
72347
72357
|
};
|
|
72348
72358
|
export declare type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
@@ -79941,6 +79951,7 @@ export declare type Query = {
|
|
|
79941
79951
|
appLogs?: Maybe<AppLogConnection>;
|
|
79942
79952
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
79943
79953
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
79954
|
+
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
79944
79955
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
79945
79956
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
79946
79957
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
@@ -80717,6 +80728,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
80717
80728
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
80718
80729
|
input: AppStorageSqlDatabaseInput;
|
|
80719
80730
|
};
|
|
80731
|
+
export declare type QueryAppStorage_SqlTableDataArgs = {
|
|
80732
|
+
input: AppStorageSqlTableDataInput;
|
|
80733
|
+
};
|
|
80720
80734
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
80721
80735
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
80722
80736
|
cursor?: InputMaybe<Scalars['String']['input']>;
|