diff --git a/src/typesOfSchema.ts b/src/typesOfSchema.ts index 7ba3f5d5..f58d9f1b 100644 --- a/src/typesOfSchema.ts +++ b/src/typesOfSchema.ts @@ -140,8 +140,8 @@ const matchers: Record boolean> = { } return 'enum' in schema }, - UNNAMED_SCHEMA() { - return false // Explicitly handled as the default case + UNNAMED_SCHEMA(schema) { + return !('$id' in schema) && ('patternProperties' in schema || 'properties' in schema) }, UNTYPED_ARRAY(schema) { return schema.type === 'array' && !('items' in schema) diff --git a/test/__snapshots__/test/test.ts.md b/test/__snapshots__/test/test.ts.md index c83bd491..9961323d 100644 --- a/test/__snapshots__/test/test.ts.md +++ b/test/__snapshots__/test/test.ts.md @@ -860,7 +860,16 @@ Generated by [AVA](https://avajs.dev). value: number | string;␊ anotherValue?: null | string;␊ nullableStringEnum?: null | ("foo" | "bar");␊ - nullableObj?: null | {␊ + nullableObj?: (␊ + | (null & {␊ + foo: string;␊ + [k: string]: unknown;␊ + })␊ + | {␊ + foo: string;␊ + [k: string]: unknown;␊ + }␊ + ) & {␊ foo: string;␊ [k: string]: unknown;␊ };␊ @@ -1289,6 +1298,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ };␊ @@ -1334,6 +1346,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: Encoding;␊ };␊ /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ */␊ @@ -1350,7 +1365,7 @@ Generated by [AVA](https://avajs.dev). allowReserved?: boolean;␊ schema?: Schema | Reference;␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ example?: unknown;␊ examples?: {␊ @@ -1359,6 +1374,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ };␊ @@ -1599,6 +1617,24 @@ Generated by [AVA](https://avajs.dev). explode?: boolean;␊ allowReserved?: boolean;␊ }␊ + export interface MediaType2 {␊ + schema?: Schema | Reference;␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + encoding?: {␊ + [k: string]: Encoding;␊ + };␊ + /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ /**␊ * This interface was referenced by \`PathItem\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^(get|put|post|delete|options|head|patch|trace)$".␊ @@ -1609,7 +1645,7 @@ Generated by [AVA](https://avajs.dev). description?: string;␊ externalDocs?: ExternalDocumentation;␊ operationId?: string;␊ - parameters?: (Parameter1 | Reference)[];␊ + parameters?: ((Parameter1 & Parameter2) | Reference)[];␊ requestBody?: RequestBody | Reference;␊ responses: Responses;␊ callbacks?: {␊ @@ -1624,10 +1660,37 @@ Generated by [AVA](https://avajs.dev). */␊ [k: string]: unknown;␊ }␊ + export interface Parameter2 {␊ + name: string;␊ + in: string;␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: string;␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ export interface RequestBody {␊ description?: string;␊ content: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ required?: boolean;␊ /**␊ @@ -1642,10 +1705,10 @@ Generated by [AVA](https://avajs.dev). export interface Response {␊ description: string;␊ headers?: {␊ - [k: string]: Header1 | Reference;␊ + [k: string]: (Header1 & Header2) | Reference;␊ };␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ links?: {␊ [k: string]: Link | Reference;␊ @@ -1656,6 +1719,31 @@ Generated by [AVA](https://avajs.dev). */␊ [k: string]: unknown;␊ }␊ + export interface Header2 {␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: "simple";␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType1 & MediaType2;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ export interface Link {␊ operationId?: string;␊ operationRef?: string;␊ @@ -1694,7 +1782,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Parameter1;␊ + [k: string]: Reference | (Parameter1 & Parameter2);␊ };␊ examples?: {␊ /**␊ @@ -1715,7 +1803,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Header1;␊ + [k: string]: Reference | (Header1 & Header2);␊ };␊ securitySchemes?: {␊ /**␊ @@ -1911,6 +1999,61 @@ Generated by [AVA](https://avajs.dev). }␊ ` +## oneOfNested.js + +> Expected output to match snapshot for e2e test: oneOfNested.js + + `/* eslint-disable */␊ + /**␊ + * This file was automatically generated by json-schema-to-typescript.␊ + * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,␊ + * and run json-schema-to-typescript to regenerate this file.␊ + */␊ + ␊ + export interface OneOfNested {␊ + things?: ((␊ + | {␊ + propOption1: string;␊ + [k: string]: unknown;␊ + }␊ + | {␊ + propOption2: number;␊ + [k: string]: unknown;␊ + }␊ + ) & {␊ + thingProp: string;␊ + [k: string]: unknown;␊ + })[];␊ + [k: string]: unknown;␊ + }␊ + ` + +## oneOfRoot.js + +> Expected output to match snapshot for e2e test: oneOfRoot.js + + `/* eslint-disable */␊ + /**␊ + * This file was automatically generated by json-schema-to-typescript.␊ + * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,␊ + * and run json-schema-to-typescript to regenerate this file.␊ + */␊ + ␊ + export type OneOfRoot = {␊ + thingProp: string;␊ + [k: string]: unknown;␊ + } & (␊ + | {␊ + propOption1: string;␊ + [k: string]: unknown;␊ + }␊ + | {␊ + propOption2: number;␊ + [k: string]: unknown;␊ + }␊ + );␊ + ` + ## oneOfWithDupes.js > Expected output to match snapshot for e2e test: oneOfWithDupes.js @@ -4217,7 +4360,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base class for specifying a clip time. Use sub classes of this class to specify the time position in the media.␊ */␊ - start?: (AbsoluteClipTime | string)␊ + start?: ((AbsoluteClipTime & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ } & (JobInputAsset | JobInputHttp))␊ /**␊ @@ -4922,7 +5067,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule | FirewallPolicyFilterRule))␊ + } | (FirewallPolicyNatRule & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule␊ */␊ @@ -4966,7 +5117,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition | NetworkRuleCondition))␊ + } | (ApplicationRuleCondition & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5034,10 +5191,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition | NetworkRuleCondition)[] | string)␊ + } | (ApplicationRuleCondition & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -5061,7 +5235,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule1 | FirewallPolicyFilterRule1))␊ + } | (FirewallPolicyNatRule1 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule1 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5105,7 +5285,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition1 | NetworkRuleCondition1))␊ + } | (ApplicationRuleCondition1 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition1 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5173,10 +5359,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition1 | NetworkRuleCondition1)[] | string)␊ + } | (ApplicationRuleCondition1 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition1 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -5200,7 +5403,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule2 | FirewallPolicyFilterRule2))␊ + } | (FirewallPolicyNatRule2 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule2 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5244,7 +5453,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition2 | NetworkRuleCondition2))␊ + } | (ApplicationRuleCondition2 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition2 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5312,10 +5527,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition2 | NetworkRuleCondition2)[] | string)␊ + } | (ApplicationRuleCondition2 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition2 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -5339,7 +5571,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule3 | FirewallPolicyFilterRule3))␊ + } | (FirewallPolicyNatRule3 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule3 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5383,7 +5621,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition3 | NetworkRuleCondition3))␊ + } | (ApplicationRuleCondition3 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition3 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5451,10 +5695,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition3 | NetworkRuleCondition3)[] | string)␊ + } | (ApplicationRuleCondition3 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition3 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -5478,7 +5739,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule4 | FirewallPolicyFilterRule4))␊ + } | (FirewallPolicyNatRule4 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule4 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5522,7 +5789,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition4 | NetworkRuleCondition4))␊ + } | (ApplicationRuleCondition4 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition4 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5590,10 +5863,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition4 | NetworkRuleCondition4)[] | string)␊ + } | (ApplicationRuleCondition4 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition4 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -5645,7 +5935,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule6 | FirewallPolicyFilterRule6))␊ + } | (FirewallPolicyNatRule6 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule6 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5689,7 +5985,16 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition6 | NatRuleCondition1 | NetworkRuleCondition6))␊ + } | (ApplicationRuleCondition6 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition1 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition6 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5799,10 +6104,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition6 | NatRuleCondition1 | NetworkRuleCondition6)[] | string)␊ + } | (ApplicationRuleCondition6 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition1 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition6 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -5826,7 +6151,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule7 | FirewallPolicyFilterRule7))␊ + } | (FirewallPolicyNatRule7 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule7 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5870,7 +6201,16 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition7 | NatRuleCondition2 | NetworkRuleCondition7))␊ + } | (ApplicationRuleCondition7 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition2 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition7 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5988,10 +6328,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition7 | NatRuleCondition2 | NetworkRuleCondition7)[] | string)␊ + } | (ApplicationRuleCondition7 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition2 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition7 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ [k: string]: unknown␊ } & {␊ @@ -6015,7 +6375,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleCollectionType?: ("FirewallPolicyRuleCollection" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRuleCollection | FirewallPolicyFilterRuleCollection))␊ + } | (FirewallPolicyNatRuleCollection & {␊ + ruleCollectionType?: ("FirewallPolicyNatRuleCollection" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRuleCollection & {␊ + ruleCollectionType?: ("FirewallPolicyFilterRuleCollection" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule Collection.␊ */␊ @@ -6051,7 +6417,16 @@ Generated by [AVA](https://avajs.dev). } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | ApplicationRule | NatRule | NetworkRule))␊ + } | (ApplicationRule & {␊ + ruleType?: ("ApplicationRule" | string)␊ + [k: string]: unknown␊ + }) | (NatRule & {␊ + ruleType?: ("NatRule" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRule & {␊ + ruleType?: ("NetworkRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule of type application.␊ */␊ @@ -6181,10 +6556,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of rules included in a rule collection.␊ */␊ - rules?: (({␊ + rules?: ((({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | ApplicationRule | NatRule | NetworkRule)[] | string)␊ + } | (ApplicationRule & {␊ + ruleType?: ("ApplicationRule" | string)␊ + [k: string]: unknown␊ + }) | (NatRule & {␊ + ruleType?: ("NatRule" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRule & {␊ + ruleType?: ("NetworkRule" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule.␊ + */␊ + description?: string␊ + ruleType: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleCollectionType: string␊ [k: string]: unknown␊ } & {␊ @@ -6225,10 +6620,19 @@ Generated by [AVA](https://avajs.dev). password?: string␊ type: string␊ [k: string]: unknown␊ - } & (OracleConnectionInfo | MySqlConnectionInfo | {␊ + } & ((OracleConnectionInfo & {␊ + type?: "OracleConnectionInfo"␊ + [k: string]: unknown␊ + }) | (MySqlConnectionInfo & {␊ + type?: "MySqlConnectionInfo"␊ + [k: string]: unknown␊ + }) | {␊ type?: "Unknown"␊ [k: string]: unknown␊ - } | SqlConnectionInfo1))␊ + } | (SqlConnectionInfo1 & {␊ + type?: "SqlConnectionInfo"␊ + [k: string]: unknown␊ + })))␊ /**␊ * Information for connecting to Oracle source␊ */␊ @@ -6337,10 +6741,58 @@ Generated by [AVA](https://avajs.dev). export type ProjectTaskProperties1 = ({␊ taskType: string␊ [k: string]: unknown␊ - } & (ValidateMigrationInputSqlServerSqlServerTaskProperties | ValidateMigrationInputSqlServerCloudDbTaskProperties | MigrateSqlServerSqlServerTaskProperties | MigrateSqlServerSqlDbTaskProperties1 | MigrateSqlServerCloudDbTaskProperties | GetProjectDetailsOracleSqlTaskProperties | GetProjectDetailsMySqlSqlTaskProperties | ConnectToTargetSqlServerTaskProperties | ConnectToTargetCloudDbTaskProperties | GetUserTablesSqlTaskProperties1 | ConnectToTargetSqlDbTaskProperties1 | ConnectToSourceSqlServerTaskProperties1 | {␊ + } & ((ValidateMigrationInputSqlServerSqlServerTaskProperties & {␊ + taskType?: ("ValidateMigrationInput_SqlServer_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | (ValidateMigrationInputSqlServerCloudDbTaskProperties & {␊ + taskType?: ("ValidateMigrationInput_SqlServer_CloudDb" | string)␊ + [k: string]: unknown␊ + }) | (MigrateSqlServerSqlServerTaskProperties & {␊ + taskType?: ("Migrate_SqlServer_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | (MigrateSqlServerSqlDbTaskProperties1 & {␊ + taskType?: ("Migrate_SqlServer_SqlDb" | string)␊ + [k: string]: unknown␊ + }) | (MigrateSqlServerCloudDbTaskProperties & {␊ + taskType?: ("Migrate_SqlServer_CloudDb" | string)␊ + [k: string]: unknown␊ + }) | (GetProjectDetailsOracleSqlTaskProperties & {␊ + taskType?: ("GetProjectDetails_Oracle_Sql" | string)␊ + [k: string]: unknown␊ + }) | (GetProjectDetailsMySqlSqlTaskProperties & {␊ + taskType?: ("GetProjectDetails_MySql_Sql" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToTargetSqlServerTaskProperties & {␊ + taskType?: ("ConnectToTarget_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToTargetCloudDbTaskProperties & {␊ + taskType?: ("ConnectToTarget_CloudDb" | string)␊ + [k: string]: unknown␊ + }) | (GetUserTablesSqlTaskProperties1 & {␊ + taskType?: ("GetUserTables_Sql" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToTargetSqlDbTaskProperties1 & {␊ + taskType?: ("ConnectToTarget_SqlDb" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToSourceSqlServerTaskProperties1 & {␊ + taskType?: ("ConnectToSource_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | {␊ taskType?: ("Unknown" | string)␊ [k: string]: unknown␊ - } | ConnectToSourceMySqlTaskProperties | ConnectToSourceOracleTaskProperties | MigrateMySqlSqlTaskProperties | MigrateOracleSqlTaskProperties))␊ + } | (ConnectToSourceMySqlTaskProperties & {␊ + taskType?: ("ConnectToSource_MySql" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToSourceOracleTaskProperties & {␊ + taskType?: ("ConnectToSource_Oracle" | string)␊ + [k: string]: unknown␊ + }) | (MigrateMySqlSqlTaskProperties & {␊ + taskType?: ("Migrate_MySql_Sql" | string)␊ + [k: string]: unknown␊ + }) | (MigrateOracleSqlTaskProperties & {␊ + taskType?: ("Migrate_Oracle_Sql" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Properties for task that validates migration input for SQL to SQL on VM migrations␊ */␊ @@ -6603,7 +7055,28 @@ Generated by [AVA](https://avajs.dev). createMode?: (("Invalid" | "Default" | "Recover") | string)␊ protectedItemType: string␊ [k: string]: unknown␊ - } & (AzureFileshareProtectedItem | AzureIaaSVMProtectedItem | AzureSqlProtectedItem | AzureVmWorkloadProtectedItem | DPMProtectedItem | GenericProtectedItem | MabFileFolderProtectedItem | {␊ + } & ((AzureFileshareProtectedItem & {␊ + protectedItemType?: ("AzureFileShareProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (AzureIaaSVMProtectedItem & {␊ + protectedItemType?: ("AzureIaaSVMProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (AzureSqlProtectedItem & {␊ + protectedItemType?: ("Microsoft.Sql/servers/databases" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (DPMProtectedItem & {␊ + protectedItemType?: ("DPMProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (GenericProtectedItem & {␊ + protectedItemType?: ("GenericProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (MabFileFolderProtectedItem & {␊ + protectedItemType?: ("MabFileFolderProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | {␊ protectedItemType?: ("ProtectedItem" | string)␊ [k: string]: unknown␊ }))␊ @@ -6691,7 +7164,13 @@ Generated by [AVA](https://avajs.dev). extendedInfo?: (AzureIaaSVMProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ [k: string]: unknown␊ - } & (AzureIaaSClassicComputeVMProtectedItem | AzureIaaSComputeVMProtectedItem | {␊ + } & ((AzureIaaSClassicComputeVMProtectedItem & {␊ + protectedItemType?: ("Microsoft.ClassicCompute/virtualMachines" | string)␊ + [k: string]: unknown␊ + }) | (AzureIaaSComputeVMProtectedItem & {␊ + protectedItemType?: ("Microsoft.Compute/virtualMachines" | string)␊ + [k: string]: unknown␊ + }) | {␊ protectedItemType?: ("AzureIaaSVMProtectedItem" | string)␊ [k: string]: unknown␊ }))␊ @@ -6794,7 +7273,16 @@ Generated by [AVA](https://avajs.dev). } & ({␊ protectedItemType?: ("AzureVmWorkloadProtectedItem" | string)␊ [k: string]: unknown␊ - } | AzureVmWorkloadSAPAseDatabaseProtectedItem | AzureVmWorkloadSAPHanaDatabaseProtectedItem | AzureVmWorkloadSQLDatabaseProtectedItem))␊ + } | (AzureVmWorkloadSAPAseDatabaseProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadSAPAseDatabase" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadSAPHanaDatabaseProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadSAPHanaDatabase" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadSQLDatabaseProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadSQLDatabase" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Azure VM workload-specific protected item representing SAP ASE Database.␊ */␊ @@ -6939,7 +7427,25 @@ Generated by [AVA](https://avajs.dev). protectedItemsCount?: (number | string)␊ backupManagementType: string␊ [k: string]: unknown␊ - } & (AzureFileShareProtectionPolicy | AzureIaaSVMProtectionPolicy | AzureSqlProtectionPolicy | AzureVmWorkloadProtectionPolicy | GenericProtectionPolicy | MabProtectionPolicy | {␊ + } & ((AzureFileShareProtectionPolicy & {␊ + backupManagementType?: ("AzureStorage" | string)␊ + [k: string]: unknown␊ + }) | (AzureIaaSVMProtectionPolicy & {␊ + backupManagementType?: ("AzureIaasVM" | string)␊ + [k: string]: unknown␊ + }) | (AzureSqlProtectionPolicy & {␊ + backupManagementType?: ("AzureSql" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadProtectionPolicy & {␊ + backupManagementType?: ("AzureWorkload" | string)␊ + [k: string]: unknown␊ + }) | (GenericProtectionPolicy & {␊ + backupManagementType?: ("GenericProtectionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (MabProtectionPolicy & {␊ + backupManagementType?: ("MAB" | string)␊ + [k: string]: unknown␊ + }) | {␊ backupManagementType?: ("ProtectionPolicy" | string)␊ [k: string]: unknown␊ }))␊ @@ -6978,7 +7484,16 @@ Generated by [AVA](https://avajs.dev). } & ({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy))␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Log policy schedule.␊ */␊ @@ -7038,7 +7553,13 @@ Generated by [AVA](https://avajs.dev). } & ({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy))␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Long term retention policy.␊ */␊ @@ -7086,17 +7607,38 @@ Generated by [AVA](https://avajs.dev). /**␊ * Backup schedule specified as part of backup policy.␊ */␊ - schedulePolicy?: (({␊ + schedulePolicy?: ((({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy) | string)␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + schedulePolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Retention policy with the details on backup copy retention ranges.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Instant RP retention policy range in days␊ */␊ @@ -7118,10 +7660,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * Retention policy details.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ backupManagementType: string␊ [k: string]: unknown␊ } & {␊ @@ -7179,17 +7730,38 @@ Generated by [AVA](https://avajs.dev). /**␊ * Backup schedule of backup policy.␊ */␊ - schedulePolicy?: (({␊ + schedulePolicy?: ((({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy) | string)␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + schedulePolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Retention policy details.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ backupManagementType: string␊ [k: string]: unknown␊ } & {␊ @@ -7222,7 +7794,13 @@ Generated by [AVA](https://avajs.dev). protectionState?: (("Invalid" | "NotProtected" | "Protecting" | "Protected" | "ProtectionFailed") | string)␊ protectionIntentItemType: string␊ [k: string]: unknown␊ - } & (AzureRecoveryServiceVaultProtectionIntent | AzureResourceProtectionIntent | {␊ + } & ((AzureRecoveryServiceVaultProtectionIntent & {␊ + protectionIntentItemType?: ("RecoveryServiceVaultItem" | string)␊ + [k: string]: unknown␊ + }) | (AzureResourceProtectionIntent & {␊ + protectionIntentItemType?: ("AzureResourceItem" | string)␊ + [k: string]: unknown␊ + }) | {␊ protectionIntentItemType?: ("ProtectionIntent" | string)␊ [k: string]: unknown␊ }))␊ @@ -7235,7 +7813,10 @@ Generated by [AVA](https://avajs.dev). } & ({␊ protectionIntentItemType?: ("RecoveryServiceVaultItem" | string)␊ [k: string]: unknown␊ - } | AzureWorkloadAutoProtectionIntent))␊ + } | (AzureWorkloadAutoProtectionIntent & {␊ + protectionIntentItemType?: ("AzureWorkloadAutoProtectionIntent" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Azure Recovery Services Vault specific protection intent item.␊ */␊ @@ -7245,7 +7826,10 @@ Generated by [AVA](https://avajs.dev). } & ({␊ protectionIntentItemType?: ("AzureWorkloadAutoProtectionIntent" | string)␊ [k: string]: unknown␊ - } | AzureWorkloadSQLAutoProtectionIntent))␊ + } | (AzureWorkloadSQLAutoProtectionIntent & {␊ + protectionIntentItemType?: ("AzureWorkloadSQLAutoProtectionIntent" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Azure Workload SQL Auto Protection intent item.␊ */␊ @@ -16932,7 +17516,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base class for all types of Route.␊ */␊ - routeConfigurationOverride?: ((ForwardingConfiguration2 | RedirectConfiguration2) | string)␊ + routeConfigurationOverride?: (((ForwardingConfiguration2 | RedirectConfiguration2) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -24441,7 +25027,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * Properties related to Digital Twins Endpoint␊ */␊ - properties: ((ServiceBus | EventHub | EventGrid) | string)␊ + properties: (((ServiceBus | EventHub | EventGrid) & {␊ + /**␊ + * The resource tags.␊ + */␊ + tags?: ({␊ + [k: string]: string␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DigitalTwins/digitalTwinsInstances/endpoints"␊ [k: string]: unknown␊ }␊ @@ -41976,7 +42570,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS | AmlCompute | VirtualMachine | HDInsight | DataFactory | Databricks | DataLakeAnalytics) | string)␊ + properties: (((AKS | AmlCompute | VirtualMachine | HDInsight | DataFactory | Databricks | DataLakeAnalytics) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -44990,7 +45598,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base class for Content Key Policy key for token validation. A derived class must be used to create a token key.␊ */␊ - primaryVerificationKey: ((ContentKeyPolicySymmetricTokenKey | ContentKeyPolicyRsaTokenKey | ContentKeyPolicyX509CertificateTokenKey) | string)␊ + primaryVerificationKey: (((ContentKeyPolicySymmetricTokenKey | ContentKeyPolicyRsaTokenKey | ContentKeyPolicyX509CertificateTokenKey) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * A list of required token claims.␊ */␊ @@ -49266,7 +49876,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * The service resource properties.␊ */␊ - properties: ((StatefulServiceProperties | StatelessServiceProperties) | string)␊ + properties: (((StatefulServiceProperties | StatelessServiceProperties) & {␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + correlationScheme?: (ServiceCorrelationDescription[] | string)␊ + /**␊ + * Specifies the move cost for the service.␊ + */␊ + defaultMoveCost?: (("Zero" | "Low" | "Medium" | "High") | string)␊ + /**␊ + * Describes how the service is partitioned.␊ + */␊ + partitionDescription?: (PartitionSchemeDescription | string)␊ + /**␊ + * The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".␊ + */␊ + placementConstraints?: string␊ + /**␊ + * The service load metrics is given as an array of ServiceLoadMetricDescription objects.␊ + */␊ + serviceLoadMetrics?: (ServiceLoadMetricDescription[] | string)␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + servicePlacementPolicies?: (ServicePlacementPolicyDescription[] | string)␊ + /**␊ + * The name of the service type␊ + */␊ + serviceTypeName?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.ServiceFabric/clusters/applications/services"␊ [k: string]: unknown␊ }␊ @@ -50806,7 +51446,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * The service resource properties.␊ */␊ - properties: ((StatefulServiceProperties1 | StatelessServiceProperties1) | string)␊ + properties: (((StatefulServiceProperties1 | StatelessServiceProperties1) & {␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + correlationScheme?: (ServiceCorrelationDescription1[] | string)␊ + /**␊ + * Specifies the move cost for the service.␊ + */␊ + defaultMoveCost?: (("Zero" | "Low" | "Medium" | "High") | string)␊ + /**␊ + * Describes how the service is partitioned.␊ + */␊ + partitionDescription?: (PartitionSchemeDescription1 | string)␊ + /**␊ + * The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".␊ + */␊ + placementConstraints?: string␊ + /**␊ + * The service load metrics is given as an array of ServiceLoadMetricDescription objects.␊ + */␊ + serviceLoadMetrics?: (ServiceLoadMetricDescription1[] | string)␊ + /**␊ + * The activation Mode of the service package.␊ + */␊ + servicePackageActivationMode?: (("SharedProcess" | "ExclusiveProcess") | string)␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + servicePlacementPolicies?: (ServicePlacementPolicyDescription1[] | string)␊ + /**␊ + * The name of the service type␊ + */␊ + serviceTypeName?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Azure resource tags.␊ */␊ @@ -67010,7 +67684,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base properties for any build step.␊ */␊ - properties: (DockerBuildStep | string)␊ + properties: ((DockerBuildStep & {␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.ContainerRegistry/registries/buildTasks/steps"␊ [k: string]: unknown␊ }␊ @@ -79108,7 +79784,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Describes how data from an input is serialized or how data is serialized when written to an output.␊ */␊ - serialization?: ((CsvSerialization | JsonSerialization | AvroSerialization) | string)␊ + serialization?: (((CsvSerialization | JsonSerialization | AvroSerialization) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -79526,7 +80204,13 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with an input.␊ */␊ - properties: ((StreamInputProperties | ReferenceInputProperties) | string)␊ + properties: (((StreamInputProperties | ReferenceInputProperties) & {␊ + /**␊ + * Describes how data from an input is serialized or how data is serialized when written to an output.␊ + */␊ + serialization?: (Serialization | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "inputs"␊ [k: string]: unknown␊ }␊ @@ -79574,7 +80258,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with a function.␊ */␊ - properties: (ScalarFunctionProperties | string)␊ + properties: ((ScalarFunctionProperties & {␊ + [k: string]: unknown␊ + }) | string)␊ type: "functions"␊ [k: string]: unknown␊ }␊ @@ -79590,7 +80276,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with a function.␊ */␊ - properties: (ScalarFunctionProperties | string)␊ + properties: ((ScalarFunctionProperties & {␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs/functions"␊ [k: string]: unknown␊ }␊ @@ -79606,7 +80294,13 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with an input.␊ */␊ - properties: ((StreamInputProperties | ReferenceInputProperties) | string)␊ + properties: (((StreamInputProperties | ReferenceInputProperties) & {␊ + /**␊ + * Describes how data from an input is serialized or how data is serialized when written to an output.␊ + */␊ + serialization?: (Serialization | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs/inputs"␊ [k: string]: unknown␊ }␊ @@ -80303,7 +80997,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS1 | BatchAI | VirtualMachine1 | HDInsight1 | DataFactory1) | string)␊ + properties: (((AKS1 | BatchAI | VirtualMachine1 | HDInsight1 | DataFactory1) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -80711,7 +81419,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS2 | AmlCompute1 | VirtualMachine2 | HDInsight2 | DataFactory2 | Databricks1 | DataLakeAnalytics1) | string)␊ + properties: (((AKS2 | AmlCompute1 | VirtualMachine2 | HDInsight2 | DataFactory2 | Databricks1 | DataLakeAnalytics1) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -81123,7 +81845,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS3 | AmlCompute2 | VirtualMachine3 | HDInsight3 | DataFactory3 | Databricks2 | DataLakeAnalytics2) | string)␊ + properties: (((AKS3 | AmlCompute2 | VirtualMachine3 | HDInsight3 | DataFactory3 | Databricks2 | DataLakeAnalytics2) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -81557,7 +82293,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS4 | AmlCompute3 | VirtualMachine4 | HDInsight4 | DataFactory4 | Databricks3 | DataLakeAnalytics3) | string)␊ + properties: (((AKS4 | AmlCompute3 | VirtualMachine4 | HDInsight4 | DataFactory4 | Databricks3 | DataLakeAnalytics3) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Sku of the resource␊ */␊ @@ -82099,7 +82849,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS5 | AmlCompute4 | VirtualMachine5 | HDInsight5 | DataFactory5 | Databricks4 | DataLakeAnalytics4) | string)␊ + properties: (((AKS5 | AmlCompute4 | VirtualMachine5 | HDInsight5 | DataFactory5 | Databricks4 | DataLakeAnalytics4) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Sku of the resource␊ */␊ @@ -181393,7 +182157,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: ((ApplicationRuleCondition5 | NatRuleCondition | NetworkRuleCondition5)[] | string)␊ + ruleConditions?: (((ApplicationRuleCondition5 | NatRuleCondition | NetworkRuleCondition5) & {␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: "FirewallPolicyFilterRule"␊ [k: string]: unknown␊ }␊ @@ -207042,7 +207816,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * Defines the connection properties of a server␊ */␊ - targetConnectionInfo?: (SqlConnectionInfo | string)␊ + targetConnectionInfo?: ((SqlConnectionInfo & {␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Target platform for the project.␊ */␊ @@ -207433,10 +208217,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo?: ((OracleConnectionInfo | MySqlConnectionInfo | {␊ + targetConnectionInfo?: ((((OracleConnectionInfo & {␊ + type?: "OracleConnectionInfo"␊ + [k: string]: unknown␊ + }) | (MySqlConnectionInfo & {␊ + type?: "MySqlConnectionInfo"␊ + [k: string]: unknown␊ + }) | {␊ type?: "Unknown"␊ [k: string]: unknown␊ - } | SqlConnectionInfo1) | string)␊ + } | (SqlConnectionInfo1 & {␊ + type?: "SqlConnectionInfo"␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * List of DatabaseInfo␊ */␊ @@ -207507,10 +208311,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207572,10 +208407,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207598,17 +208464,79 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207622,17 +208550,79 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207694,17 +208684,79 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207741,10 +208793,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for target SQL Server␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -207754,10 +208837,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for target SQL Server␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -207767,10 +208881,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for SQL Server␊ */␊ - connectionInfo: ({␊ + connectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * List of database names to collect tables for␊ */␊ @@ -207784,10 +208929,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for target SQL DB␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -207797,10 +208973,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for Source SQL Server␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Permission group for validations.␊ */␊ @@ -207814,10 +209021,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to MySQL source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "MySqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName: string␊ + /**␊ + * Port for Server␊ + */␊ + port: (number | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Permission group for validations.␊ */␊ @@ -207831,10 +209057,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to Oracle source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "OracleConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName?: string␊ + /**␊ + * Port for Server␊ + */␊ + port?: (number | string)␊ + /**␊ + * Connection mode to be used. If ConnectionString mode is used, then customConnectionString should be provided, else it should not be set.␊ + */␊ + connectionMode?: (("ConnectionString" | "Standard") | string)␊ + /**␊ + * Instance name (SID)␊ + */␊ + instance?: string␊ + /**␊ + * Connection string␊ + */␊ + customConnectionString?: string␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Permission group for validations.␊ */␊ @@ -207848,10 +209105,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Target database name␊ */␊ @@ -207871,10 +209159,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to MySQL source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "MySqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName: string␊ + /**␊ + * Port for Server␊ + */␊ + port: (number | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -207894,10 +209201,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Target database name␊ */␊ @@ -207917,10 +209255,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to Oracle source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "OracleConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName?: string␊ + /**␊ + * Port for Server␊ + */␊ + port?: (number | string)␊ + /**␊ + * Connection mode to be used. If ConnectionString mode is used, then customConnectionString should be provided, else it should not be set.␊ + */␊ + connectionMode?: (("ConnectionString" | "Standard") | string)␊ + /**␊ + * Instance name (SID)␊ + */␊ + instance?: string␊ + /**␊ + * Connection string␊ + */␊ + customConnectionString?: string␊ + type: string␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -209184,17 +210553,38 @@ Generated by [AVA](https://avajs.dev). /**␊ * Backup schedule specified as part of backup policy.␊ */␊ - schedulePolicy?: (({␊ + schedulePolicy?: ((({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy) | string)␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + schedulePolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Retention policy with the details on backup copy retention ranges.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -225097,7 +226487,14 @@ Generated by [AVA](https://avajs.dev). /**␊ * The list of custom alert time-window rules.␊ */␊ - timeWindowRules?: ((ActiveConnectionsNotInAllowedRange | AmqpC2DMessagesNotInAllowedRange | MqttC2DMessagesNotInAllowedRange | HttpC2DMessagesNotInAllowedRange | AmqpC2DRejectedMessagesNotInAllowedRange | MqttC2DRejectedMessagesNotInAllowedRange | HttpC2DRejectedMessagesNotInAllowedRange | AmqpD2CMessagesNotInAllowedRange | MqttD2CMessagesNotInAllowedRange | HttpD2CMessagesNotInAllowedRange | DirectMethodInvokesNotInAllowedRange | FailedLocalLoginsNotInAllowedRange | FileUploadsNotInAllowedRange | QueuePurgesNotInAllowedRange | TwinUpdatesNotInAllowedRange | UnauthorizedOperationsNotInAllowedRange)[] | string)␊ + timeWindowRules?: (((ActiveConnectionsNotInAllowedRange | AmqpC2DMessagesNotInAllowedRange | MqttC2DMessagesNotInAllowedRange | HttpC2DMessagesNotInAllowedRange | AmqpC2DRejectedMessagesNotInAllowedRange | MqttC2DRejectedMessagesNotInAllowedRange | HttpC2DRejectedMessagesNotInAllowedRange | AmqpD2CMessagesNotInAllowedRange | MqttD2CMessagesNotInAllowedRange | HttpD2CMessagesNotInAllowedRange | DirectMethodInvokesNotInAllowedRange | FailedLocalLoginsNotInAllowedRange | FileUploadsNotInAllowedRange | QueuePurgesNotInAllowedRange | TwinUpdatesNotInAllowedRange | UnauthorizedOperationsNotInAllowedRange) & {␊ + ruleType: "TimeWindowCustomAlertRule"␊ + /**␊ + * The time window size in iso8601 format.␊ + */␊ + timeWindowSize: string␊ + [k: string]: unknown␊ + })[] | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -225670,7 +227067,14 @@ Generated by [AVA](https://avajs.dev). /**␊ * The list of custom alert time-window rules.␊ */␊ - timeWindowRules?: ((ActiveConnectionsNotInAllowedRange1 | AmqpC2DMessagesNotInAllowedRange1 | MqttC2DMessagesNotInAllowedRange1 | HttpC2DMessagesNotInAllowedRange1 | AmqpC2DRejectedMessagesNotInAllowedRange1 | MqttC2DRejectedMessagesNotInAllowedRange1 | HttpC2DRejectedMessagesNotInAllowedRange1 | AmqpD2CMessagesNotInAllowedRange1 | MqttD2CMessagesNotInAllowedRange1 | HttpD2CMessagesNotInAllowedRange1 | DirectMethodInvokesNotInAllowedRange1 | FailedLocalLoginsNotInAllowedRange1 | FileUploadsNotInAllowedRange1 | QueuePurgesNotInAllowedRange1 | TwinUpdatesNotInAllowedRange1 | UnauthorizedOperationsNotInAllowedRange1)[] | string)␊ + timeWindowRules?: (((ActiveConnectionsNotInAllowedRange1 | AmqpC2DMessagesNotInAllowedRange1 | MqttC2DMessagesNotInAllowedRange1 | HttpC2DMessagesNotInAllowedRange1 | AmqpC2DRejectedMessagesNotInAllowedRange1 | MqttC2DRejectedMessagesNotInAllowedRange1 | HttpC2DRejectedMessagesNotInAllowedRange1 | AmqpD2CMessagesNotInAllowedRange1 | MqttD2CMessagesNotInAllowedRange1 | HttpD2CMessagesNotInAllowedRange1 | DirectMethodInvokesNotInAllowedRange1 | FailedLocalLoginsNotInAllowedRange1 | FileUploadsNotInAllowedRange1 | QueuePurgesNotInAllowedRange1 | TwinUpdatesNotInAllowedRange1 | UnauthorizedOperationsNotInAllowedRange1) & {␊ + ruleType: "TimeWindowCustomAlertRule"␊ + /**␊ + * The time window size in iso8601 format.␊ + */␊ + timeWindowSize: string␊ + [k: string]: unknown␊ + })[] | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -232333,7 +233737,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -232372,7 +233778,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The on-premises Windows authentication user name. Type: string (or Expression with resultType string).␊ */␊ @@ -232417,7 +233825,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -232444,7 +233854,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Azure Batch account name. Type: string (or Expression with resultType string).␊ */␊ @@ -232571,7 +233983,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -232630,7 +234044,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * HDInsight cluster user name. Type: string (or Expression with resultType string).␊ */␊ @@ -232669,7 +234085,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User ID to logon the server. Type: string (or Expression with resultType string).␊ */␊ @@ -232754,7 +234172,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - connectionString: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + connectionString: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -232781,7 +234201,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - connectionString: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + connectionString: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -232824,7 +234246,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Schema name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -232879,7 +234303,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -232922,7 +234348,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -232955,7 +234383,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiKey: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + apiKey: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -232977,7 +234407,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -233022,7 +234454,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + credential?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -233032,7 +234466,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -233071,7 +234507,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).␊ */␊ @@ -233114,7 +234552,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the OData service endpoint. Type: string (or Expression with resultType string).␊ */␊ @@ -233155,7 +234595,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -233172,11 +234614,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - pfx: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + pfx: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -233215,7 +234661,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port for the connection. Type: integer (or Expression with resultType integer).␊ */␊ @@ -233282,7 +234730,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -233351,7 +234801,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -233396,11 +234848,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - securityToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + securityToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).␊ */␊ @@ -233433,7 +234889,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).␊ */␊ @@ -233470,7 +234928,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).␊ */␊ @@ -233511,7 +234971,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + secretAccessKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -233544,7 +235006,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).␊ */␊ @@ -233602,7 +235066,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - key?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + key?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * URL for Azure Search service. Type: string (or Expression with resultType string).␊ */␊ @@ -233657,7 +235123,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).␊ */␊ @@ -233718,7 +235186,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -233773,11 +235243,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - passPhrase?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + passPhrase?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -233787,7 +235261,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKeyContent?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + privateKeyContent?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).␊ */␊ @@ -233838,7 +235314,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP BW instance. Type: string (or Expression with resultType string).␊ */␊ @@ -233887,7 +235365,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP HANA server. Type: string (or Expression with resultType string).␊ */␊ @@ -233944,11 +235424,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - mwsAuthToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + mwsAuthToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - secretKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + secretKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Amazon seller ID.␊ */␊ @@ -234034,7 +235518,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -234149,7 +235635,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -234204,11 +235692,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientId?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientId?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.␊ */␊ @@ -234236,7 +235728,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + refreshToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false.␊ */␊ @@ -234344,7 +235838,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.␊ */␊ @@ -234423,7 +235919,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Hive server uses to listen for client connections.␊ */␊ @@ -234494,7 +235992,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The client ID associated with your Hubspot application.␊ */␊ @@ -234504,7 +236004,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234514,7 +236016,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + refreshToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -234587,7 +236091,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Impala server uses to listen for client connections. The default value is 21050.␊ */␊ @@ -234644,7 +236150,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.␊ */␊ @@ -234695,7 +236203,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234781,7 +236291,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234838,7 +236350,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234929,7 +236443,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.␊ */␊ @@ -235014,7 +236530,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Presto server uses to listen for client connections. The default value is 8080.␊ */␊ @@ -235071,11 +236589,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - accessTokenSecret: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessTokenSecret: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The company ID of the QuickBooks company to authorize.␊ */␊ @@ -235091,7 +236613,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerSecret: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + consumerSecret: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235140,7 +236664,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235156,7 +236682,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -235201,7 +236729,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235292,7 +236822,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Spark server uses to listen for client connections.␊ */␊ @@ -235351,7 +236883,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235408,7 +236942,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + consumerKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235424,7 +236960,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + privateKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -235463,7 +237001,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235578,7 +237118,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235633,7 +237175,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterPassword?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clusterPassword?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The resource group where the cluster belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -235649,7 +237193,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterSshPassword?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clusterSshPassword?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).␊ */␊ @@ -235745,7 +237291,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).␊ */␊ @@ -235838,7 +237386,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -235871,7 +237421,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).␊ */␊ @@ -235942,7 +237494,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -236124,7 +237678,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name of the Azure Blob. Type: string (or Expression with resultType string).␊ */␊ @@ -236311,7 +237875,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).␊ */␊ @@ -236348,7 +237922,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).␊ */␊ @@ -236658,7 +238242,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The format definition of a storage.␊ */␊ @@ -237034,11 +238628,55 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifFalseActivities?: ((ControlActivity | ExecutionActivity)[] | string)␊ + ifFalseActivities?: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifTrueActivities?: ((ControlActivity | ExecutionActivity)[] | string)␊ + ifTrueActivities?: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + [k: string]: unknown␊ + })[] | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -237073,7 +238711,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute .␊ */␊ - activities: ((ControlActivity | ExecutionActivity)[] | string)␊ + activities: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).␊ */␊ @@ -237127,7 +238787,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute.␊ */␊ - activities: ((ControlActivity | ExecutionActivity)[] | string)␊ + activities: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Azure Data Factory expression definition.␊ */␊ @@ -237873,7 +239555,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * UseName for windows authentication.␊ */␊ @@ -237931,7 +239615,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - packagePassword?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + packagePassword?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -238426,7 +240112,43 @@ Generated by [AVA](https://avajs.dev). /**␊ * The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.␊ */␊ - properties: ((AmazonS3Dataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlDWTableDataset | CassandraTableDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | AzureDataLakeStoreDataset | FileShareDataset | MongoDbCollectionDataset | ODataResourceDataset | OracleTableDataset | AzureMySqlTableDataset | RelationalTableDataset | SalesforceObjectDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SqlServerTableDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset) | string)␊ + properties: (((AmazonS3Dataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlDWTableDataset | CassandraTableDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | AzureDataLakeStoreDataset | FileShareDataset | MongoDbCollectionDataset | ODataResourceDataset | OracleTableDataset | AzureMySqlTableDataset | RelationalTableDataset | SalesforceObjectDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SqlServerTableDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the Dataset.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Dataset description.␊ + */␊ + description?: string␊ + /**␊ + * Linked service reference type.␊ + */␊ + linkedServiceName: (LinkedServiceReference | string)␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification␊ + } | string)␊ + /**␊ + * Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.␊ + */␊ + structure?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/datasets"␊ [k: string]: unknown␊ }␊ @@ -238442,7 +240164,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure Data Factory nested object which serves as a compute resource for activities.␊ */␊ - properties: ((ManagedIntegrationRuntime | SelfHostedIntegrationRuntime) | string)␊ + properties: (((ManagedIntegrationRuntime | SelfHostedIntegrationRuntime) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Integration runtime description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/integrationRuntimes"␊ [k: string]: unknown␊ }␊ @@ -238458,7 +240194,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource.␊ */␊ - properties: ((AzureStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | HDInsightLinkedService | FileServerLinkedService | OracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | OdbcLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | AzureDataLakeStoreLinkedService | SalesforceLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | ResponsysLinkedService) | string)␊ + properties: (((AzureStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | HDInsightLinkedService | FileServerLinkedService | OracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | OdbcLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | AzureDataLakeStoreLinkedService | SalesforceLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | ResponsysLinkedService) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the Dataset.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Integration runtime reference type.␊ + */␊ + connectVia?: (IntegrationRuntimeReference | string)␊ + /**␊ + * Linked service description.␊ + */␊ + description?: string␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/linkedservices"␊ [k: string]: unknown␊ }␊ @@ -238490,7 +240256,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure data factory nested object which contains information about creating pipeline run␊ */␊ - properties: (MultiplePipelineTrigger | string)␊ + properties: ((MultiplePipelineTrigger & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Trigger description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/triggers"␊ [k: string]: unknown␊ }␊ @@ -239132,7 +240912,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - licenseKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + licenseKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -239378,7 +241160,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -239448,7 +241232,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -239491,7 +241277,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The on-premises Windows authentication user name. Type: string (or Expression with resultType string).␊ */␊ @@ -239521,7 +241309,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -239558,7 +241348,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The on-premises Windows authentication user name. Type: string (or Expression with resultType string).␊ */␊ @@ -239621,7 +241413,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -239684,7 +241478,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -239711,7 +241507,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Azure Batch account name. Type: string (or Expression with resultType string).␊ */␊ @@ -239797,7 +241595,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accountKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accountKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).␊ */␊ @@ -239833,7 +241633,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -239904,7 +241706,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -239914,7 +241718,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -239989,7 +241795,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -239999,7 +241807,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -240074,7 +241884,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -240084,7 +241896,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -240161,7 +241975,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * HDInsight cluster user name. Type: string (or Expression with resultType string).␊ */␊ @@ -240200,7 +242016,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User ID to logon the server. Type: string (or Expression with resultType string).␊ */␊ @@ -240255,7 +242073,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Azure Key Vault secret reference.␊ */␊ @@ -240316,7 +242136,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -240355,7 +242177,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -240394,7 +242218,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -240466,7 +242292,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -240602,7 +242430,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Schema name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -240675,7 +242505,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).␊ */␊ @@ -240724,7 +242556,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -240757,7 +242591,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).␊ */␊ @@ -240785,7 +242621,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -240842,7 +242680,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).␊ */␊ @@ -240887,7 +242727,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + credential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -240897,7 +242739,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -240936,7 +242780,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + credential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -240946,7 +242792,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -240985,7 +242833,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + credential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -240995,7 +242845,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -241034,7 +242886,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).␊ */␊ @@ -241099,15 +242953,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalEmbeddedCert?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalEmbeddedCert?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalEmbeddedCertPassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalEmbeddedCertPassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).␊ */␊ @@ -241117,7 +242977,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).␊ */␊ @@ -241164,7 +243026,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -241181,11 +243045,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - pfx: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + pfx: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -241224,7 +243092,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port for the connection. Type: integer (or Expression with resultType integer).␊ */␊ @@ -241291,7 +243161,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -241463,7 +243335,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -241518,7 +243392,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -241534,7 +243410,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -241585,7 +243463,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).␊ */␊ @@ -241630,11 +243510,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - securityToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + securityToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).␊ */␊ @@ -241685,11 +243569,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - securityToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + securityToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).␊ */␊ @@ -241722,7 +243610,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).␊ */␊ @@ -241759,7 +243649,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).␊ */␊ @@ -241824,7 +243716,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).␊ */␊ @@ -241905,7 +243799,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).␊ */␊ @@ -242020,7 +243916,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Credential reference type.␊ */␊ @@ -242040,7 +243938,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).␊ */␊ @@ -242062,7 +243962,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides.␊ */␊ @@ -242107,7 +244009,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The authentication type to use.␊ */␊ @@ -242121,7 +244025,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The url to connect TeamDesk source. Type: string (or Expression with resultType string).␊ */␊ @@ -242166,7 +244072,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - userToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + userToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -242187,7 +244095,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -242214,7 +244124,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The authentication type to use.␊ */␊ @@ -242228,7 +244140,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The url to connect Zendesk source. Type: string (or Expression with resultType string).␊ */␊ @@ -242261,7 +244175,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -242288,11 +244204,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username of the Appfigures source.␊ */␊ @@ -242319,7 +244239,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -242346,7 +244268,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Account SID of Twilio service.␊ */␊ @@ -242391,7 +244315,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -242401,7 +244327,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - sessionToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + sessionToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -242434,7 +244362,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).␊ */␊ @@ -242492,7 +244422,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - key?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + key?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * URL for Azure Search service. Type: string (or Expression with resultType string).␊ */␊ @@ -242553,7 +244485,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).␊ */␊ @@ -242614,7 +244548,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -242669,11 +244605,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - passPhrase?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + passPhrase?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -242683,7 +244623,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKeyContent?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + privateKeyContent?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).␊ */␊ @@ -242734,7 +244676,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP BW instance. Type: string (or Expression with resultType string).␊ */␊ @@ -242789,7 +244733,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP HANA server. Type: string (or Expression with resultType string).␊ */␊ @@ -242846,11 +244792,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - mwsAuthToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + mwsAuthToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - secretKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Amazon seller ID.␊ */␊ @@ -242946,7 +244896,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -243069,7 +245021,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -243130,7 +245084,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.␊ */␊ @@ -243158,7 +245114,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + refreshToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false.␊ */␊ @@ -243270,7 +245228,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.␊ */␊ @@ -243349,7 +245309,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Hive server uses to listen for client connections.␊ */␊ @@ -243420,7 +245382,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The client ID associated with your Hubspot application.␊ */␊ @@ -243430,7 +245394,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243440,7 +245406,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + refreshToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -243513,7 +245481,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Impala server uses to listen for client connections. The default value is 21050.␊ */␊ @@ -243570,7 +245540,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.␊ */␊ @@ -243621,7 +245593,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243744,7 +245718,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243801,7 +245777,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243892,7 +245870,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.␊ */␊ @@ -243977,7 +245957,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Presto server uses to listen for client connections. The default value is 8080.␊ */␊ @@ -244034,11 +246016,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - accessTokenSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessTokenSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The company ID of the QuickBooks company to authorize.␊ */␊ @@ -244060,7 +246046,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + consumerSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244109,7 +246097,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244125,7 +246115,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -244170,7 +246162,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244261,7 +246255,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Spark server uses to listen for client connections.␊ */␊ @@ -244320,7 +246316,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -244389,7 +246387,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + consumerKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244405,7 +246405,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + privateKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -244444,7 +246446,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -244573,7 +246577,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -244634,7 +246640,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterPassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clusterPassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The resource group where the cluster belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -244650,7 +246658,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterSshPassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clusterSshPassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).␊ */␊ @@ -244754,7 +246764,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).␊ */␊ @@ -244883,7 +246895,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -244916,7 +246930,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).␊ */␊ @@ -245049,7 +247065,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).␊ */␊ @@ -245104,7 +247122,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -245173,7 +247193,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).␊ */␊ @@ -245218,7 +247240,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).␊ */␊ @@ -245279,7 +247303,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -245289,7 +247315,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - developerToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + developerToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.␊ */␊ @@ -245311,7 +247339,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + refreshToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.␊ */␊ @@ -245380,7 +247410,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).␊ */␊ @@ -245477,7 +247509,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -245526,7 +247560,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - functionKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + functionKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Allowed token audiences for azure function.␊ */␊ @@ -245598,7 +247634,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).␊ */␊ @@ -246058,7 +248096,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The null value string. Type: string (or Expression with resultType string).␊ */␊ @@ -246109,7 +248169,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246166,7 +248248,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The null value string. Type: string (or Expression with resultType string).␊ */␊ @@ -246215,7 +248319,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246246,7 +248372,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The null value string. Type: string (or Expression with resultType string).␊ */␊ @@ -246273,7 +248421,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The data orcCompressionCodec. Type: string (or Expression with resultType string).␊ */␊ @@ -246304,7 +248474,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246341,7 +248533,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).␊ */␊ @@ -246681,7 +248895,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246718,7 +248954,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246790,7 +249048,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The end of file's modified datetime. Type: string (or Expression with resultType string).␊ */␊ @@ -247693,7 +249973,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).␊ */␊ @@ -248681,11 +250983,63 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifFalseActivities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + ifFalseActivities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifTrueActivities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + ifTrueActivities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + [k: string]: unknown␊ + })[] | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -248724,7 +251078,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute if no case condition is satisfied. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - defaultActivities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + defaultActivities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Azure Data Factory expression definition.␊ */␊ @@ -248738,7 +251118,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute for satisfied case condition.␊ */␊ - activities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + activities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Expected value that satisfies the expression result of the 'on' property.␊ */␊ @@ -248763,7 +251169,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute .␊ */␊ - activities: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + activities: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).␊ */␊ @@ -248848,7 +251280,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute.␊ */␊ - activities: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + activities: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Azure Data Factory expression definition.␊ */␊ @@ -249071,11 +251529,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - pfx?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + pfx?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Resource for which Azure Auth token will be requested when using MSI Authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -249491,7 +251953,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "JsonSink"␊ [k: string]: unknown␊ }␊ @@ -249526,7 +252016,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "OrcSink"␊ [k: string]: unknown␊ }␊ @@ -249728,7 +252246,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "AvroSink"␊ [k: string]: unknown␊ }␊ @@ -249777,7 +252323,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "ParquetSink"␊ [k: string]: unknown␊ }␊ @@ -249814,7 +252388,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "BinarySink"␊ [k: string]: unknown␊ }␊ @@ -251543,7 +254145,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "ExcelSource"␊ [k: string]: unknown␊ }␊ @@ -251560,7 +254184,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "ParquetSource"␊ [k: string]: unknown␊ }␊ @@ -251581,7 +254227,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "DelimitedTextSource"␊ [k: string]: unknown␊ }␊ @@ -251666,7 +254334,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "JsonSource"␊ [k: string]: unknown␊ }␊ @@ -251685,7 +254375,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * Compression read settings.␊ */␊ - compressionProperties?: ((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) | string)␊ + compressionProperties?: (((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "JsonReadSettings"␊ [k: string]: unknown␊ }␊ @@ -251706,7 +254406,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "XmlSource"␊ [k: string]: unknown␊ }␊ @@ -251725,7 +254447,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * Compression read settings.␊ */␊ - compressionProperties?: ((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) | string)␊ + compressionProperties?: (((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Indicates whether type detection is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).␊ */␊ @@ -251766,7 +254498,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "OrcSource"␊ [k: string]: unknown␊ }␊ @@ -251781,7 +254535,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "BinarySource"␊ [k: string]: unknown␊ }␊ @@ -251800,7 +254576,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * Compression read settings.␊ */␊ - compressionProperties?: ((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) | string)␊ + compressionProperties?: (((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "BinaryReadSettings"␊ [k: string]: unknown␊ }␊ @@ -254378,7 +257164,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * UseName for windows authentication.␊ */␊ @@ -254458,7 +257246,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - packagePassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + packagePassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -254645,7 +257435,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -254705,7 +257517,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * A copy activity source.␊ */␊ - source: ((AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSource | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource) | string)␊ + source: (((AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSource | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Source retry count. Type: integer (or Expression with resultType integer).␊ + */␊ + sourceRetryCount?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).␊ + */␊ + sourceRetryWait?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -254799,7 +257645,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -256351,7 +259219,23 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure Data Factory nested object which contains a flow with data movements and transformations.␊ */␊ - properties: ((MappingDataFlow | Flowlet | WranglingDataFlow) | string)␊ + properties: (((MappingDataFlow | Flowlet | WranglingDataFlow) & {␊ + /**␊ + * List of tags that can be used for describing the data flow.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * The description of the data flow.␊ + */␊ + description?: string␊ + /**␊ + * The folder that this data flow is in. If not specified, Data flow will appear at the root level.␊ + */␊ + folder?: (DataFlowFolder | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/dataflows"␊ [k: string]: unknown␊ }␊ @@ -256367,7 +259251,53 @@ Generated by [AVA](https://avajs.dev). /**␊ * The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.␊ */␊ - properties: ((AmazonS3Dataset1 | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset1 | AzureTableDataset1 | AzureSqlTableDataset1 | AzureSqlMITableDataset | AzureSqlDWTableDataset1 | CassandraTableDataset1 | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset1 | DynamicsEntityDataset1 | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset1 | AzureBlobFSDataset | Office365Dataset | FileShareDataset1 | MongoDbCollectionDataset1 | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset1 | OracleTableDataset1 | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset1 | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset1 | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset1 | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset1 | SapEccResourceDataset1 | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset1 | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset1 | AzureSearchIndexDataset1 | HttpDataset1 | AmazonMWSObjectDataset1 | AzurePostgreSqlTableDataset1 | ConcurObjectDataset1 | CouchbaseTableDataset1 | DrillTableDataset1 | EloquaObjectDataset1 | GoogleBigQueryObjectDataset1 | GreenplumTableDataset1 | HBaseObjectDataset1 | HiveObjectDataset1 | HubspotObjectDataset1 | ImpalaObjectDataset1 | JiraObjectDataset1 | MagentoObjectDataset1 | MariaDBTableDataset1 | AzureMariaDBTableDataset | MarketoObjectDataset1 | PaypalObjectDataset1 | PhoenixObjectDataset1 | PrestoObjectDataset1 | QuickBooksObjectDataset1 | ServiceNowObjectDataset1 | ShopifyObjectDataset1 | SparkObjectDataset1 | SquareObjectDataset1 | XeroObjectDataset1 | ZohoObjectDataset1 | NetezzaTableDataset1 | VerticaTableDataset1 | SalesforceMarketingCloudObjectDataset1 | ResponsysObjectDataset1 | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset) | string)␊ + properties: (((AmazonS3Dataset1 | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset1 | AzureTableDataset1 | AzureSqlTableDataset1 | AzureSqlMITableDataset | AzureSqlDWTableDataset1 | CassandraTableDataset1 | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset1 | DynamicsEntityDataset1 | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset1 | AzureBlobFSDataset | Office365Dataset | FileShareDataset1 | MongoDbCollectionDataset1 | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset1 | OracleTableDataset1 | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset1 | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset1 | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset1 | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset1 | SapEccResourceDataset1 | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset1 | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset1 | AzureSearchIndexDataset1 | HttpDataset1 | AmazonMWSObjectDataset1 | AzurePostgreSqlTableDataset1 | ConcurObjectDataset1 | CouchbaseTableDataset1 | DrillTableDataset1 | EloquaObjectDataset1 | GoogleBigQueryObjectDataset1 | GreenplumTableDataset1 | HBaseObjectDataset1 | HiveObjectDataset1 | HubspotObjectDataset1 | ImpalaObjectDataset1 | JiraObjectDataset1 | MagentoObjectDataset1 | MariaDBTableDataset1 | AzureMariaDBTableDataset | MarketoObjectDataset1 | PaypalObjectDataset1 | PhoenixObjectDataset1 | PrestoObjectDataset1 | QuickBooksObjectDataset1 | ServiceNowObjectDataset1 | ShopifyObjectDataset1 | SparkObjectDataset1 | SquareObjectDataset1 | XeroObjectDataset1 | ZohoObjectDataset1 | NetezzaTableDataset1 | VerticaTableDataset1 | SalesforceMarketingCloudObjectDataset1 | ResponsysObjectDataset1 | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the Dataset.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Dataset description.␊ + */␊ + description?: string␊ + /**␊ + * The folder that this Dataset is in. If not specified, Dataset will appear at the root level.␊ + */␊ + folder?: (DatasetFolder | string)␊ + /**␊ + * Linked service reference type.␊ + */␊ + linkedServiceName: (LinkedServiceReference1 | string)␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification1␊ + } | string)␊ + /**␊ + * Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.␊ + */␊ + schema?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.␊ + */␊ + structure?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/datasets"␊ [k: string]: unknown␊ }␊ @@ -256383,7 +259313,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure Data Factory nested object which serves as a compute resource for activities.␊ */␊ - properties: ((ManagedIntegrationRuntime1 | SelfHostedIntegrationRuntime1) | string)␊ + properties: (((ManagedIntegrationRuntime1 | SelfHostedIntegrationRuntime1) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Integration runtime description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/integrationRuntimes"␊ [k: string]: unknown␊ }␊ @@ -256399,7 +259343,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * The nested object which contains the information and credential which can be used to connect with related store or compute resource.␊ */␊ - properties: ((AzureStorageLinkedService1 | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService1 | SqlServerLinkedService1 | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService1 | AzureSqlMILinkedService | AzureBatchLinkedService1 | AzureKeyVaultLinkedService1 | CosmosDbLinkedService1 | DynamicsLinkedService1 | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService1 | FileServerLinkedService1 | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService1 | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService1 | MySqlLinkedService1 | PostgreSqlLinkedService1 | SybaseLinkedService1 | Db2LinkedService1 | TeradataLinkedService1 | AzureMLLinkedService1 | AzureMLServiceLinkedService | OdbcLinkedService1 | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService1 | ODataLinkedService1 | WebLinkedService1 | CassandraLinkedService1 | MongoDbLinkedService1 | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService1 | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService1 | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService1 | SapEccLinkedService1 | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | AmazonS3LinkedService1 | AmazonRedshiftLinkedService1 | CustomDataSourceLinkedService1 | AzureSearchLinkedService1 | HttpLinkedService1 | FtpServerLinkedService1 | SftpServerLinkedService1 | SapBWLinkedService1 | SapHanaLinkedService1 | AmazonMWSLinkedService1 | AzurePostgreSqlLinkedService1 | ConcurLinkedService1 | CouchbaseLinkedService1 | DrillLinkedService1 | EloquaLinkedService1 | GoogleBigQueryLinkedService1 | GreenplumLinkedService1 | HBaseLinkedService1 | HiveLinkedService1 | HubspotLinkedService1 | ImpalaLinkedService1 | JiraLinkedService1 | MagentoLinkedService1 | MariaDBLinkedService1 | AzureMariaDBLinkedService | MarketoLinkedService1 | PaypalLinkedService1 | PhoenixLinkedService1 | PrestoLinkedService1 | QuickBooksLinkedService1 | ServiceNowLinkedService1 | ShopifyLinkedService1 | SparkLinkedService1 | SquareLinkedService1 | XeroLinkedService1 | ZohoLinkedService1 | VerticaLinkedService1 | NetezzaLinkedService1 | SalesforceMarketingCloudLinkedService1 | HDInsightOnDemandLinkedService1 | AzureDataLakeAnalyticsLinkedService1 | AzureDatabricksLinkedService1 | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService1 | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService) | string)␊ + properties: (((AzureStorageLinkedService1 | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService1 | SqlServerLinkedService1 | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService1 | AzureSqlMILinkedService | AzureBatchLinkedService1 | AzureKeyVaultLinkedService1 | CosmosDbLinkedService1 | DynamicsLinkedService1 | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService1 | FileServerLinkedService1 | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService1 | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService1 | MySqlLinkedService1 | PostgreSqlLinkedService1 | SybaseLinkedService1 | Db2LinkedService1 | TeradataLinkedService1 | AzureMLLinkedService1 | AzureMLServiceLinkedService | OdbcLinkedService1 | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService1 | ODataLinkedService1 | WebLinkedService1 | CassandraLinkedService1 | MongoDbLinkedService1 | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService1 | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService1 | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService1 | SapEccLinkedService1 | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | AmazonS3LinkedService1 | AmazonRedshiftLinkedService1 | CustomDataSourceLinkedService1 | AzureSearchLinkedService1 | HttpLinkedService1 | FtpServerLinkedService1 | SftpServerLinkedService1 | SapBWLinkedService1 | SapHanaLinkedService1 | AmazonMWSLinkedService1 | AzurePostgreSqlLinkedService1 | ConcurLinkedService1 | CouchbaseLinkedService1 | DrillLinkedService1 | EloquaLinkedService1 | GoogleBigQueryLinkedService1 | GreenplumLinkedService1 | HBaseLinkedService1 | HiveLinkedService1 | HubspotLinkedService1 | ImpalaLinkedService1 | JiraLinkedService1 | MagentoLinkedService1 | MariaDBLinkedService1 | AzureMariaDBLinkedService | MarketoLinkedService1 | PaypalLinkedService1 | PhoenixLinkedService1 | PrestoLinkedService1 | QuickBooksLinkedService1 | ServiceNowLinkedService1 | ShopifyLinkedService1 | SparkLinkedService1 | SquareLinkedService1 | XeroLinkedService1 | ZohoLinkedService1 | VerticaLinkedService1 | NetezzaLinkedService1 | SalesforceMarketingCloudLinkedService1 | HDInsightOnDemandLinkedService1 | AzureDataLakeAnalyticsLinkedService1 | AzureDatabricksLinkedService1 | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService1 | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the linked service.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Integration runtime reference type.␊ + */␊ + connectVia?: (IntegrationRuntimeReference1 | string)␊ + /**␊ + * Linked service description.␊ + */␊ + description?: string␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification1␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/linkedservices"␊ [k: string]: unknown␊ }␊ @@ -256431,7 +259405,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure data factory nested object which contains information about creating pipeline run␊ */␊ - properties: ((MultiplePipelineTrigger1 | TumblingWindowTrigger | RerunTumblingWindowTrigger | ChainingTrigger) | string)␊ + properties: (((MultiplePipelineTrigger1 | TumblingWindowTrigger | RerunTumblingWindowTrigger | ChainingTrigger) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the trigger.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Trigger description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/triggers"␊ [k: string]: unknown␊ }␊ @@ -257354,7 +260348,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * By default, Event Grid expects events to be in the Event Grid event schema. Specifying an input schema mapping enables publishing to Event Grid using a custom input schema. Currently, the only supported type of InputSchemaMapping is 'JsonInputSchemaMapping'.␊ */␊ - inputSchemaMapping?: (JsonInputSchemaMapping1 | string)␊ + inputSchemaMapping?: ((JsonInputSchemaMapping1 & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -258104,7 +261100,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * By default, Event Grid expects events to be in the Event Grid event schema. Specifying an input schema mapping enables publishing to Event Grid using a custom input schema. Currently, the only supported type of InputSchemaMapping is 'JsonInputSchemaMapping'.␊ */␊ - inputSchemaMapping?: (JsonInputSchemaMapping2 | string)␊ + inputSchemaMapping?: ((JsonInputSchemaMapping2 & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -263536,7 +266534,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - licenseKey?: (SecureString2 | string)␊ + licenseKey?: ((SecureString2 & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -264905,7 +267905,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * the array of actions that are performed when the alert rule becomes active, and when an alert condition is resolved.␊ */␊ - actions?: ((RuleEmailAction | RuleWebhookAction)[] | string)␊ + actions?: (((RuleEmailAction | RuleWebhookAction) & {␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * The condition that results in the alert rule being activated.␊ */␊ @@ -267033,7 +270035,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * the array of actions that are performed when the alert rule becomes active, and when an alert condition is resolved.␊ */␊ - actions?: ((RuleEmailAction1 | RuleWebhookAction1)[] | string)␊ + actions?: (((RuleEmailAction1 | RuleWebhookAction1) & {␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * The condition that results in the alert rule being activated.␊ */␊ @@ -440338,7 +443342,17 @@ Generated by [AVA](https://avajs.dev). */␊ exit_code?: number␊ [k: string]: unknown␊ - } | null))␊ + } | (null & {␊ + /**␊ + * output of the postdeploy script␊ + */␊ + output?: string␊ + /**␊ + * The exit code of the postdeploy script␊ + */␊ + exit_code?: number␊ + [k: string]: unknown␊ + })))␊ /**␊ * buildpacks executed for this build, in order␊ */␊ @@ -440358,7 +443372,13 @@ Generated by [AVA](https://avajs.dev). */␊ id?: string␊ [k: string]: unknown␊ - } & (null | {␊ + } & ((null & {␊ + /**␊ + * unique identifier of release␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) | {␊ /**␊ * unique identifier of release␊ */␊ @@ -440398,7 +443418,17 @@ Generated by [AVA](https://avajs.dev). */␊ name?: string␊ [k: string]: unknown␊ - } | null))␊ + } | (null & {␊ + /**␊ + * unique identifier of add-on␊ + */␊ + id?: string␊ + /**␊ + * globally unique name of the add-on␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + })))␊ /**␊ * The scope of access OAuth authorization allows␊ */␊ @@ -440569,7 +443599,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * Identity Provider details for federated users.␊ */␊ - identity_provider?: ({␊ + identity_provider?: (({␊ + /**␊ + * unique identifier of this identity provider␊ + */␊ + id?: string␊ + organization?: {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + } | (null & {␊ + /**␊ + * unique identifier of this identity provider␊ + */␊ + id?: string␊ + organization?: {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + })) & {␊ /**␊ * unique identifier of this identity provider␊ */␊ @@ -440582,7 +443638,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ [k: string]: unknown␊ - } | null)␊ + })␊ /**␊ * when account last authorized with Heroku␊ */␊ @@ -440618,7 +443674,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * organization selected by default␊ */␊ - default_organization?: ({␊ + default_organization?: (({␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + } | (null & {␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + })) & {␊ /**␊ * unique identifier of organization␊ */␊ @@ -440628,7 +443704,7 @@ Generated by [AVA](https://avajs.dev). */␊ name?: string␊ [k: string]: unknown␊ - } | null)␊ + })␊ [k: string]: unknown␊ }␊ /**␊ @@ -441070,7 +444146,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity and status of build␊ */␊ - build?: (null | {␊ + build?: (((null & {␊ + /**␊ + * unique identifier of build␊ + */␊ + id?: string␊ + /**␊ + * status of build␊ + */␊ + status?: ("failed" | "pending" | "succeeded")␊ + /**␊ + * Build process output will be available from this URL as a stream. The stream is available as either \`text/plain\` or \`text/event-stream\`. Clients should be prepared to handle disconnects and can resume the stream by sending a \`Range\` header (for \`text/plain\`) or a \`Last-Event-Id\` header (for \`text/event-stream\`).␊ + */␊ + output_stream_url?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of build␊ + */␊ + id?: string␊ + /**␊ + * status of build␊ + */␊ + status?: ("failed" | "pending" | "succeeded")␊ + /**␊ + * Build process output will be available from this URL as a stream. The stream is available as either \`text/plain\` or \`text/event-stream\`. Clients should be prepared to handle disconnects and can resume the stream by sending a \`Range\` header (for \`text/plain\`) or a \`Last-Event-Id\` header (for \`text/event-stream\`).␊ + */␊ + output_stream_url?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of build␊ */␊ @@ -441220,7 +444324,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of organization␊ */␊ - organization?: (null | {␊ + organization?: (((null & {␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of organization␊ */␊ @@ -441260,7 +444384,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of space␊ */␊ - space?: (null | {␊ + space?: (((null & {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + /**␊ + * true if this space has shield enabled␊ + */␊ + shield?: boolean␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + /**␊ + * true if this space has shield enabled␊ + */␊ + shield?: boolean␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of space␊ */␊ @@ -441377,13 +444529,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * slug created by this build␊ */␊ - slug?: ({␊ + slug?: (({␊ /**␊ * unique identifier of slug␊ */␊ id?: string␊ [k: string]: unknown␊ - } | null)␊ + } | (null & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })␊ /**␊ * status of build␊ */␊ @@ -441805,7 +444969,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * The related resource of the failed action.␊ */␊ - resource?: ({␊ + resource?: (({␊ + /**␊ + * Unique identifier of a resource.␊ + */␊ + id?: string␊ + /**␊ + * the type of resource affected␊ + */␊ + name?: ("addon" | "addon-attachment" | "app" | "app-setup" | "app-transfer" | "build" | "collaborator" | "domain" | "dyno" | "failed-event" | "formation" | "formation-set" | "inbound-ruleset" | "organization" | "release" | "space" | "user")␊ + [k: string]: unknown␊ + } | (null & {␊ + /**␊ + * Unique identifier of a resource.␊ + */␊ + id?: string␊ + /**␊ + * the type of resource affected␊ + */␊ + name?: ("addon" | "addon-attachment" | "app" | "app-setup" | "app-transfer" | "build" | "collaborator" | "domain" | "dyno" | "failed-event" | "formation" | "formation-set" | "inbound-ruleset" | "organization" | "release" | "space" | "user")␊ + [k: string]: unknown␊ + })) & {␊ /**␊ * Unique identifier of a resource.␊ */␊ @@ -441815,7 +444999,7 @@ Generated by [AVA](https://avajs.dev). */␊ name?: ("addon" | "addon-attachment" | "app" | "app-setup" | "app-transfer" | "build" | "collaborator" | "domain" | "dyno" | "failed-event" | "formation" | "formation-set" | "inbound-ruleset" | "organization" | "release" | "space" | "user")␊ [k: string]: unknown␊ - } | null)␊ + })␊ [k: string]: unknown␊ }␊ /**␊ @@ -441986,13 +445170,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * slug running in this release␊ */␊ - slug?: ({␊ + slug?: (({␊ /**␊ * unique identifier of slug␊ */␊ id?: string␊ [k: string]: unknown␊ - } | null)␊ + } | (null & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })␊ /**␊ * current status of the release␊ */␊ @@ -442112,7 +445308,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * organization associated with this identity provider␊ */␊ - organization?: (null | {␊ + organization?: (((null & {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique name of organization␊ */␊ @@ -442326,7 +445534,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * access token for this authorization␊ */␊ - access_token?: (null | {␊ + access_token?: (((null & {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ */␊ @@ -442344,7 +445580,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * identifier of the client that obtained this authorization, if any␊ */␊ - client?: (null | {␊ + client?: (((null & {␊ + /**␊ + * unique identifier of this OAuth client␊ + */␊ + id?: string␊ + /**␊ + * OAuth client name␊ + */␊ + name?: string␊ + /**␊ + * endpoint for redirection after authorization with OAuth client␊ + */␊ + redirect_uri?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of this OAuth client␊ + */␊ + id?: string␊ + /**␊ + * OAuth client name␊ + */␊ + name?: string␊ + /**␊ + * endpoint for redirection after authorization with OAuth client␊ + */␊ + redirect_uri?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of this OAuth client␊ */␊ @@ -442366,7 +445630,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * this authorization's grant␊ */␊ - grant?: (null | {␊ + grant?: (((null & {␊ + /**␊ + * grant code received from OAuth web application authorization␊ + */␊ + code?: string␊ + /**␊ + * seconds until OAuth grant expires␊ + */␊ + expires_in?: number␊ + /**␊ + * unique identifier of OAuth grant␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * grant code received from OAuth web application authorization␊ + */␊ + code?: string␊ + /**␊ + * seconds until OAuth grant expires␊ + */␊ + expires_in?: number␊ + /**␊ + * unique identifier of OAuth grant␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * grant code received from OAuth web application authorization␊ */␊ @@ -442388,7 +445680,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * refresh token for this authorization␊ */␊ - refresh_token?: (null | {␊ + refresh_token?: (((null & {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ */␊ @@ -442503,7 +445823,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * OAuth client secret used to obtain token␊ */␊ - client?: (null | {␊ + client?: (((null & {␊ + /**␊ + * secret used to obtain OAuth authorizations under this client␊ + */␊ + secret?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * secret used to obtain OAuth authorizations under this client␊ + */␊ + secret?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * secret used to obtain OAuth authorizations under this client␊ */␊ @@ -442679,7 +446011,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * organization that owns this app␊ */␊ - organization?: (null | {␊ + organization?: (((null & {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique name of organization␊ */␊ @@ -442689,7 +446033,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of app owner␊ */␊ - owner?: (null | {␊ + owner?: (((null & {␊ + /**␊ + * unique email address of account␊ + */␊ + email?: string␊ + /**␊ + * unique identifier of an account␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique email address of account␊ + */␊ + email?: string␊ + /**␊ + * unique identifier of an account␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique email address of account␊ */␊ @@ -442729,7 +446093,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of space␊ */␊ - space?: (null | {␊ + space?: (((null & {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of space␊ */␊ @@ -443147,13 +446531,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * the release which was created on the target app␊ */␊ - release?: ({␊ + release?: (({␊ + /**␊ + * unique identifier of release␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + } | (null & {␊ /**␊ * unique identifier of release␊ */␊ id?: string␊ [k: string]: unknown␊ - } | null)␊ + })) & {␊ + /**␊ + * unique identifier of release␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })␊ /**␊ * status of promotion␊ */␊ @@ -443924,10 +447320,11 @@ Generated by [AVA](https://avajs.dev). * and run json-schema-to-typescript to regenerate this file.␊ */␊ ␊ - export type CoreSchemaMetaSchema = CoreSchemaMetaSchema1 & CoreSchemaMetaSchema2;␊ + export type CoreSchemaMetaSchema = CoreSchemaMetaSchema1 & CoreSchemaMetaSchema3;␊ export type NonNegativeInteger = number;␊ export type NonNegativeIntegerDefault0 = NonNegativeInteger;␊ - export type CoreSchemaMetaSchema2 =␊ + export type CoreSchemaMetaSchema2 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema3 =␊ | {␊ $id?: string;␊ $schema?: string;␊ @@ -443947,29 +447344,29 @@ Generated by [AVA](https://avajs.dev). maxLength?: NonNegativeInteger;␊ minLength?: NonNegativeIntegerDefault0;␊ pattern?: string;␊ - additionalItems?: CoreSchemaMetaSchema2;␊ - items?: CoreSchemaMetaSchema2 | SchemaArray;␊ + additionalItems?: CoreSchemaMetaSchema4;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ maxItems?: NonNegativeInteger;␊ minItems?: NonNegativeIntegerDefault0;␊ uniqueItems?: boolean;␊ - contains?: CoreSchemaMetaSchema2;␊ + contains?: CoreSchemaMetaSchema21;␊ maxProperties?: NonNegativeInteger;␊ minProperties?: NonNegativeIntegerDefault0;␊ required?: StringArray;␊ - additionalProperties?: CoreSchemaMetaSchema2;␊ + additionalProperties?: CoreSchemaMetaSchema22;␊ definitions?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema12;␊ };␊ properties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema13;␊ };␊ patternProperties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema14;␊ };␊ dependencies?: {␊ - [k: string]: CoreSchemaMetaSchema2 | StringArray;␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ };␊ - propertyNames?: CoreSchemaMetaSchema2;␊ + propertyNames?: CoreSchemaMetaSchema23;␊ const?: unknown;␊ /**␊ * @minItems 1␊ @@ -443979,22 +447376,119 @@ Generated by [AVA](https://avajs.dev). format?: string;␊ contentMediaType?: string;␊ contentEncoding?: string;␊ - if?: CoreSchemaMetaSchema2;␊ - then?: CoreSchemaMetaSchema2;␊ - else?: CoreSchemaMetaSchema2;␊ + if?: CoreSchemaMetaSchema24;␊ + then?: CoreSchemaMetaSchema25;␊ + else?: CoreSchemaMetaSchema26;␊ allOf?: SchemaArray;␊ anyOf?: SchemaArray;␊ oneOf?: SchemaArray;␊ - not?: CoreSchemaMetaSchema2;␊ + not?: CoreSchemaMetaSchema27;␊ [k: string]: unknown;␊ }␊ - | boolean;␊ + | (boolean & {␊ + $id?: string;␊ + $schema?: string;␊ + $ref?: string;␊ + $comment?: string;␊ + title?: string;␊ + description?: string;␊ + default?: unknown;␊ + readOnly?: boolean;␊ + writeOnly?: boolean;␊ + examples?: unknown[];␊ + multipleOf?: number;␊ + maximum?: number;␊ + exclusiveMaximum?: number;␊ + minimum?: number;␊ + exclusiveMinimum?: number;␊ + maxLength?: NonNegativeInteger;␊ + minLength?: NonNegativeIntegerDefault0;␊ + pattern?: string;␊ + additionalItems?: CoreSchemaMetaSchema28;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ + maxItems?: NonNegativeInteger;␊ + minItems?: NonNegativeIntegerDefault0;␊ + uniqueItems?: boolean;␊ + contains?: CoreSchemaMetaSchema29;␊ + maxProperties?: NonNegativeInteger;␊ + minProperties?: NonNegativeIntegerDefault0;␊ + required?: StringArray;␊ + additionalProperties?: CoreSchemaMetaSchema30;␊ + definitions?: {␊ + [k: string]: CoreSchemaMetaSchema12;␊ + };␊ + properties?: {␊ + [k: string]: CoreSchemaMetaSchema13;␊ + };␊ + patternProperties?: {␊ + [k: string]: CoreSchemaMetaSchema14;␊ + };␊ + dependencies?: {␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ + };␊ + propertyNames?: CoreSchemaMetaSchema31;␊ + const?: unknown;␊ + /**␊ + * @minItems 1␊ + */␊ + enum?: [unknown, ...unknown[]];␊ + type?: SimpleTypes | [SimpleTypes, ...SimpleTypes[]];␊ + format?: string;␊ + contentMediaType?: string;␊ + contentEncoding?: string;␊ + if?: CoreSchemaMetaSchema32;␊ + then?: CoreSchemaMetaSchema33;␊ + else?: CoreSchemaMetaSchema34;␊ + allOf?: SchemaArray;␊ + anyOf?: SchemaArray;␊ + oneOf?: SchemaArray;␊ + not?: CoreSchemaMetaSchema35;␊ + [k: string]: unknown;␊ + });␊ + export type CoreSchemaMetaSchema4 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema6 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema7 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ /**␊ * @minItems 1␊ */␊ - export type SchemaArray = [CoreSchemaMetaSchema2, ...CoreSchemaMetaSchema2[]];␊ + export type SchemaArray = [CoreSchemaMetaSchema8, ...CoreSchemaMetaSchema9[]];␊ + export type CoreSchemaMetaSchema8 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema9 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema10 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ export type StringArray = string[];␊ + export type CoreSchemaMetaSchema11 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema12 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema13 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema14 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema15 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema16 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ export type SimpleTypes = "array" | "boolean" | "integer" | "null" | "number" | "object" | "string";␊ + export type CoreSchemaMetaSchema17 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema18 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema19 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema20 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema21 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema22 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema23 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema24 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema25 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema26 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema27 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema28 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema29 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema30 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema31 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema32 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema33 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema34 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema35 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema36 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema37 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema38 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema39 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema40 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema41 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema42 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ ␊ export interface CoreSchemaMetaSchema1 {␊ $id?: string;␊ @@ -444016,28 +447510,28 @@ Generated by [AVA](https://avajs.dev). minLength?: NonNegativeIntegerDefault0;␊ pattern?: string;␊ additionalItems?: CoreSchemaMetaSchema2;␊ - items?: CoreSchemaMetaSchema2 | SchemaArray;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ maxItems?: NonNegativeInteger;␊ minItems?: NonNegativeIntegerDefault0;␊ uniqueItems?: boolean;␊ - contains?: CoreSchemaMetaSchema2;␊ + contains?: CoreSchemaMetaSchema36;␊ maxProperties?: NonNegativeInteger;␊ minProperties?: NonNegativeIntegerDefault0;␊ required?: StringArray;␊ - additionalProperties?: CoreSchemaMetaSchema2;␊ + additionalProperties?: CoreSchemaMetaSchema37;␊ definitions?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema12;␊ };␊ properties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema13;␊ };␊ patternProperties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema14;␊ };␊ dependencies?: {␊ - [k: string]: CoreSchemaMetaSchema2 | StringArray;␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ };␊ - propertyNames?: CoreSchemaMetaSchema2;␊ + propertyNames?: CoreSchemaMetaSchema38;␊ const?: unknown;␊ /**␊ * @minItems 1␊ @@ -444047,13 +447541,73 @@ Generated by [AVA](https://avajs.dev). format?: string;␊ contentMediaType?: string;␊ contentEncoding?: string;␊ - if?: CoreSchemaMetaSchema2;␊ - then?: CoreSchemaMetaSchema2;␊ - else?: CoreSchemaMetaSchema2;␊ + if?: CoreSchemaMetaSchema39;␊ + then?: CoreSchemaMetaSchema40;␊ + else?: CoreSchemaMetaSchema41;␊ allOf?: SchemaArray;␊ anyOf?: SchemaArray;␊ oneOf?: SchemaArray;␊ - not?: CoreSchemaMetaSchema2;␊ + not?: CoreSchemaMetaSchema42;␊ + [k: string]: unknown;␊ + }␊ + export interface CoreSchemaMetaSchema5 {␊ + $id?: string;␊ + $schema?: string;␊ + $ref?: string;␊ + $comment?: string;␊ + title?: string;␊ + description?: string;␊ + default?: unknown;␊ + readOnly?: boolean;␊ + writeOnly?: boolean;␊ + examples?: unknown[];␊ + multipleOf?: number;␊ + maximum?: number;␊ + exclusiveMaximum?: number;␊ + minimum?: number;␊ + exclusiveMinimum?: number;␊ + maxLength?: NonNegativeInteger;␊ + minLength?: NonNegativeIntegerDefault0;␊ + pattern?: string;␊ + additionalItems?: CoreSchemaMetaSchema6;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ + maxItems?: NonNegativeInteger;␊ + minItems?: NonNegativeIntegerDefault0;␊ + uniqueItems?: boolean;␊ + contains?: CoreSchemaMetaSchema10;␊ + maxProperties?: NonNegativeInteger;␊ + minProperties?: NonNegativeIntegerDefault0;␊ + required?: StringArray;␊ + additionalProperties?: CoreSchemaMetaSchema11;␊ + definitions?: {␊ + [k: string]: CoreSchemaMetaSchema12;␊ + };␊ + properties?: {␊ + [k: string]: CoreSchemaMetaSchema13;␊ + };␊ + patternProperties?: {␊ + [k: string]: CoreSchemaMetaSchema14;␊ + };␊ + dependencies?: {␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ + };␊ + propertyNames?: CoreSchemaMetaSchema16;␊ + const?: unknown;␊ + /**␊ + * @minItems 1␊ + */␊ + enum?: [unknown, ...unknown[]];␊ + type?: SimpleTypes | [SimpleTypes, ...SimpleTypes[]];␊ + format?: string;␊ + contentMediaType?: string;␊ + contentEncoding?: string;␊ + if?: CoreSchemaMetaSchema17;␊ + then?: CoreSchemaMetaSchema18;␊ + else?: CoreSchemaMetaSchema19;␊ + allOf?: SchemaArray;␊ + anyOf?: SchemaArray;␊ + oneOf?: SchemaArray;␊ + not?: CoreSchemaMetaSchema20;␊ [k: string]: unknown;␊ }␊ ` @@ -444090,6 +447644,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ };␊ @@ -444135,6 +447692,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: Encoding;␊ };␊ /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ */␊ @@ -444151,7 +447711,7 @@ Generated by [AVA](https://avajs.dev). allowReserved?: boolean;␊ schema?: Schema | Reference;␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ example?: unknown;␊ examples?: {␊ @@ -444160,6 +447720,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ };␊ @@ -444400,6 +447963,24 @@ Generated by [AVA](https://avajs.dev). explode?: boolean;␊ allowReserved?: boolean;␊ }␊ + export interface MediaType2 {␊ + schema?: Schema | Reference;␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + encoding?: {␊ + [k: string]: Encoding;␊ + };␊ + /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ /**␊ * This interface was referenced by \`PathItem\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^(get|put|post|delete|options|head|patch|trace)$".␊ @@ -444410,7 +447991,7 @@ Generated by [AVA](https://avajs.dev). description?: string;␊ externalDocs?: ExternalDocumentation;␊ operationId?: string;␊ - parameters?: (Parameter1 | Reference)[];␊ + parameters?: ((Parameter1 & Parameter2) | Reference)[];␊ requestBody?: RequestBody | Reference;␊ responses: Responses;␊ callbacks?: {␊ @@ -444425,10 +448006,37 @@ Generated by [AVA](https://avajs.dev). */␊ [k: string]: unknown;␊ }␊ + export interface Parameter2 {␊ + name: string;␊ + in: string;␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: string;␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ export interface RequestBody {␊ description?: string;␊ content: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ required?: boolean;␊ /**␊ @@ -444443,10 +448051,10 @@ Generated by [AVA](https://avajs.dev). export interface Response {␊ description: string;␊ headers?: {␊ - [k: string]: Header1 | Reference;␊ + [k: string]: (Header1 & Header2) | Reference;␊ };␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ links?: {␊ [k: string]: Link | Reference;␊ @@ -444457,6 +448065,31 @@ Generated by [AVA](https://avajs.dev). */␊ [k: string]: unknown;␊ }␊ + export interface Header2 {␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: "simple";␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType1 & MediaType2;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ export interface Link {␊ operationId?: string;␊ operationRef?: string;␊ @@ -444495,7 +448128,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Parameter1;␊ + [k: string]: Reference | (Parameter1 & Parameter2);␊ };␊ examples?: {␊ /**␊ @@ -444516,7 +448149,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Header1;␊ + [k: string]: Reference | (Header1 & Header2);␊ };␊ securitySchemes?: {␊ /**␊ @@ -447547,7 +451180,12 @@ Generated by [AVA](https://avajs.dev). email?: string;␊ [k: string]: unknown;␊ }␊ - | string;␊ + | (string & {␊ + name: string;␊ + url?: string;␊ + email?: string;␊ + [k: string]: unknown;␊ + });␊ export type PackageExportsEntry = PackageExportsEntryPath | PackageExportsEntryObject;␊ /**␊ * The module path that is resolved when this specifier is imported. Set to \`null\` to disallow importing this module.␊ @@ -447593,6 +451231,8 @@ Generated by [AVA](https://avajs.dev). * Run by the 'npm restart' command. Note: 'npm restart' will run the stop and start scripts if no restart script is provided.␊ */␊ export type ScriptsRestart = string;␊ + export type JSONSchemaForNPMPackageJsonFiles3 = JSONSchemaForNPMPackageJsonFiles1 & JSONSchemaForNPMPackageJsonFiles4;␊ + export type JSONSchemaForNPMPackageJsonFiles5 = JSONSchemaForNPMPackageJsonFiles1 & JSONSchemaForNPMPackageJsonFiles4;␊ ␊ export interface JSONSchemaForNPMPackageJsonFiles2 {␊ /**␊ @@ -447618,7 +451258,7 @@ Generated by [AVA](https://avajs.dev). /**␊ * The url to your project's issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package.␊ */␊ - bugs?:␊ + bugs?: (␊ | {␊ /**␊ * The url to your project's issue tracker.␊ @@ -447630,7 +451270,28 @@ Generated by [AVA](https://avajs.dev). email?: string;␊ [k: string]: unknown;␊ }␊ - | string;␊ + | (string & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + };␊ /**␊ * You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.␊ */␊ @@ -447647,11 +451308,11 @@ Generated by [AVA](https://avajs.dev). /**␊ * A list of people who contributed to this package.␊ */␊ - contributors?: Person1[];␊ + contributors?: (Person1 & Person2)[];␊ /**␊ * A list of people who maintains this package.␊ */␊ - maintainers?: Person1[];␊ + maintainers?: (Person1 & Person2)[];␊ /**␊ * The 'files' field is an array of files to include in your project. If you name a folder in the array, then it will also include the files inside that folder.␊ */␊ @@ -447746,14 +451407,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * Specify the place where your code lives. This is helpful for people who want to contribute.␊ */␊ - repository?:␊ + repository?: (␊ | {␊ type?: string;␊ url?: string;␊ directory?: string;␊ [k: string]: unknown;␊ }␊ - | string;␊ + | (string & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + };␊ /**␊ * The 'scripts' member is an object hash of script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.␊ */␊ @@ -447888,13 +451560,22 @@ Generated by [AVA](https://avajs.dev). /**␊ * A module ID with untranspiled code that is the primary entry point to your program.␊ */␊ - esnext?:␊ - | string␊ + esnext?: (␊ + | (string & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + })␊ | {␊ main?: string;␊ browser?: string;␊ [k: string]: string;␊ - };␊ + }␊ + ) & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + };␊ /**␊ * Allows packages within a directory to depend on one another using direct linking of local files. Additionally, dependencies within a workspace are hoisted to the workspace root when possible to reduce duplication. Note: It's also a good idea to set "private" to true when using this feature.␊ */␊ @@ -447911,15 +451592,24 @@ Generated by [AVA](https://avajs.dev). nohoist?: string[];␊ [k: string]: unknown;␊ };␊ - jspm?: JSONSchemaForNPMPackageJsonFiles1;␊ + jspm?: JSONSchemaForNPMPackageJsonFiles3;␊ /**␊ * Any property starting with _ is valid.␊ *␊ + * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles4\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^_".␊ + *␊ * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles2\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^_".␊ */␊ [k: string]: any;␊ }␊ + export interface Person2 {␊ + name: string;␊ + url?: string;␊ + email?: string;␊ + [k: string]: unknown;␊ + }␊ /**␊ * Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern.␊ */␊ @@ -447988,6 +451678,367 @@ Generated by [AVA](https://avajs.dev). export interface Dependency {␊ [k: string]: string;␊ }␊ + export interface JSONSchemaForNPMPackageJsonFiles4 {␊ + /**␊ + * The name of the package.␊ + */␊ + name?: string;␊ + /**␊ + * Version must be parseable by node-semver, which is bundled with npm as a dependency.␊ + */␊ + version?: string;␊ + /**␊ + * This helps people discover your package, as it's listed in 'npm search'.␊ + */␊ + description?: string;␊ + /**␊ + * This helps people discover your package as it's listed in 'npm search'.␊ + */␊ + keywords?: string[];␊ + /**␊ + * The url to the project homepage.␊ + */␊ + homepage?: string;␊ + bugs?: (␊ + | {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + }␊ + | (string & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + };␊ + /**␊ + * You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.␊ + */␊ + license?: string;␊ + /**␊ + * DEPRECATED: Instead, use SPDX expressions, like this: { "license": "ISC" } or { "license": "(MIT OR Apache-2.0)" } see: 'https://docs.npmjs.com/files/package.json#license'.␊ + */␊ + licenses?: {␊ + type?: string;␊ + url?: string;␊ + [k: string]: unknown;␊ + }[];␊ + author?: Person1 & Person2;␊ + /**␊ + * A list of people who contributed to this package.␊ + */␊ + contributors?: (Person1 & Person2)[];␊ + /**␊ + * A list of people who maintains this package.␊ + */␊ + maintainers?: (Person1 & Person2)[];␊ + /**␊ + * The 'files' field is an array of files to include in your project. If you name a folder in the array, then it will also include the files inside that folder.␊ + */␊ + files?: string[];␊ + /**␊ + * The main field is a module ID that is the primary entry point to your program.␊ + */␊ + main?: string;␊ + /**␊ + * The "exports" field is used to restrict external access to non-exported module files, also enables a module to import itself using "name".␊ + */␊ + exports?:␊ + | (string | null)␊ + | {␊ + /**␊ + * The module path that is resolved when the module specifier matches "name", shadows the "main" field.␊ + */␊ + "."?: PackageExportsEntry | PackageExportsFallback;␊ + /**␊ + * The module path prefix that is resolved when the module specifier starts with "name/", set to "./" to allow external modules to import any subpath.␊ + */␊ + "./"?: PackageExportsEntry | PackageExportsFallback;␊ + /**␊ + * The module path that is resolved when the path component of the module specifier matches the property name.␊ + *␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^\\./".␊ + */␊ + [k: string]: PackageExportsEntry | PackageExportsFallback;␊ + }␊ + | PackageExportsEntryObject1␊ + | PackageExportsFallback1;␊ + bin?:␊ + | string␊ + | {␊ + [k: string]: string;␊ + };␊ + /**␊ + * When set to "module", the type field allows a package to specify all .js files within are ES modules. If the "type" field is omitted or set to "commonjs", all .js files are treated as CommonJS.␊ + */␊ + type?: "commonjs" | "module";␊ + /**␊ + * Set the types property to point to your bundled declaration file.␊ + */␊ + types?: string;␊ + /**␊ + * Note that the "typings" field is synonymous with "types", and could be used as well.␊ + */␊ + typings?: string;␊ + /**␊ + * The "typesVersions" field is used since TypeScript 3.1 to support features that were only made available in newer TypeScript versions.␊ + */␊ + typesVersions?: {␊ + /**␊ + * Contains overrides for the TypeScript version that matches the version range matching the property key.␊ + */␊ + [k: string]: {␊ + /**␊ + * Maps all file paths to the file paths specified in the array.␊ + */␊ + "*"?: string[];␊ + };␊ + };␊ + /**␊ + * Specify either a single file or an array of filenames to put in place for the man program to find.␊ + */␊ + man?: string[] | string;␊ + directories?: {␊ + /**␊ + * If you specify a 'bin' directory, then all the files in that folder will be used as the 'bin' hash.␊ + */␊ + bin?: string;␊ + /**␊ + * Put markdown files in here. Eventually, these will be displayed nicely, maybe, someday.␊ + */␊ + doc?: string;␊ + /**␊ + * Put example scripts in here. Someday, it might be exposed in some clever way.␊ + */␊ + example?: string;␊ + /**␊ + * Tell people where the bulk of your library is. Nothing special is done with the lib folder in any way, but it's useful meta info.␊ + */␊ + lib?: string;␊ + /**␊ + * A folder that is full of man pages. Sugar to generate a 'man' array by walking the folder.␊ + */␊ + man?: string;␊ + test?: string;␊ + [k: string]: unknown;␊ + };␊ + repository?: (␊ + | {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + }␊ + | (string & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + };␊ + /**␊ + * The 'scripts' member is an object hash of script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.␊ + */␊ + scripts?: {␊ + /**␊ + * Run BEFORE the package is published (Also run on local npm install without any arguments).␊ + */␊ + prepublish?: string;␊ + /**␊ + * Run both BEFORE the package is packed and published, and on local npm install without any arguments. This is run AFTER prepublish, but BEFORE prepublishOnly.␊ + */␊ + prepare?: string;␊ + /**␊ + * Run BEFORE the package is prepared and packed, ONLY on npm publish.␊ + */␊ + prepublishOnly?: string;␊ + /**␊ + * run BEFORE a tarball is packed (on npm pack, npm publish, and when installing git dependencies).␊ + */␊ + prepack?: string;␊ + /**␊ + * Run AFTER the tarball has been generated and moved to its final destination.␊ + */␊ + postpack?: string;␊ + publish?: ScriptsPublishAfter;␊ + postpublish?: ScriptsPublishAfter;␊ + /**␊ + * Run BEFORE the package is installed.␊ + */␊ + preinstall?: string;␊ + install?: ScriptsInstallAfter;␊ + postinstall?: ScriptsInstallAfter;␊ + preuninstall?: ScriptsUninstallBefore;␊ + uninstall?: ScriptsUninstallBefore;␊ + /**␊ + * Run AFTER the package is uninstalled.␊ + */␊ + postuninstall?: string;␊ + preversion?: ScriptsVersionBefore;␊ + version?: ScriptsVersionBefore;␊ + /**␊ + * Run AFTER bump the package version.␊ + */␊ + postversion?: string;␊ + pretest?: ScriptsTest;␊ + test?: ScriptsTest;␊ + posttest?: ScriptsTest;␊ + prestop?: ScriptsStop;␊ + stop?: ScriptsStop;␊ + poststop?: ScriptsStop;␊ + prestart?: ScriptsStart;␊ + start?: ScriptsStart;␊ + poststart?: ScriptsStart;␊ + prerestart?: ScriptsRestart;␊ + restart?: ScriptsRestart;␊ + postrestart?: ScriptsRestart;␊ + [k: string]: string | undefined;␊ + };␊ + /**␊ + * A 'config' hash can be used to set configuration parameters used in package scripts that persist across upgrades.␊ + */␊ + config?: {␊ + [k: string]: unknown;␊ + };␊ + dependencies?: Dependency;␊ + devDependencies?: Dependency;␊ + optionalDependencies?: Dependency;␊ + peerDependencies?: Dependency;␊ + /**␊ + * When a user installs your package, warnings are emitted if packages specified in "peerDependencies" are not already installed. The "peerDependenciesMeta" field serves to provide more information on how your peer dependencies are utilized. Most commonly, it allows peer dependencies to be marked as optional. Metadata for this field is specified with a simple hash of the package name to a metadata object.␊ + */␊ + peerDependenciesMeta?: {␊ + [k: string]: {␊ + /**␊ + * Specifies that this peer dependency is optional and should not be installed automatically.␊ + */␊ + optional?: boolean;␊ + [k: string]: unknown;␊ + };␊ + };␊ + /**␊ + * Array of package names that will be bundled when publishing the package.␊ + */␊ + bundledDependencies?: string[] | false;␊ + /**␊ + * DEPRECATED: This field is honored, but "bundledDependencies" is the correct field name.␊ + */␊ + bundleDependencies?: string[] | false;␊ + /**␊ + * Resolutions is used to support selective version resolutions, which lets you define custom package versions or ranges inside your dependencies. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions␊ + */␊ + resolutions?: {␊ + [k: string]: unknown;␊ + };␊ + engines?: {␊ + node?: string;␊ + [k: string]: string;␊ + };␊ + engineStrict?: boolean;␊ + /**␊ + * Specify which operating systems your module will run on.␊ + */␊ + os?: string[];␊ + /**␊ + * Specify that your code only runs on certain cpu architectures.␊ + */␊ + cpu?: string[];␊ + /**␊ + * DEPRECATED: This option used to trigger an npm warning, but it will no longer warn. It is purely there for informational purposes. It is now recommended that you install any binaries as local devDependencies wherever possible.␊ + */␊ + preferGlobal?: boolean;␊ + /**␊ + * If set to true, then npm will refuse to publish it.␊ + */␊ + private?: boolean | ("false" | "true");␊ + publishConfig?: {␊ + access?: "public" | "restricted";␊ + tag?: string;␊ + registry?: string;␊ + [k: string]: unknown;␊ + };␊ + dist?: {␊ + shasum?: string;␊ + tarball?: string;␊ + [k: string]: unknown;␊ + };␊ + readme?: string;␊ + /**␊ + * An ECMAScript module ID that is the primary entry point to your program.␊ + */␊ + module?: string;␊ + esnext?: (␊ + | (string & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + })␊ + | {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + }␊ + ) & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + };␊ + /**␊ + * Allows packages within a directory to depend on one another using direct linking of local files. Additionally, dependencies within a workspace are hoisted to the workspace root when possible to reduce duplication. Note: It's also a good idea to set "private" to true when using this feature.␊ + */␊ + workspaces?:␊ + | string[]␊ + | {␊ + /**␊ + * Workspace package paths. Glob patterns are supported.␊ + */␊ + packages?: string[];␊ + /**␊ + * Packages to block from hoisting to the workspace root. Currently only supported in Yarn only.␊ + */␊ + nohoist?: string[];␊ + [k: string]: unknown;␊ + };␊ + jspm?: JSONSchemaForNPMPackageJsonFiles5;␊ + /**␊ + * Any property starting with _ is valid.␊ + *␊ + * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles4\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^_".␊ + *␊ + * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^_".␊ + */␊ + [k: string]: any;␊ + }␊ ` ## realWorld.swagger.2.js diff --git a/test/__snapshots__/test/test.ts.snap b/test/__snapshots__/test/test.ts.snap index 4d3e02b7..da4c0bac 100644 Binary files a/test/__snapshots__/test/test.ts.snap and b/test/__snapshots__/test/test.ts.snap differ diff --git a/test/e2e/oneOfNested.ts b/test/e2e/oneOfNested.ts new file mode 100644 index 00000000..0c6d5428 --- /dev/null +++ b/test/e2e/oneOfNested.ts @@ -0,0 +1,39 @@ +export const input = { + type: 'object', + $schema: 'http://json-schema.org/draft-07/schema', + properties: { + things: { + type: 'array', + minLength: 1, + items: { + type: 'object', + required: ['thingProp'], + oneOf: [ + { + type: 'object', + properties: { + propOption1: { + type: 'string', + }, + }, + required: ['propOption1'], + }, + { + type: 'object', + properties: { + propOption2: { + type: 'number', + }, + }, + required: ['propOption2'], + }, + ], + properties: { + thingProp: { + type: 'string', + }, + }, + }, + }, + }, +} diff --git a/test/e2e/oneOfRoot.ts b/test/e2e/oneOfRoot.ts new file mode 100644 index 00000000..1f06c96d --- /dev/null +++ b/test/e2e/oneOfRoot.ts @@ -0,0 +1,29 @@ +export const input = { + type: 'object', + required: ['thingProp'], + oneOf: [ + { + type: 'object', + properties: { + propOption1: { + type: 'string', + }, + }, + required: ['propOption1'], + }, + { + type: 'object', + properties: { + propOption2: { + type: 'number', + }, + }, + required: ['propOption2'], + }, + ], + properties: { + thingProp: { + type: 'string', + }, + }, +} diff --git a/yarn.lock b/yarn.lock index 50a195b9..8dcce3b6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -88,7 +88,7 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== @@ -192,7 +192,7 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@^5.23.0": +"@typescript-eslint/parser@^5.23.0": version "5.62.0" resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz" integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== @@ -260,6 +260,14 @@ "@typescript-eslint/types" "5.62.0" eslint-visitor-keys "^3.3.0" +JSONStream@^1.0.3: + version "1.3.5" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + accessory@~1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/accessory/-/accessory-1.1.0.tgz" @@ -298,16 +306,16 @@ acorn@^5.2.1: resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz" integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== -"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.7.1, acorn@^8.9.0: - version "8.10.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== - acorn@^7.0.0: version "7.4.1" resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== +acorn@^8.7.1, acorn@^8.9.0: + version "8.10.0" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" @@ -349,14 +357,7 @@ ansi-regex@^6.0.1: resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== -ansi-styles@^4.0.0: - version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -524,17 +525,7 @@ blueimp-md5@^2.10.0: resolved "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz" integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w== -bn.js@^4.0.0: - version "4.11.9" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz" - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== - -bn.js@^4.1.0: - version "4.11.9" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz" - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== - -bn.js@^4.4.0: +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: version "4.11.9" resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz" integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== @@ -569,9 +560,9 @@ browser-pack@^6.0.1: resolved "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz" integrity sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA== dependencies: + JSONStream "^1.0.3" combine-source-map "~0.8.0" defined "^1.0.0" - JSONStream "^1.0.3" safe-buffer "^5.1.1" through2 "^2.0.0" umd "^3.0.0" @@ -655,11 +646,12 @@ browserify-zlib@~0.2.0: dependencies: pako "~1.0.5" -browserify@^17.0.0, "browserify@>= 10.x", "browserify@>= 2.3": +browserify@^17.0.0: version "17.0.0" resolved "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz" integrity sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w== dependencies: + JSONStream "^1.0.3" assert "^1.4.0" browser-pack "^6.0.1" browser-resolve "^2.0.0" @@ -681,7 +673,6 @@ browserify@^17.0.0, "browserify@>= 10.x", "browserify@>= 2.3": https-browserify "^1.0.0" inherits "~2.0.1" insert-module-globals "^7.2.1" - JSONStream "^1.0.3" labeled-stream-splicer "^2.0.0" mkdirp-classic "^0.5.2" module-deps "^6.2.3" @@ -1037,7 +1028,7 @@ currently-unhandled@^0.4.1: dependencies: array-find-index "^1.0.1" -d@^1.0.1, d@1: +d@1, d@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/d/-/d-1.0.1.tgz" integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== @@ -1293,6 +1284,11 @@ escalade@^3.1.1: resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +escape-string-regexp@5.0.0, escape-string-regexp@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + escape-string-regexp@^1.0.3: version "1.0.5" resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" @@ -1308,16 +1304,6 @@ escape-string-regexp@^4.0.0: resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escape-string-regexp@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" - integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== - -escape-string-regexp@5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" - integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== - escodegen@~1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.1.0.tgz" @@ -1362,7 +1348,7 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4 resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@*, "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", eslint@^8.15.0, eslint@>=7.0.0, eslint@>=7.28.0: +eslint@^8.15.0: version "8.48.0" resolved "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz" integrity sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg== @@ -1448,12 +1434,7 @@ estraverse@^4.1.1: resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -estraverse@^5.1.0: - version "5.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -estraverse@^5.2.0: +estraverse@^5.1.0, estraverse@^5.2.0: version "5.3.0" resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== @@ -1844,7 +1825,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4, inherits@2: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -1866,11 +1847,11 @@ insert-module-globals@^7.2.1: resolved "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz" integrity sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg== dependencies: + JSONStream "^1.0.3" acorn-node "^1.5.2" combine-source-map "^0.8.0" concat-stream "^1.6.1" is-buffer "^1.1.0" - JSONStream "^1.0.3" path-is-absolute "^1.0.1" process "~0.11.0" through2 "^2.0.0" @@ -2035,16 +2016,16 @@ is-utf8@^0.2.0: resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz" integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - isarray@0.0.1: version "0.0.1" resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + isexe@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" @@ -2090,14 +2071,6 @@ jsonparse@^1.2.0: resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz" integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= -JSONStream@^1.0.3: - version "1.3.5" - resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - keyv@^4.5.3: version "4.5.3" resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz" @@ -2289,6 +2262,7 @@ module-deps@^6.2.3: resolved "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz" integrity sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA== dependencies: + JSONStream "^1.0.3" browser-resolve "^2.0.0" cached-path-relative "^1.0.2" concat-stream "~1.6.0" @@ -2296,7 +2270,6 @@ module-deps@^6.2.3: detective "^5.2.0" duplexer2 "^0.1.2" inherits "^2.0.1" - JSONStream "^1.0.3" parents "^1.0.0" readable-stream "^2.0.2" resolve "^1.4.0" @@ -2312,16 +2285,16 @@ mothership@~0.2.0: dependencies: find-parent-dir "~0.3.0" -ms@^2.1.3: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - ms@2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@^2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + mz@^2.7.0: version "2.7.0" resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" @@ -2341,7 +2314,7 @@ natural-compare@^1.4.0: resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= -next-tick@^1.1.0, next-tick@1: +next-tick@1, next-tick@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz" integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== @@ -2366,12 +2339,7 @@ object-inspect@^1.8.0: resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz" integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== -object-keys@^1.0.12: - version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-keys@^1.1.1: +object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -2604,7 +2572,7 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^2.6.2, prettier@>=2.0.0: +prettier@^2.6.2: version "2.8.8" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== @@ -2638,6 +2606,11 @@ public-encrypt@^4.0.0: randombytes "^2.0.1" safe-buffer "^5.1.2" +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + punycode@^1.3.2: version "1.4.1" resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" @@ -2648,11 +2621,6 @@ punycode@^2.1.0: resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= - querystring-es3@~0.2.0: version "0.2.1" resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz" @@ -2690,20 +2658,7 @@ read-only-stream@^2.0.0: dependencies: readable-stream "^2.0.2" -readable-stream@^2.0.2: - version "2.3.7" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^2.2.2: +readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@~2.3.6: version "2.3.7" resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== @@ -2745,19 +2700,6 @@ readable-stream@~1.1.9: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - readdirp@~3.6.0: version "3.6.0" resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" @@ -2868,12 +2810,7 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@^5.2.0: - version "5.2.1" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.2.0: +safe-buffer@^5.2.0, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -3042,44 +2979,7 @@ stream-splicer@^2.0.0: inherits "^2.0.1" readable-stream "^2.0.2" -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" - integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -string-width@^4.1.0: - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.2.0: - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.2.3: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -3113,6 +3013,25 @@ string.prototype.trimstart@^1.0.1: call-bind "^1.0.0" define-properties "^1.1.3" +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" @@ -3211,11 +3130,6 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" -"through@>=2.2.7 <3", through@~2.3.4: - version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - through2@^2.0.0: version "2.0.5" resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" @@ -3232,6 +3146,11 @@ through2@~0.4.0: readable-stream "~1.0.17" xtend "~2.1.1" +"through@>=2.2.7 <3", through@~2.3.4: + version "2.3.8" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + time-zone@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz" @@ -3347,7 +3266,7 @@ typedarray@^0.0.6: resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= -typescript@^4.6.4, "typescript@>= 2.8", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta": +typescript@^4.6.4: version "4.9.5" resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== @@ -3388,6 +3307,13 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= +util@0.10.3: + version "0.10.3" + resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + util@~0.12.0: version "0.12.3" resolved "https://registry.npmjs.org/util/-/util-0.12.3.tgz" @@ -3400,13 +3326,6 @@ util@~0.12.0: safe-buffer "^5.1.2" which-typed-array "^1.1.2" -util@0.10.3: - version "0.10.3" - resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= - dependencies: - inherits "2.0.1" - vm-browserify@^1.0.0: version "1.1.2" resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz"