-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates generation to the latest version
- Loading branch information
1 parent
61defb5
commit 9419eac
Showing
156 changed files
with
2,739 additions
and
1,283 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
packages/test/generatedCode/models/microsoft/graph/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
export * from './entity' | ||
export * from './outlookItem' | ||
export * from './emailAddress' | ||
export * from './followupFlag' | ||
export * from './itemBody' | ||
export * from './inferenceClassificationOverride' | ||
export * from './messageRule' | ||
export * from './dateTimeTimeZone' | ||
export * from './message' | ||
export * from './messageRulePredicates' | ||
export * from './emailAddress' | ||
export * from './messageRuleActions' | ||
export * from './inferenceClassificationOverride' | ||
export * from './sizeRange' | ||
export * from './inferenceClassification' | ||
export * from './messageRule' | ||
export * from './attachment' | ||
export * from './singleValueLegacyExtendedProperty' | ||
export * from './itemBody' | ||
export * from './followupFlag' | ||
export * from './extension' | ||
export * from './recipient' | ||
export * from './internetMessageHeader' | ||
export * from './sizeRange' | ||
export * from './multiValueLegacyExtendedProperty' | ||
export * from './mailFolder' | ||
export * from './recipient' | ||
export * from './messageRulePredicates' | ||
export * from './dateTimeTimeZone' | ||
export * from './extension' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...nferenceClassification/inferenceClassificationRequestBuilderDeleteRequestConfiguration.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import {RequestOption} from '@microsoft/kiota-abstractions'; | ||
|
||
/** Configuration for the request such as headers, query parameters, and middleware options. */ | ||
export class InferenceClassificationRequestBuilderDeleteRequestConfiguration { | ||
/** Request headers */ | ||
public headers?: Record<string, string> | undefined; | ||
/** Request options */ | ||
public options?: RequestOption[] | undefined; | ||
} |
18 changes: 18 additions & 0 deletions
18
...s/item/inferenceClassification/inferenceClassificationRequestBuilderGetQueryParameters.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
/** Relevance classification of the user's messages based on explicit designations which override inferred relevance or importance. */ | ||
export class InferenceClassificationRequestBuilderGetQueryParameters { | ||
/** Select properties to be returned */ | ||
public select?: string[] | undefined; | ||
/** | ||
* Maps the query parameters names to their encoded names for the URI template parsing. | ||
* @param originalName The original query parameter name in the class. | ||
* @returns a string | ||
*/ | ||
public getQueryParameter(originalName: string | undefined) : string { | ||
if(!originalName) throw new Error("originalName cannot be undefined"); | ||
switch(originalName) { | ||
case "select": return "%24select"; | ||
default: return originalName; | ||
} | ||
}; | ||
} |
12 changes: 12 additions & 0 deletions
12
...m/inferenceClassification/inferenceClassificationRequestBuilderGetRequestConfiguration.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import {InferenceClassificationRequestBuilderGetQueryParameters} from './inferenceClassificationRequestBuilderGetQueryParameters'; | ||
import {RequestOption} from '@microsoft/kiota-abstractions'; | ||
|
||
/** Configuration for the request such as headers, query parameters, and middleware options. */ | ||
export class InferenceClassificationRequestBuilderGetRequestConfiguration { | ||
/** Request headers */ | ||
public headers?: Record<string, string> | undefined; | ||
/** Request options */ | ||
public options?: RequestOption[] | undefined; | ||
/** Request query parameters */ | ||
public queryParameters?: InferenceClassificationRequestBuilderGetQueryParameters | undefined; | ||
} |
9 changes: 9 additions & 0 deletions
9
...inferenceClassification/inferenceClassificationRequestBuilderPatchRequestConfiguration.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import {RequestOption} from '@microsoft/kiota-abstractions'; | ||
|
||
/** Configuration for the request such as headers, query parameters, and middleware options. */ | ||
export class InferenceClassificationRequestBuilderPatchRequestConfiguration { | ||
/** Request headers */ | ||
public headers?: Record<string, string> | undefined; | ||
/** Request options */ | ||
public options?: RequestOption[] | undefined; | ||
} |
Oops, something went wrong.