@forge/cli-shared 6.5.4-next.2 → 6.5.4
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
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a6ba0b4: Improved handling of manifest paths in manifest interpolators
|
|
8
|
+
- Updated dependencies [793b6cf]
|
|
9
|
+
- Updated dependencies [a6ba0b4]
|
|
10
|
+
- Updated dependencies [67d187b]
|
|
11
|
+
- @forge/manifest@8.6.0
|
|
12
|
+
|
|
3
13
|
## 6.5.4-next.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -45589,7 +45589,7 @@ export declare type HamsInvoiceGroup = CommerceInvoiceGroup & {
|
|
|
45589
45589
|
export declare type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGroupExperienceCapabilities & {
|
|
45590
45590
|
__typename?: 'HamsInvoiceGroupExperienceCapabilities';
|
|
45591
45591
|
configurePayment?: Maybe<HamsExperienceCapability>;
|
|
45592
|
-
configurePaymentV2?: Maybe<
|
|
45592
|
+
configurePaymentV2?: Maybe<HamsConfigurePaymentMethodExperienceCapability>;
|
|
45593
45593
|
};
|
|
45594
45594
|
export declare type HamsOffering = CommerceOffering & {
|
|
45595
45595
|
__typename?: 'HamsOffering';
|
|
@@ -78369,9 +78369,7 @@ export declare enum RadarEntityType {
|
|
|
78369
78369
|
Position = "position",
|
|
78370
78370
|
Worker = "worker"
|
|
78371
78371
|
}
|
|
78372
|
-
export declare type RadarFieldDefinition =
|
|
78373
|
-
__typename?: 'RadarFieldDefinition';
|
|
78374
|
-
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78372
|
+
export declare type RadarFieldDefinition = {
|
|
78375
78373
|
displayName: Scalars['String']['output'];
|
|
78376
78374
|
entity: RadarEntityType;
|
|
78377
78375
|
filterOptions: RadarFilterOptions;
|
|
@@ -78482,6 +78480,36 @@ export declare type RadarMutationResponse = {
|
|
|
78482
78480
|
__typename?: 'RadarMutationResponse';
|
|
78483
78481
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
78484
78482
|
};
|
|
78483
|
+
export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
78484
|
+
__typename?: 'RadarNonNumericFieldDefinition';
|
|
78485
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78486
|
+
displayName: Scalars['String']['output'];
|
|
78487
|
+
entity: RadarEntityType;
|
|
78488
|
+
filterOptions: RadarFilterOptions;
|
|
78489
|
+
id: Scalars['ID']['output'];
|
|
78490
|
+
isCustom: Scalars['Boolean']['output'];
|
|
78491
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
78492
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
78493
|
+
relativeId: Scalars['String']['output'];
|
|
78494
|
+
type: RadarFieldType;
|
|
78495
|
+
};
|
|
78496
|
+
export declare enum RadarNumericAppearance {
|
|
78497
|
+
Duration = "DURATION",
|
|
78498
|
+
Number = "NUMBER"
|
|
78499
|
+
}
|
|
78500
|
+
export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
78501
|
+
__typename?: 'RadarNumericFieldDefinition';
|
|
78502
|
+
appearance: RadarNumericAppearance;
|
|
78503
|
+
displayName: Scalars['String']['output'];
|
|
78504
|
+
entity: RadarEntityType;
|
|
78505
|
+
filterOptions: RadarFilterOptions;
|
|
78506
|
+
id: Scalars['ID']['output'];
|
|
78507
|
+
isCustom: Scalars['Boolean']['output'];
|
|
78508
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
78509
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
78510
|
+
relativeId: Scalars['String']['output'];
|
|
78511
|
+
type: RadarFieldType;
|
|
78512
|
+
};
|
|
78485
78513
|
export declare type RadarNumericFieldValue = {
|
|
78486
78514
|
__typename?: 'RadarNumericFieldValue';
|
|
78487
78515
|
displayValue?: Maybe<Scalars['Int']['output']>;
|