@graphql-hive/core 0.19.0-alpha-20251217162753-22a119089c991634451be417adbc3d99480dd4eb → 0.19.0-alpha-20251217165442-a06fbf10adf650bd431c2d236058f599b54c9f19

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/cjs/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = '0.19.0-alpha-20251217162753-22a119089c991634451be417adbc3d99480dd4eb';
4
+ exports.version = '0.19.0-alpha-20251217165442-a06fbf10adf650bd431c2d236058f599b54c9f19';
package/esm/version.js CHANGED
@@ -1 +1 @@
1
- export const version = '0.19.0-alpha-20251217162753-22a119089c991634451be417adbc3d99480dd4eb';
1
+ export const version = '0.19.0-alpha-20251217165442-a06fbf10adf650bd431c2d236058f599b54c9f19';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-hive/core",
3
- "version": "0.19.0-alpha-20251217162753-22a119089c991634451be417adbc3d99480dd4eb",
3
+ "version": "0.19.0-alpha-20251217165442-a06fbf10adf650bd431c2d236058f599b54c9f19",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
@@ -154,6 +154,18 @@ export type AppDeploymentOperation = {
154
154
  /** GraphQL operation hash. */
155
155
  hash: Scalars['String']['input'];
156
156
  };
157
+ /**
158
+ * Input for updating app deployment protection configuration.
159
+ * Fields not provided (omitted) will retain the previous value.
160
+ */
161
+ export type AppDeploymentProtectionConfigurationInput = {
162
+ /** Enable or disable app deployment protection. */
163
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
164
+ /** Maximum traffic percentage allowed for retirement (0-100). */
165
+ maxTrafficPercentage?: InputMaybe<Scalars['Float']['input']>;
166
+ /** Minimum days of inactivity required before retirement (must be >= 0). */
167
+ minDaysInactive?: InputMaybe<Scalars['Int']['input']>;
168
+ };
157
169
  export type AppDeploymentResourceAssignmentInput = {
158
170
  appDeployment: Scalars['String']['input'];
159
171
  };
@@ -632,6 +644,8 @@ export declare enum ResourceSelectorIntentType {
632
644
  export type RetireAppDeploymentInput = {
633
645
  appName: Scalars['String']['input'];
634
646
  appVersion: Scalars['String']['input'];
647
+ /** Force retirement even if protection rules would prevent it. */
648
+ force?: InputMaybe<Scalars['Boolean']['input']>;
635
649
  target?: InputMaybe<TargetReferenceInput>;
636
650
  };
637
651
  export declare enum RuleInstanceSeverityLevel {
@@ -976,6 +990,12 @@ export type UpdateSchemaCompositionNativeInput = {
976
990
  organizationSlug: Scalars['String']['input'];
977
991
  projectSlug: Scalars['String']['input'];
978
992
  };
993
+ export type UpdateTargetAppDeploymentProtectionConfigurationInput = {
994
+ /** Updates to the app deployment protection configuration. */
995
+ appDeploymentProtectionConfiguration: AppDeploymentProtectionConfigurationInput;
996
+ /** The target on which the settings are adjusted. */
997
+ target: TargetReferenceInput;
998
+ };
979
999
  export type UpdateTargetConditionalBreakingChangeConfigurationInput = {
980
1000
  /** Updates to the conditional breaking change configuration. */
981
1001
  conditionalBreakingChangeConfiguration: ConditionalBreakingChangeConfigurationInput;
@@ -154,6 +154,18 @@ export type AppDeploymentOperation = {
154
154
  /** GraphQL operation hash. */
155
155
  hash: Scalars['String']['input'];
156
156
  };
157
+ /**
158
+ * Input for updating app deployment protection configuration.
159
+ * Fields not provided (omitted) will retain the previous value.
160
+ */
161
+ export type AppDeploymentProtectionConfigurationInput = {
162
+ /** Enable or disable app deployment protection. */
163
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
164
+ /** Maximum traffic percentage allowed for retirement (0-100). */
165
+ maxTrafficPercentage?: InputMaybe<Scalars['Float']['input']>;
166
+ /** Minimum days of inactivity required before retirement (must be >= 0). */
167
+ minDaysInactive?: InputMaybe<Scalars['Int']['input']>;
168
+ };
157
169
  export type AppDeploymentResourceAssignmentInput = {
158
170
  appDeployment: Scalars['String']['input'];
159
171
  };
@@ -632,6 +644,8 @@ export declare enum ResourceSelectorIntentType {
632
644
  export type RetireAppDeploymentInput = {
633
645
  appName: Scalars['String']['input'];
634
646
  appVersion: Scalars['String']['input'];
647
+ /** Force retirement even if protection rules would prevent it. */
648
+ force?: InputMaybe<Scalars['Boolean']['input']>;
635
649
  target?: InputMaybe<TargetReferenceInput>;
636
650
  };
637
651
  export declare enum RuleInstanceSeverityLevel {
@@ -976,6 +990,12 @@ export type UpdateSchemaCompositionNativeInput = {
976
990
  organizationSlug: Scalars['String']['input'];
977
991
  projectSlug: Scalars['String']['input'];
978
992
  };
993
+ export type UpdateTargetAppDeploymentProtectionConfigurationInput = {
994
+ /** Updates to the app deployment protection configuration. */
995
+ appDeploymentProtectionConfiguration: AppDeploymentProtectionConfigurationInput;
996
+ /** The target on which the settings are adjusted. */
997
+ target: TargetReferenceInput;
998
+ };
979
999
  export type UpdateTargetConditionalBreakingChangeConfigurationInput = {
980
1000
  /** Updates to the conditional breaking change configuration. */
981
1001
  conditionalBreakingChangeConfiguration: ConditionalBreakingChangeConfigurationInput;
@@ -1,2 +1,2 @@
1
- export declare const version = "0.19.0-alpha-20251217162753-22a119089c991634451be417adbc3d99480dd4eb";
1
+ export declare const version = "0.19.0-alpha-20251217165442-a06fbf10adf650bd431c2d236058f599b54c9f19";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export declare const version = "0.19.0-alpha-20251217162753-22a119089c991634451be417adbc3d99480dd4eb";
1
+ export declare const version = "0.19.0-alpha-20251217165442-a06fbf10adf650bd431c2d236058f599b54c9f19";
2
2
  //# sourceMappingURL=version.d.ts.map