@platecms/delta-vue 1.2.0 → 1.3.0
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/__generated__/graphql.ts +101 -59
- package/package.json +5 -5
package/__generated__/graphql.ts
CHANGED
|
@@ -19,7 +19,7 @@ export type Scalars = {
|
|
|
19
19
|
ContentValueType: { input: any; output: any; }
|
|
20
20
|
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
|
|
21
21
|
DateTime: { input: any; output: any; }
|
|
22
|
-
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](
|
|
22
|
+
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf). */
|
|
23
23
|
JSON: { input: any; output: any; }
|
|
24
24
|
/** A string representing the PRN object. Must match '^prn(:[A-Za-z0-9-_]+){5}$'. */
|
|
25
25
|
PRN: { input: any; output: any; }
|
|
@@ -86,6 +86,8 @@ export type AssetProcessedUrlsArgs = {
|
|
|
86
86
|
export type Blueprint = {
|
|
87
87
|
__typename?: 'Blueprint';
|
|
88
88
|
channel: Channel;
|
|
89
|
+
/** The ID of the Channel this Blueprint belongs to. */
|
|
90
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
89
91
|
createdAt: Scalars['DateTime']['output'];
|
|
90
92
|
/** The Experience Component which defines this Blueprint. */
|
|
91
93
|
definedBy: ExperienceComponent;
|
|
@@ -114,6 +116,7 @@ export type BlueprintsConnection = {
|
|
|
114
116
|
/** The filter input type for 'Blueprints'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
115
117
|
export type BlueprintsFilterInput = {
|
|
116
118
|
_not?: InputMaybe<Array<BlueprintsFilterInput>>;
|
|
119
|
+
channelId?: InputMaybe<Array<StringFilter>>;
|
|
117
120
|
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
118
121
|
isFixed?: InputMaybe<Array<BooleanFilter>>;
|
|
119
122
|
name?: InputMaybe<Array<StringFilter>>;
|
|
@@ -259,15 +262,6 @@ export type BuildingBlocksFilterInput = {
|
|
|
259
262
|
updatedAt?: InputMaybe<Array<DateFilter>>;
|
|
260
263
|
};
|
|
261
264
|
|
|
262
|
-
export type CasDatabaseTextMatch = {
|
|
263
|
-
__typename?: 'CasDatabaseTextMatch';
|
|
264
|
-
confidence: Scalars['Float']['output'];
|
|
265
|
-
contentValue: ContentValue;
|
|
266
|
-
endIndex: Scalars['Int']['output'];
|
|
267
|
-
extractionMethod: Scalars['String']['output'];
|
|
268
|
-
startIndex: Scalars['Int']['output'];
|
|
269
|
-
};
|
|
270
|
-
|
|
271
265
|
export type CasImageContentValueMatch = {
|
|
272
266
|
__typename?: 'CasImageContentValueMatch';
|
|
273
267
|
similarContentValue: ContentValue;
|
|
@@ -279,10 +273,20 @@ export type CasRegexSuggestion = {
|
|
|
279
273
|
__typename?: 'CasRegexSuggestion';
|
|
280
274
|
confidence: Scalars['Float']['output'];
|
|
281
275
|
endIndex: Scalars['Int']['output'];
|
|
282
|
-
|
|
276
|
+
method: Scalars['String']['output'];
|
|
283
277
|
startIndex: Scalars['Int']['output'];
|
|
284
278
|
};
|
|
285
279
|
|
|
280
|
+
export type CastSuggestion = {
|
|
281
|
+
__typename?: 'CastSuggestion';
|
|
282
|
+
endIndex: Scalars['Int']['output'];
|
|
283
|
+
message: Scalars['String']['output'];
|
|
284
|
+
method: Scalars['String']['output'];
|
|
285
|
+
original: Array<Content>;
|
|
286
|
+
startIndex: Scalars['Int']['output'];
|
|
287
|
+
suggested: InterpolatedContentValue;
|
|
288
|
+
};
|
|
289
|
+
|
|
286
290
|
export type Channel = {
|
|
287
291
|
__typename?: 'Channel';
|
|
288
292
|
apiTokens: Array<ApiToken>;
|
|
@@ -334,8 +338,17 @@ export type ConnectContentValueInput = {
|
|
|
334
338
|
contentValue: Scalars['PRN']['input'];
|
|
335
339
|
};
|
|
336
340
|
|
|
341
|
+
export type Content = {
|
|
342
|
+
__typename?: 'Content';
|
|
343
|
+
children?: Maybe<Array<Content>>;
|
|
344
|
+
type: Scalars['String']['output'];
|
|
345
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
|
346
|
+
};
|
|
347
|
+
|
|
337
348
|
export type ContentExperience = {
|
|
338
349
|
__typename?: 'ContentExperience';
|
|
350
|
+
/** The ID of the Channel this ContentExperience belongs to. */
|
|
351
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
339
352
|
createdAt: Scalars['DateTime']['output'];
|
|
340
353
|
experienceComponent: ExperienceComponent;
|
|
341
354
|
/** The issues that this Content Experience is a subject of */
|
|
@@ -382,6 +395,7 @@ export type ContentExperiencesConnection = {
|
|
|
382
395
|
/** The filter input type for 'ContentExperiences'. Objects/maps are treated as AND, while arrays are treated as OR. */
|
|
383
396
|
export type ContentExperiencesFilterInput = {
|
|
384
397
|
_not?: InputMaybe<Array<ContentExperiencesFilterInput>>;
|
|
398
|
+
channelId?: InputMaybe<Array<StringFilter>>;
|
|
385
399
|
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
386
400
|
prn?: InputMaybe<Array<PrnFilter>>;
|
|
387
401
|
seoDescription?: InputMaybe<Array<StringFilter>>;
|
|
@@ -652,7 +666,8 @@ export enum ContentValueTypeNames {
|
|
|
652
666
|
PathPart = 'PATH_PART',
|
|
653
667
|
SmartText = 'SMART_TEXT',
|
|
654
668
|
String = 'STRING',
|
|
655
|
-
Tag = 'TAG'
|
|
669
|
+
Tag = 'TAG',
|
|
670
|
+
Unknown = 'UNKNOWN'
|
|
656
671
|
}
|
|
657
672
|
|
|
658
673
|
export type ContentValuesConnection = {
|
|
@@ -760,16 +775,20 @@ export type CreateBuildingBlockFieldForBuildingBlockInput = {
|
|
|
760
775
|
|
|
761
776
|
export type CreateBuildingBlockFieldFulfillmentForExperienceComponentInput = {
|
|
762
777
|
buildingBlockField: Scalars['PRN']['input'];
|
|
763
|
-
/** The
|
|
764
|
-
|
|
778
|
+
/** The PRN of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
|
|
779
|
+
contentValueToConnect?: InputMaybe<Scalars['PRN']['input']>;
|
|
780
|
+
/** Create a new Content Value for this Building Block Field Fulfillment. Exactly one of contentValue or createContentValue must be provided. */
|
|
781
|
+
contentValueToCreate?: InputMaybe<CreateContentValueInput>;
|
|
765
782
|
/** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. Null means it should be the last. */
|
|
766
783
|
next?: InputMaybe<Scalars['PRN']['input']>;
|
|
767
784
|
};
|
|
768
785
|
|
|
769
786
|
export type CreateBuildingBlockFieldFulfillmentInput = {
|
|
770
787
|
buildingBlockField: Scalars['PRN']['input'];
|
|
771
|
-
/** The
|
|
772
|
-
|
|
788
|
+
/** The PRN of the Content Value which this BuildingBlockFieldFulfillment is filled by. */
|
|
789
|
+
contentValueToConnect?: InputMaybe<Scalars['PRN']['input']>;
|
|
790
|
+
/** Create a new Content Value for this Building Block Field Fulfillment. Exactly one of contentValue or createContentValue must be provided. */
|
|
791
|
+
contentValueToCreate?: InputMaybe<CreateContentValueInput>;
|
|
773
792
|
/** The PRN of the Experience Component which this Building Block Field Fulfillment fulfills. */
|
|
774
793
|
experienceComponent: Scalars['PRN']['input'];
|
|
775
794
|
/** The PRN of the BuildingBlockFieldFulfillment that this BuildingBlockFieldFulfillment should manually be sorted after. Null means it should be the last. */
|
|
@@ -935,8 +954,8 @@ export type CreateExperienceComponentInput = {
|
|
|
935
954
|
buildingBlockFieldFulfillments: Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>;
|
|
936
955
|
/** Must be set if the Building Block has a Grid Definition. */
|
|
937
956
|
grid?: InputMaybe<CreateGridInput>;
|
|
938
|
-
gridPlacement?: InputMaybe<
|
|
939
|
-
/** Whether the Experience Component is a draft.
|
|
957
|
+
gridPlacement?: InputMaybe<CreateGridPlacementForExperienceComponentInput>;
|
|
958
|
+
/** Whether the Experience Component is a draft. */
|
|
940
959
|
isDraft: Scalars['Boolean']['input'];
|
|
941
960
|
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
942
961
|
};
|
|
@@ -946,8 +965,8 @@ export type CreateGlobalExperienceComponentInput = {
|
|
|
946
965
|
buildingBlockFieldFulfillments: Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>;
|
|
947
966
|
/** Must be set if the Building Block has a Grid Definition. */
|
|
948
967
|
grid?: InputMaybe<CreateGridInput>;
|
|
949
|
-
gridPlacement?: InputMaybe<
|
|
950
|
-
/** Whether the Experience Component is a draft.
|
|
968
|
+
gridPlacement?: InputMaybe<CreateGridPlacementForExperienceComponentInput>;
|
|
969
|
+
/** Whether the Experience Component is a draft. */
|
|
951
970
|
isDraft: Scalars['Boolean']['input'];
|
|
952
971
|
name: Scalars['String']['input'];
|
|
953
972
|
preview?: InputMaybe<Scalars['PRN']['input']>;
|
|
@@ -966,6 +985,11 @@ export type CreateGridInput = {
|
|
|
966
985
|
rows: Scalars['Int']['input'];
|
|
967
986
|
};
|
|
968
987
|
|
|
988
|
+
export type CreateGridPlacementForExperienceComponentInput = {
|
|
989
|
+
grid: Scalars['PRN']['input'];
|
|
990
|
+
row: Scalars['Int']['input'];
|
|
991
|
+
};
|
|
992
|
+
|
|
969
993
|
export type CreateGridPlacementInput = {
|
|
970
994
|
/** The PRN of the Experience Component to place in this Grid Placement. */
|
|
971
995
|
experienceComponent: Scalars['PRN']['input'];
|
|
@@ -1115,7 +1139,7 @@ export type ExperienceComponent = {
|
|
|
1115
1139
|
grid?: Maybe<Grid>;
|
|
1116
1140
|
/** The Grid Placements this Experience Component is placed in. */
|
|
1117
1141
|
gridPlacements: Array<GridPlacement>;
|
|
1118
|
-
/** Whether the Experience Component is a draft.
|
|
1142
|
+
/** Whether the Experience Component is a draft. */
|
|
1119
1143
|
isDraft: Scalars['Boolean']['output'];
|
|
1120
1144
|
isGlobal: Scalars['Boolean']['output'];
|
|
1121
1145
|
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
@@ -1319,6 +1343,13 @@ export type IntFilter = {
|
|
|
1319
1343
|
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1320
1344
|
};
|
|
1321
1345
|
|
|
1346
|
+
export type InterpolatedContentValue = {
|
|
1347
|
+
__typename?: 'InterpolatedContentValue';
|
|
1348
|
+
prn: Scalars['PRN']['output'];
|
|
1349
|
+
type: Scalars['String']['output'];
|
|
1350
|
+
value: Scalars['CAST']['output'];
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1322
1353
|
export type Invitation = {
|
|
1323
1354
|
__typename?: 'Invitation';
|
|
1324
1355
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -1551,7 +1582,6 @@ export type Mutation = {
|
|
|
1551
1582
|
* Removes one or many ContentFields.
|
|
1552
1583
|
* Throws NotFoundException when no ContentField could be found.
|
|
1553
1584
|
* Throws UnprocessableContentError when attempting to remove a Content Field outside of the DEVELOPMENT stage.
|
|
1554
|
-
* Throws UnprocessableContentError when attempting to remove a Content Field that is being used by Content Values.
|
|
1555
1585
|
* Throws BadRequestError when attempting to remove a Content Field that is being used in the displayNameTemplate of its Content Type.
|
|
1556
1586
|
* Throws BadRequestError when attempting to remove a Content Field that is being used in the displayImageField of its Content Type.
|
|
1557
1587
|
*/
|
|
@@ -2333,6 +2363,8 @@ export type PathPart = {
|
|
|
2333
2363
|
amountOfDescendantsWithContentExperiences: Scalars['Int']['output'];
|
|
2334
2364
|
/** All Path Parts in a "family" (ancestors and decendents) are connected to the same Channel. This does not make sense semantically, but makes it much easier to access the Channel from any Path Part. */
|
|
2335
2365
|
channel: Channel;
|
|
2366
|
+
/** The ID of the Channel this PathPart belongs to. */
|
|
2367
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
2336
2368
|
children: Array<PathPart>;
|
|
2337
2369
|
contentExperience?: Maybe<ContentExperience>;
|
|
2338
2370
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -2376,6 +2408,7 @@ export type PathPartsFilterInput = {
|
|
|
2376
2408
|
amountOfChildrenWithContentExperiences?: InputMaybe<Array<IntFilter>>;
|
|
2377
2409
|
amountOfDescendants?: InputMaybe<Array<IntFilter>>;
|
|
2378
2410
|
amountOfDescendantsWithContentExperiences?: InputMaybe<Array<IntFilter>>;
|
|
2411
|
+
channelId?: InputMaybe<Array<StringFilter>>;
|
|
2379
2412
|
createdAt?: InputMaybe<Array<DateFilter>>;
|
|
2380
2413
|
hasContentExperience?: InputMaybe<Array<BooleanFilter>>;
|
|
2381
2414
|
parentId?: InputMaybe<Array<StringFilter>>;
|
|
@@ -2442,16 +2475,10 @@ export type Query = {
|
|
|
2442
2475
|
buildingBlockFieldFulfillments: BuildingBlockFieldFulfillmentsConnection;
|
|
2443
2476
|
/** Orders and paginates all BuildingBlockFields. */
|
|
2444
2477
|
buildingBlockFields: BuildingBlockFieldsConnection;
|
|
2445
|
-
/** Detect CAST matches with database reusable entries. Matches are based on plaintext. */
|
|
2446
|
-
|
|
2447
|
-
/**
|
|
2448
|
-
|
|
2449
|
-
/** Get similar image Content Values within the database from an asset PRN input. Use similarity score based on image hashes to find potential duplicates. */
|
|
2450
|
-
casFindSimilarImageContentValuesFromAsset: Array<CasImageContentValueMatch>;
|
|
2451
|
-
/** Use predefined regex patterns to detect potentially reusable content in a string. */
|
|
2452
|
-
casRegexSuggestions: Array<CasRegexSuggestion>;
|
|
2453
|
-
/** Detect string matches with database reusable entries. */
|
|
2454
|
-
casStringMatches: Array<CasDatabaseTextMatch>;
|
|
2478
|
+
/** Detect CAST matches with database reusable entries and return an array with the suggestions, Ordered by occurrence in the text. Matches are based on plaintext. */
|
|
2479
|
+
castSuggestions: Array<CastSuggestion>;
|
|
2480
|
+
/** Detect CAST matches with database reusable entries and return the CAST with suggestions inserted. Matches are based on plaintext. */
|
|
2481
|
+
castSuggestionsInRoot?: Maybe<Scalars['CAST']['output']>;
|
|
2455
2482
|
/** Finds one or many Channels by PRN. Throws NotFoundException when no Channel could be found. */
|
|
2456
2483
|
channel: Array<Channel>;
|
|
2457
2484
|
/** Orders and paginates all Channels. */
|
|
@@ -2483,6 +2510,10 @@ export type Query = {
|
|
|
2483
2510
|
experienceComponent: Array<ExperienceComponent>;
|
|
2484
2511
|
/** Orders and paginates all ExperienceComponents. */
|
|
2485
2512
|
experienceComponents: ExperienceComponentsConnection;
|
|
2513
|
+
/** Get similar image Content Values within the database. Use similarity score based on image hashes to find potential duplicates. */
|
|
2514
|
+
findSimilarImageContentValues: Array<CasImageContentValueMatch>;
|
|
2515
|
+
/** Get similar image Content Values within the database from an asset PRN input. Use similarity score based on image hashes to find potential duplicates. */
|
|
2516
|
+
findSimilarImageContentValuesFromAsset: Array<CasImageContentValueMatch>;
|
|
2486
2517
|
/** Finds one or many Grids by PRN. Throws NotFoundException when no Grid could be found. */
|
|
2487
2518
|
grid: Array<Grid>;
|
|
2488
2519
|
/** Finds one or many GridDefinitions by PRN. Throws NotFoundException when no GridDefinition could be found. */
|
|
@@ -2512,6 +2543,8 @@ export type Query = {
|
|
|
2512
2543
|
/** Orders and paginates all Path Parts. */
|
|
2513
2544
|
pathParts: PathPartsConnection;
|
|
2514
2545
|
plateMaintainers: Array<User>;
|
|
2546
|
+
/** Use predefined regex patterns to detect potentially reusable content in a string. */
|
|
2547
|
+
regexSuggestions: Array<CasRegexSuggestion>;
|
|
2515
2548
|
/** Finds all RoleAssignments for the current Subject (e.g. the logged in user or API token) */
|
|
2516
2549
|
roleAssignmentsForCurrentSubject: Array<RoleAssignment>;
|
|
2517
2550
|
/** Finds all RoleAssignments for the given Organization */
|
|
@@ -2590,37 +2623,17 @@ export type QueryBuildingBlockFieldsArgs = {
|
|
|
2590
2623
|
};
|
|
2591
2624
|
|
|
2592
2625
|
|
|
2593
|
-
export type
|
|
2626
|
+
export type QueryCastSuggestionsArgs = {
|
|
2594
2627
|
config?: InputMaybe<DatabaseTextMatchConfig>;
|
|
2595
2628
|
inputCast: Scalars['CAST']['input'];
|
|
2596
|
-
};
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
export type QueryCasFindSimilarImageContentValuesArgs = {
|
|
2600
|
-
config?: InputMaybe<DuplicateImagesDetectionConfig>;
|
|
2601
|
-
contentValuePrnString: Scalars['String']['input'];
|
|
2602
2629
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2603
2630
|
};
|
|
2604
2631
|
|
|
2605
2632
|
|
|
2606
|
-
export type
|
|
2607
|
-
assetPrnString: Scalars['String']['input'];
|
|
2608
|
-
config?: InputMaybe<DuplicateImagesDetectionConfig>;
|
|
2609
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2610
|
-
};
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
export type QueryCasRegexSuggestionsArgs = {
|
|
2614
|
-
config?: InputMaybe<RegexExtractionConfig>;
|
|
2615
|
-
inputText: Scalars['String']['input'];
|
|
2616
|
-
limit: Scalars['Int']['input'];
|
|
2617
|
-
};
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
export type QueryCasStringMatchesArgs = {
|
|
2633
|
+
export type QueryCastSuggestionsInRootArgs = {
|
|
2621
2634
|
config?: InputMaybe<DatabaseTextMatchConfig>;
|
|
2622
|
-
|
|
2623
|
-
limit
|
|
2635
|
+
inputCast: Scalars['CAST']['input'];
|
|
2636
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2624
2637
|
};
|
|
2625
2638
|
|
|
2626
2639
|
|
|
@@ -2637,6 +2650,7 @@ export type QueryChannelsArgs = {
|
|
|
2637
2650
|
|
|
2638
2651
|
|
|
2639
2652
|
export type QueryContentExperienceArgs = {
|
|
2653
|
+
autoFetchFullContentExperience?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2640
2654
|
prn: Array<Scalars['PRN']['input']>;
|
|
2641
2655
|
};
|
|
2642
2656
|
|
|
@@ -2713,6 +2727,20 @@ export type QueryExperienceComponentsArgs = {
|
|
|
2713
2727
|
};
|
|
2714
2728
|
|
|
2715
2729
|
|
|
2730
|
+
export type QueryFindSimilarImageContentValuesArgs = {
|
|
2731
|
+
config?: InputMaybe<DuplicateImagesDetectionConfig>;
|
|
2732
|
+
contentValuePrnString: Scalars['String']['input'];
|
|
2733
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2734
|
+
};
|
|
2735
|
+
|
|
2736
|
+
|
|
2737
|
+
export type QueryFindSimilarImageContentValuesFromAssetArgs = {
|
|
2738
|
+
assetPrnString: Scalars['String']['input'];
|
|
2739
|
+
config?: InputMaybe<DuplicateImagesDetectionConfig>;
|
|
2740
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2741
|
+
};
|
|
2742
|
+
|
|
2743
|
+
|
|
2716
2744
|
export type QueryGridArgs = {
|
|
2717
2745
|
prn: Array<Scalars['PRN']['input']>;
|
|
2718
2746
|
};
|
|
@@ -2779,6 +2807,13 @@ export type QueryPathPartsArgs = {
|
|
|
2779
2807
|
};
|
|
2780
2808
|
|
|
2781
2809
|
|
|
2810
|
+
export type QueryRegexSuggestionsArgs = {
|
|
2811
|
+
config?: InputMaybe<RegexExtractionConfig>;
|
|
2812
|
+
inputText: Scalars['String']['input'];
|
|
2813
|
+
limit: Scalars['Int']['input'];
|
|
2814
|
+
};
|
|
2815
|
+
|
|
2816
|
+
|
|
2782
2817
|
export type QueryRoleAssignmentsForOrganizationArgs = {
|
|
2783
2818
|
subjectType?: InputMaybe<SubjectType>;
|
|
2784
2819
|
};
|
|
@@ -2835,6 +2870,8 @@ export enum RemoveBlueprintInstanceMode {
|
|
|
2835
2870
|
export type RemoveBlueprintResponse = {
|
|
2836
2871
|
__typename?: 'RemoveBlueprintResponse';
|
|
2837
2872
|
channel: Channel;
|
|
2873
|
+
/** The ID of the Channel this Blueprint belongs to. */
|
|
2874
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
2838
2875
|
createdAt: Scalars['DateTime']['output'];
|
|
2839
2876
|
/** The Experience Component which defines this Blueprint. */
|
|
2840
2877
|
definedBy: ExperienceComponent;
|
|
@@ -2862,6 +2899,8 @@ export type RemoveBuildingBlockResponse = {
|
|
|
2862
2899
|
|
|
2863
2900
|
export type RemoveContentExperienceResponse = {
|
|
2864
2901
|
__typename?: 'RemoveContentExperienceResponse';
|
|
2902
|
+
/** The ID of the Channel this ContentExperience belongs to. */
|
|
2903
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
2865
2904
|
createdAt: Scalars['DateTime']['output'];
|
|
2866
2905
|
experienceComponent: ExperienceComponent;
|
|
2867
2906
|
/** The issues that this Content Experience is a subject of */
|
|
@@ -2950,7 +2989,7 @@ export type RemoveExperienceComponentResponse = {
|
|
|
2950
2989
|
grid?: Maybe<Grid>;
|
|
2951
2990
|
/** The Grid Placements this Experience Component is placed in. */
|
|
2952
2991
|
gridPlacements: Array<GridPlacement>;
|
|
2953
|
-
/** Whether the Experience Component is a draft.
|
|
2992
|
+
/** Whether the Experience Component is a draft. */
|
|
2954
2993
|
isDraft: Scalars['Boolean']['output'];
|
|
2955
2994
|
isGlobal: Scalars['Boolean']['output'];
|
|
2956
2995
|
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
@@ -3014,7 +3053,8 @@ export enum SeedType {
|
|
|
3014
3053
|
Performance_500 = 'PERFORMANCE_500',
|
|
3015
3054
|
Performance_1000 = 'PERFORMANCE_1000',
|
|
3016
3055
|
Performance_2000 = 'PERFORMANCE_2000',
|
|
3017
|
-
Performance_5000 = 'PERFORMANCE_5000'
|
|
3056
|
+
Performance_5000 = 'PERFORMANCE_5000',
|
|
3057
|
+
QaContent = 'QA_CONTENT'
|
|
3018
3058
|
}
|
|
3019
3059
|
|
|
3020
3060
|
export enum SortingDirection {
|
|
@@ -3365,7 +3405,9 @@ export type UpdateDecimalCountContentValidationRuleInput = {
|
|
|
3365
3405
|
export type UpdateExperienceComponentInput = {
|
|
3366
3406
|
/** !!!WARNING!!! If you update to a new Building Block, all existing Building Block Field Fulfillments will be removed! Content Values and Grid Placements will remain. */
|
|
3367
3407
|
buildingBlock?: InputMaybe<Scalars['PRN']['input']>;
|
|
3368
|
-
|
|
3408
|
+
fulfillmentsToConnect?: InputMaybe<Array<Scalars['PRN']['input']>>;
|
|
3409
|
+
fulfillmentsToCreate?: InputMaybe<Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>>;
|
|
3410
|
+
/** Whether the Experience Component is a draft. */
|
|
3369
3411
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3370
3412
|
/** The name of the Experience Component. Only applicable for global Experience Components. */
|
|
3371
3413
|
name?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platecms/delta-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Plugin to connect to the Plate Delta CMS in a Vue application.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"./styles.css": "./src/styles.css"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platecms/delta-cast": "1.
|
|
27
|
-
"@platecms/delta-castscript": "1.
|
|
28
|
-
"@platecms/delta-client": "1.
|
|
29
|
-
"@platecms/delta-plate-resource-notation": "1.
|
|
26
|
+
"@platecms/delta-cast": "1.3.0",
|
|
27
|
+
"@platecms/delta-castscript": "1.3.0",
|
|
28
|
+
"@platecms/delta-client": "1.3.0",
|
|
29
|
+
"@platecms/delta-plate-resource-notation": "1.3.0",
|
|
30
30
|
"@graphql-codegen/cli": "5.0.7",
|
|
31
31
|
"@graphql-typed-document-node/core": "3.2.0",
|
|
32
32
|
"axios": "1.11.0",
|